diff --git a/.github/helper/merge_po_files.py b/.github/helper/merge_po_files.py
new file mode 100644
index 00000000000..185afa160a2
--- /dev/null
+++ b/.github/helper/merge_po_files.py
@@ -0,0 +1,52 @@
+#!/usr/bin/env python3
+"""Overlay develop's .po translations onto hotfix's .po files.
+
+Called by sync_hotfix_translations.sh before `bench update-po-files`.
+Merge rules:
+ a. msgid absent from develop → keep hotfix's existing msgstr
+ b. language not yet in hotfix → copy file as-is (bench will filter to main.pot)
+ c. msgid present in both → use develop's msgstr
+"""
+from datetime import datetime, timezone
+from pathlib import Path
+
+from babel.messages.pofile import read_po, write_po
+
+DEVELOP = Path("/tmp/develop-po/erpnext/locale/")
+LOCALE = Path("./apps/erpnext/erpnext/locale/")
+
+added = updated = 0
+
+for src in sorted(DEVELOP.glob("*.po")):
+ dst = LOCALE / src.name
+
+ with src.open("rb") as f:
+ dev = read_po(f)
+
+ if not dst.exists():
+ dev.revision_date = datetime.now(timezone.utc)
+ with dst.open("wb") as f:
+ write_po(f, dev)
+ added += 1
+ print(f" [new] {src.name}")
+ continue
+
+ with dst.open("rb") as f:
+ hf = read_po(f)
+
+ changes = 0
+ for msg in hf:
+ if msg.id and msg.id in dev and dev[msg.id].string and dev[msg.id].string != msg.string:
+ msg.string = dev[msg.id].string
+ changes += 1
+
+ if changes:
+ hf.revision_date = datetime.now(timezone.utc)
+ with dst.open("wb") as f:
+ write_po(f, hf)
+ updated += 1
+ print(f" [updated] {src.name} ({changes} msgstr(s) from develop)")
+ else:
+ print(f" [no-op] {src.name}")
+
+print(f"\n{added} new language(s), {updated} updated.")
diff --git a/.github/helper/sync_hotfix_translations.sh b/.github/helper/sync_hotfix_translations.sh
new file mode 100644
index 00000000000..86f6bb65f6a
--- /dev/null
+++ b/.github/helper/sync_hotfix_translations.sh
@@ -0,0 +1,121 @@
+#!/bin/bash
+# Syncs Crowdin translations from develop to a hotfix branch.
+# Merge logic: see merge_po_files.py.
+# Env: GH_TOKEN, PR_REVIEWER, GITHUB_WORKSPACE, APP_NAME, GITHUB_REPOSITORY
+# (all set by Actions).
+
+set -e
+
+HOTFIX_BRANCH="${HOTFIX_BRANCH:?HOTFIX_BRANCH env var is required}"
+APP_NAME="${APP_NAME:?APP_NAME env var is required}"
+
+cd ~ || exit
+
+echo "=== Setting up bench ==="
+pip install frappe-bench
+bench -v init frappe-bench --skip-assets --skip-redis-config-generation --python "$(which python)"
+cd ./frappe-bench || exit
+bench get-app --skip-assets "${APP_NAME}" "${GITHUB_WORKSPACE}"
+
+echo "=== Setting up sync_translations_${HOTFIX_BRANCH} branch ==="
+cd "./apps/${APP_NAME}" || exit
+git config user.email "developers@erpnext.com"
+git config user.name "frappe-pr-bot"
+git remote set-url upstream "https://github.com/${GITHUB_REPOSITORY}.git"
+git config remote.upstream.fetch "+refs/heads/*:refs/remotes/upstream/*"
+gh auth setup-git
+git fetch upstream "${HOTFIX_BRANCH}"
+
+if git ls-remote --exit-code --heads upstream "sync_translations_${HOTFIX_BRANCH}" >/dev/null 2>&1; then
+ git fetch upstream "sync_translations_${HOTFIX_BRANCH}"
+ git checkout -b "sync_translations_${HOTFIX_BRANCH}" "upstream/sync_translations_${HOTFIX_BRANCH}"
+ git merge -X theirs "upstream/${HOTFIX_BRANCH}" --no-edit
+else
+ git checkout -b "sync_translations_${HOTFIX_BRANCH}" "upstream/${HOTFIX_BRANCH}"
+fi
+cd ../.. || exit
+
+echo "=== Fetching develop's .po files ==="
+mkdir -p /tmp/develop-po
+git -C "${GITHUB_WORKSPACE}" fetch origin develop
+git -C "${GITHUB_WORKSPACE}" archive origin/develop "${APP_NAME}/locale/" \
+ | tar -xf - -C /tmp/develop-po/
+
+po_count=$(find "/tmp/develop-po/${APP_NAME}/locale" -name "*.po" | wc -l)
+if [ "${po_count}" -eq 0 ]; then
+ echo "ERROR: No .po files found in develop's archive. Aborting." >&2
+ exit 1
+fi
+echo "Extracted ${po_count} .po file(s) from develop."
+
+echo "=== Merging and reconciling ==="
+env/bin/python "${GITHUB_WORKSPACE}/.github/helper/merge_po_files.py"
+bench update-po-files --app "${APP_NAME}"
+
+cd "./apps/${APP_NAME}" || exit
+
+if git diff --quiet "${APP_NAME}/locale/" && [ -z "$(git ls-files --others --exclude-standard "${APP_NAME}/locale/")" ]; then
+ echo "Translations are already up to date. No PR needed."
+ exit 0
+fi
+
+echo "Changed files:"
+git diff --name-only "${APP_NAME}/locale/"
+git ls-files --others --exclude-standard "${APP_NAME}/locale/"
+
+echo "=== Committing ==="
+while IFS= read -r file; do
+ git add "${file}"
+ lang=$(basename "${file}" .po)
+ git commit -m "chore: add ${lang} translation to ${HOTFIX_BRANCH}"
+done < <(git ls-files --others --exclude-standard "${APP_NAME}/locale/" | grep '\.po$' | sort)
+
+while IFS= read -r file; do
+ git add "${file}"
+ if ! git diff --staged --quiet -- "${file}"; then
+ lang=$(basename "${file}" .po)
+ git commit -m "chore: sync ${lang} translation to ${HOTFIX_BRANCH}"
+ else
+ git restore --staged -- "${file}"
+ fi
+done < <(git diff --name-only "${APP_NAME}/locale/" | grep '\.po$' | sort)
+
+if git ls-remote --exit-code --heads upstream "sync_translations_${HOTFIX_BRANCH}" >/dev/null 2>&1; then
+ git fetch upstream "sync_translations_${HOTFIX_BRANCH}"
+ git merge -X ours "upstream/sync_translations_${HOTFIX_BRANCH}" --no-edit
+fi
+git push -u upstream sync_translations_${HOTFIX_BRANCH}
+
+echo "=== Opening PR (if not already open) ==="
+existing_pr=$(gh pr list \
+ --base "${HOTFIX_BRANCH}" \
+ --head "sync_translations_${HOTFIX_BRANCH}" \
+ --state open \
+ --json number \
+ --jq 'length' \
+ -R "${GITHUB_REPOSITORY}")
+
+if [ "${existing_pr}" -gt 0 ]; then
+ echo "PR already open — branch updated in place. No new PR needed."
+ exit 0
+fi
+
+gh pr create \
+ --base "${HOTFIX_BRANCH}" \
+ --head "sync_translations_${HOTFIX_BRANCH}" \
+ --title "chore: sync translations to ${HOTFIX_BRANCH}" \
+ --body "Automated sync of Crowdin translations from \`develop\` to \`${HOTFIX_BRANCH}\`.
+
+A 3-way merge is performed per language, then \`bench update-po-files\` reconciles each \`.po\` against hotfix's \`main.pot\`:
+
+| Case | Condition | Result |
+|------|-----------|--------|
+| **a** | \`msgid\` in hotfix's \`main.pot\`, **not** in develop's \`.po\` | Hotfix's existing \`msgstr\` is **preserved** (string removed from develop but still needed in hotfix) |
+| **b** | \`msgid\` **not** in hotfix's \`main.pot\` | **Dropped** from hotfix's \`.po\` |
+| **c** | \`msgid\` in both hotfix's \`main.pot\` and develop's \`.po\` | Develop's \`msgstr\` is used (Crowdin translation wins) |
+
+Generated by the \`sync-hotfix-translations\` workflow." \
+ --label "translation" \
+ --label "skip-release-notes" \
+ --reviewer "${PR_REVIEWER}" \
+ -R "${GITHUB_REPOSITORY}"
diff --git a/.github/workflows/build-and-commit-assets.yml b/.github/workflows/build-and-commit-assets.yml
new file mode 100644
index 00000000000..5b95b74fe8a
--- /dev/null
+++ b/.github/workflows/build-and-commit-assets.yml
@@ -0,0 +1,70 @@
+name: Build and Upload Assets
+
+on:
+ push:
+ branches:
+ - develop
+ - 'version-*'
+
+concurrency:
+ group: build-assets-${{ github.ref }}
+ cancel-in-progress: true
+
+permissions:
+ contents: write
+
+jobs:
+ build-assets:
+ name: Build JS/CSS and upload to release
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ repository: frappe/frappe
+ path: apps/frappe
+ ref: ${{ github.ref_name }}
+
+ - uses: actions/checkout@v4
+ with:
+ path: apps/erpnext
+
+ - name: Create bench structure
+ run: |
+ mkdir -p sites
+ printf "frappe\nerpnext\n" > sites/apps.txt
+
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 24
+ cache: yarn
+ cache-dependency-path: apps/frappe/yarn.lock
+
+ - name: Install frappe JS dependencies
+ working-directory: apps/frappe
+ run: yarn install --frozen-lockfile
+
+ - name: Install erpnext JS dependencies
+ working-directory: apps/erpnext
+ run: yarn install --frozen-lockfile --ignore-scripts
+
+ - name: Link node_modules into public/
+ working-directory: apps/frappe
+ run: ln -s "$PWD/node_modules" frappe/public/node_modules
+
+ - name: Build assets (production)
+ working-directory: apps/frappe
+ run: yarn run production
+
+ - name: Package assets
+ working-directory: apps/erpnext
+ run: tar czf erpnext-assets.tar.gz -C ../../sites/assets/erpnext dist
+
+ - name: Upload to rolling release
+ working-directory: apps/erpnext
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ TAG="assets-${GITHUB_REF_NAME//\//-}"
+ gh release create "$TAG" --prerelease --title "Assets: $GITHUB_REF_NAME" --notes "" 2>/dev/null || true
+ gh release upload "$TAG" erpnext-assets.tar.gz --clobber
diff --git a/.github/workflows/run-hotfix-translation-sync.yml b/.github/workflows/run-hotfix-translation-sync.yml
new file mode 100644
index 00000000000..8d0d13fca4a
--- /dev/null
+++ b/.github/workflows/run-hotfix-translation-sync.yml
@@ -0,0 +1,52 @@
+# Runner — maintain this file on each hotfix branch, not on develop.
+#
+# Fires when main.pot changes on this branch (i.e. after a POT update PR
+# merges), or when dispatched by the orchestrator on develop (weekly schedule).
+#
+# Uses github.ref_name so the file is identical across all hotfix branches
+# with no branch-specific edits required.
+
+name: Run hotfix translation sync
+
+on:
+ workflow_dispatch:
+
+# One run at a time per branch. cancel-in-progress: false to avoid leaving
+# an orphaned remote branch from a mid-flight git push + gh pr create.
+concurrency:
+ group: sync-hotfix-translations-${{ github.ref_name }}
+ cancel-in-progress: false
+
+jobs:
+ sync-translations:
+ name: Sync translations from develop into ${{ github.ref_name }}
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write
+ env:
+ HOTFIX_BRANCH: ${{ github.ref_name }}
+ APP_NAME: ${{ github.event.repository.name }}
+
+ steps:
+ - name: Checkout ${{ env.HOTFIX_BRANCH }}
+ uses: actions/checkout@v6
+ with:
+ ref: ${{ env.HOTFIX_BRANCH }}
+ fetch-depth: 0
+
+ - name: Setup Python
+ uses: actions/setup-python@v6
+ with:
+ python-version: "3.14"
+
+ - name: Setup Node
+ uses: actions/setup-node@v6
+ with:
+ node-version: 24
+
+ - name: Run sync script
+ run: |
+ bash "${GITHUB_WORKSPACE}/.github/helper/sync_hotfix_translations.sh"
+ env:
+ GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
+ PR_REVIEWER: diptanilsaha
diff --git a/.github/workflows/sync-hotfix-translations.yml b/.github/workflows/sync-hotfix-translations.yml
new file mode 100644
index 00000000000..8fcd07e0ab2
--- /dev/null
+++ b/.github/workflows/sync-hotfix-translations.yml
@@ -0,0 +1,40 @@
+# Orchestrator — lives on develop only.
+#
+# Triggers on the weekly schedule and dispatches the runner workflow on each
+# hotfix branch listed in the matrix. To add or remove a branch, edit the
+# matrix below.
+#
+# POT-change triggers are handled by the runner on each hotfix branch
+# (run-hotfix-translation-sync.yml), since GitHub only evaluates a workflow
+# from the branch that receives the push.
+
+name: Sync translations to hotfix branches
+
+on:
+ schedule:
+ # 10:00 UTC Monday
+ - cron: "0 10 * * 1"
+ workflow_dispatch:
+
+# The runner dispatch uses RELEASE_TOKEN (a PAT), not the default GITHUB_TOKEN,
+# so no GITHUB_TOKEN permissions are required.
+permissions: {}
+
+jobs:
+ trigger-runners:
+ name: Trigger sync → ${{ matrix.hotfix_branch }}
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ hotfix_branch:
+ - version-16-hotfix
+ fail-fast: false
+
+ steps:
+ - name: Dispatch runner on ${{ matrix.hotfix_branch }}
+ run: |
+ gh workflow run run-hotfix-translation-sync.yml \
+ --repo "${{ github.repository }}" \
+ --ref "${{ matrix.hotfix_branch }}"
+ env:
+ GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
diff --git a/banking/eslint.config.js b/banking/eslint.config.js
index 9cc2a204656..c5ac24c55e1 100644
--- a/banking/eslint.config.js
+++ b/banking/eslint.config.js
@@ -9,16 +9,18 @@ export default defineConfig([
globalIgnores(["dist"]),
{
files: ["**/*.{ts,tsx}"],
- extends: [
- js.configs.recommended,
- tseslint.configs.recommended,
- reactHooks.configs.flat.recommended,
- reactRefresh.configs.vite,
- ],
+ extends: [js.configs.recommended, tseslint.configs.recommended, reactRefresh.configs.vite],
+ plugins: {
+ "react-hooks": reactHooks,
+ },
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
- onlyExportComponents: false,
+ rules: {
+ "react-hooks/rules-of-hooks": "error",
+ "react-hooks/exhaustive-deps": "warn",
+ "react-refresh/only-export-components": "off",
+ },
},
]);
diff --git a/banking/package.json b/banking/package.json
index af48320c76f..f6c5971cd03 100644
--- a/banking/package.json
+++ b/banking/package.json
@@ -41,7 +41,6 @@
"react-markdown": "^10.1.0",
"react-router": "^7.15.0",
"react-router-dom": "^7.15.0",
- "react-virtuoso": "^4.18.6",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
diff --git a/banking/proxyOptions.ts b/banking/proxyOptions.ts
index e1aeca81094..f549deebec2 100644
--- a/banking/proxyOptions.ts
+++ b/banking/proxyOptions.ts
@@ -1,13 +1,17 @@
-const common_site_config = require('../../../sites/common_site_config.json');
+import { readFileSync } from 'node:fs';
+
+const common_site_config = JSON.parse(
+ readFileSync(new URL('../../../sites/common_site_config.json', import.meta.url), 'utf8')
+) as { webserver_port: string | number };
const { webserver_port } = common_site_config;
export default {
'^/(app|api|assets|files|private)': {
target: `http://127.0.0.1:${webserver_port}`,
ws: true,
- router: function(req) {
- const site_name = req.headers.host.split(':')[0];
- return `http://${site_name}:${webserver_port}`;
+ router: function (req) {
+ const site_name = req.headers?.host?.split(':')[0];
+ return `http://${site_name ?? 'localhost'}:${webserver_port}`;
}
}
};
diff --git a/banking/src/App.tsx b/banking/src/App.tsx
index 2e6f8339ce9..b46c5ba4233 100644
--- a/banking/src/App.tsx
+++ b/banking/src/App.tsx
@@ -1,14 +1,15 @@
-import { useEffect } from 'react'
+import { lazy, useEffect } from 'react'
import { BrowserRouter, Navigate, Route, Routes } from 'react-router-dom'
import { FrappeProvider } from 'frappe-react-sdk'
import { Toaster } from '@/components/ui/sonner'
import BankReconciliation from '@/pages/BankReconciliation'
+import BankStatementImporterContainer from '@/pages/BankStatementImporterContainer'
import { TooltipProvider } from './components/ui/tooltip'
-import BankStatementImporter from '@/pages/BankStatementImporter'
import { LucideProvider } from 'lucide-react'
import { ThemeProvider } from './components/ui/theme-provider'
-import ViewBankStatementImportLog from './pages/ViewBankStatementImportLog'
-import BankStatementImporterContainer from './pages/BankStatementImporterContainer'
+
+const BankStatementImporter = lazy(() => import('@/pages/BankStatementImporter'))
+const ViewBankStatementImportLog = lazy(() => import('@/pages/ViewBankStatementImportLog'))
function App() {
useEffect(() => {
@@ -43,7 +44,6 @@ function App() {
>
{window.frappe?.boot?.user?.name && window.frappe?.boot?.user?.name !== 'Guest' &&
-
} />
}>
diff --git a/banking/src/components/features/ActionLog/ActionLog.tsx b/banking/src/components/features/ActionLog/ActionLog.tsx
index e8ed9ae234a..b260a4b6cca 100644
--- a/banking/src/components/features/ActionLog/ActionLog.tsx
+++ b/banking/src/components/features/ActionLog/ActionLog.tsx
@@ -1,475 +1,42 @@
import { Button } from '@/components/ui/button'
-import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '@/components/ui/dialog'
+import { Dialog, DialogTrigger } from '@/components/ui/dialog'
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip'
import _ from '@/lib/translate'
-import { useAtomValue, useSetAtom } from 'jotai'
-import { ArrowDownRight, ArrowRightLeftIcon, ArrowUpRight, CalendarIcon, CircleXIcon, GitCompareIcon, HistoryIcon, LandmarkIcon, Loader2Icon, ReceiptIcon, ReceiptTextIcon, UserIcon, WalletIcon } from 'lucide-react'
-import { useMemo, useState } from 'react'
-import { ActionLogItem, ActionLog as ActionLogType, bankRecActionLog, bankRecDateAtom, bankRecMatchFilters, SelectedBank, selectedBankAccountAtom } from '../BankReconciliation/bankRecAtoms'
+import { HistoryIcon } from 'lucide-react'
+import { useState } from 'react'
import { useHotkeys } from 'react-hotkeys-hook'
-import { useGetBankAccounts } from '../BankReconciliation/utils'
-import { getCompanyCurrency } from '@/lib/company'
-import { formatCurrency } from '@/lib/numbers'
-import dayjs from 'dayjs'
-import { cn } from '@/lib/utils'
-import { formatDate } from '@/lib/date'
-import { Separator } from '@/components/ui/separator'
-import { slug } from '@/lib/frappe'
-import { PaymentEntry } from '@/types/Accounts/PaymentEntry'
-import { JournalEntry } from '@/types/Accounts/JournalEntry'
-import { HoverCard, HoverCardContent, HoverCardTrigger } from '@/components/ui/hover-card'
-import { Table, TableCell, TableBody, TableHead, TableHeader, TableRow } from '@/components/ui/table'
-import { AlertDialog, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from '@/components/ui/alert-dialog'
-import { useFrappePostCall, useSWRConfig } from 'frappe-react-sdk'
-import { toast } from 'sonner'
-import { getErrorMessage } from '@/lib/frappe'
-import ErrorBanner from '@/components/ui/error-banner'
-import SelectedTransactionDetails from '../BankReconciliation/SelectedTransactionDetails'
-import { Empty, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '@/components/ui/empty'
-import BankLogo from '@/components/common/BankLogo'
+import ActionLogDialog from './ActionLogDialog'
const ActionLog = () => {
+ const [isOpen, setIsOpen] = useState(false)
- const [isOpen, setIsOpen] = useState(false)
+ useHotkeys('meta+z', () => {
+ setIsOpen(true)
+ }, {
+ enabled: true,
+ enableOnFormTags: false,
+ preventDefault: true
+ })
- useHotkeys('meta+z', () => {
- setIsOpen(true)
- }, {
- enabled: true,
- enableOnFormTags: false,
- preventDefault: true
- })
-
- return (
-
-
-
-
-
-
-
-
-
-
- {_("Reconciliation History")}
-
-
-
-
- {_("Reconciliation History")}
- {_("View all reconciliation actions taken in this session.")}
-
-
-
-
- setIsOpen(false)}>{_("Close")}
-
-
-
-
- )
+ return (
+
+
+
+
+
+
+
+
+
+
+ {_("Reconciliation History")}
+
+
+ {isOpen && (
+ setIsOpen(false)} />
+ )}
+
+ )
}
-const ActionLogDialogContent = () => {
-
- const actionLog = useAtomValue(bankRecActionLog)
-
- return
- {actionLog.map((action) => (
-
-
-
-
-
- {action.items.map((item, index) => (
-
- ))}
-
-
-
-
- ))}
-
- {actionLog.length === 0 &&
-
-
-
-
- {_("No reconciliation actions found")}
- {_("You have not performed any reconciliations in this session yet.")}
-
- }
-
-}
-
-
-
-const ActionGroupHeader = ({ action }: { action: ActionLogType }) => {
-
- const label = useMemo(() => {
- switch (action.type) {
- case 'match':
- return _("Matched")
- case 'payment':
- if (action.isBulk) {
- return _("Bulk Payment")
- }
- return _("Payment")
-
- case 'transfer':
- if (action.isBulk) {
- return _("Bulk Transfer")
- }
- return _("Transfer")
-
- case 'bank_entry':
- if (action.isBulk) {
- return _("Bulk Bank Entry")
- }
- return _("Bank Entry")
-
- default:
- return _("Action")
- }
- }, [action])
-
- return
- {action.type === 'match' &&
}
- {action.type === 'payment' &&
}
- {action.type === 'transfer' &&
}
- {action.type === 'bank_entry' &&
}
-
- {label} - {dayjs(action.timestamp).fromNow()}
-
-
-}
-
-const Row = ({ item, index, isLast, action }: { item: ActionLogItem, index: number, isLast: boolean, action: ActionLogType }) => {
-
- const isWithdrawal = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0
-
- const { banks } = useGetBankAccounts()
-
- const bank = useMemo(() => {
- if (item.bankTransaction.bank_account) {
- return banks?.find((bank) => bank.name === item.bankTransaction.bank_account)
- }
- return null
- }, [item.bankTransaction.bank_account, banks])
-
- const amount = item.bankTransaction.withdrawal ? item.bankTransaction.withdrawal : item.bankTransaction.deposit
-
- const currency = item.bankTransaction.currency || getCompanyCurrency(item.bankTransaction.company ?? '')
-
- return
-
-
-
-
{item.bankTransaction.description}
-
-
-
- {item.bankTransaction.bank_account}
-
-
-
-
- {formatDate(item.bankTransaction.date, 'Do MMM YYYY')}
-
-
-
-
- {isWithdrawal ?
:
}
-
{formatCurrency(amount, currency)}
-
-
-
-
-
-
-
-
-
-
-
-}
-
-const JournalEntryDetails = ({ item, bank }: { item: ActionLogItem, bank?: SelectedBank | null }) => {
-
- return
-
-
-
-}
-
-const JournalEntryAccountsTable = ({ item, bank }: { item: ActionLogItem, bank?: SelectedBank | null }) => {
-
- const accounts = useMemo(() => {
-
- const allAccounts = (item.voucher.doc as JournalEntry).accounts
-
- return allAccounts.filter((acc) => bank ? acc.account !== bank.account : true)
-
- }, [item, bank])
-
- return <>
- {accounts.length === 1 ? {accounts[0].account} :
-
-
- {_("Split across {} accounts", [accounts.length.toString()])}
-
-
-
-
-
- {_("Account")}
- {_("Debit")}
- {_("Credit")}
-
-
-
- {accounts.map((account) => (
-
- {account.account}
- {formatCurrency(account.debit ?? 0, account.account_currency ?? '')}
- {formatCurrency(account.credit ?? 0, account.account_currency ?? '')}
-
- ))}
-
-
-
-
- }>
-}
-
-const PaymentEntryDetails = ({ item, className }: { item: ActionLogItem, className?: string }) => {
- if ((item.voucher.doc as PaymentEntry).payment_type === "Internal Transfer") {
- return
- }
-
- const invoices = (item.voucher.doc as PaymentEntry).references ?? []
-
- const currency = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0 ? (item.voucher.doc as PaymentEntry)?.paid_to_account_currency : (item.voucher.doc as PaymentEntry)?.paid_from_account_currency
-
- return
-
-
- {(item.voucher.doc as PaymentEntry).party_name}
-
-
-
-
-
-
- {invoices.length === 0 ? _("No invoice linked") : invoices.length === 1 ? _("1 invoice") : _("{} invoices", [invoices.length.toString()])}
-
-
-
-
- {invoices.map((invoice) => (
-
-
-
- {_("Document")}
- {_("Invoice No")}
- {_("Due Date")}
- {_("Grand Total")}
- {_("Allocated")}
-
-
-
-
- {invoice.reference_doctype}: {invoice.reference_name}
- {invoice.bill_no ?? "-"}
- {formatDate(invoice.due_date)}
- {formatCurrency(invoice.total_amount, currency ?? '')}
- {formatCurrency(invoice.allocated_amount, currency ?? '')}
-
-
-
- ))}
-
-
-
-
-
-}
-
-const TransferDetails = ({ item, className }: { item: ActionLogItem, className?: string }) => {
-
- const { banks } = useGetBankAccounts()
-
- const bank = useMemo(() => {
-
- const isWithdrawal = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0
-
- let transferAccount = ""
-
- if (isWithdrawal) {
- transferAccount = (item.voucher.doc as PaymentEntry).paid_to
- } else {
- transferAccount = (item.voucher.doc as PaymentEntry).paid_from
- }
-
- const transferBankAccount = banks?.find((bank) => bank.account === transferAccount)
-
- return transferBankAccount
-
- }, [banks, item])
-
- return
-
- {bank?.account}
-
-}
-
-const ACTION_TYPE_MAP = {
- 'bank_entry': _("Bank Entry"),
- 'payment': _("Payment"),
- 'transfer': _("Transfer"),
- 'match': _("Match"),
-}
-
-const CancelActionLogItem = ({ item, type, timestamp, bank }: { item: ActionLogItem, type: ActionLogType['type'], timestamp: number, bank?: SelectedBank | null }) => {
-
- const [isOpen, setIsOpen] = useState(false)
-
- const { call, loading, error } = useFrappePostCall('erpnext.accounts.doctype.bank_transaction.bank_transaction.unreconcile_transaction_entry')
- const { mutate } = useSWRConfig()
- const actionLog = useSetAtom(bankRecActionLog)
- const dates = useAtomValue(bankRecDateAtom)
- const matchFilters = useAtomValue(bankRecMatchFilters)
- const selectedBank = useAtomValue(selectedBankAccountAtom)
-
- const onUndo = () => {
- call({
- bank_transaction_id: item.bankTransaction.name,
- voucher_type: item.voucher.reference_doctype,
- voucher_id: item.voucher.reference_name,
- }).then(() => {
- toast.success(type === 'match' ? _("Unmatched") : _("Cancelled"))
-
- if (selectedBank?.name === item.bankTransaction.bank_account) {
- mutate(`bank-reconciliation-unreconciled-transactions-${selectedBank?.name}-${dates.fromDate}-${dates.toDate}`)
- mutate(`bank-reconciliation-account-closing-balance-${selectedBank?.name}-${dates.toDate}`)
- // Update the matching vouchers for the selected transaction
- mutate(`bank-reconciliation-vouchers-${item.bankTransaction.name}-${dates.fromDate}-${dates.toDate}-${matchFilters.join(',')}`)
- }
-
- setTimeout(() => {
- actionLog((prev) => {
- // Find the action and then remove the item from the action. If the action is empty, remove the action from the array
- const action = prev.find((action) => action.timestamp === timestamp)
-
- if (action) {
- action.items = action.items.filter((i) => i.bankTransaction.name !== item.bankTransaction.name)
- }
- // If the action is empty, remove the action from the array
- if (action && action.items.length === 0) {
- return prev.filter((a) => a.timestamp !== timestamp)
- } else {
- return prev.map((a) => a.timestamp === timestamp ? { ...a, items: action?.items ?? [] } : a)
- }
- })
- }, 100)
-
- setIsOpen(false)
-
- }).catch((error) => {
- toast.error(_("There was an error while performing the action."), {
- duration: 5000,
- description: getErrorMessage(error),
- })
- })
- }
-
- return
-
-
-
-
-
-
-
-
-
- {_("Cancel")}
-
-
-
-
- {type === 'match' ? _("Unmatch Transaction?") : _("Undo {}?", [item.voucher.reference_doctype])}
- {type === 'match' ? _("Are you sure you want to unmatch the voucher from this transaction?") : _("Are you sure you want to cancel this {} {}?", [_(item.voucher.reference_doctype), item.voucher.reference_name])}
-
- {error && }
-
-
-
-
- {_("Action Type")}
- {ACTION_TYPE_MAP[type]}
-
-
- {_("Voucher Type")}
- {_(item.voucher.reference_doctype)}
-
-
- {_("Voucher Name")}
- {item.voucher.reference_name}
-
-
- {_("Posting Date")}
- {formatDate(item.voucher.posting_date, 'Do MMM YYYY')}
-
- {type === 'transfer' && item.voucher.doc &&
- {_("Transfer Account")}
-
-
-
- }
- {type === 'payment' && item.voucher.doc &&
- {_("Payment Details")}
-
-
-
- }
- {type === 'bank_entry' && item.voucher.doc &&
- {_("Account")}
-
- }
-
-
-
-
- {_("Close")}
-
-
- {loading ? : _(("Undo"))}
-
-
-
-
-}
-
-export default ActionLog
\ No newline at end of file
+export default ActionLog
diff --git a/banking/src/components/features/ActionLog/ActionLogDialog.tsx b/banking/src/components/features/ActionLog/ActionLogDialog.tsx
new file mode 100644
index 00000000000..a4eebee9f1d
--- /dev/null
+++ b/banking/src/components/features/ActionLog/ActionLogDialog.tsx
@@ -0,0 +1,34 @@
+import { Button } from '@/components/ui/button'
+import { DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle } from '@/components/ui/dialog'
+import _ from '@/lib/translate'
+import { Loader2Icon } from 'lucide-react'
+import { lazy, Suspense } from 'react'
+
+const ActionLogDialogBody = lazy(() => import('./ActionLogDialogBody'))
+
+const ActionLogDialogFallback = () => (
+
+
+
+)
+
+const ActionLogDialog = ({ onClose }: { onClose: () => void }) => {
+ return (
+
+
+ {_("Reconciliation History")}
+ {_("View all reconciliation actions taken in this session.")}
+
+ }>
+
+
+
+
+ {_("Close")}
+
+
+
+ )
+}
+
+export default ActionLogDialog
diff --git a/banking/src/components/features/ActionLog/ActionLogDialogBody.tsx b/banking/src/components/features/ActionLog/ActionLogDialogBody.tsx
new file mode 100644
index 00000000000..d0ec5fa428e
--- /dev/null
+++ b/banking/src/components/features/ActionLog/ActionLogDialogBody.tsx
@@ -0,0 +1,431 @@
+import { Button } from '@/components/ui/button'
+import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip'
+import _ from '@/lib/translate'
+import { useAtomValue, useSetAtom } from 'jotai'
+import { ArrowDownRight, ArrowRightLeftIcon, ArrowUpRight, CalendarIcon, CircleXIcon, GitCompareIcon, HistoryIcon, LandmarkIcon, Loader2Icon, ReceiptIcon, ReceiptTextIcon, UserIcon, WalletIcon } from 'lucide-react'
+import { useMemo, useState } from 'react'
+import { ActionLogItem, ActionLog as ActionLogType, bankRecActionLog, bankRecDateAtom, bankRecMatchFilters, SelectedBank, selectedBankAccountAtom } from '../BankReconciliation/bankRecAtoms'
+import { useGetBankAccounts } from '../BankReconciliation/utils'
+import { getCompanyCurrency } from '@/lib/company'
+import { formatCurrency } from '@/lib/numbers'
+import dayjs from 'dayjs'
+import { cn } from '@/lib/utils'
+import { formatDate } from '@/lib/date'
+import { Separator } from '@/components/ui/separator'
+import { slug } from '@/lib/frappe'
+import { PaymentEntry } from '@/types/Accounts/PaymentEntry'
+import { JournalEntry } from '@/types/Accounts/JournalEntry'
+import { HoverCard, HoverCardContent, HoverCardTrigger } from '@/components/ui/hover-card'
+import { Table, TableCell, TableBody, TableHead, TableHeader, TableRow } from '@/components/ui/table'
+import { AlertDialog, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from '@/components/ui/alert-dialog'
+import { useFrappePostCall, useSWRConfig } from 'frappe-react-sdk'
+import { toast } from 'sonner'
+import { getErrorMessage } from '@/lib/frappe'
+import ErrorBanner from '@/components/ui/error-banner'
+import SelectedTransactionDetails from '../BankReconciliation/SelectedTransactionDetails'
+import { Empty, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '@/components/ui/empty'
+import BankLogo from '@/components/common/BankLogo'
+
+const ActionLogDialogBody = () => {
+
+ const actionLog = useAtomValue(bankRecActionLog)
+
+ return
+ {actionLog.map((action) => (
+
+
+
+
+
+ {action.items.map((item, index) => (
+
+ ))}
+
+
+
+
+ ))}
+
+ {actionLog.length === 0 &&
+
+
+
+
+ {_("No reconciliation actions found")}
+ {_("You have not performed any reconciliations in this session yet.")}
+
+ }
+
+}
+
+
+
+const ActionGroupHeader = ({ action }: { action: ActionLogType }) => {
+
+ const label = useMemo(() => {
+ switch (action.type) {
+ case 'match':
+ return _("Matched")
+ case 'payment':
+ if (action.isBulk) {
+ return _("Bulk Payment")
+ }
+ return _("Payment")
+
+ case 'transfer':
+ if (action.isBulk) {
+ return _("Bulk Transfer")
+ }
+ return _("Transfer")
+
+ case 'bank_entry':
+ if (action.isBulk) {
+ return _("Bulk Bank Entry")
+ }
+ return _("Bank Entry")
+
+ default:
+ return _("Action")
+ }
+ }, [action])
+
+ return
+ {action.type === 'match' &&
}
+ {action.type === 'payment' &&
}
+ {action.type === 'transfer' &&
}
+ {action.type === 'bank_entry' &&
}
+
+ {label} - {dayjs(action.timestamp).fromNow()}
+
+
+}
+
+const Row = ({ item, index, isLast, action }: { item: ActionLogItem, index: number, isLast: boolean, action: ActionLogType }) => {
+
+ const isWithdrawal = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0
+
+ const { banks } = useGetBankAccounts()
+
+ const bank = useMemo(() => {
+ if (item.bankTransaction.bank_account) {
+ return banks?.find((bank) => bank.name === item.bankTransaction.bank_account)
+ }
+ return null
+ }, [item.bankTransaction.bank_account, banks])
+
+ const amount = item.bankTransaction.withdrawal ? item.bankTransaction.withdrawal : item.bankTransaction.deposit
+
+ const currency = item.bankTransaction.currency || getCompanyCurrency(item.bankTransaction.company ?? '')
+
+ return
+
+
+
+
{item.bankTransaction.description}
+
+
+
+ {item.bankTransaction.bank_account}
+
+
+
+
+ {formatDate(item.bankTransaction.date, 'Do MMM YYYY')}
+
+
+
+
+ {isWithdrawal ?
:
}
+
{formatCurrency(amount, currency)}
+
+
+
+
+
+
+
+
+
+
+
+}
+
+const JournalEntryDetails = ({ item, bank }: { item: ActionLogItem, bank?: SelectedBank | null }) => {
+
+ return
+
+
+
+}
+
+const JournalEntryAccountsTable = ({ item, bank }: { item: ActionLogItem, bank?: SelectedBank | null }) => {
+
+ const accounts = useMemo(() => {
+
+ const allAccounts = (item.voucher.doc as JournalEntry).accounts
+
+ return allAccounts.filter((acc) => bank ? acc.account !== bank.account : true)
+
+ }, [item, bank])
+
+ return <>
+ {accounts.length === 1 ? {accounts[0].account} :
+
+
+ {_("Split across {} accounts", [accounts.length.toString()])}
+
+
+
+
+
+ {_("Account")}
+ {_("Debit")}
+ {_("Credit")}
+
+
+
+ {accounts.map((account) => (
+
+ {account.account}
+ {formatCurrency(account.debit ?? 0, account.account_currency ?? '')}
+ {formatCurrency(account.credit ?? 0, account.account_currency ?? '')}
+
+ ))}
+
+
+
+
+ }>
+}
+
+const PaymentEntryDetails = ({ item, className }: { item: ActionLogItem, className?: string }) => {
+ if ((item.voucher.doc as PaymentEntry).payment_type === "Internal Transfer") {
+ return
+ }
+
+ const invoices = (item.voucher.doc as PaymentEntry).references ?? []
+
+ const currency = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0 ? (item.voucher.doc as PaymentEntry)?.paid_to_account_currency : (item.voucher.doc as PaymentEntry)?.paid_from_account_currency
+
+ return
+
+
+ {(item.voucher.doc as PaymentEntry).party_name}
+
+
+
+
+
+
+ {invoices.length === 0 ? _("No invoice linked") : invoices.length === 1 ? _("1 invoice") : _("{} invoices", [invoices.length.toString()])}
+
+
+
+
+ {invoices.map((invoice) => (
+
+
+
+ {_("Document")}
+ {_("Invoice No")}
+ {_("Due Date")}
+ {_("Grand Total")}
+ {_("Allocated")}
+
+
+
+
+ {invoice.reference_doctype}: {invoice.reference_name}
+ {invoice.bill_no ?? "-"}
+ {formatDate(invoice.due_date)}
+ {formatCurrency(invoice.total_amount, currency ?? '')}
+ {formatCurrency(invoice.allocated_amount, currency ?? '')}
+
+
+
+ ))}
+
+
+
+
+
+}
+
+const TransferDetails = ({ item, className }: { item: ActionLogItem, className?: string }) => {
+
+ const { banks } = useGetBankAccounts()
+
+ const bank = useMemo(() => {
+
+ const isWithdrawal = item.bankTransaction.withdrawal && item.bankTransaction.withdrawal > 0
+
+ let transferAccount = ""
+
+ if (isWithdrawal) {
+ transferAccount = (item.voucher.doc as PaymentEntry).paid_to
+ } else {
+ transferAccount = (item.voucher.doc as PaymentEntry).paid_from
+ }
+
+ const transferBankAccount = banks?.find((bank) => bank.account === transferAccount)
+
+ return transferBankAccount
+
+ }, [banks, item])
+
+ return
+
+ {bank?.account}
+
+}
+
+const ACTION_TYPE_MAP = {
+ 'bank_entry': _("Bank Entry"),
+ 'payment': _("Payment"),
+ 'transfer': _("Transfer"),
+ 'match': _("Match"),
+}
+
+const CancelActionLogItem = ({ item, type, timestamp, bank }: { item: ActionLogItem, type: ActionLogType['type'], timestamp: number, bank?: SelectedBank | null }) => {
+
+ const [isOpen, setIsOpen] = useState(false)
+
+ const { call, loading, error } = useFrappePostCall('erpnext.accounts.doctype.bank_transaction.bank_transaction.unreconcile_transaction_entry')
+ const { mutate } = useSWRConfig()
+ const actionLog = useSetAtom(bankRecActionLog)
+ const dates = useAtomValue(bankRecDateAtom)
+ const matchFilters = useAtomValue(bankRecMatchFilters)
+ const selectedBank = useAtomValue(selectedBankAccountAtom)
+
+ const onUndo = () => {
+ call({
+ bank_transaction_id: item.bankTransaction.name,
+ voucher_type: item.voucher.reference_doctype,
+ voucher_id: item.voucher.reference_name,
+ }).then(() => {
+ toast.success(type === 'match' ? _("Unmatched") : _("Cancelled"))
+
+ if (selectedBank?.name === item.bankTransaction.bank_account) {
+ mutate(`bank-reconciliation-unreconciled-transactions-${selectedBank?.name}-${dates.fromDate}-${dates.toDate}`)
+ mutate(`bank-reconciliation-account-closing-balance-${selectedBank?.name}-${dates.toDate}`)
+ // Update the matching vouchers for the selected transaction
+ mutate(`bank-reconciliation-vouchers-${item.bankTransaction.name}-${dates.fromDate}-${dates.toDate}-${matchFilters.join(',')}`)
+ }
+
+ setTimeout(() => {
+ actionLog((prev) => {
+ // Find the action and then remove the item from the action. If the action is empty, remove the action from the array
+ const action = prev.find((action) => action.timestamp === timestamp)
+
+ if (action) {
+ action.items = action.items.filter((i) => i.bankTransaction.name !== item.bankTransaction.name)
+ }
+ // If the action is empty, remove the action from the array
+ if (action && action.items.length === 0) {
+ return prev.filter((a) => a.timestamp !== timestamp)
+ } else {
+ return prev.map((a) => a.timestamp === timestamp ? { ...a, items: action?.items ?? [] } : a)
+ }
+ })
+ }, 100)
+
+ setIsOpen(false)
+
+ }).catch((error) => {
+ toast.error(_("There was an error while performing the action."), {
+ duration: 5000,
+ description: getErrorMessage(error),
+ })
+ })
+ }
+
+ return
+
+
+
+
+
+
+
+
+
+ {_("Cancel")}
+
+
+
+
+ {type === 'match' ? _("Unmatch Transaction?") : _("Undo {}?", [item.voucher.reference_doctype])}
+ {type === 'match' ? _("Are you sure you want to unmatch the voucher from this transaction?") : _("Are you sure you want to cancel this {} {}?", [_(item.voucher.reference_doctype), item.voucher.reference_name])}
+
+ {error && }
+
+
+
+
+ {_("Action Type")}
+ {ACTION_TYPE_MAP[type]}
+
+
+ {_("Voucher Type")}
+ {_(item.voucher.reference_doctype)}
+
+
+ {_("Voucher Name")}
+ {item.voucher.reference_name}
+
+
+ {_("Posting Date")}
+ {formatDate(item.voucher.posting_date, 'Do MMM YYYY')}
+
+ {type === 'transfer' && item.voucher.doc &&
+ {_("Transfer Account")}
+
+
+
+ }
+ {type === 'payment' && item.voucher.doc &&
+ {_("Payment Details")}
+
+
+
+ }
+ {type === 'bank_entry' && item.voucher.doc &&
+ {_("Account")}
+
+ }
+
+
+
+
+ {_("Close")}
+
+
+ {loading ? : _(("Undo"))}
+
+
+
+
+}
+
+export default ActionLogDialogBody
diff --git a/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx b/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx
index 077ee41ccd2..dd248d31092 100644
--- a/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx
+++ b/banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx
@@ -83,7 +83,7 @@ const BankClearanceSummaryView = () => {
toast.success(_("Copied to clipboard"))
})
},
- [copyToClipboard, _],
+ [copyToClipboard],
)
const accountCurrency = useMemo(
@@ -200,7 +200,7 @@ const BankClearanceSummaryView = () => {
},
},
],
- [_, accountCurrency, bankAccount, companyID, mutate, onCopy],
+ [accountCurrency, bankAccount, companyID, mutate, onCopy],
)
return
diff --git a/banking/src/components/features/BankReconciliation/BankEntryModal.tsx b/banking/src/components/features/BankReconciliation/BankEntryModal.tsx
index e6514e5d19c..f0a29455bae 100644
--- a/banking/src/components/features/BankReconciliation/BankEntryModal.tsx
+++ b/banking/src/components/features/BankReconciliation/BankEntryModal.tsx
@@ -1,831 +1,32 @@
-import { useAtom, useAtomValue, useSetAtom } from "jotai"
-import { bankRecRecordJournalEntryModalAtom, bankRecSelectedTransactionAtom, bankRecUnreconcileModalAtom, selectedBankAccountAtom } from "./bankRecAtoms"
-import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogHeader, DialogFooter, DialogClose } from "@/components/ui/dialog"
+import { useAtom } from "jotai"
+import { bankRecRecordJournalEntryModalAtom } from "./bankRecAtoms"
+import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogHeader } from "@/components/ui/dialog"
+import { ModalContentFallback } from "@/components/ui/modal-content-fallback"
import _ from "@/lib/translate"
-import { UnreconciledTransaction, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from "./utils"
-import { useFieldArray, useForm, useFormContext, useWatch } from "react-hook-form"
-import { JournalEntry } from "@/types/Accounts/JournalEntry"
-import { getCompanyCostCenter, getCompanyCurrency } from "@/lib/company"
-import { FrappeConfig, FrappeContext, useFrappePostCall } from "frappe-react-sdk"
-import { toast } from "sonner"
-import ErrorBanner from "@/components/ui/error-banner"
-import { Button } from "@/components/ui/button"
-import SelectedTransactionDetails from "./SelectedTransactionDetails"
-import { AccountFormField, CurrencyFormField, DataField, DateField, LinkFormField, PartyTypeFormField, SmallTextField } from "@/components/ui/form-elements"
-import { Form } from "@/components/ui/form"
-import { useCallback, useContext, useMemo, useRef, useState } from "react"
-import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
-import { Checkbox } from "@/components/ui/checkbox"
-import { ArrowDownRight, ArrowUpRight, Plus, Trash2 } from "lucide-react"
-import { flt, formatCurrency } from "@/lib/numbers"
-import { cn } from "@/lib/utils"
-import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
-import SelectedTransactionsTable from "./SelectedTransactionsTable"
-import { JournalEntryAccount } from "@/types/Accounts/JournalEntryAccount"
-import { BankTransaction } from "@/types/Accounts/BankTransaction"
-import FileUploadBanner from "@/components/common/FileUploadBanner"
-import { Label } from "@/components/ui/label"
-import { FileDropzone } from "@/components/ui/file-dropzone"
-import { useGetAccounts } from "@/components/common/AccountsDropdown"
-import { useHotkeys } from "react-hotkeys-hook"
+import { lazy, Suspense } from "react"
+
+const RecordBankEntryModalContent = lazy(() => import('./BankEntryModalContent'))
const BankEntryModal = () => {
+ const [isOpen, setIsOpen] = useAtom(bankRecRecordJournalEntryModalAtom)
- const [isOpen, setIsOpen] = useAtom(bankRecRecordJournalEntryModalAtom)
-
- return (
-
-
-
- {_("Bank Entry")}
-
- {_("Record a journal entry for expenses, income or split transactions.")}
-
-
-
-
-
- )
+ return (
+
+
+
+ {_("Bank Entry")}
+
+ {_("Record a journal entry for expenses, income or split transactions.")}
+
+
+ {isOpen && (
+ }>
+
+
+ )}
+
+
+ )
}
-const RecordBankEntryModalContent = () => {
-
- const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
-
- const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
-
- if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
- return
- {_("No transaction selected")}
-
- }
-
- if (selectedTransaction.length === 1) {
- return
- }
-
- return
-
-}
-
-const BulkBankEntryForm = ({ selectedTransactions }: { selectedTransactions: UnreconciledTransaction[] }) => {
-
- const form = useForm<{
- account: string
- }>({
- defaultValues: {
- account: ''
- }
- })
-
- const { call, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, journal_entry: JournalEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_bank_entry_and_reconcile')
-
- const onReconcile = useRefreshUnreconciledTransactions()
- const addToActionLog = useUpdateActionLog()
-
- const setIsOpen = useSetAtom(bankRecRecordJournalEntryModalAtom)
-
- const onSubmit = (data: { account: string }) => {
-
- call({
- bank_transactions: selectedTransactions.map(transaction => transaction.name),
- account: data.account
- }).then(({ message }) => {
-
- addToActionLog({
- type: 'bank_entry',
- timestamp: (new Date()).getTime(),
- isBulk: true,
- items: message.map((item) => ({
- bankTransaction: item.transaction,
- voucher: {
- reference_doctype: "Journal Entry",
- reference_name: item.journal_entry.name,
- doc: item.journal_entry,
- posting_date: item.journal_entry.posting_date,
- }
- })),
- bulkCommonData: {
- account: data.account,
- }
- })
-
- toast.success(_("Bank Entries Created"), {
- duration: 4000,
- })
-
- // Set this to the last selected transaction
- onReconcile(selectedTransactions[selectedTransactions.length - 1])
- setIsOpen(false)
- })
- }
-
- return
-
-}
-
-
-interface BankEntryFormData extends Pick
{
- entries: JournalEntry['accounts']
-}
-
-
-const BankEntryForm = ({ selectedTransaction }: { selectedTransaction: UnreconciledTransaction }) => {
-
- const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
-
- const { data: rule } = useGetRuleForTransaction(selectedTransaction)
-
- const setIsOpen = useSetAtom(bankRecRecordJournalEntryModalAtom)
-
- const onClose = () => {
- setIsOpen(false)
- }
-
- const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
-
- const defaultAccounts = useMemo(() => {
-
- const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
-
- const accounts: Partial[] = [
- {
- account: selectedBankAccount?.account ?? '',
- bank_account: selectedTransaction.bank_account,
- // Bank is debited if it's a deposit
- debit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
- credit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
- party_type: '',
- party: '',
- cost_center: ''
- }]
-
- // If there is no rule, we can just add the entries for the bank account transaction and the other side will be the reverse
- if (!rule) {
- accounts.push(
- {
- account: '',
- // Amounts will be the reverse of the bank account transaction
- debit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
- credit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
- cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
- }
- )
- } else {
- // Rule exists, so we need to check the type of rule
- if (!rule.bank_entry_type || rule.bank_entry_type === "Single Account") {
- // Only a single account needs to be added
- accounts.push({
- account: rule.account ?? '',
- // Amounts will be the reverse of the bank account transaction
- debit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
- credit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
- cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
- })
- } else {
- // For multiple accounts, we need to loop over and add entries for each
- // The last row will just be the remaining amount
- let hasTotallyEmptyRowEarlier = false;
-
- let totalDebits = isWithdrawal ? 0 : selectedTransaction.unallocated_amount ?? 0
- let totalCredits = isWithdrawal ? selectedTransaction.unallocated_amount ?? 0 : 0
-
- for (let i = 0; i < (rule.accounts?.length ?? 0); i++) {
-
- const acc = rule.accounts?.[i]
- // If it's the last row, add the difference amount
- if (i === (rule.accounts?.length ?? 0) - 1 && !hasTotallyEmptyRowEarlier) {
-
- const differenceAmount = flt(totalDebits - totalCredits, 2)
- accounts.push({
- account: acc?.account ?? '',
- debit: differenceAmount > 0 ? 0 : Math.abs(differenceAmount),
- credit: differenceAmount > 0 ? Math.abs(differenceAmount) : 0,
- cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
- user_remark: acc?.user_remark ?? '',
- })
- } else {
-
- /**
- * The debit and credit amounts can also be expressions - like "transaction_amount * 0.5"
- * So we need to compute the value of the expression
- * We can use the eval function to do this. But we need to expose certain variables to the expression.
- * One of them is transaction_amount which is the unallocated amount of the selected transaction
- * @param expression - The expression to compute
- * @returns The computed value
- */
- const computeExpression = (expression: string) => {
-
- const script = `
- const transaction_amount = ${selectedTransaction.unallocated_amount ?? 0}
- ${expression};
- `
-
- let value = 0;
-
- try {
- value = window.eval(script);
- } catch (error: unknown) {
- console.error(error);
- value = 0;
- }
-
- return value;
- }
- if (!acc?.debit && !acc?.credit) {
- hasTotallyEmptyRowEarlier = true;
- }
-
- const computedDebit = acc?.debit ? flt(computeExpression(acc.debit), 2) : 0
- const computedCredit = acc?.credit ? flt(computeExpression(acc.credit), 2) : 0
-
- totalDebits = flt(totalDebits + computedDebit, 2)
- totalCredits = flt(totalCredits + computedCredit, 2)
- accounts.push({
- account: acc?.account ?? '',
- debit: computedDebit,
- credit: computedCredit,
- cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
- user_remark: acc?.user_remark ?? '',
- })
- }
- }
- }
- }
-
- return accounts
-
- }, [rule, selectedTransaction, selectedBankAccount])
-
- const form = useForm({
- defaultValues: {
- voucher_type: selectedBankAccount?.is_credit_card ? 'Credit Card Entry' : 'Bank Entry',
- cheque_date: selectedTransaction.date,
- posting_date: selectedTransaction.date,
- cheque_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
- user_remark: selectedTransaction.description,
- entries: defaultAccounts,
- }
- })
-
- const onReconcile = useRefreshUnreconciledTransactions()
-
- const { call: createBankEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, journal_entry: JournalEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bank_entry_and_reconcile')
-
- const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
- const addToActionLog = useUpdateActionLog()
-
- const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
-
- const [isUploading, setIsUploading] = useState(false)
- const [uploadProgress, setUploadProgress] = useState(0)
-
- const [files, setFiles] = useState([])
-
- const onSubmit = (data: BankEntryFormData) => {
-
- createBankEntry({
- bank_transaction_name: selectedTransaction.name,
- ...data
- }).then(async ({ message }) => {
-
- addToActionLog({
- type: 'bank_entry',
- isBulk: false,
- timestamp: (new Date()).getTime(),
- items: [
- {
- bankTransaction: message.transaction,
- voucher: {
- reference_doctype: "Journal Entry",
- reference_name: message.journal_entry.name,
- reference_no: message.journal_entry.cheque_no,
- reference_date: message.journal_entry.cheque_date,
- posting_date: message.journal_entry.posting_date,
- doc: message.journal_entry,
- }
- }
- ]
- })
- toast.success(_("Bank Entry Created"), {
- duration: 4000,
- closeButton: true,
- action: {
- label: _("Undo"),
- onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
- },
- actionButtonStyle: {
- backgroundColor: "rgb(0, 138, 46)"
- }
- })
-
- if (files.length > 0) {
- setIsUploading(true)
-
- const uploadPromises = files.map(f => {
- return frappeFile.uploadFile(f, {
- isPrivate: true,
- doctype: "Journal Entry",
- docname: message.journal_entry.name,
- }, (_bytesUploaded, _totalBytes, progress) => {
-
- setUploadProgress((currentProgress) => {
- //If there are multiple files, we need to add the progress to the current progress
- return currentProgress + ((progress?.progress ?? 0) / files.length)
- })
-
- })
- })
-
- return Promise.all(uploadPromises).then(() => {
- setUploadProgress(0)
- setIsUploading(false)
- }).catch((error) => {
- console.error(error)
- toast.error(_("Error uploading attachments"), {
- duration: 4000,
- })
- setIsUploading(false)
- })
- } else {
- return Promise.resolve()
- }
-
- }).then(() => {
- onReconcile(selectedTransaction)
- onClose()
- })
- }
-
-
- useHotkeys('meta+s', () => {
- form.handleSubmit(onSubmit)()
- }, {
- enabled: true,
- preventDefault: true,
- enableOnFormTags: true
- })
-
- if (isUploading && isCompleted) {
- return
- }
-
- return
-
-
-}
-
-const Entries = ({ company, isWithdrawal, currency }: { company: string, isWithdrawal: boolean, currency: string }) => {
-
- const { getValues, setValue, control } = useFormContext()
-
- const { call } = useContext(FrappeContext) as FrappeConfig
-
- const partyMapRef = useRef>({})
-
- const onPartyChange = (value: string, index: number) => {
- // Get the account for the party type
- if (value) {
- if (partyMapRef.current[value]) {
- setValue(`entries.${index}.account`, partyMapRef.current[value])
- } else {
- call.get('erpnext.accounts.party.get_party_account', {
- party: value,
- party_type: getValues(`entries.${index}.party_type`),
- company: company
- }).then((result: { message: string }) => {
- setValue(`entries.${index}.account`, result.message)
- partyMapRef.current[value] = result.message
- })
- }
- } else {
- setValue(`entries.${index}.account`, '')
- }
- }
-
- const { data: accounts } = useGetAccounts()
-
- const onAccountChange = (value: string, index: number) => {
- // If it's an income or expense account, get the default cost center
- if (value) {
- const account = accounts?.find((acc) => acc.name === value)
- if (account && account.report_type === "Profit and Loss") {
- // Set the default company cost center
- setValue(`entries.${index}.cost_center`, getCompanyCostCenter(company) ?? '')
- return
- }
- }
-
- setValue(`entries.${index}.cost_center`, '')
- }
-
- const { fields, append, remove } = useFieldArray({
- control: control,
- name: 'entries'
- })
-
- const onAdd = useCallback(() => {
- const existingEntries = getValues('entries')
- const totalDebits = existingEntries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
- const totalCredits = existingEntries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
-
- const remainingAmount = flt(totalDebits - totalCredits, 2)
-
- // Remaining amount is credit if it's positive - since some debit is pending to be cleared.
- const debitAmount = remainingAmount > 0 ? 0 : Math.abs(remainingAmount)
- const creditAmount = remainingAmount > 0 ? Math.abs(remainingAmount) : 0
-
- append({
- party_type: '',
- party: '',
- account: '',
- debit: debitAmount,
- credit: creditAmount,
- cost_center: getCompanyCostCenter(company) ?? ''
- } as JournalEntryAccount, {
- focusName: `entries.${existingEntries.length}.account`
- })
- }, [company, append, getValues])
-
- const [selectedRows, setSelectedRows] = useState([])
-
- const onSelectRow = useCallback((index: number) => {
- setSelectedRows(prev => {
- if (prev.includes(index)) {
- return prev.filter(i => i !== index)
- }
- return [...prev, index]
- })
- }, [])
-
- const onSelectAll = useCallback(() => {
- setSelectedRows(prev => {
- if (prev.length === fields.length) {
- return []
- }
- return [...fields.map((_, index) => index)]
- })
- }, [fields])
-
- const onRemove = useCallback(() => {
- remove(selectedRows)
- setSelectedRows([])
- }, [remove, selectedRows])
-
- /**
- * When add difference is clicked, check if the last row has nothing filled in.
- * If last row is empty (no debit or credit), then set that row's amount. Else, add a new row with the difference amount.
- */
- const onAddDifferenceClicked = () => {
-
- const existingEntries = getValues('entries')
- const totalDebits = existingEntries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
- const totalCredits = existingEntries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
-
- const lastIndex = existingEntries.length - 1
-
- const isLastRowEmpty = (existingEntries[lastIndex]?.debit === 0 || existingEntries[lastIndex]?.debit === undefined) && (existingEntries[lastIndex]?.credit === 0 || existingEntries[lastIndex]?.credit === undefined)
-
- const remainingAmount = flt(totalDebits - totalCredits, 2)
-
- // Remaining amount is credit if it's positive - since some debit is pending to be cleared.
- const debitAmount = remainingAmount > 0 ? 0 : Math.abs(remainingAmount)
- const creditAmount = remainingAmount > 0 ? Math.abs(remainingAmount) : 0
-
- if (isLastRowEmpty) {
- setValue(`entries.${lastIndex}.debit`, debitAmount)
- setValue(`entries.${lastIndex}.credit`, creditAmount)
- } else {
- append({
- party_type: '',
- party: '',
- account: '',
- debit: debitAmount,
- credit: creditAmount,
- cost_center: getCompanyCostCenter(company) ?? ''
- } as JournalEntryAccount, {
- focusName: `entries.${existingEntries.length}.account`
- })
- }
- }
-
-
-
- return
-
-
-
- 0 && selectedRows.length === fields.length}
- onCheckedChange={onSelectAll} />
- {_("Party")}
- {_("Account")}
- {_("Cost Center")}
- {_("Remarks")}
- {_("Debit")}
- {_("Credit")}
-
-
-
- {fields.map((field, index) => (
-
-
- onSelectRow(index)}
- // Make this accessible to screen readers
- aria-label={_("Select row {0}", [String(index + 1)])}
- disabled={index === 0}
- />
-
-
-
-
-
-
-
- {
- onAccountChange(event.target.value, index)
- }
- }}
- buttonClassName="min-w-64"
- readOnly={index === 0}
- isRequired
- hideLabel
- />
-
-
-
-
-
-
-
-
-
-
- {_("Bank account debit for deposit")}
- : undefined}
- />
-
-
-
-
- {_("Bank account credit for withdrawal")}
- : undefined}
- />
-
-
- ))}
-
-
-
-
-
- {selectedRows.length > 0 &&
- {_("Remove")}
-
}
-
-
-
-
-
-}
-
-const PartyField = ({ index, onChange, readOnly }: { index: number, onChange: (value: string, index: number) => void, readOnly: boolean }) => {
-
- const { control } = useFormContext()
-
- const party_type = useWatch({
- control,
- name: `entries.${index}.party_type`
- })
-
- if (!party_type) {
- return
- }
-
- return {
- onChange(event.target.value, index)
- },
- }}
- hideLabel
- readOnly={readOnly}
- buttonClassName="rounded-s-none border-s-0 min-w-64"
- doctype={party_type}
-
- />
-}
-
-const Summary = ({ currency, addRow }: { currency: string, addRow: () => void }) => {
-
- const { control } = useFormContext()
-
- const entries = useWatch({ control, name: 'entries' })
-
- const { total, totalCredits, totalDebits } = useMemo(() => {
- // Do a total debits - total credits
- const totalDebits = entries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
- const totalCredits = entries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
- return { total: flt(totalDebits - totalCredits, 2), totalDebits, totalCredits }
- }, [entries])
-
- const onAddRow = useCallback(() => {
- addRow()
- }, [addRow])
-
- const TextComponent = ({ className, children }: { className?: string, children: React.ReactNode }) => {
- return {children}
- }
-
- return
-
- {_("Total Debit")}
- {formatCurrency(totalDebits, currency)}
-
-
- {_("Total Credit")}
- {formatCurrency(totalCredits, currency)}
-
- {total !== 0 &&
- {_("Difference")}
-
-
-
- {formatCurrency(total, currency)}
-
-
-
- {_("Add a row with the difference amount")}
-
-
-
}
-
-
-
-}
-
-
export default BankEntryModal
diff --git a/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx b/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx
new file mode 100644
index 00000000000..17ef3314a1f
--- /dev/null
+++ b/banking/src/components/features/BankReconciliation/BankEntryModalContent.tsx
@@ -0,0 +1,811 @@
+import { useAtomValue, useSetAtom } from "jotai"
+import { bankRecRecordJournalEntryModalAtom, bankRecSelectedTransactionAtom, bankRecUnreconcileModalAtom, selectedBankAccountAtom } from "./bankRecAtoms"
+import { DialogFooter, DialogClose } from "@/components/ui/dialog"
+import _ from "@/lib/translate"
+import { UnreconciledTransaction, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from "./utils"
+import { useFieldArray, useForm, useFormContext, useWatch } from "react-hook-form"
+import { JournalEntry } from "@/types/Accounts/JournalEntry"
+import { getCompanyCostCenter, getCompanyCurrency } from "@/lib/company"
+import { FrappeConfig, FrappeContext, useFrappePostCall } from "frappe-react-sdk"
+import { toast } from "sonner"
+import ErrorBanner from "@/components/ui/error-banner"
+import { Button } from "@/components/ui/button"
+import SelectedTransactionDetails from "./SelectedTransactionDetails"
+import { AccountFormField, CurrencyFormField, DataField, DateField, LinkFormField, PartyTypeFormField, SmallTextField } from "@/components/ui/form-elements"
+import { Form } from "@/components/ui/form"
+import { useCallback, useContext, useMemo, useRef, useState } from "react"
+import { useMultiFileUploadProgress } from "@/hooks/useMultiFileUploadProgress"
+import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
+import { Checkbox } from "@/components/ui/checkbox"
+import { ArrowDownRight, ArrowUpRight, Plus, Trash2 } from "lucide-react"
+import { flt, formatCurrency } from "@/lib/numbers"
+import { cn } from "@/lib/utils"
+import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
+import SelectedTransactionsTable from "./SelectedTransactionsTable"
+import { JournalEntryAccount } from "@/types/Accounts/JournalEntryAccount"
+import { BankTransaction } from "@/types/Accounts/BankTransaction"
+import FileUploadBanner from "@/components/common/FileUploadBanner"
+import { Label } from "@/components/ui/label"
+import { FileDropzone } from "@/components/ui/file-dropzone"
+import { useGetAccounts } from "@/components/common/AccountsDropdown"
+import { useHotkeys } from "react-hotkeys-hook"
+const RecordBankEntryModalContent = () => {
+
+ const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
+
+ const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
+
+ if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
+ return
+ {_("No transaction selected")}
+
+ }
+
+ if (selectedTransaction.length === 1) {
+ return
+ }
+
+ return
+
+}
+
+const BulkBankEntryForm = ({ selectedTransactions }: { selectedTransactions: UnreconciledTransaction[] }) => {
+
+ const form = useForm<{
+ account: string
+ }>({
+ defaultValues: {
+ account: ''
+ }
+ })
+
+ const { call, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, journal_entry: JournalEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_bank_entry_and_reconcile')
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+ const addToActionLog = useUpdateActionLog()
+
+ const setIsOpen = useSetAtom(bankRecRecordJournalEntryModalAtom)
+
+ const onSubmit = (data: { account: string }) => {
+
+ call({
+ bank_transactions: selectedTransactions.map(transaction => transaction.name),
+ account: data.account
+ }).then(({ message }) => {
+
+ addToActionLog({
+ type: 'bank_entry',
+ timestamp: (new Date()).getTime(),
+ isBulk: true,
+ items: message.map((item) => ({
+ bankTransaction: item.transaction,
+ voucher: {
+ reference_doctype: "Journal Entry",
+ reference_name: item.journal_entry.name,
+ doc: item.journal_entry,
+ posting_date: item.journal_entry.posting_date,
+ }
+ })),
+ bulkCommonData: {
+ account: data.account,
+ }
+ })
+
+ toast.success(_("Bank Entries Created"), {
+ duration: 4000,
+ })
+
+ // Set this to the last selected transaction
+ onReconcile(selectedTransactions[selectedTransactions.length - 1])
+ setIsOpen(false)
+ })
+ }
+
+ return
+
+}
+
+
+interface BankEntryFormData extends Pick {
+ entries: JournalEntry['accounts']
+}
+
+
+const BankEntryForm = ({ selectedTransaction }: { selectedTransaction: UnreconciledTransaction }) => {
+
+ const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
+
+ const { data: rule } = useGetRuleForTransaction(selectedTransaction)
+
+ const setIsOpen = useSetAtom(bankRecRecordJournalEntryModalAtom)
+
+ const onClose = () => {
+ setIsOpen(false)
+ }
+
+ const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
+
+ const defaultAccounts = useMemo(() => {
+
+ const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
+
+ const accounts: Partial[] = [
+ {
+ account: selectedBankAccount?.account ?? '',
+ bank_account: selectedTransaction.bank_account,
+ // Bank is debited if it's a deposit
+ debit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
+ credit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
+ party_type: '',
+ party: '',
+ cost_center: ''
+ }]
+
+ // If there is no rule, we can just add the entries for the bank account transaction and the other side will be the reverse
+ if (!rule) {
+ accounts.push(
+ {
+ account: '',
+ // Amounts will be the reverse of the bank account transaction
+ debit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
+ credit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
+ cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
+ }
+ )
+ } else {
+ // Rule exists, so we need to check the type of rule
+ if (!rule.bank_entry_type || rule.bank_entry_type === "Single Account") {
+ // Only a single account needs to be added
+ accounts.push({
+ account: rule.account ?? '',
+ // Amounts will be the reverse of the bank account transaction
+ debit: isWithdrawal ? selectedTransaction.unallocated_amount : 0,
+ credit: isWithdrawal ? 0 : selectedTransaction.unallocated_amount,
+ cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
+ })
+ } else {
+ // For multiple accounts, we need to loop over and add entries for each
+ // The last row will just be the remaining amount
+ let hasTotallyEmptyRowEarlier = false;
+
+ let totalDebits = isWithdrawal ? 0 : selectedTransaction.unallocated_amount ?? 0
+ let totalCredits = isWithdrawal ? selectedTransaction.unallocated_amount ?? 0 : 0
+
+ for (let i = 0; i < (rule.accounts?.length ?? 0); i++) {
+
+ const acc = rule.accounts?.[i]
+ // If it's the last row, add the difference amount
+ if (i === (rule.accounts?.length ?? 0) - 1 && !hasTotallyEmptyRowEarlier) {
+
+ const differenceAmount = flt(totalDebits - totalCredits, 2)
+ accounts.push({
+ account: acc?.account ?? '',
+ debit: differenceAmount > 0 ? 0 : Math.abs(differenceAmount),
+ credit: differenceAmount > 0 ? Math.abs(differenceAmount) : 0,
+ cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
+ user_remark: acc?.user_remark ?? '',
+ })
+ } else {
+
+ /**
+ * The debit and credit amounts can also be expressions - like "transaction_amount * 0.5"
+ * So we need to compute the value of the expression
+ * We can use the eval function to do this. But we need to expose certain variables to the expression.
+ * One of them is transaction_amount which is the unallocated amount of the selected transaction
+ * @param expression - The expression to compute
+ * @returns The computed value
+ */
+ const computeExpression = (expression: string) => {
+
+ const script = `
+ const transaction_amount = ${selectedTransaction.unallocated_amount ?? 0}
+ ${expression};
+ `
+
+ let value = 0;
+
+ try {
+ value = window.eval(script);
+ } catch (error: unknown) {
+ console.error(error);
+ value = 0;
+ }
+
+ return value;
+ }
+ if (!acc?.debit && !acc?.credit) {
+ hasTotallyEmptyRowEarlier = true;
+ }
+
+ const computedDebit = acc?.debit ? flt(computeExpression(acc.debit), 2) : 0
+ const computedCredit = acc?.credit ? flt(computeExpression(acc.credit), 2) : 0
+
+ totalDebits = flt(totalDebits + computedDebit, 2)
+ totalCredits = flt(totalCredits + computedCredit, 2)
+ accounts.push({
+ account: acc?.account ?? '',
+ debit: computedDebit,
+ credit: computedCredit,
+ cost_center: getCompanyCostCenter(selectedTransaction.company ?? '') ?? '',
+ user_remark: acc?.user_remark ?? '',
+ })
+ }
+ }
+ }
+ }
+
+ return accounts
+
+ }, [rule, selectedTransaction, selectedBankAccount])
+
+ const form = useForm({
+ defaultValues: {
+ voucher_type: selectedBankAccount?.is_credit_card ? 'Credit Card Entry' : 'Bank Entry',
+ cheque_date: selectedTransaction.date,
+ posting_date: selectedTransaction.date,
+ cheque_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
+ user_remark: selectedTransaction.description,
+ entries: defaultAccounts,
+ }
+ })
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+
+ const { call: createBankEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, journal_entry: JournalEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bank_entry_and_reconcile')
+
+ const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
+ const addToActionLog = useUpdateActionLog()
+
+ const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
+
+ const [isUploading, setIsUploading] = useState(false)
+ const { uploadProgress, startTracking, updateFileProgress, resetProgress } = useMultiFileUploadProgress()
+
+ const [files, setFiles] = useState([])
+
+ const onSubmit = (data: BankEntryFormData) => {
+
+ createBankEntry({
+ bank_transaction_name: selectedTransaction.name,
+ ...data
+ }).then(async ({ message }) => {
+
+ addToActionLog({
+ type: 'bank_entry',
+ isBulk: false,
+ timestamp: (new Date()).getTime(),
+ items: [
+ {
+ bankTransaction: message.transaction,
+ voucher: {
+ reference_doctype: "Journal Entry",
+ reference_name: message.journal_entry.name,
+ reference_no: message.journal_entry.cheque_no,
+ reference_date: message.journal_entry.cheque_date,
+ posting_date: message.journal_entry.posting_date,
+ doc: message.journal_entry,
+ }
+ }
+ ]
+ })
+ toast.success(_("Bank Entry Created"), {
+ duration: 4000,
+ closeButton: true,
+ action: {
+ label: _("Undo"),
+ onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
+ },
+ actionButtonStyle: {
+ backgroundColor: "rgb(0, 138, 46)"
+ }
+ })
+
+ if (files.length > 0) {
+ setIsUploading(true)
+ startTracking(files.length)
+
+ const uploadPromises = files.map((f, fileIndex) => {
+ return frappeFile.uploadFile(f, {
+ isPrivate: true,
+ doctype: "Journal Entry",
+ docname: message.journal_entry.name,
+ }, (_bytesUploaded, _totalBytes, progress) => {
+ updateFileProgress(fileIndex, progress?.progress ?? 0)
+ })
+ })
+
+ return Promise.all(uploadPromises).then(() => {
+ resetProgress()
+ setIsUploading(false)
+ }).catch((error) => {
+ console.error(error)
+ toast.error(_("Error uploading attachments"), {
+ duration: 4000,
+ })
+ resetProgress()
+ setIsUploading(false)
+ })
+ } else {
+ return Promise.resolve()
+ }
+
+ }).then(() => {
+ onReconcile(selectedTransaction)
+ onClose()
+ })
+ }
+
+
+ useHotkeys('meta+s', () => {
+ form.handleSubmit(onSubmit)()
+ }, {
+ enabled: true,
+ preventDefault: true,
+ enableOnFormTags: true
+ })
+
+ if (isUploading && isCompleted) {
+ return
+ }
+
+ return
+
+
+}
+
+const Entries = ({ company, isWithdrawal, currency }: { company: string, isWithdrawal: boolean, currency: string }) => {
+
+ const { getValues, setValue, control } = useFormContext()
+
+ const { call } = useContext(FrappeContext) as FrappeConfig
+
+ const partyMapRef = useRef>({})
+
+ const onPartyChange = (value: string, index: number) => {
+ // Get the account for the party type
+ if (value) {
+ if (partyMapRef.current[value]) {
+ setValue(`entries.${index}.account`, partyMapRef.current[value])
+ } else {
+ call.get('erpnext.accounts.party.get_party_account', {
+ party: value,
+ party_type: getValues(`entries.${index}.party_type`),
+ company: company
+ }).then((result: { message: string }) => {
+ setValue(`entries.${index}.account`, result.message)
+ partyMapRef.current[value] = result.message
+ })
+ }
+ } else {
+ setValue(`entries.${index}.account`, '')
+ }
+ }
+
+ const { data: accounts } = useGetAccounts()
+
+ const onAccountChange = (value: string, index: number) => {
+ // If it's an income or expense account, get the default cost center
+ if (value) {
+ const account = accounts?.find((acc) => acc.name === value)
+ if (account && account.report_type === "Profit and Loss") {
+ // Set the default company cost center
+ setValue(`entries.${index}.cost_center`, getCompanyCostCenter(company) ?? '')
+ return
+ }
+ }
+
+ setValue(`entries.${index}.cost_center`, '')
+ }
+
+ const { fields, append, remove } = useFieldArray({
+ control: control,
+ name: 'entries'
+ })
+
+ const onAdd = useCallback(() => {
+ const existingEntries = getValues('entries')
+ const totalDebits = existingEntries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
+ const totalCredits = existingEntries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
+
+ const remainingAmount = flt(totalDebits - totalCredits, 2)
+
+ // Remaining amount is credit if it's positive - since some debit is pending to be cleared.
+ const debitAmount = remainingAmount > 0 ? 0 : Math.abs(remainingAmount)
+ const creditAmount = remainingAmount > 0 ? Math.abs(remainingAmount) : 0
+
+ append({
+ party_type: '',
+ party: '',
+ account: '',
+ debit: debitAmount,
+ credit: creditAmount,
+ cost_center: getCompanyCostCenter(company) ?? ''
+ } as JournalEntryAccount, {
+ focusName: `entries.${existingEntries.length}.account`
+ })
+ }, [company, append, getValues])
+
+ const [selectedRows, setSelectedRows] = useState([])
+
+ const onSelectRow = useCallback((index: number) => {
+ setSelectedRows(prev => {
+ if (prev.includes(index)) {
+ return prev.filter(i => i !== index)
+ }
+ return [...prev, index]
+ })
+ }, [])
+
+ const onSelectAll = useCallback(() => {
+ setSelectedRows(prev => {
+ if (prev.length === fields.length) {
+ return []
+ }
+ return [...fields.map((_, index) => index)]
+ })
+ }, [fields])
+
+ const onRemove = useCallback(() => {
+ // Do not remove the first row
+ remove(selectedRows.filter(index => index !== 0))
+ setSelectedRows([])
+ }, [remove, selectedRows])
+
+ /**
+ * When add difference is clicked, check if the last row has nothing filled in.
+ * If last row is empty (no debit or credit), then set that row's amount. Else, add a new row with the difference amount.
+ */
+ const onAddDifferenceClicked = () => {
+
+ const existingEntries = getValues('entries')
+ const totalDebits = existingEntries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
+ const totalCredits = existingEntries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
+
+ const lastIndex = existingEntries.length - 1
+
+ const isLastRowEmpty = (existingEntries[lastIndex]?.debit === 0 || existingEntries[lastIndex]?.debit === undefined) && (existingEntries[lastIndex]?.credit === 0 || existingEntries[lastIndex]?.credit === undefined)
+
+ const remainingAmount = flt(totalDebits - totalCredits, 2)
+
+ // Remaining amount is credit if it's positive - since some debit is pending to be cleared.
+ const debitAmount = remainingAmount > 0 ? 0 : Math.abs(remainingAmount)
+ const creditAmount = remainingAmount > 0 ? Math.abs(remainingAmount) : 0
+
+ if (isLastRowEmpty) {
+ setValue(`entries.${lastIndex}.debit`, debitAmount)
+ setValue(`entries.${lastIndex}.credit`, creditAmount)
+ } else {
+ append({
+ party_type: '',
+ party: '',
+ account: '',
+ debit: debitAmount,
+ credit: creditAmount,
+ cost_center: getCompanyCostCenter(company) ?? ''
+ } as JournalEntryAccount, {
+ focusName: `entries.${existingEntries.length}.account`
+ })
+ }
+ }
+
+
+
+ return
+
+
+
+ 0 && selectedRows.length === fields.length}
+ onCheckedChange={onSelectAll} />
+ {_("Party")}
+ {_("Account")}
+ {_("Cost Center")}
+ {_("Remarks")}
+ {_("Debit")}
+ {_("Credit")}
+
+
+
+ {fields.map((field, index) => (
+
+
+ onSelectRow(index)}
+ // Make this accessible to screen readers
+ aria-label={_("Select row {0}", [String(index + 1)])}
+ disabled={index === 0}
+ />
+
+
+
+
+
+
+
+ {
+ onAccountChange(event.target.value, index)
+ }
+ }}
+ buttonClassName="min-w-64"
+ readOnly={index === 0}
+ isRequired
+ hideLabel
+ />
+
+
+
+
+
+
+
+
+
+
+ {_("Bank account debit for deposit")}
+ : undefined}
+ />
+
+
+
+
+ {_("Bank account credit for withdrawal")}
+ : undefined}
+ />
+
+
+ ))}
+
+
+
+
+
+ {selectedRows.length > 0 &&
+ {_("Remove")}
+
}
+
+
+
+
+
+}
+
+const PartyField = ({ index, onChange, readOnly }: { index: number, onChange: (value: string, index: number) => void, readOnly: boolean }) => {
+
+ const { control } = useFormContext()
+
+ const party_type = useWatch({
+ control,
+ name: `entries.${index}.party_type`
+ })
+
+ if (!party_type) {
+ return
+ }
+
+ return {
+ onChange(event.target.value, index)
+ },
+ }}
+ hideLabel
+ readOnly={readOnly}
+ buttonClassName="rounded-s-none border-s-0 min-w-64"
+ doctype={party_type}
+
+ />
+}
+
+const Summary = ({ currency, addRow }: { currency: string, addRow: () => void }) => {
+
+ const { control } = useFormContext()
+
+ const entries = useWatch({ control, name: 'entries' })
+
+ const { total, totalCredits, totalDebits } = useMemo(() => {
+ // Do a total debits - total credits
+ const totalDebits = entries.reduce((acc, curr) => flt(acc + (curr.debit ?? 0), 2), 0)
+ const totalCredits = entries.reduce((acc, curr) => flt(acc + (curr.credit ?? 0), 2), 0)
+ return { total: flt(totalDebits - totalCredits, 2), totalDebits, totalCredits }
+ }, [entries])
+
+ const onAddRow = useCallback(() => {
+ addRow()
+ }, [addRow])
+
+ const TextComponent = ({ className, children }: { className?: string, children: React.ReactNode }) => {
+ return {children}
+ }
+
+ return
+
+ {_("Total Debit")}
+ {formatCurrency(totalDebits, currency)}
+
+
+ {_("Total Credit")}
+ {formatCurrency(totalCredits, currency)}
+
+ {total !== 0 &&
+ {_("Difference")}
+
+
+
+ {formatCurrency(total, currency)}
+
+
+
+ {_("Add a row with the difference amount")}
+
+
+
}
+
+
+
+}
+
+
+
+export default RecordBankEntryModalContent
diff --git a/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx b/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx
index acfed95aa15..7b505efadc3 100644
--- a/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx
+++ b/banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx
@@ -76,7 +76,7 @@ const BankReconciliationStatementView = () => {
toast.success(_("Copied to clipboard"))
})
},
- [copyToClipboard, _],
+ [copyToClipboard],
)
const statementColumns = useMemo[]>(
@@ -181,7 +181,7 @@ const BankReconciliationStatementView = () => {
cell: ({ row }) => formatDate(row.original.clearance_date),
},
],
- [_, onCopy],
+ [onCopy],
)
const statementRows = useMemo(() => {
diff --git a/banking/src/components/features/BankReconciliation/BankTransactionList.tsx b/banking/src/components/features/BankReconciliation/BankTransactionList.tsx
index c37165349fe..17f231a0833 100644
--- a/banking/src/components/features/BankReconciliation/BankTransactionList.tsx
+++ b/banking/src/components/features/BankReconciliation/BankTransactionList.tsx
@@ -176,7 +176,7 @@ const BankTransactionListView = () => {
),
},
],
- [_, accountCurrency, onUndo],
+ [accountCurrency, onUndo],
)
const [search, setSearch] = useDebounceValue('', 250)
diff --git a/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx b/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx
index a9996a2ddef..3f43c987dbf 100644
--- a/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx
+++ b/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx
@@ -1,125 +1,52 @@
-import { AlertDialog, AlertDialogOverlay, AlertDialogContent, AlertDialogHeader, AlertDialogTitle, AlertDialogDescription, AlertDialogFooter, AlertDialogCancel, AlertDialogAction } from "@/components/ui/alert-dialog"
-import { useAtom, useAtomValue } from "jotai"
-import { bankRecDateAtom, bankRecUnreconcileModalAtom, selectedBankAccountAtom } from "./bankRecAtoms"
-import { useMemo } from "react"
-import { useFrappeGetDoc, useFrappePostCall, useSWRConfig } from "frappe-react-sdk"
-import { BankTransaction } from "@/types/Accounts/BankTransaction"
-import { toast } from "sonner"
-import ErrorBanner from "@/components/ui/error-banner"
-import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
-import { formatCurrency } from "@/lib/numbers"
-import { Badge } from "@/components/ui/badge"
-import { slug } from "@/lib/frappe"
-import SelectedTransactionDetails from "./SelectedTransactionDetails"
+import {
+ AlertDialog,
+ AlertDialogContent,
+ AlertDialogDescription,
+ AlertDialogHeader,
+ AlertDialogTitle,
+} from "@/components/ui/alert-dialog"
+import { useAtom } from "jotai"
+import { Loader2Icon } from "lucide-react"
+import { lazy, Suspense } from "react"
+import { bankRecUnreconcileModalAtom } from "./bankRecAtoms"
import _ from "@/lib/translate"
+const BankTransactionUnreconcileModalBody = lazy(() => import('./BankTransactionUnreconcileModalBody'))
+
+const BankTransactionUnreconcileModalFallback = () => (
+
+
+
+)
+
const BankTransactionUnreconcileModal = () => {
+ const [unreconcileModal, setBankRecUnreconcileModal] = useAtom(bankRecUnreconcileModalAtom)
- const [unreconcileModal, setBankRecUnreconcileModal] = useAtom(bankRecUnreconcileModalAtom)
-
- const onOpenChange = (v: boolean) => {
- if (!v) {
- setBankRecUnreconcileModal('')
- }
- }
-
- return
-
-
-
- {_("Undo Transaction Reconciliation")}
-
- {_("Are you sure you want to unreconcile this transaction?")}
-
-
-
-
-
+ const onOpenChange = (v: boolean) => {
+ if (!v) {
+ setBankRecUnreconcileModal('')
+ }
+ }
+ if (!unreconcileModal) {
+ return null
+ }
+ return (
+
+
+
+ {_("Undo Transaction Reconciliation")}
+
+ {_("Are you sure you want to unreconcile this transaction?")}
+
+
+ }>
+
+
+
+
+ )
}
-const BankTransactionUnreconcileModalContent = () => {
- const bankAccount = useAtomValue(selectedBankAccountAtom)
- const dates = useAtomValue(bankRecDateAtom)
-
- const { mutate } = useSWRConfig()
-
- const [unreconcileModal, setBankRecUnreconcileModal] = useAtom(bankRecUnreconcileModalAtom)
-
- const { data: transaction, error } = useFrappeGetDoc('Bank Transaction', unreconcileModal)
-
- const { call, loading, error: unreconcileError } = useFrappePostCall('erpnext.accounts.doctype.bank_transaction.bank_transaction.unreconcile_transaction')
-
- const onUnreconcile = (event: React.MouseEvent) => {
- call({
- transaction_name: unreconcileModal
- }).then(() => {
- // Mutate the transactions list, unreconciled transactions list and account closing balance
- mutate(`bank-reconciliation-bank-transactions-${bankAccount?.name}-${dates.fromDate}-${dates.toDate}`)
- mutate(`bank-reconciliation-unreconciled-transactions-${bankAccount?.name}-${dates.fromDate}-${dates.toDate}`)
- mutate(`bank-reconciliation-account-closing-balance-${bankAccount?.name}-${dates.toDate}`)
- toast.success(_("Transaction Unreconciled"))
- setBankRecUnreconcileModal('')
- })
-
- event.preventDefault()
- }
-
- const vouchersWhichWillBeCancelled = useMemo(() => {
- return transaction?.payment_entries?.filter((payment) => payment.reconciliation_type === 'Voucher Created')
- }, [transaction])
-
- return
-
- {error &&
}
- {unreconcileError &&
}
- {transaction &&
}
-
{_("This transaction has been reconciled with the following document(s):")}
-
-
-
- {_("Document")}
- {_("Amount")}
- {_("Reconciliation Type")}
-
-
-
- {transaction?.payment_entries?.map((voucher) => {
- return
-
-
- {`${_(voucher.payment_document)}: ${voucher.payment_entry}`}
-
-
- {formatCurrency(voucher.allocated_amount)}
- {voucher.reconciliation_type === 'Voucher Created' ?
- {_(voucher.reconciliation_type)} :
- {_(voucher.reconciliation_type ?? "Matched")} }
-
- })}
-
-
-
- {vouchersWhichWillBeCancelled && vouchersWhichWillBeCancelled?.length > 0 &&
The following documents will be cancelled : }
- {vouchersWhichWillBeCancelled && vouchersWhichWillBeCancelled?.length > 0 &&
- {vouchersWhichWillBeCancelled?.map((voucher) => {
- return {_(voucher.payment_document)}: {voucher.payment_entry}
- })}
- }
-
-
-
- {_("Cancel")}
-
- {_("Unreconcile")}
-
-
-
-}
-
-export default BankTransactionUnreconcileModal
\ No newline at end of file
+export default BankTransactionUnreconcileModal
diff --git a/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx b/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx
new file mode 100644
index 00000000000..6cb9da1e36e
--- /dev/null
+++ b/banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModalBody.tsx
@@ -0,0 +1,109 @@
+import { AlertDialogAction, AlertDialogCancel, AlertDialogFooter } from "@/components/ui/alert-dialog"
+import { useAtom, useAtomValue } from "jotai"
+import { bankRecDateAtom, bankRecUnreconcileModalAtom, selectedBankAccountAtom } from "./bankRecAtoms"
+import { useMemo } from "react"
+import { useFrappeGetDoc, useFrappePostCall, useSWRConfig } from "frappe-react-sdk"
+import { BankTransaction } from "@/types/Accounts/BankTransaction"
+import { toast } from "sonner"
+import ErrorBanner from "@/components/ui/error-banner"
+import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
+import { formatCurrency } from "@/lib/numbers"
+import { Badge } from "@/components/ui/badge"
+import { slug } from "@/lib/frappe"
+import SelectedTransactionDetails from "./SelectedTransactionDetails"
+import _ from "@/lib/translate"
+
+const BankTransactionUnreconcileModalBody = () => {
+ const bankAccount = useAtomValue(selectedBankAccountAtom)
+ const dates = useAtomValue(bankRecDateAtom)
+
+ const { mutate } = useSWRConfig()
+
+ const [unreconcileModal, setBankRecUnreconcileModal] = useAtom(bankRecUnreconcileModalAtom)
+
+ const { data: transaction, error, isLoading } = useFrappeGetDoc('Bank Transaction', unreconcileModal)
+
+ const { call, loading, error: unreconcileError } = useFrappePostCall('erpnext.accounts.doctype.bank_transaction.bank_transaction.unreconcile_transaction')
+
+ const onUnreconcile = (event: React.MouseEvent) => {
+ call({
+ transaction_name: unreconcileModal
+ }).then(() => {
+ mutate(`bank-reconciliation-bank-transactions-${bankAccount?.name}-${dates.fromDate}-${dates.toDate}`)
+ mutate(`bank-reconciliation-unreconciled-transactions-${bankAccount?.name}-${dates.fromDate}-${dates.toDate}`)
+ mutate(`bank-reconciliation-account-closing-balance-${bankAccount?.name}-${dates.toDate}`)
+ toast.success(_("Transaction Unreconciled"))
+ setBankRecUnreconcileModal('')
+ })
+
+ event.preventDefault()
+ }
+
+ const vouchersWhichWillBeCancelled = useMemo(() => {
+ return transaction?.payment_entries?.filter((payment) => payment.reconciliation_type === 'Voucher Created')
+ }, [transaction])
+
+ return (
+ <>
+
+ {error &&
}
+ {unreconcileError &&
}
+ {transaction &&
}
+
{_("This transaction has been reconciled with the following document(s):")}
+
+
+
+ {_("Document")}
+ {_("Amount")}
+ {_("Reconciliation Type")}
+
+
+
+ {transaction?.payment_entries?.map((voucher) => {
+ return (
+
+
+
+ {`${_(voucher.payment_document)}: ${voucher.payment_entry}`}
+
+
+ {formatCurrency(voucher.allocated_amount)}
+
+ {voucher.reconciliation_type === 'Voucher Created' ?
+ {_(voucher.reconciliation_type)} :
+ {_(voucher.reconciliation_type ?? "Matched")} }
+
+
+ )
+ })}
+
+
+
+ {vouchersWhichWillBeCancelled && vouchersWhichWillBeCancelled?.length > 0 && (
+
The following documents will be cancelled :
+ )}
+ {vouchersWhichWillBeCancelled && vouchersWhichWillBeCancelled?.length > 0 && (
+
+ {vouchersWhichWillBeCancelled?.map((voucher) => {
+ return {_(voucher.payment_document)}: {voucher.payment_entry}
+ })}
+
+ )}
+
+
+
+ {_("Cancel")}
+
+ {_("Unreconcile")}
+
+
+ >
+ )
+}
+
+export default BankTransactionUnreconcileModalBody
diff --git a/banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx b/banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx
index 58940aa6f91..aba419f1445 100644
--- a/banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx
+++ b/banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx
@@ -91,7 +91,7 @@ const IncorrectlyClearedEntriesView = () => {
})
})
},
- [clearClearingDate, mutate, _],
+ [clearClearingDate, mutate],
)
const accountCurrency = useMemo(
@@ -174,7 +174,7 @@ const IncorrectlyClearedEntriesView = () => {
),
},
],
- [_, accountCurrency, onClearClick],
+ [accountCurrency, onClearClick],
)
return
diff --git a/banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx b/banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx
index 32eeb672fcd..7549cf74150 100644
--- a/banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx
+++ b/banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx
@@ -14,7 +14,7 @@ import { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuIte
import { Button } from "@/components/ui/button"
import CurrencyInput from 'react-currency-input-field'
import { getCurrencySymbol } from "@/lib/currency"
-import { Virtuoso } from 'react-virtuoso'
+import { useVirtualizer } from '@tanstack/react-virtual'
import { formatDate } from "@/lib/date"
import { Badge } from "@/components/ui/badge"
import { formatCurrency, getCurrencyFormatInfo } from "@/lib/numbers"
@@ -22,10 +22,10 @@ import { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider } from "@/comp
import { Skeleton } from "@/components/ui/skeleton"
import { slug } from "@/lib/frappe"
import _ from "@/lib/translate"
+import { Card, CardAction, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import TransferModal from "./TransferModal"
import BankEntryModal from "./BankEntryModal"
import RecordPaymentModal from "./RecordPaymentModal"
-import { Card, CardAction, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import SelectedTransactionsTable from "./SelectedTransactionsTable"
import MatchFilters from "./MatchFilters"
import { useHotkeys } from "react-hotkeys-hook"
@@ -69,6 +69,59 @@ const MatchAndReconcile = ({ contentHeight }: { contentHeight: number }) => {
>
}
+/** TanStack requires `estimateSize` for initial scroll range; `measureElement` on each row sets the real height. */
+function VirtualizedListBody
({
+ items,
+ height,
+ getItemKey,
+ children,
+ estimateSize = 74,
+}: {
+ items: T[]
+ height: number
+ getItemKey: (item: T, index: number) => string | number
+ children: (item: T, index: number) => React.ReactNode
+ estimateSize?: number
+}) {
+ const scrollRef = useRef(null)
+
+ const rowVirtualizer = useVirtualizer({
+ count: items.length,
+ getScrollElement: () => scrollRef.current,
+ estimateSize: () => estimateSize,
+ overscan: 8,
+ getItemKey: (index) => String(getItemKey(items[index], index)),
+ })
+
+ if (items.length === 0) {
+ return null
+ }
+
+ return (
+
+
+ {rowVirtualizer.getVirtualItems().map((virtualRow) => (
+
+ {children(items[virtualRow.index], virtualRow.index)}
+
+ ))}
+
+
+ )
+}
const UnreconciledTransactions = ({ contentHeight }: { contentHeight: number }) => {
const bankAccount = useAtomValue(selectedBankAccountAtom)
@@ -134,6 +187,7 @@ const UnreconciledTransactions = ({ contentHeight }: { contentHeight: number })
}
const hasFilters = search !== '' || typeFilter !== 'All' || amountFilter.value !== 0
+ const listHeight = contentHeight - 72
if (isLoading) {
return
@@ -222,14 +276,14 @@ const UnreconciledTransactions = ({ contentHeight }: { contentHeight: number })
text={hasFilters ? _("No transactions found for the given filters.") : _("No unreconciled transactions found")}
description={hasFilters ? _("Try adjusting your search or filter criteria.") : _("Import your bank statement to get started.")} />}
- (
-
- )}
- style={{ minHeight: Math.max(contentHeight - 80, 400) }}
- totalCount={results?.length}
- />
+ transaction.name}
+ >
+ {(transaction) => }
+
}
@@ -559,11 +613,8 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
const setRecordPaymentModalOpen = useSetAtom(bankRecRecordPaymentModalAtom)
const setRecordJournalEntryModalOpen = useSetAtom(bankRecRecordJournalEntryModalAtom)
- if (!rule) {
- return null
- }
-
const getActionIcon = () => {
+ if (!rule) return null
switch (rule.classify_as) {
case "Bank Entry":
return
@@ -577,6 +628,7 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
}
const getActionStyles = () => {
+ if (!rule) return {}
switch (rule.classify_as) {
case "Bank Entry":
return {
@@ -610,6 +662,7 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
}
const handleActionClick = () => {
+ if (!rule) return
switch (rule.classify_as) {
case "Bank Entry":
setRecordJournalEntryModalOpen(true)
@@ -624,6 +677,7 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
}
const getActionDescription = () => {
+ if (!rule) return ""
switch (rule.classify_as) {
case "Bank Entry":
return _("Create a journal entry for expenses, income or split transactions")
@@ -636,8 +690,7 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
}
}
- useHotkeys('meta+r', () => {
- //
+ useHotkeys('alt+r', () => {
handleActionClick()
}, {
enabled: true,
@@ -647,6 +700,10 @@ const RuleAction = ({ transaction }: { transaction: UnreconciledTransaction }) =
const styles = getActionStyles()
+ if (!rule) {
+ return null
+ }
+
return (
@@ -721,6 +778,9 @@ const VouchersForTransaction = ({ transaction, contentHeight }: { transaction: U
const { data: vouchers, isLoading, error } = useGetVouchersForTransaction(transaction)
+ const voucherList = vouchers?.message ?? []
+ const listHeight = contentHeight - 120
+
if (error) {
return
}
@@ -747,7 +807,7 @@ const VouchersForTransaction = ({ transaction, contentHeight }: { transaction: U
or
- {vouchers?.message.length === 0 &&
+ {voucherList.length === 0 &&
@@ -756,14 +816,14 @@ const VouchersForTransaction = ({ transaction, contentHeight }: { transaction: U
{_("No vouchers found for this transaction")}
}
- (
-
- )}
- style={{ height: contentHeight }}
- totalCount={vouchers?.message.length}
- />
+ voucher.name}
+ >
+ {(voucher, index) => }
+
}
diff --git a/banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx b/banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx
index cebb82cd640..01bfee059d7 100644
--- a/banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx
+++ b/banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx
@@ -1,1301 +1,32 @@
-import { atom, useAtom, useAtomValue, useSetAtom } from "jotai"
-import { bankRecRecordPaymentModalAtom, bankRecSelectedTransactionAtom, bankRecUnreconcileModalAtom, SelectedBank, selectedBankAccountAtom } from "./bankRecAtoms"
-import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogHeader, DialogFooter, DialogClose, DialogTrigger } from "@/components/ui/dialog"
+import { useAtom } from "jotai"
+import { bankRecRecordPaymentModalAtom } from "./bankRecAtoms"
+import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogHeader } from "@/components/ui/dialog"
+import { ModalContentFallback } from "@/components/ui/modal-content-fallback"
import _ from "@/lib/translate"
-import { UnreconciledTransaction, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from "./utils"
-import { useFieldArray, useForm, useFormContext, useWatch } from "react-hook-form"
-import { getCompanyCostCenter, getCompanyCurrency } from "@/lib/company"
-import { FrappeConfig, FrappeContext, useFrappeGetCall, useFrappePostCall } from "frappe-react-sdk"
-import { toast } from "sonner"
-import ErrorBanner from "@/components/ui/error-banner"
-import { Button } from "@/components/ui/button"
-import SelectedTransactionDetails from "./SelectedTransactionDetails"
-import { AccountFormField, CurrencyFormField, DataField, DateField, LinkFormField, PartyTypeFormField, SmallTextField } from "@/components/ui/form-elements"
-import { Form } from "@/components/ui/form"
-import { ChangeEvent, useCallback, useContext, useEffect, useMemo, useState } from "react"
-import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
-import { Checkbox } from "@/components/ui/checkbox"
-import { AlertCircleIcon, Plus, Trash2 } from "lucide-react"
-import { flt, formatCurrency } from "@/lib/numbers"
-import { cn } from "@/lib/utils"
-import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
-import { PaymentEntry } from "@/types/Accounts/PaymentEntry"
-import { H4 } from "@/components/ui/typography"
-import { usePaymentEntryCalculations } from "@/hooks/usePaymentEntryCalculations"
-import { MissingFiltersBanner } from "./MissingFiltersBanner"
-import { formatDate, today } from "@/lib/date"
-import { slug } from "@/lib/frappe"
-import MarkdownRenderer from "@/components/ui/markdown"
-import { Separator } from "@/components/ui/separator"
-import { PaymentEntryDeduction } from "@/types/Accounts/PaymentEntryDeduction"
-import { TableLoader } from "@/components/ui/loaders"
-import SelectedTransactionsTable from "./SelectedTransactionsTable"
-import { useCurrentCompany } from "@/hooks/useCurrentCompany"
-import { Label } from "@/components/ui/label"
-import { FileDropzone } from "@/components/ui/file-dropzone"
-import { BankTransaction } from "@/types/Accounts/BankTransaction"
-import FileUploadBanner from "@/components/common/FileUploadBanner"
-import { useHotkeys } from "react-hotkeys-hook"
+import { lazy, Suspense } from "react"
+
+const RecordPaymentModalContent = lazy(() => import('./RecordPaymentModalContent'))
const RecordPaymentModal = () => {
+ const [isOpen, setIsOpen] = useAtom(bankRecRecordPaymentModalAtom)
- const [isOpen, setIsOpen] = useAtom(bankRecRecordPaymentModalAtom)
-
- return (
-
-
-
- {_("Record Payment")}
-
- {_("Record a payment entry against a customer or supplier")}
-
-
-
-
-
- )
+ return (
+
+
+
+ {_("Record Payment")}
+
+ {_("Record a payment entry against a customer or supplier")}
+
+
+ {isOpen && (
+ }>
+
+
+ )}
+
+
+ )
}
-
-const RecordPaymentModalContent = () => {
-
- const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
-
- const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
-
- if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
- return
- {_("No transaction selected")}
-
- }
-
- if (selectedTransaction.length === 1) {
- return
- }
-
- return
-
-}
-
-const BulkPaymentEntryForm = ({ transactions }: { transactions: UnreconciledTransaction[] }) => {
-
-
- const setIsOpen = useSetAtom(bankRecRecordPaymentModalAtom)
-
- const form = useForm<{
- party_type: PaymentEntry['party_type'],
- party: PaymentEntry['party'],
- party_name: PaymentEntry['party_name'],
- /** GL account that's paid from or paid to */
- account: string
- mode_of_payment: PaymentEntry['mode_of_payment']
- }>()
-
- const { call: createPaymentEntry, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_payment_entry_and_reconcile')
-
- const onReconcile = useRefreshUnreconciledTransactions()
-
- const addToActionLog = useUpdateActionLog()
-
- const onSubmit = (data: { party_type: PaymentEntry['party_type'], party: PaymentEntry['party'], account: string, mode_of_payment: PaymentEntry['mode_of_payment'] }) => {
-
- createPaymentEntry({
- bank_transaction_names: transactions.map((transaction) => transaction.name),
- party_type: data.party_type,
- party: data.party,
- account: data.account
- }).then(({ message }) => {
-
- addToActionLog({
- type: 'payment',
- timestamp: (new Date()).getTime(),
- isBulk: true,
- items: message.map((item) => ({
- bankTransaction: item.transaction,
- voucher: {
- reference_doctype: "Payment Entry",
- reference_name: item.payment_entry.name,
- reference_no: item.payment_entry.reference_no,
- reference_date: item.payment_entry.reference_date,
- posting_date: item.payment_entry.posting_date,
- party_type: item.payment_entry.party_type,
- party: item.payment_entry.party,
- doc: item.payment_entry,
- }
- })),
- bulkCommonData: {
- party_type: data.party_type,
- party: data.party,
- account: data.account,
- }
- })
-
- toast.success(_("Payment Recorded"), {
- duration: 4000,
- closeButton: true,
- })
- onReconcile(transactions[transactions.length - 1])
- setIsOpen(false)
- })
- }
-
- const party_type = useWatch({ control: form.control, name: 'party_type' })
-
- const party_name = useWatch({ control: form.control, name: 'party_name' })
-
- const party = useWatch({ control: form.control, name: 'party' })
-
- const { call } = useContext(FrappeContext) as FrappeConfig
-
- const currentCompany = useCurrentCompany()
-
- const company = transactions && transactions.length > 0 ? transactions[0].company : (currentCompany ?? '')
-
- const onPartyChange = (event: ChangeEvent) => {
- // Fetch the party and account
- if (event.target.value) {
- call.get('erpnext.accounts.doctype.payment_entry.payment_entry.get_party_details', {
- company: company,
- party_type: party_type,
- party: event.target.value,
- date: today()
- }).then((res) => {
- form.setValue('party_name', res.message.party_name)
- form.setValue('account', res.message.party_account)
- })
- } else {
- // Clear the party and account
- form.setValue('party_name', '')
- form.setValue('account', '')
- }
-
- }
-
- return
-
-
-}
-
-const PaymentEntryForm = ({ selectedTransaction, selectedBankAccount }: { selectedTransaction: UnreconciledTransaction, selectedBankAccount: SelectedBank }) => {
-
- const setIsOpen = useSetAtom(bankRecRecordPaymentModalAtom)
-
- const onClose = () => {
- setIsOpen(false)
- }
-
- const { data: rule } = useGetRuleForTransaction(selectedTransaction)
-
- const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
-
- const form = useForm({
- defaultValues: {
- payment_type: isWithdrawal ? 'Pay' : 'Receive',
- bank_account: selectedTransaction.bank_account,
- company: selectedTransaction?.company,
- // If the money is paid, it's usually to a supplier. If it's received, it's usually from a customer
- party_type: rule?.party_type ?? (isWithdrawal ? 'Supplier' : 'Customer'),
- party: rule?.party ?? '',
- // If the transaction is a withdrawal, set the paid from to the selected bank account
- paid_from: isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
- // If the transaction is a deposit, set the paid to to the selected bank account
- paid_to: !isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
- // Set the amount to the amount of the selected transaction
- paid_amount: selectedTransaction.unallocated_amount,
- base_paid_amount: selectedTransaction.unallocated_amount,
- received_amount: selectedTransaction.unallocated_amount,
- base_received_amount: selectedTransaction.unallocated_amount,
- reference_date: selectedTransaction.date,
- posting_date: selectedTransaction.date,
- reference_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
- target_exchange_rate: 1,
- source_exchange_rate: 1,
- }
- })
-
- const onReconcile = useRefreshUnreconciledTransactions()
-
- const setUnpaidInvoiceOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
-
- useEffect(() => {
- if (rule && rule.party && rule.party_type && rule.account) {
- setUnpaidInvoiceOpen(true)
- }
-
- }, [rule, setUnpaidInvoiceOpen])
-
- const { call: createPaymentEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_payment_entry_and_reconcile')
-
- const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
-
- const addToActionLog = useUpdateActionLog()
-
- const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
-
- const [isUploading, setIsUploading] = useState(false)
- const [uploadProgress, setUploadProgress] = useState(0)
-
- const [files, setFiles] = useState([])
-
- const onSubmit = (data: PaymentEntry) => {
-
- createPaymentEntry({
- bank_transaction_name: selectedTransaction.name,
- payment_entry_doc: {
- ...data,
- custom_remarks: data.remarks ? true : false
- }
- }).then(async ({ message }) => {
- addToActionLog({
- type: 'payment',
- timestamp: (new Date()).getTime(),
- isBulk: false,
- items: [
- {
- bankTransaction: message.transaction,
- voucher: {
- reference_doctype: "Payment Entry",
- reference_name: message.payment_entry.name,
- reference_no: message.payment_entry.reference_no,
- reference_date: message.payment_entry.reference_date,
- posting_date: message.payment_entry.posting_date,
- doc: message.payment_entry,
- }
- }
- ]
- })
- toast.success(_("Payment Entry Created"), {
- duration: 4000,
- closeButton: true,
- action: {
- label: _("Undo"),
- onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
- },
- actionButtonStyle: {
- backgroundColor: "rgb(0, 138, 46)"
- }
- })
-
- if (files.length > 0) {
- setIsUploading(true)
-
- const uploadPromises = files.map(f => {
- return frappeFile.uploadFile(f, {
- isPrivate: true,
- doctype: "Payment Entry",
- docname: message.payment_entry.name,
- }, (_bytesUploaded, _totalBytes, progress) => {
-
- setUploadProgress((currentProgress) => {
- //If there are multiple files, we need to add the progress to the current progress
- return currentProgress + ((progress?.progress ?? 0) / files.length)
- })
-
- })
- })
-
- return Promise.all(uploadPromises).then(() => {
- setUploadProgress(0)
- setIsUploading(false)
- })
- } else {
- return Promise.resolve()
- }
-
- }).then(() => {
- setUploadProgress(0)
- setIsUploading(false)
- onReconcile(selectedTransaction)
- onClose()
- })
- }
-
-
- useHotkeys('meta+s', () => {
- form.handleSubmit(onSubmit)()
- }, {
- enabled: true,
- preventDefault: true,
- enableOnFormTags: true
- })
-
- if (isUploading && isCompleted) {
- return
- }
-
- return
-
-}
-
-const isUnpaidInvoicesButtonOpen = atom(false)
-
-const PartyField = () => {
-
- const { control, setValue } = useFormContext()
-
- const party_type = useWatch({
- control,
- name: `party_type`
- })
-
- const { call } = useContext(FrappeContext) as FrappeConfig
-
- const company = useWatch({ control, name: 'company' })
-
- const party_name = useWatch({ control, name: 'party_name' })
-
- const type = useWatch({ control, name: 'payment_type' })
-
- const party = useWatch({ control, name: 'party' })
-
- const setIsOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
-
- const onChange = (event: ChangeEvent) => {
- // Fetch the party and account
- if (event.target.value) {
- call.get('erpnext.accounts.doctype.payment_entry.payment_entry.get_party_details', {
- company: company,
- party_type: party_type,
- party: event.target.value,
- date: today()
- }).then((res) => {
- setValue('party_name', res.message.party_name)
- if (type === 'Pay') {
- setValue('paid_to', res.message.party_account)
- } else {
- setValue('paid_from', res.message.party_account)
- }
- setIsOpen(true)
- })
- } else {
- // Clear the party and account
- setValue('party_name', '')
- if (type === 'Pay') {
- setValue('paid_to', '')
- } else {
- setValue('paid_from', '')
- }
- }
-
- }
-
- if (!party_type) {
- return
- }
-
- return
-}
-
-
-const AccountDropdown = ({ isWithdrawal }: { isWithdrawal: boolean }) => {
-
- // If it's a withdrawal, then we need to show the "Paid to" account
- // If it's a deposit, then we need to show the "Paid from" account
-
- const { control, setValue } = useFormContext()
-
- const party_type = useWatch({ control, name: 'party_type' })
-
- const setIsOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
-
- const accountTypes: string[] | undefined = useMemo(() => {
- if (party_type === 'Supplier' || party_type === 'Employee' || party_type === 'Shareholder') {
- return ['Payable']
- } else if (party_type === 'Customer') {
- return ['Receivable']
- }
- return undefined
- }, [party_type])
-
- const onAccountChange = (event: ChangeEvent) => {
- if (event.target.value) {
- setValue('unallocated_amount', 0)
- setValue('total_allocated_amount', 0)
- setValue('difference_amount', 0)
- setValue('references', [])
- setIsOpen(true)
- }
- }
-
-
- if (isWithdrawal) {
- return
-
- } else {
- return
- }
-
-}
-
-
-const InvoicesSection = ({ currency }: { currency: string }) => {
-
- const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
-
- const { control } = useFormContext()
- const { fields, remove } = useFieldArray({
- control,
- name: 'references'
- })
-
- const [selectedRows, setSelectedRows] = useState([])
-
- const onSelectRow = useCallback((index: number) => {
- setSelectedRows(prev => {
- if (prev.includes(index)) {
- return prev.filter(i => i !== index)
- }
- return [...prev, index]
- })
- }, [])
-
- const onSelectAll = useCallback(() => {
- setSelectedRows(prev => {
- if (prev.length === fields.length) {
- return []
- }
- return [...fields.map((_, index) => index)]
- })
- }, [fields])
-
- const onRemove = useCallback(() => {
- remove(selectedRows)
- setSelectedRows([])
- }, [remove, selectedRows])
-
- return
-
-
{_("Invoices")}
-
-
-
-
-
- 0 && selectedRows.length === fields.length}
- onCheckedChange={onSelectAll} />
- {_("Reference Document")}
- {_("Invoice No")}
- {_("Due Date")}
- {_("Grand Total")}
- {_("Outstanding")}
- {_("Allocated")}
-
-
-
-
- {fields.map((field, index) => (
-
-
- onSelectRow(index)}
- // Make this accessible to screen readers
- aria-label={_("Select row {0}", [String(index + 1)])}
- />
-
-
-
- {field.reference_doctype}: {field.reference_name}
-
-
- {field.bill_no ?? "-"}
-
-
- {formatDate(field.due_date)}
-
-
- {formatCurrency(field.total_amount, currency)}
-
-
- {formatCurrency(field.outstanding_amount, currency)}
-
-
- setTotalAllocatedAmount()
- }}
- hideLabel
- currency={currency}
- />
-
-
-
-
-
- ))}
-
-
-
-
- {selectedRows.length > 0 &&
- {_("Remove")}
-
}
-
-
-
-
-
-}
-
-const DifferenceButton = ({ index, currency }: { index: number, currency: string }) => {
-
- const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
-
- const { control, setValue } = useFormContext()
-
- const outstandingAmount = useWatch({
- control,
- name: `references.${index}.outstanding_amount`
- }) ?? 0
-
- const allocatedAmount = useWatch({
- control,
- name: `references.${index}.allocated_amount`
- }) ?? 0
-
- const difference = flt(outstandingAmount - allocatedAmount, 2)
-
- const onPayInFull = useCallback(() => {
- setValue(`references.${index}.allocated_amount`, outstandingAmount, { shouldDirty: true })
- setTotalAllocatedAmount()
- }, [outstandingAmount, index, setValue, setTotalAllocatedAmount])
-
- if (difference !== 0) {
-
- return
-
-
-
-
-
-
- {_("The invoice is not fully allocated as there is a difference of {0}.", [formatCurrency(difference, currency) ?? ''])}
-
- {_("Click to pay in full.")}
-
-
-
- }
-
- return null
-}
-
-const Summary = ({ currency }: { currency: string }) => {
-
- const { control, setValue, getValues } = useFormContext()
-
- const { setUnallocatedAmount } = usePaymentEntryCalculations()
-
- const amount = useWatch({
- control,
- name: 'paid_amount'
- })
-
- const unallocatedAmount = useWatch({
- control,
- name: 'unallocated_amount'
- })
-
- const allocatedAmount = useWatch({
- control,
- name: 'total_allocated_amount'
- })
-
- const differenceAmount = useWatch({
- control,
- name: 'difference_amount'
- })
-
- const onAddRow = useCallback((amount?: number) => {
- if (amount) {
- const deductions = getValues('deductions') ?? []
-
- setValue('deductions', [...deductions, {
- amount: amount,
- account: '',
- cost_center: getCompanyCostCenter(getValues('company')),
- description: ''
- } as PaymentEntryDeduction])
-
- setUnallocatedAmount()
- }
- }, [setUnallocatedAmount, getValues, setValue])
-
- const TextComponent = ({ className, children }: { className?: string, children: React.ReactNode }) => {
- return {children}
- }
-
- return
-
- {_("Total Amount")}
- {formatCurrency(amount, currency)}
-
-
- {_("Allocated")}
- {formatCurrency(allocatedAmount, currency)}
-
-
- {(unallocatedAmount && unallocatedAmount !== 0) ?
- {_("Unallocated")}
-
-
- onAddRow(unallocatedAmount ?? 0)}>
- {formatCurrency(unallocatedAmount, currency)}
-
-
-
- {_("Add a charge to the payment entry with the unallocated amount")}
-
-
-
-
-
: null}
-
- {(differenceAmount && differenceAmount !== 0) ?
- {_("Difference")}
-
-
- onAddRow(differenceAmount ?? 0)}>
- {formatCurrency(differenceAmount, currency)}
-
-
-
- {_("Add a charge to the payment entry with the difference amount")}
-
-
-
-
-
: null}
-
-
-}
-const GetUnpaidInvoicesButton = () => {
-
- const [isOpen, setIsOpen] = useAtom(isUnpaidInvoicesButtonOpen)
-
- const { control } = useFormContext()
-
- const partyType = useWatch({ control, name: 'party_type' })
- const party = useWatch({ control, name: 'party' })
- const partyName = useWatch({ control, name: 'party_name' })
- const amount = useWatch({ control, name: 'paid_amount' })
-
- return <>
-
-
- {partyType && party &&
- Get Unpaid Invoices
- }
-
-
- Select Invoices
- Unpaid invoices from {partyName} for {formatCurrency(amount)}.
-
- setIsOpen(false)} />
-
-
- >
-}
-
-interface OutstandingInvoice {
- voucher_type: string
- voucher_no: string
- bill_no?: string
- due_date: string
- invoice_amount: number
- outstanding_amount: number,
- payment_term?: string,
- payment_term_outstanding?: string,
- account?: string,
- allocated_amount?: number,
-}
-const FetchInvoicesModal = ({ onClose }: { onClose: () => void }) => {
-
- const { getValues, setValue } = useFormContext()
-
- const { allocatePartyAmount } = usePaymentEntryCalculations()
-
- const { data, isLoading, error } = useFrappeGetCall<{
- message: OutstandingInvoice[],
- _server_messages?: string
- }>('erpnext.accounts.doctype.payment_entry.payment_entry.get_outstanding_reference_documents', {
- args: {
- company: getValues('company'),
- posting_date: getValues('posting_date'),
- party_type: getValues('party_type'),
- party: getValues('party'),
- party_account: getValues('payment_type') === 'Pay' ? getValues('paid_to') : getValues('paid_from'),
- get_outstanding_invoices: true,
- allocate_payment_amount: 1
- }
- })
-
- const message = useMemo(() => {
- if (data && data._server_messages) {
- const message = JSON.parse(JSON.parse(data._server_messages)[0])
-
- return message.message
- }
- return ''
- }, [data])
-
- const [selectedInvoices, setSelectedInvoices] = useState([])
-
- const onSelectRow = (row: OutstandingInvoice) => {
- if (selectedInvoices.includes(row)) {
- setSelectedInvoices(selectedInvoices.filter((invoice) => invoice !== row))
- } else {
- setSelectedInvoices([...selectedInvoices, row])
- }
- }
-
- const { call: allocateAmountToReferences, loading: allocateAmountToReferencesLoading, error: allocateAmountToReferencesError } = useFrappePostCall('run_doc_method')
-
- const onSelect = () => {
-
- allocateAmountToReferences({
- args: {
- paid_amount: getValues("payment_type") === "Pay" ? getValues("paid_amount") : getValues("received_amount"),
- allocate_payment_amount: 1,
- paid_amount_change: false
- },
- method: 'allocate_amount_to_references',
- docs: {
- doctype: 'Payment Entry',
- ...getValues(),
- name: "new-payment-entry-1",
- __unsaved: 1,
- __islocal: 1,
- references: selectedInvoices.map((ref: OutstandingInvoice) => ({
- reference_doctype: ref.voucher_type,
- reference_name: ref.voucher_no,
- due_date: ref.due_date,
- total_amount: ref.invoice_amount,
- outstanding_amount: ref.outstanding_amount,
- bill_no: ref.bill_no,
- payment_term: ref.payment_term,
- payment_term_outstanding: ref.payment_term_outstanding,
- allocated_amount: ref.allocated_amount,
- account: ref.account,
- exchange_rate: 1,
- }))
- }
- }).then((res) => {
- const doc = res.docs[0]
- setValue('references', doc.references)
- setValue('unallocated_amount', doc.unallocated_amount)
- setValue('total_allocated_amount', doc.total_allocated_amount)
- setValue('difference_amount', doc.difference_amount)
-
- allocatePartyAmount(getValues("payment_type") === "Pay" ? getValues("paid_amount") : getValues("received_amount"))
-
- onClose()
- })
- }
- return
- {isLoading ?
: null}
- {error &&
}
- {error &&
}
- {message ?
} /> : null}
-
- {data?.message && data?.message?.length > 0 ?
-
-
-
- {
- if (checked) {
- setSelectedInvoices(data?.message)
- } else {
- setSelectedInvoices([])
- }
- }} />
-
-
- Type
-
-
- Name
-
-
- Invoice No
-
-
- Due Date
-
-
- Grand Total
-
-
- Outstanding
-
-
-
-
- {data.message.map((ref) => (
- {
- const target = e.target as HTMLElement
- // Do not select the checkbox if the user clicks on the checkbox or the link
- if (target.tagName !== 'INPUT' && !target.className.includes('chakra-checkbox') && !target.className.includes('chakra-link')) {
- onSelectRow(ref)
- }
- }}
- className="cursor-pointer">
-
- {
- if (checked) {
- setSelectedInvoices([...selectedInvoices, ref])
- } else {
- setSelectedInvoices(selectedInvoices.filter((invoice) => invoice !== ref))
- }
- }}
- />
-
-
- {ref.voucher_type}
-
-
- {ref.voucher_no}
-
-
- {ref.bill_no ?? "-"}
-
-
- {formatDate(ref.due_date)}
-
-
- {formatCurrency(ref.invoice_amount)}
-
-
- {formatCurrency(ref.outstanding_amount)}
-
-
- ))}
-
-
: null}
-
-
- Invoices: {selectedInvoices.length} /
- Total: {formatCurrency(selectedInvoices.reduce((acc, invoice) => acc + invoice.outstanding_amount, 0))}
-
-
-
- Cancel
-
- Select
-
-
-
-
-}
-
-
-
-const OtherChargesSection = ({ currency }: { currency: string }) => {
-
- const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
- const { getValues, control } = useFormContext()
-
- const { fields, append, remove } = useFieldArray({
- control: control,
- name: 'deductions'
- })
-
-
- const [selectedRows, setSelectedRows] = useState([])
-
- const onSelectRow = useCallback((index: number) => {
- setSelectedRows(prev => {
- if (prev.includes(index)) {
- return prev.filter(i => i !== index)
- }
- return [...prev, index]
- })
- }, [])
-
- const onSelectAll = useCallback(() => {
- setSelectedRows(prev => {
- if (prev.length === fields.length) {
- return []
- }
- return [...fields.map((_, index) => index)]
- })
- }, [fields])
-
- const onRemove = useCallback(() => {
- remove(selectedRows)
- setSelectedRows([])
- setTotalAllocatedAmount()
- }, [remove, selectedRows, setTotalAllocatedAmount])
-
- const onAdd = () => {
-
- append({
- account: '',
- cost_center: getCompanyCostCenter(getValues('company')),
- description: '',
- amount: 0
- } as PaymentEntryDeduction)
-
-
- }
-
- return
-
-
Other Charges / Deductions
-
-
-
-
-
- 0 && selectedRows.length === fields.length}
- onCheckedChange={onSelectAll} />
- {_("Account")} *
- {_("Cost Center")} *
- {_("Description")}
- {_("Amount")} *
-
-
-
- {fields.map((field, index) => (
-
-
- onSelectRow(index)}
- // Make this accessible to screen readers
- aria-label={_("Select row {0}", [String(index + 1)])}
- />
-
-
-
-
-
-
-
-
-
-
-
-
- {
- setTotalAllocatedAmount()
- }
- }}
- />
-
-
- ))}
-
-
-
-
-
- {selectedRows.length > 0 &&
- {_("Remove")}
-
}
-
-
-
-}
-
-const TotalDeductions = ({ currency }: { currency: string }) => {
-
- const { control } = useFormContext()
-
- const total_deductions = useWatch({ control, name: 'deductions' })?.reduce((acc: number, row: PaymentEntryDeduction) => acc + row.amount, 0) ?? 0
-
- return ({formatCurrency(total_deductions, currency)})
-}
-export default RecordPaymentModal
\ No newline at end of file
+export default RecordPaymentModal
diff --git a/banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx b/banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx
new file mode 100644
index 00000000000..bb42e85b17b
--- /dev/null
+++ b/banking/src/components/features/BankReconciliation/RecordPaymentModalContent.tsx
@@ -0,0 +1,1279 @@
+import { atom, useAtom, useAtomValue, useSetAtom } from "jotai"
+import { bankRecRecordPaymentModalAtom, bankRecSelectedTransactionAtom, bankRecUnreconcileModalAtom, SelectedBank, selectedBankAccountAtom } from "./bankRecAtoms"
+import { Dialog, DialogContent, DialogTitle, DialogDescription, DialogHeader, DialogFooter, DialogClose, DialogTrigger } from "@/components/ui/dialog"
+import _ from "@/lib/translate"
+import { UnreconciledTransaction, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from "./utils"
+import { useFieldArray, useForm, useFormContext, useWatch } from "react-hook-form"
+import { getCompanyCostCenter, getCompanyCurrency } from "@/lib/company"
+import { FrappeConfig, FrappeContext, useFrappeGetCall, useFrappePostCall } from "frappe-react-sdk"
+import { toast } from "sonner"
+import ErrorBanner from "@/components/ui/error-banner"
+import { Button } from "@/components/ui/button"
+import SelectedTransactionDetails from "./SelectedTransactionDetails"
+import { AccountFormField, CurrencyFormField, DataField, DateField, LinkFormField, PartyTypeFormField, SmallTextField } from "@/components/ui/form-elements"
+import { Form } from "@/components/ui/form"
+import { ChangeEvent, useCallback, useContext, useEffect, useMemo, useState } from "react"
+import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
+import { Checkbox } from "@/components/ui/checkbox"
+import { AlertCircleIcon, Plus, Trash2 } from "lucide-react"
+import { flt, formatCurrency } from "@/lib/numbers"
+import { cn } from "@/lib/utils"
+import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip"
+import { PaymentEntry } from "@/types/Accounts/PaymentEntry"
+import { H4 } from "@/components/ui/typography"
+import { usePaymentEntryCalculations } from "@/hooks/usePaymentEntryCalculations"
+import { useMultiFileUploadProgress } from "@/hooks/useMultiFileUploadProgress"
+import { MissingFiltersBanner } from "./MissingFiltersBanner"
+import { formatDate, today } from "@/lib/date"
+import { slug } from "@/lib/frappe"
+import MarkdownRenderer from "@/components/ui/markdown"
+import { Separator } from "@/components/ui/separator"
+import { PaymentEntryDeduction } from "@/types/Accounts/PaymentEntryDeduction"
+import { TableLoader } from "@/components/ui/loaders"
+import SelectedTransactionsTable from "./SelectedTransactionsTable"
+import { useCurrentCompany } from "@/hooks/useCurrentCompany"
+import { Label } from "@/components/ui/label"
+import { FileDropzone } from "@/components/ui/file-dropzone"
+import { BankTransaction } from "@/types/Accounts/BankTransaction"
+import FileUploadBanner from "@/components/common/FileUploadBanner"
+import { useHotkeys } from "react-hotkeys-hook"
+const RecordPaymentModalContent = () => {
+
+ const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
+
+ const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
+
+ if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
+ return
+ {_("No transaction selected")}
+
+ }
+
+ if (selectedTransaction.length === 1) {
+ return
+ }
+
+ return
+
+}
+
+const BulkPaymentEntryForm = ({ transactions }: { transactions: UnreconciledTransaction[] }) => {
+
+
+ const setIsOpen = useSetAtom(bankRecRecordPaymentModalAtom)
+
+ const form = useForm<{
+ party_type: PaymentEntry['party_type'],
+ party: PaymentEntry['party'],
+ party_name: PaymentEntry['party_name'],
+ /** GL account that's paid from or paid to */
+ account: string
+ mode_of_payment: PaymentEntry['mode_of_payment']
+ }>()
+
+ const { call: createPaymentEntry, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_payment_entry_and_reconcile')
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+
+ const addToActionLog = useUpdateActionLog()
+
+ const onSubmit = (data: { party_type: PaymentEntry['party_type'], party: PaymentEntry['party'], account: string, mode_of_payment: PaymentEntry['mode_of_payment'] }) => {
+
+ createPaymentEntry({
+ bank_transaction_names: transactions.map((transaction) => transaction.name),
+ party_type: data.party_type,
+ party: data.party,
+ account: data.account,
+ mode_of_payment: data.mode_of_payment
+ }).then(({ message }) => {
+
+ addToActionLog({
+ type: 'payment',
+ timestamp: (new Date()).getTime(),
+ isBulk: true,
+ items: message.map((item) => ({
+ bankTransaction: item.transaction,
+ voucher: {
+ reference_doctype: "Payment Entry",
+ reference_name: item.payment_entry.name,
+ reference_no: item.payment_entry.reference_no,
+ reference_date: item.payment_entry.reference_date,
+ posting_date: item.payment_entry.posting_date,
+ party_type: item.payment_entry.party_type,
+ party: item.payment_entry.party,
+ doc: item.payment_entry,
+ }
+ })),
+ bulkCommonData: {
+ party_type: data.party_type,
+ party: data.party,
+ account: data.account,
+ }
+ })
+
+ toast.success(_("Payment Recorded"), {
+ duration: 4000,
+ closeButton: true,
+ })
+ onReconcile(transactions[transactions.length - 1])
+ setIsOpen(false)
+ })
+ }
+
+ const party_type = useWatch({ control: form.control, name: 'party_type' })
+
+ const party_name = useWatch({ control: form.control, name: 'party_name' })
+
+ const party = useWatch({ control: form.control, name: 'party' })
+
+ const { call } = useContext(FrappeContext) as FrappeConfig
+
+ const currentCompany = useCurrentCompany()
+
+ const company = transactions && transactions.length > 0 ? transactions[0].company : (currentCompany ?? '')
+
+ const onPartyChange = (event: ChangeEvent) => {
+ // Fetch the party and account
+ if (event.target.value) {
+ call.get('erpnext.accounts.doctype.payment_entry.payment_entry.get_party_details', {
+ company: company,
+ party_type: party_type,
+ party: event.target.value,
+ date: today()
+ }).then((res) => {
+ form.setValue('party_name', res.message.party_name)
+ form.setValue('account', res.message.party_account)
+ })
+ } else {
+ // Clear the party and account
+ form.setValue('party_name', '')
+ form.setValue('account', '')
+ }
+
+ }
+
+ return
+
+
+}
+
+const PaymentEntryForm = ({ selectedTransaction, selectedBankAccount }: { selectedTransaction: UnreconciledTransaction, selectedBankAccount: SelectedBank }) => {
+
+ const setIsOpen = useSetAtom(bankRecRecordPaymentModalAtom)
+
+ const onClose = () => {
+ setIsOpen(false)
+ }
+
+ const { data: rule } = useGetRuleForTransaction(selectedTransaction)
+
+ const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
+
+ const form = useForm({
+ defaultValues: {
+ payment_type: isWithdrawal ? 'Pay' : 'Receive',
+ bank_account: selectedTransaction.bank_account,
+ company: selectedTransaction?.company,
+ // If the money is paid, it's usually to a supplier. If it's received, it's usually from a customer
+ party_type: rule?.party_type ?? (isWithdrawal ? 'Supplier' : 'Customer'),
+ party: rule?.party ?? '',
+ // If the transaction is a withdrawal, set the paid from to the selected bank account
+ paid_from: isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
+ // If the transaction is a deposit, set the paid to to the selected bank account
+ paid_to: !isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
+ // Set the amount to the amount of the selected transaction
+ paid_amount: selectedTransaction.unallocated_amount,
+ base_paid_amount: selectedTransaction.unallocated_amount,
+ received_amount: selectedTransaction.unallocated_amount,
+ base_received_amount: selectedTransaction.unallocated_amount,
+ reference_date: selectedTransaction.date,
+ posting_date: selectedTransaction.date,
+ reference_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
+ target_exchange_rate: 1,
+ source_exchange_rate: 1,
+ }
+ })
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+
+ const setUnpaidInvoiceOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
+
+ useEffect(() => {
+ if (rule && rule.party && rule.party_type && rule.account) {
+ setUnpaidInvoiceOpen(true)
+ }
+
+ }, [rule, setUnpaidInvoiceOpen])
+
+ const { call: createPaymentEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_payment_entry_and_reconcile')
+
+ const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
+
+ const addToActionLog = useUpdateActionLog()
+
+ const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
+
+ const [isUploading, setIsUploading] = useState(false)
+ const { uploadProgress, startTracking, updateFileProgress, resetProgress } = useMultiFileUploadProgress()
+
+ const [files, setFiles] = useState([])
+
+ const onSubmit = (data: PaymentEntry) => {
+
+ createPaymentEntry({
+ bank_transaction_name: selectedTransaction.name,
+ payment_entry_doc: {
+ ...data,
+ custom_remarks: data.remarks ? true : false
+ }
+ }).then(async ({ message }) => {
+ addToActionLog({
+ type: 'payment',
+ timestamp: (new Date()).getTime(),
+ isBulk: false,
+ items: [
+ {
+ bankTransaction: message.transaction,
+ voucher: {
+ reference_doctype: "Payment Entry",
+ reference_name: message.payment_entry.name,
+ reference_no: message.payment_entry.reference_no,
+ reference_date: message.payment_entry.reference_date,
+ posting_date: message.payment_entry.posting_date,
+ doc: message.payment_entry,
+ }
+ }
+ ]
+ })
+ toast.success(_("Payment Entry Created"), {
+ duration: 4000,
+ closeButton: true,
+ action: {
+ label: _("Undo"),
+ onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
+ },
+ actionButtonStyle: {
+ backgroundColor: "rgb(0, 138, 46)"
+ }
+ })
+
+ if (files.length > 0) {
+ setIsUploading(true)
+ startTracking(files.length)
+
+ const uploadPromises = files.map((f, fileIndex) => {
+ return frappeFile.uploadFile(f, {
+ isPrivate: true,
+ doctype: "Payment Entry",
+ docname: message.payment_entry.name,
+ }, (_bytesUploaded, _totalBytes, progress) => {
+ updateFileProgress(fileIndex, progress?.progress ?? 0)
+ })
+ })
+
+ return Promise.all(uploadPromises).then(() => {
+ resetProgress()
+ setIsUploading(false)
+ })
+ } else {
+ return Promise.resolve()
+ }
+
+ }).then(() => {
+ resetProgress()
+ setIsUploading(false)
+ onReconcile(selectedTransaction)
+ onClose()
+ })
+ }
+
+
+ useHotkeys('meta+s', () => {
+ form.handleSubmit(onSubmit)()
+ }, {
+ enabled: true,
+ preventDefault: true,
+ enableOnFormTags: true
+ })
+
+ if (isUploading && isCompleted) {
+ return
+ }
+
+ return
+
+}
+
+const isUnpaidInvoicesButtonOpen = atom(false)
+
+const PartyField = () => {
+
+ const { control, setValue } = useFormContext()
+
+ const party_type = useWatch({
+ control,
+ name: `party_type`
+ })
+
+ const { call } = useContext(FrappeContext) as FrappeConfig
+
+ const company = useWatch({ control, name: 'company' })
+
+ const party_name = useWatch({ control, name: 'party_name' })
+
+ const type = useWatch({ control, name: 'payment_type' })
+
+ const party = useWatch({ control, name: 'party' })
+
+ const setIsOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
+
+ const onChange = (event: ChangeEvent) => {
+ // Fetch the party and account
+ if (event.target.value) {
+ call.get('erpnext.accounts.doctype.payment_entry.payment_entry.get_party_details', {
+ company: company,
+ party_type: party_type,
+ party: event.target.value,
+ date: today()
+ }).then((res) => {
+ setValue('party_name', res.message.party_name)
+ if (type === 'Pay') {
+ setValue('paid_to', res.message.party_account)
+ } else {
+ setValue('paid_from', res.message.party_account)
+ }
+ setIsOpen(true)
+ })
+ } else {
+ // Clear the party and account
+ setValue('party_name', '')
+ if (type === 'Pay') {
+ setValue('paid_to', '')
+ } else {
+ setValue('paid_from', '')
+ }
+ }
+
+ }
+
+ if (!party_type) {
+ return
+ }
+
+ return
+}
+
+
+const AccountDropdown = ({ isWithdrawal }: { isWithdrawal: boolean }) => {
+
+ // If it's a withdrawal, then we need to show the "Paid to" account
+ // If it's a deposit, then we need to show the "Paid from" account
+
+ const { control, setValue } = useFormContext()
+
+ const party_type = useWatch({ control, name: 'party_type' })
+
+ const setIsOpen = useSetAtom(isUnpaidInvoicesButtonOpen)
+
+ const accountTypes: string[] | undefined = useMemo(() => {
+ if (party_type === 'Supplier' || party_type === 'Employee' || party_type === 'Shareholder') {
+ return ['Payable']
+ } else if (party_type === 'Customer') {
+ return ['Receivable']
+ }
+ return undefined
+ }, [party_type])
+
+ const onAccountChange = (event: ChangeEvent) => {
+ if (event.target.value) {
+ setValue('unallocated_amount', 0)
+ setValue('total_allocated_amount', 0)
+ setValue('difference_amount', 0)
+ setValue('references', [])
+ setIsOpen(true)
+ }
+ }
+
+
+ if (isWithdrawal) {
+ return
+
+ } else {
+ return
+ }
+
+}
+
+
+const InvoicesSection = ({ currency }: { currency: string }) => {
+
+ const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
+
+ const { control } = useFormContext()
+ const { fields, remove } = useFieldArray({
+ control,
+ name: 'references'
+ })
+
+ const [selectedRows, setSelectedRows] = useState([])
+
+ const onSelectRow = useCallback((index: number) => {
+ setSelectedRows(prev => {
+ if (prev.includes(index)) {
+ return prev.filter(i => i !== index)
+ }
+ return [...prev, index]
+ })
+ }, [])
+
+ const onSelectAll = useCallback(() => {
+ setSelectedRows(prev => {
+ if (prev.length === fields.length) {
+ return []
+ }
+ return [...fields.map((_, index) => index)]
+ })
+ }, [fields])
+
+ const onRemove = useCallback(() => {
+ remove(selectedRows)
+ setSelectedRows([])
+ }, [remove, selectedRows])
+
+ return
+
+
{_("Invoices")}
+
+
+
+
+
+ 0 && selectedRows.length === fields.length}
+ onCheckedChange={onSelectAll} />
+ {_("Reference Document")}
+ {_("Invoice No")}
+ {_("Due Date")}
+ {_("Grand Total")}
+ {_("Outstanding")}
+ {_("Allocated")}
+
+
+
+
+ {fields.map((field, index) => (
+
+
+ onSelectRow(index)}
+ // Make this accessible to screen readers
+ aria-label={_("Select row {0}", [String(index + 1)])}
+ />
+
+
+
+ {field.reference_doctype}: {field.reference_name}
+
+
+ {field.bill_no ?? "-"}
+
+
+ {formatDate(field.due_date)}
+
+
+ {formatCurrency(field.total_amount, currency)}
+
+
+ {formatCurrency(field.outstanding_amount, currency)}
+
+
+ setTotalAllocatedAmount()
+ }}
+ hideLabel
+ currency={currency}
+ />
+
+
+
+
+
+ ))}
+
+
+
+
+ {selectedRows.length > 0 &&
+ {_("Remove")}
+
}
+
+
+
+
+
+}
+
+const DifferenceButton = ({ index, currency }: { index: number, currency: string }) => {
+
+ const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
+
+ const { control, setValue } = useFormContext()
+
+ const outstandingAmount = useWatch({
+ control,
+ name: `references.${index}.outstanding_amount`
+ }) ?? 0
+
+ const allocatedAmount = useWatch({
+ control,
+ name: `references.${index}.allocated_amount`
+ }) ?? 0
+
+ const difference = flt(outstandingAmount - allocatedAmount, 2)
+
+ const onPayInFull = useCallback(() => {
+ setValue(`references.${index}.allocated_amount`, outstandingAmount, { shouldDirty: true })
+ setTotalAllocatedAmount()
+ }, [outstandingAmount, index, setValue, setTotalAllocatedAmount])
+
+ if (difference !== 0) {
+
+ return
+
+
+
+
+
+
+ {_("The invoice is not fully allocated as there is a difference of {0}.", [formatCurrency(difference, currency) ?? ''])}
+
+ {_("Click to pay in full.")}
+
+
+
+ }
+
+ return null
+}
+
+const Summary = ({ currency }: { currency: string }) => {
+
+ const { control, setValue, getValues } = useFormContext()
+
+ const { setUnallocatedAmount } = usePaymentEntryCalculations()
+
+ const amount = useWatch({
+ control,
+ name: 'paid_amount'
+ })
+
+ const unallocatedAmount = useWatch({
+ control,
+ name: 'unallocated_amount'
+ })
+
+ const allocatedAmount = useWatch({
+ control,
+ name: 'total_allocated_amount'
+ })
+
+ const differenceAmount = useWatch({
+ control,
+ name: 'difference_amount'
+ })
+
+ const onAddRow = useCallback((amount?: number) => {
+ if (amount) {
+ const deductions = getValues('deductions') ?? []
+
+ setValue('deductions', [...deductions, {
+ amount: amount,
+ account: '',
+ cost_center: getCompanyCostCenter(getValues('company')),
+ description: ''
+ } as PaymentEntryDeduction])
+
+ setUnallocatedAmount()
+ }
+ }, [setUnallocatedAmount, getValues, setValue])
+
+ const TextComponent = ({ className, children }: { className?: string, children: React.ReactNode }) => {
+ return {children}
+ }
+
+ return
+
+ {_("Total Amount")}
+ {formatCurrency(amount, currency)}
+
+
+ {_("Allocated")}
+ {formatCurrency(allocatedAmount, currency)}
+
+
+ {(unallocatedAmount && unallocatedAmount !== 0) ?
+ {_("Unallocated")}
+
+
+ onAddRow(unallocatedAmount ?? 0)}>
+ {formatCurrency(unallocatedAmount, currency)}
+
+
+
+ {_("Add a charge to the payment entry with the unallocated amount")}
+
+
+
+
+
: null}
+
+ {(differenceAmount && differenceAmount !== 0) ?
+ {_("Difference")}
+
+
+ onAddRow(differenceAmount ?? 0)}>
+ {formatCurrency(differenceAmount, currency)}
+
+
+
+ {_("Add a charge to the payment entry with the difference amount")}
+
+
+
+
+
: null}
+
+
+}
+const GetUnpaidInvoicesButton = () => {
+
+ const [isOpen, setIsOpen] = useAtom(isUnpaidInvoicesButtonOpen)
+
+ const { control } = useFormContext()
+
+ const partyType = useWatch({ control, name: 'party_type' })
+ const party = useWatch({ control, name: 'party' })
+ const partyName = useWatch({ control, name: 'party_name' })
+ const amount = useWatch({ control, name: 'paid_amount' })
+
+ return <>
+
+
+ {partyType && party &&
+ Get Unpaid Invoices
+ }
+
+
+ Select Invoices
+ Unpaid invoices from {partyName} for {formatCurrency(amount)}.
+
+ setIsOpen(false)} />
+
+
+ >
+}
+
+interface OutstandingInvoice {
+ voucher_type: string
+ voucher_no: string
+ bill_no?: string
+ due_date: string
+ invoice_amount: number
+ outstanding_amount: number,
+ payment_term?: string,
+ payment_term_outstanding?: string,
+ account?: string,
+ allocated_amount?: number,
+}
+const FetchInvoicesModal = ({ onClose }: { onClose: () => void }) => {
+
+ const { getValues, setValue } = useFormContext()
+
+ const { allocatePartyAmount } = usePaymentEntryCalculations()
+
+ const { data, isLoading, error } = useFrappeGetCall<{
+ message: OutstandingInvoice[],
+ _server_messages?: string
+ }>('erpnext.accounts.doctype.payment_entry.payment_entry.get_outstanding_reference_documents', {
+ args: {
+ company: getValues('company'),
+ posting_date: getValues('posting_date'),
+ party_type: getValues('party_type'),
+ party: getValues('party'),
+ party_account: getValues('payment_type') === 'Pay' ? getValues('paid_to') : getValues('paid_from'),
+ get_outstanding_invoices: true,
+ allocate_payment_amount: 1
+ }
+ })
+
+ const message = useMemo(() => {
+ if (data && data._server_messages) {
+ const message = JSON.parse(JSON.parse(data._server_messages)[0])
+
+ return message.message
+ }
+ return ''
+ }, [data])
+
+ const [selectedInvoices, setSelectedInvoices] = useState([])
+
+ const onSelectRow = (row: OutstandingInvoice) => {
+ if (selectedInvoices.includes(row)) {
+ setSelectedInvoices(selectedInvoices.filter((invoice) => invoice !== row))
+ } else {
+ setSelectedInvoices([...selectedInvoices, row])
+ }
+ }
+
+ const { call: allocateAmountToReferences, loading: allocateAmountToReferencesLoading, error: allocateAmountToReferencesError } = useFrappePostCall('run_doc_method')
+
+ const onSelect = () => {
+
+ allocateAmountToReferences({
+ args: {
+ paid_amount: getValues("payment_type") === "Pay" ? getValues("paid_amount") : getValues("received_amount"),
+ allocate_payment_amount: 1,
+ paid_amount_change: false
+ },
+ method: 'allocate_amount_to_references',
+ docs: {
+ doctype: 'Payment Entry',
+ ...getValues(),
+ name: "new-payment-entry-1",
+ __unsaved: 1,
+ __islocal: 1,
+ references: selectedInvoices.map((ref: OutstandingInvoice) => ({
+ reference_doctype: ref.voucher_type,
+ reference_name: ref.voucher_no,
+ due_date: ref.due_date,
+ total_amount: ref.invoice_amount,
+ outstanding_amount: ref.outstanding_amount,
+ bill_no: ref.bill_no,
+ payment_term: ref.payment_term,
+ payment_term_outstanding: ref.payment_term_outstanding,
+ allocated_amount: ref.allocated_amount,
+ account: ref.account,
+ exchange_rate: 1,
+ }))
+ }
+ }).then((res) => {
+ const doc = res.docs[0]
+ setValue('references', doc.references)
+ setValue('unallocated_amount', doc.unallocated_amount)
+ setValue('total_allocated_amount', doc.total_allocated_amount)
+ setValue('difference_amount', doc.difference_amount)
+
+ allocatePartyAmount(getValues("payment_type") === "Pay" ? getValues("paid_amount") : getValues("received_amount"))
+
+ onClose()
+ })
+ }
+ return
+ {isLoading ?
: null}
+ {error &&
}
+ {allocateAmountToReferencesError &&
}
+ {message ?
} /> : null}
+
+ {data?.message && data?.message?.length > 0 ?
+
+
+
+ {
+ if (checked) {
+ setSelectedInvoices(data?.message)
+ } else {
+ setSelectedInvoices([])
+ }
+ }} />
+
+
+ Type
+
+
+ Name
+
+
+ Invoice No
+
+
+ Due Date
+
+
+ Grand Total
+
+
+ Outstanding
+
+
+
+
+ {data.message.map((ref) => (
+ {
+ const target = e.target as HTMLElement
+ // Do not select the checkbox if the user clicks on the checkbox or the link
+ if (target.tagName !== 'INPUT' && !target.className.includes('chakra-checkbox') && !target.className.includes('chakra-link')) {
+ onSelectRow(ref)
+ }
+ }}
+ className="cursor-pointer">
+
+ {
+ if (checked) {
+ setSelectedInvoices([...selectedInvoices, ref])
+ } else {
+ setSelectedInvoices(selectedInvoices.filter((invoice) => invoice !== ref))
+ }
+ }}
+ />
+
+
+ {ref.voucher_type}
+
+
+ {ref.voucher_no}
+
+
+ {ref.bill_no ?? "-"}
+
+
+ {formatDate(ref.due_date)}
+
+
+ {formatCurrency(ref.invoice_amount)}
+
+
+ {formatCurrency(ref.outstanding_amount)}
+
+
+ ))}
+
+
: null}
+
+
+ Invoices: {selectedInvoices.length} /
+ Total: {formatCurrency(selectedInvoices.reduce((acc, invoice) => acc + invoice.outstanding_amount, 0))}
+
+
+
+ Cancel
+
+ Select
+
+
+
+
+}
+
+
+
+const OtherChargesSection = ({ currency }: { currency: string }) => {
+
+ const { setTotalAllocatedAmount } = usePaymentEntryCalculations()
+ const { getValues, control } = useFormContext()
+
+ const { fields, append, remove } = useFieldArray({
+ control: control,
+ name: 'deductions'
+ })
+
+
+ const [selectedRows, setSelectedRows] = useState([])
+
+ const onSelectRow = useCallback((index: number) => {
+ setSelectedRows(prev => {
+ if (prev.includes(index)) {
+ return prev.filter(i => i !== index)
+ }
+ return [...prev, index]
+ })
+ }, [])
+
+ const onSelectAll = useCallback(() => {
+ setSelectedRows(prev => {
+ if (prev.length === fields.length) {
+ return []
+ }
+ return [...fields.map((_, index) => index)]
+ })
+ }, [fields])
+
+ const onRemove = useCallback(() => {
+ remove(selectedRows)
+ setSelectedRows([])
+ setTotalAllocatedAmount()
+ }, [remove, selectedRows, setTotalAllocatedAmount])
+
+ const onAdd = () => {
+
+ append({
+ account: '',
+ cost_center: getCompanyCostCenter(getValues('company')),
+ description: '',
+ amount: 0
+ } as PaymentEntryDeduction)
+
+
+ }
+
+ return
+
+
Other Charges / Deductions
+
+
+
+
+
+ 0 && selectedRows.length === fields.length}
+ onCheckedChange={onSelectAll} />
+ {_("Account")} *
+ {_("Cost Center")} *
+ {_("Description")}
+ {_("Amount")} *
+
+
+
+ {fields.map((field, index) => (
+
+
+ onSelectRow(index)}
+ // Make this accessible to screen readers
+ aria-label={_("Select row {0}", [String(index + 1)])}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ setTotalAllocatedAmount()
+ }
+ }}
+ />
+
+
+ ))}
+
+
+
+
+
+ {selectedRows.length > 0 &&
+ {_("Remove")}
+
}
+
+
+
+}
+
+const TotalDeductions = ({ currency }: { currency: string }) => {
+
+ const { control } = useFormContext()
+
+ const total_deductions = useWatch({ control, name: 'deductions' })?.reduce((acc: number, row: PaymentEntryDeduction) => acc + row.amount, 0) ?? 0
+
+ return ({formatCurrency(total_deductions, currency)})
+}
+
+export default RecordPaymentModalContent
diff --git a/banking/src/components/features/BankReconciliation/TransferModal.tsx b/banking/src/components/features/BankReconciliation/TransferModal.tsx
index fb824dbc6f7..7411abb3df6 100644
--- a/banking/src/components/features/BankReconciliation/TransferModal.tsx
+++ b/banking/src/components/features/BankReconciliation/TransferModal.tsx
@@ -1,555 +1,32 @@
-import { useAtom, useAtomValue, useSetAtom } from 'jotai'
-import { bankRecSelectedTransactionAtom, bankRecTransferModalAtom, bankRecUnreconcileModalAtom, SelectedBank, selectedBankAccountAtom } from './bankRecAtoms'
-import { Dialog, DialogContent, DialogHeader, DialogFooter, DialogClose, DialogTitle, DialogDescription } from '@/components/ui/dialog'
+import { useAtom } from 'jotai'
+import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from '@/components/ui/dialog'
+import { ModalContentFallback } from '@/components/ui/modal-content-fallback'
import _ from '@/lib/translate'
-import { UnreconciledTransaction, useGetBankAccounts, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from './utils'
-import { Button } from '@/components/ui/button'
-import SelectedTransactionDetails from './SelectedTransactionDetails'
-import { PaymentEntry } from '@/types/Accounts/PaymentEntry'
-import { useForm, useFormContext, useWatch } from 'react-hook-form'
-import { FrappeConfig, FrappeContext, useFrappeGetCall, useFrappePostCall } from 'frappe-react-sdk'
-import { toast } from 'sonner'
-import ErrorBanner from '@/components/ui/error-banner'
-import { H4 } from '@/components/ui/typography'
-import { cn } from '@/lib/utils'
-import { ArrowRight, Banknote, BadgeCheck, Calendar, ArrowUpRight, ArrowDownRight, CheckIcon, CheckCircle, ArrowLeft } from 'lucide-react'
-import { Separator } from '@/components/ui/separator'
-import { Form } from '@/components/ui/form'
-import { AccountFormField, DataField, DateField, SmallTextField } from '@/components/ui/form-elements'
-import SelectedTransactionsTable from './SelectedTransactionsTable'
-import { useCurrentCompany } from '@/hooks/useCurrentCompany'
-import { formatDate } from '@/lib/date'
-import { useContext, useMemo, useState } from 'react'
-import { formatCurrency } from '@/lib/numbers'
-import { Label } from '@/components/ui/label'
-import { FileDropzone } from '@/components/ui/file-dropzone'
-import FileUploadBanner from '@/components/common/FileUploadBanner'
-import { BankTransaction } from '@/types/Accounts/BankTransaction'
-import { useHotkeys } from 'react-hotkeys-hook'
-import { useDirection } from '@/components/ui/direction'
-import BankLogo from '@/components/common/BankLogo'
+import { lazy, Suspense } from 'react'
+import { bankRecTransferModalAtom } from './bankRecAtoms'
+
+const TransferModalContent = lazy(() => import('./TransferModalContent'))
const TransferModal = () => {
+ const [isOpen, setIsOpen] = useAtom(bankRecTransferModalAtom)
- const [isOpen, setIsOpen] = useAtom(bankRecTransferModalAtom)
-
- return (
-
-
-
- {_("Transfer")}
-
- {_("Record an internal transfer to another bank/credit card/cash account.")}
-
-
-
-
-
- )
+ return (
+
+
+
+ {_("Transfer")}
+
+ {_("Record an internal transfer to another bank/credit card/cash account.")}
+
+
+ {isOpen && (
+ }>
+
+
+ )}
+
+
+ )
}
-const TransferModalContent = () => {
-
- const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
-
- const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
-
- if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
- return
- {_("No transaction selected")}
-
- }
-
- if (selectedTransaction.length === 1) {
- return
- }
-
- return
-
-}
-
-const BulkInternalTransferForm = ({ transactions }: { transactions: UnreconciledTransaction[] }) => {
-
- const form = useForm<{
- bank_account: string
- }>()
-
- const setIsOpen = useSetAtom(bankRecTransferModalAtom)
-
- const { call: createPaymentEntry, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_internal_transfer')
-
- const onReconcile = useRefreshUnreconciledTransactions()
- const addToActionLog = useUpdateActionLog()
-
- const onSubmit = (data: { bank_account: string }) => {
-
- createPaymentEntry({
- bank_transaction_names: transactions.map((transaction) => transaction.name),
- bank_account: data.bank_account
- }).then(({ message }) => {
- addToActionLog({
- type: 'transfer',
- timestamp: (new Date()).getTime(),
- isBulk: true,
- items: message.map((item) => ({
- bankTransaction: item.transaction,
- voucher: {
- reference_doctype: "Payment Entry",
- reference_name: item.payment_entry.name,
- posting_date: item.payment_entry.posting_date,
- doc: item.payment_entry,
- }
- })),
- bulkCommonData: {
- bank_account: data.bank_account,
- }
- })
- toast.success(_("Transfer Recorded"), {
- duration: 4000,
- closeButton: true,
- })
- onReconcile(transactions[transactions.length - 1])
- setIsOpen(false)
- })
-
- }
-
- const onAccountChange = (account: string) => {
- form.setValue('bank_account', account)
- }
-
- const selectedAccount = useWatch({ control: form.control, name: 'bank_account' })
-
- const currentCompany = useCurrentCompany()
-
- const company = transactions && transactions.length > 0 ? transactions[0].company : (currentCompany ?? '')
-
- console.log("This is here", transactions)
-
- return
-
-
-}
-
-interface InternalTransferFormFields extends PaymentEntry {
- mirror_transaction_name?: string
-}
-
-const InternalTransferForm = ({ selectedBankAccount, selectedTransaction }: { selectedBankAccount: SelectedBank, selectedTransaction: UnreconciledTransaction }) => {
-
-
- const setIsOpen = useSetAtom(bankRecTransferModalAtom)
-
- const onClose = () => {
- setIsOpen(false)
- }
-
- const { data: rule } = useGetRuleForTransaction(selectedTransaction)
-
- const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
-
- const form = useForm({
- defaultValues: {
- payment_type: 'Internal Transfer',
- company: selectedTransaction?.company,
- // If the transaction is a withdrawal, set the paid from to the selected bank account
- paid_from: isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
- // If the transaction is a deposit, set the paid to to the selected bank account
- paid_to: !isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
- // Set the amount to the amount of the selected transaction
- paid_amount: selectedTransaction.unallocated_amount,
- received_amount: selectedTransaction.unallocated_amount,
- reference_date: selectedTransaction.date,
- posting_date: selectedTransaction.date,
- reference_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
- }
- })
-
- const onReconcile = useRefreshUnreconciledTransactions()
-
- const { call: createPaymentEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_internal_transfer')
-
- const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
- const addToActionLog = useUpdateActionLog()
-
- const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
-
- const [isUploading, setIsUploading] = useState(false)
- const [uploadProgress, setUploadProgress] = useState(0)
-
- const [files, setFiles] = useState([])
-
- const onSubmit = (data: InternalTransferFormFields) => {
-
- createPaymentEntry({
- bank_transaction_name: selectedTransaction.name,
- ...data,
- custom_remarks: data.remarks ? true : false,
- // Pass this to reconcile both at the same time
- mirror_transaction_name: data.mirror_transaction_name
- }).then(async ({ message }) => {
- addToActionLog({
- type: 'transfer',
- timestamp: (new Date()).getTime(),
- isBulk: false,
- items: [
- {
- bankTransaction: message.transaction,
- voucher: {
- reference_doctype: "Payment Entry",
- reference_name: message.payment_entry.name,
- reference_no: message.payment_entry.reference_no,
- reference_date: message.payment_entry.reference_date,
- posting_date: message.payment_entry.posting_date,
- doc: message.payment_entry,
- }
- }
- ]
- })
- toast.success(_("Transfer Recorded"), {
- duration: 4000,
- closeButton: true,
- action: {
- label: _("Undo"),
- onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
- },
- actionButtonStyle: {
- backgroundColor: "rgb(0, 138, 46)"
- }
- })
-
- if (files.length > 0) {
- setIsUploading(true)
-
- const uploadPromises = files.map(f => {
- return frappeFile.uploadFile(f, {
- isPrivate: true,
- doctype: "Payment Entry",
- docname: message.payment_entry.name,
- }, (_bytesUploaded, _totalBytes, progress) => {
-
- setUploadProgress((currentProgress) => {
- //If there are multiple files, we need to add the progress to the current progress
- return currentProgress + ((progress?.progress ?? 0) / files.length)
- })
-
- })
- })
-
- return Promise.all(uploadPromises).then(() => {
- setUploadProgress(0)
- setIsUploading(false)
- })
- } else {
- return Promise.resolve()
- }
- }).then(() => {
- setUploadProgress(0)
- setIsUploading(false)
- onReconcile(selectedTransaction)
- onClose()
- })
- }
-
-
- useHotkeys('meta+s', () => {
- form.handleSubmit(onSubmit)()
- }, {
- enabled: true,
- preventDefault: true,
- enableOnFormTags: true
- })
-
- const onAccountChange = (account: string, is_mirror: boolean = false) => {
- //If the transaction is a withdrawal, set the paid to to the selected account - since this is the account where the money is deposited into
- if (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) {
- form.setValue('paid_to', account)
- } else {
- form.setValue('paid_from', account)
- }
-
- if (!is_mirror) {
- // Reset the mirror transaction name
- form.setValue('mirror_transaction_name', '')
- }
- }
-
- const selectedAccount = useWatch({ control: form.control, name: (selectedTransaction.deposit && selectedTransaction.deposit > 0) ? 'paid_from' : 'paid_to' })
-
- const direction = useDirection()
-
- if (isUploading && isCompleted) {
- return
- }
-
- return
-
-}
-
-
-const BankOrCashPicker = ({ bankAccount, onAccountChange, selectedAccount, company }: { selectedAccount: string, bankAccount: string, onAccountChange: (account: string) => void, company: string }) => {
-
- const { banks } = useGetBankAccounts(undefined, (bank) => bank.name !== bankAccount)
-
- return
- {banks.map((bank) => (
-
onAccountChange(bank.account ?? '')}
- >
-
-
- {bank.account_name} {bank.bank_account_no && ({bank.bank_account_no}) }
- {bank.account}
-
-
- ))}
-
-
-
-}
-
-const CashPicker = ({ company, selectedAccount, setSelectedAccount }: { company: string, selectedAccount: string, setSelectedAccount: (account: string) => void }) => {
-
- const { data } = useFrappeGetCall('frappe.client.get_value', {
- doctype: 'Company',
- filters: company,
- fieldname: 'default_cash_account'
- }, undefined, {
- revalidateOnFocus: false,
- revalidateIfStale: false,
- })
-
- const account = data?.message?.default_cash_account
-
- if (account) {
- return setSelectedAccount(account ?? '')}
- >
-
-
-
-
- Cash
- {data?.message?.default_cash_account}
-
-
- }
-
- return null
-}
-
-
-const RecommendedTransferAccount = ({ transaction, onAccountChange }: { transaction: UnreconciledTransaction, onAccountChange: (account: string, is_mirror: boolean) => void }) => {
-
- const { setValue, watch } = useFormContext()
-
- const mirrorTransactionName = watch('mirror_transaction_name')
- const paid_from = watch('paid_from')
- const paid_to = watch('paid_to')
-
- const { data } = useFrappeGetCall('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.search_for_transfer_transaction', {
- transaction_id: transaction.name
- }, undefined, {
- revalidateOnFocus: false,
- revalidateIfStale: false,
- })
-
- // Get bank accounts to find the logo
- const { banks } = useGetBankAccounts()
-
- const bank = useMemo(() => {
- if (data?.message?.bank_account && banks) {
- return banks.find(bank => bank.name === data.message.bank_account)
- }
- return null
- }, [data?.message?.bank_account, banks])
-
- const selectTransaction = () => {
- if (data?.message) {
- setValue('mirror_transaction_name', data.message.name)
- onAccountChange(data.message.account, true)
- }
- }
-
- if (data?.message) {
-
- const isWithdrawal = data.message.withdrawal && data.message.withdrawal > 0
-
- const amount = isWithdrawal ? data.message.withdrawal : data.message.deposit
- const currency = data.message.currency
-
- const isAccountSelected = isWithdrawal ? paid_from === data.message.account : paid_to === data.message.account
-
- const isSuggested = mirrorTransactionName === data?.message?.name && isAccountSelected
-
- return (
-
-
-
-
-
- {_("Suggested Transfer to {0}", [data.message.account])}
-
-
- {_("The system found a mirror transaction ({0}) in another account with the same amount and date.", [data.message.name])}
- {_("Accepting the suggestion will reconcile both transactions.")}
-
-
-
-
-
- {formatDate(data.message.date, 'Do MMM YYYY')}
-
-
{data.message.description}
-
-
-
-
-
-
-
-
-
- {isWithdrawal ?
:
}
-
{isWithdrawal ? _('Transferred Out') : _('Received')}
-
-
-
{formatCurrency(amount, currency)}
-
-
- {isSuggested ? : }
- {isSuggested ? _("Accepted") : _("Use Suggestion")}
-
-
-
-
-
- )
- }
-
- return null
-}
-
-export default TransferModal
\ No newline at end of file
+export default TransferModal
diff --git a/banking/src/components/features/BankReconciliation/TransferModalContent.tsx b/banking/src/components/features/BankReconciliation/TransferModalContent.tsx
new file mode 100644
index 00000000000..d24cafebe40
--- /dev/null
+++ b/banking/src/components/features/BankReconciliation/TransferModalContent.tsx
@@ -0,0 +1,530 @@
+import { useAtomValue, useSetAtom } from 'jotai'
+import { bankRecSelectedTransactionAtom, bankRecTransferModalAtom, bankRecUnreconcileModalAtom, SelectedBank, selectedBankAccountAtom } from './bankRecAtoms'
+import { DialogFooter, DialogClose } from '@/components/ui/dialog'
+import _ from '@/lib/translate'
+import { UnreconciledTransaction, useGetBankAccounts, useGetRuleForTransaction, useRefreshUnreconciledTransactions, useUpdateActionLog } from './utils'
+import { Button } from '@/components/ui/button'
+import SelectedTransactionDetails from './SelectedTransactionDetails'
+import { PaymentEntry } from '@/types/Accounts/PaymentEntry'
+import { useForm, useFormContext, useWatch } from 'react-hook-form'
+import { FrappeConfig, FrappeContext, useFrappeGetCall, useFrappePostCall } from 'frappe-react-sdk'
+import { toast } from 'sonner'
+import ErrorBanner from '@/components/ui/error-banner'
+import { H4 } from '@/components/ui/typography'
+import { cn } from '@/lib/utils'
+import { ArrowRight, Banknote, BadgeCheck, Calendar, ArrowUpRight, ArrowDownRight, CheckIcon, CheckCircle, ArrowLeft } from 'lucide-react'
+import { Separator } from '@/components/ui/separator'
+import { Form } from '@/components/ui/form'
+import { AccountFormField, DataField, DateField, SmallTextField } from '@/components/ui/form-elements'
+import SelectedTransactionsTable from './SelectedTransactionsTable'
+import { useCurrentCompany } from '@/hooks/useCurrentCompany'
+import { useMultiFileUploadProgress } from '@/hooks/useMultiFileUploadProgress'
+import { formatDate } from '@/lib/date'
+import { useContext, useMemo, useState } from 'react'
+import { formatCurrency } from '@/lib/numbers'
+import { Label } from '@/components/ui/label'
+import { FileDropzone } from '@/components/ui/file-dropzone'
+import FileUploadBanner from '@/components/common/FileUploadBanner'
+import { BankTransaction } from '@/types/Accounts/BankTransaction'
+import { useHotkeys } from 'react-hotkeys-hook'
+import { useDirection } from '@/components/ui/direction'
+import BankLogo from '@/components/common/BankLogo'
+const TransferModalContent = () => {
+
+ const selectedBankAccount = useAtomValue(selectedBankAccountAtom)
+
+ const selectedTransaction = useAtomValue(bankRecSelectedTransactionAtom(selectedBankAccount?.name ?? ''))
+
+ if (!selectedTransaction || !selectedBankAccount || selectedTransaction.length === 0) {
+ return
+ {_("No transaction selected")}
+
+ }
+
+ if (selectedTransaction.length === 1) {
+ return
+ }
+
+ return
+
+}
+
+const BulkInternalTransferForm = ({ transactions }: { transactions: UnreconciledTransaction[] }) => {
+
+ const form = useForm<{
+ bank_account: string
+ }>()
+
+ const setIsOpen = useSetAtom(bankRecTransferModalAtom)
+
+ const { call: createPaymentEntry, loading, error } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry }[] }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_bulk_internal_transfer')
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+ const addToActionLog = useUpdateActionLog()
+
+ const onSubmit = (data: { bank_account: string }) => {
+
+ createPaymentEntry({
+ bank_transaction_names: transactions.map((transaction) => transaction.name),
+ bank_account: data.bank_account
+ }).then(({ message }) => {
+ addToActionLog({
+ type: 'transfer',
+ timestamp: (new Date()).getTime(),
+ isBulk: true,
+ items: message.map((item) => ({
+ bankTransaction: item.transaction,
+ voucher: {
+ reference_doctype: "Payment Entry",
+ reference_name: item.payment_entry.name,
+ posting_date: item.payment_entry.posting_date,
+ doc: item.payment_entry,
+ }
+ })),
+ bulkCommonData: {
+ bank_account: data.bank_account,
+ }
+ })
+ toast.success(_("Transfer Recorded"), {
+ duration: 4000,
+ closeButton: true,
+ })
+ onReconcile(transactions[transactions.length - 1])
+ setIsOpen(false)
+ })
+
+ }
+
+ const onAccountChange = (account: string) => {
+ form.setValue('bank_account', account)
+ }
+
+ const selectedAccount = useWatch({ control: form.control, name: 'bank_account' })
+
+ const currentCompany = useCurrentCompany()
+
+ const company = transactions && transactions.length > 0 ? transactions[0].company : (currentCompany ?? '')
+
+ return
+
+
+}
+
+interface InternalTransferFormFields extends PaymentEntry {
+ mirror_transaction_name?: string
+}
+
+const InternalTransferForm = ({ selectedBankAccount, selectedTransaction }: { selectedBankAccount: SelectedBank, selectedTransaction: UnreconciledTransaction }) => {
+
+
+ const setIsOpen = useSetAtom(bankRecTransferModalAtom)
+
+ const onClose = () => {
+ setIsOpen(false)
+ }
+
+ const { data: rule } = useGetRuleForTransaction(selectedTransaction)
+
+ const isWithdrawal = (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) ? true : false
+
+ const form = useForm({
+ defaultValues: {
+ payment_type: 'Internal Transfer',
+ company: selectedTransaction?.company,
+ // If the transaction is a withdrawal, set the paid from to the selected bank account
+ paid_from: isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
+ // If the transaction is a deposit, set the paid to to the selected bank account
+ paid_to: !isWithdrawal ? selectedBankAccount.account : (rule?.account ?? ''),
+ // Set the amount to the amount of the selected transaction
+ paid_amount: selectedTransaction.unallocated_amount,
+ received_amount: selectedTransaction.unallocated_amount,
+ reference_date: selectedTransaction.date,
+ posting_date: selectedTransaction.date,
+ reference_no: (selectedTransaction.reference_number || selectedTransaction.description || '').slice(0, 140),
+ }
+ })
+
+ const onReconcile = useRefreshUnreconciledTransactions()
+
+ const { call: createPaymentEntry, loading, error, isCompleted } = useFrappePostCall<{ message: { transaction: BankTransaction, payment_entry: PaymentEntry } }>('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.create_internal_transfer')
+
+ const setBankRecUnreconcileModalAtom = useSetAtom(bankRecUnreconcileModalAtom)
+ const addToActionLog = useUpdateActionLog()
+
+ const { file: frappeFile } = useContext(FrappeContext) as FrappeConfig
+
+ const [isUploading, setIsUploading] = useState(false)
+ const { uploadProgress, startTracking, updateFileProgress, resetProgress } = useMultiFileUploadProgress()
+
+ const [files, setFiles] = useState([])
+
+ const onSubmit = (data: InternalTransferFormFields) => {
+
+ createPaymentEntry({
+ bank_transaction_name: selectedTransaction.name,
+ ...data,
+ custom_remarks: data.remarks ? true : false,
+ // Pass this to reconcile both at the same time
+ mirror_transaction_name: data.mirror_transaction_name
+ }).then(async ({ message }) => {
+ addToActionLog({
+ type: 'transfer',
+ timestamp: (new Date()).getTime(),
+ isBulk: false,
+ items: [
+ {
+ bankTransaction: message.transaction,
+ voucher: {
+ reference_doctype: "Payment Entry",
+ reference_name: message.payment_entry.name,
+ reference_no: message.payment_entry.reference_no,
+ reference_date: message.payment_entry.reference_date,
+ posting_date: message.payment_entry.posting_date,
+ doc: message.payment_entry,
+ }
+ }
+ ]
+ })
+ toast.success(_("Transfer Recorded"), {
+ duration: 4000,
+ closeButton: true,
+ action: {
+ label: _("Undo"),
+ onClick: () => setBankRecUnreconcileModalAtom(selectedTransaction.name)
+ },
+ actionButtonStyle: {
+ backgroundColor: "rgb(0, 138, 46)"
+ }
+ })
+
+ if (files.length > 0) {
+ setIsUploading(true)
+ startTracking(files.length)
+
+ const uploadPromises = files.map((f, fileIndex) => {
+ return frappeFile.uploadFile(f, {
+ isPrivate: true,
+ doctype: "Payment Entry",
+ docname: message.payment_entry.name,
+ }, (_bytesUploaded, _totalBytes, progress) => {
+ updateFileProgress(fileIndex, progress?.progress ?? 0)
+ })
+ })
+
+ return Promise.all(uploadPromises).then(() => {
+ resetProgress()
+ setIsUploading(false)
+ })
+ } else {
+ return Promise.resolve()
+ }
+ }).then(() => {
+ resetProgress()
+ setIsUploading(false)
+ onReconcile(selectedTransaction)
+ onClose()
+ })
+ }
+
+
+ useHotkeys('meta+s', () => {
+ form.handleSubmit(onSubmit)()
+ }, {
+ enabled: true,
+ preventDefault: true,
+ enableOnFormTags: true
+ })
+
+ const onAccountChange = (account: string, is_mirror: boolean = false) => {
+ //If the transaction is a withdrawal, set the paid to to the selected account - since this is the account where the money is deposited into
+ if (selectedTransaction.withdrawal && selectedTransaction.withdrawal > 0) {
+ form.setValue('paid_to', account)
+ } else {
+ form.setValue('paid_from', account)
+ }
+
+ if (!is_mirror) {
+ // Reset the mirror transaction name
+ form.setValue('mirror_transaction_name', '')
+ }
+ }
+
+ const selectedAccount = useWatch({ control: form.control, name: (selectedTransaction.deposit && selectedTransaction.deposit > 0) ? 'paid_from' : 'paid_to' })
+
+ const direction = useDirection()
+
+ if (isUploading && isCompleted) {
+ return
+ }
+
+ return
+
+}
+
+
+const BankOrCashPicker = ({ bankAccount, onAccountChange, selectedAccount, company }: { selectedAccount: string, bankAccount: string, onAccountChange: (account: string) => void, company?: string }) => {
+
+ const { banks } = useGetBankAccounts(undefined, (bank) => bank.name !== bankAccount)
+
+ return
+ {banks.map((bank) => (
+
onAccountChange(bank.account ?? '')}
+ >
+
+
+ {bank.account_name} {bank.bank_account_no && ({bank.bank_account_no}) }
+ {bank.account}
+
+
+ ))}
+
+
+
+}
+
+const CashPicker = ({ company, selectedAccount, setSelectedAccount }: { company: string, selectedAccount: string, setSelectedAccount: (account: string) => void }) => {
+
+ const { data } = useFrappeGetCall('frappe.client.get_value', {
+ doctype: 'Company',
+ filters: company,
+ fieldname: 'default_cash_account'
+ }, undefined, {
+ revalidateOnFocus: false,
+ revalidateIfStale: false,
+ })
+
+ const account = data?.message?.default_cash_account
+
+ if (account) {
+ return setSelectedAccount(account ?? '')}
+ >
+
+
+
+
+ Cash
+ {data?.message?.default_cash_account}
+
+
+ }
+
+ return null
+}
+
+
+const RecommendedTransferAccount = ({ transaction, onAccountChange }: { transaction: UnreconciledTransaction, onAccountChange: (account: string, is_mirror: boolean) => void }) => {
+
+ const { setValue, watch } = useFormContext()
+
+ const mirrorTransactionName = watch('mirror_transaction_name')
+ const paid_from = watch('paid_from')
+ const paid_to = watch('paid_to')
+
+ const { data } = useFrappeGetCall('erpnext.accounts.doctype.bank_reconciliation_tool.bank_reconciliation_tool.search_for_transfer_transaction', {
+ transaction_id: transaction.name
+ }, undefined, {
+ revalidateOnFocus: false,
+ revalidateIfStale: false,
+ })
+
+ // Get bank accounts to find the logo
+ const { banks } = useGetBankAccounts()
+
+ const bank = useMemo(() => {
+ if (data?.message?.bank_account && banks) {
+ return banks.find(bank => bank.name === data.message.bank_account)
+ }
+ return null
+ }, [data?.message?.bank_account, banks])
+
+ const selectTransaction = () => {
+ if (data?.message) {
+ setValue('mirror_transaction_name', data.message.name)
+ onAccountChange(data.message.account, true)
+ }
+ }
+
+ if (data?.message) {
+
+ const isWithdrawal = data.message.withdrawal && data.message.withdrawal > 0
+
+ const amount = isWithdrawal ? data.message.withdrawal : data.message.deposit
+ const currency = data.message.currency
+
+ const isAccountSelected = isWithdrawal ? paid_from === data.message.account : paid_to === data.message.account
+
+ const isSuggested = mirrorTransactionName === data?.message?.name && isAccountSelected
+
+ return (
+
+
+
+
+
+ {_("Suggested Transfer to {0}", [data.message.account])}
+
+
+ {_("The system found a mirror transaction ({0}) in another account with the same amount and date.", [data.message.name])}
+ {_("Accepting the suggestion will reconcile both transactions.")}
+
+
+
+
+
+ {formatDate(data.message.date, 'Do MMM YYYY')}
+
+
{data.message.description}
+
+
+
+
+
+
+
+
+
+ {isWithdrawal ?
:
}
+
{isWithdrawal ? _('Transferred Out') : _('Received')}
+
+
+
{formatCurrency(amount, currency)}
+
+
+ {isSuggested ? : }
+ {isSuggested ? _("Accepted") : _("Use Suggestion")}
+
+
+
+
+
+ )
+ }
+
+ return null
+}
+
+export default TransferModalContent
diff --git a/banking/src/components/features/BankStatementImporter/CSV/CSVImport.tsx b/banking/src/components/features/BankStatementImporter/CSV/CSVImport.tsx
index 23edf987404..63b7df824d0 100644
--- a/banking/src/components/features/BankStatementImporter/CSV/CSVImport.tsx
+++ b/banking/src/components/features/BankStatementImporter/CSV/CSVImport.tsx
@@ -1,6 +1,5 @@
import CSVRawDataPreview from './CSVRawDataPreview'
import StatementDetails from './StatementDetails'
-import _ from '@/lib/translate'
import { GetStatementDetailsResponse } from '../import_utils'
const CSVImport = ({ data }: { data: { message: GetStatementDetailsResponse } }) => {
diff --git a/banking/src/components/features/Settings/KeyboardShortcuts.tsx b/banking/src/components/features/Settings/KeyboardShortcuts.tsx
index 435a0ac2ab0..71feaf3afc9 100644
--- a/banking/src/components/features/Settings/KeyboardShortcuts.tsx
+++ b/banking/src/components/features/Settings/KeyboardShortcuts.tsx
@@ -4,7 +4,7 @@ import { KeyboardMetaKeyIcon } from '@/components/ui/keyboard-keys'
import { SettingsPanelDescription, SettingsPanelTitle, SettingsPanelHeader, SettingsPanelContent } from '@/components/ui/settings-dialog'
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'
import _ from '@/lib/translate'
-import { ArrowRightLeftIcon, HistoryIcon, LandmarkIcon, ReceiptIcon, SaveIcon, SettingsIcon, ZapIcon } from 'lucide-react'
+import { ArrowRightLeftIcon, HistoryIcon, LandmarkIcon, OptionIcon, ReceiptIcon, SaveIcon, SettingsIcon, ZapIcon } from 'lucide-react'
const Shortcuts = [
{
@@ -32,7 +32,7 @@ const Shortcuts = [
}
},
{
- shortcut: R ,
+ shortcut: R ,
action: {
icon: ,
label: _("Accept Matching Rule"),
diff --git a/banking/src/components/features/Settings/Preferences.tsx b/banking/src/components/features/Settings/Preferences.tsx
index b182485a7ec..5db0e886fe9 100644
--- a/banking/src/components/features/Settings/Preferences.tsx
+++ b/banking/src/components/features/Settings/Preferences.tsx
@@ -20,7 +20,7 @@ export const Preferences = () => {
const { updateDoc, error } = useFrappeUpdateDoc()
- const onUpdate = (field: keyof AccountsSettings, value: any) => {
+ const onUpdate = (field: K, value: AccountsSettings[K]) => {
mutate(updateDoc("Accounts Settings", "Accounts Settings", {
[field]: value
}), {
diff --git a/banking/src/components/features/Settings/Settings.tsx b/banking/src/components/features/Settings/Settings.tsx
index 623fceea4ac..acdb4e39dc1 100644
--- a/banking/src/components/features/Settings/Settings.tsx
+++ b/banking/src/components/features/Settings/Settings.tsx
@@ -1,95 +1,42 @@
import { Button } from '@/components/ui/button'
import { Dialog, DialogTrigger } from '@/components/ui/dialog'
-import {
- SettingsDialog,
- SettingsPanel,
- SettingsPanels,
- SettingsTabGroup,
- SettingsTabItem,
- SettingsTabs,
-} from '@/components/ui/settings-dialog'
import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip'
import _ from '@/lib/translate'
-import { KeyboardIcon, SettingsIcon, SlidersVerticalIcon, ZapIcon } from 'lucide-react'
+import { SettingsIcon } from 'lucide-react'
import { useState } from 'react'
-import { Preferences } from './Preferences'
-import MatchingRules from './MatchingRules'
-import KeyboardShortcuts from './KeyboardShortcuts'
import { useHotkeys } from 'react-hotkeys-hook'
+import SettingsDialogContent from './SettingsDialogContent'
const Settings = () => {
+ const [isOpen, setIsOpen] = useState(false)
- const [isOpen, setIsOpen] = useState(false)
+ useHotkeys('shift+meta+g', () => {
+ setIsOpen(x => !x)
+ }, {
+ enabled: true,
+ preventDefault: true,
+ enableOnFormTags: false
+ })
- useHotkeys('shift+meta+g', () => {
- setIsOpen(x => !x)
- }, {
- enabled: true,
- preventDefault: true,
- enableOnFormTags: false
- })
-
- return (
-
-
-
-
-
-
-
-
-
-
- {_("Settings")}
-
-
- setIsOpen(false)}>
-
-
- }
- label={_("Preferences")}
- value="preferences"
- />
- }
- label={_("Matching Rules")}
- value="rules"
- />
- {/* }
- label={_("Bank Accounts")}
- value="bank-accounts"
- />
- }
- label={_("Masters")}
- value="masters"
- /> */}
- }
- label={_("Keyboard Shortcuts")}
- value="keyboard-shortcuts"
- />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- )
+ return (
+
+
+
+
+
+
+
+
+
+
+ {_("Settings")}
+
+
+ {isOpen && (
+ setIsOpen(false)} />
+ )}
+
+ )
}
export default Settings
diff --git a/banking/src/components/features/Settings/SettingsDialogContent.tsx b/banking/src/components/features/Settings/SettingsDialogContent.tsx
new file mode 100644
index 00000000000..433ecb8691c
--- /dev/null
+++ b/banking/src/components/features/Settings/SettingsDialogContent.tsx
@@ -0,0 +1,52 @@
+import {
+ SettingsDialog,
+ SettingsPanels,
+ SettingsTabGroup,
+ SettingsTabItem,
+ SettingsTabs,
+} from '@/components/ui/settings-dialog'
+import _ from '@/lib/translate'
+import { KeyboardIcon, Loader2Icon, SlidersVerticalIcon, ZapIcon } from 'lucide-react'
+import { lazy, Suspense } from 'react'
+
+const SettingsPanelsContent = lazy(() => import('./SettingsPanelsContent'))
+
+const SettingsPanelsFallback = () => (
+
+
+
+)
+
+const SettingsDialogContent = ({ onClose }: { onClose: () => void }) => {
+ return (
+
+
+
+ }
+ label={_("Preferences")}
+ value="preferences"
+ />
+ }
+ label={_("Matching Rules")}
+ value="rules"
+ />
+ }
+ label={_("Keyboard Shortcuts")}
+ value="keyboard-shortcuts"
+ />
+
+
+
+
+ }>
+
+
+
+
+ )
+}
+
+export default SettingsDialogContent
diff --git a/banking/src/components/features/Settings/SettingsPanelsContent.tsx b/banking/src/components/features/Settings/SettingsPanelsContent.tsx
new file mode 100644
index 00000000000..ac60de5c421
--- /dev/null
+++ b/banking/src/components/features/Settings/SettingsPanelsContent.tsx
@@ -0,0 +1,24 @@
+import { SettingsPanel } from '@/components/ui/settings-dialog'
+import { Preferences } from './Preferences'
+import MatchingRules from './MatchingRules'
+import KeyboardShortcuts from './KeyboardShortcuts'
+
+const SettingsPanelsContent = () => {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )
+}
+
+export default SettingsPanelsContent
diff --git a/banking/src/components/ui/alert-dialog.tsx b/banking/src/components/ui/alert-dialog.tsx
index cbab3099bb3..625f0b5eb0f 100644
--- a/banking/src/components/ui/alert-dialog.tsx
+++ b/banking/src/components/ui/alert-dialog.tsx
@@ -170,7 +170,7 @@ function AlertDialogCancel({
}: React.ComponentProps &
Pick, "variant" | "size" | "theme">) {
return (
-
+
{
- if (message?.title === 'Message' || message?.title === 'Error') return "There was an error."
+ if (message?.title === 'Message' || message?.title === 'Error') return _("There was an error.")
return message?.title
}
diff --git a/banking/src/components/ui/modal-content-fallback.tsx b/banking/src/components/ui/modal-content-fallback.tsx
new file mode 100644
index 00000000000..5d59b04b68f
--- /dev/null
+++ b/banking/src/components/ui/modal-content-fallback.tsx
@@ -0,0 +1,7 @@
+import { Loader2Icon } from 'lucide-react'
+
+export const ModalContentFallback = () => (
+
+
+
+)
diff --git a/banking/src/components/ui/settings-dialog.tsx b/banking/src/components/ui/settings-dialog.tsx
index 18681a93cf8..607a55c35b0 100644
--- a/banking/src/components/ui/settings-dialog.tsx
+++ b/banking/src/components/ui/settings-dialog.tsx
@@ -151,7 +151,7 @@ function SettingsTabItem({
)}
diff --git a/banking/src/hooks/useMultiFileUploadProgress.ts b/banking/src/hooks/useMultiFileUploadProgress.ts
new file mode 100644
index 00000000000..01db99bf15f
--- /dev/null
+++ b/banking/src/hooks/useMultiFileUploadProgress.ts
@@ -0,0 +1,37 @@
+import { useCallback, useRef, useState } from "react"
+
+/** Tracks per-file upload progress (0–1) and exposes their average. */
+export function useMultiFileUploadProgress() {
+ const [uploadProgress, setUploadProgress] = useState(0)
+ const fileProgressesRef = useRef([])
+
+ const startTracking = useCallback((fileCount: number) => {
+ if (fileCount <= 0) {
+ return
+ }
+ fileProgressesRef.current = new Array(fileCount).fill(0)
+ setUploadProgress(0)
+ }, [])
+
+ const updateFileProgress = useCallback((fileIndex: number, progress: number) => {
+ if (fileIndex < 0 || fileIndex >= fileProgressesRef.current.length) {
+ return
+ }
+
+ if (fileProgressesRef.current.length === 0) {
+ return
+ }
+ fileProgressesRef.current[fileIndex] = progress
+ const total =
+ fileProgressesRef.current.reduce((sum, p) => sum + p, 0) /
+ fileProgressesRef.current.length
+ setUploadProgress(total)
+ }, [])
+
+ const resetProgress = useCallback(() => {
+ fileProgressesRef.current = []
+ setUploadProgress(0)
+ }, [])
+
+ return { uploadProgress, startTracking, updateFileProgress, resetProgress }
+}
diff --git a/banking/src/lib/numbers.ts b/banking/src/lib/numbers.ts
index 6d8692bb66d..0c1058966f6 100644
--- a/banking/src/lib/numbers.ts
+++ b/banking/src/lib/numbers.ts
@@ -1,4 +1,3 @@
-import { in_list } from "./checks";
import { getCurrencyNumberFormat, getCurrencyProperty, getCurrencySymbol } from "./currency";
import { getSystemDefault } from "./frappe";
import _ from "@/lib/translate";
diff --git a/banking/src/pages/BankReconciliation.tsx b/banking/src/pages/BankReconciliation.tsx
index 5ab6e2f5b00..235c304a4a5 100644
--- a/banking/src/pages/BankReconciliation.tsx
+++ b/banking/src/pages/BankReconciliation.tsx
@@ -1,20 +1,16 @@
import BankBalance from "@/components/features/BankReconciliation/BankBalance"
-import BankClearanceSummary from "@/components/features/BankReconciliation/BankClearanceSummary"
import BankPicker from "@/components/features/BankReconciliation/BankPicker"
import BankRecDateFilter from "@/components/features/BankReconciliation/BankRecDateFilter"
-import BankReconciliationStatement from "@/components/features/BankReconciliation/BankReconciliationStatement"
-import BankTransactions from "@/components/features/BankReconciliation/BankTransactionList"
import BankTransactionUnreconcileModal from "@/components/features/BankReconciliation/BankTransactionUnreconcileModal"
import CompanySelector from "@/components/features/BankReconciliation/CompanySelector"
-import IncorrectlyClearedEntries from "@/components/features/BankReconciliation/IncorrectlyClearedEntries"
import MatchAndReconcile from "@/components/features/BankReconciliation/MatchAndReconcile"
import Settings from "@/components/features/Settings/Settings"
import ActionLog from "@/components/features/ActionLog/ActionLog"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { TooltipProvider } from "@/components/ui/tooltip"
import _ from "@/lib/translate"
-import { useLayoutEffect, useRef, useState } from "react"
-import { AlertTriangleIcon, CheckCircleIcon, HomeIcon, LandmarkIcon, ListIcon, ScrollTextIcon, ShuffleIcon } from "lucide-react"
+import { lazy, Suspense, useLayoutEffect, useRef, useState } from "react"
+import { AlertTriangleIcon, CheckCircleIcon, HomeIcon, LandmarkIcon, ListIcon, Loader2Icon, ScrollTextIcon, ShuffleIcon } from "lucide-react"
import { Breadcrumb, BreadcrumbItem, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator } from "@/components/ui/breadcrumb"
import { Badge } from "@/components/ui/badge"
import { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from "@/components/ui/empty"
@@ -22,6 +18,10 @@ import { Button } from "@/components/ui/button"
import { useAtomValue } from "jotai"
import { selectedBankAccountAtom } from "@/components/features/BankReconciliation/bankRecAtoms"
+const BankReconciliationStatement = lazy(() => import('@/components/features/BankReconciliation/BankReconciliationStatement'))
+const BankTransactions = lazy(() => import('@/components/features/BankReconciliation/BankTransactionList'))
+const BankClearanceSummary = lazy(() => import('@/components/features/BankReconciliation/BankClearanceSummary'))
+const IncorrectlyClearedEntries = lazy(() => import('@/components/features/BankReconciliation/IncorrectlyClearedEntries'))
const BankReconciliation = () => {
@@ -35,7 +35,7 @@ const BankReconciliation = () => {
}
}, [])
- const remainingHeightAfterTabs = window.innerHeight - headerHeight - 270
+ const remainingHeightAfterTabs = window.innerHeight - headerHeight - 220
return (
@@ -122,18 +122,24 @@ const BankRecTabs = ({ remainingHeightAfterTabs }: { remainingHeightAfterTabs: n
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ }>
+
+
+
+
+
+
+
+
+
+
+
+
+
}
diff --git a/banking/src/pages/BankStatementImporterContainer.tsx b/banking/src/pages/BankStatementImporterContainer.tsx
index 26a3e35c69c..7c63a19de95 100644
--- a/banking/src/pages/BankStatementImporterContainer.tsx
+++ b/banking/src/pages/BankStatementImporterContainer.tsx
@@ -1,6 +1,7 @@
+import { Suspense } from 'react'
import { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbSeparator, BreadcrumbList } from '@/components/ui/breadcrumb'
import _ from '@/lib/translate'
-import { HomeIcon } from 'lucide-react'
+import { HomeIcon, Loader2Icon } from 'lucide-react'
import { Link, Outlet } from 'react-router'
const BankStatementImporterContainer = () => {
@@ -29,7 +30,13 @@ const BankStatementImporterContainer = () => {
-
+
+
+
+ }>
+
+
)
}
diff --git a/banking/src/pages/ViewBankStatementImportLog.tsx b/banking/src/pages/ViewBankStatementImportLog.tsx
index a4018af0c33..591f997ba55 100644
--- a/banking/src/pages/ViewBankStatementImportLog.tsx
+++ b/banking/src/pages/ViewBankStatementImportLog.tsx
@@ -1,4 +1,4 @@
-import CSVImport from '@/components/features/BankStatementImporter/CSV/CSVImport'
+import { lazy } from 'react'
import { useGetStatementDetails } from '@/components/features/BankStatementImporter/import_utils'
import { Button } from '@/components/ui/button'
import { useDirection } from '@/components/ui/direction'
@@ -8,6 +8,8 @@ import { useFrappeDocumentEventListener } from 'frappe-react-sdk'
import { ChevronLeftIcon, ChevronRightIcon } from 'lucide-react'
import { Link, useParams } from 'react-router'
+const CSVImport = lazy(() => import('@/components/features/BankStatementImporter/CSV/CSVImport'))
+
const ViewBankStatementImportLog = () => {
const { id } = useParams<{ id: string }>()
diff --git a/banking/src/types/Accounts/BankStatementImportLog.ts b/banking/src/types/Accounts/BankStatementImportLog.ts
index 844d7872ad3..f3b7bf80efd 100644
--- a/banking/src/types/Accounts/BankStatementImportLog.ts
+++ b/banking/src/types/Accounts/BankStatementImportLog.ts
@@ -1,6 +1,6 @@
import { BankStatementImportLogColumnMap } from './BankStatementImportLogColumnMap'
-export interface BankStatementImportLog{
+export interface BankStatementImportLog {
name: string
creation: string
modified: string
@@ -38,7 +38,7 @@ export interface BankStatementImportLog{
/** Detected Date Format : Data */
detected_date_format?: string
/** Detected Amount Format : Select */
- detected_amount_format?: "Separate columns for withdrawal and deposit" | "Amount column has "CR"/"DR" values" | "Amount column has positive/negative values" | "Transaction type column has "CR"/"DR" values" | "Transaction type column has "Deposit"/"Withdrawal" values" | "Transaction type column has "C"/"D" values"
+ detected_amount_format?: "Separate columns for withdrawal and deposit" | "Amount column has \"CR\"/\"DR\" values" | "Amount column has positive/negative values" | "Transaction type column has \"CR\"/\"DR\" values" | "Transaction type column has \"Deposit\"/\"Withdrawal\" values" | "Transaction type column has \"C\"/\"D\" values"
/** Detected Header Index : Int */
detected_header_index?: number
/** Detected Transaction Starting Index : Int */
diff --git a/banking/vite.config.ts b/banking/vite.config.ts
index 6cb8da1a7bf..66236f173bb 100644
--- a/banking/vite.config.ts
+++ b/banking/vite.config.ts
@@ -21,5 +21,35 @@ export default defineConfig({
outDir: '../erpnext/public/banking',
emptyOutDir: true,
target: 'es2015',
+ rollupOptions: {
+ output: {
+ manualChunks(id) {
+ if (!id.includes('node_modules')) {
+ return
+ }
+ if (id.includes('react-dom') || id.includes('/react/')) {
+ return 'vendor-react'
+ }
+ if (id.includes('frappe-react-sdk')) {
+ return 'vendor-frappe'
+ }
+ if (id.includes('@tanstack')) {
+ return 'vendor-tanstack'
+ }
+ if (id.includes('fuse.js')) {
+ return 'vendor-fuse'
+ }
+ if (id.includes('radix-ui') || id.includes('@radix-ui')) {
+ return 'vendor-radix'
+ }
+ if (id.includes('jotai')) {
+ return 'vendor-jotai'
+ }
+ if (id.includes('lucide-react')) {
+ return 'vendor-lucide'
+ }
+ },
+ },
+ },
},
});
diff --git a/banking/yarn.lock b/banking/yarn.lock
index 3f6469e4de2..09fb2b8c27d 100644
--- a/banking/yarn.lock
+++ b/banking/yarn.lock
@@ -3333,11 +3333,6 @@ react-style-singleton@^2.2.2, react-style-singleton@^2.2.3:
get-nonce "^1.0.0"
tslib "^2.0.0"
-react-virtuoso@^4.18.6:
- version "4.18.6"
- resolved "https://registry.yarnpkg.com/react-virtuoso/-/react-virtuoso-4.18.6.tgz#953637adf805d562892270aafdeeedb0bda1881b"
- integrity sha512-CrT3P6HyjJMHZVWSste2bG2q5aWGlHfW2QuySZjiFwB2Qok/xsvgy+k8Z2jeDP8PP5KsBip7zNrl/F0QoxeyKw==
-
react@^19.2.6:
version "19.2.6"
resolved "https://registry.yarnpkg.com/react/-/react-19.2.6.tgz#3dadb8e12b2a7934c1d5317973e5dce1301f9a4d"
diff --git a/erpnext/accounts/doctype/account/account.py b/erpnext/accounts/doctype/account/account.py
index 32221a2c73c..491b8c2c456 100644
--- a/erpnext/accounts/doctype/account/account.py
+++ b/erpnext/accounts/doctype/account/account.py
@@ -175,16 +175,19 @@ class Account(NestedSet):
if cint(self.is_group):
db_value = self.get_doc_before_save()
if db_value:
+ Account = frappe.qb.DocType("Account")
+ query = frappe.qb.update(Account).where((Account.lft > self.lft) & (Account.rgt < self.rgt))
+
+ updated = False
if self.report_type != db_value.report_type:
- frappe.db.sql(
- "update `tabAccount` set report_type=%s where lft > %s and rgt < %s",
- (self.report_type, self.lft, self.rgt),
- )
+ query = query.set(Account.report_type, self.report_type)
+ updated = True
if self.root_type != db_value.root_type:
- frappe.db.sql(
- "update `tabAccount` set root_type=%s where lft > %s and rgt < %s",
- (self.root_type, self.lft, self.rgt),
- )
+ query = query.set(Account.root_type, self.root_type)
+ updated = True
+
+ if updated:
+ query.run()
if self.root_type and not self.report_type:
self.report_type = (
@@ -449,11 +452,7 @@ class Account(NestedSet):
return frappe.db.get_value("GL Entry", {"account": self.name})
def check_if_child_exists(self):
- return frappe.db.sql(
- """select name from `tabAccount` where parent_account = %s
- and docstatus != 2""",
- self.name,
- )
+ return frappe.db.exists("Account", {"parent_account": self.name, "docstatus": ["!=", 2]})
def validate_mandatory(self):
if not self.root_type:
@@ -473,14 +472,24 @@ class Account(NestedSet):
@frappe.whitelist()
@frappe.validate_and_sanitize_search_inputs
def get_parent_account(doctype: str, txt: str, searchfield: str, start: int, page_len: int, filters: dict):
- return frappe.db.sql(
- """select name from tabAccount
- where is_group = 1 and docstatus != 2 and company = {}
- and {} like {} order by name limit {} offset {}""".format("%s", searchfield, "%s", "%s", "%s"),
- (filters["company"], "%%%s%%" % txt, page_len, start),
- as_list=1,
+ Account = frappe.qb.DocType("Account")
+
+ search_field_obj = getattr(Account, searchfield)
+
+ query = (
+ frappe.qb.from_(Account)
+ .select(Account.name)
+ .where(Account.is_group == 1)
+ .where(Account.docstatus != 2)
+ .where(Account.company == filters["company"])
+ .where(search_field_obj.like(f"%{txt}%"))
+ .order_by(Account.name)
+ .limit(page_len)
+ .offset(start)
)
+ return query.run(as_list=1)
+
def get_account_currency(account):
"""Helper function to get account currency"""
@@ -521,6 +530,7 @@ def update_account_number(
):
_ensure_idle_system()
account = frappe.get_cached_doc("Account", name)
+ account.check_permission("write")
if not account:
return
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 ea3977711a7..30a3baf83e2 100644
--- a/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json
+++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/philippines.json
@@ -570,6 +570,17 @@
"account_number": "5000",
"is_group": 1,
"root_type": "Expense",
+ "Cost of Goods Sold": {
+ "account_number": "5001",
+ "is_group": 1,
+ "root_type": "Expense",
+ "Cost of Goods Sold": {
+ "account_number": "5010",
+ "is_group": 0,
+ "root_type": "Expense",
+ "account_type": "Cost of Goods Sold"
+ }
+ },
"Operating Expenses": {
"account_number": "5100",
"is_group": 1,
diff --git a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
index c70092b765e..0cb61532058 100644
--- a/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+++ b/erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
@@ -1,7 +1,7 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"autoname": "format:Bank Statement Import on {creation}",
- "beta": 1,
"creation": "2019-08-04 14:16:08.318714",
"doctype": "DocType",
"editable_grid": 1,
@@ -226,11 +226,11 @@
],
"hide_toolbar": 1,
"links": [],
- "modified": "2025-06-11 02:23:22.159961",
+ "modified": "2026-05-31 00:41:11.251215",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Bank Statement Import",
- "naming_rule": "Expression",
+ "naming_rule": "Expression (old style)",
"owner": "Administrator",
"permissions": [
{
diff --git a/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py b/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py
index c7668a5a592..af353130446 100644
--- a/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py
+++ b/erpnext/accounts/doctype/bank_transaction/test_bank_transaction.py
@@ -47,7 +47,7 @@ class TestBankTransaction(ERPNextTestSuite):
from_date=bank_transaction.date,
to_date=utils.today(),
)
- self.assertTrue(linked_payments[0]["party"] == "Conrad Electronic")
+ self.assertEqual(linked_payments[0]["party"], "Conrad Electronic")
# This test validates a simple reconciliation leading to the clearance of the bank transaction and the payment
def test_reconcile(self):
@@ -70,10 +70,10 @@ class TestBankTransaction(ERPNextTestSuite):
unallocated_amount = frappe.db.get_value(
"Bank Transaction", bank_transaction.name, "unallocated_amount"
)
- self.assertTrue(unallocated_amount == 0)
+ self.assertEqual(unallocated_amount, 0)
clearance_date = frappe.db.get_value("Payment Entry", payment.name, "clearance_date")
- self.assertTrue(clearance_date is not None)
+ self.assertIsNot(clearance_date, None)
bank_transaction.reload()
bank_transaction.cancel()
@@ -178,9 +178,8 @@ class TestBankTransaction(ERPNextTestSuite):
self.assertEqual(
frappe.db.get_value("Bank Transaction", bank_transaction.name, "unallocated_amount"), 0
)
- self.assertTrue(
- frappe.db.get_value("Sales Invoice Payment", dict(parent=payment.name), "clearance_date")
- is not None
+ self.assertIsNot(
+ frappe.db.get_value("Sales Invoice Payment", dict(parent=payment.name), "clearance_date"), None
)
@if_lending_app_installed
diff --git a/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py b/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py
index dac04501e0f..29317cd5f4c 100644
--- a/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py
+++ b/erpnext/accounts/doctype/cost_center_allocation/test_cost_center_allocation.py
@@ -182,7 +182,7 @@ class TestCostCenterAllocation(ERPNextTestSuite):
self.assertTrue(gl_entries)
for gle in gl_entries:
- self.assertTrue(gle.cost_center in expected_values)
+ self.assertIn(gle.cost_center, expected_values)
self.assertEqual(gle.debit, 0)
self.assertEqual(gle.credit, expected_values[gle.cost_center])
diff --git a/erpnext/accounts/doctype/dunning/dunning.json b/erpnext/accounts/doctype/dunning/dunning.json
index e2173f37832..3bb0165f0a7 100644
--- a/erpnext/accounts/doctype/dunning/dunning.json
+++ b/erpnext/accounts/doctype/dunning/dunning.json
@@ -1,8 +1,8 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"allow_events_in_timeline": 1,
"autoname": "naming_series:",
- "beta": 1,
"creation": "2019-07-05 16:34:31.013238",
"doctype": "DocType",
"engine": "InnoDB",
@@ -400,7 +400,7 @@
],
"is_submittable": 1,
"links": [],
- "modified": "2024-11-26 13:46:07.760867",
+ "modified": "2026-05-30 23:18:04.712528",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Dunning",
@@ -449,9 +449,10 @@
"write": 1
}
],
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "ASC",
"states": [],
"title_field": "customer_name",
"track_changes": 1
-}
\ No newline at end of file
+}
diff --git a/erpnext/accounts/doctype/dunning_type/dunning_type.json b/erpnext/accounts/doctype/dunning_type/dunning_type.json
index bc5b3360d5b..0106ef69342 100644
--- a/erpnext/accounts/doctype/dunning_type/dunning_type.json
+++ b/erpnext/accounts/doctype/dunning_type/dunning_type.json
@@ -1,7 +1,7 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"allow_rename": 1,
- "beta": 1,
"creation": "2019-12-04 04:59:08.003664",
"doctype": "DocType",
"editable_grid": 1,
@@ -107,7 +107,7 @@
"link_fieldname": "dunning_type"
}
],
- "modified": "2024-03-27 13:08:19.584112",
+ "modified": "2026-05-30 23:18:20.740726",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Dunning Type",
@@ -151,8 +151,9 @@
"write": 1
}
],
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"track_changes": 1
-}
\ No newline at end of file
+}
diff --git a/erpnext/accounts/doctype/financial_report_template/financial_report_engine.py b/erpnext/accounts/doctype/financial_report_template/financial_report_engine.py
index af45c1f3f8e..47c7e2e6366 100644
--- a/erpnext/accounts/doctype/financial_report_template/financial_report_engine.py
+++ b/erpnext/accounts/doctype/financial_report_template/financial_report_engine.py
@@ -565,18 +565,19 @@ class FinancialQueryBuilder:
frappe.qb.from_(acb_table)
.select(
acb_table.account,
- (acb_table.debit - acb_table.credit).as_("balance"),
+ Sum(acb_table.debit - acb_table.credit).as_("balance"),
)
.where(acb_table.company == self.company)
.where(acb_table.account.isin(account_names))
.where(acb_table.period_closing_voucher == closing_voucher)
+ .groupby(acb_table.account)
)
query = self._apply_standard_filters(query, acb_table, "Account Closing Balance")
results = self._execute_with_permissions(query, "Account Closing Balance")
for row in results:
- closing_balances[row["account"]] = row["balance"]
+ closing_balances[row["account"]] = row["balance"] or 0.0
return closing_balances
diff --git a/erpnext/accounts/doctype/financial_report_template/financial_report_validation.py b/erpnext/accounts/doctype/financial_report_template/financial_report_validation.py
index 1a1a7cdf3be..996d05b5658 100644
--- a/erpnext/accounts/doctype/financial_report_template/financial_report_validation.py
+++ b/erpnext/accounts/doctype/financial_report_template/financial_report_validation.py
@@ -361,7 +361,7 @@ class CalculationFormulaValidator(Validator):
"sqrt": lambda x: x**0.5,
"pow": pow,
"ceil": lambda x: int(x) + (1 if x % 1 else 0),
- "floor": lambda x: int(x),
+ "floor": int,
}
)
diff --git a/erpnext/accounts/doctype/financial_report_template/test_financial_report_engine.py b/erpnext/accounts/doctype/financial_report_template/test_financial_report_engine.py
index 73952f11763..700b163d41c 100644
--- a/erpnext/accounts/doctype/financial_report_template/test_financial_report_engine.py
+++ b/erpnext/accounts/doctype/financial_report_template/test_financial_report_engine.py
@@ -16,6 +16,7 @@ from erpnext.accounts.doctype.financial_report_template.test_financial_report_te
)
from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry
from erpnext.accounts.utils import get_currency_precision, get_fiscal_year
+from erpnext.tests.utils import change_settings
class TestDependencyResolver(FinancialReportTemplateTestCase):
@@ -1950,6 +1951,104 @@ class TestFinancialQueryBuilder(FinancialReportTemplateTestCase):
jv_2023.cancel()
+ @change_settings("Accounts Settings", {"use_legacy_controller_for_pcv": 1})
+ def test_opening_balance_sums_acb_rows_across_dimensions(self):
+ """
+ Account Closing Balance stores one row per (account, cost_center,
+ project, finance_book). The closing-balance fetch must sum all rows.
+ """
+ company = "_Test Company"
+ cash_account = "_Test Cash - _TC"
+ sales_account = "Sales - _TC"
+ cc_1 = "_Test Cost Center - _TC"
+ cc_2 = "_Test Cost Center 2 - _TC"
+ docs = []
+
+ try:
+ jv_2023_cc1 = make_journal_entry(
+ account1=cash_account,
+ account2=sales_account,
+ amount=3000,
+ posting_date="2023-06-15",
+ cost_center=cc_1,
+ company=company,
+ submit=True,
+ )
+ docs.append(jv_2023_cc1)
+ jv_2023_cc2 = make_journal_entry(
+ account1=cash_account,
+ account2=sales_account,
+ amount=2000,
+ posting_date="2023-06-15",
+ cost_center=cc_2,
+ company=company,
+ submit=True,
+ )
+ docs.append(jv_2023_cc2)
+
+ fy_2023 = get_fiscal_year("2023-06-15", company=company)
+
+ pcv = frappe.get_doc(
+ {
+ "doctype": "Period Closing Voucher",
+ "transaction_date": "2023-12-31",
+ "period_start_date": fy_2023[1],
+ "period_end_date": fy_2023[2],
+ "company": company,
+ "fiscal_year": fy_2023[0],
+ "cost_center": cc_1,
+ "closing_account_head": "Deferred Revenue - _TC",
+ "remarks": "Test multi-dim PCV",
+ }
+ )
+ pcv.insert()
+ pcv.submit()
+ docs.append(pcv)
+
+ jv_2024 = make_journal_entry(
+ account1=cash_account,
+ account2=sales_account,
+ amount=100,
+ posting_date="2024-01-15",
+ cost_center=cc_1,
+ company=company,
+ submit=True,
+ )
+ docs.append(jv_2024)
+
+ filters = {
+ "company": company,
+ "from_fiscal_year": "2024",
+ "to_fiscal_year": "2024",
+ "period_start_date": "2024-01-01",
+ "period_end_date": "2024-03-31",
+ "filter_based_on": "Date Range",
+ "periodicity": "Monthly",
+ "ignore_closing_entries": True,
+ }
+ periods = [
+ {"key": "2024_jan", "from_date": "2024-01-01", "to_date": "2024-01-31"},
+ {"key": "2024_feb", "from_date": "2024-02-01", "to_date": "2024-02-29"},
+ {"key": "2024_mar", "from_date": "2024-03-01", "to_date": "2024-03-31"},
+ ]
+
+ query_builder = FinancialQueryBuilder(filters, periods)
+ accounts = [
+ frappe._dict({"name": cash_account, "account_name": "Cash", "account_number": "1001"}),
+ ]
+
+ balances_data = query_builder.fetch_account_balances(accounts)
+ cash_data = balances_data.get(cash_account)
+ self.assertIsNotNone(cash_data, "Cash account must appear in results")
+
+ jan_cash = cash_data.get_period("2024_jan")
+ self.assertEqual(jan_cash.opening, 5000.0)
+ self.assertEqual(jan_cash.movement, 100.0)
+ self.assertEqual(jan_cash.closing, 5100.0)
+
+ finally:
+ self.cancel_docs(docs)
+
def test_opening_entries_roll_into_opening_after_period_closing(self):
"""
Sequence:
diff --git a/erpnext/accounts/doctype/financial_report_template/test_financial_report_template.py b/erpnext/accounts/doctype/financial_report_template/test_financial_report_template.py
index 9372c503d12..e3ca33a747e 100644
--- a/erpnext/accounts/doctype/financial_report_template/test_financial_report_template.py
+++ b/erpnext/accounts/doctype/financial_report_template/test_financial_report_template.py
@@ -9,6 +9,14 @@ from erpnext.tests.utils import ERPNextTestSuite
class FinancialReportTemplateTestCase(ERPNextTestSuite):
"""Utility class with common setup and helper methods for all test classes"""
+ def cancel_docs(self, docs):
+ """Cancel submitted docs in reverse creation order to avoid dependency issues."""
+ for doc in reversed(docs):
+ if doc:
+ doc.reload()
+ if doc.docstatus == 1:
+ doc.cancel()
+
def setUp(self):
"""Set up test data"""
self.create_test_template()
diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.js b/erpnext/accounts/doctype/journal_entry/journal_entry.js
index 62799ab820d..b1dc0c477b7 100644
--- a/erpnext/accounts/doctype/journal_entry/journal_entry.js
+++ b/erpnext/accounts/doctype/journal_entry/journal_entry.js
@@ -433,15 +433,17 @@ erpnext.accounts.JournalEntry = class JournalEntry extends frappe.ui.form.Contro
accounts_add(doc, cdt, cdn) {
var row = frappe.get_doc(cdt, cdn);
- row.exchange_rate = 1;
- $.each(doc.accounts, function (i, d) {
- if (d.account && d.party && d.party_type) {
- row.account = d.account;
- row.party = d.party;
- row.party_type = d.party_type;
- row.exchange_rate = d.exchange_rate;
- }
- });
+ if (!row.exchange_rate) row.exchange_rate = 1;
+ if (!row.account) {
+ $.each(doc.accounts, function (i, d) {
+ if (d.account && d.party && d.party_type) {
+ row.account = d.account;
+ row.party = d.party;
+ row.party_type = d.party_type;
+ row.exchange_rate = d.exchange_rate;
+ }
+ });
+ }
// set difference
if (doc.difference) {
diff --git a/erpnext/accounts/doctype/journal_entry/test_journal_entry.py b/erpnext/accounts/doctype/journal_entry/test_journal_entry.py
index 581a0866721..b823a44391d 100644
--- a/erpnext/accounts/doctype/journal_entry/test_journal_entry.py
+++ b/erpnext/accounts/doctype/journal_entry/test_journal_entry.py
@@ -89,7 +89,7 @@ class TestJournalEntry(ERPNextTestSuite):
)
payment_against_order = base_jv.get("accounts")[0].get(dr_or_cr)
- self.assertTrue(flt(advance_paid[0][0]) == flt(payment_against_order))
+ self.assertEqual(flt(advance_paid[0][0]), flt(payment_against_order))
def cancel_against_voucher_testcase(self, test_voucher):
if test_voucher.doctype == "Journal Entry":
diff --git a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
index 535b7384b4d..1d7115351fa 100644
--- a/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+++ b/erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
@@ -1,7 +1,7 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"allow_copy": 1,
- "beta": 1,
"creation": "2017-08-29 02:22:54.947711",
"doctype": "DocType",
"editable_grid": 1,
@@ -90,7 +90,7 @@
"hide_toolbar": 1,
"issingle": 1,
"links": [],
- "modified": "2026-03-31 01:47:20.360352",
+ "modified": "2026-05-30 23:18:48.691227",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Opening Invoice Creation Tool",
diff --git a/erpnext/accounts/doctype/party_account/party_account.json b/erpnext/accounts/doctype/party_account/party_account.json
index fdb0bc3d23b..5ad2697b201 100644
--- a/erpnext/accounts/doctype/party_account/party_account.json
+++ b/erpnext/accounts/doctype/party_account/party_account.json
@@ -29,6 +29,7 @@
{
"fieldname": "advance_account",
"fieldtype": "Link",
+ "in_list_view": 1,
"label": "Advance Account",
"options": "Account"
}
@@ -36,14 +37,15 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2024-03-27 13:10:08.489183",
+ "modified": "2026-05-27 14:19:00.888437",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Party Account",
"owner": "Administrator",
"permissions": [],
"quick_entry": 1,
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": []
-}
\ No newline at end of file
+}
diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.js b/erpnext/accounts/doctype/payment_entry/payment_entry.js
index 33f0dee0702..8d5e6436d89 100644
--- a/erpnext/accounts/doctype/payment_entry/payment_entry.js
+++ b/erpnext/accounts/doctype/payment_entry/payment_entry.js
@@ -1726,6 +1726,35 @@ frappe.ui.form.on("Payment Entry", {
},
});
},
+
+ before_cancel: function (frm) {
+ return new Promise((resolve, reject) => {
+ frappe.call({
+ method: "erpnext.accounts.doctype.payment_entry.payment_entry.get_linked_bank_transactions",
+ args: { payment_entry: frm.doc.name },
+ callback: function (r) {
+ const linked = r.message || [];
+ if (!linked.length) {
+ resolve();
+ return;
+ }
+ const bt_links = linked
+ .map((name) => frappe.utils.get_form_link("Bank Transaction", name, true))
+ .join(", ");
+ frappe.confirm(
+ __(
+ "This Payment Entry is reconciled with {0}. Cancelling will automatically unreconcile it. Do you want to proceed?",
+ [bt_links]
+ ),
+ () => resolve(),
+ () => reject(),
+ __("Yes"),
+ __("No")
+ );
+ },
+ });
+ });
+ },
});
frappe.ui.form.on("Payment Entry Reference", {
diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py
index 69a9ccf817c..721ad96a8be 100644
--- a/erpnext/accounts/doctype/payment_entry/payment_entry.py
+++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py
@@ -3314,3 +3314,16 @@ def make_payment_order(source_name: str, target_doc: str | Document | None = Non
@erpnext.allow_regional
def add_regional_gl_entries(gl_entries, doc):
return
+
+
+@frappe.whitelist()
+def get_linked_bank_transactions(payment_entry: str) -> list:
+ frappe.has_permission("Payment Entry", ptype="read", doc=payment_entry, throw=True)
+ return frappe.get_all(
+ "Bank Transaction Payments",
+ filters={
+ "payment_document": "Payment Entry",
+ "payment_entry": payment_entry,
+ },
+ pluck="parent",
+ )
diff --git a/erpnext/accounts/doctype/payment_entry/test_payment_entry.py b/erpnext/accounts/doctype/payment_entry/test_payment_entry.py
index 8923a74e2b4..b566b625934 100644
--- a/erpnext/accounts/doctype/payment_entry/test_payment_entry.py
+++ b/erpnext/accounts/doctype/payment_entry/test_payment_entry.py
@@ -1119,7 +1119,7 @@ class TestPaymentEntry(ERPNextTestSuite):
with self.assertRaises(frappe.ValidationError) as err:
pe.save()
- self.assertTrue("is on hold" in str(err.exception).lower())
+ self.assertIn("is on hold", str(err.exception).lower())
def test_payment_entry_for_employee(self):
employee = make_employee("test_payment_entry@salary.com", company="_Test Company")
@@ -2035,8 +2035,8 @@ class TestPaymentEntry(ERPNextTestSuite):
# check cancellation of payment entry and journal entry
pe.cancel()
- self.assertTrue(pe.docstatus == 2)
- self.assertTrue(frappe.db.get_value("Journal Entry", {"name": jv[0]}, "docstatus") == 2)
+ self.assertEqual(pe.docstatus, 2)
+ self.assertEqual(frappe.db.get_value("Journal Entry", {"name": jv[0]}, "docstatus"), 2)
# check deletion of payment entry and journal entry
pe.delete()
diff --git a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py
index 18501c0fefd..b6ac01e3074 100644
--- a/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py
+++ b/erpnext/accounts/doctype/payment_reconciliation/test_payment_reconciliation.py
@@ -3,11 +3,9 @@
import frappe
-from frappe import qb
from frappe.utils import add_days, add_years, flt, getdate, nowdate, today
from frappe.utils.data import getdate as convert_to_date
-from erpnext import get_default_cost_center
from erpnext.accounts.doctype.payment_entry.payment_entry import get_payment_entry
from erpnext.accounts.doctype.payment_entry.test_payment_entry import create_payment_entry
from erpnext.accounts.doctype.purchase_invoice.test_purchase_invoice import make_purchase_invoice
@@ -15,7 +13,6 @@ from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_sal
from erpnext.accounts.party import get_party_account
from erpnext.accounts.utils import get_fiscal_year
from erpnext.buying.doctype.purchase_order.test_purchase_order import create_purchase_order
-from erpnext.stock.doctype.item.test_item import create_item
from erpnext.tests.utils import ERPNextTestSuite
diff --git a/erpnext/accounts/doctype/payment_request/payment_request.py b/erpnext/accounts/doctype/payment_request/payment_request.py
index 7c9be8dbe07..537ef4c7644 100644
--- a/erpnext/accounts/doctype/payment_request/payment_request.py
+++ b/erpnext/accounts/doctype/payment_request/payment_request.py
@@ -1293,11 +1293,16 @@ def get_open_payment_requests_query(
)
return [
- (
- pr.name,
- _("Grand Total: {0}").format(pr.grand_total),
- _("Outstanding Amount: {0}").format(pr.outstanding_amount),
- )
+ {
+ "value": pr.name,
+ "description": ", ".join(
+ [
+ _("Grand Total: {0}").format(pr.grand_total),
+ _("Outstanding Amount: {0}").format(pr.outstanding_amount),
+ ]
+ ),
+ "description_html": True,
+ }
for pr in open_payment_requests
]
diff --git a/erpnext/accounts/doctype/pos_invoice/pos_invoice.json b/erpnext/accounts/doctype/pos_invoice/pos_invoice.json
index 7fdfde944f1..14c5153f0b9 100644
--- a/erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+++ b/erpnext/accounts/doctype/pos_invoice/pos_invoice.json
@@ -26,8 +26,6 @@
"due_date",
"amended_from",
"return_against",
- "section_break_clmv",
- "title",
"accounting_dimensions_section",
"project",
"dimension_col_break",
@@ -172,6 +170,7 @@
"is_discounted",
"col_break23",
"status",
+ "title",
"more_info",
"debit_to",
"party_account_currency",
@@ -1625,10 +1624,6 @@
"fieldtype": "Section Break",
"label": "Auto Repeat"
},
- {
- "fieldname": "section_break_clmv",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -1641,7 +1636,7 @@
"icon": "fa fa-file-text",
"is_submittable": 1,
"links": [],
- "modified": "2026-05-01 02:37:30.580568",
+ "modified": "2026-05-28 12:22:50.253090",
"modified_by": "Administrator",
"module": "Accounts",
"name": "POS Invoice",
diff --git a/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py b/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py
index 5c6d03d7adb..b7f45177456 100644
--- a/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py
+++ b/erpnext/accounts/doctype/pos_invoice_merge_log/test_pos_invoice_merge_log.py
@@ -59,7 +59,7 @@ class TestPOSInvoiceMergeLog(ERPNextTestSuite):
pos_inv3.load_from_db()
self.assertTrue(frappe.db.exists("Sales Invoice", pos_inv3.consolidated_invoice))
- self.assertFalse(pos_inv.consolidated_invoice == pos_inv3.consolidated_invoice)
+ self.assertNotEqual(pos_inv.consolidated_invoice, pos_inv3.consolidated_invoice)
def test_consolidated_credit_note_creation(self):
pos_inv = create_pos_invoice(rate=300, do_not_submit=1)
@@ -454,12 +454,12 @@ class TestPOSInvoiceMergeLog(ERPNextTestSuite):
pos_inv2.load_from_db()
self.assertTrue(frappe.db.exists("Sales Invoice", pos_inv2.consolidated_invoice))
- self.assertFalse(pos_inv.consolidated_invoice == pos_inv3.consolidated_invoice)
+ self.assertNotEqual(pos_inv.consolidated_invoice, pos_inv3.consolidated_invoice)
pos_inv3.load_from_db()
self.assertTrue(frappe.db.exists("Sales Invoice", pos_inv3.consolidated_invoice))
- self.assertTrue(pos_inv2.consolidated_invoice == pos_inv3.consolidated_invoice)
+ self.assertEqual(pos_inv2.consolidated_invoice, pos_inv3.consolidated_invoice)
def test_company_in_pos_invoice_merge_log(self):
"""
diff --git a/erpnext/accounts/doctype/pos_profile/pos_profile.py b/erpnext/accounts/doctype/pos_profile/pos_profile.py
index 7a51edfb169..39a7694850a 100644
--- a/erpnext/accounts/doctype/pos_profile/pos_profile.py
+++ b/erpnext/accounts/doctype/pos_profile/pos_profile.py
@@ -209,15 +209,14 @@ class POSProfile(Document):
def set_defaults(self, include_current_pos=True):
frappe.defaults.clear_default("is_pos")
- if not include_current_pos:
- condition = " where pfu.name != '%s' and pfu.default = 1 " % self.name.replace("'", "'")
- else:
- condition = " where pfu.default = 1 "
+ pfu = frappe.qb.DocType("POS Profile User")
- pos_view_users = frappe.db.sql_list(
- f"""select pfu.user
- from `tabPOS Profile User` as pfu {condition}"""
- )
+ query = frappe.qb.from_(pfu).select(pfu.user).where(pfu.default == 1)
+
+ if not include_current_pos:
+ query = query.where(pfu.name != self.name)
+
+ pos_view_users = query.run(as_list=1, pluck=True)
for user in pos_view_users:
if user:
diff --git a/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json b/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
index 08c7d8247ac..fabb2e32164 100644
--- a/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+++ b/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
@@ -151,13 +151,13 @@
"label": "Default Advance Account",
"mandatory_depends_on": "doc.party_type",
"options": "Account",
- "reqd": 1
+ "reqd": 0
}
],
"index_web_pages_for_search": 1,
"is_submittable": 1,
"links": [],
- "modified": "2025-01-08 08:22:14.798085",
+ "modified": "2026-05-16 11:43:12.758685",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Process Payment Reconciliation",
diff --git a/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py b/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py
index 4f6741f17cd..91eaf67d083 100644
--- a/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py
+++ b/erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py
@@ -23,7 +23,7 @@ class ProcessPaymentReconciliation(Document):
bank_cash_account: DF.Link | None
company: DF.Link
cost_center: DF.Link | None
- default_advance_account: DF.Link
+ default_advance_account: DF.Link | None
error_log: DF.LongText | None
from_invoice_date: DF.Date | None
from_payment_date: DF.Date | None
@@ -218,10 +218,7 @@ def trigger_reconciliation_for_queued_docs():
fields = ["company", "party_type", "party", "receivable_payable_account", "default_advance_account"]
def get_filters_as_tuple(fields, doc):
- filters = ()
- for x in fields:
- filters += tuple(doc.get(x))
- return filters
+ return tuple(doc.get(x) or "" for x in fields)
for x in all_queued:
doc = frappe.get_doc("Process Payment Reconciliation", x)
diff --git a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
index a06a16f156c..0a30b6564b5 100644
--- a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+++ b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
@@ -1,5 +1,6 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"autoname": "format:Process-PCV-{###}",
"creation": "2025-09-25 15:44:03.534699",
"doctype": "DocType",
@@ -7,11 +8,13 @@
"field_order": [
"parent_pcv",
"status",
+ "amended_from",
+ "section_normal_balances",
"p_l_closing_balance",
- "normal_balances",
"bs_closing_balance",
- "z_opening_balances",
- "amended_from"
+ "normal_balances",
+ "section_opening_balances",
+ "z_opening_balances"
],
"fields": [
{
@@ -64,17 +67,27 @@
"fieldname": "bs_closing_balance",
"fieldtype": "JSON",
"label": "Balance Sheet Closing Balance"
+ },
+ {
+ "fieldname": "section_normal_balances",
+ "fieldtype": "Tab Break",
+ "label": "Normal Balances"
+ },
+ {
+ "fieldname": "section_opening_balances",
+ "fieldtype": "Tab Break",
+ "label": "Opening Balances"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"is_submittable": 1,
"links": [],
- "modified": "2025-11-05 11:40:24.996403",
+ "modified": "2026-06-01 12:16:37.374412",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Process Period Closing Voucher",
- "naming_rule": "Expression",
+ "naming_rule": "Expression (old style)",
"owner": "Administrator",
"permissions": [
{
diff --git a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py
index e9600b0cd3c..296c57bdf0c 100644
--- a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py
+++ b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.py
@@ -36,8 +36,8 @@ class ProcessPeriodClosingVoucher(Document):
parent_pcv: DF.Link
status: DF.Literal["Queued", "Running", "Paused", "Completed", "Cancelled"]
z_opening_balances: DF.Table[ProcessPeriodClosingVoucherDetail]
-
# end: auto-generated types
+
def on_discard(self):
self.db_set("status", "Cancelled")
@@ -562,6 +562,9 @@ def process_individual_date(docname: str, date, report_type, parentfield):
if parentfield == "z_opening_balances":
query = query.where(gle.is_opening.eq("Yes"))
+ else:
+ # Keep balances aligned with legacy PCV logic (non-opening transactions only)
+ query = query.where(gle.is_opening.eq("No"))
query = query.groupby(gle.account)
for dim in dimensions:
diff --git a/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher_list.js b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher_list.js
new file mode 100644
index 00000000000..4b117b8fbcf
--- /dev/null
+++ b/erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher_list.js
@@ -0,0 +1,17 @@
+// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
+// License: GNU General Public License v3. See license.txt
+
+// render
+frappe.listview_settings["Process Period Closing Voucher"] = {
+ add_fields: ["status"],
+ get_indicator: function (doc) {
+ const status_colors = {
+ Queued: "blue",
+ Running: "orange",
+ Paused: "gray",
+ Completed: "green",
+ Cancelled: "red",
+ };
+ return [__(doc.status), status_colors[doc.status], "status,=," + doc.status];
+ },
+};
diff --git a/erpnext/accounts/doctype/process_period_closing_voucher/test_process_period_closing_voucher.py b/erpnext/accounts/doctype/process_period_closing_voucher/test_process_period_closing_voucher.py
index e695b11bcb5..f34c1dbedfe 100644
--- a/erpnext/accounts/doctype/process_period_closing_voucher/test_process_period_closing_voucher.py
+++ b/erpnext/accounts/doctype/process_period_closing_voucher/test_process_period_closing_voucher.py
@@ -1,4 +1,173 @@
# Copyright (c) 2025, Frappe Technologies Pvt. Ltd. and Contributors
# See license.txt
-# import frappe
+import frappe
+from frappe.utils import today
+
+from erpnext.accounts.doctype.journal_entry.test_journal_entry import make_journal_entry
+from erpnext.accounts.doctype.process_period_closing_voucher.process_period_closing_voucher import (
+ process_individual_date,
+)
+from erpnext.accounts.utils import get_fiscal_year
+from erpnext.tests.utils import ERPNextTestSuite
+
+
+class TestProcessPeriodClosingVoucher(ERPNextTestSuite):
+ def setUp(self):
+ frappe.db.set_single_value("Accounts Settings", "use_legacy_controller_for_pcv", 0)
+ self.company = "_Test Company"
+
+ def make_period_closing_voucher(self, posting_date, submit=True):
+ fy = get_fiscal_year(posting_date, company="_Test Company")
+ pcv = frappe.get_doc(
+ {
+ "doctype": "Period Closing Voucher",
+ "transaction_date": posting_date or today(),
+ "period_start_date": fy[1],
+ "period_end_date": fy[2],
+ "company": self.company,
+ "fiscal_year": fy[0],
+ "closing_account_head": "Retained Earnings - _TC",
+ "remarks": "closing",
+ }
+ )
+ pcv.insert()
+ if submit:
+ pcv.submit()
+
+ return pcv
+
+ def make_process_pcv(self):
+ self.pcv = self.make_period_closing_voucher(posting_date=today(), submit=False)
+ ppcv = frappe.get_doc(
+ {
+ "doctype": "Process Period Closing Voucher",
+ "parent_pcv": self.pcv.name,
+ }
+ )
+ ppcv.save()
+ return ppcv
+
+ def set_processing_date_status(self, date, ppcv, rpt_type, parentfield, status):
+ frappe.db.set_value(
+ "Process Period Closing Voucher Detail",
+ {"processing_date": date, "parent": ppcv, "report_type": rpt_type, "parentfield": parentfield},
+ "status",
+ status,
+ )
+
+ def get_processing_date_closing_balance(self, date, ppcv, rpt_type, parentfield):
+ return frappe.db.get_value(
+ "Process Period Closing Voucher Detail",
+ {"processing_date": date, "parent": ppcv, "report_type": rpt_type, "parentfield": parentfield},
+ "closing_balance",
+ )
+
+ def test_opening_balance_double_counting(self):
+ ppcv = self.make_process_pcv()
+ self.assertEqual(self.pcv.is_first_period_closing_voucher(), True)
+ opening_jv = make_journal_entry(
+ posting_date=today(),
+ amount=10,
+ account1="Cash - _TC",
+ account2="Debtors - _TC",
+ company=self.company,
+ save=False,
+ )
+ opening_jv.accounts[1].party_type = "Customer"
+ opening_jv.accounts[1].party = "_Test Customer"
+ opening_jv.is_opening = "Yes"
+ opening_jv.save()
+ opening_jv.submit()
+
+ jv = make_journal_entry(
+ posting_date=today(),
+ amount=120,
+ account1="Debtors - _TC",
+ account2="Sales - _TC",
+ company=self.company,
+ save=False,
+ )
+ jv.accounts[0].party_type = "Customer"
+ jv.accounts[0].party = "_Test Customer"
+ jv.save()
+ jv.submit()
+
+ # P&L balance
+ parentfield = "normal_balances"
+ rpt_type = "Profit and Loss"
+ # status has to be set to 'Running' for logic to run
+ self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running")
+ process_individual_date(ppcv.name, today(), rpt_type, parentfield)
+ bal = frappe.parse_json(
+ self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield)
+ )
+ self.assertEqual(len(bal), 1)
+ expected_pl = {
+ "account": "Sales - _TC",
+ "cost_center": "_Test Cost Center - _TC",
+ "debit": 0.0,
+ "credit": 120.0,
+ "debit_in_account_currency": 0.0,
+ "credit_in_account_currency": 120.0,
+ }
+ for k in expected_pl.keys():
+ with self.subTest(k):
+ self.assertEqual(expected_pl[k], bal[0][k])
+
+ # Balance sheet balance
+ rpt_type = "Balance Sheet"
+ self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running")
+ process_individual_date(ppcv.name, today(), rpt_type, parentfield)
+ bal = frappe.parse_json(
+ self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield)
+ )
+ self.assertEqual(len(bal), 1)
+ expected_bs = {
+ "account": "Debtors - _TC",
+ "cost_center": "_Test Cost Center - _TC",
+ "debit": 120.0,
+ "credit": 0.0,
+ "debit_in_account_currency": 120.0,
+ "credit_in_account_currency": 0.0,
+ }
+ for k in expected_bs.keys():
+ with self.subTest(k):
+ self.assertEqual(expected_bs[k], bal[0][k])
+
+ # Opening balance
+ parentfield = "z_opening_balances"
+ rpt_type = "Balance Sheet"
+ self.set_processing_date_status(today(), ppcv.name, rpt_type, parentfield, "Running")
+ process_individual_date(ppcv.name, today(), rpt_type, parentfield)
+ bal = frappe.parse_json(
+ self.get_processing_date_closing_balance(today(), ppcv.name, rpt_type, parentfield)
+ )
+ self.assertEqual(len(bal), 2)
+ opening_cash = next(x for x in bal if x["account"] == "Cash - _TC")
+ expected_opening_cash = {
+ "account": "Cash - _TC",
+ "cost_center": "_Test Cost Center - _TC",
+ "debit": 10.0,
+ "credit": 0.0,
+ "debit_in_account_currency": 10.0,
+ "credit_in_account_currency": 0.0,
+ "account_currency": "INR",
+ }
+ for k in expected_opening_cash.keys():
+ with self.subTest(k):
+ self.assertEqual(expected_opening_cash[k], opening_cash[k])
+
+ opening_debtors = next(x for x in bal if x["account"] == "Debtors - _TC")
+ expected_opening_debtors = {
+ "account": "Debtors - _TC",
+ "cost_center": "_Test Cost Center - _TC",
+ "debit": 0.0,
+ "credit": 10.0,
+ "debit_in_account_currency": 0.0,
+ "credit_in_account_currency": 10.0,
+ "account_currency": "INR",
+ }
+ for k in expected_opening_debtors.keys():
+ with self.subTest(k):
+ self.assertEqual(expected_opening_debtors[k], opening_debtors[k])
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
index 51aaa4f60cb..f5ad73eae0f 100644
--- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -28,8 +28,6 @@
"update_billed_amount_in_purchase_receipt",
"apply_tds",
"amended_from",
- "section_break_ecfi",
- "title",
"supplier_invoice_details",
"bill_no",
"column_break_15",
@@ -202,6 +200,7 @@
"hold_comment",
"additional_info_section",
"is_internal_supplier",
+ "title",
"represents_company",
"supplier_group",
"sender",
@@ -1684,10 +1683,6 @@
"fieldname": "automation_section",
"fieldtype": "Section Break",
"label": "Automation"
- },
- {
- "fieldname": "section_break_ecfi",
- "fieldtype": "Section Break"
}
],
"grid_page_length": 50,
@@ -1695,7 +1690,7 @@
"idx": 204,
"is_submittable": 1,
"links": [],
- "modified": "2026-05-04 10:10:11.717131",
+ "modified": "2026-05-28 12:36:55.215363",
"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 2bd50bdfbed..6ead96438a3 100644
--- a/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
+++ b/erpnext/accounts/doctype/purchase_invoice/test_purchase_invoice.py
@@ -2077,7 +2077,7 @@ class TestPurchaseInvoice(ERPNextTestSuite, StockTestMixin):
return_pi = make_return_doc(pi.doctype, pi.name)
return_pi.save().submit()
- self.assertTrue(return_pi.docstatus == 1)
+ self.assertEqual(return_pi.docstatus, 1)
def test_advance_entries_as_asset(self):
from erpnext.accounts.doctype.payment_entry.test_payment_entry import create_payment_entry
diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.json b/erpnext/accounts/doctype/sales_invoice/sales_invoice.json
index 6c4d98a215f..129789479df 100644
--- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.json
@@ -33,8 +33,6 @@
"is_created_using_pos",
"pos_closing_entry",
"has_subcontracted",
- "section_break_sgnf",
- "title",
"accounting_dimensions_section",
"cost_center",
"dimension_col_break",
@@ -232,6 +230,7 @@
"status",
"remarks",
"customer_group",
+ "title",
"column_break_imbx",
"is_internal_customer",
"represents_company",
@@ -2333,10 +2332,6 @@
"fieldtype": "Section Break",
"label": "Automation"
},
- {
- "fieldname": "section_break_sgnf",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -2357,7 +2352,7 @@
"link_fieldname": "consolidated_invoice"
}
],
- "modified": "2026-05-21 17:31:11.190958",
+ "modified": "2026-05-28 12:15:12.486443",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Sales Invoice",
diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
index 93ec4f4d875..5d6ec41c856 100644
--- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
+++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py
@@ -692,7 +692,7 @@ class SalesInvoice(SellingController):
POSService(self).clear_unallocated_mode_of_payments()
def get_company_abbr(self):
- return frappe.db.sql("select abbr from tabCompany where name=%s", self.company)[0][0]
+ return frappe.db.get_value("Company", self.company, "abbr")
def validate_debit_to_acc(self):
if not self.debit_to:
@@ -822,12 +822,20 @@ class SalesInvoice(SellingController):
def validate_proj_cust(self):
"""check for does customer belong to same project as entered.."""
if self.project and self.customer:
- res = frappe.db.sql(
- """select name from `tabProject`
- where name = %s and (customer = %s or customer is null or customer = '')""",
- (self.project, self.customer),
+ Project = frappe.qb.DocType("Project")
+
+ query = (
+ frappe.qb.from_(Project)
+ .select(Project.name)
+ .where(Project.name == self.project)
+ .where(
+ (Project.customer == self.customer)
+ | (Project.customer.isnull())
+ | (Project.customer == "")
+ )
)
- if not res:
+
+ if not query.run():
throw(_("Customer {0} does not belong to project {1}").format(self.customer, self.project))
def validate_warehouse(self):
@@ -1013,15 +1021,24 @@ class SalesInvoice(SellingController):
def update_billing_status_in_dn(self, update_modified=True):
if self.is_return and not self.update_billed_amount_in_delivery_note:
return
+
updated_delivery_notes = []
+
+ SalesInvoiceItem = frappe.qb.DocType("Sales Invoice Item")
+ from frappe.query_builder.functions import Coalesce, Sum
+
for d in self.get("items"):
if d.dn_detail:
- billed_amt = frappe.db.sql(
- """select sum(amount) from `tabSales Invoice Item`
- where dn_detail=%s and docstatus=1""",
- d.dn_detail,
+ query = (
+ frappe.qb.from_(SalesInvoiceItem)
+ .select(Coalesce(Sum(SalesInvoiceItem.amount), 0))
+ .where(SalesInvoiceItem.dn_detail == d.dn_detail)
+ .where(SalesInvoiceItem.docstatus == 1)
)
- billed_amt = billed_amt and billed_amt[0][0] or 0
+
+ res = query.run()
+ billed_amt = res[0][0] if res else 0
+
frappe.db.set_value(
"Delivery Note Item",
d.dn_detail,
@@ -1166,27 +1183,28 @@ def check_if_return_invoice_linked_with_payment_entry(self):
else:
invoice = self.name
- payment_entries = frappe.db.sql_list(
- """
- SELECT
- t1.name
- FROM
- `tabPayment Entry` t1, `tabPayment Entry Reference` t2
- WHERE
- t1.name = t2.parent
- and t1.docstatus = 1
- and t2.reference_name = %s
- and t2.allocated_amount < 0
- """,
- invoice,
+ PaymentEntry = frappe.qb.DocType("Payment Entry")
+ PaymentEntryReference = frappe.qb.DocType("Payment Entry Reference")
+
+ query = (
+ frappe.qb.from_(PaymentEntry)
+ .join(PaymentEntryReference)
+ .on(PaymentEntry.name == PaymentEntryReference.parent)
+ .select(PaymentEntry.name)
+ .where(PaymentEntry.docstatus == 1)
+ .where(PaymentEntryReference.reference_name == invoice)
+ .where(PaymentEntryReference.allocated_amount < 0)
)
+ payment_entries = query.run(pluck=True)
+
links_to_pe = []
if payment_entries:
for payment in payment_entries:
payment_entry = frappe.get_doc("Payment Entry", payment)
if len(payment_entry.references) > 1:
links_to_pe.append(payment_entry.name)
+
if links_to_pe:
payment_entries_link = [
get_link_to_form("Payment Entry", name, label=name) for name in links_to_pe
diff --git a/erpnext/accounts/doctype/sales_invoice/services/pos.py b/erpnext/accounts/doctype/sales_invoice/services/pos.py
index 2a40eee9292..e72a1c4e6fc 100644
--- a/erpnext/accounts/doctype/sales_invoice/services/pos.py
+++ b/erpnext/accounts/doctype/sales_invoice/services/pos.py
@@ -92,7 +92,8 @@ class POSService:
doc.set("selling_price_list", selling_price_list)
if not for_validate:
- doc.update_stock = cint(pos.get("update_stock"))
+ dn_flag = any(d.get("dn_detail") for d in doc.get("items"))
+ doc.update_stock = 0 if dn_flag else cint(pos.get("update_stock"))
for item in doc.get("items"):
if item.get("item_code"):
@@ -257,10 +258,7 @@ class POSService:
def clear_unallocated_mode_of_payments(self) -> None:
doc = self.doc
doc.set("payments", doc.get("payments", {"amount": ["not in", [0, None, ""]]}))
- frappe.db.sql(
- """delete from `tabSales Invoice Payment` where parent = %s and amount = 0""",
- doc.name,
- )
+ frappe.db.delete("Sales Invoice Payment", filters={"parent": doc.name, "amount": 0})
def allow_write_off_only_on_pos(self) -> None:
if not self.doc.is_pos and self.doc.write_off_account:
@@ -278,19 +276,29 @@ class POSService:
def get_warehouse(self) -> str | None:
doc = self.doc
- user_pos_profile = frappe.db.sql(
- """select name, warehouse from `tabPOS Profile`
- where ifnull(user,'') = %s and company = %s""",
- (frappe.session["user"], doc.company),
+ POSProfile = frappe.qb.DocType("POS Profile")
+
+ user_query = (
+ frappe.qb.from_(POSProfile)
+ .select(POSProfile.name, POSProfile.warehouse)
+ .where(POSProfile.company == doc.company)
+ .where(
+ (POSProfile.user == frappe.session["user"])
+ | ((POSProfile.user.isnull() | (POSProfile.user == "")) & (frappe.session["user"] == ""))
+ )
)
+ user_pos_profile = user_query.run()
warehouse = user_pos_profile[0][1] if user_pos_profile else None
if not warehouse:
- global_pos_profile = frappe.db.sql(
- """select name, warehouse from `tabPOS Profile`
- where (user is null or user = '') and company = %s""",
- doc.company,
+ global_query = (
+ frappe.qb.from_(POSProfile)
+ .select(POSProfile.name, POSProfile.warehouse)
+ .where(POSProfile.company == doc.company)
+ .where(POSProfile.user.isnull() | (POSProfile.user == ""))
)
+ global_pos_profile = global_query.run()
+
if global_pos_profile:
warehouse = global_pos_profile[0][1]
elif not user_pos_profile:
@@ -354,15 +362,22 @@ def update_multi_mode_option(doc, pos_profile) -> None:
def get_all_mode_of_payments(doc) -> list:
- return frappe.db.sql(
- """
- select mpa.default_account, mpa.parent, mp.type as type
- from `tabMode of Payment Account` mpa,`tabMode of Payment` mp
- where mpa.parent = mp.name and mpa.company = %(company)s and mp.enabled = 1""",
- {"company": doc.company},
- as_dict=1,
+ ModeOfPaymentAccount = frappe.qb.DocType("Mode of Payment Account")
+ ModeOfPayment = frappe.qb.DocType("Mode of Payment")
+
+ query = (
+ frappe.qb.from_(ModeOfPaymentAccount)
+ .join(ModeOfPayment)
+ .on(ModeOfPaymentAccount.parent == ModeOfPayment.name)
+ .select(
+ ModeOfPaymentAccount.default_account, ModeOfPaymentAccount.parent, ModeOfPayment.type.as_("type")
+ )
+ .where(ModeOfPaymentAccount.company == doc.company)
+ .where(ModeOfPayment.enabled == 1)
)
+ return query.run(as_dict=1)
+
def get_mode_of_payments_info(mode_of_payments: list, company: str) -> dict:
data = frappe.db.sql(
diff --git a/erpnext/accounts/doctype/sales_invoice/services/status.py b/erpnext/accounts/doctype/sales_invoice/services/status.py
index 8ec179d9853..ae6e6754451 100644
--- a/erpnext/accounts/doctype/sales_invoice/services/status.py
+++ b/erpnext/accounts/doctype/sales_invoice/services/status.py
@@ -111,18 +111,22 @@ def is_overdue(doc, total: float) -> bool | None:
def get_discounting_status(sales_invoice: str) -> str | None:
status = None
- invoice_discounting_list = frappe.db.sql(
- """
- select status
- from `tabInvoice Discounting` id, `tabDiscounted Invoice` d
- where
- id.name = d.parent
- and d.sales_invoice=%s
- and id.docstatus=1
- and status in ('Disbursed', 'Settled')
- """,
- sales_invoice,
+
+ InvoiceDiscounting = frappe.qb.DocType("Invoice Discounting")
+ DiscountedInvoice = frappe.qb.DocType("Discounted Invoice")
+
+ query = (
+ frappe.qb.from_(InvoiceDiscounting)
+ .join(DiscountedInvoice)
+ .on(InvoiceDiscounting.name == DiscountedInvoice.parent)
+ .select(InvoiceDiscounting.status)
+ .where(DiscountedInvoice.sales_invoice == sales_invoice)
+ .where(InvoiceDiscounting.docstatus == 1)
+ .where(InvoiceDiscounting.status.isin(["Disbursed", "Settled"]))
)
+
+ invoice_discounting_list = query.run()
+
for d in invoice_discounting_list:
status = d[0]
if status == "Disbursed":
diff --git a/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py
index d72c5548327..f4e810617e5 100644
--- a/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py
+++ b/erpnext/accounts/doctype/sales_invoice/test_sales_invoice.py
@@ -881,7 +881,7 @@ class TestSalesInvoice(ERPNextTestSuite):
link_doctypes = [d.parent for d in link_data]
# test case for dynamic link order
- self.assertTrue(link_doctypes.index("GL Entry") > link_doctypes.index("Journal Entry Account"))
+ self.assertGreater(link_doctypes.index("GL Entry"), link_doctypes.index("Journal Entry Account"))
jv.cancel()
self.assertEqual(frappe.db.get_value("Sales Invoice", w.name, "outstanding_amount"), 562.0)
@@ -3525,7 +3525,7 @@ class TestSalesInvoice(ERPNextTestSuite):
with self.assertRaises(frappe.ValidationError) as err:
si.save()
- self.assertTrue("cannot overbill" in str(err.exception).lower())
+ self.assertIn("cannot overbill", str(err.exception).lower())
dn.cancel()
@ERPNextTestSuite.change_settings(
@@ -3638,9 +3638,7 @@ class TestSalesInvoice(ERPNextTestSuite):
with self.assertRaises(frappe.ValidationError) as err:
si.submit()
- self.assertTrue(
- "Cannot create accounting entries against disabled accounts" in str(err.exception)
- )
+ self.assertIn("Cannot create accounting entries against disabled accounts", str(err.exception))
finally:
account.disabled = 0
@@ -3735,7 +3733,7 @@ class TestSalesInvoice(ERPNextTestSuite):
return_si = make_return_doc(si.doctype, si.name)
return_si.save().submit()
- self.assertTrue(return_si.docstatus == 1)
+ self.assertEqual(return_si.docstatus, 1)
def test_sales_invoice_with_payable_tax_account(self):
si = create_sales_invoice(do_not_submit=True)
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 cd18994d0c5..c9ed9d3f15d 100644
--- a/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+++ b/erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
@@ -947,7 +947,8 @@
"fieldtype": "Currency",
"label": "Distributed Discount Amount",
"options": "currency",
- "print_hide": 1
+ "print_hide": 1,
+ "read_only": 1
},
{
"fieldname": "available_quantity_section",
@@ -1016,7 +1017,7 @@
"idx": 1,
"istable": 1,
"links": [],
- "modified": "2026-02-24 14:37:16.853941",
+ "modified": "2026-05-29 12:23:28.259905",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Sales Invoice Item",
diff --git a/erpnext/accounts/doctype/tax_rule/test_tax_rule.py b/erpnext/accounts/doctype/tax_rule/test_tax_rule.py
index d9fd85315ca..f14bf4563a6 100644
--- a/erpnext/accounts/doctype/tax_rule/test_tax_rule.py
+++ b/erpnext/accounts/doctype/tax_rule/test_tax_rule.py
@@ -387,7 +387,7 @@ class TestTaxRule(ERPNextTestSuite):
self.assertEqual(quotation.taxes_and_charges, "_Test Sales Taxes and Charges Template - _TC")
# Check if accounts heads and rate fetched are also fetched from tax template or not
- self.assertTrue(len(quotation.taxes) > 0)
+ self.assertGreater(len(quotation.taxes), 0)
def make_tax_rule(**args):
diff --git a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py
index dd8caa60d7d..f6ce7739acd 100644
--- a/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py
+++ b/erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py
@@ -7,7 +7,7 @@ import frappe
from frappe import _
from frappe.model.document import Document
from frappe.query_builder.functions import Sum
-from frappe.utils import getdate
+from frappe.utils import cstr, getdate
from erpnext import allow_regional
from erpnext.controllers.accounts_controller import validate_account_head
@@ -48,7 +48,7 @@ class TaxWithholdingCategory(Document):
for d in self.get("rates"):
if getdate(d.from_date) >= getdate(d.to_date):
frappe.throw(_("Row #{0}: From Date cannot be before To Date").format(d.idx))
- group_rates[d.tax_withholding_group].append(d)
+ group_rates[cstr(d.tax_withholding_group)].append(d)
# Validate overlapping dates within each group
for group, rates in group_rates.items():
@@ -92,10 +92,9 @@ class TaxWithholdingCategory(Document):
def get_applicable_tax_row(self, posting_date, tax_withholding_group):
for row in self.rates:
- if (
- getdate(row.from_date) <= getdate(posting_date) <= getdate(row.to_date)
- and row.tax_withholding_group == tax_withholding_group
- ):
+ if getdate(row.from_date) <= getdate(posting_date) <= getdate(row.to_date) and cstr(
+ row.tax_withholding_group
+ ) == cstr(tax_withholding_group):
return row
frappe.throw(_("No Tax Withholding data found for the current posting date."))
@@ -116,7 +115,7 @@ class TaxWithholdingDetails:
def __init__(
self,
tax_withholding_categories: list[str],
- tax_withholding_group: str,
+ tax_withholding_group: str | None,
posting_date: str,
party_type: str,
party: str,
diff --git a/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py b/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py
index f5c4a1b65db..d78f5287be1 100644
--- a/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py
+++ b/erpnext/accounts/doctype/tax_withholding_category/test_tax_withholding_category.py
@@ -476,7 +476,7 @@ class TestTaxWithholdingCategory(ERPNextTestSuite):
# Cumulative threshold is 10,000
# Threshold calculation should be only on the third invoice
- self.assertTrue(len(pi1.taxes) > 0)
+ self.assertGreater(len(pi1.taxes), 0)
self.assertEqual(pi1.taxes[0].tax_amount, 1000)
self.cleanup_invoices(invoices)
@@ -999,6 +999,47 @@ class TestTaxWithholdingCategory(ERPNextTestSuite):
self.cleanup_invoices(invoices)
+ def test_null_and_empty_tax_withholding_group_are_equivalent(self):
+ """
+ NULL and empty-string `tax_withholding_group` must be treated as the
+ same value.
+ """
+ category = frappe.get_doc("Tax Withholding Category", "Cumulative Threshold TDS")
+ original_row = category.rates[0]
+ original_row.tax_withholding_group = None
+
+ # Part 1: validate_dates must detect overlap between NULL-group and
+ # empty-string-group rows covering the same date range.
+ category.append(
+ "rates",
+ {
+ "from_date": original_row.from_date,
+ "to_date": original_row.to_date,
+ "tax_withholding_group": "",
+ "tax_withholding_rate": original_row.tax_withholding_rate,
+ },
+ )
+ with self.assertRaises(frappe.ValidationError):
+ category.validate_dates()
+ category.rates.pop()
+
+ # Part 2: get_applicable_tax_row must match NULL <-> "" in either direction.
+ posting_date = original_row.from_date
+
+ row = category.get_applicable_tax_row(posting_date=posting_date, tax_withholding_group="")
+ self.assertEqual(row.name, original_row.name)
+
+ row = category.get_applicable_tax_row(posting_date=posting_date, tax_withholding_group=None)
+ self.assertEqual(row.name, original_row.name)
+
+ original_row.tax_withholding_group = ""
+ row = category.get_applicable_tax_row(posting_date=posting_date, tax_withholding_group=None)
+ self.assertEqual(row.name, original_row.name)
+
+ original_row.tax_withholding_group = None
+ with self.assertRaises(frappe.ValidationError):
+ category.get_applicable_tax_row(posting_date=posting_date, tax_withholding_group="194R")
+
def test_tds_calculation_on_net_total(self):
self.setup_party_with_category("Supplier", "Test TDS Supplier4", "Cumulative Threshold TDS")
invoices = []
@@ -3613,7 +3654,7 @@ class TestTaxWithholdingCategory(ERPNextTestSuite):
pi = create_purchase_invoice(supplier="Test TDS Supplier", rate=50000, do_not_save=True)
pi.save()
- self.assertTrue(len(pi.tax_withholding_entries) > 0)
+ self.assertGreater(len(pi.tax_withholding_entries), 0)
pi.delete()
def test_tds_rounding_with_decimal_amounts(self):
@@ -3679,7 +3720,7 @@ class TestTaxWithholdingCategory(ERPNextTestSuite):
self.setup_party_with_category("Supplier", "Test TDS Supplier", "Cumulative Threshold TDS")
pi = create_purchase_invoice(supplier="Test TDS Supplier", rate=50000)
- self.assertTrue(len(pi.tax_withholding_entries) > 0)
+ self.assertGreater(len(pi.tax_withholding_entries), 0)
pi.override_tax_withholding_entries = 1
entry = pi.tax_withholding_entries[0]
diff --git a/erpnext/accounts/number_card/total_incoming_bills/total_incoming_bills.json b/erpnext/accounts/number_card/total_incoming_bills/total_incoming_bills.json
index 5a56be6177b..34e42ac7cfe 100644
--- a/erpnext/accounts/number_card/total_incoming_bills/total_incoming_bills.json
+++ b/erpnext/accounts/number_card/total_incoming_bills/total_incoming_bills.json
@@ -4,14 +4,14 @@
"docstatus": 0,
"doctype": "Number Card",
"document_type": "Purchase Invoice",
- "dynamic_filters_json": "[[\"Purchase Invoice\",\"company\",\"=\",\" frappe.defaults.get_user_default(\\\"Company\\\")\"]]",
- "filters_json": "[[\"Purchase Invoice\",\"docstatus\",\"=\",\"1\"],[\"Purchase Invoice\",\"posting_date\",\"Timespan\",\"this year\"]]",
+ "dynamic_filters_json": "[[\"Purchase Invoice\", \"company\", \"=\", \"frappe.defaults.get_user_default(\\\"Company\\\")\"], [\"Purchase Invoice\", \"posting_date\", \"Between\", \"(frappe.boot.current_fiscal_year || [null, `${frappe.datetime.get_today().slice(0,4)}-01-01`, `${frappe.datetime.get_today().slice(0,4)}-12-31`]).slice(1)\"]]",
+ "filters_json": "[[\"Purchase Invoice\",\"docstatus\",\"=\",\"1\"]]",
"function": "Sum",
"idx": 0,
"is_public": 1,
"is_standard": 1,
"label": "Total Incoming Bills",
- "modified": "2024-12-05 12:00:00.000000",
+ "modified": "2026-06-01 12:00:00.000000",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Total Incoming Bills",
diff --git a/erpnext/accounts/number_card/total_incoming_payment/total_incoming_payment.json b/erpnext/accounts/number_card/total_incoming_payment/total_incoming_payment.json
index 8712d32bf87..d0f125df5bf 100644
--- a/erpnext/accounts/number_card/total_incoming_payment/total_incoming_payment.json
+++ b/erpnext/accounts/number_card/total_incoming_payment/total_incoming_payment.json
@@ -4,14 +4,14 @@
"docstatus": 0,
"doctype": "Number Card",
"document_type": "Payment Entry",
- "dynamic_filters_json": "[[\"Payment Entry\",\"company\",\"=\",\"frappe.defaults.get_user_default(\\\"Company\\\")\"]]",
- "filters_json": "[[\"Payment Entry\",\"docstatus\",\"=\",\"1\"],[\"Payment Entry\",\"posting_date\",\"Timespan\",\"this year\"],[\"Payment Entry\",\"payment_type\",\"=\",\"Receive\"]]",
+ "dynamic_filters_json": "[[\"Payment Entry\", \"company\", \"=\", \"frappe.defaults.get_user_default(\\\"Company\\\")\"], [\"Payment Entry\", \"posting_date\", \"Between\", \"(frappe.boot.current_fiscal_year || [null, `${frappe.datetime.get_today().slice(0,4)}-01-01`, `${frappe.datetime.get_today().slice(0,4)}-12-31`]).slice(1)\"]]",
+ "filters_json": "[[\"Payment Entry\",\"docstatus\",\"=\",\"1\"],[\"Payment Entry\",\"payment_type\",\"=\",\"Receive\"]]",
"function": "Sum",
"idx": 0,
"is_public": 1,
"is_standard": 1,
"label": "Total Incoming Payment",
- "modified": "2024-12-05 12:00:00.000000",
+ "modified": "2026-06-01 12:00:00.000000",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Total Incoming Payment",
diff --git a/erpnext/accounts/number_card/total_outgoing_bills/total_outgoing_bills.json b/erpnext/accounts/number_card/total_outgoing_bills/total_outgoing_bills.json
index 9235c951778..5eff4005fda 100644
--- a/erpnext/accounts/number_card/total_outgoing_bills/total_outgoing_bills.json
+++ b/erpnext/accounts/number_card/total_outgoing_bills/total_outgoing_bills.json
@@ -4,14 +4,14 @@
"docstatus": 0,
"doctype": "Number Card",
"document_type": "Sales Invoice",
- "dynamic_filters_json": "[[\"Sales Invoice\",\"company\",\"=\",\"frappe.defaults.get_user_default(\\\"Company\\\")\"]]",
- "filters_json": "[[\"Sales Invoice\",\"docstatus\",\"=\",\"1\"],[\"Sales Invoice\",\"posting_date\",\"Timespan\",\"this year\"]]",
+ "dynamic_filters_json": "[[\"Sales Invoice\", \"company\", \"=\", \"frappe.defaults.get_user_default(\\\"Company\\\")\"], [\"Sales Invoice\", \"posting_date\", \"Between\", \"(frappe.boot.current_fiscal_year || [null, `${frappe.datetime.get_today().slice(0,4)}-01-01`, `${frappe.datetime.get_today().slice(0,4)}-12-31`]).slice(1)\"]]",
+ "filters_json": "[[\"Sales Invoice\",\"docstatus\",\"=\",\"1\"]]",
"function": "Sum",
"idx": 0,
"is_public": 1,
"is_standard": 1,
"label": "Total Outgoing Bills",
- "modified": "2024-12-05 12:00:00.000000",
+ "modified": "2026-06-01 12:00:00.000000",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Total Outgoing Bills",
diff --git a/erpnext/accounts/number_card/total_outgoing_payment/total_outgoing_payment.json b/erpnext/accounts/number_card/total_outgoing_payment/total_outgoing_payment.json
index 83c943a61dd..a78f73c1dc5 100644
--- a/erpnext/accounts/number_card/total_outgoing_payment/total_outgoing_payment.json
+++ b/erpnext/accounts/number_card/total_outgoing_payment/total_outgoing_payment.json
@@ -4,14 +4,14 @@
"docstatus": 0,
"doctype": "Number Card",
"document_type": "Payment Entry",
- "dynamic_filters_json": "[[\"Payment Entry\",\"company\",\"=\",\"frappe.defaults.get_user_default(\\\"Company\\\")\"]]",
- "filters_json": "[[\"Payment Entry\",\"docstatus\",\"=\",\"1\"],[\"Payment Entry\",\"posting_date\",\"Timespan\",\"this year\"],[\"Payment Entry\",\"payment_type\",\"=\",\"Pay\"]]",
+ "dynamic_filters_json": "[[\"Payment Entry\", \"company\", \"=\", \"frappe.defaults.get_user_default(\\\"Company\\\")\"], [\"Payment Entry\", \"posting_date\", \"Between\", \"(frappe.boot.current_fiscal_year || [null, `${frappe.datetime.get_today().slice(0,4)}-01-01`, `${frappe.datetime.get_today().slice(0,4)}-12-31`]).slice(1)\"]]",
+ "filters_json": "[[\"Payment Entry\",\"docstatus\",\"=\",\"1\"],[\"Payment Entry\",\"payment_type\",\"=\",\"Pay\"]]",
"function": "Sum",
"idx": 0,
"is_public": 1,
"is_standard": 1,
"label": "Total Outgoing Payment",
- "modified": "2024-12-05 12:00:00.000000",
+ "modified": "2026-06-01 12:00:00.000000",
"modified_by": "Administrator",
"module": "Accounts",
"name": "Total Outgoing Payment",
diff --git a/erpnext/accounts/report/accounts_receivable/accounts_receivable.py b/erpnext/accounts/report/accounts_receivable/accounts_receivable.py
index def03c4a492..a443287b7b1 100644
--- a/erpnext/accounts/report/accounts_receivable/accounts_receivable.py
+++ b/erpnext/accounts/report/accounts_receivable/accounts_receivable.py
@@ -6,7 +6,6 @@ from collections import OrderedDict
import frappe
from frappe import _, qb, query_builder, scrub
-from frappe.database.schema import get_definition
from frappe.query_builder import Criterion
from frappe.query_builder.functions import Date, Substring, Sum
from frappe.utils import cint, cstr, flt, getdate, nowdate
diff --git a/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py b/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py
index 08332f05897..1c8751231ec 100644
--- a/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py
+++ b/erpnext/accounts/report/accounts_receivable/test_accounts_receivable.py
@@ -194,7 +194,7 @@ class TestAccountsReceivable(ERPNextTestSuite, AccountsTestMixin):
report = execute(filters)
row = report[1]
- self.assertTrue(len(row) == 0)
+ self.assertEqual(len(row), 0)
@ERPNextTestSuite.change_settings(
"Accounts Settings",
@@ -764,7 +764,7 @@ class TestAccountsReceivable(ERPNextTestSuite, AccountsTestMixin):
report = execute(filters)[1]
# Assert that the report contains data for the specified customer groups
- self.assertTrue(len(report) > 0)
+ self.assertGreater(len(report), 0)
for row in report:
# Assert that the customer group of each row is in the list of customer groups
diff --git a/erpnext/accounts/report/budget_variance_report/budget_variance_report.js b/erpnext/accounts/report/budget_variance_report/budget_variance_report.js
index c74450191aa..1bb9abd8c92 100644
--- a/erpnext/accounts/report/budget_variance_report/budget_variance_report.js
+++ b/erpnext/accounts/report/budget_variance_report/budget_variance_report.js
@@ -38,6 +38,14 @@ function get_filters() {
let budget_against_options = get_dimensions();
let filters = [
+ {
+ fieldname: "company",
+ label: __("Company"),
+ fieldtype: "Link",
+ options: "Company",
+ default: frappe.defaults.get_user_default("Company"),
+ reqd: 1,
+ },
{
fieldname: "from_fiscal_year",
label: __("From Fiscal Year"),
@@ -67,14 +75,6 @@ function get_filters() {
default: "Yearly",
reqd: 1,
},
- {
- fieldname: "company",
- label: __("Company"),
- fieldtype: "Link",
- options: "Company",
- default: frappe.defaults.get_user_default("Company"),
- reqd: 1,
- },
{
fieldname: "budget_against",
label: __("Budget Against"),
@@ -96,9 +96,12 @@ function get_filters() {
if (!frappe.query_report.filters) return;
let budget_against = frappe.query_report.get_filter_value("budget_against");
+ let company = frappe.query_report.get_filter_value("company");
if (!budget_against) return;
- return frappe.db.get_link_options(budget_against, txt);
+ const filters = budget_against !== "Branch" && company ? { company: company } : {};
+
+ return frappe.db.get_link_options(budget_against, txt, filters);
},
},
{
diff --git a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py
index f41ba74388b..a4d8480a848 100644
--- a/erpnext/accounts/report/budget_variance_report/budget_variance_report.py
+++ b/erpnext/accounts/report/budget_variance_report/budget_variance_report.py
@@ -3,6 +3,7 @@
import frappe
from frappe import _
+from frappe.query_builder import CustomFunction
from frappe.utils import add_months, flt, formatdate
from erpnext.accounts.doctype.accounting_dimension.accounting_dimension import get_dimensions
@@ -19,6 +20,8 @@ def execute(filters=None):
columns = get_columns(filters)
if filters.get("budget_against_filter"):
dimensions = filters.get("budget_against_filter")
+ if filters.get("budget_against") == "Cost Center":
+ dimensions = get_cost_center_with_children(dimensions)
else:
dimensions = get_budget_dimensions(filters)
if not dimensions:
@@ -40,39 +43,29 @@ def validate_filters(filters):
def get_budget_records(filters, dimensions):
budget_against_field = frappe.scrub(filters["budget_against"])
+ budget = frappe.qb.DocType("Budget")
- return frappe.db.sql(
- f"""
- SELECT
- b.name,
- b.account,
- b.{budget_against_field} AS dimension,
- b.budget_amount,
- b.from_fiscal_year,
- b.to_fiscal_year,
- b.budget_start_date,
- b.budget_end_date
- FROM
- `tabBudget` b
- WHERE
- b.company = %s
- AND b.docstatus = 1
- AND b.budget_against = %s
- AND b.{budget_against_field} IN ({", ".join(["%s"] * len(dimensions))})
- AND (
- b.from_fiscal_year <= %s
- AND b.to_fiscal_year >= %s
- )
- """,
- (
- filters.company,
- filters.budget_against,
- *dimensions,
- filters.to_fiscal_year,
- filters.from_fiscal_year,
- ),
- as_dict=True,
- )
+ return (
+ frappe.qb.from_(budget)
+ .select(
+ budget.name,
+ budget.account,
+ budget[budget_against_field].as_("dimension"),
+ budget.budget_amount,
+ budget.from_fiscal_year,
+ budget.to_fiscal_year,
+ budget.budget_start_date,
+ budget.budget_end_date,
+ )
+ .where(
+ (budget.company == filters.company)
+ & (budget.docstatus == 1)
+ & (budget.budget_against == filters.budget_against)
+ & (budget[budget_against_field].isin(dimensions))
+ & (budget.from_fiscal_year <= filters.to_fiscal_year)
+ & (budget.to_fiscal_year >= filters.from_fiscal_year)
+ )
+ ).run(as_dict=True)
def build_budget_map(budget_records, filters):
@@ -120,50 +113,41 @@ def build_budget_map(budget_records, filters):
def get_actual_transactions(dimension_name, filters):
budget_against = frappe.scrub(filters.get("budget_against"))
- cost_center_filter = ""
+ monthname = CustomFunction("MONTHNAME", ["date"])
+
+ gle = frappe.qb.DocType("GL Entry")
+ budget = frappe.qb.DocType("Budget")
+
+ query = (
+ frappe.qb.from_(gle)
+ .from_(budget)
+ .select(
+ gle.account,
+ gle.debit,
+ gle.credit,
+ gle.fiscal_year,
+ monthname(gle.posting_date).as_("month_name"),
+ budget[budget_against].as_("budget_against"),
+ )
+ .where(
+ (budget.docstatus == 1)
+ & (budget.account == gle.account)
+ & (gle.fiscal_year >= filters.from_fiscal_year)
+ & (gle.fiscal_year <= filters.to_fiscal_year)
+ & (gle.is_cancelled == 0)
+ & (budget[budget_against] == dimension_name)
+ )
+ .groupby(gle.name)
+ .orderby(gle.fiscal_year)
+ )
if filters.get("budget_against") == "Cost Center" and dimension_name:
- cc_lft, cc_rgt = frappe.db.get_value("Cost Center", dimension_name, ["lft", "rgt"])
- cost_center_filter = f"""
- and lft >= "{cc_lft}"
- and rgt <= "{cc_rgt}"
- """
+ cost_centers = get_cost_center_with_children([dimension_name])
+ query = query.where(gle.cost_center.isin(cost_centers))
+ else:
+ query = query.where(budget[budget_against] == gle[budget_against])
- actual_transactions = frappe.db.sql(
- f"""
- select
- gl.account,
- gl.debit,
- gl.credit,
- gl.fiscal_year,
- MONTHNAME(gl.posting_date) as month_name,
- b.{budget_against} as budget_against
- from
- `tabGL Entry` gl,
- `tabBudget` b
- where
- b.docstatus = 1
- and b.account=gl.account
- and b.{budget_against} = gl.{budget_against}
- and gl.fiscal_year between %s and %s
- and gl.is_cancelled = 0
- and b.{budget_against} = %s
- and exists(
- select
- name
- from
- `tab{filters.budget_against}`
- where
- name = gl.{budget_against}
- {cost_center_filter}
- )
- group by
- gl.name
- order by gl.fiscal_year
- """,
- (filters.from_fiscal_year, filters.to_fiscal_year, dimension_name),
- as_dict=1,
- )
+ actual_transactions = query.run(as_dict=True)
actual_transactions_map = {}
for transaction in actual_transactions:
@@ -382,33 +366,37 @@ def get_fiscal_years(filters):
return fiscal_year
-def get_budget_dimensions(filters):
- order_by = ""
- if filters.get("budget_against") == "Cost Center":
- order_by = "order by lft"
-
- if filters.get("budget_against") in ["Cost Center", "Project"]:
- return frappe.db.sql_list(
- """
- select
- name
- from
- `tab{tab}`
- where
- company = %s
- {order_by}
- """.format(tab=filters.get("budget_against"), order_by=order_by),
- filters.get("company"),
+def get_cost_center_with_children(cost_centers):
+ """Expand each cost center to include itself and all its descendants."""
+ cc = frappe.qb.DocType("Cost Center")
+ all_cost_centers = set()
+ for cost_center in cost_centers:
+ result = frappe.db.get_value("Cost Center", cost_center, ["lft", "rgt"])
+ if not result:
+ continue
+ lft, rgt = result
+ children = (
+ frappe.qb.from_(cc).select(cc.name).where((cc.lft >= lft) & (cc.rgt <= rgt)).run(pluck="name")
)
+ all_cost_centers.update(children)
+ return list(all_cost_centers)
+
+
+def get_budget_dimensions(filters):
+ budget_against = filters.get("budget_against")
+ dimension = frappe.qb.DocType(budget_against)
+
+ if budget_against in ["Cost Center", "Project"]:
+ query = (
+ frappe.qb.from_(dimension)
+ .select(dimension.name)
+ .where(dimension.company == filters.get("company"))
+ )
+ if budget_against == "Cost Center":
+ query = query.orderby(dimension.lft)
+ return query.run(pluck="name")
else:
- return frappe.db.sql_list(
- """
- select
- name
- from
- `tab{tab}`
- """.format(tab=filters.get("budget_against"))
- ) # nosec
+ return frappe.qb.from_(dimension).select(dimension.name).run(pluck="name")
def validate_budget_dimensions(filters):
diff --git a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
index 8ec9da89992..a71abbb7434 100644
--- a/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
+++ b/erpnext/accounts/report/sales_payment_summary/test_sales_payment_summary.py
@@ -36,8 +36,8 @@ class TestSalesPaymentSummary(ERPNextTestSuite):
pe.submit()
mop = get_mode_of_payments(filters)
- self.assertTrue("Credit Card" in next(iter(mop.values())))
- self.assertTrue("Cash" in next(iter(mop.values())))
+ self.assertIn("Credit Card", next(iter(mop.values())))
+ self.assertIn("Cash", next(iter(mop.values())))
# Cancel all Cash payment entry and check if this mode of payment is still fetched.
payment_entries = frappe.get_all(
@@ -50,8 +50,8 @@ class TestSalesPaymentSummary(ERPNextTestSuite):
pe.cancel()
mop = get_mode_of_payments(filters)
- self.assertTrue("Credit Card" in next(iter(mop.values())))
- self.assertTrue("Cash" not in next(iter(mop.values())))
+ self.assertIn("Credit Card", next(iter(mop.values())))
+ self.assertNotIn("Cash", next(iter(mop.values())))
def test_get_mode_of_payments_details(self):
filters = get_filters()
@@ -100,7 +100,7 @@ class TestSalesPaymentSummary(ERPNextTestSuite):
if mopd_value[0] == "Credit Card":
cc_final_amount = mopd_value[1]
- self.assertTrue(cc_init_amount > cc_final_amount)
+ self.assertGreater(cc_init_amount, cc_final_amount)
def get_filters():
diff --git a/erpnext/accounts/test/test_utils.py b/erpnext/accounts/test/test_utils.py
index b4f136142eb..f8fe5abd5f5 100644
--- a/erpnext/accounts/test/test_utils.py
+++ b/erpnext/accounts/test/test_utils.py
@@ -37,15 +37,17 @@ class TestUtils(ERPNextTestSuite):
future_vouchers = get_future_stock_vouchers("2021-01-01", "00:00:00", for_items=["_Test Item"])
voucher_type_and_no = ("Purchase Receipt", pr.name)
- self.assertTrue(
- voucher_type_and_no in future_vouchers,
+ self.assertIn(
+ voucher_type_and_no,
+ future_vouchers,
msg="get_future_stock_vouchers not returning correct value",
)
posting_date = "2021-01-01"
gl_entries = get_voucherwise_gl_entries(future_vouchers, posting_date)
- self.assertTrue(
- voucher_type_and_no in gl_entries,
+ self.assertIn(
+ voucher_type_and_no,
+ gl_entries,
msg="get_voucherwise_gl_entries not returning expected GLes",
)
diff --git a/erpnext/assets/doctype/asset/asset.js b/erpnext/assets/doctype/asset/asset.js
index 2418bc3930f..e269f289307 100644
--- a/erpnext/assets/doctype/asset/asset.js
+++ b/erpnext/assets/doctype/asset/asset.js
@@ -46,7 +46,7 @@ frappe.ui.form.on("Asset", {
frm.make_methods = {
"Asset Movement": () => {
frappe.call({
- method: "erpnext.assets.doctype.asset.asset.make_asset_movement",
+ method: "erpnext.assets.doctype.asset.mapper.make_asset_movement",
freeze: true,
args: {
assets: [{ name: frm.doc.name }],
@@ -967,7 +967,7 @@ erpnext.asset.restore_asset = function (frm) {
erpnext.asset.transfer_asset = function (frm) {
frappe.call({
- method: "erpnext.assets.doctype.asset.asset.make_asset_movement",
+ method: "erpnext.assets.doctype.asset.mapper.make_asset_movement",
freeze: true,
args: {
assets: [{ name: frm.doc.name }],
diff --git a/erpnext/assets/doctype/asset/asset_list.js b/erpnext/assets/doctype/asset/asset_list.js
index 8b0d289dab0..0048454ac86 100644
--- a/erpnext/assets/doctype/asset/asset_list.js
+++ b/erpnext/assets/doctype/asset/asset_list.js
@@ -32,7 +32,7 @@ frappe.listview_settings["Asset"] = {
me.page.add_action_item(__("Make Asset Movement"), function () {
const assets = me.get_checked_items();
frappe.call({
- method: "erpnext.assets.doctype.asset.asset.make_asset_movement",
+ method: "erpnext.assets.doctype.asset.mapper.make_asset_movement",
freeze: true,
args: {
assets: assets,
diff --git a/erpnext/assets/doctype/asset/test_asset.py b/erpnext/assets/doctype/asset/test_asset.py
index b973ce9ddb9..da14169787b 100644
--- a/erpnext/assets/doctype/asset/test_asset.py
+++ b/erpnext/assets/doctype/asset/test_asset.py
@@ -887,9 +887,9 @@ class TestAsset(AssetSetup):
with self.assertRaises(frappe.ValidationError) as err:
asset.save()
- self.assertTrue(
- "Please set Depreciation related Accounts in Asset Category Computers or Company"
- in str(err.exception)
+ self.assertIn(
+ "Please set Depreciation related Accounts in Asset Category Computers or Company",
+ str(err.exception),
)
finally:
frappe.db.set_value("Company", "_Test Company", company_depreciation_accounts)
@@ -1701,8 +1701,8 @@ class TestDepreciationBasics(AssetSetup):
accumulated_depreciation_after_full_schedule
)
- self.assertTrue(
- asset.finance_books[0].expected_value_after_useful_life >= asset_value_after_full_schedule
+ self.assertGreaterEqual(
+ asset.finance_books[0].expected_value_after_useful_life, asset_value_after_full_schedule
)
def test_gle_made_by_depreciation_entries(self):
diff --git a/erpnext/assets/doctype/asset_category/test_asset_category.py b/erpnext/assets/doctype/asset_category/test_asset_category.py
index b12387bb2c0..4131f5045a9 100644
--- a/erpnext/assets/doctype/asset_category/test_asset_category.py
+++ b/erpnext/assets/doctype/asset_category/test_asset_category.py
@@ -72,7 +72,7 @@ class TestAssetCategory(ERPNextTestSuite):
)
with self.assertRaises(frappe.ValidationError) as err:
asset_category.save()
- self.assertTrue("Cannot set multiple account rows for the same company" in str(err.exception))
+ self.assertIn("Cannot set multiple account rows for the same company", str(err.exception))
def test_depreciation_accounts_required_for_existing_depreciable_assets(self):
asset = create_asset(
@@ -110,9 +110,9 @@ class TestAssetCategory(ERPNextTestSuite):
with self.assertRaises(frappe.ValidationError) as err:
asset_category.save()
- self.assertTrue(
- "Since there are active depreciable assets under this category, the following accounts are required."
- in str(err.exception)
+ self.assertIn(
+ "Since there are active depreciable assets under this category, the following accounts are required.",
+ str(err.exception),
)
finally:
frappe.db.set_value("Company", asset.company, company_acccount_depreciation)
diff --git a/erpnext/buying/doctype/buying_settings/buying_settings.json b/erpnext/buying/doctype/buying_settings/buying_settings.json
index 6c2d2f1bb99..b219379368d 100644
--- a/erpnext/buying/doctype/buying_settings/buying_settings.json
+++ b/erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -17,6 +17,7 @@
"section_break_vwgg",
"maintain_same_rate",
"column_break_lwxs",
+ "set_landed_cost_based_on_purchase_invoice_rate",
"maintain_same_rate_action",
"role_to_override_stop_action",
"transaction_settings_section",
@@ -24,7 +25,8 @@
"po_required",
"pr_required",
"project_update_frequency",
- "column_break_12",
+ "over_order_allowance",
+ "column_break_kdcm",
"allow_multiple_items",
"allow_negative_rates_for_items",
"set_valuation_rate_for_rejected_materials",
@@ -33,7 +35,6 @@
"purchase_invoice_settings_section",
"bill_for_rejected_quantity_in_purchase_invoice",
"use_transaction_date_exchange_rate",
- "set_landed_cost_based_on_purchase_invoice_rate",
"zero_quantity_line_items_section",
"allow_zero_qty_in_supplier_quotation",
"allow_zero_qty_in_request_for_quotation",
@@ -156,10 +157,6 @@
"fieldtype": "Tab Break",
"label": "Transaction Settings"
},
- {
- "fieldname": "column_break_12",
- "fieldtype": "Column Break"
- },
{
"default": "0",
"description": "Prevents the system from automatically using the rate from the last purchase transaction when creating new purchase orders or transactions.",
@@ -335,6 +332,16 @@
"hidden": 1,
"is_virtual": 1,
"label": "Naming Series options"
+ },
+ {
+ "description": "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units",
+ "fieldname": "over_order_allowance",
+ "fieldtype": "Float",
+ "label": "Over Order Allowance (%)"
+ },
+ {
+ "fieldname": "column_break_kdcm",
+ "fieldtype": "Column Break"
}
],
"grid_page_length": 50,
@@ -343,7 +350,7 @@
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2026-05-05 16:30:37.184607",
+ "modified": "2026-05-27 23:04:00.842393",
"modified_by": "Administrator",
"module": "Buying",
"name": "Buying Settings",
diff --git a/erpnext/buying/doctype/buying_settings/buying_settings.py b/erpnext/buying/doctype/buying_settings/buying_settings.py
index 8f358bb364b..91ba900873b 100644
--- a/erpnext/buying/doctype/buying_settings/buying_settings.py
+++ b/erpnext/buying/doctype/buying_settings/buying_settings.py
@@ -34,6 +34,7 @@ class BuyingSettings(Document):
fixed_email: DF.Link | None
maintain_same_rate: DF.Check
maintain_same_rate_action: DF.Literal["Stop", "Warn"]
+ over_order_allowance: DF.Float
over_transfer_allowance: DF.Float
po_required: DF.Literal["No", "Yes"]
pr_required: DF.Literal["No", "Yes"]
diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.json b/erpnext/buying/doctype/purchase_order/purchase_order.json
index 646d601f291..46d7d2293b2 100644
--- a/erpnext/buying/doctype/purchase_order/purchase_order.json
+++ b/erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -24,8 +24,6 @@
"is_subcontracted",
"has_unit_price_items",
"supplier_warehouse",
- "section_break_zymg",
- "title",
"accounting_dimensions_section",
"cost_center",
"dimension_col_break",
@@ -57,9 +55,7 @@
"net_total",
"section_break_48",
"pricing_rules",
- "raw_material_details",
"set_reserve_warehouse",
- "supplied_items",
"taxes_section",
"tax_category",
"taxes_and_charges",
@@ -157,6 +153,7 @@
"auto_repeat",
"update_auto_repeat_reference",
"additional_info_section",
+ "title",
"party_account_currency",
"represents_company",
"ref_sq",
@@ -1294,10 +1291,6 @@
"fieldname": "auto_repeat_section",
"fieldtype": "Section Break",
"label": "Auto Repeat"
- },
- {
- "fieldname": "section_break_zymg",
- "fieldtype": "Section Break"
}
],
"grid_page_length": 50,
@@ -1305,7 +1298,7 @@
"idx": 105,
"is_submittable": 1,
"links": [],
- "modified": "2026-05-04 10:10:22.608381",
+ "modified": "2026-05-28 12:34:19.659621",
"modified_by": "Administrator",
"module": "Buying",
"name": "Purchase Order",
diff --git a/erpnext/buying/doctype/purchase_order/purchase_order.py b/erpnext/buying/doctype/purchase_order/purchase_order.py
index e7cd7eb385f..088ad0a2c68 100644
--- a/erpnext/buying/doctype/purchase_order/purchase_order.py
+++ b/erpnext/buying/doctype/purchase_order/purchase_order.py
@@ -5,7 +5,7 @@
import json
import frappe
-from frappe import _, msgprint
+from frappe import _
from frappe.desk.notifications import clear_doctype_notifications
from frappe.model.document import Document
from frappe.utils import cint, cstr, flt
@@ -23,7 +23,6 @@ from erpnext.manufacturing.doctype.blanket_order.blanket_order import (
)
from erpnext.stock.doctype.item.item import get_last_purchase_details
from erpnext.stock.stock_balance import get_ordered_qty, update_bin_qty
-from erpnext.stock.utils import get_bin
from erpnext.subcontracting.doctype.subcontracting_bom.subcontracting_bom import (
get_subcontracting_boms_for_finished_goods,
)
@@ -180,6 +179,9 @@ class PurchaseOrder(BuyingController):
"target_ref_field": "stock_qty",
"source_field": "stock_qty",
"percent_join_field": "material_request",
+ "global_allowance_field": "over_order_allowance",
+ "global_allowance_doctype": "Buying Settings",
+ "item_allowance_field": "over_order_allowance",
}
]
diff --git a/erpnext/buying/doctype/purchase_order/test_purchase_order.py b/erpnext/buying/doctype/purchase_order/test_purchase_order.py
index 4a4a4a35dcb..3d0fa73edae 100644
--- a/erpnext/buying/doctype/purchase_order/test_purchase_order.py
+++ b/erpnext/buying/doctype/purchase_order/test_purchase_order.py
@@ -128,6 +128,44 @@ class TestPurchaseOrder(ERPNextTestSuite):
frappe.db.set_value("Item", "_Test Item", "over_billing_allowance", 0)
frappe.db.set_single_value("Accounts Settings", "over_billing_allowance", 0)
+ def test_over_order_allowance_against_material_request(self) -> None:
+ """Over Order Allowance in Buying Settings must govern PO qty vs MR qty independently
+ from Over Delivery/Receipt Allowance which governs receipt/delivery against a PO."""
+ mr = make_material_request(qty=100)
+ po = make_purchase_order(mr.name)
+ po.supplier = "_Test Supplier"
+ po.items[0].qty = 110 # 10% over the MR qty
+
+ # Without any allowance, submitting should raise an OverAllowanceError
+ from erpnext.controllers.status_updater import OverAllowanceError
+
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 0)
+ frappe.db.set_single_value("Stock Settings", "over_delivery_receipt_allowance", 0)
+ self.assertRaises(OverAllowanceError, po.submit)
+
+ # Granting 10% in Over Order Allowance (Buying Settings) must allow the submit
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 10)
+ po.reload()
+ po.items[0].qty = 110
+ po.submit()
+ self.assertEqual(po.docstatus, 1)
+ po.cancel()
+
+ # Over Delivery/Receipt Allowance must remain independent — changing it must not
+ # affect the MR → PO validation when Over Order Allowance is 0.
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 0)
+ frappe.db.set_single_value("Stock Settings", "over_delivery_receipt_allowance", 50)
+
+ mr2 = make_material_request(qty=100)
+ po2 = make_purchase_order(mr2.name)
+ po2.supplier = "_Test Supplier"
+ po2.items[0].qty = 110
+ self.assertRaises(OverAllowanceError, po2.submit)
+
+ # cleanup
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 0)
+ frappe.db.set_single_value("Stock Settings", "over_delivery_receipt_allowance", 0)
+
def test_update_remove_child_linked_to_mr(self):
"""Test impact on linked PO and MR on deleting/updating row."""
mr = make_material_request(qty=10)
@@ -1431,7 +1469,7 @@ class TestPurchaseOrder(ERPNextTestSuite):
pi1.submit()
self.assertEqual(pi1.grand_total, 10000.0)
- self.assertTrue(len(pi1.items) == 1)
+ self.assertEqual(len(pi1.items), 1)
pi2 = make_pi_from_po(po.name)
self.assertEqual(len(pi2.items), 2)
diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.json b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
index e9f5fab1788..890e2824dc8 100644
--- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
@@ -16,8 +16,6 @@
"status",
"has_unit_price_items",
"amended_from",
- "section_break_trpf",
- "title",
"suppliers_section",
"suppliers",
"items_section",
@@ -44,6 +42,7 @@
"letter_head",
"more_info",
"opportunity",
+ "title",
"address_and_contact_tab",
"billing_address",
"billing_address_display",
@@ -374,10 +373,6 @@
"label": "Shipping Address Details",
"read_only": 1
},
- {
- "fieldname": "section_break_trpf",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -392,7 +387,7 @@
"index_web_pages_for_search": 1,
"is_submittable": 1,
"links": [],
- "modified": "2026-03-30 12:18:08.451201",
+ "modified": "2026-05-28 12:28:46.606963",
"modified_by": "Administrator",
"module": "Buying",
"name": "Request for Quotation",
diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
index cebbece0405..36a2a84ac42 100644
--- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
+++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
@@ -4,6 +4,7 @@
import frappe
from frappe import _
+from frappe.contacts.doctype.contact.contact import get_full_name
from frappe.core.doctype.communication.email import make
from frappe.desk.form.load import get_attachments
from frappe.model.document import Document
@@ -271,12 +272,20 @@ class RequestforQuotation(BuyingController):
supplier_doc.save()
def create_user(self, rfq_supplier, link):
+ contact_name = None
+ if rfq_supplier.contact:
+ name_fields = frappe.get_value(
+ "Contact", rfq_supplier.contact, ["first_name", "middle_name", "last_name"]
+ )
+ if name_fields:
+ contact_name = get_full_name(*name_fields)
+
user = frappe.get_doc(
{
"doctype": "User",
"send_welcome_email": 0,
"email": rfq_supplier.email_id,
- "first_name": rfq_supplier.supplier_name or rfq_supplier.supplier,
+ "first_name": contact_name or rfq_supplier.supplier_name or rfq_supplier.supplier,
"user_type": "Website User",
"redirect_url": link,
}
diff --git a/erpnext/buying/doctype/supplier/supplier.js b/erpnext/buying/doctype/supplier/supplier.js
index 3f5d8dbca04..4d2d64cfcc1 100644
--- a/erpnext/buying/doctype/supplier/supplier.js
+++ b/erpnext/buying/doctype/supplier/supplier.js
@@ -68,6 +68,31 @@ frappe.ui.form.on("Supplier", {
});
frm.make_methods = {
+ "Purchase Order": () =>
+ frappe.model.with_doctype("Purchase Order", function () {
+ const po = frappe.model.get_new_doc("Purchase Order");
+ po.supplier = frm.doc.name;
+ frappe.set_route("Form", "Purchase Order", po.name);
+ }),
+ "Purchase Invoice": () =>
+ frappe.model.with_doctype("Purchase Invoice", function () {
+ const pi = frappe.model.get_new_doc("Purchase Invoice");
+ pi.supplier = frm.doc.name;
+ frappe.set_route("Form", "Purchase Invoice", pi.name);
+ }),
+ "Request for Quotation": () =>
+ frappe.model.with_doctype("Request for Quotation", function () {
+ const rfq = frappe.model.get_new_doc("Request for Quotation");
+ const row = frappe.model.add_child(rfq, "suppliers");
+ row.supplier = frm.doc.name;
+ frappe.set_route("Form", "Request for Quotation", rfq.name);
+ }),
+ "Supplier Quotation": () =>
+ frappe.model.with_doctype("Supplier Quotation", function () {
+ const sq = frappe.model.get_new_doc("Supplier Quotation");
+ sq.supplier = frm.doc.name;
+ frappe.set_route("Form", "Supplier Quotation", sq.name);
+ }),
"Bank Account": () => erpnext.utils.make_bank_account(frm.doc.doctype, frm.doc.name),
"Pricing Rule": () => frm.trigger("make_pricing_rule"),
};
@@ -117,6 +142,20 @@ frappe.ui.form.on("Supplier", {
__("View")
);
+ for (const doctype in frm.make_methods) {
+ frm.add_custom_button(__(doctype), frm.make_methods[doctype], __("Create"));
+ }
+
+ if (frm.doc.supplier_group) {
+ frm.add_custom_button(
+ __("Get Supplier Group Details"),
+ function () {
+ frm.trigger("get_supplier_group_details");
+ },
+ __("Actions")
+ );
+ }
+
if (
cint(frappe.defaults.get_default("enable_common_party_accounting")) &&
frappe.model.can_create("Party Link")
@@ -173,6 +212,8 @@ frappe.ui.form.on("Supplier", {
frm.toggle_reqd("represents_company", true);
} else {
frm.toggle_reqd("represents_company", false);
+ frm.set_value("represents_company", "");
+ frm.set_value("companies", []);
}
},
show_party_link_dialog: function (frm) {
diff --git a/erpnext/buying/doctype/supplier/supplier.json b/erpnext/buying/doctype/supplier/supplier.json
index 60e90517b17..34706a8426c 100644
--- a/erpnext/buying/doctype/supplier/supplier.json
+++ b/erpnext/buying/doctype/supplier/supplier.json
@@ -11,72 +11,75 @@
"engine": "InnoDB",
"field_order": [
"naming_series",
- "supplier_type",
"supplier_name",
+ "supplier_type",
"gender",
"column_break0",
"supplier_group",
"country",
- "is_transporter",
"image",
"defaults_section",
"default_currency",
"default_bank_account",
"column_break_10",
"default_price_list",
- "column_break2",
- "supplier_details",
- "column_break_30",
- "website",
- "language",
- "customer_numbers",
+ "payment_terms",
"contact_and_address_tab",
"address_contacts",
"address_html",
"column_break1",
"contact_html",
"primary_address_and_contact_detail_section",
- "column_break_44",
"supplier_primary_address",
"primary_address",
"column_break_mglr",
"supplier_primary_contact",
"mobile_no",
"email_id",
- "tax_tab",
- "tax_id",
- "tax_category",
- "column_break_27",
- "tax_withholding_category",
- "tax_withholding_group",
"accounting_tab",
- "payment_terms",
"default_accounts_section",
"accounts",
"internal_supplier_section",
"is_internal_supplier",
"represents_company",
"column_break_16",
+ "section_break_pgad",
"companies",
+ "tax_tab",
+ "taxation_section",
+ "tax_id",
+ "tax_category",
+ "column_break_27",
+ "tax_withholding_category",
+ "tax_withholding_group",
"settings_tab",
+ "invoice_settings_section",
+ "is_transporter",
"allow_purchase_invoice_creation_without_purchase_order",
"allow_purchase_invoice_creation_without_purchase_receipt",
"column_break_54",
"disabled",
"is_frozen",
+ "block_supplier_section",
+ "on_hold",
+ "hold_type",
+ "release_date",
"rfq_and_purchase_order_settings_section",
"warn_rfqs",
"prevent_rfqs",
"column_break_oxjw",
"warn_pos",
"prevent_pos",
- "block_supplier_section",
- "on_hold",
- "hold_type",
- "column_break_59",
- "release_date",
"portal_users_tab",
"portal_users",
+ "more_info_tab",
+ "column_break2",
+ "website",
+ "language",
+ "column_break_30",
+ "supplier_details",
+ "section_break_jqla",
+ "customer_numbers",
"dashboard_tab"
],
"fields": [
@@ -110,21 +113,24 @@
{
"fieldname": "default_bank_account",
"fieldtype": "Link",
- "label": "Default Company Bank Account",
+ "label": "Company Bank Account",
"options": "Bank Account"
},
{
+ "description": "Supplier's tax identification number (e.g. PAN, VAT, GST)",
"fieldname": "tax_id",
"fieldtype": "Data",
"label": "Tax ID"
},
{
+ "description": "Determines which tax rules apply to this supplier",
"fieldname": "tax_category",
"fieldtype": "Link",
"label": "Tax Category",
"options": "Tax Category"
},
{
+ "description": "TDS / withholding tax category applied when paying this supplier",
"fieldname": "tax_withholding_category",
"fieldtype": "Link",
"label": "Tax Withholding Category",
@@ -132,15 +138,18 @@
},
{
"default": "0",
+ "description": "Enable to make this supplier selectable as a transporter on Delivery Notes and Stock Entries",
"fieldname": "is_transporter",
"fieldtype": "Check",
"label": "Is Transporter"
},
{
"default": "0",
+ "description": "Used for inter-company transactions",
"fieldname": "is_internal_supplier",
"fieldtype": "Check",
- "label": "Is Internal Supplier"
+ "label": "Is Internal Supplier",
+ "show_description_on_click": 1
},
{
"depends_on": "is_internal_supplier",
@@ -192,6 +201,7 @@
{
"bold": 1,
"default": "0",
+ "description": "Disabled suppliers are hidden from selection in new transactions but remain in historical records",
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled"
@@ -232,7 +242,7 @@
"depends_on": "represents_company",
"fieldname": "companies",
"fieldtype": "Table",
- "label": "Allowed To Transact With",
+ "label": "Allowed to transact with",
"options": "Allowed To Transact With"
},
{
@@ -258,21 +268,24 @@
{
"fieldname": "payment_terms",
"fieldtype": "Link",
- "label": "Default Payment Terms Template",
+ "label": "Payment Terms Template",
"options": "Payment Terms Template"
},
{
"default": "0",
+ "description": "When enabled, transactions with this supplier will be blocked based on the Hold Type below",
"fieldname": "on_hold",
"fieldtype": "Check",
- "label": "Block Supplier"
+ "label": "Block Supplier",
+ "show_description_on_click": 1
},
{
+ "default": "All",
"depends_on": "eval:doc.on_hold",
"fieldname": "hold_type",
"fieldtype": "Select",
"label": "Hold Type",
- "options": "\nAll\nInvoices\nPayments"
+ "options": "All\nInvoices\nPayments"
},
{
"depends_on": "eval:doc.on_hold",
@@ -307,14 +320,13 @@
"read_only": 1
},
{
- "description": "Mention if non-standard payable account",
+ "description": "Override the default payable / advance accounts on a per-company basis. Leave blank to use each company's defaults from Company settings.",
"fieldname": "accounts",
"fieldtype": "Table",
- "label": "Accounts",
+ "label": "Per-Company Accounts",
"options": "Party Account"
},
{
- "collapsible": 1,
"collapsible_depends_on": "supplier_details",
"fieldname": "column_break2",
"fieldtype": "Section Break",
@@ -329,7 +341,7 @@
"oldfieldtype": "Data"
},
{
- "description": "Statutory info and other general information about your Supplier",
+ "description": "General information about your Supplier",
"fieldname": "supplier_details",
"fieldtype": "Text",
"label": "Supplier Details",
@@ -342,6 +354,7 @@
},
{
"default": "0",
+ "description": "Frozen suppliers block ledger entries until unfrozen. Use this to temporarily lock accounting activity without disabling the supplier.",
"fieldname": "is_frozen",
"fieldtype": "Check",
"label": "Is Frozen"
@@ -350,13 +363,13 @@
"default": "0",
"fieldname": "allow_purchase_invoice_creation_without_purchase_order",
"fieldtype": "Check",
- "label": "Allow Purchase Invoice Creation Without Purchase Order"
+ "label": "Allow purchase invoice creation without purchase order"
},
{
"default": "0",
"fieldname": "allow_purchase_invoice_creation_without_purchase_receipt",
"fieldtype": "Check",
- "label": "Allow Purchase Invoice Creation Without Purchase Receipt"
+ "label": "Allow purchase invoice creation without purchase receipt"
},
{
"fieldname": "primary_address_and_contact_detail_section",
@@ -367,7 +380,7 @@
"description": "Reselect, if the chosen contact is edited after save",
"fieldname": "supplier_primary_contact",
"fieldtype": "Link",
- "label": "Supplier Primary Contact",
+ "label": "Primary Contact",
"options": "Contact"
},
{
@@ -380,23 +393,19 @@
"fetch_from": "supplier_primary_contact.email_id",
"fieldname": "email_id",
"fieldtype": "Read Only",
- "label": "Email Id"
- },
- {
- "fieldname": "column_break_44",
- "fieldtype": "Column Break"
+ "label": "Email ID"
},
{
"fieldname": "primary_address",
"fieldtype": "Text Editor",
- "label": "Primary Address",
+ "label": "Primary Address Preview",
"read_only": 1
},
{
"description": "Reselect, if the chosen address is edited after save",
"fieldname": "supplier_primary_address",
"fieldtype": "Link",
- "label": "Supplier Primary Address",
+ "label": "Primary Address",
"options": "Address"
},
{
@@ -431,10 +440,11 @@
"label": "Tax"
},
{
- "collapsible": 1,
+ "collapsible_depends_on": "is_internal_supplier",
"fieldname": "internal_supplier_section",
"fieldtype": "Section Break",
- "label": "Internal Supplier Accounting"
+ "hide_border": 1,
+ "label": "Internal Supplier Details"
},
{
"fieldname": "column_break_16",
@@ -453,10 +463,6 @@
"fieldtype": "Section Break",
"label": "Block Supplier"
},
- {
- "fieldname": "column_break_59",
- "fieldtype": "Column Break"
- },
{
"fieldname": "default_accounts_section",
"fieldtype": "Section Break",
@@ -478,12 +484,14 @@
"fieldtype": "Column Break"
},
{
+ "description": "Account / customer numbers assigned to your companies by this supplier (for reconciliation on their statements)",
"fieldname": "customer_numbers",
"fieldtype": "Table",
"label": "Customer Numbers",
"options": "Customer Number At Supplier"
},
{
+ "description": "Used to pick the correct rate row inside the Tax Withholding Category for this supplier (e.g. Company vs Individual rates)",
"fieldname": "tax_withholding_group",
"fieldtype": "Link",
"label": "Tax Withholding Group",
@@ -499,11 +507,34 @@
{
"fieldname": "rfq_and_purchase_order_settings_section",
"fieldtype": "Section Break",
+ "hidden": 1,
"label": "RFQ and Purchase Order Settings"
},
{
"fieldname": "column_break_oxjw",
"fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "taxation_section",
+ "fieldtype": "Section Break",
+ "label": "Tax Identification"
+ },
+ {
+ "fieldname": "invoice_settings_section",
+ "fieldtype": "Section Break"
+ },
+ {
+ "fieldname": "more_info_tab",
+ "fieldtype": "Tab Break",
+ "label": "More Info"
+ },
+ {
+ "fieldname": "section_break_jqla",
+ "fieldtype": "Section Break"
+ },
+ {
+ "fieldname": "section_break_pgad",
+ "fieldtype": "Section Break"
}
],
"grid_page_length": 50,
@@ -517,7 +548,7 @@
"link_fieldname": "party"
}
],
- "modified": "2026-03-09 17:15:25.465759",
+ "modified": "2026-05-29 13:03:41.864602",
"modified_by": "Administrator",
"module": "Buying",
"name": "Supplier",
diff --git a/erpnext/buying/doctype/supplier/supplier.py b/erpnext/buying/doctype/supplier/supplier.py
index 2a6794072f5..faa47509b07 100644
--- a/erpnext/buying/doctype/supplier/supplier.py
+++ b/erpnext/buying/doctype/supplier/supplier.py
@@ -50,7 +50,7 @@ class Supplier(TransactionBase):
disabled: DF.Check
email_id: DF.ReadOnly | None
gender: DF.Link | None
- hold_type: DF.Literal["", "All", "Invoices", "Payments"]
+ hold_type: DF.Literal["All", "Invoices", "Payments"]
image: DF.AttachImage | None
is_frozen: DF.Check
is_internal_supplier: DF.Check
@@ -88,7 +88,6 @@ class Supplier(TransactionBase):
def before_save(self):
if not self.on_hold:
- self.hold_type = ""
self.release_date = ""
elif self.on_hold and not self.hold_type:
self.hold_type = "All"
diff --git a/erpnext/buying/doctype/supplier/supplier_list.js b/erpnext/buying/doctype/supplier/supplier_list.js
index 987c1e02038..0649e4c7fa5 100644
--- a/erpnext/buying/doctype/supplier/supplier_list.js
+++ b/erpnext/buying/doctype/supplier/supplier_list.js
@@ -1,8 +1,14 @@
frappe.listview_settings["Supplier"] = {
- add_fields: ["supplier_name", "supplier_group", "image", "on_hold"],
+ add_fields: ["supplier_name", "supplier_group", "image", "on_hold", "disabled", "is_frozen"],
get_indicator: function (doc) {
- if (cint(doc.on_hold)) {
- return [__("On Hold"), "red"];
+ if (cint(doc.disabled)) {
+ return [__("Disabled"), "gray", "disabled,=,1"];
+ } else if (cint(doc.on_hold)) {
+ return [__("On Hold"), "red", "on_hold,=,1"];
+ } else if (cint(doc.is_frozen)) {
+ return [__("Frozen"), "orange", "is_frozen,=,1"];
+ } else {
+ return [__("Active"), "green", "disabled,=,0|on_hold,=,0|is_frozen,=,0"];
}
},
};
diff --git a/erpnext/buying/doctype/supplier/test_supplier.py b/erpnext/buying/doctype/supplier/test_supplier.py
index 6d40f584288..48684f49739 100644
--- a/erpnext/buying/doctype/supplier/test_supplier.py
+++ b/erpnext/buying/doctype/supplier/test_supplier.py
@@ -106,7 +106,7 @@ class TestSupplier(ERPNextTestSuite):
def test_supplier_country(self):
# Test that country field exists in Supplier DocType
supplier = frappe.get_doc("Supplier", "_Test Supplier with Country")
- self.assertTrue("country" in supplier.as_dict())
+ self.assertIn("country", supplier.as_dict())
# Test if test supplier field record is 'Greece'
self.assertEqual(supplier.country, "Greece")
diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.json b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
index 17abfd4fb30..a5619bd5f0b 100644
--- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
@@ -20,8 +20,6 @@
"quotation_number",
"has_unit_price_items",
"amended_from",
- "section_break_wwao",
- "title",
"accounting_dimensions_section",
"cost_center",
"dimension_col_break",
@@ -118,6 +116,7 @@
"more_info",
"is_subcontracted",
"column_break_57",
+ "title",
"opportunity",
"connections_tab"
],
@@ -940,10 +939,6 @@
"fieldname": "auto_repeat_section",
"fieldtype": "Section Break",
"label": "Auto Repeat"
- },
- {
- "fieldname": "section_break_wwao",
- "fieldtype": "Section Break"
}
],
"grid_page_length": 50,
@@ -952,7 +947,7 @@
"index_web_pages_for_search": 1,
"is_submittable": 1,
"links": [],
- "modified": "2026-03-30 12:18:35.777574",
+ "modified": "2026-05-28 12:29:37.509487",
"modified_by": "Administrator",
"module": "Buying",
"name": "Supplier Quotation",
diff --git a/erpnext/controllers/queries.py b/erpnext/controllers/queries.py
index 9dfc8a87e4f..2ae16c19d17 100644
--- a/erpnext/controllers/queries.py
+++ b/erpnext/controllers/queries.py
@@ -9,11 +9,10 @@ import frappe
from frappe import qb, scrub
from frappe.desk.reportview import get_filters_cond, get_match_cond
from frappe.permissions import has_permission
-from frappe.query_builder import Case, Criterion, DocType, Field
+from frappe.query_builder import Case, Criterion, DocType
from frappe.query_builder.functions import Concat, CustomFunction, Length, Locate, Substring, Sum
from frappe.utils import nowdate, today, unique
from pypika import Order
-from pypika.terms import LiteralValue
import erpnext
from erpnext.accounts.utils import build_qb_match_conditions
@@ -433,10 +432,15 @@ def get_delivery_notes_to_be_billed(
.where((DeliveryNote.docstatus == 1) & (DeliveryNote.is_return == 0) & (DeliveryNote.per_billed > 0))
)
+ query = frappe.qb.get_query(
+ "Delivery Note",
+ fields=fields,
+ filters=filters,
+ ignore_permissions=False,
+ )
+
query = (
- frappe.qb.from_(DeliveryNote)
- .select(*[DeliveryNote[f] for f in fields])
- .where(
+ query.where(
(DeliveryNote.docstatus == 1)
& (DeliveryNote.status.notin(["Stopped", "Closed"]))
& (DeliveryNote[searchfield].like(f"%{txt}%"))
@@ -450,12 +454,11 @@ def get_delivery_notes_to_be_billed(
)
)
)
+ .orderby(DeliveryNote[searchfield], order=Order.asc)
+ .limit(page_len)
+ .offset(start)
)
- if filters and isinstance(filters, dict):
- for key, value in filters.items():
- query = query.where(DeliveryNote[key] == value)
- query = query.orderby(DeliveryNote[searchfield], order=Order.asc).limit(page_len).offset(start)
return query.run(as_dict=as_dict)
diff --git a/erpnext/controllers/status_updater.py b/erpnext/controllers/status_updater.py
index a87a1bf4e99..06cc57d6287 100644
--- a/erpnext/controllers/status_updater.py
+++ b/erpnext/controllers/status_updater.py
@@ -262,15 +262,17 @@ class StatusUpdater(Document):
def validate_qty(self):
"""Validates qty at row level"""
- self.item_allowance = {}
- self.global_qty_allowance = None
- self.global_amount_allowance = None
-
for args in self.status_updater:
if "target_ref_field" not in args or args.get("validate_qty") is False:
# if target_ref_field is not specified or validate_qty is explicitly set to False, skip validation
continue
+ # Reset per-args so each config block uses its own allowance source without
+ # leaking cached values from a previous config block.
+ self.item_allowance = {}
+ self.global_qty_allowance = None
+ self.global_amount_allowance = None
+
items_to_validate = []
selling_negative_rate_allowed = frappe.get_single_value(
"Selling Settings", "allow_negative_rates_for_items"
@@ -402,9 +404,12 @@ class StatusUpdater(Document):
def check_overflow_with_allowance(self, item, args):
"""
- Checks if there is overflow condering a relaxation allowance
+ Checks if there is overflow considering a relaxation allowance.
"""
qty_or_amount = "qty" if "qty" in args["target_ref_field"] else "amount"
+ global_qty_allowance_field = args.get("global_allowance_field", "over_delivery_receipt_allowance")
+ global_qty_allowance_doctype = args.get("global_allowance_doctype", "Stock Settings")
+ item_qty_allowance_field = args.get("item_allowance_field", "over_delivery_receipt_allowance")
# check if overflow is within allowance
(
@@ -419,6 +424,9 @@ class StatusUpdater(Document):
self.global_qty_allowance,
self.global_amount_allowance,
qty_or_amount,
+ global_qty_allowance_field,
+ global_qty_allowance_doctype,
+ item_qty_allowance_field,
)
if args["source_dt"] != "Pick List Item"
else (0, {}, None, None)
@@ -463,7 +471,9 @@ class StatusUpdater(Document):
"Quotation Item",
"Packed Item",
]:
- if qty_or_amount == "qty":
+ if args.get("target_dt") == "Material Request Item":
+ action_msg = _('To allow over ordering, update "Over Order Allowance" in Buying Settings.')
+ elif qty_or_amount == "qty":
action_msg = _(
'To allow over receipt / delivery, update "Over Receipt/Delivery Allowance" in Stock Settings or the Item.'
)
@@ -724,16 +734,28 @@ class StatusUpdater(Document):
ref_doc.set_status(update=True)
-@frappe.request_cache
def get_allowance_for(
item_code,
item_allowance=None,
global_qty_allowance=None,
global_amount_allowance=None,
qty_or_amount="qty",
+ global_qty_allowance_field="over_delivery_receipt_allowance",
+ global_qty_allowance_doctype="Stock Settings",
+ item_qty_allowance_field="over_delivery_receipt_allowance",
):
"""
- Returns the allowance for the item, if not set, returns global allowance
+ Returns the allowance for the item, if not set, returns global allowance.
+
+ Args:
+ item_code: The item to get allowance for.
+ item_allowance: Cached per-item allowances from a previous call.
+ global_qty_allowance: Cached global qty allowance from a previous call.
+ global_amount_allowance: Cached global amount allowance from a previous call.
+ qty_or_amount: Whether to return qty or amount allowance.
+ global_qty_allowance_field: The field name on the settings doctype to use for the global qty allowance.
+ global_qty_allowance_doctype: The settings doctype to read the global qty allowance from.
+ item_qty_allowance_field: The field name on the Item doctype to use for the item-level qty allowance override.
"""
if item_allowance is None:
item_allowance = {}
@@ -755,13 +777,13 @@ def get_allowance_for(
)
qty_allowance, over_billing_allowance = frappe.get_cached_value(
- "Item", item_code, ["over_delivery_receipt_allowance", "over_billing_allowance"]
+ "Item", item_code, [item_qty_allowance_field, "over_billing_allowance"]
)
if qty_or_amount == "qty" and not qty_allowance:
if global_qty_allowance is None:
global_qty_allowance = flt(
- frappe.get_cached_value("Stock Settings", None, "over_delivery_receipt_allowance")
+ frappe.get_single_value(global_qty_allowance_doctype, global_qty_allowance_field)
)
qty_allowance = global_qty_allowance
elif qty_or_amount == "amount" and not over_billing_allowance:
diff --git a/erpnext/controllers/stock_controller.py b/erpnext/controllers/stock_controller.py
index aebb30bf57c..693f48c9c64 100644
--- a/erpnext/controllers/stock_controller.py
+++ b/erpnext/controllers/stock_controller.py
@@ -1311,7 +1311,7 @@ class StockController(AccountsController):
elif self.doctype == "Stock Entry" and row.t_warehouse:
qi_required = True # inward stock needs inspection
- if row.get("type") or row.get("is_legacy_scrap_item"):
+ if row.get("secondary_item_type") or row.get("is_legacy_scrap_item"):
continue
if qi_required: # validate row only if inspection is required on item level
@@ -1979,7 +1979,7 @@ def repost_required_for_queue(doc: StockController) -> bool:
@frappe.whitelist()
-def check_item_quality_inspection(doctype: str, items: str | list[dict]):
+def check_item_quality_inspection(doctype: str, docstatus: str | int, items: str | list[dict]):
if isinstance(items, str):
items = json.loads(items)
@@ -1991,13 +1991,30 @@ def check_item_quality_inspection(doctype: str, items: str | list[dict]):
"Delivery Note": "inspection_required_before_delivery",
}
- items_to_remove = []
- for item in items:
- if not frappe.db.get_value("Item", item.get("item_code"), inspection_fieldname_map.get(doctype)):
- items_to_remove.append(item)
- items = [item for item in items if item not in items_to_remove]
+ inspection_fieldname = inspection_fieldname_map.get(doctype)
+ if inspection_fieldname is None:
+ return []
- return items
+ allow_after_transaction = cint(docstatus) == 1 and frappe.get_single_value(
+ "Stock Settings", "allow_to_make_quality_inspection_after_purchase_or_delivery"
+ )
+
+ if allow_after_transaction:
+ return items
+
+ item_codes = list({item.get("item_code") for item in items})
+
+ Item = frappe.qb.DocType("Item")
+ results = (
+ frappe.qb.from_(Item)
+ .select(Item.name)
+ .where((Item.name.isin(item_codes)) & (Item[inspection_fieldname] == 1))
+ .run(as_dict=True)
+ )
+
+ inspection_required_items = {row.name for row in results}
+
+ return [item for item in items if item.get("item_code") in inspection_required_items]
@frappe.whitelist()
diff --git a/erpnext/controllers/subcontracting_controller.py b/erpnext/controllers/subcontracting_controller.py
index 0ab520d8548..29fd2ad83d3 100644
--- a/erpnext/controllers/subcontracting_controller.py
+++ b/erpnext/controllers/subcontracting_controller.py
@@ -7,6 +7,7 @@ from collections import defaultdict
import frappe
from frappe import _
+from frappe.model.document import Document
from frappe.model.mapper import get_mapped_doc
from frappe.utils import cint, flt, get_link_to_form
@@ -150,7 +151,7 @@ class SubcontractingController(StockController):
).format(item.idx, get_link_to_form("Item", item.item_code))
)
- if not item.get("type") and not item.get("is_legacy_scrap_item"):
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item"):
if not is_sub_contracted_item:
frappe.throw(
_("Row {0}: Item {1} must be a subcontracted item.").format(item.idx, item.item_name)
@@ -1243,10 +1244,10 @@ class SubcontractingController(StockController):
total_amt = sum(
flt(item.amount)
for item in self.get("items")
- if not item.get("type") and not item.get("is_legacy_scrap_item")
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item")
)
for item in self.items:
- if not item.get("type") and not item.get("is_legacy_scrap_item"):
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item"):
item.additional_cost_per_qty = (
(item.amount * self.total_additional_costs) / total_amt
) / item.qty
@@ -1254,15 +1255,15 @@ class SubcontractingController(StockController):
total_qty = sum(
flt(item.qty)
for item in self.get("items")
- if not item.get("type") and not item.get("is_legacy_scrap_item")
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item")
)
additional_cost_per_qty = self.total_additional_costs / total_qty
for item in self.items:
- if not item.get("type") and not item.get("is_legacy_scrap_item"):
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item"):
item.additional_cost_per_qty = additional_cost_per_qty
else:
for item in self.items:
- if not item.get("type") and not item.get("is_legacy_scrap_item"):
+ if not item.get("secondary_item_type") and not item.get("is_legacy_scrap_item"):
item.additional_cost_per_qty = 0
@frappe.whitelist()
@@ -1529,9 +1530,13 @@ def make_return_stock_entry_for_subcontract(
@frappe.whitelist()
-def get_materials_from_supplier(
- subcontract_order: str, rm_details: str | list, order_doctype: str = "Subcontracting Order"
-):
+def get_materials_from_supplier(source_name: str, target_doc: Document | str | None = None):
+ args = frappe.flags.args or {}
+
+ subcontract_order = args.get("subcontract_order") or source_name
+ rm_details = args.get("rm_details")
+ order_doctype = args.get("order_doctype") or "Subcontracting Order"
+
if isinstance(rm_details, str):
rm_details = json.loads(rm_details)
diff --git a/erpnext/controllers/subcontracting_inward_controller.py b/erpnext/controllers/subcontracting_inward_controller.py
index e331ccfe26c..d1c36b61d32 100644
--- a/erpnext/controllers/subcontracting_inward_controller.py
+++ b/erpnext/controllers/subcontracting_inward_controller.py
@@ -241,7 +241,7 @@ class SubcontractingInwardController:
item
for item in self.get("items")
if not item.is_finished_item
- and not item.type
+ and not item.secondary_item_type
and not item.is_legacy_scrap_item
and frappe.get_cached_value("Item", item.item_code, "is_customer_provided_item")
]
@@ -372,7 +372,7 @@ class SubcontractingInwardController:
if self.purpose in ["Subcontracting Delivery", "Subcontracting Return", "Manufacture"]:
for item in self.items:
if (
- item.is_finished_item or item.type or item.is_legacy_scrap_item
+ item.is_finished_item or item.secondary_item_type or item.is_legacy_scrap_item
) and item.valuation_rate == 0:
item.allow_zero_valuation_rate = 1
@@ -472,7 +472,7 @@ class SubcontractingInwardController:
self.validate_delivery_on_save()
else:
for item in self.items:
- if not item.type and not item.is_legacy_scrap_item:
+ if not item.secondary_item_type and not item.is_legacy_scrap_item:
delivered_qty, returned_qty = frappe.get_value(
"Subcontracting Inward Order Item",
item.scio_detail,
@@ -543,7 +543,7 @@ class SubcontractingInwardController:
bold(
frappe.get_cached_value(
"Subcontracting Inward Order Item"
- if not item.type and not item.is_legacy_scrap_item
+ if not item.secondary_item_type and not item.is_legacy_scrap_item
else "Subcontracting Inward Order Secondary Item",
item.scio_detail,
"stock_uom",
@@ -595,7 +595,7 @@ class SubcontractingInwardController:
)
for item in [item for item in self.items if not item.is_finished_item]:
- if item.type or item.is_legacy_scrap_item:
+ if item.secondary_item_type or item.is_legacy_scrap_item:
scio_secondary_item = frappe.get_value(
"Subcontracting Inward Order Secondary Item",
{
@@ -655,7 +655,7 @@ class SubcontractingInwardController:
for item in self.items:
doctype = (
"Subcontracting Inward Order Item"
- if not item.type and not item.is_legacy_scrap_item
+ if not item.secondary_item_type and not item.is_legacy_scrap_item
else "Subcontracting Inward Order Secondary Item"
)
qty_map[doctype][item.scio_detail] += (
@@ -781,7 +781,7 @@ class SubcontractingInwardController:
items = [
item
for item in self.items
- if not item.is_finished_item and not item.type and not item.is_legacy_scrap_item
+ if not item.is_finished_item and not item.secondary_item_type and not item.is_legacy_scrap_item
]
item_code_wh = frappe._dict(
{
@@ -884,7 +884,9 @@ class SubcontractingInwardController:
def update_inward_order_secondary_items(self):
if (scio := self.subcontracting_inward_order) and self.purpose == "Manufacture":
- secondary_items_list = [item for item in self.items if item.type or item.is_legacy_scrap_item]
+ secondary_items_list = [
+ item for item in self.items if item.secondary_item_type or item.is_legacy_scrap_item
+ ]
secondary_items = defaultdict(float)
for item in secondary_items_list:
@@ -958,7 +960,7 @@ class SubcontractingInwardController:
stock_uom=secondary_item.stock_uom,
warehouse=secondary_item.t_warehouse,
produced_qty=secondary_item.transfer_qty,
- type=secondary_item.type,
+ secondary_item_type=secondary_item.secondary_item_type,
delivered_qty=0,
reference_name=frappe.get_value(
"Work Order", self.work_order, "subcontracting_inward_order_item"
diff --git a/erpnext/controllers/tests/test_subcontracting_controller.py b/erpnext/controllers/tests/test_subcontracting_controller.py
index 0dbacb3c22d..1b5f94b42cc 100644
--- a/erpnext/controllers/tests/test_subcontracting_controller.py
+++ b/erpnext/controllers/tests/test_subcontracting_controller.py
@@ -347,7 +347,12 @@ class TestSubcontractingController(ERPNextTestSuite):
sco.load_from_db()
self.assertEqual(sco.supplied_items[0].consumed_qty, 5)
- doc = get_materials_from_supplier(sco.name, [d.name for d in sco.supplied_items])
+ frappe.flags.args = frappe._dict(
+ subcontract_order=sco.name,
+ rm_details=[d.name for d in sco.supplied_items],
+ order_doctype=sco.doctype,
+ )
+ doc = get_materials_from_supplier(sco.name)
doc.save()
self.assertEqual(doc.items[0].qty, 1)
self.assertEqual(doc.items[0].s_warehouse, "_Test Warehouse 1 - _TC")
@@ -404,7 +409,12 @@ class TestSubcontractingController(ERPNextTestSuite):
sco.load_from_db()
self.assertEqual(sco.supplied_items[0].consumed_qty, 5)
- doc = get_materials_from_supplier(sco.name, [d.name for d in sco.supplied_items])
+ frappe.flags.args = frappe._dict(
+ subcontract_order=sco.name,
+ rm_details=[d.name for d in sco.supplied_items],
+ order_doctype=sco.doctype,
+ )
+ doc = get_materials_from_supplier(sco.name)
self.assertEqual(doc.items[0].qty, 1)
self.assertEqual(doc.items[0].s_warehouse, "_Test Warehouse 1 - _TC")
self.assertEqual(doc.items[0].t_warehouse, "_Test Warehouse - _TC")
@@ -1133,7 +1143,12 @@ class TestSubcontractingController(ERPNextTestSuite):
sco.load_from_db()
self.assertEqual(sco.supplied_items[0].consumed_qty, 5)
- doc = get_materials_from_supplier(sco.name, [d.name for d in sco.supplied_items])
+ frappe.flags.args = frappe._dict(
+ subcontract_order=sco.name,
+ rm_details=[d.name for d in sco.supplied_items],
+ order_doctype=sco.doctype,
+ )
+ doc = get_materials_from_supplier(sco.name)
self.assertEqual(doc.items[0].qty, 1)
self.assertEqual(doc.items[0].s_warehouse, "_Test Warehouse 1 - _TC")
self.assertEqual(doc.items[0].t_warehouse, "_Test Warehouse - _TC")
diff --git a/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py b/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py
index 12105703772..260b4ac2886 100644
--- a/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py
+++ b/erpnext/erpnext_integrations/doctype/plaid_settings/test_plaid_settings.py
@@ -18,7 +18,7 @@ from erpnext.tests.utils import ERPNextTestSuite
class TestPlaidSettings(ERPNextTestSuite):
def test_plaid_disabled(self):
frappe.db.set_single_value("Plaid Settings", "enabled", 0)
- self.assertTrue(get_plaid_configuration() == "disabled")
+ self.assertEqual(get_plaid_configuration(), "disabled")
def test_add_account_type(self):
add_account_type("brokerage")
@@ -98,4 +98,4 @@ class TestPlaidSettings(ERPNextTestSuite):
new_bank_transaction(transactions)
- self.assertTrue(len(frappe.get_all("Bank Transaction")) == 1)
+ self.assertEqual(len(frappe.get_all("Bank Transaction")), 1)
diff --git a/erpnext/locale/ar.po b/erpnext/locale/ar.po
index 5b907c5f521..ffeccf04428 100644
--- a/erpnext/locale/ar.po
+++ b/erpnext/locale/ar.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " التجميع الفرعي"
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"الأصناف المقدمة من العملاء\" لا يمكن شرائها"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"الأصناف المقدمة من العملاء\" لا يمكن ان تحتوي على تكلفة"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"اصل ثابت\" لا يمكن أن يكون غير محدد، حيث يوجد سجل أصول مقابل البند"
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr "'على أساس' و 'المجموعة حسب' لا يمكن أن يكو
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "يجب أن تكون \"الأيام منذ آخر طلب\" أكبر من أو تساوي الصفر"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr "من تاريخ (مطلوب)"
msgid "'From Date' must be after 'To Date'"
msgstr "\"من تاريخ \" يجب أن يكون بعد \" إلى تاريخ \""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "\"لهُ رقم تسلسل\" لا يمكن ان يكون \"نعم\" لبند غير قابل للتخزين"
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'افتتاحي'"
@@ -346,8 +346,8 @@ msgstr "{0} الحساب مستخدم بواسطة{1} استخدم حساب آخ
msgid "'{0}' has been already added."
msgstr "لقد تمت إضافة '{0}' بالفعل."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "أكثر من 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -758,7 +758,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -775,7 +775,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -819,7 +819,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -892,11 +892,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -941,7 +941,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "مجموعة الزبائن موجودة بنفس الاسم أرجو تغير اسم العميل أو اعادة تسمية مجموعة الزبائن\\n \\nA Customer Group exists with same name please change the Customer name or rename the Customer Group"
@@ -1105,11 +1105,11 @@ msgstr ""
msgid "Abbreviation"
msgstr "اسم مختصر"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "الاختصار يستخدم بالفعل لشركة أخرى\\n \\nAbbreviation already used for another company"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "الاسم المختصر إلزامي"
@@ -1117,7 +1117,7 @@ msgstr "الاسم المختصر إلزامي"
msgid "Abbreviation: {0} must appear only once"
msgstr "الاختصار: يجب أن يظهر {0} مرة واحدة فقط"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "فوق"
@@ -1171,7 +1171,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "كمية مقبولة"
@@ -1207,7 +1207,7 @@ msgstr "مفتاح الوصول مطلوب لموفر الخدمة: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "وفقًا لـ CEFACT/ICG/2010/IC013 أو CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "وفقًا لقائمة المواد {0}، فإن العنصر '{1}' مفقود في إدخال المخزون."
@@ -1325,8 +1325,8 @@ msgstr ""
msgid "Account Manager"
msgstr "إدارة حساب المستخدم"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "الحساب مفقود"
@@ -1344,7 +1344,7 @@ msgstr "الحساب مفقود"
msgid "Account Name"
msgstr "اسم الحساب"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "الحساب غير موجود"
@@ -1357,7 +1357,7 @@ msgstr "الحساب غير موجود"
msgid "Account Number"
msgstr "رقم الحساب"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "رقم الحساب {0} بالفعل مستخدم في الحساب {1}"
@@ -1396,7 +1396,7 @@ msgstr "نوع الحساب الفرعي"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1412,11 +1412,11 @@ msgstr "نوع الحساب"
msgid "Account Value"
msgstr "قيمة الحساب"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "رصيد الحساب بالفعل دائن ، لا يسمح لك لتعيين ' الرصيد يجب ان يكون ' ك ' مدين '\\n \\nAccount balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "رصيد الحساب رصيد مدين، لا يسمح لك بتغييره 'الرصيد يجب أن يكون دائن'"
@@ -1483,15 +1483,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "لا يمكن تحويل الحساب إلى دفتر الأستاذ لأن لديه حسابات فرعية\\n \\nAccount with child nodes cannot be converted to ledger"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "الحساب لديه حسابات فرعية لا يمكن إضافته لدفتر الأستاذ.\\n \\nAccount with child nodes cannot be set as ledger"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "لا يمكن تحويل حساب جرت عليه أي عملية إلى تصنيف مجموعة"
@@ -1499,8 +1499,8 @@ msgstr "لا يمكن تحويل حساب جرت عليه أي عملية إلى
msgid "Account with existing transaction can not be deleted"
msgstr "الحساب لديه معاملات موجودة لا يمكن حذفه\\n \\nAccount with existing transaction can not be deleted"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "لا يمكن تحويل الحساب مع الحركة الموجودة إلى دفتر الأستاذ\\n \\nAccount with existing transaction cannot be converted to ledger"
@@ -1508,11 +1508,11 @@ msgstr "لا يمكن تحويل الحساب مع الحركة الموجودة
msgid "Account {0} added multiple times"
msgstr "تمت إضافة الحساب {0} عدة مرات"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "لا يمكن تحويل الحساب {0} إلى مجموعة لأنه تم تعيينه على أنه {1} لـ {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "لا يمكن تعطيل الحساب {0} لأنه تم تعيينه بالفعل على أنه {1} لـ {2}."
@@ -1520,11 +1520,11 @@ msgstr "لا يمكن تعطيل الحساب {0} لأنه تم تعيينه ب
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "الحساب {0} لا يتنمى للشركة {1}\\n \\nAccount {0} does not belong to company: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "حساب {0} غير موجود"
@@ -1540,15 +1540,15 @@ msgstr "الحساب {0} لا يتطابق مع الشركة {1} في طريقة
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "الحساب {0} موجود في الشركة الأم {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "تتم إضافة الحساب {0} في الشركة التابعة {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "تم تعطيل الحساب {0}."
@@ -1556,7 +1556,7 @@ msgstr "تم تعطيل الحساب {0}."
msgid "Account {0} is frozen"
msgstr "الحساب {0} مجمد\\n \\nAccount {0} is frozen"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "الحساب {0} غير صحيح. يجب أن تكون عملة الحساب {1}"
@@ -1564,19 +1564,19 @@ msgstr "الحساب {0} غير صحيح. يجب أن تكون عملة الحس
msgid "Account {0} should be of type Expense"
msgstr "حساب {0} يجب أن يكون من نوع المصروفات"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "الحساب {0}: الحساب الرئيسي {1} لا يمكن أن يكون حساب دفتر أستاذ"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "الحساب {0}: الحساب الرئيسي {1} لا ينتمي إلى الشركة: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "الحساب {0}: الحسابه الأب {1} غير موجود"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "الحساب {0}: لا يمكنك جعله حساب رئيسي"
@@ -1592,7 +1592,7 @@ msgstr "الحساب: {0} لا يمكن تحديثه إلا من خلال معا
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "الحساب: {0} غير مسموح به بموجب إدخال الدفع"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "الحساب: {0} مع العملة: {1} لا يمكن اختياره"
@@ -1877,8 +1877,8 @@ msgstr "القيود المحاسبة"
msgid "Accounting Entry for Asset"
msgstr "المدخلات الحسابية للأصول"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1902,8 +1902,8 @@ msgstr "القيد المحاسبي للخدمة"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "القيود المحاسبية للمخزون"
@@ -1912,7 +1912,7 @@ msgstr "القيود المحاسبية للمخزون"
msgid "Accounting Entry for {0}"
msgstr "القيد المحاسبي لـ {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "المدخل المحاسبي ل {0}: {1} يمكن أن يكون فقط بالعملة {1}.\\n \\nAccounting Entry for {0}: {1} can only be made in currency: {2}"
@@ -1967,7 +1967,6 @@ msgstr "تم تجميد القيود المحاسبية حتى هذا التار
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1980,14 +1979,13 @@ msgstr "تم تجميد القيود المحاسبية حتى هذا التار
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "الحسابات"
@@ -2017,8 +2015,8 @@ msgstr "الحسابات المفقودة من التقرير"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2118,15 +2116,15 @@ msgstr "جدول الحسابات لا يمكن أن يكون فارغا."
msgid "Accounts to Merge"
msgstr "الحسابات المراد دمجها"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "إستهلاك متراكم"
@@ -2291,7 +2289,7 @@ msgstr "الإجراءات المنجزة"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2415,7 +2413,7 @@ msgstr "تاريخ الإنتهاء الفعلي"
msgid "Actual End Date (via Timesheet)"
msgstr "تاريخ الإنتهاء الفعلي (عبر ورقة الوقت)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "تاريخ النهاية الفعلي لا يمكن أن يكون قبل تاريخ البداية الفعلي"
@@ -2537,7 +2535,7 @@ msgstr "الوقت الفعلي (بالساعات)"
msgid "Actual qty in stock"
msgstr "الكمية الفعلية في المخزون"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "نوع الضريبة الفعلي لا يمكن تضمينه في معدل الصنف في الصف {0}"
@@ -2546,7 +2544,7 @@ msgstr "نوع الضريبة الفعلي لا يمكن تضمينه في مع
msgid "Ad-hoc Qty"
msgstr "الكَميَّة المخصصة"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "إضافة و تعديل الأسعار"
@@ -3045,7 +3043,7 @@ msgstr "معلومة اضافية"
msgid "Additional Information updated successfully."
msgstr "تم تحديث المعلومات الإضافية بنجاح."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "نقل مواد إضافية"
@@ -3068,7 +3066,7 @@ msgstr "تكاليف تشغيل اضافية"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3076,11 +3074,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "معلومات إضافية عن الزبون."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3226,11 +3219,6 @@ msgstr "يجب ربط العنوان بشركة. الرجاء إضافة صف ل
msgid "Address used to determine Tax Category in transactions"
msgstr "العنوان المستخدم لتحديد فئة الضريبة في المعاملات"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "ضبط الكميَّة"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3243,8 +3231,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "نفقات إدارية"
@@ -3312,7 +3300,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "دفعات مقدمة"
@@ -3432,7 +3420,7 @@ msgstr "مقابل الحساب"
msgid "Against Blanket Order"
msgstr "ضد بطانية النظام"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "مقابل طلب العميل {0}"
@@ -3574,11 +3562,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "(العمر (أيام"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "السن ({0})"
@@ -3728,21 +3716,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "جميع الاقسام"
@@ -3822,7 +3810,7 @@ msgstr "جميع مجموعات الموردين"
msgid "All Territories"
msgstr "جميع الأقاليم"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "جميع المخازن"
@@ -3836,6 +3824,11 @@ msgstr "تمت تسوية جميع المخصصات بنجاح"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "يجب نقل جميع الاتصالات بما في ذلك وما فوقها إلى الإصدار الجديد"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "جميع العناصر مطلوبة مسبقاً"
@@ -3844,23 +3837,23 @@ msgstr "جميع العناصر مطلوبة مسبقاً"
msgid "All items have already been Invoiced/Returned"
msgstr "تم بالفعل تحرير / إرجاع جميع العناصر"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "تم استلام جميع العناصر مسبقاً"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "جميع الإصناف تم نقلها لأمر العمل"
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3874,11 +3867,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr "تم إرجاع جميع العناصر مسبقاً."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "تم بالفعل إصدار فاتورة / إرجاع جميع هذه العناصر"
@@ -3897,7 +3890,7 @@ msgstr "تخصيص"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "تخصيص السلف تلقائيا (الداخل أولا الخارج أولا)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "تخصيص مبلغ الدفع"
@@ -3907,7 +3900,7 @@ msgstr "تخصيص مبلغ الدفع"
msgid "Allocate Payment Based On Payment Terms"
msgstr "تخصيص الدفع على أساس شروط الدفع"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3937,7 +3930,7 @@ msgstr "تخصيص"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3994,7 +3987,7 @@ msgstr "الكمية المخصصة"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4058,7 +4051,7 @@ msgstr "السماح في المرتجعات"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4181,16 +4174,6 @@ msgstr "السماح بإعادة ضبط اتفاقية مستوى الخدمة
msgid "Allow Sales"
msgstr "السماح بالمبيعات"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "السماح بإنشاء فاتورة المبيعات بدون إشعار التسليم"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "السماح بإنشاء فاتورة المبيعات بدون طلب مبيعات"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4316,6 +4299,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4392,10 +4385,8 @@ msgstr "الأصناف المسموح بها"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "سمح للاعتماد مع"
@@ -4407,6 +4398,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4448,8 +4444,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4690,7 +4686,7 @@ msgstr ""
msgid "Amount"
msgstr "كمية"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "المبلغ (بالدرهم الإماراتي)"
@@ -4824,12 +4820,12 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "مبلغ {0} {1} مقابل {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "مبلغ {0} {1} خصم مقابل {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4874,11 +4870,11 @@ msgstr "الإجمالي"
msgid "An Item Group is a way to classify items based on types."
msgstr "مجموعة العناصر هي طريقة لتصنيف العناصر بناءً على الأنواع."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "حدث خطأ أثناء إعادة نشر تقييم العنصر عبر {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "حدث خطأ أثناء عملية التحديث"
@@ -5418,7 +5414,7 @@ msgstr "نظرًا لتمكين الحقل {0} ، يكون الحقل {1} إلز
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "أثناء تمكين الحقل {0} ، يجب أن تكون قيمة الحقل {1} أكثر من 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "بما أن هناك معاملات مقدمة بالفعل مقابل العنصر {0}، فلا يمكنك تغيير قيمة {1}."
@@ -5430,7 +5426,7 @@ msgstr "نظراً لوجود مخزون محجوز، لا يمكنك تعطيل
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "نظرًا لوجود عناصر تجميع فرعية كافية، فإن أمر العمل غير مطلوب للمستودع {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "نظرًا لوجود مواد خام كافية ، فإن طلب المواد ليس مطلوبًا للمستودع {0}."
@@ -5568,7 +5564,7 @@ msgstr "حساب فئة الأصول"
msgid "Asset Category Name"
msgstr "اسم فئة الأصول"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "فئة الموجودات إلزامية لبنود الموجودات الثابتة\\n \\nAsset Category is mandatory for Fixed Asset item"
@@ -5745,8 +5741,8 @@ msgstr "كَمَيَّة الأصول"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5846,7 +5842,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "لا يمكن إلغاء الأصل، لانه بالفعل {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "لا يمكن التخلص من الأصل قبل آخر قيد استهلاك."
@@ -5878,7 +5874,7 @@ msgstr "الأصل معطل بسبب إصلاح الأصل {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "تم استلام الأصل في الموقع {0} وتم إصداره للموظف {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "تم استعادة الأصل"
@@ -5886,20 +5882,20 @@ msgstr "تم استعادة الأصل"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "تمت استعادة الأصل بعد إلغاء رسملة الأصل {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "تم إرجاع الأصل"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "الأصول الملغاة"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "ألغت الأصول عن طريق قيد اليومية {0}\\n \\n Asset scrapped via Journal Entry {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "تم بيع الأصل"
@@ -5919,7 +5915,7 @@ msgstr "تم تحديث الأصل بعد تقسيمه إلى الأصل {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "تم تحديث الأصل بسبب إصلاح الأصل {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "لا يمكن إلغاء الأصل {0} ، كما هو بالفعل {1}\\n \\nAsset {0} cannot be scrapped, as it is already {1}"
@@ -5960,7 +5956,7 @@ msgstr "لم يتم ضبط الأصل {0} لحساب الاستهلاك."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "لم يتم إرسال الأصل {0} . يرجى إرسال الأصل قبل المتابعة."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "الاصل {0} يجب تقديمه"
@@ -6010,7 +6006,7 @@ msgstr "لم يتم إنشاء الأصول لـ {item_code}. سيكون علي
msgid "Assets {assets_link} created for {item_code}"
msgstr "الأصول {assets_link} التي تم إنشاؤها لـ {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "إسناد الوظيفة إلى الموظف"
@@ -6071,7 +6067,7 @@ msgstr "يجب اختيار واحدة على الأقل من الوحدات ا
msgid "At least one of the Selling or Buying must be selected"
msgstr "يجب اختيار واحد على الأقل من خياري البيع أو الشراء"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6079,21 +6075,17 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr "يلزم وجود صف واحد على الأقل في نموذج التقرير المالي"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "يُشترط وجود مستودع واحد على الأقل"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "في السطر #{0}: يجب ألا يكون حساب الفروقات حسابًا من نوع الأسهم، يُرجى تغيير نوع الحساب {1} أو تحديد حساب مختلف."
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "في الصف # {0}: لا يمكن أن يكون معرف التسلسل {1} أقل من معرف تسلسل الصف السابق {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "في الصف #{0}: لقد اخترت حساب الفرق {1}، وهو حساب من نوع تكلفة البضائع المباعة. يرجى اختيار حساب مختلف."
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6175,11 +6167,11 @@ msgstr "السمة اسم"
msgid "Attribute Value"
msgstr "السمة القيمة"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "جدول الخصائص إلزامي"
@@ -6187,19 +6179,19 @@ msgstr "جدول الخصائص إلزامي"
msgid "Attribute value: {0} must appear only once"
msgstr "قيمة السمة: {0} يجب أن تظهر مرة واحدة فقط"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "تم تحديد السمة {0} عدة مرات في جدول السمات\\n \\nAttribute {0} selected multiple times in Attributes Table"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "سمات"
@@ -6411,7 +6403,7 @@ msgstr "المطابقة التلقائية وتعيين الطرف في الم
msgid "Auto re-order"
msgstr "إعادة ترتيب تلقائي"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "تكرار تلقائي للمستندات المحدثة"
@@ -6523,7 +6515,7 @@ msgstr "متاح للاستخدام تاريخ"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "الكمية المتاحة"
@@ -6612,10 +6604,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "مطلوب تاريخ متاح للاستخدام"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "الكمية المتاحة هي {0} ، تحتاج إلى {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "متاح {0}"
@@ -6624,8 +6612,8 @@ msgstr "متاح {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "يجب أن يكون التاريخ متاحًا بعد تاريخ الشراء"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "متوسط العمر"
@@ -6649,7 +6637,9 @@ msgstr "متوسط قيمة الطلب"
msgid "Average Order Values"
msgstr "متوسط قيمة الطلبات"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "المعدل المتوسط"
@@ -6673,7 +6663,7 @@ msgid "Avg Rate"
msgstr "المعدل المتوسط"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "متوسط المعدل (رصيد المخزون)"
@@ -6731,7 +6721,7 @@ msgstr "الكمية في الصندوق"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6754,7 +6744,7 @@ msgstr "قائمة مكونات المواد"
msgid "BOM 1"
msgstr "BOM 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "يجب ألا يكون BOM 1 {0} و BOM 2 {1} متطابقين"
@@ -6826,11 +6816,6 @@ msgstr "قائمة المواد للصنف المفصص"
msgid "BOM ID"
msgstr "معرف BOM"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "معلومات BOM"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6984,7 +6969,7 @@ msgstr "صنف الموقع الالكتروني بقائمة المواد"
msgid "BOM Website Operation"
msgstr "عملية الموقع الالكتروني بقائمة المواد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "يُعدّ كل من قائمة المواد وكمية المنتج النهائي شرطًا أساسيًا لعملية التفكيك."
@@ -7052,7 +7037,7 @@ msgstr "إدخال مخزون مؤرخ"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "مواد التنظيف العكسي من مستودع العمل قيد التنفيذ"
@@ -7116,7 +7101,7 @@ msgstr "التوازن في العملة الأساسية"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "كمية الرصيد"
@@ -7181,7 +7166,7 @@ msgstr "نوع التوازن"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "قيمة الرصيد"
@@ -7337,8 +7322,8 @@ msgid "Bank Balance"
msgstr "الرصيد المصرفي"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "الرسوم المصرفية"
@@ -7453,8 +7438,8 @@ msgstr "نوع الضمان المصرفي"
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "حساب السحب من البنك بدون رصيد"
@@ -7627,11 +7612,11 @@ msgstr "الخدمات المصرفية"
msgid "Barcode Type"
msgstr "نوع الباركود"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "الباركود {0} مستخدم بالفعل في الصنف {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "الباركود {0} ليس رمز {1} صالحًا"
@@ -7788,7 +7773,7 @@ msgstr "التسعير الاساسي استنادأ لوحدة القياس"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7863,7 +7848,7 @@ msgstr "حالة انتهاء صلاحية الدفعة الصنف"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7952,13 +7937,13 @@ msgstr "تم تحديث كمية الدفعة إلى {0}"
msgid "Batch Quantity"
msgstr "كمية الدفعة"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7975,7 +7960,7 @@ msgstr "دفعة UOM"
msgid "Batch and Serial No"
msgstr "رقم الدفعة والرقم التسلسلي"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "لم يتم إنشاء دفعة للعنصر {} لأنه لا يحتوي على سلسلة دفعات."
@@ -7998,12 +7983,12 @@ msgstr "الدفعة {0} والمستودع"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "الدفعة {0} غير متوفرة في المستودع {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "الدفعة {0} للعنصر {1} انتهت صلاحيتها\\n \\nBatch {0} of Item {1} has expired."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "تم تعطيل الدفعة {0} من الصنف {1}."
@@ -8058,7 +8043,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8067,7 +8052,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8081,11 +8066,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "فاتورة المواد"
@@ -8186,7 +8173,7 @@ msgstr "تفاصيل عنوان الفوترة"
msgid "Billing Address Name"
msgstr "اسم عنوان تقديم الفواتير"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "عنوان الفوترة لا ينتمي إلى {0}"
@@ -8438,6 +8425,16 @@ msgstr "حظر الفاتورة"
msgid "Block Supplier"
msgstr "كتلة المورد"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8534,7 +8531,7 @@ msgstr "حجز"
msgid "Booked Fixed Asset"
msgstr "حجز الأصول الثابتة"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "تم إغلاق الكتب حتى نهاية الفترة في {0}"
@@ -8793,8 +8790,8 @@ msgstr "بناء الشجرة"
msgid "Buildable Qty"
msgstr "الكمية القابلة للبناء"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "المباني"
@@ -8955,16 +8952,16 @@ msgstr ""
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "تجاوز الحد الائتماني في طلب المبيعات"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "تجاوز فحص الائتمان عند طلب البيع"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9012,8 +9009,8 @@ msgstr "ملاحظة إدارة علاقات العملاء"
msgid "CRM Settings"
msgstr "إعدادات إدارة علاقات العملاء"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "حساب CWIP"
@@ -9268,7 +9265,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr "يمكن الموافقة عليها بواسطة {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "لا يمكن إغلاق أمر العمل. لأن {0} بطاقات العمل في حالة \"قيد التنفيذ\"."
@@ -9301,13 +9298,13 @@ msgstr "لا يمكن الفلتره علي اساس (رقم الأيصال)،
msgid "Can only make payment against unbilled {0}"
msgstr "يمكن إجراء دفعة فقط مقابل فاتورة غير مدفوعة {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "لا يمكن الرجوع إلى الصف إلا إذا كان نوع الرسوم هو \"مبلغ الصف السابق\" أو \"إجمالي الصف السابق\"."
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "لا يمكن تغيير طريقة التقييم، حيث توجد معاملات على بعض البنود التي لا تملك طريقة تقييم خاصة بها."
@@ -9349,7 +9346,7 @@ msgstr "لا يمكن تعيين أمين صندوق"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "لا يمكن حساب وقت الوصول حيث أن عنوان برنامج التشغيل مفقود."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "لا يمكن تغيير إعدادات حساب المخزون"
@@ -9357,9 +9354,9 @@ msgstr "لا يمكن تغيير إعدادات حساب المخزون"
msgid "Cannot Create Return"
msgstr "لا يمكن إنشاء إرجاع"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "لا يمكن الدمج"
@@ -9387,7 +9384,7 @@ msgstr "لا يمكن تعديل {0} {1}، يرجى إنشاء واحد جديد
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "لا يمكن تطبيق ضريبة الاستقطاع على عدة أطراف في إدخال واحد"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "لا يمكن أن يكون عنصر الأصول الثابتة كما يتم إنشاء دفتر الأستاذ."
@@ -9407,7 +9404,7 @@ msgstr "لا يمكن إلغاء إدخال حجز المخزون {0}، لأنه
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "لا يمكن الإلغاء لأن معالجة المستندات الملغاة لا تزال قيد الانتظار."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "لا يمكن الإلغاء لان هناك تدوينات مخزون مقدمة {0} موجوده"
@@ -9427,15 +9424,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "لا يمكن إلغاء هذا المستند لأنه مرتبط بالأصل المُرسَل {asset_link}. يُرجى إلغاء الأصل للمتابعة."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "لا يمكن إلغاء المعاملة لأمر العمل المكتمل."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "لا يمكن تغيير سمات بعد معاملة الأسهم. جعل عنصر جديد ونقل الأسهم إلى البند الجديد"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "لا يمكن تغيير نوع المستند المرجعي."
@@ -9443,11 +9440,11 @@ msgstr "لا يمكن تغيير نوع المستند المرجعي."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "لا يمكن تغيير تاريخ إيقاف الخدمة للعنصر الموجود في الصف {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "لا يمكن تغيير العملة الافتراضية للشركة، لأن هناك معاملات موجودة. يجب إلغاء المعاملات لتغيير العملة الافتراضية."
@@ -9463,11 +9460,11 @@ msgstr "لا يمكن تحويل مركز التكلفة إلى حساب دفت
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "لا يمكن تحويل المهمة إلى مهمة غير جماعية لوجود المهام الفرعية التالية: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "لا يمكن التحويل إلى مجموعة لأن نوع الحساب محدد."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "لا يمكن تحويل الحساب إلى تصنيف مجموعة لأن نوع الحساب تم اختياره."
@@ -9475,7 +9472,7 @@ msgstr "لا يمكن تحويل الحساب إلى تصنيف مجموعة ل
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "لا يمكن إنشاء إدخالات حجز المخزون لإيصالات الشراء ذات التواريخ المستقبلية."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "لا يمكن إنشاء قائمة اختيار لأمر البيع {0} لأنه يحتوي على مخزون محجوز. يرجى إلغاء حجز المخزون لإنشاء قائمة الاختيار."
@@ -9501,7 +9498,7 @@ msgstr "لا يمكن ان تعلن بانها فقدت ، لأنه تم تقد
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "لا يمكن الخصم عندما تكون الفئة \"التقييم\" أو \"التقييم والإجمالي\""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "لا يمكن حذف صف الربح/الخسارة في الصرف"
@@ -9509,12 +9506,12 @@ msgstr "لا يمكن حذف صف الربح/الخسارة في الصرف"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "لا يمكن حذف الرقم التسلسلي {0}، لانه يتم استخدامها في قيود المخزون"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "لا يمكن حذف عنصر تم طلبه"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9526,7 +9523,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 "لا يمكن تعطيل الجرد الدائم، لوجود قيود دفترية للمخزون للشركة {0}. يرجى إلغاء معاملات المخزون أولاً ثم المحاولة مرة أخرى."
@@ -9534,20 +9531,20 @@ msgstr "لا يمكن تعطيل الجرد الدائم، لوجود قيود
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "لا يمكن تفكيك كمية أكبر من الكمية المنتجة."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "لا يمكن تفعيل حساب المخزون حسب الصنف، لوجود قيود دفترية للمخزون للشركة {0} مع حساب مخزون حسب المستودع. يرجى إلغاء معاملات المخزون أولاً ثم المحاولة مرة أخرى."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "لا يمكن ضمان التسليم بواسطة Serial No حيث أن العنصر {0} مضاف مع وبدون ضمان التسليم بواسطة Serial No."
@@ -9563,7 +9560,7 @@ msgstr "لا يمكن العثور على المنتج أو المستودع ب
msgid "Cannot find Item with this Barcode"
msgstr "لا يمكن العثور على عنصر بهذا الرمز الشريطي"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "تعذر العثور على مستودع افتراضي للصنف {0}. يرجى تحديد مستودع في بيانات الصنف الرئيسية أو في إعدادات المخزون."
@@ -9571,15 +9568,15 @@ msgstr "تعذر العثور على مستودع افتراضي للصنف {0}.
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "لا يمكن دمج {0} '{1}' في '{2}' حيث أن لكليهما قيود محاسبية موجودة بعملات مختلفة للشركة '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "لا يمكن إنتاج المزيد من العناصر لـ {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "لا يمكن إنتاج أكثر من {0} عنصرًا لـ {1}"
@@ -9587,12 +9584,12 @@ msgstr "لا يمكن إنتاج أكثر من {0} عنصرًا لـ {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "لا يمكن تقليل الكمية عن الكمية المطلوبة أو المشتراة"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "لا يمكن أن يشير رقم الصف أكبر من أو يساوي رقم الصف الحالي لهذا النوع المسؤول"
@@ -9605,14 +9602,14 @@ msgstr "تعذر استرداد رمز الرابط للتحديث. راجع س
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "تعذر استرداد رمز الرابط. راجع سجل الأخطاء لمزيد من المعلومات."
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9626,7 +9623,7 @@ msgstr "لا يمكن أن تعين كخسارة لأنه تم تقديم أمر
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "لا يمكن تحديد التخويل على أساس الخصم ل {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "لا يمكن تعيين عدة عناصر افتراضية لأي شركة."
@@ -9634,11 +9631,11 @@ msgstr "لا يمكن تعيين عدة عناصر افتراضية لأي شر
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "لا يمكن ضبط كمية أقل من الكمية المسلمة."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "لا يمكن تعيين كمية أقل من الكمية المستلمة."
@@ -9650,7 +9647,7 @@ msgstr "لا يمكن تعيين الحقل {0} للنسخ في المت
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9683,7 +9680,7 @@ msgstr "السعة (وحدة قياس المخزون)"
msgid "Capacity Planning"
msgstr "القدرة على التخطيط"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "خطأ في تخطيط السعة ، لا يمكن أن يكون وقت البدء المخطط له هو نفسه وقت الانتهاء"
@@ -9702,13 +9699,13 @@ msgstr "السعة بوحدة قياس المخزون"
msgid "Capacity must be greater than 0"
msgstr "يجب أن تكون السعة أكبر من 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "معدات رأسمالية"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "رأس المال"
@@ -9925,7 +9922,7 @@ msgstr "تفاصيل التصنيف"
msgid "Category-wise Asset Value"
msgstr "قيمة الأصول حسب الفئة"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "الحذر"
@@ -10030,7 +10027,7 @@ msgstr "تغيير تاريخ الإصدار"
msgid "Change in Stock Value"
msgstr "التغير في قيمة السهم"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "قم بتغيير نوع الحساب إلى "ذمم مدينة" أو حدد حسابًا مختلفًا."
@@ -10040,7 +10037,7 @@ msgstr "قم بتغيير نوع الحساب إلى "ذمم مدينة&quo
msgid "Change this date manually to setup the next synchronization start date"
msgstr "قم بتغيير هذا التاريخ يدويًا لإعداد تاريخ بدء المزامنة التالي"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "تم تغيير اسم العميل إلى '{}' لأن '{}' موجود بالفعل."
@@ -10048,7 +10045,7 @@ msgstr "تم تغيير اسم العميل إلى '{}' لأن '{}' موجود
msgid "Changes in {0}"
msgstr "التغييرات في {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "لا يسمح بتغيير مجموعة العملاء للعميل المحدد."
@@ -10063,7 +10060,7 @@ msgid "Channel Partner"
msgstr "شريك القناة"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "لا يمكن تضمين رسوم من النوع \"فعلي\" في الصف {0} في سعر السلعة أو المبلغ المدفوع"
@@ -10117,7 +10114,7 @@ msgstr "شجرة الرسم البياني"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10260,7 +10257,7 @@ msgstr "عرض الشيك"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "تاريخ الصك / السند المرجع"
@@ -10318,7 +10315,7 @@ msgstr "اسم الطفل"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "مرجع صف الطفل"
@@ -10370,6 +10367,11 @@ msgstr "تصنيف العملاء حسب المنطقة"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10512,11 +10514,11 @@ msgstr "وثيقة مغلقة"
msgid "Closed Documents"
msgstr "وثائق مغلقة"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "لا يمكن إيقاف أمر العمل المغلق أو إعادة فتحه."
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "الطلب المغلق لايمكن إلغاؤه. ازالة الاغلاق لكي تتمكن من الالغاء"
@@ -10768,11 +10770,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "عمولة على المبيعات"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10803,7 +10811,7 @@ msgstr "الاتصالات المتوسطة Timeslot"
msgid "Communication Medium Type"
msgstr "الاتصالات المتوسطة النوع"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "مدمجة البند طباعة"
@@ -11202,8 +11210,8 @@ msgstr "شركات"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11256,7 +11264,7 @@ msgstr "شركات"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11345,18 +11353,20 @@ msgstr "عرض عنوان الشركة"
msgid "Company Address Name"
msgstr "اسم عنوان الشركة"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "عنوان الشركة غير موجود. ليس لديك صلاحية لتحديثه. يرجى الاتصال بمدير النظام."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "حساب بنك الشركة"
@@ -11452,7 +11462,7 @@ msgstr "اسم الشركة وتاريخ النشر إلزامي"
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "يجب أن تتطابق عملات الشركة لكلتا الشركتين مع معاملات Inter Inter Company."
@@ -11487,7 +11497,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "اسم الشركة ليس مماثل\\n \\nCompany name not same"
@@ -11526,12 +11536,12 @@ msgstr "الشركة التي يمثلها المورد الداخلي"
msgid "Company {0} added multiple times"
msgstr "تمت إضافة الشركة {0} عدة مرات"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "الشركة {0} غير موجودة"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "تمت إضافة الشركة {0} أكثر من مرة"
@@ -11573,7 +11583,7 @@ msgstr "اسم المنافس"
msgid "Competitors"
msgstr "المنافسون"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "إنجاز العمل"
@@ -11620,12 +11630,12 @@ msgstr "المشاريع المنجزة"
msgid "Completed Qty"
msgstr "الكمية المكتملة"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "لا يمكن أن تكون الكمية المكتملة أكبر من "الكمية إلى التصنيع""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "الكمية المكتملة"
@@ -11814,7 +11824,7 @@ msgstr "ضع في اعتبارك أبعاد المحاسبة"
msgid "Consider Minimum Order Qty"
msgstr "يرجى مراعاة الحد الأدنى لكمية الطلب"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "ضع في اعتبارك خسائر العملية"
@@ -12008,7 +12018,7 @@ msgstr "تكلفة المواد المستهلكة"
msgid "Consumed Qty"
msgstr "تستهلك الكمية"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "لا يمكن أن تتجاوز الكمية المستهلكة الكمية المحجوزة للصنف {0}"
@@ -12037,7 +12047,7 @@ msgstr "يُعدّ إدراج بنود المخزون المستهلكة، أو
msgid "Consumed Stock Total Value"
msgstr "القيمة الإجمالية للمخزون المستهلك"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "الكمية المستهلكة من العنصر {0} تتجاوز الكمية المنقولة."
@@ -12165,7 +12175,7 @@ msgstr ""
msgid "Contact Person"
msgstr "الشخص الذي يمكن الاتصال به"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "جهة الاتصال لا تنتمي إلى {0}"
@@ -12291,6 +12301,11 @@ msgstr "مراقبة معاملات الأسهم التاريخية"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12351,7 +12366,7 @@ msgstr "معامل التحويل"
msgid "Conversion Rate"
msgstr "معدل التحويل"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "معامل التحويل الافتراضي لوحدة القياس يجب أن يكون 1 في الصف {0}"
@@ -12359,15 +12374,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 "تمت إعادة تعيين عامل التحويل للعنصر {0} إلى 1.0 لأن وحدة القياس {1} هي نفسها وحدة قياس المخزون {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "لا يمكن أن يكون معدل التحويل 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "معدل التحويل هو 1.00، لكن عملة المستند تختلف عن عملة الشركة."
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "يجب أن يكون معدل التحويل 1.00 إذا كانت عملة المستند هي نفسها عملة الشركة"
@@ -12444,13 +12459,13 @@ msgstr "تصحيحي"
msgid "Corrective Action"
msgstr "اجراء تصحيحي"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "بطاقة عمل تصحيحية"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "عملية تصحيحية"
@@ -12617,7 +12632,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12750,7 +12765,7 @@ msgstr "مركز التكلفة {} هو مركز تكلفة جماعي، ولا
msgid "Cost Center: {0} does not exist"
msgstr "مركز التكلفة: {0} غير موجود"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "مراكز التكلفة"
@@ -12793,17 +12808,13 @@ msgstr "تكلفة السلع والمواد المسلمة"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "تكلفة البضاعة المباعة"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "حساب تكلفة البضائع المباعة في جدول الأصناف"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "تكلفة المواد المصروفة"
@@ -12883,7 +12894,7 @@ msgstr "تعذر حذف بيانات العرض التوضيحي"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "تعذر إنشاء العميل تلقائيًا بسبب الحقول الإلزامية التالية المفقودة:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "تعذر إنشاء إشعار دائن تلقائيًا ، يُرجى إلغاء تحديد "إشعار ائتمان الإصدار" وإرساله مرة أخرى"
@@ -13072,7 +13083,7 @@ msgstr "إنشاء الفواتير"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "إنشاء بطاقة العمل"
@@ -13104,7 +13115,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "إنشاء قيود دفتر الأستاذ لمبلغ الباقي"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "إنشاء رابط"
@@ -13171,7 +13182,7 @@ msgstr "إنشاء إدخال دفع لفواتير نقاط البيع المج
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "إنشاء قائمة انتقاء"
@@ -13316,7 +13327,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "إنشاء قالب الضريبة"
@@ -13354,12 +13365,12 @@ msgstr "إنشاء صلاحية المستخدم"
msgid "Create Users"
msgstr "إنشاء المستخدمين"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "إنشاء متغير"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "إنشاء المتغيرات"
@@ -13390,12 +13401,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "أنشئ نسخة بديلة باستخدام صورة القالب."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "قم بإنشاء حركة مخزون واردة للصنف."
@@ -13429,7 +13440,7 @@ msgstr "إنشاء {0} {1}؟"
msgid "Created By Migration"
msgstr "تم إنشاؤه بواسطة الهجرة"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "تم إنشاء {0} بطاقات تسجيل النقاط لـ {1} بين:"
@@ -13462,7 +13473,7 @@ msgstr "إنشاء إيصال التسليم ..."
msgid "Creating Delivery Schedule..."
msgstr "تحديد موعد التسليم..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "إنشاء الأبعاد ..."
@@ -13655,7 +13666,7 @@ msgstr "الائتمان أيام"
msgid "Credit Limit"
msgstr "الحد الائتماني"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "تم تجاوز الحد الائتماني"
@@ -13665,12 +13676,6 @@ msgstr "تم تجاوز الحد الائتماني"
msgid "Credit Limit Settings"
msgstr "إعدادات حد الائتمان"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "حدود الائتمان وشروط الدفع"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "الحد الائتماني:"
@@ -13702,7 +13707,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13730,7 +13735,7 @@ msgstr "الائتمان مذكرة صادرة"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "ستقوم مذكرة الائتمان بتحديث المبلغ المستحق الخاص بها، حتى في حالة تحديد \"الإرجاع مقابل\"."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "تم إنشاء ملاحظة الائتمان {0} تلقائيًا"
@@ -13738,7 +13743,7 @@ msgstr "تم إنشاء ملاحظة الائتمان {0} تلقائيًا"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "دائن الى"
@@ -13747,20 +13752,20 @@ msgstr "دائن الى"
msgid "Credit in Company Currency"
msgstr "المدين في عملة الشركة"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "تم تجاوز حد الائتمان للعميل {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "تم تحديد حد الائتمان بالفعل للشركة {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "تم بلوغ حد الائتمان للعميل {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13768,8 +13773,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "نسبة دوران الدائنين"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "الدائنين"
@@ -13939,7 +13944,7 @@ msgstr "يجب أن يكون صرف العملات ساريًا للشراء أ
msgid "Currency and Price List"
msgstr "العملة وقائمة الأسعار"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "لا يمكن تغيير العملة بعد إجراء إدخالات باستخدام بعض العملات الأخرى"
@@ -13949,7 +13954,7 @@ msgstr "لا تدعم التقارير المالية المخصصة حاليً
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "العملة ل {0} يجب أن تكون {1} \\n \\nCurrency for {0} must be {1}"
@@ -14032,8 +14037,8 @@ msgstr "تاريخ بدء الفاتورة الحالي"
msgid "Current Level"
msgstr "المستوى الحالي"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "الخصوم المتداولة"
@@ -14100,6 +14105,11 @@ msgstr "المخزون الحالية"
msgid "Current Valuation Rate"
msgstr "معدل التقييم الحالي"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "منحنيات"
@@ -14195,7 +14205,6 @@ msgstr "محددات مخصصة"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14302,7 +14311,6 @@ msgstr "محددات مخصصة"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14391,8 +14399,8 @@ msgstr "عنوان العميل"
msgid "Customer Addresses And Contacts"
msgstr "عناوين العملاء وجهات الإتصال"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "تقدم العملاء"
@@ -14406,7 +14414,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14489,6 +14497,7 @@ msgstr "ملاحظات العميل"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14511,7 +14520,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14528,6 +14537,7 @@ msgstr "ملاحظات العميل"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14571,7 +14581,7 @@ msgstr "منتج العميل"
msgid "Customer Items"
msgstr "منتجات العميل"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "العميل لبو"
@@ -14623,7 +14633,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14729,7 +14739,7 @@ msgstr "العملاء المقدمة"
msgid "Customer Provided Item Cost"
msgstr "تكلفة السلعة المقدمة من العميل"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "خدمة العملاء"
@@ -14786,9 +14796,9 @@ msgstr "عميل أو بند"
msgid "Customer required for 'Customerwise Discount'"
msgstr "الزبون مطلوب للخصم المعني بالزبائن"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "العميل {0} لا ينتمي الى المشروع {1}\\n \\nCustomer {0} does not belong to project {1}"
@@ -14900,7 +14910,7 @@ msgstr "د - هـ"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "ملخص المشروع اليومي لـ {0}"
@@ -14991,7 +15001,7 @@ msgstr "تاريخ الميلاد لا يمكن أن يكون بعد تاريخ
msgid "Date of Commencement"
msgstr "تاريخ البدء"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "يجب أن يكون تاريخ البدء أكبر من تاريخ التأسيس"
@@ -15217,7 +15227,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15245,13 +15255,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "الخصم ل"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "مدين الى مطلوب"
@@ -15379,8 +15389,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15406,14 +15415,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "الحساب الافتراضي للمقدم المستلم"
@@ -15428,19 +15437,19 @@ msgstr "نطاق العمر الافتراضي"
msgid "Default BOM"
msgstr "الافتراضي BOM"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "يجب أن تكون قائمة المواد الافتراضية ({0}) نشطة لهذا الصنف أو قوالبه"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "فاتورة المواد ل {0} غير موجودة\\n \\nDefault BOM for {0} not found"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "لم يتم العثور على قائمة مكونات افتراضية لعنصر المنتج النهائي {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "لم يتم العثور على قائمة المواد الافتراضية للمادة {0} والمشروع {1}"
@@ -15493,9 +15502,7 @@ msgid "Default Company"
msgstr "الشركة الافتراضية"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "الحساب البنكي الافتراضي للشركة"
@@ -15611,6 +15618,16 @@ msgstr "المجموعة الافتراضية للمواد"
msgid "Default Item Manufacturer"
msgstr "الشركة المصنعة الافتراضية للعنصر"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15646,23 +15663,19 @@ msgid "Default Payment Request Message"
msgstr "رسالة 'طلب الدفع' الافتراضيه"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "نموذج شروط الدفع الافتراضية"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15785,15 +15798,15 @@ msgstr "الإقليم الافتراضي"
msgid "Default Unit of Measure"
msgstr "وحدة القياس الافتراضية"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "لا يمكن تغيير وحدة القياس الافتراضية للعنصر {0} مباشرةً لأنك أجريتَ بالفعل بعض المعاملات بوحدة قياس أخرى. عليك إما إلغاء المستندات المرتبطة أو إنشاء عنصر جديد."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "لا يمكن تغيير وحدة القياس الافتراضية للبند {0} مباشرة لأنك قمت بالفعل ببعض المعاملات (المعاملة) مع UOM أخرى. ستحتاج إلى إنشاء عنصر جديد لاستخدام واجهة مستخدم افتراضية مختلفة.\\n \\nDefault 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."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "وحدة القياس الافتراضية للمتغير '{0}' يجب أن تكون كما في النمودج '{1}'"
@@ -15845,7 +15858,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "الإعدادات الافتراضية لمعاملاتك المتعلقة بالأسهم"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "يتم إنشاء قوالب ضريبية افتراضية للمبيعات والمشتريات والسلع."
@@ -15936,6 +15949,12 @@ msgstr "تعريف نوع المشروع."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16018,12 +16037,12 @@ msgstr "حذف العملاء المحتملين والعناوين"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "حذف المعاملات"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "حذف كل المعاملات المتعلقة بالشركة\\n \\nDelete all the Transactions for this Company"
@@ -16044,8 +16063,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "حذف {0} وجميع مستندات الكود المشترك المرتبطة بها..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "جارٍ الحذف!"
@@ -16156,11 +16175,11 @@ msgstr "الكمية المستلمة"
msgid "Delivered Qty (in Stock UOM)"
msgstr "الكمية المُسلَّمة (وحدة القياس المتوفرة في المخزون)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16241,7 +16260,7 @@ msgstr "مدير التوصيل"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16301,11 +16320,11 @@ msgstr "إشعار التسليم - المنتج المعبأ"
msgid "Delivery Note Trends"
msgstr "توجهات إشعارات التسليم"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "لم يتم اعتماد ملاحظه التسليم {0}\\n \\nDelivery Note {0} is not submitted"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "مذكرات التسليم"
@@ -16391,10 +16410,6 @@ msgstr "مستودع تسليم"
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "مستودع التسليم مطلوب للبند المستودعي {0}\\n \\nDelivery warehouse required for stock item {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16514,8 +16529,8 @@ msgstr "المبلغ المستهلك"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16608,7 +16623,7 @@ msgstr "خيارات الإهلاك"
msgid "Depreciation Posting Date"
msgstr "تاريخ ترحيل الإهلاك"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "لا يمكن أن يكون تاريخ ترحيل الإهلاك قبل تاريخ الإتاحة للاستخدام"
@@ -16766,15 +16781,15 @@ msgstr "الفرق ( المدين - الدائن )"
msgid "Difference Account"
msgstr "حساب الفرق"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "حساب الفرق في جدول البنود"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "يجب أن يكون حساب الفرق حسابًا من نوع الأصول/الخصوم (افتتاح مؤقت)، لأن قيد المخزون هذا هو قيد افتتاحي."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "حساب الفرق يجب أن يكون حساب الأصول / حساب نوع الالتزام، حيث يعتبر تسوية المخزون بمثابة مدخل افتتاح\\n \\nDifference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
@@ -16886,15 +16901,15 @@ msgstr "أبعاد"
msgid "Direct Expense"
msgstr "المصاريف المباشرة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "النفقات المباشرة"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "إيراد مباشر"
@@ -16975,6 +16990,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr "تعطيل رقم التسلسل ومحدد الدفعة"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17011,11 +17031,11 @@ msgstr "لا يمكن استخدام المستودع المعطل {0} لهذه
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "تم تعطيل قواعد التسعير لأن هذا {} عبارة عن تحويل داخلي"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "الأسعار تشمل الضريبة المعطلة لأن هذا {} عبارة عن تحويل داخلي"
@@ -17031,7 +17051,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17039,15 +17059,15 @@ msgstr "يعطل الجلب التلقائي للكمية الموجودة"
msgid "Disassemble"
msgstr "فكّك"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "ترتيب التفكيك"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17334,7 +17354,7 @@ msgstr "سبب تقديري"
msgid "Dislikes"
msgstr "يكره"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "ارسال"
@@ -17415,7 +17435,7 @@ msgstr "اسم العرض"
msgid "Disposal Date"
msgstr "تاريخ التخلص"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "لا يمكن أن يكون تاريخ التخلص {0} قبل تاريخ {1} {2} للأصل."
@@ -17529,8 +17549,8 @@ msgstr "توزيع الاسم"
msgid "Distributor"
msgstr "موزع"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "توزيع الأرباح"
@@ -17592,7 +17612,7 @@ msgstr "لا تظهر أي رمز مثل $ بجانب العملات."
msgid "Do not update variants on save"
msgstr "لا تقم بتحديث المتغيرات عند الحفظ"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "هل تريد حقا استعادة هذه الأصول المخردة ؟"
@@ -17616,7 +17636,7 @@ msgstr "هل تريد أن تخطر جميع العملاء عن طريق الب
msgid "Do you want to submit the material request"
msgstr "هل ترغب في تقديم طلب المواد"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "هل ترغب في إرسال بيانات المخزون؟"
@@ -17683,11 +17703,11 @@ msgstr ""
msgid "Document Type "
msgstr "نوع الوثيقة"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "الوثائق"
@@ -17850,12 +17870,6 @@ msgstr "فئات رخصة القيادة"
msgid "Driving License Category"
msgstr "رخصة قيادة الفئة"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "إجراءات التسليم"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17876,12 +17890,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "يقوم بحذف إجراءات SQL الحالية وإعدادات الوظائف الخاصة بتقرير حسابات القبض"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "لا يمكن أن يكون تاريخ الاستحقاق بعد {0}"
@@ -18040,8 +18048,8 @@ msgstr ""
msgid "Duration in Days"
msgstr "المدة في أيام"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "الرسوم والضرائب"
@@ -18124,7 +18132,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "كل عملية"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "أولا"
@@ -18238,6 +18246,10 @@ msgstr "الكمية المستهدفة أو المبلغ المستهدف، أ
msgid "Either target qty or target amount is mandatory."
msgstr "الكمية المستهدفة أو المبلغ المستهدف، أحدهما إلزامي"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18257,8 +18269,8 @@ msgstr "كهرباء"
msgid "Electricity down"
msgstr "انقطاع الكهرباء"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "المعدات الإلكترونية"
@@ -18462,8 +18474,8 @@ msgstr ""
msgid "Employee Advances"
msgstr "سلف الموظفين"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "التزامات مزايا الموظفين"
@@ -18546,7 +18558,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "الموظف {0} لا ينتمي إلى الشركة {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "الموظف {0} يعمل حاليًا على محطة عمل أخرى. يرجى تعيين موظف آخر."
@@ -18562,7 +18574,7 @@ msgstr ""
msgid "Empty"
msgstr "فارغة"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18593,7 +18605,7 @@ msgstr "تمكين جدولة موعد"
msgid "Enable Auto Email"
msgstr "تفعيل البريد الإلكتروني التلقائي"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "تمكين إعادة الطلب التلقائي"
@@ -18759,12 +18771,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18893,8 +18899,8 @@ msgstr "لا يمكن أن يكون تاريخ الانتهاء قبل تاري
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18993,8 +18999,8 @@ msgstr "أدخل يدويًا"
msgid "Enter Serial Nos"
msgstr "أدخل الأرقام التسلسلية"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "أدخل القيمة"
@@ -19019,7 +19025,7 @@ msgstr "أدخل اسمًا لقائمة العطلات هذه."
msgid "Enter amount to be redeemed."
msgstr "أدخل المبلغ المراد استرداده."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "أدخل رمز الصنف، وسيتم ملء الاسم تلقائيًا بنفس رمز الصنف عند النقر داخل حقل اسم الصنف."
@@ -19031,7 +19037,7 @@ msgstr "أدخل البريد الإلكتروني الخاص بالعميل"
msgid "Enter customer's phone number"
msgstr "أدخل رقم هاتف العميل"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "أدخل التاريخ لإلغاء الأصل"
@@ -19075,7 +19081,7 @@ msgstr "أدخل اسم المستفيد قبل الإرسال."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "أدخل اسم البنك أو المؤسسة المقرضة قبل الإرسال."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "أدخل وحدات المخزون الافتتاحي."
@@ -19083,7 +19089,7 @@ msgstr "أدخل وحدات المخزون الافتتاحي."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "أدخل الكمية المراد تصنيعها. سيتم جلب المواد الخام فقط عند تحديد هذا الخيار."
@@ -19095,8 +19101,8 @@ msgstr "أدخل مبلغ {0}."
msgid "Entertainment & Leisure"
msgstr "الترفيه والاستجمام"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "نفقات الترفيه"
@@ -19120,8 +19126,8 @@ msgstr "نوع الدخول"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19182,7 +19188,7 @@ msgstr "حدث خطأ أثناء ترحيل قيود الإهلاك"
msgid "Error while processing deferred accounting for {0}"
msgstr "حدث خطأ أثناء معالجة المحاسبة المؤجلة لـ {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "حدث خطأ أثناء إعادة نشر تقييم السلعة"
@@ -19194,7 +19200,7 @@ msgstr "خطأ: هذا الأصل لديه بالفعل {0} فترة استهل
"\t\t\t\t\tيجب أن يكون تاريخ \"بدء الاستهلاك\" بعد {1} فترة على الأقل من تاريخ \"جاهز للاستخدام\".\n"
"\t\t\t\t\tيرجى تصحيح التواريخ وفقًا لذلك."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "الخطأ: {0} هو حقل إلزامي"
@@ -19240,7 +19246,7 @@ msgstr "من المصنع"
msgid "Example URL"
msgstr "مثال على عنوان URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "مثال على مستند مرتبط: {0}"
@@ -19260,7 +19266,7 @@ msgstr "مثال: ABCD. #####. إذا تم ضبط المسلسل ولم يتم
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "مثال: الرقم التسلسلي {0} محجوز في {1}."
@@ -19270,7 +19276,7 @@ msgstr "مثال: الرقم التسلسلي {0} محجوز في {1}."
msgid "Exception Budget Approver Role"
msgstr "دور الموافقة على الموازنة الاستثنائية"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19278,7 +19284,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "المواد الزائدة المستهلكة"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "التحويل الزائد"
@@ -19309,17 +19315,17 @@ msgstr "الربح أو الخسارة في الصرف"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "أرباح / خسائر الناتجة عن صرف العملة"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "تم تسجيل مبلغ الربح/الخسارة من خلال {0}"
@@ -19458,7 +19464,7 @@ msgstr "مساعد تنفيذي"
msgid "Executive Search"
msgstr "البحث عن الكفاءات التنفيذية"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "اللوازم المعفاة"
@@ -19545,7 +19551,7 @@ msgstr "تاريخ الإغلاق المتوقع"
msgid "Expected Delivery Date"
msgstr "تاريخ التسليم المتوقع"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "يجب أن يكون تاريخ التسليم المتوقع بعد تاريخ أمر المبيعات"
@@ -19629,7 +19635,7 @@ msgstr "القيمة المتوقعة بعد حياة مفيدة"
msgid "Expense"
msgstr "نفقة"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "حساب نفقات / قروق ({0}) يجب ان يكون حساب ارباح و خسائر"
@@ -19707,23 +19713,23 @@ msgstr "اجباري حساب النفقات للصنف {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "النفقات"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "النفقات المدرجة في تقييم الأصول"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "المصروفات متضمنة في تقييم السعر"
@@ -19802,7 +19808,7 @@ msgstr "سجل العمل الخارجي"
msgid "Extra Consumed Qty"
msgstr "كمية إضافية مستهلكة"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "عدد بطاقات العمل الإضافية"
@@ -19939,7 +19945,7 @@ msgstr "أخفق إعداد الشركة"
msgid "Failed to setup defaults"
msgstr "فشل في إعداد الإعدادات الافتراضية"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "فشل إعداد الإعدادات الافتراضية للبلد {0}. يرجى الاتصال بالدعم."
@@ -20057,6 +20063,11 @@ msgstr "استرجاع القيمة من"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "جلب BOM انفجرت (بما في ذلك المجالس الفرعية)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "تم جلب {0} من الأرقام التسلسلية المتاحة فقط."
@@ -20094,21 +20105,29 @@ msgstr "رسم الخرائط الميدانية"
msgid "Field in Bank Transaction"
msgstr "الحقل في المعاملات المصرفية"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "سيتم نسخ الحقول فقط في وقت الإنشاء."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20316,9 +20335,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "إنهاء"
@@ -20375,15 +20394,15 @@ msgstr "الكمية من المنتج النهائي"
msgid "Finished Good Item Quantity"
msgstr "المنتج النهائي الجيد الكمية"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "لم يتم تحديد المنتج النهائي لعنصر الخدمة {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "المنتج النهائي {0} لا يمكن أن تكون الكمية صفرًا"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "يجب أن يكون المنتج النهائي {0} منتجًا تم التعاقد عليه من الباطن"
@@ -20429,7 +20448,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "يجب أن يكون المنتج النهائي {0} عنصرًا تم التعاقد عليه من الباطن."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "السلع تامة الصنع"
@@ -20470,7 +20489,7 @@ msgstr "مستودع البضائع الجاهزة"
msgid "Finished Goods based Operating Cost"
msgstr "تكلفة التشغيل بناءً على المنتجات النهائية"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "المنتج النهائي {0} لا يتطابق مع أمر العمل {1}"
@@ -20611,6 +20630,7 @@ msgstr "ثابت"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "الأصول الثابتة"
@@ -20629,7 +20649,7 @@ msgstr "حساب الأصول الثابتة"
msgid "Fixed Asset Defaults"
msgstr "حالات التخلف عن سداد الأصول الثابتة"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "يجب أن يكون بند الأصول الثابتة عنصرا غير مخزون. \\nFixed Asset Item must be a non-stock item."
@@ -20648,8 +20668,8 @@ msgstr "نسبة دوران الأصول الثابتة"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "لا يمكن استخدام عنصر الأصول الثابتة {0} في قوائم المواد."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "الاصول الثابتة"
@@ -20722,7 +20742,7 @@ msgstr "اتبع التقويم الأشهر"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "تم رفع طلبات المواد التالية تلقائيا بناء على مستوى اعادة الطلب للبنود"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "الحقول التالية إلزامية لإنشاء العنوان:"
@@ -20779,7 +20799,7 @@ msgstr "للشركة"
msgid "For Item"
msgstr "للمنتج"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "لا يمكن استلام أكثر من الكمية {1} من المنتج {0} مقابل الكمية {2} {3}"
@@ -20789,7 +20809,7 @@ msgid "For Job Card"
msgstr "للحصول على بطاقة العمل"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "للتشغيل"
@@ -20810,17 +20830,13 @@ msgstr "لائحة الأسعار"
msgid "For Production"
msgstr "للإنتاج"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "للكمية (الكمية المصنعة) إلزامية\\n \\nFor Quantity (Manufactured Qty) is mandatory"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "للمواد الخام"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "بالنسبة لفواتير الإرجاع ذات تأثير المخزون، لا يُسمح بوجود عناصر بكمية '0'. تتأثر الصفوف التالية: {0}"
@@ -20848,11 +20864,11 @@ msgstr "لمستودع"
msgid "For Work Order"
msgstr "لأمر العمل"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "بالنسبة إلى عنصر {0} ، يجب أن تكون الكمية رقمًا سالبًا"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "بالنسبة إلى عنصر {0} ، يجب أن تكون الكمية رقمًا موجبًا"
@@ -20890,7 +20906,7 @@ msgstr "عن مورد فردي"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "بالنسبة للعنصر {0}، يجب أن يكون السعر رقمًا موجبًا. للسماح بالأسعار السالبة، فعّل {1} في {2}"
@@ -20904,7 +20920,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "بالنسبة للعملية {0}: لا يمكن أن تكون الكمية ({1}) أكبر من الكمية المعلقة ({2})."
@@ -20921,7 +20937,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "بالنسبة للكميات المتوقعة والمتنبأ بها، سيأخذ النظام في الاعتبار جميع المستودعات الفرعية التابعة للمستودع الرئيسي المحدد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "يجب ألا تتجاوز الكمية {0} الكمية المسموح بها {1}"
@@ -20930,12 +20946,12 @@ msgstr "يجب ألا تتجاوز الكمية {0} الكمية المسموح
msgid "For reference"
msgstr "للرجوع إليها"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "بالنسبة للصف {0} في {1}، يجب تضمين الصف {2} في سعر الصنف. لإضافة الصف {3} إلى سعر الصنف، يجب أيضًا إضافة الصف {3}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "بالنسبة إلى الصف {0}: أدخل الكمية المخطط لها"
@@ -20954,7 +20970,7 @@ msgstr "بالنسبة لشرط "تطبيق القاعدة على أخرى&
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "لتسهيل الأمر على العملاء، يمكن استخدام هذه الرموز في نماذج الطباعة مثل الفواتير وإشعارات التسليم."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21001,11 +21017,6 @@ msgstr "توقعات"
msgid "Forecast Demand"
msgstr "توقعات الطلب"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "الكمية المتوقعة"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21051,7 +21062,7 @@ msgstr "مشاركات المنتدى"
msgid "Forum URL"
msgstr "رابط المنتدى"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "مدرسة فرابيه"
@@ -21096,8 +21107,8 @@ msgstr "عنصر حر غير مضبوط في قاعدة التسعير {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "تجميد المخزونات أقدم من (أيام)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "رسوم الشحن"
@@ -21531,8 +21542,8 @@ msgstr "مدفوع بالكامل"
msgid "Furlong"
msgstr "فورلونج"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "الأثاث والتجهيزات"
@@ -21549,13 +21560,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "الدفع في المستقبل المرجع"
@@ -21563,7 +21574,7 @@ msgstr "الدفع في المستقبل المرجع"
msgid "Future Payments"
msgstr "المدفوعات المستقبلية"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "التاريخ المستقبلي غير مسموح به"
@@ -21648,9 +21659,9 @@ msgstr "تم تسجيل الربح/الخسارة بالفعل"
msgid "Gain/Loss from Revaluation"
msgstr "الربح/الخسارة من إعادة التقييم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "الربح / الخسارة عند التخلص من الأصول"
@@ -21823,7 +21834,7 @@ msgstr "استعد توازنك"
msgid "Get Current Stock"
msgstr "الحصول على المخزون الحالي"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "احصل على تفاصيل مجموعة العملاء"
@@ -21881,7 +21892,7 @@ msgstr "الحصول على مواقع البند"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21920,7 +21931,7 @@ msgstr "تنزيل الاصناف من BOM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "الحصول على عناصر من طلبات المواد ضد هذا المورد"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "الحصول على أصناف من حزمة المنتج"
@@ -22094,7 +22105,7 @@ msgstr "الأهداف"
msgid "Goods"
msgstr "البضائع"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "البضائع في العبور"
@@ -22103,7 +22114,7 @@ msgstr "البضائع في العبور"
msgid "Goods Transferred"
msgstr "نقل البضائع"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "تم استلام البضائع بالفعل مقابل الإدخال الخارجي {0}"
@@ -22286,7 +22297,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "لجنة المنح"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "أكبر من المبلغ"
@@ -22729,7 +22740,7 @@ msgstr "يساعدك ذلك على توزيع الميزانية/الهدف عل
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "فيما يلي سجلات الأخطاء الخاصة بإدخالات الإهلاك الفاشلة المذكورة أعلاه: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "فيما يلي الخيارات المتاحة للمتابعة:"
@@ -22757,7 +22768,7 @@ msgstr "هنا، يتم ملء أيام إجازاتك الأسبوعية مسب
msgid "Hertz"
msgstr "هيرتز"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "أهلاً،"
@@ -22956,7 +22967,7 @@ msgstr "كيفية تنسيق وعرض القيم في التقرير المال
msgid "Hrs"
msgstr "ساعات"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "الموارد البشرية"
@@ -23124,6 +23135,12 @@ msgstr "في حال تم تحديده، سيتم اعتبار مبلغ الضر
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "إذا كانت محددة، سيتم النظر في مقدار ضريبة كمدرجة بالفعل في قيم الطباعة / مقدار الطباعة"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "في حال تفعيل هذا الخيار، سنقوم بإنشاء بيانات تجريبية لتتمكن من استكشاف النظام. ويمكن حذف هذه البيانات التجريبية لاحقاً."
@@ -23342,7 +23359,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "وإلا يمكنك إلغاء / إرسال هذا الإدخال"
@@ -23368,13 +23385,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr "إذا تم تحديد قاعدة تسعير لحقل \"السعر\"، فسيتم استبدال قائمة الأسعار بها. سعر قاعدة التسعير هو السعر النهائي، لذا لا ينبغي تطبيق أي خصم إضافي. وبالتالي، في معاملات مثل أوامر البيع وأوامر الشراء، سيتم جلب السعر في حقل \"السعر\" بدلاً من حقل \"سعر قائمة الأسعار\"."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "في حال تم ضبط هذا الخيار، فإن النظام لا يستخدم بريد المستخدم الإلكتروني أو حساب البريد الإلكتروني الصادر القياسي لإرسال طلبات عروض الأسعار."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "إذا نتج عن قائمة المواد مواد خردة، فيجب تحديد مستودع الخردة."
@@ -23383,7 +23405,7 @@ msgstr "إذا نتج عن قائمة المواد مواد خردة، فيجب
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "إذا الحساب مجمد، يسمح بالدخول إلى المستخدمين المحددين."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "إذا كان العنصر يتعامل كعنصر سعر تقييم صفري في هذا الإدخال ، فالرجاء تمكين "السماح بمعدل تقييم صفري" في جدول العناصر {0}."
@@ -23393,7 +23415,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "إذا كانت قائمة المواد المحددة تحتوي على عمليات مذكورة فيها، فسيقوم النظام بجلب جميع العمليات من قائمة المواد، ويمكن تغيير هذه القيم."
@@ -23470,7 +23492,7 @@ msgstr "إذا كانت مدة صلاحية نقاط الولاء غير محد
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "إذا كانت الإجابة بنعم، فسيتم استخدام هذا المستودع لتخزين المواد المرفوضة"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "إذا كنت تحتفظ بمخزون من هذا الصنف في مخزونك، فسيقوم نظام ERPNext بإجراء قيد في دفتر الأستاذ للمخزون لكل معاملة لهذا الصنف."
@@ -23484,7 +23506,7 @@ msgstr "إذا كنت ترغب في مطابقة معاملات محددة مع
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "إذا كنت لا تزال ترغب في المتابعة، فيرجى تعطيل خانة الاختيار \"تخطي عناصر التجميع الفرعية المتاحة\"."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "إذا كنت لا تزال ترغب في المتابعة، يرجى تفعيل {0}."
@@ -23568,7 +23590,7 @@ msgstr "تجاهل سجلات إعادة تقييم سعر الصرف وسجلا
msgid "Ignore Existing Ordered Qty"
msgstr "تجاهل الكمية الموجودة المطلوبة"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "تجاهل الكمية الموجودة المتوقعة"
@@ -23655,12 +23677,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "ضعف"
@@ -23818,7 +23840,7 @@ msgstr "في الانتاج"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "كمية قادمة"
@@ -23942,7 +23964,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "في هذا القسم، يمكنك تحديد الإعدادات الافتراضية المتعلقة بالمعاملات على مستوى الشركة لهذا العنصر. على سبيل المثال: المستودع الافتراضي، وقائمة الأسعار الافتراضية، والمورد الافتراضي، وما إلى ذلك."
@@ -24173,8 +24195,8 @@ msgstr "بما في ذلك السلع للمجموعات الفرعية"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24245,7 +24267,7 @@ msgstr "دفعة واردة"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24277,7 +24299,7 @@ msgstr "كمية الرصيد غير صحيحة بعد العملية"
msgid "Incorrect Batch Consumed"
msgstr "تم استهلاك دفعة غير صحيحة"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "تسجيل دخول غير صحيح (مجموعة) إلى مستودع إعادة الطلب"
@@ -24285,7 +24307,7 @@ msgstr "تسجيل دخول غير صحيح (مجموعة) إلى مستودع
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "كمية المكونات غير صحيحة"
@@ -24419,15 +24441,15 @@ msgstr "يشير إلى أن الحزمة هو جزء من هذا التسليم
msgid "Indirect Expense"
msgstr "المصاريف غير المباشرة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "نفقات غير مباشرة"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "دخل غير مباشرة"
@@ -24495,14 +24517,14 @@ msgstr "بدأت"
msgid "Inspected By"
msgstr "تفتيش من قبل"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "تم رفض التفتيش"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "التفتيش مطلوب"
@@ -24519,8 +24541,8 @@ msgstr "التفتيش المطلوبة قبل تسليم"
msgid "Inspection Required before Purchase"
msgstr "التفتيش المطلوبة قبل الشراء"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "طلب فحص"
@@ -24550,7 +24572,7 @@ msgstr "ملاحظة التثبيت"
msgid "Installation Note Item"
msgstr "ملاحظة تثبيت الإغلاق"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "مذكرة التسليم {0} ارسلت\\n \\nInstallation Note {0} has already been submitted"
@@ -24589,11 +24611,11 @@ msgstr "تعليمات"
msgid "Insufficient Capacity"
msgstr "سعة غير كافية"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "أذونات غير كافية"
@@ -24601,13 +24623,12 @@ msgstr "أذونات غير كافية"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "المالية غير كافية"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "المخزون غير كافٍ للدفعة"
@@ -24727,13 +24748,13 @@ msgstr "مرجع التحويل الداخلي"
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "مصروفات الفائدة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "دخل الفوائد"
@@ -24741,8 +24762,8 @@ msgstr "دخل الفوائد"
msgid "Interest and/or dunning fee"
msgstr "الفائدة و/أو رسوم المطالبة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "الفائدة على الودائع الثابتة"
@@ -24762,7 +24783,7 @@ msgstr "داخلي"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "يوجد بالفعل عميل داخلي للشركة {0}"
@@ -24770,7 +24791,7 @@ msgstr "يوجد بالفعل عميل داخلي للشركة {0}"
msgid "Internal Purchase Order"
msgstr "أمر شراء داخلي"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "رقم مرجع البيع أو التسليم الداخلي مفقود."
@@ -24778,7 +24799,7 @@ msgstr "رقم مرجع البيع أو التسليم الداخلي مفقود
msgid "Internal Sales Order"
msgstr "أمر بيع داخلي"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "رقم مرجع المبيعات الداخلي مفقود"
@@ -24809,7 +24830,7 @@ msgstr "يوجد بالفعل مورد داخلي لشركة {0}"
msgid "Internal Transfer"
msgstr "نقل داخلي"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "رقم مرجع التحويل الداخلي مفقود"
@@ -24822,7 +24843,12 @@ msgstr "التحويلات الداخلية"
msgid "Internal Work History"
msgstr "سجل العمل الداخلي"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "لا يمكن إجراء التحويلات الداخلية إلا بالعملة الافتراضية للشركة"
@@ -24838,12 +24864,12 @@ msgstr "يجب أن تكون الفترة الزمنية بين 1 و 59 دقيق
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "حساب غير صالح"
@@ -24864,7 +24890,7 @@ msgstr "مبلغ غير صالح"
msgid "Invalid Attribute"
msgstr "خاصية غير صالحة"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "تاريخ التكرار التلقائي غير صالح"
@@ -24877,7 +24903,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "الباركود غير صالح. لا يوجد عنصر مرفق بهذا الرمز الشريطي."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "طلب فارغ غير صالح للعميل والعنصر المحدد"
@@ -24893,21 +24919,21 @@ msgstr "إجراء الطفل غير صالح"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "شركة غير صالحة للمعاملات بين الشركات."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "مركز تكلفة غير صالح"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "تاريخ تسليم غير صالح"
@@ -24945,7 +24971,7 @@ msgstr "تجميع غير صالح"
msgid "Invalid Item"
msgstr "عنصر غير صالح"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "القيم الافتراضية للعناصر غير صالحة"
@@ -24959,7 +24985,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "مبلغ الشراء الصافي غير صالح"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "إدخال فتح غير صالح"
@@ -24967,11 +24993,11 @@ msgstr "إدخال فتح غير صالح"
msgid "Invalid POS Invoices"
msgstr "فواتير نقاط البيع غير صالحة"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "حساب الوالد غير صالح"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "رقم الجزء غير صالح"
@@ -25001,12 +25027,12 @@ msgstr "تكوين فقدان العملية غير صالح"
msgid "Invalid Purchase Invoice"
msgstr "فاتورة شراء غير صالحة"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "كمية غير صالحة"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "كمية غير صحيحة"
@@ -25031,12 +25057,12 @@ msgstr "جدول غير صالح"
msgid "Invalid Selling Price"
msgstr "سعر البيع غير صالح"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "رقم تسلسلي وحزمة دفعات غير صالحة"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "مصدر ومستودع هدف غير صالحين"
@@ -25061,7 +25087,7 @@ msgstr "مبلغ غير صالح في القيود المحاسبية لـ {} {}
msgid "Invalid condition expression"
msgstr "تعبير شرط غير صالح"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25073,7 +25099,7 @@ msgstr "صيغة التصفية غير صالحة. يرجى التحقق من ب
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "سبب ضائع غير صالح {0} ، يرجى إنشاء سبب ضائع جديد"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "سلسلة تسمية غير صالحة (. مفقود) لـ {0}"
@@ -25099,8 +25125,8 @@ msgstr "استعلام بحث غير صالح"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "قيمة غير صالحة {0} للحساب {1} مقابل الحساب {2}"
@@ -25108,7 +25134,7 @@ msgstr "قيمة غير صالحة {0} للحساب {1} مقابل الحساب
msgid "Invalid {0}"
msgstr "غير صالح {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "غير صالح {0} للمعاملات بين الشركات."
@@ -25118,7 +25144,7 @@ msgid "Invalid {0}: {1}"
msgstr "{0} غير صالح : {1}\\n \\nInvalid {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "جرد"
@@ -25167,8 +25193,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "الخدمات المصرفية الاستثمارية"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "الاستثمارات"
@@ -25218,7 +25244,7 @@ msgstr "خصم الفواتير"
msgid "Invoice Document Type Selection Error"
msgstr "خطأ في تحديد نوع مستند الفاتورة"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "الفاتورة الكبرى المجموع"
@@ -25323,7 +25349,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25344,7 +25370,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25440,8 +25466,7 @@ msgstr "هل البديل"
msgid "Is Billable"
msgstr "هو قابل للفوترة"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "هل يوجد اتصال بالفواتير؟"
@@ -25883,8 +25908,7 @@ msgstr "هل القالب"
msgid "Is Transporter"
msgstr "هو الناقل"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "هل عنوان شركتك هو"
@@ -25990,8 +26014,8 @@ msgstr "نوع القضية"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "إصدار إشعار مدين بكمية صفر مقابل فاتورة مبيعات قائمة"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26021,11 +26045,11 @@ msgstr "قضايا"
msgid "Issuing Date"
msgstr "تاريخ الإصدار"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "قد يستغرق الأمر بضع ساعات حتى تظهر قيم المخزون الدقيقة بعد دمج العناصر."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "هناك حاجة لجلب تفاصيل البند."
@@ -26149,7 +26173,7 @@ msgstr "نص مائل للمجاميع الفرعية أو الملاحظات"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26397,7 +26421,7 @@ msgstr "سلة التسوق"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26459,7 +26483,7 @@ msgstr "سلة التسوق"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26658,13 +26682,13 @@ msgstr "بيانات الصنف"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26881,7 +26905,7 @@ msgstr "مادة المصنع"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26921,10 +26945,10 @@ msgstr "مادة المصنع"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26965,10 +26989,6 @@ msgstr "المنتج غير متوفر"
msgid "Item Price"
msgstr "سعر الصنف"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26984,19 +27004,20 @@ msgstr "إعدادات سعر المنتج"
msgid "Item Price Stock"
msgstr "سعر صنف المخزون"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "تم اضافتة سعر الصنف لـ {0} في قائمة الأسعار {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "يظهر سعر الصنف عدة مرات بناءً على قائمة الأسعار، والمورد/العميل، والعملة، والصنف، والدفعة، ووحدة القياس، والكمية، والتواريخ."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "سعر الصنف محدث ل{0} في قائمة الأسعار {1}"
@@ -27183,11 +27204,11 @@ msgstr "الصنف تفاصيل متغير"
msgid "Item Variant Settings"
msgstr "إعدادات متنوع السلعة"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "متغير الصنف {0} موجود بالفعل مع نفس الخصائص"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "تم تحديث متغيرات العنصر"
@@ -27288,11 +27309,11 @@ msgstr "المنتج والمستودع"
msgid "Item and Warranty Details"
msgstr "البند والضمان تفاصيل"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "عنصر الصف {0} لا يتطابق مع طلب المواد"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "البند لديه متغيرات."
@@ -27318,11 +27339,7 @@ msgstr "اسم السلعة"
msgid "Item operation"
msgstr "عملية الصنف"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "لا يمكن تحديث كمية الصنف لأن المواد الخام قد تمت معالجتها بالفعل."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "تم تحديث سعر السلعة إلى الصفر حيث تم تحديد خيار \"السماح بسعر تقييم صفري\" للسلعة {0}"
@@ -27341,11 +27358,11 @@ msgstr "يتم إعادة حساب معدل تقييم السلعة مع الأ
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "جارٍ إعادة نشر تقييم الأصناف. قد يُظهر التقرير تقييمًا غير صحيح للأصناف."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "متغير العنصر {0} موجود بنفس السمات\\n \\nItem variant {0} exists with same attributes"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27362,7 +27379,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "لا يمكن طلب أكثر من {0} من المنتج {1} ضمن طلب شامل {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "العنصر {0} غير موجود\\n \\nItem {0} does not exist"
@@ -27374,7 +27391,7 @@ msgstr "الصنف{0} غير موجود في النظام أو انتهت صلا
msgid "Item {0} does not exist."
msgstr "العنصر {0} غير موجود\\n \\nItem {0} does not exist."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "تم إدخال العنصر {0} عدة مرات."
@@ -27386,15 +27403,15 @@ msgstr "تمت إرجاع الصنف{0} من قبل"
msgid "Item {0} has been disabled"
msgstr "الصنف{0} تم تعطيله"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "العنصر {0} ليس له رقم تسلسلي. يتم تسليم العناصر ذات الأرقام التسلسلية فقط بناءً على الرقم التسلسلي."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "الصنف{0} قد وصل إلى نهاية عمره في {1}"
@@ -27406,15 +27423,15 @@ msgstr "تم تجاهل الصنف {0} لأنه ليس بند مخزون"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "تم حجز/تسليم المنتج {0} بالفعل بموجب أمر البيع {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "تم إلغاء العنصر {0}\\n \\nItem {0} is cancelled"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "تم تعطيل البند {0}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27422,7 +27439,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "البند {0} ليس بند لديه رقم تسلسلي"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "العنصر {0} ليس عنصر مخزون\\n \\nItem {0} is not a stock Item"
@@ -27430,11 +27447,11 @@ msgstr "العنصر {0} ليس عنصر مخزون\\n \\nItem {0} is not a s
msgid "Item {0} is not a subcontracted item"
msgstr "العنصر {0} ليس عنصرًا متعاقدًا عليه من الباطن"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "البند {0} غير نشط أو تم التوصل إلى نهاية الحياة"
@@ -27450,7 +27467,7 @@ msgstr "يجب أن يكون العنصر {0} عنصرًا غير متوفر ف
msgid "Item {0} must be a non-stock item"
msgstr "الصنف {0} يجب ألا يكون صنف مخزن Item {0} must be a non-stock item"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "العنصر {0} غير موجود في جدول \"المواد الخام الموردة\" في {1} {2}"
@@ -27458,7 +27475,7 @@ msgstr "العنصر {0} غير موجود في جدول \"المواد الخا
msgid "Item {0} not found."
msgstr "العنصر {0} غير موجود."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "البند {0} الكمية المطلوبة {1} لا يمكن أن تكون أقل من الحد الأدنى للطلب {2} (المحددة في البند)."
@@ -27466,7 +27483,7 @@ msgstr "البند {0} الكمية المطلوبة {1} لا يمكن أن تك
msgid "Item {0}: {1} qty produced. "
msgstr "العنصر {0}: {1} الكمية المنتجة."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "العنصر {} غير موجود."
@@ -27512,7 +27529,7 @@ msgstr "سجل حركة مبيعات وفقاً للصنف"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "يلزم وجود رمز الصنف/الصنف للحصول على نموذج ضريبة الصنف."
@@ -27536,7 +27553,7 @@ msgstr "كتالوج العناصر"
msgid "Items Filter"
msgstr "تصفية الاصناف"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "العناصر المطلوبة"
@@ -27560,11 +27577,11 @@ msgstr "اصناف يمكن طلبه"
msgid "Items and Pricing"
msgstr "السلع والتسعيرات"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "لا يمكن تحديث العناصر لوجود أوامر واردة من الباطن مرتبطة بأمر البيع هذا."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "لا يمكن تحديث العناصر لأن أمر التعاقد من الباطن يتم إنشاؤه مقابل أمر الشراء {0}."
@@ -27576,7 +27593,7 @@ msgstr "عناصر لطلب المواد الخام"
msgid "Items not found."
msgstr "لم يتم العثور على العناصر."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "تم تحديث سعر الأصناف إلى الصفر حيث تم تحديد خيار \"السماح بسعر تقييم صفري\" للأصناف التالية: {0}"
@@ -27586,7 +27603,7 @@ msgstr "تم تحديث سعر الأصناف إلى الصفر حيث تم تح
msgid "Items to Be Repost"
msgstr "عناصر سيتم إعادة نشرها"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "العناصر المطلوب تصنيعها لسحب المواد الخام المرتبطة بها."
@@ -27651,9 +27668,9 @@ msgstr "القدرة الوظيفية"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27715,7 +27732,7 @@ msgstr "سجل وقت بطاقة العمل"
msgid "Job Card and Capacity Planning"
msgstr "بطاقة العمل وتخطيط القدرات"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "تم إكمال بطاقة العمل {0}"
@@ -27791,7 +27808,7 @@ msgstr "اسم العامل"
msgid "Job Worker Warehouse"
msgstr "مستودع عامل التوظيف"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "تم إنشاء بطاقة العمل {0}"
@@ -28011,7 +28028,7 @@ msgstr "كيلوواط"
msgid "Kilowatt-Hour"
msgstr "كيلوواط ساعة"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "يرجى إلغاء إدخالات التصنيع أولاً مقابل أمر العمل {0}."
@@ -28139,7 +28156,7 @@ msgstr "تاريخ الانتهاء الأخير"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "تم آخر تحديث لإدخال دفتر الأستاذ العام {}. لا يُسمح بهذه العملية أثناء استخدام النظام. يُرجى الانتظار 5 دقائق قبل إعادة المحاولة."
@@ -28221,7 +28238,7 @@ msgstr "لا يمكن أن يكون تاريخ فحص الكربون الأخي
msgid "Last transacted"
msgstr "آخر عملية تم إجراؤها"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "اخير"
@@ -28472,12 +28489,12 @@ msgstr "ملاعب ليجاسي"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "كيان قانوني / شركة تابعة لها مخطط حسابات منفصل خاص بالمنظمة."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "نفقات قانونية"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "أسطورة"
@@ -28488,7 +28505,7 @@ msgstr "أسطورة"
msgid "Length (cm)"
msgstr "الطول (سم)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "أقل من المبلغ"
@@ -28547,7 +28564,7 @@ msgstr "رقم الرخصة"
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "الحدود تجاوزت"
@@ -28608,7 +28625,7 @@ msgstr "رابط لطلبات المواد"
msgid "Link with Customer"
msgstr "التواصل مع العميل"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "تواصل مع المورد"
@@ -28629,12 +28646,12 @@ msgstr "الفواتير المرتبطة"
msgid "Linked Location"
msgstr "الموقع المرتبط"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "مرتبط بالوثائق المقدمة"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "فشل الربط"
@@ -28642,7 +28659,7 @@ msgstr "فشل الربط"
msgid "Linking to Customer Failed. Please try again."
msgstr "فشل الاتصال بالعميل. يرجى المحاولة مرة أخرى."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "فشل الاتصال بالمورد. يرجى المحاولة مرة أخرى."
@@ -28700,8 +28717,8 @@ msgstr "تاريخ بدء القرض"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "تاريخ بدء القرض وفترة القرض إلزامية لحفظ خصم الفاتورة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "القروض (الخصوم)"
@@ -28746,8 +28763,8 @@ msgstr "سجل معدل بيع وشراء سلعة ما"
msgid "Logo"
msgstr "شعار"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "أحكام طويلة الأجل"
@@ -28948,6 +28965,11 @@ msgstr "مستوى برنامج الولاء"
msgid "Loyalty Program Type"
msgstr "نوع برنامج الولاء"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28991,10 +29013,10 @@ msgstr "عطل الآلة"
msgid "Machine operator errors"
msgstr "أخطاء مشغل الآلة"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "رئيسي"
@@ -29237,9 +29259,9 @@ msgstr "المواد الرئيسية والاختيارية التي تم در
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "سنة الصنع"
@@ -29259,7 +29281,7 @@ msgstr "انشئ قيد اهلاك"
msgid "Make Difference Entry"
msgstr "جعل دخول الفرق"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "حدد وقتاً كافياً للتنفيذ"
@@ -29297,12 +29319,12 @@ msgstr "انشاء فاتورة المبيعات"
msgid "Make Serial No / Batch from Work Order"
msgstr "إنشاء رقم تسلسلي / دفعة من أمر العمل"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "جعل دخول الأسهم"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "إنشاء أمر شراء للتعاقد من الباطن"
@@ -29318,11 +29340,11 @@ msgstr "إجراء مكالمة"
msgid "Make project from a template."
msgstr "جعل المشروع من قالب."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "إنشاء نسخة {0}"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "إنشاء متغيرات {0}"
@@ -29330,8 +29352,8 @@ msgstr "إنشاء متغيرات {0}"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "لا يُنصح بإجراء قيود يومية على الحسابات المقدمة: {0} . لن تكون هذه القيود متاحة للمطابقة."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "يدير"
@@ -29350,7 +29372,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "إدارة طلباتك"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "الإدارة"
@@ -29366,7 +29388,7 @@ msgstr "المدير العام"
msgid "Mandatory Accounting Dimension"
msgstr "البعد المحاسبي الإلزامي"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "حقل إلزامي"
@@ -29465,8 +29487,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29545,7 +29567,7 @@ msgstr "الصانع"
msgid "Manufacturer Part Number"
msgstr "رقم قطعة المُصَنِّع"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "رقم جزء الشركة المصنعة {0} غير صالح"
@@ -29570,7 +29592,7 @@ msgstr "الشركات المصنعة المستخدمة في المنتجات"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29615,10 +29637,6 @@ msgstr "تاريخ التصنيع"
msgid "Manufacturing Manager"
msgstr "مدير التصنيع"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "كمية التصنيع إلزامية\\n \\nManufacturing Quantity is mandatory"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29785,6 +29803,12 @@ msgstr "الحالة الإجتماعية"
msgid "Mark As Closed"
msgstr "تم إغلاق الملف"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29799,12 +29823,12 @@ msgstr "تم إغلاق الملف"
msgid "Market Segment"
msgstr "سوق القطاع"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "التسويق"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "نفقات تسويقية"
@@ -29883,7 +29907,7 @@ msgstr ""
msgid "Material"
msgstr "مواد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "اهلاك المواد"
@@ -29891,7 +29915,7 @@ msgstr "اهلاك المواد"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "اهلاك المواد للتصنيع"
@@ -29972,7 +29996,7 @@ msgstr "أستلام مواد"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30069,11 +30093,11 @@ msgstr "المادة طلب خطة البند"
msgid "Material Request Type"
msgstr "نوع طلب المواد"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "لم يتم إنشاء طلب المواد ، ككمية للمواد الخام المتاحة بالفعل."
@@ -30141,7 +30165,7 @@ msgstr "المواد المُعادة من العمل قيد التنفيذ"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30207,12 +30231,12 @@ msgstr "مواد للمورد"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "تم استلام المواد بالفعل مقابل {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "يجب نقل المواد إلى مستودع العمل الجاري لبطاقة العمل {0}"
@@ -30283,9 +30307,9 @@ msgstr "أقصى درجة"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "الحد الأقصى للخصم المسموح به لهذا المنتج: {0} هو {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30317,11 +30341,11 @@ msgstr "الحد الأقصى لمبلغ الدفع"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "الحد الأقصى للعينات - {0} يمكن الاحتفاظ بالدفعة {1} والبند {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "الحد الأقصى للعينات - {0} تم الاحتفاظ به مسبقا للدفعة {1} و العنصر {2} في الدفعة {3}."
@@ -30382,15 +30406,10 @@ msgstr "ميغا جول"
msgid "Megawatt"
msgstr "ميغاواط"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "اذكر معدل التقييم في مدير السلعة."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "يرجى ذكر ما إذا كان حساب المستحقات غير قياسي"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30440,7 +30459,7 @@ msgstr "دمج مع حساب موجود"
msgid "Merged"
msgstr "تم الدمج"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "لا يمكن دمج السجلات إلا إذا كانت الخصائص التالية متطابقة في كلا السجلين: المجموعة، والنوع الجذر، والشركة، وعملة الحساب."
@@ -30470,7 +30489,7 @@ msgstr "سيتم إرسال رسالة إلى المستخدمين للحصول
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "سيتم تقسيم الرسائل التي تزيد عن 160 حرفا إلى رسائل متعددة"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30671,7 +30690,7 @@ msgstr "الكمية الادنى لايمكن ان تكون اكبر من ال
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "يجب أن تكون الكمية الدنيا أكبر من الكمية المطلوبة للتكرار."
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "القيمة الدنيا: {0}، القيمة القصوى: {1}، بزيادات قدرها: {2}"
@@ -30760,8 +30779,8 @@ msgstr "الدقائق"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "نفقات متنوعة"
@@ -30769,15 +30788,15 @@ msgstr "نفقات متنوعة"
msgid "Mismatch"
msgstr "عدم تطابق"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "مفتقد"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "حساب مفقود"
@@ -30807,7 +30826,7 @@ msgstr "فلاتر مفقودة"
msgid "Missing Finance Book"
msgstr "كتاب التمويل المفقود"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "مفقود، تم الانتهاء منه، جيد"
@@ -30815,7 +30834,7 @@ msgstr "مفقود، تم الانتهاء منه، جيد"
msgid "Missing Formula"
msgstr "الصيغة المفقودة"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "العنصر المفقود"
@@ -30852,7 +30871,7 @@ msgid "Missing required filter: {0}"
msgstr "الفلتر المطلوب مفقود: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "قيمة مفقودة"
@@ -31101,11 +31120,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "تم العثور على عدة برامج ولاء للعميل {}. يرجى الاختيار يدويًا."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "إدخال بيانات فتح نقاط البيع المتعددة"
@@ -31127,11 +31146,11 @@ msgstr "متغيرات متعددة"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "يوجد سنوات مالية متعددة لنفس التاريخ {0}. الرجاء تحديد الشركة لهذه السنة المالية\\n \\nMultiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "لا يمكن وضع علامة \"منتج نهائي\" على عدة عناصر"
@@ -31140,7 +31159,7 @@ msgid "Music"
msgstr "موسيقى"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31227,7 +31246,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31271,7 +31290,7 @@ msgstr "تحليل الاحتياجات"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "الكمية السلبية غير مسموح بها\\n \\nnegative Quantity is not allowed"
@@ -31280,7 +31299,7 @@ msgstr "الكمية السلبية غير مسموح بها\\n \\nnegative Q
msgid "Negative Stock Error"
msgstr "خطأ في المخزون السالب"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "معدل التقييم السلبي غير مسموح به\\n \\nNegative Valuation Rate is not allowed"
@@ -31586,7 +31605,7 @@ msgstr "الوزن الصافي"
msgid "Net Weight UOM"
msgstr "الوزن الصافي لوحدة القياس"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "صافي إجمالي فقدان دقة الحساب"
@@ -31763,7 +31782,7 @@ msgstr "اسم المخزن الجديد"
msgid "New Workplace"
msgstr "مكان العمل الجديد"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "حد الائتمان الجديد أقل من المبلغ المستحق الحالي للعميل. حد الائتمان يجب أن يكون على الأقل {0}\\n \\nNew credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
@@ -31817,7 +31836,7 @@ msgstr "سيتم إرسال البريد الإلكترونية التالي ف
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "لا يوجد حساب مطابق لهذه الفلاتر: {}"
@@ -31830,7 +31849,7 @@ msgstr "لا رد فعل"
msgid "No Answer"
msgstr "لا يوجد رد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "لم يتم العثور على زبون للمعاملات بين الشركات التي تمثل الشركة {0}"
@@ -31843,7 +31862,7 @@ msgstr "لم يتم العثور على عملاء بالخيارات المحد
msgid "No Delivery Note selected for Customer {}"
msgstr "لم يتم تحديد ملاحظة التسليم للعميل {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31859,7 +31878,7 @@ msgstr "أي عنصر مع الباركود {0}"
msgid "No Item with Serial No {0}"
msgstr "أي عنصر مع المسلسل لا {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "لم يتم تحديد أي عناصر للنقل."
@@ -31894,7 +31913,7 @@ msgstr "لم يتم العثور على ملف تعريف نقطة البيع.
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "لا يوجد تصريح"
@@ -31923,19 +31942,19 @@ msgstr "لا يوجد مخزون متوفر حالياً"
msgid "No Summary"
msgstr "لا يوجد ملخص"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "لم يتم العثور على مورد للمعاملات بين الشركات التي تمثل الشركة {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "لم يتم العثور على بيانات اقتطاع الضرائب لتاريخ النشر الحالي."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "لم يتم تعيين حساب اقتطاع ضريبي للشركة {0} في فئة اقتطاع الضرائب {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "لا توجد شروط"
@@ -31965,7 +31984,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "لم يتم العثور على BOM نشط للعنصر {0}. لا يمكن ضمان التسليم عن طريق الرقم التسلسلي"
@@ -32159,7 +32178,7 @@ msgstr "عدد محطات العمل"
msgid "No open Material Requests found for the given criteria."
msgstr "لم يتم العثور على أي طلبات مواد مفتوحة وفقًا للمعايير المحددة."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "لم يتم العثور على إدخال فتح نقطة بيع مفتوح لملف تعريف نقطة البيع {0}."
@@ -32183,7 +32202,7 @@ msgstr "لا تتطلب الفواتير المستحقة إعادة تقييم
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "لم يتم العثور على أي {0} متميز لـ {1} {2} التي تفي بالمعايير التي حددتها."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "لم يتم العثور على طلبات المواد المعلقة للربط للعناصر المحددة."
@@ -32254,7 +32273,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "لم يتم إنشاء أي قيود في دفتر الأستاذ الخاص بالمخزون. يرجى تحديد الكمية أو سعر التقييم للأصناف بشكل صحيح والمحاولة مرة أخرى."
@@ -32287,7 +32306,7 @@ msgstr "لا توجد قيم"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "لم يتم العثور على {0} معاملات Inter Company."
@@ -32332,8 +32351,8 @@ msgstr "غير ربحية"
msgid "Non stock items"
msgstr "البنود غير الأسهم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "الالتزامات غير المتداولة"
@@ -32434,7 +32453,7 @@ msgstr "لم نتمكن من العثور على أقدم سنة مالية لل
msgid "Not allow to set alternative item for the item {0}"
msgstr "لا تسمح بتعيين عنصر بديل للعنصر {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "غير مسموح بإنشاء بعد محاسبي لـ {0}"
@@ -32488,7 +32507,7 @@ msgstr "ملاحظة: إذا كنت ترغب في استخدام المنتج ا
msgid "Note: Item {0} added multiple times"
msgstr "ملاحظة: تمت إضافة العنصر {0} عدة مرات"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "ملاحظة : لن يتم إنشاء تدوين المدفوعات نظرا لأن \" حساب النقد او المصرف\" لم يتم تحديده"
@@ -32496,7 +32515,7 @@ msgstr "ملاحظة : لن يتم إنشاء تدوين المدفوعات نظ
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "ملاحظة: مركز التكلفة هذا هو مجموعة. لا يمكن إجراء القيود المحاسبية مقابل المجموعات."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "ملاحظة: لدمج الأصناف، أنشئ مطابقة مخزون منفصلة للصنف القديم {0}"
@@ -32679,6 +32698,11 @@ msgstr "عدد الحساب الجديد، سيتم تضمينه في اسم ا
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "عدد مركز التكلفة الجديد ، سيتم إدراجه في اسم مركز التكلفة كبادئة"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32738,18 +32762,18 @@ msgstr "قراءة عداد المسافات (الأخيرة)"
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "معدات مكتبية"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "نفقات صيانة المكاتب"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "ايجار مكتب"
@@ -32877,7 +32901,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "بمجرد تعيينها ، ستكون هذه الفاتورة قيد الانتظار حتى التاريخ المحدد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "بمجرد إغلاق أمر العمل، لا يمكن استئنافه."
@@ -32917,7 +32941,7 @@ msgstr "لا يتم دعم سوى \"إدخالات الدفع\" التي تتم
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "لا يمكن استخدام سوى ملفات CSV و Excel لاستيراد البيانات. يرجى التحقق من تنسيق الملف الذي تحاول تحميله."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32936,7 +32960,7 @@ msgstr "يتم خصم الضريبة فقط على المبلغ الزائد "
msgid "Only Include Allocated Payments"
msgstr "قم بتضمين المدفوعات المخصصة فقط"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "لا يمكن أن يكون من النوع {0}إلا الوالد"
@@ -32973,7 +32997,7 @@ msgstr "يجب أن يكون أحد خياري الإيداع أو السحب ف
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "لا يمكن إنشاء سوى إدخال واحد {0} مقابل أمر العمل {1}"
@@ -33191,8 +33215,8 @@ msgstr "الرصيد الافتتاحي = بداية الفترة، الرصيد
msgid "Opening Balance Details"
msgstr "تفاصيل الرصيد الافتتاحي"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "الرصيد الافتتاحي لحقوق الملكية"
@@ -33215,7 +33239,7 @@ msgstr "تاريخ الفتح"
msgid "Opening Entry"
msgstr "فتح مدخل"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "لا يمكن إنشاء قيد افتتاحي بعد إنشاء قسيمة إغلاق الفترة."
@@ -33248,7 +33272,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33284,16 +33308,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "مخزون أول المدة"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33311,12 +33335,15 @@ msgstr "القيمة الافتتاحية"
msgid "Opening and Closing"
msgstr "افتتاح واختتام"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "تمت إضافة عملية إنشاء المخزون الافتتاحي إلى قائمة الانتظار، وسيتم إنشاؤها في الخلفية. يرجى مراجعة إدخال المخزون بعد فترة."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "مكون التشغيل"
@@ -33348,7 +33375,7 @@ msgstr "تكاليف التشغيل (عملة الشركة)"
msgid "Operating Cost Per BOM Quantity"
msgstr "تكلفة التشغيل لكل كمية من قائمة المواد"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "تكلفة التشغيل حسب أمر العمل / BOM"
@@ -33391,15 +33418,15 @@ msgstr "وصف العملية"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "معرف العملية"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "معرف العملية"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33424,7 +33451,7 @@ msgstr "رقم صف العملية"
msgid "Operation Time"
msgstr "وقت العملية"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "زمن العملية يجب أن يكون أكبر من 0 للعملية {0}\\n \\nOperation Time must be greater than 0 for Operation {0}"
@@ -33439,11 +33466,11 @@ msgstr "اكتمال عملية لكيفية العديد من السلع تام
msgid "Operation time does not depend on quantity to produce"
msgstr "لا يعتمد وقت التشغيل على كمية الإنتاج"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "تمت إضافة العملية {0} عدة مرات في أمر العمل {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "العملية {0} لا تنتمي إلى أمر العمل {1}"
@@ -33459,9 +33486,9 @@ msgstr "العملية {0} أطول من أي ساعات عمل متاحة في
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33634,7 +33661,7 @@ msgstr "تم إنشاء الفرصة {0}"
msgid "Optimize Route"
msgstr "تحسين الطريق"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33784,7 +33811,7 @@ msgstr "الكمية التي تم طلبها"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "أوامر"
@@ -33900,7 +33927,7 @@ msgstr "أونصة/غالون (الولايات المتحدة)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "كمية خارجة"
@@ -33938,7 +33965,7 @@ msgstr "لا تغطيه الضمان"
msgid "Out of stock"
msgstr "إنتهى من المخزن"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "إدخال بيانات فتح نقاط البيع القديمة"
@@ -33957,6 +33984,7 @@ msgstr "الدفعة الصادرة"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "أسعار المنتهية ولايته"
@@ -33992,7 +34020,7 @@ msgstr "الرصيد المستحق (عملة الشركة)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34002,7 +34030,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34062,17 +34090,22 @@ msgstr "تم تجاوز حدّ السماح بالفواتير الزائدة ل
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "بدل التسليم/الاستلام الزائد (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "بدل الإفراط في الانتقاء"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "إيصال زائد"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "تم تجاهل استلام/تسليم {0} {1} للعنصر {2} لأن لديك الدور {3} ."
@@ -34092,11 +34125,11 @@ msgstr "بدل التحويل الزائد (%)"
msgid "Over Withheld"
msgstr "مبالغ محجوزة"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "تم تجاهل الفوترة الزائدة لـ {0} {1} للعنصر {2} لأن لديك الدور {3} ."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "تم تجاهل الفوترة الزائدة لـ {} لأن لديك دور {} ."
@@ -34396,7 +34429,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "دخول فتح نقاط البيع"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "إدخال فتح نقطة البيع - {0} قديم. يرجى إغلاق نقطة البيع وإنشاء إدخال فتح جديد."
@@ -34417,7 +34450,7 @@ msgstr "تفاصيل دخول فتح نقاط البيع"
msgid "POS Opening Entry Exists"
msgstr "تم إنشاء مدخل فتح نقطة البيع"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "بيانات فتح نقطة البيع مفقودة"
@@ -34453,7 +34486,7 @@ msgstr "طريقة الدفع في نقاط البيع"
msgid "POS Profile"
msgstr "الملف الشخصي لنقطة البيع"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "ملف تعريف نقطة البيع - {0} يحتوي على عدة إدخالات مفتوحة لفتح نقاط البيع. يرجى إغلاق أو إلغاء الإدخالات الحالية قبل المتابعة."
@@ -34471,11 +34504,11 @@ msgstr "نقاط البيع الشخصية الملف الشخصي"
msgid "POS Profile doesn't match {}"
msgstr "ملف تعريف نقطة البيع لا يتطابق مع {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "ملف تعريف نقطة البيع إلزامي لتمييز هذه الفاتورة كمعاملة نقطة بيع."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "ملف نقطة البيع مطلوب للقيام بإدخال خاص بنقطة البيع"
@@ -34581,7 +34614,7 @@ msgstr "عنصر معبأ"
msgid "Packed Items"
msgstr "عناصر معبأة"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "لا يمكن نقل العناصر المعبأة داخلياً"
@@ -34618,7 +34651,7 @@ msgstr "قائمة بمحتويات الشحنة"
msgid "Packing Slip Item"
msgstr "مادة كشف التعبئة"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "تم إلغاء قائمة الشحنة"
@@ -34659,7 +34692,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34725,7 +34758,7 @@ msgid "Paid To Account Type"
msgstr "نوع الحساب المدفوع"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "المبلغ المدفوع + المبلغ المشطوب لا يمكن ان يكون أكبر من المجموع الكلي\\n \\nPaid amount + Write Off Amount can not be greater than Grand Total"
@@ -34819,7 +34852,7 @@ msgstr "دفعة الأم"
msgid "Parent Company"
msgstr "الشركة الام"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "يجب أن تكون الشركة الأم شركة مجموعة"
@@ -34946,7 +34979,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "تم نقل جزء من المواد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "لا يُسمح بالدفع الجزئي في معاملات نقاط البيع."
@@ -35159,7 +35192,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35186,7 +35219,7 @@ msgstr "الطرف المعني"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "حساب طرف"
@@ -35219,7 +35252,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "رقم حساب الطرف (كشف حساب بنكي)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "يجب أن تكون عملة حساب الطرف {0} ({1}) وعملة المستند ({2}) متطابقتين."
@@ -35371,7 +35404,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35480,7 +35513,7 @@ msgstr "الأحداث السابقة"
msgid "Pause"
msgstr "وقفة"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "إيقاف العمل مؤقتًا"
@@ -35531,7 +35564,7 @@ msgid "Payable"
msgstr "واجب الدفع"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35565,7 +35598,7 @@ msgstr "إعدادات الدافع"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35712,7 +35745,7 @@ msgstr "تم تعديل تدوين مدفوعات بعد سحبه. يرجى سح
msgid "Payment Entry is already created"
msgstr "تدوين المدفوعات تم انشاؤه بالفعل"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "تم ربط إدخال الدفعة {0} بالطلب {1}، تحقق مما إذا كان يجب سحبه كدفعة مقدمة في هذه الفاتورة."
@@ -35937,7 +35970,7 @@ msgstr "المراجع الدفع"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36002,7 +36035,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36031,7 +36064,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36087,6 +36120,7 @@ msgstr "حالة شروط الدفع لأمر البيع"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36101,6 +36135,7 @@ msgstr "حالة شروط الدفع لأمر البيع"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36158,7 +36193,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "طرق الدفع إلزامية. الرجاء إضافة طريقة دفع واحدة على الأقل."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36233,8 +36268,8 @@ msgstr "تم تحديث المدفوعات."
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "رواتب واجبة الدفع"
@@ -36281,10 +36316,14 @@ msgstr "الأنشطة المعلقة"
msgid "Pending Amount"
msgstr "في انتظار المبلغ"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36293,9 +36332,18 @@ 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:273
msgid "Pending Quantity"
msgstr "في انتظار الكمية"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36325,6 +36373,14 @@ msgstr "الأنشطة في انتظار لهذا اليوم"
msgid "Pending processing"
msgstr "في انتظار المعالجة"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "صناديق التقاعد"
@@ -36435,7 +36491,7 @@ msgstr "تحليل التصور"
msgid "Period Based On"
msgstr "الفترة على أساس"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "فترة الإغلاق"
@@ -36999,8 +37055,8 @@ msgstr "لوحة معلومات النبات"
msgid "Plant Floor"
msgstr "أرضيات المصانع"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "وحدات التصنيع والآلات"
@@ -37036,7 +37092,7 @@ msgstr "يرجى تحديد الأولوية"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "يرجى تعيين مجموعة الموردين في إعدادات الشراء."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "يرجى تحديد الحساب"
@@ -37084,7 +37140,7 @@ msgstr "يرجى إضافة عمود الحساب المصرفي"
msgid "Please add the account to root level Company - {0}"
msgstr "يرجى إضافة الحساب إلى مستوى الشركة الرئيسي - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "الرجاء إضافة الحساب إلى شركة على مستوى الجذر - {}"
@@ -37092,7 +37148,7 @@ msgstr "الرجاء إضافة الحساب إلى شركة على مستوى
msgid "Please add {1} role to user {0}."
msgstr "يرجى إضافة الدور {1} إلى المستخدم {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "يرجى تعديل الكمية أو تحرير {0} للمتابعة."
@@ -37100,7 +37156,7 @@ msgstr "يرجى تعديل الكمية أو تحرير {0} للمتابعة."
msgid "Please attach CSV file"
msgstr "يرجى إرفاق ملف CSV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "يرجى إلغاء وتعديل إدخال الدفع"
@@ -37134,7 +37190,7 @@ msgstr "يرجى التحقق إما من قسم العمليات أو من قس
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "يرجى مراجعة رسالة الخطأ واتخاذ الإجراءات اللازمة لإصلاح الخطأ ثم إعادة تشغيل عملية إعادة النشر مرة أخرى."
@@ -37159,11 +37215,15 @@ msgstr "الرجاء النقر على \"إنشاء جدول\" لجلب الرق
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "الرجاء الضغط علي ' إنشاء الجدول ' للحصول علي جدول\\n \\nPlease click on 'Generate Schedule' to get schedule"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "يرجى الاتصال بأي من المستخدمين التاليين لتمديد حدود الائتمان لـ {0}: {1}"
@@ -37171,11 +37231,11 @@ msgstr "يرجى الاتصال بأي من المستخدمين التاليي
msgid "Please contact any of the following users to {} this transaction."
msgstr "يرجى الاتصال بأي من المستخدمين التاليين لإتمام هذه المعاملة."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "يرجى الاتصال بمسؤول النظام لتمديد حدود الائتمان لـ {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "الرجاء تحويل الحساب الرئيسي في الشركة الفرعية المقابلة إلى حساب مجموعة."
@@ -37187,11 +37247,11 @@ msgstr "الرجاء إنشاء عميل من العميل المحتمل {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "يرجى إنشاء قسائم تكلفة الشحن مقابل الفواتير التي تم تمكين خيار \"تحديث المخزون\" فيها."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "يرجى إنشاء بُعد محاسبي جديد إذا لزم الأمر."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "يرجى إنشاء عملية شراء من مستند البيع أو التسليم الداخلي نفسه"
@@ -37199,11 +37259,11 @@ msgstr "يرجى إنشاء عملية شراء من مستند البيع أو
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "الرجاء إنشاء إيصال شراء أو فاتورة شراء للعنصر {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "يرجى حذف حزمة المنتج {0}قبل دمج {1} في {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "يرجى تعطيل سير العمل مؤقتًا لإدخال دفتر اليومية {0}"
@@ -37211,7 +37271,7 @@ msgstr "يرجى تعطيل سير العمل مؤقتًا لإدخال دفتر
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "يرجى عدم تسجيل مصروفات أصول متعددة مقابل أصل واحد."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "يرجى عدم إنشاء أكثر من 500 عنصر في وقت واحد"
@@ -37235,7 +37295,7 @@ msgstr "يرجى تفعيل هذا الخيار فقط إذا كنت تفهم آ
msgid "Please enable {0} in the {1}."
msgstr "يرجى تفعيل {0} في {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "يرجى تفعيل {} في {} للسماح بظهور العنصر نفسه في صفوف متعددة"
@@ -37247,20 +37307,20 @@ msgstr "يرجى التأكد من أن الحساب {0} هو حساب في ال
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 "يرجى التأكد من أن الحساب {0} {1} هو حساب قابل للدفع. يمكنك تغيير نوع الحساب إلى قابل للدفع أو اختيار حساب آخر."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "يرجى التأكد من أن حساب {} هو حساب في الميزانية العمومية."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "يرجى التأكد من أن حساب {} هو حساب مستحق القبض."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "الرجاء إدخال حساب الفرق أو تعيين حساب تسوية المخزون الافتراضي للشركة {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "الرجاء إدخال الحساب لمبلغ التغيير\\n \\nPlease enter Account for Change Amount"
@@ -37268,15 +37328,15 @@ msgstr "الرجاء إدخال الحساب لمبلغ التغيير\\n \\
msgid "Please enter Approving Role or Approving User"
msgstr "الرجاء إدخال صلاحية المخول بالتصديق أو المستخدم المخول بالتصديق"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "يرجى إدخال مركز التكلفة\\n \\nPlease enter Cost Center"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "الرجاء إدخال تاريخ التسليم"
@@ -37284,7 +37344,7 @@ msgstr "الرجاء إدخال تاريخ التسليم"
msgid "Please enter Employee Id of this sales person"
msgstr "الرجاء إدخال معرف الموظف الخاص بشخص المبيعات هذا"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "الرجاء إدخال حساب النفقات\\n \\nPlease enter Expense Account"
@@ -37293,7 +37353,7 @@ msgstr "الرجاء إدخال حساب النفقات\\n \\nPlease enter Ex
msgid "Please enter Item Code to get Batch Number"
msgstr "الرجاء إدخال رمز العنصر للحصول على رقم الدفعة\\n \\nPlease enter Item Code to get Batch Number"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "الرجاء إدخال كود البند للحصول على رقم الدفعة"
@@ -37309,7 +37369,7 @@ msgstr "يرجى إدخال تفاصيل الصيانة أولاً"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "الرجاء إدخال الكمية المخططة للبند {0} في الصف {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "الرجاء إدخال بند الإنتاج أولا"
@@ -37329,7 +37389,7 @@ msgstr "الرجاء إدخال تاريخ المرجع\\n \\nPlease enter Re
msgid "Please enter Root Type for account- {0}"
msgstr "الرجاء إدخال نوع الجذر للحساب - {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37346,7 +37406,7 @@ msgid "Please enter Warehouse and Date"
msgstr "الرجاء إدخال المستودع والتاريخ"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "الرجاء إدخال حساب الشطب"
@@ -37366,7 +37426,7 @@ msgstr "يرجى إدخال تاريخ تسليم واحد على الأقل و
msgid "Please enter company name first"
msgstr "الرجاء إدخال اسم الشركة اولاً"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "الرجاء إدخال العملة الافتراضية في شركة الرئيسية"
@@ -37394,7 +37454,7 @@ msgstr "من فضلك ادخل تاريخ ترك العمل."
msgid "Please enter serial nos"
msgstr "يرجى إدخال الأرقام التسلسلية"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "الرجاء إدخال اسم الشركة للتأكيد"
@@ -37462,11 +37522,11 @@ msgstr "يرجى التأكد من أن الموظفين أعلاه يقدمون
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "يرجى التأكد من أنك تريد حقا حذف جميع المعاملات لهذه الشركة. ستبقى بياناتك الرئيسية (الماستر) كما هيا. لا يمكن التراجع عن هذا الإجراء."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "يرجى ذكر \"وحدة قياس الوزن\" مع كلمة \"الوزن\"."
@@ -37525,7 +37585,7 @@ msgstr "يرجى تحديد نوع القالب لتنزيل القالب
msgid "Please select Apply Discount On"
msgstr "الرجاء اختيار (تطبيق تخفيض على)"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "الرجاء اختيار بوم ضد العنصر {0}"
@@ -37541,7 +37601,7 @@ msgstr "يرجى اختيار الحساب المصرفي"
msgid "Please select Category first"
msgstr "الرجاء تحديد التصنيف أولا\\n \\nPlease select Category first"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37571,7 +37631,7 @@ msgstr "يرجى تحديد تاريخ الانتهاء لاستكمال سجل
msgid "Please select Customer first"
msgstr "يرجى اختيار العميل أولا"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "الرجاء اختيار الشركة الحالية لإنشاء دليل الحسابات"
@@ -37580,8 +37640,8 @@ msgstr "الرجاء اختيار الشركة الحالية لإنشاء دل
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "يرجى تحديد \"المنتج النهائي\" لعنصر الخدمة {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "يرجى اختيار رمز البند أولاً"
@@ -37613,11 +37673,11 @@ msgstr "الرجاء تحديد تاريخ النشر أولا\\n \\nPlease s
msgid "Please select Price List"
msgstr "الرجاء اختيار قائمة الأسعار\\n \\nPlease select Price List"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "الرجاء اختيار الكمية ضد العنصر {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "يرجى تحديد نموذج الاحتفاظ مستودع في إعدادات المخزون أولا"
@@ -37633,7 +37693,7 @@ msgstr "الرجاء تحديد تاريخ البدء وتاريخ الانته
msgid "Please select Stock Asset Account"
msgstr "الرجاء تحديد حساب أصول الأسهم"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "يرجى تحديد حساب الأرباح/الخسائر غير المحققة أو إضافة حساب الأرباح/الخسائر غير المحققة الافتراضي للشركة {0}"
@@ -37650,7 +37710,7 @@ msgstr "الرجاء اختيار الشركة"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "الرجاء تحديد شركة أولاً."
@@ -37674,7 +37734,7 @@ msgstr "الرجاء اختيار مورد"
msgid "Please select a Warehouse"
msgstr "الرجاء اختيار مستودع"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "يرجى اختيار أمر عمل أولاً."
@@ -37747,11 +37807,15 @@ msgstr "يرجى اختيار قيمة ل {0} عرض مسعر إلى {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "يرجى تحديد رمز المنتج قبل تحديد المستودع."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "يرجى تحديد فلتر واحد على الأقل: رمز الصنف، أو رقم الدفعة، أو الرقم التسلسلي."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37771,7 +37835,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr "يرجى اختيار عنصر واحد على الأقل للمتابعة"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "يرجى تحديد عملية واحدة على الأقل لإنشاء بطاقة عمل"
@@ -37829,7 +37893,7 @@ msgstr "يرجى تحديد الشركة"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "يرجى تحديد نوع البرنامج متعدد الطبقات لأكثر من قواعد مجموعة واحدة."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "يرجى تحديد المستودع أولاً"
@@ -37858,7 +37922,7 @@ msgstr "يرجى اختيار نوع مستند صالح."
msgid "Please select weekly off day"
msgstr "الرجاء اختيار يوم العطلة الاسبوعي"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "الرجاء تحديد {0} أولا\\n \\nPlease select {0} first"
@@ -37867,11 +37931,11 @@ msgstr "الرجاء تحديد {0} أولا\\n \\nPlease select {0} first"
msgid "Please set 'Apply Additional Discount On'"
msgstr "يرجى تحديد 'تطبيق خصم إضافي على'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "يرجى تحديد \"مركز تكلفة اهلاك الأصول\" للشركة {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "يرجى تحديد \"احساب لربح / الخسارة عند التخلص من الأصول\" للشركة {0}"
@@ -37883,7 +37947,7 @@ msgstr "يرجى تعيين '{0}' في الشركة: {1}"
msgid "Please set Account"
msgstr "يرجى إنشاء حساب"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "يرجى تحديد الحساب لمبلغ الباقي"
@@ -37913,7 +37977,7 @@ msgstr "يرجى تعيين الشركة"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "يرجى تحديد عنوان العميل لتحديد ما إذا كانت المعاملة عبارة عن تصدير."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "يرجى تحديد الحسابات المتعلقة بالاهلاك في فئة الأصول {0} أو الشركة {1}"
@@ -37931,7 +37995,7 @@ msgstr "يرجى تحديد الرمز الضريبي للعميل '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "يرجى تحديد الرمز المالي للإدارة العامة '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "يرجى تعيين حساب الأصول الثابتة في فئة الأصول {0}"
@@ -37977,7 +38041,7 @@ msgstr "الرجاء تعيين شركة"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "يرجى تحديد مركز تكلفة للأصل أو تحديد مركز تكلفة استهلاك الأصول للشركة {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "يرجى تحديد قائمة العطلات الافتراضية للشركة {0}"
@@ -38014,23 +38078,23 @@ msgstr "يرجى ضبط صف واحد على الأقل في جدول الضرا
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "يرجى تحديد كل من رقم التعريف الضريبي والرمز المالي للشركة {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "الرجاء تحديد الحساب البنكي أو النقدي الافتراضي في نوع الدفع\\n \\nPlease set default Cash or Bank account in Mode of Payment {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "الرجاء تعيين حساب نقدي أو مصرفي افتراضي في طريقة الدفع {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "الرجاء تعيين حساب نقدي أو مصرفي افتراضي في طريقة الدفع {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "يرجى تعيين حساب الربح/الخسارة الافتراضي في الشركة {}"
@@ -38059,7 +38123,7 @@ msgstr "يرجى تعيين {0} الافتراضي للشركة {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "يرجى ضبط الفلتر على أساس البند أو المخزن"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "يرجى تحديد أحد الخيارات التالية:"
@@ -38067,7 +38131,7 @@ msgstr "يرجى تحديد أحد الخيارات التالية:"
msgid "Please set opening number of booked depreciations"
msgstr "يرجى تحديد عدد الإهلاكات المحجوزة في بداية الفترة"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "يرجى تحديد (تكرار) بعد الحفظ"
@@ -38079,15 +38143,15 @@ msgstr "يرجى ضبط عنوان العميل"
msgid "Please set the Default Cost Center in {0} company."
msgstr "يرجى تعيين مركز التكلفة الافتراضي في الشركة {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "يرجى تعيين رمز العنصر أولا"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "يرجى تحديد المستودع المستهدف في بطاقة الوظيفة"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "يرجى تحديد مستودع العمل قيد التنفيذ في بطاقة العمل"
@@ -38126,7 +38190,7 @@ msgstr "يرجى ضبط {0} في مُنشئ قائمة المواد {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "يرجى تعيين {0} في الشركة {1} لحساب مكاسب/خسائر الصرف"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "يرجى تعيين {0} إلى {1}، وهو نفس الحساب الذي تم استخدامه في الفاتورة الأصلية {2}."
@@ -38148,7 +38212,7 @@ msgstr "يرجى تحديد شركة"
msgid "Please specify Company to proceed"
msgstr "الرجاء تحديد الشركة للمضى قدما\\n \\nPlease specify Company to proceed"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "يرجى تحديد هوية الصف صالحة لصف {0} في الجدول {1}"
@@ -38161,7 +38225,7 @@ msgstr "يرجى تحديد {0} أولاً."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "يرجى تحديد خاصية واحدة على الأقل في جدول (الخاصيات)"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "يرجى تحديد الكمية أو التقييم إما قيم أو كليهما"
@@ -38266,8 +38330,8 @@ msgstr "Post Post String"
msgid "Post Title Key"
msgstr "عنوان العنوان الرئيسي"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "نفقات بريدية"
@@ -38332,7 +38396,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38350,7 +38414,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38472,10 +38536,6 @@ msgstr "تاريخ ووقت النشر"
msgid "Posting Time"
msgstr "نشر التوقيت"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "تاريخ النشر و وقت النشر الزامي\\n \\nPosting date and posting time is mandatory"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38549,18 +38609,23 @@ msgstr "مدعوم من {0}"
msgid "Pre Sales"
msgstr "قبل البيع"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "تفضيل"
@@ -38733,6 +38798,7 @@ msgstr "ألواح سعر الخصم"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38756,6 +38822,7 @@ msgstr "ألواح سعر الخصم"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38807,7 +38874,7 @@ msgstr "قائمة الأسعار البلد"
msgid "Price List Currency"
msgstr "قائمة الأسعار العملات"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "قائمة أسعار العملات غير محددة"
@@ -39162,7 +39229,7 @@ msgstr "اطبع الايصال"
msgid "Print Receipt on Order Complete"
msgstr "اطبع الإيصال عند إتمام الطلب"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "اطبع UOM بعد الكمية"
@@ -39171,8 +39238,8 @@ msgstr "اطبع UOM بعد الكمية"
msgid "Print Without Amount"
msgstr "طباعة بدون قيمة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "طباعة وقرطاسية"
@@ -39180,7 +39247,7 @@ msgstr "طباعة وقرطاسية"
msgid "Print settings updated in respective print format"
msgstr "تم تحديث إعدادات الطباعة في تنسيق الطباعة الخاصة\\n \\nPrint settings updated in respective print format"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "طباعة الضرائب مع مبلغ صفر"
@@ -39283,10 +39350,6 @@ msgstr "مشكلة"
msgid "Procedure"
msgstr "إجراء"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "تم إسقاط الإجراءات"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39340,7 +39403,7 @@ msgstr "لا يمكن أن تتجاوز نسبة الفاقد في العملي
msgid "Process Loss Qty"
msgstr "كمية الفاقد في العملية"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "كمية الفاقد في العملية"
@@ -39421,6 +39484,10 @@ msgstr "عملية الاشتراك"
msgid "Process in Single Transaction"
msgstr "معالجة في معاملة واحدة"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39516,8 +39583,8 @@ msgstr "المنتج"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39582,7 +39649,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "الإنتاج"
@@ -39796,7 +39863,7 @@ msgstr "لا يمكن أن تتجاوز نسبة التقدم في مهمة ما
msgid "Progress (%)"
msgstr "تقدم (٪)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "دعوة للمشاركة في المشاريع"
@@ -39840,7 +39907,7 @@ msgstr "حالة المشروع"
msgid "Project Summary"
msgstr "ملخص المشروع"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "ملخص المشروع لـ {0}"
@@ -39971,7 +40038,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40117,7 +40184,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "آفاق تشارك ولكن لم تتحول"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40132,7 +40199,7 @@ msgstr "تزويد بعنوان البريد الإلكتروني المسجل
msgid "Providing"
msgstr "توفير"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "الحساب المؤقت"
@@ -40204,8 +40271,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40528,7 +40596,7 @@ msgstr "تم إنشاء أمر الشراء {0}"
msgid "Purchase Order {0} is not submitted"
msgstr "طلب الشراء {0} يجب أن يعتمد\\n \\nPurchase Order {0} is not submitted"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "طلبات الشراء"
@@ -40543,7 +40611,7 @@ msgstr "عدد أوامر الشراء"
msgid "Purchase Orders Items Overdue"
msgstr "أوامر الشراء البنود المتأخرة"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "لا يسمح بأوامر الشراء {0} بسبب وضع بطاقة النقاط {1}."
@@ -40558,7 +40626,7 @@ msgstr "أوامر الشراء إلى الفاتورة"
msgid "Purchase Orders to Receive"
msgstr "أوامر الشراء لتلقي"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "أوامر الشراء {0} غير مرتبطة"
@@ -40692,7 +40760,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "قالب الضرائب على المشتريات"
@@ -40790,6 +40858,7 @@ msgstr "المشتريات"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40799,10 +40868,6 @@ msgstr "المشتريات"
msgid "Purpose"
msgstr "غرض"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "الهدف يجب ان يكون واحد ل {0}\\n \\nPurpose must be one of {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40858,6 +40923,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40906,6 +40972,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41014,11 +41081,11 @@ msgstr "الكمية لكل وحدة"
msgid "Qty To Manufacture"
msgstr "الكمية للتصنيع"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "لا يمكن أن تكون كمية التصنيع ({0}) كسرًا في وحدة القياس {2}. للسماح بذلك، عطّل '{1}' في وحدة القياس {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41069,8 +41136,8 @@ msgstr "الكمية حسب السهم لوحدة قياس السهم"
msgid "Qty for which recursion isn't applicable."
msgstr "الكمية التي لا ينطبق عليها التكرار."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "الكمية ل {0}"
@@ -41125,8 +41192,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "الكمية المطلوب جلبها"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "الكمية للتصنيع"
@@ -41362,17 +41429,17 @@ msgstr "قالب فحص الجودة"
msgid "Quality Inspection Template Name"
msgstr "قالب فحص الجودة اسم"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41386,7 +41453,7 @@ msgstr "فحص الجودة"
msgid "Quality Inspections"
msgstr "عمليات فحص الجودة"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "إدارة الجودة"
@@ -41518,7 +41585,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41653,7 +41720,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "الكمية يجب ألا تكون أكثر من {0}"
@@ -41663,21 +41730,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "الكمية مطلوبة للبند {0} في الصف {1}\\n \\nQuantity required for Item {0} in row {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "الكمية يجب أن تكون أبر من 0\\n \\nQuantity should be greater than 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "كمية لتصنيع"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "لا يمكن أن تكون الكمية للتصنيع صفراً للتشغيل {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "\"الكمية لتصنيع\" يجب أن تكون أكبر من 0."
@@ -41700,7 +41767,7 @@ msgstr "كوارت دراي (الولايات المتحدة)"
msgid "Quart Liquid (US)"
msgstr "كوارت ليكويد (الولايات المتحدة)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "الربع {0} {1}"
@@ -41819,11 +41886,11 @@ msgstr "مناقصة لـ"
msgid "Quotation Trends"
msgstr "مؤشرات المناقصة"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "العرض المسعر {0} تم إلغائه"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "عرض مسعر {0} ليس من النوع {1}"
@@ -42130,7 +42197,7 @@ msgstr "المعدل الذي يتم تحويل العملة إلى عملة ا
msgid "Rate at which this tax is applied"
msgstr "السعر الذي يتم فيه تطبيق هذه الضريبة"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "لا يمكن تغيير سعر العناصر '{}'"
@@ -42296,7 +42363,7 @@ msgstr "المواد الخام المستهلكة"
msgid "Raw Materials Consumption"
msgstr "استهلاك المواد الخام"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42335,12 +42402,6 @@ msgstr "لا يمكن ترك المواد الخام فارغة."
msgid "Raw Materials to Customer"
msgstr "المواد الخام للعميل"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "SQL الخام"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42349,7 +42410,7 @@ msgstr "سيتم التحقق من كمية المواد الخام المسته
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42530,7 +42591,7 @@ msgid "Receivable / Payable Account"
msgstr "القبض / حساب الدائنة"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42991,7 +43052,7 @@ msgstr "مرجع #"
msgid "Reference #{0} dated {1}"
msgstr "المرجع # {0} بتاريخ {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "تاريخ مرجعي لخصم الدفع المبكر"
@@ -43155,11 +43216,11 @@ msgstr "المرجع: {0}، رمز العنصر: {1} والعميل: {2}"
msgid "References"
msgstr "المراجع"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "المراجع المتعلقة بفواتير المبيعات غير مكتملة"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "المراجع المتعلقة بأوامر البيع غير مكتملة"
@@ -43321,7 +43382,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "الرصيد المتبقي"
@@ -43379,7 +43440,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43443,7 +43504,7 @@ msgstr "إعادة تسمية سمة السمة في سمة البند."
msgid "Rename Log"
msgstr "إعادة تسمية الدخول"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "إعادة تسمية غير مسموح به"
@@ -43460,7 +43521,7 @@ msgstr "تمت إضافة مهام إعادة تسمية نوع المستند {
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "لم يتم وضع مهام إعادة تسمية نوع المستند {0} في قائمة الانتظار."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "يُسمح بإعادة تسميته فقط عبر الشركة الأم {0} ، لتجنب عدم التطابق."
@@ -43584,7 +43645,7 @@ msgstr "نموذج تقرير"
msgid "Report Type is mandatory"
msgstr "نوع التقرير إلزامي\\n \\nReport Type is mandatory"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "الإبلاغ عن مشكلة"
@@ -43829,7 +43890,7 @@ msgstr "طلب المعلومات"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44010,7 +44071,7 @@ msgstr "يتطلب وفاء"
msgid "Research"
msgstr "ابحاث"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "البحث و التطوير"
@@ -44055,7 +44116,7 @@ msgstr "حجز"
msgid "Reservation Based On"
msgstr "الحجز مبني على"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44099,7 +44160,7 @@ msgstr "مخصص للتجميع الفرعي"
msgid "Reserved"
msgstr "محجوز"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "تعارض الدُفعات المحجوزة"
@@ -44169,14 +44230,14 @@ msgstr "الكمية المحجوزة"
msgid "Reserved Quantity for Production"
msgstr "الكمية المحجوزة للإنتاج"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44185,13 +44246,13 @@ msgstr "رقم تسلسلي محجوز"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "المخزون المحجوز للدفعة"
@@ -44457,7 +44518,7 @@ msgstr "النتيجة عنوان الحقل"
msgid "Resume"
msgstr "استئنف"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "سيرة ذاتية للوظيفة"
@@ -44482,8 +44543,8 @@ msgstr "بائع تجزئة"
msgid "Retain Sample"
msgstr "الاحتفاظ عينة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "أرباح محتجزة"
@@ -44558,7 +44619,7 @@ msgstr "العودة ضد شراء إيصال"
msgid "Return Against Subcontracting Receipt"
msgstr "رد المبلغ المدفوع مقابل إيصال التعاقد من الباطن"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "مكونات الإرجاع"
@@ -44594,7 +44655,7 @@ msgstr "كمية الإرجاع من المستودع المرفوض"
msgid "Return Raw Material to Customer"
msgstr "إعادة المواد الخام إلى العميل"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "تم إلغاء فاتورة إرجاع الأصل"
@@ -44692,8 +44753,8 @@ msgstr "النتائج"
msgid "Revaluation Journals"
msgstr "دفاتر إعادة التقييم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "فائض إعادة التقييم"
@@ -44925,7 +44986,7 @@ msgstr "يجب أن يكون نوع الجذر لـ {0} أحد الأصول أو
msgid "Root Type is mandatory"
msgstr "نوع الجذر إلزامي\\n \\nRoot Type is mandatory"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "الجذرلا يمكن تعديل."
@@ -44944,8 +45005,8 @@ msgstr "كمية القضبان المستديرة"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45125,21 +45186,21 @@ msgstr "الصف # {0}: لا يمكن أن يكون المعدل أكبر من
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "الصف رقم {0}: العنصر الذي تم إرجاعه {1} غير موجود في {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "الصف رقم 1: يجب أن يكون معرف التسلسل 1 للعملية {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "الصف # {0} (جدول الدفع): يجب أن يكون المبلغ سلبيًا"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "الصف رقم {0} (جدول الدفع): يجب أن يكون المبلغ موجبا"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "الصف #{0}: يوجد بالفعل إدخال إعادة طلب للمستودع {1} بنوع إعادة الطلب {2}."
@@ -45160,7 +45221,7 @@ msgstr "الصف #{0}: لا يمكن أن يكون المستودع المقبو
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "الصف #{0}: المستودع المقبول إلزامي للصنف المقبول {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "الصف # {0}: الحساب {1} لا ينتمي إلى الشركة {2}"
@@ -45221,31 +45282,31 @@ msgstr "الصف #{0}: لا يمكن إلغاء إدخال المخزون هذا
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "الصف #{0}: لا يمكن إنشاء إدخال بروابط مستندات مختلفة للضرائب والحجز."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "الصف # {0}: لا يمكن حذف العنصر {1} الذي تم تحرير فاتورة به بالفعل."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "الصف # {0}: لا يمكن حذف العنصر {1} الذي تم تسليمه بالفعل"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "الصف # {0}: لا يمكن حذف العنصر {1} الذي تم استلامه بالفعل"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "الصف # {0}: لا يمكن حذف العنصر {1} الذي تم تعيين ترتيب العمل إليه."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "الصف #{0}: لا يمكن حذف العنصر {1} الذي تم طلبه بالفعل مقابل أمر البيع هذا."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "الصف #{0}: لا يمكن تحديد السعر إذا كان المبلغ المطلوب دفعه أكبر من المبلغ الخاص بالعنصر {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "الصف #{0}: لا يمكن نقل أكثر من الكمية المطلوبة {1} للعنصر {2} مقابل بطاقة العمل {3}"
@@ -45295,11 +45356,11 @@ msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من العميل {1} عدة مرات في عملية التعاقد من الباطن الواردة."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "الصف #{0}: لا يمكن إضافة العنصر المقدم من العميل {1} عدة مرات."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "الصف #{0}: العنصر المقدم من العميل {1} غير موجود في جدول العناصر المطلوبة المرتبط بأمر التوريد الداخلي للتعاقد من الباطن."
@@ -45307,7 +45368,7 @@ msgstr "الصف #{0}: العنصر المقدم من العميل {1} غير م
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "الصف #{0}: يتجاوز المنتج المقدم من العميل {1} الكمية المتاحة من خلال طلب الشراء الداخلي للتعاقد من الباطن"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "الصف #{0}: الكمية المتوفرة من الصنف المقدم من العميل {1} غير كافية في طلب الشراء الداخلي للمقاول من الباطن. الكمية المتاحة هي {2}."
@@ -45324,7 +45385,7 @@ msgstr "الصف #{0}: العنصر المقدم من العميل {1} ليس ج
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "الصف #{0}: التواريخ المتداخلة مع صف آخر في المجموعة {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "الصف #{0}: لم يتم العثور على قائمة مكونات المنتج النهائية الافتراضية لعنصر المنتج النهائي {1}"
@@ -45348,22 +45409,22 @@ msgstr "الصف #{0}: لم يتم تعيين حساب المصروفات للع
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "الصف #{0}: حساب المصروفات {1} غير صالح لفاتورة الشراء {2}. يُسمح فقط بحسابات المصروفات الخاصة بالعناصر غير المخزنة."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "الصف #{0}: لا يمكن أن تكون كمية المنتج النهائي صفرًا"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "الصف #{0}: لم يتم تحديد عنصر المنتج النهائي لعنصر الخدمة {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "الصف #{0}: يجب أن يكون المنتج النهائي {1} منتجًا تم التعاقد عليه من الباطن"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "الصف #{0}: يجب أن يكون المنتج النهائي {1}"
@@ -45392,7 +45453,7 @@ msgstr "الصف #{0}: يجب أن يكون معدل الاستهلاك أكبر
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "الصف #{0}: لا يمكن أن يكون تاريخ البدء قبل تاريخ الانتهاء"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "الصف #{0}: حقلا \"من وقت\" و\"إلى وقت\" مطلوبان."
@@ -45400,7 +45461,7 @@ msgstr "الصف #{0}: حقلا \"من وقت\" و\"إلى وقت\" مطلوبا
msgid "Row #{0}: Item added"
msgstr "الصف # {0}: تمت إضافة العنصر"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "الصف #{0}: لا يمكن نقل العنصر {1} إلى أكثر من {2} مقابل {3} {4}"
@@ -45428,7 +45489,7 @@ msgstr "الصف #{0}: العنصر {1} في المستودع {2}: متوفر {3
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "الصف #{0}: العنصر {1} ليس عنصرًا مقدمًا من العميل."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "الصف # {0}: العنصر {1} ليس عنصرًا تسلسليًا / مُجمَّع. لا يمكن أن يكون له رقم مسلسل / لا دفعة ضده."
@@ -45469,7 +45530,7 @@ msgstr "الصف #{0}: لا يمكن أن يكون تاريخ الاستهلاك
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "الصف #{0}: لا يمكن أن يكون تاريخ الاستهلاك التالي قبل تاريخ الشراء"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "الصف رقم {0}: غير مسموح تغيير المورد لأن أمر الشراء موجود مسبقاً\\n \\nRow #{0}: Not allowed to change Supplier as Purchase Order already exists"
@@ -45481,10 +45542,6 @@ msgstr "الصف #{0}: الصف {1} فقط متاح للحجز للعنصر {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "الصف #{0}: يجب أن يكون الاستهلاك المتراكم الافتتاحي أقل من أو يساوي {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "الصف # {0}: العملية {1} لم تكتمل لـ {2} الكمية من السلع تامة الصنع في أمر العمل {3}. يرجى تحديث حالة التشغيل عبر بطاقة العمل {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45506,11 +45563,11 @@ msgstr "الصف #{0}: يرجى تحديد عنصر المنتج النهائي
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "الصف #{0}: الرجاء تحديد مستودع التجميع الفرعي"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "الصف # {0}: يرجى تعيين إعادة ترتيب الكمية\\n \\nRow #{0}: Please set reorder quantity"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "الصف #{0}: يرجى تحديث حساب الإيرادات/المصروفات المؤجلة في صف البند أو الحساب الافتراضي في بيانات الشركة الرئيسية"
@@ -45532,15 +45589,15 @@ msgstr "الصف #{0}: يجب أن تكون الكمية عددًا موجبًا
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "الصف #{0}: يجب أن تكون الكمية أقل من أو تساوي الكمية المتاحة للحجز (الكمية الفعلية - الكمية المحجوزة) {1} للصنف {2} مقابل الدفعة {3} في المستودع {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "الصف #{0}: يلزم فحص الجودة للعنصر {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "الصف #{0}: لم يتم تقديم فحص الجودة {1} للعنصر: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "الصف #{0}: تم رفض فحص الجودة {1} للعنصر {2}"
@@ -45548,7 +45605,7 @@ msgstr "الصف #{0}: تم رفض فحص الجودة {1} للعنصر {2}"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "الصف #{0}: لا يمكن أن تكون الكمية عددًا غير موجب. يُرجى زيادة الكمية أو إزالة العنصر {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "الصف # {0}: كمية البند {1} لا يمكن أن يكون صفرا"
@@ -45564,18 +45621,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "الصف #{0}: يجب أن تكون الكمية المراد حجزها للعنصر {1} أكبر من 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "الصف #{0}: يجب أن يكون المعدل هو نفسه {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "الصف {0} : نوع المستند المرجع يجب أن يكون واحدة من طلب شراء ,فاتورة شراء أو قيد يومبة\\n \\nRow #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "الصف # {0}: يجب أن يكون نوع المستند المرجعي أحد أوامر المبيعات أو فاتورة المبيعات أو إدخال دفتر اليومية أو المطالبة"
@@ -45614,7 +45671,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "الصف #{0}: يجب أن يكون معرف التسلسل {1} أو {2} للعملية {3}."
@@ -45634,19 +45691,19 @@ msgstr "الصف #{0}: تم تحديد الرقم التسلسلي {1} بالف
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "الصف #{0}: الأرقام التسلسلية {1} ليست جزءًا من أمر التوريد الداخلي المرتبط بالتعاقد من الباطن. يرجى تحديد رقم تسلسلي صحيح."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "الصف # {0}: لا يمكن أن يكون تاريخ انتهاء الخدمة قبل تاريخ ترحيل الفاتورة"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "الصف # {0}: لا يمكن أن يكون تاريخ بدء الخدمة أكبر من تاريخ انتهاء الخدمة"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "الصف # {0}: مطلوب بداية وتاريخ انتهاء الخدمة للمحاسبة المؤجلة"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "الصف # {0}: حدد المورد للبند {1}"
@@ -45658,19 +45715,19 @@ msgstr "الصف #{0}: بما أن خيار \"تتبع المنتجات نصف
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "الصف #{0}: يجب أن يكون مستودع المصدر هو نفسه مستودع العميل {1} من أمر التوريد الداخلي المرتبط بالتعاقد من الباطن"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "الصف #{0}: لا يمكن أن يكون مستودع المصدر {1} للعنصر {2} مستودع عميل."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "الصف #{0}: يجب أن يكون مستودع المصدر {1} للعنصر {2} هو نفسه مستودع المصدر {3} في أمر العمل."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "الصف #{0}: لا يمكن أن يكون مستودع المصدر ومستودع الهدف متطابقين لنقل المواد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "الصف #{0}: لا يمكن أن تكون أبعاد المستودع المصدر والمستودع الهدف والمخزون متطابقة تمامًا في عملية نقل المواد."
@@ -45686,6 +45743,10 @@ msgstr "الصف #{0}: الحالة إلزامية"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "الصف # {0}: يجب أن تكون الحالة {1} بالنسبة لخصم الفاتورة {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "الصف #{0}: لا يمكن حجز المخزون للصنف {1} مقابل دفعة معطلة {2}."
@@ -45702,7 +45763,7 @@ msgstr "الصف #{0}: لا يمكن حجز المخزون في مستودع ا
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "الصف #{0}: تم حجز المخزون بالفعل للصنف {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "الصف #{0}: تم حجز المخزون للصنف {1} في المستودع {2}."
@@ -45715,7 +45776,7 @@ msgstr "الصف #{0}: المخزون غير متاح للحجز للصنف {1}
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "الصف #{0}: المخزون غير متاح للحجز للصنف {1} في المستودع {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "الصف #{0}: كمية المخزون {1} ({2}) للصنف {3} لا يمكن أن تتجاوز {4}"
@@ -45727,7 +45788,7 @@ msgstr "الصف #{0}: يجب أن يكون المستودع المستهدف ه
msgid "Row #{0}: The batch {1} has already expired."
msgstr "الصف رقم {0}: انتهت صلاحية الدفعة {1} بالفعل."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "الصف #{0}: المستودع {1} ليس مستودعًا فرعيًا لمستودع مجموعة {2}"
@@ -45763,7 +45824,7 @@ msgstr "الصف #{0}: لا يمكنك استخدام بُعد المخزون '{
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "الصف #{0}: يجب عليك تحديد أصل للعنصر {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "الصف # {0}: {1} لا يمكن أن يكون سالبا للبند {2}"
@@ -45779,7 +45840,7 @@ msgstr "الصف رقم {0}: {1} مطلوب لإنشاء فواتير الافت
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "الصف #{0}: {1} من {2} يجب أن يكون {3}. يرجى تحديث {1} أو اختيار حساب آخر."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45880,7 +45941,7 @@ msgstr "رقم الصف {}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "الصف رقم {}: {} {} غير موجود."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "الصف رقم {}: {} {} لا ينتمي إلى الشركة {}. يرجى اختيار {} صحيح."
@@ -45888,7 +45949,7 @@ msgstr "الصف رقم {}: {} {} لا ينتمي إلى الشركة {}. يرج
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "رقم الصف {0}: مطلوب تحديد مستودع. يُرجى تحديد مستودع افتراضي للصنف {1} والشركة {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "الصف {0}: العملية مطلوبة مقابل عنصر المادة الخام {1}"
@@ -45896,7 +45957,7 @@ msgstr "الصف {0}: العملية مطلوبة مقابل عنصر الماد
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "الكمية المختارة من الصف {0} أقل من الكمية المطلوبة، يلزم كمية إضافية {1} {2} ."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "الصف {0}# العنصر {1} غير موجود في جدول \"المواد الخام الموردة\" في {2} {3}"
@@ -45928,11 +45989,11 @@ msgstr "الصف {0}: يجب أن يكون المبلغ المخصص {1} أقل
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "الصف {0}: يجب أن يكون المبلغ المخصص {1} أقل من أو يساوي مبلغ الدفعة المتبقية {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "الصف {0}: بما أن {1} مُفعّل، فلا يمكن إضافة المواد الخام إلى المدخل {2} . استخدم المدخل {3} لاستهلاك المواد الخام."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "صف {0}: من مواد مشروع القانون لم يتم العثور على هذا البند {1}"
@@ -45950,7 +46011,7 @@ msgstr "الصف {0}: يجب أن تكون الكمية المستهلكة {1} {
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "الصف {0}: معامل التحويل إلزامي"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "الصف {0}: مركز التكلفة {1} لا ينتمي إلى الشركة {2}"
@@ -45970,7 +46031,7 @@ msgstr "الصف {0}: العملة للـ BOM #{1} يجب أن يساوي الع
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "الصف {0}: لا يمكن ربط قيد مدين مع {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "الصف {0}: لا يمكن أن يكون مستودع التسليم ({1}) ومستودع العميل ({2}) متماثلين"
@@ -45978,7 +46039,7 @@ msgstr "الصف {0}: لا يمكن أن يكون مستودع التسليم ({
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "الصف {0}: لا يمكن أن يكون مستودع التسليم هو نفسه مستودع العميل بالنسبة للعنصر {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "الصف {0}: لا يمكن أن يكون تاريخ الاستحقاق في جدول شروط الدفع قبل تاريخ الترحيل"
@@ -46023,16 +46084,16 @@ msgstr "الصف {0}: للمورد {1} ، مطلوب عنوان البريد ا
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "صف {0}: (من الوقت) و (إلى وقت) تكون إلزامية."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "الصف {0}: من وقت إلى وقت {1} يتداخل مع {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "الصف {0}: من المستودع إلزامي للتحويلات الداخلية"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "الصف {0}: من وقت يجب أن يكون أقل من الوقت"
@@ -46048,7 +46109,7 @@ msgstr "الصف {0}: مرجع غير صالحة {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "الصف {0}: تم تحديث نموذج ضريبة الصنف وفقًا للصلاحية والسعر المطبق"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "الصف {0}: تم تحديث سعر الصنف وفقًا لسعر التقييم نظرًا لكونه تحويلًا داخليًا للمخزون"
@@ -46072,7 +46133,7 @@ msgstr "الصف {0}: لا يمكن أن تكون كمية العنصر {1}أع
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "الصف {0}: يجب أن تكون الكمية المعبأة مساوية للكمية {1} ."
@@ -46140,7 +46201,7 @@ msgstr "الصف {0}: فاتورة الشراء {1} ليس لها أي تأثي
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "الصف {0}: لا يمكن أن تكون الكمية أكبر من {1} للعنصر {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "الصف {0}: لا يمكن أن تكون الكمية في المخزون بوحدة القياس صفرًا."
@@ -46152,10 +46213,6 @@ msgstr "الصف {0}: يجب أن تكون الكمية أكبر من 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "الصف {0}: لا يمكن أن تكون الكمية سالبة."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "الصف {0}: الكمية غير متوفرة {4} في المستودع {1} في وقت نشر الإدخال ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "الصف {0}: تم إنشاء فاتورة المبيعات {1} بالفعل لـ {2}"
@@ -46164,11 +46221,11 @@ msgstr "الصف {0}: تم إنشاء فاتورة المبيعات {1} بالف
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "الصف {0}: لا يمكن تغيير المناوبة لأن عملية الإهلاك قد تمت بالفعل"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "الصف {0}: العنصر المتعاقد عليه من الباطن إلزامي للمادة الخام {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "الصف {0}: المستودع المستهدف إلزامي للتحويلات الداخلية"
@@ -46180,11 +46237,11 @@ msgstr "الصف {0}: المهمة {1} لا تنتمي إلى المشروع {2}
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "الصف {0}: تم تخصيص مبلغ المصروفات بالكامل للحساب {1} في {2} بالفعل."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "الصف {0}: العنصر {1} ، يجب أن تكون الكمية رقمًا موجبًا"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "الصف {0}: الحساب {3} {1} لا ينتمي إلى الشركة {2}"
@@ -46192,11 +46249,11 @@ msgstr "الصف {0}: الحساب {3} {1} لا ينتمي إلى الشركة {
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "الصف {0}: لتعيين دورية {1} ، يجب أن يكون الفرق بين تاريخي البداية والنهاية أكبر من أو يساوي {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "الصف {0}: لا يمكن أن تكون الكمية المنقولة أكبر من الكمية المطلوبة."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "الصف {0}: عامل تحويل UOM إلزامي\\n \\nRow {0}: UOM Conversion Factor is mandatory"
@@ -46209,11 +46266,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "الصف {0}: محطة العمل أو نوع محطة العمل إلزامي للعملية {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "الصف {0}: لم يطبق المستخدم القاعدة {1} على العنصر {2}"
@@ -46225,7 +46282,7 @@ msgstr "الصف {0}: {1} تم تقديم طلب بالفعل للحساب في
msgid "Row {0}: {1} must be greater than 0"
msgstr "الصف {0}: يجب أن يكون {1} أكبر من 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "الصف {0}: {1} {2} لا يمكن أن يكون هو نفسه {3} (حساب الطرفية) {4}"
@@ -46271,7 +46328,7 @@ msgstr "تمت إزالة الصفوف في {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "سيتم دمج الصفوف التي تحتوي على نفس رؤوس الحسابات في دفتر الأستاذ"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "تم العثور على صفوف ذات تواريخ استحقاق مكررة في صفوف أخرى: {0}"
@@ -46279,7 +46336,7 @@ msgstr "تم العثور على صفوف ذات تواريخ استحقاق م
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "الصفوف: {0} تحتوي على \"إدخال الدفع\" كنوع مرجعي. لا ينبغي تعيين هذا يدويًا."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "الصفوف: {0} في القسم {1} غير صالحة. يجب أن يشير اسم المرجع إلى قيد دفع أو قيد يومية صالح."
@@ -46486,8 +46543,8 @@ msgstr "مخزونات السلامة"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46509,8 +46566,8 @@ msgstr "طريقة تحصيل الراتب"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46524,18 +46581,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "مبيعات"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "حساب مبيعات"
@@ -46559,8 +46621,8 @@ msgstr "مساهمات وحوافز المبيعات"
msgid "Sales Defaults"
msgstr "القيم الافتراضية للمبيعات"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "نفقات المبيعات"
@@ -46729,11 +46791,11 @@ msgstr "لم يتم إنشاء فاتورة المبيعات بواسطة الم
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "تم تفعيل وضع فاتورة المبيعات في نظام نقاط البيع. يرجى إنشاء فاتورة مبيعات بدلاً من ذلك."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "سبق أن تم ترحيل فاتورة المبيعات {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "يجب حذف فاتورة المبيعات {0} قبل إلغاء أمر البيع هذا"
@@ -46931,25 +46993,25 @@ msgstr "مجرى طلبات البيع"
msgid "Sales Order required for Item {0}"
msgstr "طلب البيع مطلوب للبند {0}\\n \\nSales Order required for Item {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "يوجد بالفعل أمر بيع {0} مرتبط بأمر شراء العميل {1}. للسماح بإنشاء أوامر بيع متعددة، فعّل الخيار {2} في {3}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "لا يتم اعتماد أمر التوريد {0}\\n \\nSales Order {0} is not submitted"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "أمر البيع {0} غير موجود\\n \\nSales Order {0} is not valid"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "طلب المبيعات {0} هو {1}"
@@ -46993,6 +47055,7 @@ msgstr "أوامر المبيعات لتقديم"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47005,7 +47068,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47111,7 +47174,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47204,7 +47267,7 @@ msgstr "سجل مبيعات"
msgid "Sales Representative"
msgstr "مندوب مبيعات"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "مبيعات المعاده"
@@ -47228,7 +47291,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "قالب ضريبة المبيعات"
@@ -47347,7 +47410,7 @@ msgstr "نفس البند"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "تم إدخال نفس المنتج ونفس تركيبة المستودع مسبقاً."
@@ -47379,12 +47442,12 @@ msgstr "مستودع الاحتفاظ بالعينات"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "حجم العينة"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "كمية العينة {0} لا يمكن أن تكون أكثر من الكمية المستلمة {1}"
@@ -47628,7 +47691,7 @@ msgstr "أصول خردة"
msgid "Scrap Warehouse"
msgstr "الخردة مستودع"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "لا يمكن أن يكون تاريخ التلف قبل تاريخ الشراء"
@@ -47747,8 +47810,8 @@ msgstr "دور ثانوي"
msgid "Secretary"
msgstr "سكرتير"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "القروض المضمونة"
@@ -47786,7 +47849,7 @@ msgstr "اختر البند البديل"
msgid "Select Alternative Items for Sales Order"
msgstr "اختر عناصر بديلة لطلب البيع"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "حدد قيم السمات"
@@ -47828,7 +47891,7 @@ msgstr "حدد الشركة"
msgid "Select Company Address"
msgstr "حدد عنوان الشركة"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "حدد العملية التصحيحية"
@@ -47864,7 +47927,7 @@ msgstr "حدد الأبعاد"
msgid "Select Dispatch Address "
msgstr "حدد عنوان الإرسال "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "حدد الموظفين"
@@ -47889,7 +47952,7 @@ msgstr "اختيار العناصر"
msgid "Select Items based on Delivery Date"
msgstr "حدد العناصر بناءً على تاريخ التسليم"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "اختيار الأصناف لفحص الجودة"
@@ -47927,7 +47990,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "اختار المورد المحتمل"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "إختيار الكمية"
@@ -48002,7 +48065,7 @@ msgstr "حدد أولوية افتراضية."
msgid "Select a Payment Method."
msgstr "اختر طريقة الدفع."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "حدد المورد"
@@ -48025,7 +48088,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "حدد مجموعة عناصر."
@@ -48041,9 +48104,9 @@ msgstr "حدد فاتورة لتحميل ملخص البيانات"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "اختر عنصرًا واحدًا من كل مجموعة لاستخدامه في أمر البيع."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "اختر قيمة واحدة على الأقل من كل سمة من السمات."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48059,7 +48122,7 @@ msgstr "حدد اسم الشركة الأول."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "حدد دفتر تمويل للعنصر {0} في الصف {1}"
@@ -48091,7 +48154,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "حدد المنتج المراد تصنيعه."
@@ -48108,7 +48171,7 @@ msgstr "اختر المستودع"
msgid "Select the customer or supplier."
msgstr "حدد العميل أو المورد."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "حدد التاريخ"
@@ -48116,6 +48179,12 @@ msgstr "حدد التاريخ"
msgid "Select the date and your timezone"
msgstr "حدد التاريخ والمنطقة الزمنية الخاصة بك"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "حدد المواد الخام (العناصر) المطلوبة لتصنيع العنصر"
@@ -48143,7 +48212,7 @@ msgstr "حدد، لجعل العميل قابلا للبحث باستخدام ه
msgid "Selected POS Opening Entry should be open."
msgstr "يجب أن يكون الإدخال الافتتاحي المحدد لنقاط البيع مفتوحًا."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "قائمة الأسعار المختارة يجب أن يكون لديها حقول بيع وشراء محددة."
@@ -48174,30 +48243,30 @@ msgstr "يجب أن يكون المستند المحدد في حالة الإر
msgid "Self delivery"
msgstr "التوصيل الذاتي"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "باع"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "بيع الأصل"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "بيع الكمية"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "لا يمكن أن تتجاوز كمية البيع كمية الأصل"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "لا يمكن أن تتجاوز كمية البيع كمية الأصل. يحتوي الأصل {0} على {1} عنصر فقط."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "يجب أن تكون كمية البيع أكبر من الصفر"
@@ -48450,7 +48519,7 @@ msgstr "أرقام التسلسل / الدفعات"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48470,7 +48539,7 @@ msgstr "أرقام التسلسل / الدفعات"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48515,7 +48584,7 @@ msgstr "نطاق الأرقام التسلسلية"
msgid "Serial No Reserved"
msgstr "الرقم التسلسلي محجوز"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "تداخل سلسلة الأرقام التسلسلية"
@@ -48655,7 +48724,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "تم إنشاء الأرقام التسلسلية بنجاح"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "يتم حجز الأرقام التسلسلية في إدخالات حجز المخزون، لذا عليك إلغاء حجزها قبل المتابعة."
@@ -48725,7 +48794,7 @@ msgstr "التسلسل والدفعة"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49139,7 +49208,7 @@ msgstr "تعيين السلف والتخصيص (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "قم بتعيين السعر الأساسي يدويًا"
@@ -49158,8 +49227,8 @@ msgstr "مستودع توصيل المجموعات"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "مجموعة كاملة، كمية جيدة"
@@ -49326,11 +49395,11 @@ msgstr "تم تعيينه بواسطة قالب ضريبة الصنف"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "تعيين حساب المخزون الافتراضي للمخزون الدائم"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "قم بتعيين الحساب الافتراضي {0} للعناصر غير المخزنة"
@@ -49362,7 +49431,7 @@ msgstr "تعيين معدل عنصر التجميع الفرعي استنادا
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "تحديد أهداف المجموعة السلعة الحكيم لهذا الشخص المبيعات."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "حدد تاريخ البدء المخطط له (تاريخ تقديري ترغب في أن يبدأ فيه الإنتاج)"
@@ -49473,7 +49542,7 @@ msgid "Setting up company"
msgstr "تأسيس شركة"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "الإعداد {0} مطلوب"
@@ -49493,6 +49562,10 @@ msgstr "إعدادات وحدة البيع"
msgid "Settled"
msgstr "تسوية"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49685,7 +49758,7 @@ msgstr "نوع الشحنة"
msgid "Shipment details"
msgstr "تفاصيل الشحنة"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "شحنات"
@@ -49723,7 +49796,7 @@ msgstr "الشحن العنوان الاسم"
msgid "Shipping Address Template"
msgstr "نموذج عنوان الشحن"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "عنوان الشحن لا ينتمي إلى {0}"
@@ -49866,8 +49939,8 @@ msgstr "نبذة على موقع الويب وغيره من المنشورات."
msgid "Short-term Investments"
msgstr "الاستثمارات قصيرة الأجل"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "أحكام قصيرة الأجل"
@@ -50199,7 +50272,7 @@ msgstr "متزامن"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "بما أن هناك خسارة في العملية قدرها {0} وحدة للمنتج النهائي {1}، فيجب عليك تقليل الكمية بمقدار {0} وحدة للمنتج النهائي {1} في جدول العناصر."
@@ -50244,7 +50317,7 @@ msgstr "تخطي ملاحظة التسليم"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50286,8 +50359,8 @@ msgstr "تجانس ثابت"
msgid "Soap & Detergent"
msgstr "الصابون والمنظفات"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "برمجة"
@@ -50311,7 +50384,7 @@ msgstr "يباع بواسطة"
msgid "Solvency Ratios"
msgstr "نسب الملاءة المالية"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "بعض بيانات الشركة المطلوبة مفقودة. ليس لديك صلاحية لتحديثها. يرجى الاتصال بمدير النظام."
@@ -50375,7 +50448,7 @@ msgstr "اسم حقل المصدر"
msgid "Source Location"
msgstr "موقع المصدر"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50384,11 +50457,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50446,7 +50519,12 @@ msgstr "رابط عنوان مستودع المصدر"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "يُعد مستودع المصدر إلزاميًا للعنصر {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "يجب أن يكون مستودع المصدر {0} هو نفسه مستودع العميل {1} في أمر التوريد الداخلي للتعاقد من الباطن."
@@ -50454,24 +50532,23 @@ msgstr "يجب أن يكون مستودع المصدر {0} هو نفسه مست
msgid "Source and Target Location cannot be same"
msgstr "لا يمكن أن يكون المصدر و الموقع الهدف نفسه"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "المصدر والمستودع المستهدف لا يمكن أن يكون نفس الصف {0}\\n \\nSource and target warehouse cannot be same for row {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "ويجب أن تكون مصدر ومستودع الهدف مختلفة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "(مصدر الأموال (الخصوم"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "مستودع المصدر إلزامي للصف {0}\\n \\nSource warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50512,7 +50589,7 @@ msgstr "تجاوز الإنفاق على الحساب {0} ({1}) بين {2} و {3
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50520,7 +50597,7 @@ msgid "Split"
msgstr "انشق، مزق"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "تقسيم الأصول"
@@ -50544,7 +50621,7 @@ msgstr "انفصل عن"
msgid "Split Issue"
msgstr "تقسيم القضية"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "تقسيم الكمية"
@@ -50556,6 +50633,11 @@ msgstr "يجب أن تكون كمية التقسيم أقل من كمية الأ
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "تقسيم {0} {1} إلى {2} صفوف وفقًا لشروط الدفع"
@@ -50628,13 +50710,13 @@ msgstr "شراء القياسية"
msgid "Standard Description"
msgstr "الوصف القياسي"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "المصاريف الخاضعة للضريبة القياسية"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "البيع القياسية"
@@ -50655,8 +50737,8 @@ msgstr "قالب قياسي"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "الشروط والأحكام القياسية التي يمكن إضافتها إلى عمليات البيع والشراء. أمثلة: صلاحية العرض، شروط الدفع، السلامة والاستخدام، إلخ."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "اللوازم المصنفة وفقًا للمعايير في {0}"
@@ -50691,7 +50773,7 @@ msgstr "لا يمكن أن يكون تاريخ البدء قبل التاريخ
msgid "Start Date should be lower than End Date"
msgstr "يجب أن يكون تاريخ البدء أقل من تاريخ الانتهاء"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "ابدأ العمل"
@@ -50820,7 +50902,7 @@ msgstr "رسم توضيحي للحالة"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "يجب إلغاء الحالة أو إكمالها"
@@ -50850,6 +50932,7 @@ msgstr "معلومات قانونية ومعلومات عامة أخرى عن ب
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50858,8 +50941,8 @@ msgstr "المخازن"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50959,6 +51042,16 @@ msgstr "تمت إضافة إدخال إغلاق المخزون {0} إلى قائ
msgid "Stock Closing Log"
msgstr "سجل إغلاق المخزون"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50968,10 +51061,6 @@ msgstr "سجل إغلاق المخزون"
msgid "Stock Details"
msgstr "تفاصيل المخزون"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "تم إنشاء إدخالات المخزون بالفعل لأمر العمل {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51035,7 +51124,7 @@ msgstr "تم إنشاء إدخال الأسهم بالفعل مقابل قائم
msgid "Stock Entry {0} created"
msgstr "الأسهم الدخول {0} خلق"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "تم إنشاء إدخال المخزون {0}"
@@ -51043,8 +51132,8 @@ msgstr "تم إنشاء إدخال المخزون {0}"
msgid "Stock Entry {0} is not submitted"
msgstr "الحركة المخزنية {0} غير مسجلة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "مصاريف المخزون"
@@ -51122,8 +51211,8 @@ msgstr "مستوى المخزون"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "خصوم المخزون"
@@ -51226,8 +51315,8 @@ msgstr "كمية المخزون مقابل الرقم التسلسلي"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51239,7 +51328,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51251,7 +51340,7 @@ msgstr "جرد المخزون"
msgid "Stock Reconciliation Item"
msgstr "جرد عناصر المخزون"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "تسويات المخزون"
@@ -51276,9 +51365,9 @@ msgstr "إعدادات إعادة نشر المخزون"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51289,7 +51378,7 @@ msgstr "إعدادات إعادة نشر المخزون"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51314,10 +51403,10 @@ msgstr "حجز الأسهم"
msgid "Stock Reservation Entries Cancelled"
msgstr "تم إلغاء إدخالات حجز المخزون"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "تم إنشاء قيود حجز المخزون"
@@ -51345,7 +51434,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "عدم تطابق مستودع حجز المخزون"
@@ -51385,7 +51474,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51500,7 +51589,7 @@ msgstr "إعدادات معاملات الأسهم"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51633,11 +51722,11 @@ msgstr "لا يمكن حجز المخزون في مستودع المجموعة {
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "لا يمكن حجز المخزون في مستودع المجموعة {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "لا يمكن تحديث المخزون بناءً على إشعارات التسليم التالية: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "لا يمكن تحديث المخزون لأن الفاتورة تحتوي على منتج يتم شحنه مباشرة من المورد. يرجى تعطيل خيار \"تحديث المخزون\" أو إزالة المنتج الذي يتم شحنه مباشرة من المورد."
@@ -51692,14 +51781,14 @@ msgstr "حجر"
msgid "Stop Reason"
msgstr "توقف السبب"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "لا يمكن إلغاء طلب العمل المتوقف ، قم بإلغاء إيقافه أولاً للإلغاء"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "مخازن"
@@ -51757,7 +51846,7 @@ msgstr "مستودع التجميع الفرعي"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52019,7 +52108,7 @@ msgstr "بند خدمة طلب التعاقد من الباطن"
msgid "Subcontracting Order Supplied Item"
msgstr "بند مورد من طلب التعاقد من الباطن"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "تم إنشاء أمر التعاقد من الباطن {0} ."
@@ -52108,7 +52197,7 @@ msgstr ""
msgid "Subdivision"
msgstr "تقسيم فرعي"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "فشل إرسال الإجراء"
@@ -52129,7 +52218,7 @@ msgstr "إرسال الفواتير المُنشأة"
msgid "Submit Journal Entries"
msgstr "إرسال إدخالات دفتر اليومية"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "أرسل طلب العمل هذا لمزيد من المعالجة."
@@ -52283,7 +52372,7 @@ msgstr "تمت التسوية بنجاح\\n \\nSuccessfully Reconciled"
msgid "Successfully Set Supplier"
msgstr "بنجاح تعيين المورد"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "تم تغيير وحدة قياس المخزون بنجاح، يرجى إعادة تعريف عوامل التحويل لوحدة القياس الجديدة."
@@ -52307,7 +52396,7 @@ msgstr "تم استيراد السجلات {0} بنجاح."
msgid "Successfully linked to Customer"
msgstr "تم ربط العميل بنجاح"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "تم الربط بنجاح مع المورد"
@@ -52467,7 +52556,7 @@ msgstr "الموردة الكمية"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52565,6 +52654,7 @@ msgstr "تفاصيل المورد"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52574,7 +52664,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52589,6 +52679,7 @@ msgstr "تفاصيل المورد"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52673,7 +52764,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52708,8 +52799,6 @@ msgid "Supplier Number At Customer"
msgstr "رقم المورد لدى العميل"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "أرقام الموردين"
@@ -52761,7 +52850,7 @@ msgstr "جهة الاتصال الرئيسية للمورد"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52790,7 +52879,7 @@ msgstr "مقارنة عروض أسعار الموردين"
msgid "Supplier Quotation Item"
msgstr "المورد اقتباس الإغلاق"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "تم إنشاء عرض أسعار المورد {0}"
@@ -52879,7 +52968,7 @@ msgstr "المورد نوع"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "المورد مستودع"
@@ -52896,17 +52985,12 @@ msgstr "المورد يسلم للعميل"
msgid "Supplier is required for all selected Items"
msgstr "يُشترط وجود مورد لجميع الأصناف المختارة"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "أرقام الموردين التي يحددها العميل"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "مورد السلع أو الخدمات."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "المورد {0} غير موجود في {1}"
@@ -52919,8 +53003,8 @@ msgstr "المورد (ق)"
msgid "Suppliers"
msgstr "الموردين"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "التوريدات الخاضعة لآلية الضريبة العكسية"
@@ -53011,7 +53095,7 @@ msgstr "بدأت عملية المزامنة"
msgid "Synchronize all accounts every hour"
msgstr "مزامنة جميع الحسابات كل ساعة"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "النظام قيد الاستخدام"
@@ -53041,7 +53125,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr "سيقوم النظام بجلب كل الإدخالات إذا كانت قيمة الحد صفرا."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "لن يتحقق النظام من الفواتير الزائدة لأن مبلغ العنصر {0} في {1} يساوي صفرًا"
@@ -53062,10 +53146,16 @@ msgstr "ملخص حساب TDS"
msgid "TDS Deducted"
msgstr "تم خصم ضريبة الدخل المقتطعة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "ضريبة الدخل المستحقة"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53213,7 +53303,7 @@ msgstr "عنوان المستودع المستهدف"
msgid "Target Warehouse Address Link"
msgstr "رابط عنوان مستودع تارجت"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "خطأ في حجز مستودع تارجت"
@@ -53221,24 +53311,23 @@ msgstr "خطأ في حجز مستودع تارجت"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "يجب أن يكون المستودع المستهدف للمنتج النهائي هو نفسه مستودع المنتج النهائي {1} في أمر العمل {2} المرتبط بأمر التوريد الداخلي للمقاول من الباطن."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "يلزم وجود مستودع Target قبل الإرسال"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "تم إعداد مستودع Target لبعض المنتجات، لكن العميل ليس عميلاً داخلياً."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "يجب أن يكون المستودع المستهدف {0} هو نفسه مستودع التسليم {1} في بند أمر التوريد الداخلي للتعاقد من الباطن."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "المستودع المستهدف إلزامي للصف {0}\\n \\nTarget warehouse is mandatory for row {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53355,8 +53444,8 @@ msgstr "مبلغ الضريبة بعد خصم مبلغ (شركة العملات)
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "سيتم تقريب مبلغ الضريبة على مستوى الصف (العناصر)."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "ضريبية الأصول"
@@ -53388,7 +53477,6 @@ msgstr "ضريبية الأصول"
msgid "Tax Breakup"
msgstr "تفكيك الضرائب"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53410,7 +53498,6 @@ msgstr "تفكيك الضرائب"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53426,6 +53513,7 @@ msgstr "تفكيك الضرائب"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53437,8 +53525,8 @@ msgstr "الفئة الضريبية"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "تم تغيير فئة الضرائب إلى "توتال" لأن جميع العناصر هي عناصر غير مخزون"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "مصروفات الضرائب"
@@ -53512,7 +53600,7 @@ msgstr "معدل الضريبة %"
msgid "Tax Rates"
msgstr "معدلات الضريبة"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "استرداد الضرائب المقدمة للسياح بموجب برنامج استرداد الضرائب للسياح"
@@ -53530,7 +53618,7 @@ msgstr "صف الضرائب"
msgid "Tax Rule"
msgstr "القاعدة الضريبية"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "تضارب القاعدة الضريبية مع {0}"
@@ -53545,7 +53633,7 @@ msgstr "إعدادات الضرائب"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "قالب الضرائب إلزامي."
@@ -53865,7 +53953,7 @@ msgstr "خصم الضرائب والرسوم"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "الضرائب والرسوم مقطوعة (عملة الشركة)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "لا يمكن أن يكون صف الضرائب #{0}: {1} أصغر من {2}"
@@ -53898,8 +53986,8 @@ msgstr "تكنولوجيا"
msgid "Telecommunications"
msgstr "الاتصالات السلكية واللاسلكية"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "نفقات الهاتف"
@@ -53950,13 +54038,13 @@ msgstr "مؤقت في الانتظار"
msgid "Temporary"
msgstr "مؤقت"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "حسابات مؤقتة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "افتتاحي مؤقت"
@@ -54138,7 +54226,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54237,7 +54325,7 @@ msgstr "النص المعروض في البيان المالي (على سبيل
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "و "من حزمة رقم" يجب ألا يكون الحقل فارغا ولا قيمة أقل من 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "تم تعطيل الوصول إلى طلب عرض الأسعار من البوابة. للسماح بالوصول ، قم بتمكينه في إعدادات البوابة."
@@ -54290,7 +54378,8 @@ msgstr "قد يكون مصطلح الدفع في الصف {0} مكررا."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "لا يمكن تحديث قائمة الاختيار التي تحتوي على إدخالات حجز المخزون. إذا كنت ترغب في إجراء تغييرات، فننصحك بإلغاء إدخالات حجز المخزون الحالية قبل تحديث قائمة الاختيار."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "تمت إعادة ضبط كمية الفاقد في العملية وفقًا لبطاقات العمل."
@@ -54306,7 +54395,7 @@ msgstr "الرقم التسلسلي في الصف #{0}: {1} غير متوفر ف
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "الرقم التسلسلي {0} محجوز مقابل {1} {2} ولا يمكن استخدامه لأي معاملة أخرى."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "حزمة البيانات التسلسلية والدفعية {0} غير صالحة لهذه المعاملة. يجب أن يكون \"نوع المعاملة\" \"خارجي\" بدلاً من \"داخلي\" في حزمة البيانات التسلسلية والدفعية {0}"
@@ -54342,7 +54431,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "تم حجز الدفعة {0} بالفعل في {1} {2}. لذا، لا يمكن المتابعة مع {3} {4}، والتي تم إنشاؤها مقابل {5} {6}."
@@ -54350,7 +54439,11 @@ msgstr "تم حجز الدفعة {0} بالفعل في {1} {2}. لذا، لا ي
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "لا يمكن أن تكون الكمية المكتملة {0} لعملية {1} أكبر من الكمية المكتملة {2} لعملية سابقة {3}."
@@ -54370,7 +54463,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "سيقوم النظام بجلب قائمة مكونات المنتج الافتراضية لهذا المنتج. يمكنك أيضاً تغيير قائمة مكونات المنتج."
@@ -54403,7 +54496,7 @@ msgstr "لا يمكن ترك الحقل من المساهمين فارغا"
msgid "The field To Shareholder cannot be blank"
msgstr "لا يمكن ترك الحقل للمساهم فارغا"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "الحقل {0} في الصف {1} غير مُعيّن"
@@ -54444,11 +54537,11 @@ msgstr "فشلت الأصول التالية في تسجيل قيود الإهل
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "توجد السمات المحذوفة التالية في المتغيرات ولكن ليس في القالب. يمكنك إما حذف المتغيرات أو الاحتفاظ بالسمة (السمات) في القالب."
@@ -54469,7 +54562,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr "الصفوف التالية مكررة:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "تم إنشاء {0} التالية: {1}"
@@ -54496,7 +54589,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "العنصر {item} غير مُصنّف كعنصر {type_of} . يمكنك تفعيله كعنصر {type_of} من قائمة العناصر الرئيسية."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "العنصران {0} و {1} موجودان في العنصر التالي {2} :"
@@ -54554,7 +54647,7 @@ msgstr "لا يمكن أن تكون العملية {0} عملية فرعية"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "ينبغي تجميع الفاتورة الأصلية قبل أو مع فاتورة الإرجاع."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54566,6 +54659,12 @@ msgstr "الحساب الأصل {0} غير موجود في القالب الذي
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "يختلف حساب بوابة الدفع في الخطة {0} عن حساب بوابة الدفع في طلب الدفع هذا"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54607,7 +54706,7 @@ msgstr "سيتم تحرير المخزون المحجوز عند تحديث ال
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "سيتم تحرير المخزون المحجوز. هل أنت متأكد من رغبتك في المتابعة؟"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "يجب أن يكون حساب الجذر {0} مجموعة"
@@ -54623,7 +54722,7 @@ msgstr "حساب التغيير المحدد {} لا ينتمي إلى الشر
msgid "The selected item cannot have Batch"
msgstr "العنصر المحدد لا يمكن أن يكون دفعة"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "كمية البيع أقل من إجمالي كمية الأصل. سيتم تقسيم الكمية المتبقية إلى أصل جديد. لا يمكن التراجع عن هذا الإجراء. هل تريد المتابعة؟ "
@@ -54656,7 +54755,7 @@ msgstr "الأسهم غير موجودة مع {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "كان رصيد الصنف {0} في المستودع {1} سالبًا في {2}. يجب عليك إنشاء قيد موجب {3} قبل التاريخ {4} والوقت {5} لتسجيل معدل التقييم الصحيح. لمزيد من التفاصيل، يُرجى قراءة الوثائق ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "تم حجز المخزون للأصناف والمستودعات التالية، قم بإلغاء حجزها في {0} تسوية المخزون: {1}"
@@ -54678,11 +54777,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "سيقوم النظام بإنشاء فاتورة مبيعات أو فاتورة نقاط بيع من واجهة نقاط البيع بناءً على هذا الإعداد. يُنصح باستخدام فاتورة نقاط البيع في حالة المعاملات ذات الحجم الكبير."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "وقد تم إرساء المهمة كعمل خلفية. في حالة وجود أي مشكلة في المعالجة في الخلفية ، سيقوم النظام بإضافة تعليق حول الخطأ في تسوية المخزون هذا والعودة إلى مرحلة المسودة"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "تمت إضافة المهمة إلى قائمة الانتظار كعملية خلفية. في حال وجود أي مشكلة أثناء المعالجة في الخلفية، سيضيف النظام تعليقًا حول الخطأ في عملية مطابقة المخزون هذه، ثم يعود إلى حالة \"تم الإرسال\"."
@@ -54730,15 +54829,15 @@ msgstr "تختلف قيمة {0} بين العناصر {1} و {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "تم تعيين القيمة {0} بالفعل لعنصر موجود {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "المستودع الذي يتم فيه تخزين المنتجات النهائية قبل شحنها."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "المستودع الذي ستُنقل إليه منتجاتك عند بدء الإنتاج. يمكن أيضاً اختيار مستودع المجموعة كمستودع للمنتجات قيد التصنيع."
@@ -54746,19 +54845,19 @@ msgstr "المستودع الذي ستُنقل إليه منتجاتك عند ب
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "يجب أن يكون {0} ({1}) مساويًا لـ {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "يحتوي {0} على عناصر سعر الوحدة."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "البادئة {0} '{1}' موجودة بالفعل. يُرجى تغيير رقم التسلسل، وإلا ستظهر لك رسالة خطأ \"إدخال مكرر\"."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "تم إنشاء {0} {1} بنجاح"
@@ -54766,7 +54865,7 @@ msgstr "تم إنشاء {0} {1} بنجاح"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "لا يتطابق {0} {1} مع {0} {2} في {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "يتم استخدام {0} {1} لحساب تكلفة التقييم للمنتج النهائي {2}."
@@ -54782,7 +54881,7 @@ msgstr "هناك صيانة نشطة أو إصلاحات ضد الأصل. يجب
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "هناك تناقضات بين المعدل، لا من الأسهم والمبلغ المحسوب"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "توجد قيود دفترية لهذا الحساب. سيؤدي تغيير {0} إلى{1} غير موجود في النظام الفعلي إلى ظهور مخرجات غير صحيحة في تقرير \"الحسابات {2}\"."
@@ -54811,7 +54910,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "هناك خياران لتقييم المخزون: طريقة الوارد أولاً يُصرف أولاً (FIFO) وطريقة المتوسط المتحرك. لفهم هذا الموضوع بالتفصيل، يُرجى زيارة تقييم الأصناف، وطريقة الوارد أولاً يُصرف أولاً، وطريقة المتوسط المتحرك. "
@@ -54851,7 +54950,7 @@ msgstr "لم يتم العثور على دفعة بالمقابلة مع {0}: {1
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "يجب أن يكون هناك منتج نهائي واحد على الأقل في هذا الإدخال المخزوني."
@@ -54907,11 +55006,11 @@ msgstr "هذا العنصر هو متغير {0} (قالب)."
msgid "This Month's Summary"
msgstr "ملخص هذا الشهر"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "تم التعاقد من الباطن بالكامل على أمر الشراء هذا."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "تم التعاقد من الباطن بالكامل على أمر البيع هذا."
@@ -54945,7 +55044,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "وهذا يغطي جميع بطاقات الأداء مرتبطة بهذا الإعداد"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "هذه الوثيقة هي على حد كتبها {0} {1} لمادة {4}. وجعل لكم آخر {3} ضد نفسه {2}؟"
@@ -55048,11 +55147,11 @@ msgstr "يُعتبر هذا الأمر خطيراً من وجهة نظر الم
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "هذا الخيار مخصص للمواد الخام التي ستُستخدم في تصنيع المنتجات النهائية. إذا كانت المادة خدمة إضافية مثل \"الغسيل\" التي ستُستخدم في قائمة المواد، فاترك هذا الخيار غير مُحدد."
@@ -55121,7 +55220,7 @@ msgstr "تم إنشاء هذا الجدول عندما تم استهلاك ال
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "تم إنشاء هذا الجدول عندما تم إصلاح الأصل {0} من خلال إصلاح الأصل {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "تم إنشاء هذا الجدول عندما تم استعادة الأصل {0} بسبب إلغاء فاتورة المبيعات {1} ."
@@ -55129,15 +55228,15 @@ msgstr "تم إنشاء هذا الجدول عندما تم استعادة ال
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "تم إنشاء هذا الجدول عندما تمت استعادة الأصل {0} عند إلغاء رسملة الأصل {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "تم إنشاء هذا الجدول عند استعادة الأصل {0} ."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "تم إنشاء هذا الجدول عندما تم إرجاع الأصل {0} من خلال فاتورة المبيعات {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "تم إنشاء هذا الجدول عندما تم إلغاء الأصل {0} ."
@@ -55145,7 +55244,7 @@ msgstr "تم إنشاء هذا الجدول عندما تم إلغاء الأص
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "تم إنشاء هذا الجدول عندما تم تحويل الأصل {0} إلى الأصل الجديد {2}{1} ."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "تم إنشاء هذا الجدول عندما كان الأصل {0} هو {1} من خلال فاتورة المبيعات {2}."
@@ -55214,7 +55313,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "سيؤدي هذا إلى تقييد وصول المستخدم لسجلات الموظفين الأخرى"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "سيتم التعامل مع هذا {} على أنه نقل مواد."
@@ -55325,7 +55424,7 @@ msgstr "الوقت بالدقائق"
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "سجلات الوقت مطلوبة لـ {0} {1}"
@@ -55434,7 +55533,7 @@ msgstr "على فاتورة"
msgid "To Currency"
msgstr "إلى العملات"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "(الى تاريخ) لا يمكن ان يكون قبل (من تاريخ)"
@@ -55661,11 +55760,15 @@ msgstr "لإضافة عمليات، حدد خانة الاختيار \"مع ال
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "لإضافة المواد الخام للعنصر المتعاقد عليه من الباطن في حالة تعطيل خيار تضمين العناصر المفككة."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "للسماح بزيادة الفواتير ، حدّث "Over Billing Allowance" في إعدادات الحسابات أو العنصر."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "للسماح بوصول الاستلام / التسليم ، قم بتحديث "الإفراط في الاستلام / بدل التسليم" في إعدادات المخزون أو العنصر."
@@ -55708,11 +55811,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "ل تشمل الضريبة في الصف {0} في معدل الإغلاق ، {1} ويجب أيضا تضمين الضرائب في الصفوف"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "لدمج ، يجب أن يكون نفس الخصائص التالية ل كلا البندين"
@@ -55720,7 +55823,7 @@ msgstr "لدمج ، يجب أن يكون نفس الخصائص التالية ل
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "ولعدم تطبيق قاعدة التسعير في معاملة معينة، يجب تعطيل جميع قواعد التسعير المعمول بها."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "لإلغاء هذا ، قم بتمكين "{0}" في الشركة {1}"
@@ -55745,7 +55848,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55895,7 +55998,7 @@ msgstr "إجمالي المخصصات"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56002,12 +56105,12 @@ msgstr "مجموع العمولة"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "إجمالي الكمية المكتملة"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56309,7 +56412,7 @@ msgstr "إجمالي المبلغ المستحق"
msgid "Total Paid Amount"
msgstr "إجمالي المبلغ المدفوع"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "يجب أن يكون إجمالي مبلغ الدفع في جدول الدفع مساويا للمجموع الكبير / المستدير"
@@ -56321,7 +56424,7 @@ msgstr "لا يمكن أن يكون إجمالي مبلغ طلب الدفع أك
msgid "Total Payments"
msgstr "مجموع المدفوعات"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "إجمالي الكمية المختارة {0} أكبر من الكمية المطلوبة {1}. يمكنك ضبط سماحية الاختيار الزائد في إعدادات المخزون."
@@ -56604,7 +56707,7 @@ msgstr "إجمالي وقت العمل على محطة العمل (بالساع
msgid "Total allocated percentage for sales team should be 100"
msgstr "مجموع النسبة المئوية المخصصة ل فريق المبيعات يجب أن يكون 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "يجب أن تكون نسبة المساهمة الإجمالية مساوية 100"
@@ -56779,7 +56882,7 @@ msgstr "تاريخ المعاملة"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56803,11 +56906,11 @@ msgstr "عنصر سجل حذف المعاملة"
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56912,7 +57015,8 @@ msgstr "المعاملة التي يتم اقتطاع الضريبة منها"
msgid "Transaction from which tax is withheld"
msgstr "المعاملة التي يتم اقتطاع الضريبة منها"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "المعاملة غير مسموح بها في مقابل أمر العمل المتوقف {0}"
@@ -56959,11 +57063,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "تم تعطيل المعاملات التي تستخدم فاتورة المبيعات في نظام نقاط البيع."
@@ -57144,8 +57253,8 @@ msgstr "نقل معلومات"
msgid "Transporter Name"
msgstr "نقل اسم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "نفقات السفر"
@@ -57409,6 +57518,7 @@ msgstr "إعدادات ضريبة القيمة المضافة في الإمار
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57424,7 +57534,7 @@ msgstr "إعدادات ضريبة القيمة المضافة في الإمار
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57485,7 +57595,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "عامل تحويل وحدة القياس"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "معامل تحويل UOM ({0} -> {1}) غير موجود للعنصر: {2}"
@@ -57498,7 +57608,7 @@ msgstr "معامل تحويل وحدة القياس مطلوب في الصف: {0
msgid "UOM Name"
msgstr "اسم وحدة القايس"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "معامل تحويل وحدة القياس المطلوب لوحدة القياس: {0} في العنصر: {1}"
@@ -57570,13 +57680,13 @@ msgstr "تعذر العثور على سعر الصرف من {0} إلى {1} لت
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "تعذر العثور على النتيجة بدءا من {0}. يجب أن يكون لديك درجات دائمة تغطي 0 إلى 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "لم يتم العثور على الفترة الزمنية المناسبة للعملية {1}خلال الأيام {0} القادمة. يرجى زيادة \"تخطيط السعة لـ (أيام)\" في {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "تعذر العثور على المتغير:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57657,7 +57767,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57676,7 +57786,7 @@ msgstr "وحدة"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "سعر الوحدة"
@@ -57693,7 +57803,7 @@ msgstr "وحدة القياس"
msgid "Unit of Measure (UOM)"
msgstr "وحدة القياس"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "وحدة القياس {0} تم إدخال أكثر من مرة واحدة في معامل التحويل الجدول"
@@ -57838,7 +57948,7 @@ msgstr "إدخالات غير مُطابقة"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57878,12 +57988,12 @@ msgstr "لم تحل"
msgid "Unscheduled"
msgstr "غير المجدولة"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "القروض غير المضمونة"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "طلب دفع غير مطابق"
@@ -58059,7 +58169,7 @@ msgstr "تحديث العناصر"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "تحديث رائع للذات"
@@ -58138,11 +58248,11 @@ msgstr "تم تحديث صف (صفوف) التقرير المالي {0} باسم
msgid "Updating Costing and Billing fields against this Project..."
msgstr "تحديث حقول التكاليف والفواتير لهذا المشروع..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "جارٍ تحديث المتغيرات ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "تحديث حالة أمر العمل"
@@ -58344,7 +58454,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "استخدم سعر صرف تاريخ المعاملة"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "استخدم اسمًا مختلفًا عن اسم المشروع السابق"
@@ -58386,7 +58496,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "يُستخدم مع نموذج التقرير المالي"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "منتدى المستخدمين"
@@ -58450,6 +58560,11 @@ msgstr "يمكن للمستخدمين تفعيل خانة الاختيار إذ
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58472,8 +58587,8 @@ msgstr "سيتم إخطار المستخدمين الذين لديهم هذا ا
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "يؤدي استخدام المخزون السالب إلى تعطيل تقييم FIFO/المتوسط المتحرك عندما يكون المخزون سالباً."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "نفقات المرافق"
@@ -58483,7 +58598,7 @@ msgstr "نفقات المرافق"
msgid "VAT Accounts"
msgstr "حسابات ضريبة القيمة المضافة"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "مبلغ ضريبة القيمة المضافة (بالدرهم الإماراتي)"
@@ -58493,12 +58608,12 @@ msgid "VAT Audit Report"
msgstr "تقرير تدقيق ضريبة القيمة المضافة"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "ضريبة القيمة المضافة على المصاريف وجميع المدخلات الأخرى"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "ضريبة القيمة المضافة على المبيعات وجميع المخرجات الأخرى"
@@ -58692,7 +58807,6 @@ msgstr "طريقة التقييم"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58708,14 +58822,12 @@ msgstr "طريقة التقييم"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "سعر التقييم"
@@ -58723,19 +58835,19 @@ msgstr "سعر التقييم"
msgid "Valuation Rate (In / Out)"
msgstr "معدل التقييم (داخل / خارج)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "معدل التقييم مفقود"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "معدل التقييم للعنصر {0} ، مطلوب لإجراء إدخالات محاسبية لـ {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "معدل التقييم إلزامي إذا ادخلت قيمة مبدئية للمخزون\\n \\nValuation Rate is mandatory if Opening Stock entered"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "معدل التقييم مطلوب للبند {0} في الصف {1}"
@@ -58745,7 +58857,7 @@ msgstr "معدل التقييم مطلوب للبند {0} في الصف {1}"
msgid "Valuation and Total"
msgstr "التقييم والمجموع"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "تم تحديد معدل تقييم العناصر التي يقدمها العملاء عند الصفر."
@@ -58759,7 +58871,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "معدل تقييم السلعة وفقًا لفاتورة المبيعات (للتحويلات الداخلية فقط)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "لا يمكن تحديد رسوم نوع التقييم على أنها شاملة"
@@ -58771,7 +58883,7 @@ msgstr "لا يمكن وضع علامة على رسوم التقييم على ا
msgid "Value (G - D)"
msgstr "القيمة (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "القيمة ({0})"
@@ -58890,12 +59002,12 @@ msgid "Variance ({})"
msgstr "التباين ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "مختلف"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "خطأ في سمة المتغير"
@@ -58914,7 +59026,7 @@ msgstr "المتغير BOM"
msgid "Variant Based On"
msgstr "البديل القائم على"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "لا يمكن تغيير المتغير بناءً على"
@@ -58932,7 +59044,7 @@ msgstr "الحقل البديل"
msgid "Variant Item"
msgstr "عنصر متغير"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "العناصر المتغيرة"
@@ -58943,7 +59055,7 @@ msgstr "العناصر المتغيرة"
msgid "Variant Of"
msgstr "البديل من"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "وقد وضعت قائمة الانتظار في قائمة الانتظار."
@@ -59237,7 +59349,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "سند #"
@@ -59309,7 +59421,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59383,7 +59495,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59410,7 +59522,7 @@ msgstr "نوع القسيمة الفرعي"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59590,8 +59702,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "لم يتم العثور على المستودع مقابل الحساب {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "مستودع الأسهم المطلوبة لل تفاصيل {0}"
@@ -59616,7 +59728,7 @@ msgstr "مستودع {0} لا تنتمي إلى شركة {1}"
msgid "Warehouse {0} does not exist"
msgstr "المستودع {0} غير موجود"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "لا يُسمح باستخدام المستودع {0} في أمر البيع {1}، بل يجب أن يكون {2}"
@@ -59753,11 +59865,11 @@ msgstr "تحذير: {0} أخر # {1} موجود في مدخل المخزن {2}\\
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "تحذير : كمية المواد المطلوبة هي أقل من الحد الأدنى للطلب الكمية"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "تحذير: الكمية تتجاوز الحد الأقصى للكمية القابلة للإنتاج بناءً على كمية المواد الخام المستلمة من خلال أمر التوريد الداخلي للتعاقد من الباطن {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "تحذير: أمر البيع {0} موجود مسبقاً لأمر الشراء الخاص بالعميل {1}\\n \\nWarning: Sales Order {0} already exists against Customer's Purchase Order {1}"
@@ -59847,7 +59959,7 @@ msgstr "الطول الموجي بالكيلومترات"
msgid "Wavelength In Megametres"
msgstr "الطول الموجي بالميغامتر"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59916,7 +60028,7 @@ msgstr "الموقع:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "الأسبوع {0} {1}"
@@ -60046,7 +60158,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "عند إنشاء عنصر، سيؤدي إدخال قيمة لهذا الحقل إلى إنشاء سعر العنصر تلقائيًا في الواجهة الخلفية."
@@ -60056,7 +60168,7 @@ msgstr "عند إنشاء عنصر، سيؤدي إدخال قيمة لهذا ا
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60066,11 +60178,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "أثناء إنشاء حساب الشركة الفرعية {0} ، تم العثور على الحساب الرئيسي {1} كحساب دفتر أستاذ."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "أثناء إنشاء حساب Child Company {0} ، لم يتم العثور على الحساب الرئيسي {1}. الرجاء إنشاء الحساب الرئيسي في شهادة توثيق البرامج المقابلة"
@@ -60215,7 +60327,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "التقدم في العمل"
@@ -60252,7 +60364,7 @@ msgstr "التقدم في العمل"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60286,7 +60398,7 @@ msgstr "المواد المستهلكة في أمر العمل"
msgid "Work Order Item"
msgstr "بند أمر العمل"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60327,19 +60439,23 @@ msgstr "ملخص أمر العمل"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "لا يمكن إنشاء أمر العمل للسبب التالي: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "لا يمكن رفع أمر العمل مقابل قالب العنصر"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "تم عمل الطلب {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "أمر العمل لم يتم إنشاؤه"
@@ -60348,16 +60464,16 @@ msgstr "أمر العمل لم يتم إنشاؤه"
msgid "Work Order {0} created"
msgstr "تم إنشاء أمر العمل {0}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "أمر العمل {0}: لم يتم العثور على بطاقة المهمة للعملية {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "طلبات العمل"
@@ -60382,7 +60498,7 @@ msgstr "التقدم في العمل"
msgid "Work-in-Progress Warehouse"
msgstr "مستودع العمل قيد التنفيذ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "مستودع أعمال جارية مطلوب قبل التسجيل\\n \\nWork-in-Progress Warehouse is required before Submit"
@@ -60430,7 +60546,7 @@ msgstr "ساعات العمل"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60521,14 +60637,14 @@ msgstr "محطات العمل"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "لا تصلح"
@@ -60633,7 +60749,7 @@ msgstr "القيمة المكتوبة"
msgid "Wrong Company"
msgstr "شركة خاطئة"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "كلمة مرور خاطئة\\n \\nWrong Password"
@@ -60689,11 +60805,11 @@ msgstr "تاريخ البدء أو تاريخ الانتهاء العام يتد
msgid "You are importing data for the code list:"
msgstr "أنت بصدد استيراد بيانات لقائمة الرموز:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "غير مسموح لك بالتحديث وفقًا للشروط المحددة في {} سير العمل."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "غير مصرح لك باضافه إدخالات أو تحديثها قبل {0}\\n \\nYou are not authorized to add or update entries before {0}"
@@ -60701,7 +60817,7 @@ msgstr "غير مصرح لك باضافه إدخالات أو تحديثها ق
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "أنت غير مخول بإجراء/تعديل معاملات المخزون للصنف {0} ضمن المستودع {1} قبل هذا الوقت."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ".أنت غير مخول لتغيير القيم المجمدة"
@@ -60729,7 +60845,7 @@ msgstr "يمكنك أيضًا تعيين حساب CWIP الافتراضي في
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "يمكنك تغيير الحساب الرئيسي إلى حساب الميزانية العمومية أو تحديد حساب مختلف."
@@ -60770,11 +60886,11 @@ msgstr "يمكنك تعيينه كاسم للآلة أو نوع العملية.
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "لا يمكنك إجراء أي تغييرات على بطاقة العمل لأن أمر العمل مغلق."
@@ -60798,7 +60914,7 @@ msgstr "لا يمكنك إنشاء {0} خلال الفترة المحاسبية
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "لا يمكنك إنشاء أو إلغاء أي قيود محاسبية في فترة المحاسبة المغلقة {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "لا يمكنك إنشاء/تعديل أي قيود محاسبية حتى هذا التاريخ."
@@ -60859,7 +60975,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "ليس لديك أذونات لـ {} من العناصر في {}."
@@ -60871,19 +60987,19 @@ msgstr "ليس لديك ما يكفي من نقاط الولاء لاستردا
msgid "You don't have enough points to redeem."
msgstr "ليس لديك ما يكفي من النقاط لاستردادها."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60895,7 +61011,7 @@ msgstr "كان لديك {} من الأخطاء أثناء إنشاء الفوا
msgid "You have already selected items from {0} {1}"
msgstr "لقد حددت العناصر من {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "لقد تمت دعوتك للمشاركة في المشروع {0}."
@@ -60919,7 +61035,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "يجب عليك تمكين الطلب التلقائي في إعدادات الأسهم للحفاظ على مستويات إعادة الطلب."
@@ -60935,7 +61051,7 @@ msgstr "يجب عليك تحديد عميل قبل إضافة عنصر."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "يجب عليك إلغاء إدخال إغلاق نقطة البيع {} لتتمكن من إلغاء هذا المستند."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "لقد اخترت مجموعة الحسابات {1} كحساب {2} في الصف {0}. يرجى اختيار حساب واحد."
@@ -60982,11 +61098,11 @@ msgstr "الرمز البريدي"
msgid "Zero Balance"
msgstr "رصيد صفري"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "معدل صفري"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "الكمية صفر"
@@ -61008,11 +61124,11 @@ msgstr "ملف مضغوط"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[هام] [ERPNext] إعادة ترتيب الأخطاء تلقائيًا"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "السماح بأسعار سلبية للعناصر"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "بعد"
@@ -61053,7 +61169,7 @@ msgid "cannot be greater than 100"
msgstr "لا يمكن أن يكون أكبر من 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "مؤرخة {0}"
@@ -61202,7 +61318,7 @@ msgstr "تطبيق الدفع غير مثبت. يرجى تثبيته من {} أ
msgid "per hour"
msgstr "كل ساعة"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "أداء أحد الخيارين التاليين:"
@@ -61235,7 +61351,7 @@ msgstr "مستلم من"
msgid "reconciled"
msgstr "فرضت عليه"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "تم إرجاعه"
@@ -61270,7 +61386,7 @@ msgstr "RGT"
msgid "sandbox"
msgstr "رمل"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "تم البيع"
@@ -61278,8 +61394,8 @@ msgstr "تم البيع"
msgid "subscription is already cancelled."
msgstr "تم إلغاء الاشتراك بالفعل."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "حقل مرجع الهدف"
@@ -61297,7 +61413,7 @@ msgstr "عنوان"
msgid "to"
msgstr "إلى"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "لإلغاء تخصيص مبلغ فاتورة الإرجاع هذه قبل إلغائها."
@@ -61324,7 +61440,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "فريدة مثل SAVE20 لاستخدامها للحصول على الخصم"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61346,7 +61462,7 @@ msgstr "عبر أداة تحديث قائمة المواد"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "يجب عليك تحديد حساب رأس المال قيد التقدم في جدول الحسابات"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' معطل"
@@ -61354,7 +61470,7 @@ msgstr "{0} '{1}' معطل"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' ليس في السنة المالية {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) لا يمكن أن يكون أكبر من الكمية المخطط لها ({2}) في أمر العمل {3}"
@@ -61362,7 +61478,7 @@ msgstr "{0} ({1}) لا يمكن أن يكون أكبر من الكمية الم
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "قام كل من {0} و و{1}و بإرسال الأصول. للمتابعة، قم بإزالة العنصر و{2}و من الجدول."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} لم يتم العثور على حساب مقابل العميل {1}."
@@ -61395,11 +61511,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} الرقم {1} مستخدم بالفعل في {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} تكلفة التشغيل للعملية {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} العمليات: {1}"
@@ -61407,7 +61523,7 @@ msgstr "{0} العمليات: {1}"
msgid "{0} Request for {1}"
msgstr "{0} طلب {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} يعتمد الاحتفاظ بالعينة على الدُفعة ، يُرجى تحديد "رقم الدُفعة" للاحتفاظ بعينة من العنصر"
@@ -61495,11 +61611,11 @@ msgstr "{0} تم انشاؤه"
msgid "{0} creation for the following records will be skipped."
msgstr "سيتم تخطي إنشاء السجلات التالية {0} ."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} لديها حاليا {1} بطاقة أداء بطاقة الموردين، ويجب إصدار أوامر الشراء إلى هذا المورد بحذر."
@@ -61511,7 +61627,7 @@ msgstr "{0} لديه حاليا {1} بطاقة أداء بطاقة المورد
msgid "{0} does not belong to Company {1}"
msgstr "{0} لا تنتمي إلى شركة {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "لا ينتمي {0} إلى الشركة {1}."
@@ -61520,7 +61636,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} ادخل مرتين في ضريبة البند"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "تم إدخال {0} مرتين {1} في ضرائب الأصناف"
@@ -61545,7 +61661,7 @@ msgstr "{0} تم التقديم بنجاح"
msgid "{0} hours"
msgstr "{0} ساعات"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} في الحقل {1}"
@@ -61567,7 +61683,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr "{0} قيد التشغيل بالفعل لـ {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "تم حظر {0} حتى لا تتم متابعة هذه المعاملة"
@@ -61575,12 +61691,12 @@ msgstr "تم حظر {0} حتى لا تتم متابعة هذه المعاملة"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} في وضع المسودة. يرجى إرساله قبل إنشاء الأصل."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} إلزامي للصنف {1}\\n \\n{0} is mandatory for Item {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} إلزامي للحساب {1}"
@@ -61588,7 +61704,7 @@ msgstr "{0} إلزامي للحساب {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل صرف العملات من {1} إلى {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل سعر صرف العملة ل{1} إلى {2}."
@@ -61596,7 +61712,7 @@ msgstr "{0} إلزامي. ربما لم يتم إنشاء سجل سعر صرف
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} ليس حسابًا مصرفيًا للشركة"
@@ -61604,7 +61720,7 @@ msgstr "{0} ليس حسابًا مصرفيًا للشركة"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} ليست عقدة مجموعة. يرجى تحديد عقدة المجموعة كمركز تكلفة الأصل"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} ليس من نوع المخزون"
@@ -61644,27 +61760,27 @@ msgstr "{0} معلق حتى {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} مفتوح. أغلق نظام نقاط البيع أو ألغِ إدخال فتح نقطة البيع الحالي لإنشاء إدخال فتح نقطة بيع جديد."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} العنصر قيد الأستخدام"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} عناصر مفقودة أثناء العملية."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} عناصر منتجة"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61672,7 +61788,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} يجب أن يكون سالبة في وثيقة الارجاع"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "لا يُسمح لـ {0} بالتعامل مع {1}. يُرجى تغيير الشركة أو إضافتها في قسم \"مسموح بالتعامل معه\" في سجل العميل."
@@ -61688,7 +61804,7 @@ msgstr "{0} المعلمة غير صالحة"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} لا يمكن فلترة المدفوعات المدخلة {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "يتم استلام كمية {0} من الصنف {1} في المستودع {2} بسعة {3}."
@@ -61701,7 +61817,7 @@ msgstr "{0} إلى {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "تم حجز الوحدات {0} للصنف {1} في المستودع {2}، يرجى إلغاء حجزها لـ {3} في عملية مطابقة المخزون."
@@ -61717,16 +61833,16 @@ msgstr ""
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "يلزم {0} وحدة من {1} في {2} مع بُعد المخزون: {3} على {4} {5} لـ {6} لإكمال المعاملة."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} وحدات من {1} لازمة ل {2} في {3} {4} ل {5} لإكمال هذه المعاملة."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} وحدة من {1} مطلوبة في {2} على {3} {4} لإكمال هذه المعاملة."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} وحدات من {1} لازمة في {2} لإكمال هذه المعاملة."
@@ -61738,7 +61854,7 @@ msgstr "{0} حتى {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} أرقام تسلسلية صالحة للبند {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "تم إنشاء المتغيرات {0}."
@@ -61754,7 +61870,7 @@ msgstr "سيتم منح الخصم {0} ."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "سيتم تعيين {0} كـ {1} في العناصر التي يتم مسحها ضوئيًا لاحقًا"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61792,8 +61908,8 @@ msgstr "تم دفع المبلغ بالكامل بالفعل {0} {1} ."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "تم سداد جزء من المبلغ المستحق {0} {1} . يُرجى استخدام زر \"الحصول على الفاتورة المستحقة\" أو زر \"الحصول على الطلبات المستحقة\" للاطلاع على أحدث المبالغ المستحقة."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "تم تعديل {0} {1}، يرجى تحديث الصفحة من المتصفح"
@@ -61903,7 +62019,7 @@ msgstr "{0} {1}: الحساب {2} غير فعال \\n \\n{0} {1}: Account {2}
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: قيد محاسبي ل {2} يمكن ان يتم فقط بالعملة : {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: مركز التكلفة إلزامي للبند {2}"
@@ -61952,8 +62068,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0} ، أكمل العملية {1} قبل العملية {2}."
@@ -61973,11 +62089,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} لا ينتمي إلى الشركة: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61985,11 +62101,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} غير موجود"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} هو حساب جماعي."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} يجب أن يكون أقل من {2}"
@@ -62001,7 +62117,7 @@ msgstr "{count} الأصول التي تم إنشاؤها لـ {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} تم إلغائه أو مغلق."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "لا يمكن أن يكون حجم العينة {item_name}({sample_size}) أكبر من الكمية المقبولة ({accepted_quantity})"
@@ -62013,7 +62129,7 @@ msgstr "{ref_doctype} {ref_name} هو {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "لا يمكن إلغاء {} نظرًا لاسترداد نقاط الولاء المكتسبة. قم أولاً بإلغاء {} لا {}"
diff --git a/erpnext/locale/bs.po b/erpnext/locale/bs.po
index 83324ec5e38..ff38b2767d3 100644
--- a/erpnext/locale/bs.po
+++ b/erpnext/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Podsklop"
msgid " Summary"
msgstr " Sažetak"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Klijent Dostavljeni Artikal\" ne može biti Nabavni Artikal"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Klijent Dostavljen Artikal\" ne može imati Stopu Vrednovanja"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "Ne može se poništiti izbor opcije \"Fiksna Imovina\", jer postoji zapis imovine naspram artikla"
@@ -273,11 +273,11 @@ msgstr "% materijala isporučenih prema ovoj Listi Odabira"
msgid "% of materials delivered against this Sales Order"
msgstr "% materijala dostavljenog naspram ovog Prodajnog Naloga"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Račun' u sekciji Knjigovodstvo Klijenta {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Dozvoli višestruke Prodajne Naloge naspram Nabavnog Naloga Klijenta'"
@@ -289,7 +289,7 @@ msgstr "'Na Osnovu' i 'Grupiraj Po' ne mogu biti isti"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Dana od posljednje narudžbe' mora biti veći ili jednako nuli"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standard {0} račun' u {1}"
@@ -307,7 +307,7 @@ msgstr "'Od datuma' je obavezan"
msgid "'From Date' must be after 'To Date'"
msgstr "'Od datuma' mora biti nakon 'Do datuma'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Ima Serijski Broj' ne može biti 'Da' za artikal koji nije na zalihama"
@@ -319,9 +319,9 @@ msgstr "'Kontrola Obavezna prije Dostave' je onemogućena za artikal {0}, nema p
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Potrebna kontrola prije kupovine' je onemogućena za artikal {0}, nema potrebe za kreiranjem kvaliteta kontrole"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Početno'"
@@ -351,8 +351,8 @@ msgstr "Račun '{0}' već koristi {1}. Koristite drugi račun."
msgid "'{0}' has been already added."
msgstr "'{0}' je već dodan."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' bi trebao biti u valuti {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 dana"
msgid "90 Above"
msgstr "Iznad 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Postavke Da
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Datum odobravanja mora biti nakon datuma čeka za red(ove): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikal {0} u redu(ovima) {1} fakturisana više od {2} "
@@ -825,7 +825,7 @@ msgstr "Dokument o plaćanju potreban za red(ove): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Ne može se fakturisati više od predviđenog iznosa za sljedeće artikle:
"
@@ -888,7 +888,7 @@ msgstr "Datum registracije {0} ne može biti prije datuma Nabavnog Naloga za
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 "Cijena Cjenovnika nije postavljena za uređivanje u Postavkama Prodaje. U ovom scenariju, postavljanje Ažuriraj Cjenovnik na Osnovu na Cijena Cjenovnika spriječit će automatsko ažuriranje cijene artikla.
Jeste li sigurni da želite nastaviti?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Da biste dozvolili prekomjerno fakturisanje, postavite dozvoljeni iznos u Postavkama Knjigovodstva.
"
@@ -970,11 +970,11 @@ msgstr "Prečice "
msgid "Your Shortcuts "
msgstr "Prečice "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Ukupno: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Nepodmireni iznos: {0}"
@@ -1044,7 +1044,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Grupa Klijenta postoji sa istim imenom, molimo promijenite naziv klijenta ili preimenujte Grupu Klijenta"
@@ -1208,11 +1208,11 @@ msgstr "Skr"
msgid "Abbreviation"
msgstr "Skraćenica"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Skraćenica se već koristi za drugo poduzeće"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Skraćenica je obavezna"
@@ -1220,7 +1220,7 @@ msgstr "Skraćenica je obavezna"
msgid "Abbreviation: {0} must appear only once"
msgstr "Skraćenica: {0} se mora pojaviti samo jednom"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Iznad"
@@ -1274,7 +1274,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Prihvaćena Količina u Jedinici Zaliha"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Prihvaćena količina"
@@ -1310,7 +1310,7 @@ msgstr "Pristupni ključ je potreban za davaoca usluga: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Prema CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Prema Sastavnici {0}, artikal '{1}' nedostaje u unosu zaliha."
@@ -1428,8 +1428,8 @@ msgstr "Račun"
msgid "Account Manager"
msgstr "Upravitelj Knjogovodstva"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Račun Nedostaje"
@@ -1447,7 +1447,7 @@ msgstr "Račun Nedostaje"
msgid "Account Name"
msgstr "Naziv Računa"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Račun nije pronađen"
@@ -1460,7 +1460,7 @@ msgstr "Račun nije pronađen"
msgid "Account Number"
msgstr "Broj Računa"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Broj Računa {0} već se koristi na računu {1}"
@@ -1499,7 +1499,7 @@ msgstr "Podtip Računa"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1515,11 +1515,11 @@ msgstr "Vrsta Računa"
msgid "Account Value"
msgstr "Stanje Računa"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Stanje na računu je već u Kreditu, nije vam dozvoljeno postaviti 'Stanje mora biti' kao 'Debit'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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'"
@@ -1586,15 +1586,15 @@ msgstr "Račun na koji će biti pripisani prihodi od prodaje ovog artikla"
msgid "Account where the cost of this item will be debited on purchase"
msgstr "Račun na koji će se teretiti trošak ovog artikla pri nabavi"
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Račun sa podređenim članovima ne može se pretvoriti u Registar"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Račun sa podređenim članovima ne može se postaviti kao Registar"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u grupu."
@@ -1602,8 +1602,8 @@ msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u grupu."
msgid "Account with existing transaction can not be deleted"
msgstr "Račun sa postojećom transakcijom ne može se izbrisati"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u Registar"
@@ -1611,11 +1611,11 @@ msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u Registar"
msgid "Account {0} added multiple times"
msgstr "Račun {0} dodan više puta"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Račun {0} se ne može pretvoriti u Grupu jer je već postavljen kao {1} za {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Račun {0} ne može biti onemogućen jer je već postavljen kao {1} za {2}."
@@ -1623,11 +1623,11 @@ 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:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Račun {0} ne pripada: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Račun {0} ne postoji"
@@ -1643,15 +1643,15 @@ msgstr "Račun {0} nije usklađen sa {1} u Kontnom Planu: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Račun {0} ne pripada {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Račun {0} postoji u matičnom poduzeću {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
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:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Račun {0} je onemogućen."
@@ -1659,7 +1659,7 @@ msgstr "Račun {0} je onemogućen."
msgid "Account {0} is frozen"
msgstr "Račun {0} je zamrznut"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Račun {0} je nevažeći. Valuta Računa mora biti {1}"
@@ -1667,19 +1667,19 @@ msgstr "Račun {0} je nevažeći. Valuta Računa mora biti {1}"
msgid "Account {0} should be of type Expense"
msgstr "Račun {0} treba biti tipa Trošak"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Račun {0}: Nadređeni račun {1} ne može biti registar"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Račun {0}: Nadređeni račun {1} ne pripada: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Račun {0}: Nadređeni račun {1} ne postoji"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Račun {0}: Ne možete se dodijeliti kao nadređeni račun"
@@ -1695,7 +1695,7 @@ msgstr "Račun: {0} se može ažurirati samo putem Transakcija Zaliha"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Račun: {0} nije dozvoljen pod Unos plaćanja"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Račun: {0} sa valutom: {1} se ne može odabrati"
@@ -1980,8 +1980,8 @@ msgstr "Knjigovodstveni Unosi"
msgid "Accounting Entry for Asset"
msgstr "Knjigovodstveni Unos za Imovinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Knjigovodstveni Unos za Dokument Troškova Nabavke u Unosu Zaliha {0}"
@@ -2005,8 +2005,8 @@ msgstr "Knjigovodstveni Unos za Servis"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Knjigovodstveni Unos za Zalihe"
@@ -2015,7 +2015,7 @@ msgstr "Knjigovodstveni Unos za Zalihe"
msgid "Accounting Entry for {0}"
msgstr "Knjigovodstveni Unos za {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
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}"
@@ -2070,7 +2070,6 @@ msgstr "Knjigovodstveni unosi su zamrznuti do ovog datuma. Samo korisnici sa nav
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2083,14 +2082,13 @@ 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/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Knjigovodstvo"
@@ -2120,8 +2118,8 @@ msgstr "Računi Nedostaju u Izvještaju"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2221,15 +2219,15 @@ msgstr "Tabela računa ne može biti prazna."
msgid "Accounts to Merge"
msgstr "Računi za Spajanje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Nagomilani Troškovi"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Akumulirana Amortizacija"
@@ -2394,7 +2392,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:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "Omogući Serijski / Šaržni broj za Artikal"
@@ -2518,7 +2516,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:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Stvarni datum završetka ne može biti prije stvarnog datuma početka"
@@ -2640,7 +2638,7 @@ msgstr "Stvarno vrijeme u satima (preko rasporeda vremena)"
msgid "Actual qty in stock"
msgstr "Stvarna Količina na Zalihama"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}"
@@ -2649,7 +2647,7 @@ msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}"
msgid "Ad-hoc Qty"
msgstr "Namjenska Količina"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Dodaj / Uredi cijene"
@@ -3148,7 +3146,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:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Dodatni Prijenos Materijala"
@@ -3171,7 +3169,7 @@ msgstr "Dodatni operativni troškovi"
msgid "Additional Transferred Qty"
msgstr "Dodatna Prenesena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3183,11 +3181,6 @@ msgstr "Dodatna Prenesena Količina {0}\n"
"\t\t\t\t\tpolja 'Prenesi Dodatne Sirovine u Nedovršenu Proizvodnju'\n"
"\t\t\t\t\tu Postavkama Proizvodnje."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Dodatne informacije o klijentu."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Dodatnih {0} {1} artikla {2} potrebno je prema Sastavnici za dovršetak ove transakcije"
@@ -3333,11 +3326,6 @@ msgstr "Adresa mora biti povezana s firmom. Dodajte red za firmu u tabeli Veze."
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresa koja se koristi za određivanje PDV Kategorije u transakcijama"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Prilagodi Količinu"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Usaglašavanje Naspram"
@@ -3350,8 +3338,8 @@ msgstr "Usklađivanje na osnovu stope fakture nabavke"
msgid "Administrative Assistant"
msgstr "Administrativni Asistent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administrativni Troškovi"
@@ -3419,7 +3407,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Plaćanja Predujma"
@@ -3539,7 +3527,7 @@ msgstr "Naspram Računa"
msgid "Against Blanket Order"
msgstr "Naspram Ugovornog Naloga"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Naspram Naloga Klijenta {0}"
@@ -3681,11 +3669,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Dob (Dana)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Dob ({0})"
@@ -3835,21 +3823,21 @@ 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Svi odjeli"
@@ -3929,7 +3917,7 @@ msgstr "Sve grupe dobavljača"
msgid "All Territories"
msgstr "Sve teritorije"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Sva skladišta"
@@ -3943,6 +3931,11 @@ msgstr "Sve dodjele su uspješno usaglašene"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Sva komunikacija uključujući i iznad ovoga bit će premještena u novi Problem"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr "Sve fakture i narudžbe za ovog klijenta bit će izrađene u ovoj valuti."
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Svi artikli su već traženi"
@@ -3951,23 +3944,23 @@ msgstr "Svi artikli su već traženi"
msgid "All items have already been Invoiced/Returned"
msgstr "Svi Artikli su već Fakturisani/Vraćeni"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Svi Artikli su već primljeni"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Svi Artikli su već prenesen za ovaj Radni Nalog."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
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:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Svi povezani Prodajni Nalozi moraju biti podizvođački."
@@ -3981,11 +3974,11 @@ msgstr "Svi komentari i e-pošta kopirat će se iz jednog dokumenta u drugi novo
msgid "All the items have been already returned."
msgstr "Svi artikli su već vraćeni."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Svi obavezni Artikli (sirovine) bit će preuzeti iz Sastavnice i popunjene u ovoj tabeli. Ovdje također možete promijeniti izvorno skladište za bilo koji artikal. A tokom proizvodnje možete pratiti prenesene sirovine iz ove tabele."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Svi ovi Artikli su već Fakturisani/Vraćeni"
@@ -4004,7 +3997,7 @@ msgstr "Dodijeli"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Automatski Dodjeli Predujam (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Alociraj iznos uplate"
@@ -4014,7 +4007,7 @@ msgstr "Alociraj iznos uplate"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Dodjeli Plaćanje na osnovu Uslova Plaćanja"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Dodijeli zahtjev za plaćanje"
@@ -4044,7 +4037,7 @@ msgstr "Dodjeljeno"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4101,7 +4094,7 @@ msgstr "Alocirana količina"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4165,7 +4158,7 @@ msgstr "Dozvoli u Povratima"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Dozvoli interne transfere po tržišnoj cijeni"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Dozvolite da se artikal doda više puta u transakciji"
@@ -4288,16 +4281,6 @@ msgstr "Dozvoli ponovno postavljanje ugovora o nivou usluge iz postavki podrške
msgid "Allow Sales"
msgstr "Dozvoli Prodaju"
-#. 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 "Dozvoli Kreiranje Prodajnih Faktura 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 "Dozvoli Kreiranje Prodajne Fakture bez Prodajnog Naloga"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4423,6 +4406,16 @@ msgstr "Dozvoli više Nabavnih Naloga za jedan Nabavni Nalog klijenta"
msgid "Allow negative rates for Items"
msgstr "Dozvoli negativne cijene za artikle"
+#. 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"
+
+#. 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"
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4499,10 +4492,8 @@ msgstr "Dozvoljeni Artikli"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Dozvoljena Transakcija sa"
@@ -4514,6 +4505,11 @@ msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Molimo odaberite
msgid "Allowed special characters are '/' and '-'"
msgstr "Dozvoljeni specijalni znakovi su '/' i '-'"
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr "Dozvoljeno obavljati transakcije s"
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4555,8 +4551,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Također, ne možete se vratiti na FIFO nakon što ste za ovaj artikal postavili metodu vrednovanja na MA."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4797,7 +4793,7 @@ msgstr "Uvijek Pitaj"
msgid "Amount"
msgstr "Iznos"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Iznos (AED)"
@@ -4931,12 +4927,12 @@ msgid "Amount to Bill"
msgstr "Iznos za Fakturisanje"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Iznos {0} {1} naspram {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr "Iznos {0} {1} prilagođen u odnosu na {2} {3}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Iznos {0} {1} odbijen naspram {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr "Iznos {0} {1} kao prilagođavanje na {2}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4981,11 +4977,11 @@ msgstr "Iznos"
msgid "An Item Group is a way to classify items based on types."
msgstr "Grupa Artikla je način za klasifikaciju Artikala na osnovu tipa."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
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:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Došlo je do greške tokom obrade ažuriranja"
@@ -5525,7 +5521,7 @@ msgstr "Pošto je polje {0} omogućeno, polje {1} je obavezno."
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
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}."
@@ -5537,7 +5533,7 @@ msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}."
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/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
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}."
@@ -5675,7 +5671,7 @@ msgstr "Račun kategorije imovine"
msgid "Asset Category Name"
msgstr "Naziv kategorije imovine"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Kategorija Imovine je obavezna za Artikal Fiksne Imovine"
@@ -5852,8 +5848,8 @@ msgstr "Količina Imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5953,7 +5949,7 @@ msgstr "Imovina otkazana"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Imovina se ne može otkazati, jer je već {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Imovina se ne može rashodovati prije posljednjeg unosa amortizacije."
@@ -5985,7 +5981,7 @@ msgstr "Imovina nije u funkciji zbog popravke imovine {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Imovina primljena u {0} i izdata {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Imovina vraćena"
@@ -5993,20 +5989,20 @@ msgstr "Imovina vraćena"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Imovina vraćena nakon što je kapitalizacija imovine {0} otkazana"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Imovina vraćena"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Imovina rashodovana"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Imovina rashodovana putem Naloga Knjiženja {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Imovina prodata"
@@ -6026,7 +6022,7 @@ msgstr "Imovina je ažurirana nakon što je podijeljena na Imovinu {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Imovina ažurirana zbog Popravke Imovine {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Imovina {0} se nemože rashodovati, jer je već {1}"
@@ -6067,7 +6063,7 @@ msgstr "Imovina {0} nije postavljena za obračun amortizacije."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Imovina {0} nije podnešena. Podnesi imovinu prije nastavka."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Imovina {0} mora biti podnešena"
@@ -6117,7 +6113,7 @@ msgstr "Imovina nije kreirana za {item_code}. Morat ćete kreirati Imovinu ručn
msgid "Assets {assets_link} created for {item_code}"
msgstr "Imovina {assets_link} kreirana za {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Dodijeli Posao Personalu"
@@ -6178,7 +6174,7 @@ msgstr "Najmanje jedan od primjenjivih modula treba odabrati"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Najmanje jedno od Prodaje ili Nabave mora biti odabrano"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Najmanje jedan artikal sirovine mora biti prisutan u unosu zaliha za tip {0}"
@@ -6186,21 +6182,17 @@ msgstr "Najmanje jedan artikal sirovine mora biti prisutan u unosu zaliha za tip
msgid "At least one row is required for a financial report template"
msgstr "Za šablon finansijskog izvještaja potreban je barem jedan red"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Najmanje jedno skladište je obavezno"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "U redu #{0}: Račun razlike ne smije biti račun tipa artikal, promijenite vrstu računa za račun {1} ili odaberite drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr "U redu #{0}: račun razlike ne smije biti račun tipa zaliha..."
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "U redu #{0}: id sekvence {1} ne može biti manji od id-a sekvence prethodnog reda {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "U redu #{0}: odabrali ste Račun Razlike {1}, koji je tip računa Troškovi Prodane Robe. Odaberi drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr "U redu #{0}: odabrali ste Račun Razlike {1}..."
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6282,11 +6274,11 @@ msgstr "Naziv Atributa"
msgid "Attribute Value"
msgstr "Vrijednost Atributa"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
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:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabela Atributa je obavezna"
@@ -6294,19 +6286,19 @@ msgstr "Tabela Atributa je obavezna"
msgid "Attribute value: {0} must appear only once"
msgstr "Vrijednost Atributa: {0} se mora pojaviti samo jednom"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr "Atribut {0} je onemogućen."
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr "Atribut {0} nije valjan za odabrani šablon."
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
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:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributi"
@@ -6518,7 +6510,7 @@ msgstr "Automatsko poravnanje i postavljanje Stranke u Bankovnim Transakcijama"
msgid "Auto re-order"
msgstr "Automatsko ponovno naručivanje"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Automatsko ponavljanje dokumenta je ažurirano"
@@ -6630,7 +6622,7 @@ msgstr "Datum Dostupnosti za Upotrebu"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Dostupna Količina"
@@ -6719,10 +6711,6 @@ msgstr "Datum Dostupnosti za Upotrebu"
msgid "Available for use date is required"
msgstr "Datum dostupnosti za upotrebu je obavezan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Dostupna količina je {0}, potrebno vam je {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Dostupno {0}"
@@ -6731,8 +6719,8 @@ msgstr "Dostupno {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Datum dostupnosti za upotrebu bi trebao biti nakon datuma nabave"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Prosječna dob"
@@ -6756,7 +6744,9 @@ msgstr "Prosječne Vrijednosti Naloga"
msgid "Average Order Values"
msgstr "Prosječne Vrijednosti Naloga"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Prosječna Cijena"
@@ -6780,7 +6770,7 @@ msgid "Avg Rate"
msgstr "Prosječna Cijena"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Prosječna Cijena (Stanje Zaliha)"
@@ -6838,7 +6828,7 @@ msgstr "Spremnička Količina"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6861,7 +6851,7 @@ msgstr "Sastavnica"
msgid "BOM 1"
msgstr "Sastavnica 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Sastavnica 1 {0} i Sastavnica 2 {1} ne bi trebali biti isti"
@@ -6933,11 +6923,6 @@ msgstr "Nestavljeni Artikli Sastavnice"
msgid "BOM ID"
msgstr "Sastavnica"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Informacija Sastavnice"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7091,7 +7076,7 @@ msgstr "Artikal Web Stranice Sastavnice"
msgid "BOM Website Operation"
msgstr "Operacija Web Stranice Sastavnice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Sastavnica i Količina Gotovog Proizvoda su obavezni za Rastavljanje"
@@ -7159,7 +7144,7 @@ msgstr "Unos Zaliha Unazad"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Retroaktivno Preuzmi Materijal iz Skladišta za Posao u Toku"
@@ -7223,7 +7208,7 @@ msgstr "Stanje u Osnovnoj Valuti"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Količinsko Stanje"
@@ -7288,7 +7273,7 @@ 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/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Vrijednost Stanja"
@@ -7444,8 +7429,8 @@ msgid "Bank Balance"
msgstr "Bankovno Stanje"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bankarske Naknade"
@@ -7560,8 +7545,8 @@ msgstr "Tip Bankarske Garancije"
msgid "Bank Name"
msgstr "Naziv Banke"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Bankovni Račun Prekoračenja"
@@ -7734,11 +7719,11 @@ msgstr "Bankarstvo"
msgid "Barcode Type"
msgstr "Barkod Tip"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Barkod {0} se već koristi za artikal {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Barkod {0} nije važeći {1} kod"
@@ -7895,7 +7880,7 @@ msgstr "Osnovna Cijena (prema Jedinici Zaliha)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7970,7 +7955,7 @@ msgstr "Status isteka roka Artikla Šarže"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8059,13 +8044,13 @@ msgstr "Količina Šarže ažurirana na {0}"
msgid "Batch Quantity"
msgstr "Količina Šarže"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8082,7 +8067,7 @@ msgstr "Jedinica Šarže"
msgid "Batch and Serial No"
msgstr "Šarža i Serijski Broj"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Šarža nije kreirana za artikal {} jer nema Šaržu."
@@ -8105,12 +8090,12 @@ msgstr "Šarža {0} i Skladište"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Šarža {0} nije dostupna u skladištu {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Šarža {0} artikla {1} je istekla."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Šarža {0} artikla {1} je onemogućena."
@@ -8165,7 +8150,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8174,7 +8159,7 @@ msgstr "Datum Fakture"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8188,11 +8173,13 @@ msgstr "Faktura za odbijenu količinu na Kupovnoj 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Sastavnica"
@@ -8293,7 +8280,7 @@ msgstr "Detalji Adrese za Fakturu"
msgid "Billing Address Name"
msgstr "Naziv Adrese za Fakturu"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Faktura Adresa ne pripada {0}"
@@ -8545,6 +8532,16 @@ msgstr "Blokiraj Fakturu"
msgid "Block Supplier"
msgstr "Blokiraj Dostavljača"
+#. 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"
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr "Blokira korištenje ovog klijenta za bilo koju novu transakciju."
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8641,7 +8638,7 @@ msgstr "Rezervisano"
msgid "Booked Fixed Asset"
msgstr "Proknjižena Osnovna Imovina"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Knjigovodstvo je zatvoreno do perioda koji se završava {0}"
@@ -8900,8 +8897,8 @@ msgstr "Ažuriraj Stablo"
msgid "Buildable Qty"
msgstr "Količina za Proizvodnju"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Zgrade"
@@ -9062,16 +9059,16 @@ msgstr "Prema standard postavkama, Ime dobavljača je postavljeno prema unesenom
msgid "By-Product"
msgstr "Nusproizvod"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Zaobiđi provjeru kreditne sposobnosti kod Prodajnog Naloga"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Zaobiđite provjeru kreditne sposobnosti kod Prodajnog Naloga"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr "Zaobiđi provjeru kreditnog ograničenja na prodajnom nalogu"
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9119,8 +9116,8 @@ msgstr "Napomena Prodajne Podrške"
msgid "CRM Settings"
msgstr "Postavke Prodajne Podrške"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Račun Kapitalnog Posla u Toku"
@@ -9375,7 +9372,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:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
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."
@@ -9408,13 +9405,13 @@ msgstr "Ne može se filtrirati na osnovu broja verifikata, ako je grupiran prema
msgid "Can only make payment against unbilled {0}"
msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "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:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
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"
@@ -9456,7 +9453,7 @@ msgstr "Ne može se dodijeliti Blagajnik/ca"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Nije moguće izračunati vrijeme dolaska jer nedostaje adresa vozača."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Nije moguće promijeniti Postavke Računa Inventara"
@@ -9464,9 +9461,9 @@ msgstr "Nije moguće promijeniti Postavke Računa Inventara"
msgid "Cannot Create Return"
msgstr "Nije moguće Kreirati Povrat"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Nije moguće spojiti"
@@ -9494,7 +9491,7 @@ msgstr "Nije moguće izmijeniti {0} {1}, umjesto toga kreirajte novi."
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:379
+#: erpnext/stock/doctype/item/item.py:378
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."
@@ -9514,7 +9511,7 @@ msgstr "Ne može se otkazati unos rezervacije zaliha {0} jer je korišten u radn
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:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}"
@@ -9534,15 +9531,15 @@ msgstr "Ne može se poništiti ovaj dokument jer je povezan s podnesenim Prilago
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Ne može se poništiti ovaj dokument jer je povezan sa dostavljenom imovinom {asset_link}. Otkaži imovinu da nastavite."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
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:994
+#: erpnext/stock/doctype/item/item.py:998
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/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Nije moguće promijeniti tip referentnog dokumenta."
@@ -9550,11 +9547,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:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
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."
@@ -9570,11 +9567,11 @@ msgstr "Nije moguće pretvoriti Centar Troškova u Registar jer ima podređene
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}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
@@ -9582,7 +9579,7 @@ msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Nije moguće kreirati Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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."
@@ -9608,7 +9605,7 @@ msgstr "Ne može se proglasiti izgubljenim, jer je Ponuda napravljena."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i Ukupno'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa"
@@ -9616,12 +9613,12 @@ msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Ne može se izbrisati serijski broj {0}, jer se koristi u transakcijama zaliha"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Ne možete izbrisati naručeni artikal"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Nije moguće izbrisati zaštićeni osnovni DocType: {0}"
@@ -9633,7 +9630,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:560
+#: erpnext/setup/doctype/company/company.py:564
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."
@@ -9641,20 +9638,20 @@ 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/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Ne može se demontirati više od proizvedene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
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:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Nije moguće osigurati dostavu serijskim brojem jer je artikal {0} dodan sa i bez Osiguraj Dostavu Serijskim Brojem."
@@ -9670,7 +9667,7 @@ msgstr "Ne mogu pronaći Artikal ili Skladište s ovim Barkodom"
msgid "Cannot find Item with this Barcode"
msgstr "Ne mogu pronaći artikal s ovim Barkodom"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
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."
@@ -9678,15 +9675,15 @@ msgstr "Ne može se pronaći zadano skladište za artikal {0}. Molimo vas da pos
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće knjigovodstvene unose u različitim valutama za '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
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:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
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:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Ne može se proizvesti više od {0} artikla za {1}"
@@ -9694,12 +9691,12 @@ msgstr "Ne može se proizvesti više od {0} artikla za {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Ne može se primiti od klijenta naspram negativnog nepodmirenog"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Ne može se smanjiti količina naručene ili nabavljene količine"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Ne može se upućivati na broj reda veći ili jednak trenutnom broju reda za ovaj tip naknade"
@@ -9712,14 +9709,14 @@ msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik gr
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Nije moguće preuzeti oznaku veze. Provjerite zapisnik grešaka za više informacija"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Nije moguće odabrati tip grupe \"Klijent Grupa\". Odaberi klijent grupu koja nije grupa."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9733,7 +9730,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:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Nije moguće postaviti više Standard Artikal Postavki za poduzeće."
@@ -9741,11 +9738,11 @@ msgstr "Nije moguće postaviti više Standard Artikal Postavki za poduzeće."
msgid "Cannot set multiple account rows for the same company"
msgstr "Nije moguće postaviti više redova računa za isto poduzeće"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Nije moguće postaviti količinu manju od dostavne količine."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Nije moguće postaviti količinu manju od primljene količine."
@@ -9757,7 +9754,7 @@ msgstr "Nije moguće postaviti polje {0} za kopiranje u varijantama"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Nije moguće započeti brisanje. Drugo brisanje {0} je već u redu čekanja/pokrenuto. Molimo pričekajte da se završi."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
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"
@@ -9790,7 +9787,7 @@ msgstr "Kapacitet (Jedinica Zaliha)"
msgid "Capacity Planning"
msgstr "Planiranje Kapaciteta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Greška Planiranja Kapaciteta, planirano vrijeme početka ne može biti isto kao vrijeme završetka"
@@ -9809,13 +9806,13 @@ msgstr "Kapacitet u Jedinici Zaliha"
msgid "Capacity must be greater than 0"
msgstr "Kapacitet mora biti veći od 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Kapitalna Oprema"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Akcionarski Kapital"
@@ -10032,7 +10029,7 @@ msgstr "Detalji o Kategoriji"
msgid "Category-wise Asset Value"
msgstr "Vrijednost Imovine po Kategorijama"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Oprez"
@@ -10137,7 +10134,7 @@ msgstr "Promijeni Datum Izdanja"
msgid "Change in Stock Value"
msgstr "Promjena Vrijednosti Zaliha"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
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."
@@ -10147,7 +10144,7 @@ msgstr "Promijenite vrstu računa u Potraživanje ili odaberite drugi račun."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ručno promijenite ovaj datum da postavite sljedeći datum početka sinhronizacije"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji."
@@ -10155,7 +10152,7 @@ msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji."
msgid "Changes in {0}"
msgstr "Promjene u {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Promjena Grupe Klijenta za odabranog Klijenta nije dozvoljena."
@@ -10170,7 +10167,7 @@ msgid "Channel Partner"
msgstr "Partner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
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"
@@ -10224,7 +10221,7 @@ msgstr "Stablo Kontnog Plana"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10367,7 +10364,7 @@ msgstr "Širina Čeka"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Referentni Datum"
@@ -10425,7 +10422,7 @@ msgstr "Podređeni DocType"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referenca za Podređeni Red"
@@ -10477,6 +10474,11 @@ msgstr "Klasifikacija Klijenata po Regionima"
msgid "Classify As"
msgstr "Klasificiraj kao"
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr "Klasificiraj tip tržišta kojem ovaj klijent pripada, koristi se za analizu prodaje i ciljanje."
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10619,11 +10621,11 @@ msgstr "Zatvoreni Dokument"
msgid "Closed Documents"
msgstr "Zatvoreni Dokumenti"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Zatvoreni Radni Nalog se ne može zaustaviti ili ponovo otvoriti"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Zatvoreni Nalog se ne može otkazati. Otvori ga da se otkaže."
@@ -10875,11 +10877,17 @@ msgstr "Stopa Provizije %"
msgid "Commission Rate (%)"
msgstr "Stopa Provizije (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provizija na Prodaju"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr "Provizija isplaćena Prodajnom Partneru za transakcije s ovim klijentom."
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10910,7 +10918,7 @@ msgstr "Vremenski Termin Komunikacijskog Medija"
msgid "Communication Medium Type"
msgstr "Tip Medija Konverzacije"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Sažet Ispis Arikla"
@@ -11309,8 +11317,8 @@ msgstr "Poduzeća"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11363,7 +11371,7 @@ msgstr "Poduzeća"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11452,18 +11460,20 @@ msgstr "Prikaz Adrese Poduzeća"
msgid "Company Address Name"
msgstr "Naziv Adrese Poduzeća"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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."
-#: erpnext/controllers/accounts_controller.py:4399
+#: erpnext/controllers/accounts_controller.py:4387
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."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Bankovni Račun Poduzeća"
@@ -11559,7 +11569,7 @@ msgstr "Poduzeće i Datum Knjiženja su obavezni"
msgid "Company and account filters not set!"
msgstr "Filteri poduzeća i računa nisu postavljeni!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
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."
@@ -11594,7 +11604,7 @@ msgstr "Poduzeće je obavezno"
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Naziv polja za link poduzeća koji se koristi za filtriranje (opciono - ostavite prazno da biste izbrisali sve zapise)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Naziv Poduzeća nije isti"
@@ -11633,12 +11643,12 @@ msgstr "Poduzeće koju predstavlja interni Dobavljač"
msgid "Company {0} added multiple times"
msgstr "Poduzeće {0} dodana više puta"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Poduzeće {0} ne postoji"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Poduzeće {0} je dodana više puta"
@@ -11680,7 +11690,7 @@ msgstr "Ime Konkurenta"
msgid "Competitors"
msgstr "Konkurenti"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Završi Posao"
@@ -11727,12 +11737,12 @@ msgstr "Završeni Projekti"
msgid "Completed Qty"
msgstr "Proizvedena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
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:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Proizvedena Količina"
@@ -11921,7 +11931,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:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Uračunaj Gubitak Procesa"
@@ -12115,7 +12125,7 @@ msgstr "Trošak Potrošenih Artikala"
msgid "Consumed Qty"
msgstr "Potrošena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Potrošena količina ne može biti veća od rezervisane količine za artikal {0}"
@@ -12144,7 +12154,7 @@ msgstr "Potrošeni Artikli Zalihe, Potrošene Artikli Imovine ili Potrošeni Ser
msgid "Consumed Stock Total Value"
msgstr "Ukupna Vrijednost Potrošenih Zaliha"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Potrošena količina artikla {0} premašuje prenesenu količinu."
@@ -12272,7 +12282,7 @@ msgstr "Broj Kontakta"
msgid "Contact Person"
msgstr "Kontakt Osoba"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Kontakt Osoba ne pripada {0}"
@@ -12398,6 +12408,11 @@ msgstr "Kontroliši Prijašnje Transakcije Zaliha"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
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."
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12458,7 +12473,7 @@ msgstr "Faktor Pretvaranja"
msgid "Conversion Rate"
msgstr "Stopa Pretvaranja"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
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}"
@@ -12466,15 +12481,15 @@ msgstr "Faktor pretvaranja za standard jedinicu mora biti 1 u redu {0}"
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}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Stopa konverzije ne može biti 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
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:2980
+#: erpnext/controllers/accounts_controller.py:2974
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"
@@ -12551,13 +12566,13 @@ msgstr "Korektivni"
msgid "Corrective Action"
msgstr "Korektivna Radnja"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Kartica za Korektivni Posao"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Korektivna Operacija"
@@ -12724,7 +12739,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12857,7 +12872,7 @@ msgstr "Centar Troškova {} je grupni centar troškova a grupni centri troškova
msgid "Cost Center: {0} does not exist"
msgstr "Centar Troškova: {0} ne postoji"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Troškovni Centri"
@@ -12900,17 +12915,13 @@ msgstr "Trošak Isporučenih Artikala"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Trošak Prodatih Proizvoda"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Račun Troškova Prodate Robe u Postavkama Artikla"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Trošak Izdatih Artikala"
@@ -12990,7 +13001,7 @@ msgstr "Nije moguće izbrisati demo podatke"
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:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
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"
@@ -13179,7 +13190,7 @@ msgstr "Kreiraj Fakture"
msgid "Create Item"
msgstr "Kreiraj Artikal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Kreiraj Radni Nalog"
@@ -13211,7 +13222,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Kreiraj Unose u Registar za Kusur"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Kreiraj vezu"
@@ -13278,7 +13289,7 @@ msgstr "Kreiraj Unos Plaćanja za Konsolidovane Kasa Fakture."
msgid "Create Payment Request"
msgstr "Kreiraj Zahtjev Plaćanja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Kreiraj Listu Odabira"
@@ -13423,7 +13434,7 @@ msgstr "Kreiraj Zadatak"
msgid "Create Tasks"
msgstr "Kreiraj Zadatke"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Kreiraj PDV Šablon"
@@ -13461,12 +13472,12 @@ msgstr "Kreiraj Korisničku Dozvolu"
msgid "Create Users"
msgstr "Kreiraj Korisnike"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Kreiraj Varijantu"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Kreiraj Varijante"
@@ -13497,12 +13508,12 @@ msgstr "Kreiraj novi unos na osnovu pravila"
msgid "Create a new rule to automatically classify transactions."
msgstr "Kreirajte novo pravilo za automatsku klasifikaciju transakcija."
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Kreiraj Varijantu sa slikom šablona."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Kreirajte dolaznu transakciju zaliha za artikal."
@@ -13536,7 +13547,7 @@ msgstr "Kreiraj {0} {1}?"
msgid "Created By Migration"
msgstr "Kreirano Migracijom"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Kreirano {0} tablica bodova za {1} između:"
@@ -13569,7 +13580,7 @@ msgstr "Kreiranje Otpremnice u toku..."
msgid "Creating Delivery Schedule..."
msgstr "Izrada Rasporeda Dostave..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Kreiranje Dimenzija u toku..."
@@ -13764,7 +13775,7 @@ msgstr "Kreditni Dani"
msgid "Credit Limit"
msgstr "Kreditno Ograničenje"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Kreditno Ograničenje je probijeno"
@@ -13774,12 +13785,6 @@ msgstr "Kreditno Ograničenje je probijeno"
msgid "Credit Limit Settings"
msgstr "Postavke Kreditnog Ograničenja"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Kreditno Ograničenje i Uslovi Plaćanja"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Kreditno Ograničenje:"
@@ -13811,7 +13816,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13839,7 +13844,7 @@ msgstr "Kreditna Faktura Izdata"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Kreditna Faktura će ažurirati svoj nepodmireni iznos, čak i ako je navedeno 'Povrat Naspram'."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Kreditna Faktura {0} je kreirana automatski"
@@ -13847,7 +13852,7 @@ msgstr "Kreditna Faktura {0} je kreirana automatski"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Kredit Za"
@@ -13856,20 +13861,20 @@ msgstr "Kredit Za"
msgid "Credit in Company Currency"
msgstr "Kredit u Valuti Poduzeća"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Kreditno ograničenje je premašeno za klijenta {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
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:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Kreditno Ograničenje je dostignuto za Klijenta {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr "Upozorenje o kreditnom ograničenju — slanje zahtjeva može biti blokirano: {0}"
@@ -13877,8 +13882,8 @@ msgstr "Upozorenje o kreditnom ograničenju — slanje zahtjeva može biti bloki
msgid "Creditor Turnover Ratio"
msgstr "Koeficijent Obrta Povjerilaca"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Povjerioci"
@@ -14048,7 +14053,7 @@ msgstr "Devizni Kurs mora biti primjenjiv za Nabavu ili Prodaju."
msgid "Currency and Price List"
msgstr "Valuta i Cijenovnik"
-#: erpnext/accounts/doctype/account/account.py:346
+#: 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"
@@ -14058,7 +14063,7 @@ msgstr "Filteri valuta trenutno nisu podržani u Prilagođenom Finansijskom Izvj
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Valuta za {0} mora biti {1}"
@@ -14141,8 +14146,8 @@ msgstr "Trenutna Faktura Poćetni Datum"
msgid "Current Level"
msgstr "Trenutni Nivo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Trenutne Obaveze"
@@ -14209,6 +14214,11 @@ msgstr "Trenutne Zalihe"
msgid "Current Valuation Rate"
msgstr "Trenutna Stopa Vrednovanja"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr "Trenutni nivo se zasniva na akumuliranim bodovima. Automatski se ažurira na svakoj fakturi."
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Krivulje"
@@ -14304,7 +14314,6 @@ msgstr "Prilagođeni Razdjelnici"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14411,7 +14420,6 @@ msgstr "Prilagođeni Razdjelnici"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14500,8 +14508,8 @@ msgstr "Adresa Klijenta"
msgid "Customer Addresses And Contacts"
msgstr "Adrese i Kontakti Klijenta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Predujam Klijenta"
@@ -14515,7 +14523,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14598,6 +14606,7 @@ msgstr "Povratne informacije Klijenta"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14620,7 +14629,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14637,6 +14646,7 @@ msgstr "Povratne informacije Klijenta"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14680,7 +14690,7 @@ msgstr "Artikal Klijenta"
msgid "Customer Items"
msgstr "Artikli Klijenta"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Lokalni Nabavni Nalog Klijenta"
@@ -14732,7 +14742,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14838,7 +14848,7 @@ msgstr "Klijent Dostavljen Artikal"
msgid "Customer Provided Item Cost"
msgstr "Trošak Klijent Dostavljenog Artikala "
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Podrška Klijenta"
@@ -14895,9 +14905,9 @@ 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:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Klijent {0} ne pripada projektu {1}"
@@ -15009,7 +15019,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Dnevni sažetak projekta za {0}"
@@ -15100,7 +15110,7 @@ msgstr "Datum rođenja ne može biti kasnije od današnjeg."
msgid "Date of Commencement"
msgstr "Datum Početka"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Datum Početka bi trebao biti kasnije od Datuma Osnivanja"
@@ -15326,7 +15336,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15354,13 +15364,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debit prema"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Debit prema je obavezan"
@@ -15488,8 +15498,7 @@ msgstr "Standard Račun"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15515,14 +15524,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Standard Račun za Predujam Plaćanje"
@@ -15537,19 +15546,19 @@ msgstr "Standard Raspon Starenja"
msgid "Default BOM"
msgstr "Standard Sastavnica"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
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"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Standard Sastavnica {0} nije pronađena"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Standard Sastavnica nije pronađena za Artikal Gotovog Proizvoda {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Standard Sastavnica nije pronađena za Artikal {0} i Projekat {1}"
@@ -15602,9 +15611,7 @@ msgid "Default Company"
msgstr "Standard Poduzeće"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Standard Bankovni Račun Poduzeća"
@@ -15720,6 +15727,16 @@ msgstr "Standard Artikal Grupa"
msgid "Default Item Manufacturer"
msgstr "Standard Proizvođač Artikla"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr "Standarno Zaglavlje (Dokument Tip)"
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr "Standard Zaglavlje (Izvještaj)"
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15755,23 +15772,19 @@ msgid "Default Payment Request Message"
msgstr "Standard poruka Zahtjeva za Plaćanje"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Standard Šablon Uslova Plaćanja"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15894,15 +15907,15 @@ msgstr "Standard Distrikt"
msgid "Default Unit of Measure"
msgstr "Standard Jedinica"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
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}'"
@@ -15954,7 +15967,7 @@ msgstr "Standard cjenovnik za nabavu ili prodaju ovog artikla"
msgid "Default settings for your stock-related transactions"
msgstr "Standard postavke za vaše transakcije vezane za zalihe"
-#: erpnext/setup/doctype/company/company.js:191
+#: 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."
@@ -16045,6 +16058,12 @@ msgstr "Definiraj Tip Projekta."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Definira datum nakon kojeg se artikal više ne može koristiti u transakcijama ili proizvodnji"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr "Definira kada dospijeva plaćanje (npr. 30 dana, 50% avansa). Automatski se primjenjuje na fakture za ovog klijenta."
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16127,12 +16146,12 @@ msgstr "Izriši Potencijalne Klijente i Adrese"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Izbriši Transakcije"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Izbrišite sve transakcije za ovo Poduzeće"
@@ -16153,8 +16172,8 @@ msgstr "Brisanje pravila..."
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Brisanje {0} u toku i svih povezanih dokumenata Zajedničkog Koda..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Brisanje u toku!"
@@ -16265,11 +16284,11 @@ msgstr "Dostavljena Količina"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Isporučena količina (u Jedinici Zaliha)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr "Dostavna količina se ne može povećati za više od {0} za artikal {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr "Dostavna količina ne može se smanjiti za više od {0} za artikal {1}"
@@ -16350,7 +16369,7 @@ msgstr "Upravitelj Dostave"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16410,11 +16429,11 @@ msgstr "Paket Artikal Dostavnice"
msgid "Delivery Note Trends"
msgstr "Trendovi Dostave"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Dostavnica {0} nije podnešena"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Dostavnice"
@@ -16500,10 +16519,6 @@ msgstr "Dostavno Skladište"
msgid "Delivery to"
msgstr "Dostava do"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Za artikle na zalihama potrebno je skladište za isporuku {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16623,8 +16638,8 @@ msgstr "Iznos Amortizacije"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16717,7 +16732,7 @@ msgstr "Opcije Amortizacije"
msgid "Depreciation Posting Date"
msgstr "Datum Knjiženja Amortizacije"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
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"
@@ -16875,15 +16890,15 @@ msgstr "Razlika (Dr - Cr)"
msgid "Difference Account"
msgstr "Račun Razlike"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Račun Razlike u Postavkama Artikla"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Razlika u računu mora biti tip računa Imovine/Obaveza (Privremeno Otvaranje), budući da je ovaj unos zaliha početni unos"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Račun razlike mora biti račun tipa Imovina/Obaveze, budući da je ovo usaglašavanje Zaliha Početni Unos"
@@ -16995,15 +17010,15 @@ msgstr "Dimenzije"
msgid "Direct Expense"
msgstr "Direktni Troškak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Direktni Troškovi"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Direktni Prihod"
@@ -17084,6 +17099,11 @@ msgstr "Onemogući zaokruženi Ukupni Iznos"
msgid "Disable Serial No And Batch Selector"
msgstr "Onemogući Serijski i Šaržni Odabirač"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr "Onemogući Zalihe Dostavljene ali ne Fakturisane u Povratu Prodaje"
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17120,11 +17140,11 @@ msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju."
msgid "Disabled items cannot be selected in any transaction."
msgstr "Onemogućeni artikli se ne mogu odabrati ni u jednoj transakciji."
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Onemogućena pravila određivanja cijena jer je ovo {} interni prijenos"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Cijene bez PDV budući da je ovo {} interni prijenos"
@@ -17140,7 +17160,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17148,15 +17168,15 @@ msgstr "Onemogućuje automatsko preuzimanje postojeće količine"
msgid "Disassemble"
msgstr "Rastavi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Nalog Rastavljanja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Količina rastavljenih dijelova ne može biti manja ili jednaka 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Količina rastavljenih dijelova ne može biti manja ili jednaka 0 ."
@@ -17443,7 +17463,7 @@ msgstr "Diskrecijski Razlog"
msgid "Dislikes"
msgstr "Ne sviđa mi se"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Otprema"
@@ -17524,7 +17544,7 @@ msgstr "Prikazano Ime"
msgid "Disposal Date"
msgstr "Datum Odlaganja"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Datum otuđenja {0} ne može biti prije {1} datuma {2} imovine."
@@ -17638,8 +17658,8 @@ msgstr "Naziv Raspodjele"
msgid "Distributor"
msgstr "Distributer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Isplaćene Dividende"
@@ -17701,7 +17721,7 @@ msgstr "Ne prikazuj nijedan simbol poput $ itd. pored valuta."
msgid "Do not update variants on save"
msgstr "Ne ažuriraj varijante prilikom spremanja"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Da li zaista želite vratiti ovu rashodovan imovinu?"
@@ -17725,7 +17745,7 @@ msgstr "Želite li obavijestiti sve Kliente putem e-pošte?"
msgid "Do you want to submit the material request"
msgstr "Želiš li podnijeti Materijalni Nalog"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Želiš li podnijeti unos zaliha?"
@@ -17792,11 +17812,11 @@ msgstr "Broj Dokumenta"
msgid "Document Type "
msgstr "Tip Dokumenta "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Tip dokumenta se već koristi kao dimenzija"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentacija"
@@ -17959,12 +17979,6 @@ msgstr "Kategorije Vozačke Dozvole"
msgid "Driving License Category"
msgstr "Kategorija Vozačke Dozvole"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Briši Procedure"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17985,12 +17999,6 @@ 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"
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Briše postojeće SQL procedure i postavke funkcija prema izvještaju o potraživanjima"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Datum Dospijeća ne može biti nakon {0}"
@@ -18149,8 +18157,8 @@ msgstr "Trajanje (dana)"
msgid "Duration in Days"
msgstr "Trajanje u Danima"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Carine Porezi i PDV"
@@ -18233,7 +18241,7 @@ msgstr "Sistem će napraviti unos u registar zaliha za svaku transakciju ovog ar
msgid "Each Transaction"
msgstr "Svaka Transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Najranije"
@@ -18347,6 +18355,10 @@ msgstr "Ciljana količina ili ciljni iznos su obavezni"
msgid "Either target qty or target amount is mandatory."
msgstr "Ciljana količina ili ciljni iznos su obavezni."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "Proteklo Vrijeme"
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18366,8 +18378,8 @@ msgstr "Električna energija"
msgid "Electricity down"
msgstr "Nestalo struje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronska Oprema"
@@ -18571,8 +18583,8 @@ msgstr "Predujam Personala"
msgid "Employee Advances"
msgstr "Predujam Personala"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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"
@@ -18655,7 +18667,7 @@ msgstr "Personal {0} već ima povezanog korisnika"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Personal {0} ne pripada {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "{0} trenutno radi na drugoj radnoj stanici. Dodijeli drugi personal."
@@ -18671,7 +18683,7 @@ msgstr "Personal"
msgid "Empty"
msgstr "Prazno"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Isprazni za brisanje liste"
@@ -18702,7 +18714,7 @@ msgstr "Omogući Zakazivanje Termina"
msgid "Enable Auto Email"
msgstr "Omogući Automatsku e-poštu"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Omogući Automatsku Ponovnu Naložbu"
@@ -18868,12 +18880,6 @@ msgstr "Omogući krajnji rok za kreiranje masovnih otpremnica"
msgid "Enable discount accounting for selling"
msgstr "Omogući Knjigovodstvo Prodajnog Popusta"
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr "Omogući direktnu isporuku – dobavljač isporučuje izravno klijentu bez prolaska kroz vaše skladište."
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19007,8 +19013,8 @@ msgstr "Datum završetka ne može biti prije datuma početka."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19107,8 +19113,8 @@ msgstr "Unesi Ručno"
msgid "Enter Serial Nos"
msgstr "Unesi Serijske Brojeve"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Unesi Vrijednost"
@@ -19133,7 +19139,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:1146
+#: erpnext/stock/doctype/item/item.js:1130
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."
@@ -19145,7 +19151,7 @@ msgstr "Unesi E-poštu Klijenta"
msgid "Enter customer's phone number"
msgstr "Unesi broj telefona Klijenta"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Unesi datum za rashodovanje Imovine"
@@ -19189,7 +19195,7 @@ 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:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Unesi početne jedinice zaliha."
@@ -19197,7 +19203,7 @@ msgstr "Unesi početne jedinice zaliha."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
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."
@@ -19209,8 +19215,8 @@ msgstr "Unesi {0} iznos."
msgid "Entertainment & Leisure"
msgstr "Zabava i Slobodno vrijeme"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Troškovi Zabave"
@@ -19234,8 +19240,8 @@ msgstr "Tip Unosa"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19296,7 +19302,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:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Greška prilikom ponovnog knjiženja vrijednosti artikla"
@@ -19308,7 +19314,7 @@ msgstr "Greška: Ova imovina već ima {0} periode amortizacije.\n"
"\t\t\t\t\tDatum `početka amortizacije` mora biti najmanje {1} perioda nakon datuma `dostupno za upotrebu`.\n"
"\t\t\t\t\tMolimo ispravite datume u skladu s tim."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Greška: {0} je obavezno polje"
@@ -19354,7 +19360,7 @@ msgstr "Ex Works"
msgid "Example URL"
msgstr "Primjer URL-a"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Primjer povezanog dokumenta: {0}"
@@ -19374,7 +19380,7 @@ msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije post
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr "Primjer: Ako je iznos transakcije 200, onda će se ovo izračunati kao {} = {}"
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}."
@@ -19384,7 +19390,7 @@ msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}."
msgid "Exception Budget Approver Role"
msgstr "Uloga Odobravatelja Izuzetka Proračuna"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "Prekomjerna Demontaža"
@@ -19392,7 +19398,7 @@ msgstr "Prekomjerna Demontaža"
msgid "Excess Materials Consumed"
msgstr "Višak Potrošenog Materijala"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Prenos Viška"
@@ -19423,17 +19429,17 @@ msgstr "Rezultat Deviznog Kursa"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Rezultat Deviznog Kursa"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Iznos Rezultata Deviznog Kursa je knjižen preko {0}"
@@ -19572,7 +19578,7 @@ msgstr "Izvršni Asistent"
msgid "Executive Search"
msgstr "Izvršno Pretraživanje"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Izuzete Zalihe"
@@ -19659,7 +19665,7 @@ msgstr "Očekivani Datum Zatvaranja"
msgid "Expected Delivery Date"
msgstr "Očekivani Datum Dostave"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Očekivani Datum Dostave trebao bi biti nakon datuma Prodajnog Naloga"
@@ -19743,7 +19749,7 @@ msgstr "Očekivana vrijednost nakon korisnog vijeka trajanja"
msgid "Expense"
msgstr "Troškovi"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
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'"
@@ -19821,23 +19827,23 @@ msgstr "Račun troškova je obavezan za artikal {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr "Trošak za ovaj artikal bit će priznat tokom nekoliko mjeseci. Npr: unaprijed plaćeno osiguranje ili godišnja licenca za softver"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Troškovi"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Troškovi uključeni u Procjenu Imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Troškovi uključeni u Procjenu"
@@ -19916,7 +19922,7 @@ msgstr "Eksterna Radna Istorija"
msgid "Extra Consumed Qty"
msgstr "Dodatno Potrošena Količina"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Dodatna Količina Radnog Naloga"
@@ -20053,7 +20059,7 @@ msgstr "Neuspješno postavljanje poduzeća"
msgid "Failed to setup defaults"
msgstr "Neuspješno postavljanje standard postavki"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Neuspješno postavljanje standard postavki za zemlju {0}. Kontaktiraj podršku."
@@ -20171,6 +20177,11 @@ msgstr "Preuzmi Vrijednost od"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Pruzmi Neastavljenu Sastavnicu (uključujući podsklopove)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr "Automatski se preuzima na prodajnim nalozima i fakturama za ovog klijenta."
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Preuzeto samo {0} dostupnih serijskih brojeva."
@@ -20208,21 +20219,29 @@ msgstr "Mapiranje Polja"
msgid "Field in Bank Transaction"
msgstr "Polje u Bankovnoj Transakciji"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "Konflikt Naziva Polja"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr "Naziv polja {0} već postoji u sljedećim tipovima dokumenata: {1}. Zasebno polje za dimenziju neće biti dodano ovim tipovima dokumenata. Knjigovodstveni unosi će koristiti vrijednost postojećeg polja kao vrijednost dimenzije."
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Polja će se kopirati samo u vrijeme kreiranja."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Datoteka ne pripada ovom zapisu o brisanju transakcije"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Datoteka nije pronađena"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Datoteka nije pronađena na serveru"
@@ -20430,9 +20449,9 @@ msgstr "Finansijska Godina počinje"
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) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Gotovo"
@@ -20489,15 +20508,15 @@ msgstr "Količina Artikla Gotovog Proizvoda"
msgid "Finished Good Item Quantity"
msgstr "Količina Artikla Gotovog Proizvoda"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Artikal Gotovog Proizvoda nije naveden za servisni artikal {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Količina Artikla Gotovog Proizvoda {0} ne može biti nula"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Artikal Gotovog Proizvoda {0} mora biti podizvođački artikal"
@@ -20543,7 +20562,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Gotov Proizvod"
@@ -20584,7 +20603,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:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Gotov Proizvod {0} ne odgovara Radnom Nalogu {1}"
@@ -20725,6 +20744,7 @@ msgstr "Fiksna Cijena"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Fiksna Imovina"
@@ -20743,7 +20763,7 @@ msgstr "Račun Fiksne Imovine"
msgid "Fixed Asset Defaults"
msgstr "Standard Postavke Fiksne Imovine"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Artikal Fiksne Imovine mora biti artikal koja nije na zalihama."
@@ -20762,8 +20782,8 @@ msgstr "Koeficijent Obrta Fiksne Imovine"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Osnovno Sredstvo {0} se ne može koristiti u Sastavnicama."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Fiksna Imovina"
@@ -20836,7 +20856,7 @@ msgstr "Prati Kalendarske Mjesece"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Sljedeći Materijalni Materijalni Nalozi su automatski zatraženi na osnovu nivoa ponovne narudžbine artikla"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Sljedeća polja su obavezna za kreiranje adrese:"
@@ -20893,7 +20913,7 @@ msgstr "Za Poduzeće"
msgid "For Item"
msgstr "Za Artikal"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Za Artikal {0} ne može se primiti više od {1} količine naspram {2} {3}"
@@ -20903,7 +20923,7 @@ msgid "For Job Card"
msgstr "Za Radnu Karticu"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Za Operaciju"
@@ -20924,17 +20944,13 @@ msgstr "Za Cijenovnik"
msgid "For Production"
msgstr "Za Proizvodnju"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Za Količinu (Proizvedena Količina) je obavezna"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Sirovine"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
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}"
@@ -20962,11 +20978,11 @@ msgstr "Za Skladište"
msgid "For Work Order"
msgstr "Za Radni Nalog"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Za Artikal {0}, količina mora biti negativan broj"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Za Artikal {0}, količina mora biti pozitivan broj"
@@ -21004,7 +21020,7 @@ msgstr "Za individualnog Dobavljača"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Za artikal {0} , samo {1} imovina je kreirana ili povezana s {2} . Kreiraj ili poveži još {3} imovine s odgovarajućim dokumentom."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
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}"
@@ -21018,7 +21034,7 @@ msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cijenu iz serijskog
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Za operaciju {0} u redu {1}, molimo dodajte sirovine ili postavite Sastavnicu naspram nje."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
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})"
@@ -21035,7 +21051,7 @@ msgstr "Za projekat - {0}, ažuriraj vaš status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Za projicirane i prognozirane količine, sistem će uzeti u obzir sva podređena skladišta unutar odabranog nadređenog skladišta."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}"
@@ -21044,12 +21060,12 @@ msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}
msgid "For reference"
msgstr "Za Referencu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Za red {0} u {1}. Da biste uključili {2} u cijenu artikla, redovi {3} također moraju biti uključeni"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Za red {0}: Unesi Planiranu Količinu"
@@ -21068,7 +21084,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/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Za artikal {0}, potrošena količina bi trebala biti {1} prema Sastavnici {2}."
@@ -21115,11 +21131,6 @@ msgstr "Prognoza"
msgid "Forecast Demand"
msgstr "Prognoza Potražnje"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Prognoza Količine"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21165,7 +21176,7 @@ msgstr "Forum Postovi"
msgid "Forum URL"
msgstr "URL Foruma"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe Škola"
@@ -21210,8 +21221,8 @@ msgstr "Besplatni artikal nije postavljen u pravilu cijene {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Zamrzni Zalihe starije od (dana)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Troškovi Transporta i Špedicije"
@@ -21645,8 +21656,8 @@ msgstr "Potpuno Plaćeno"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Namještaj i Oprema"
@@ -21663,13 +21674,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Dalji članovi se mogu kreirati 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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Referensa Buduće Isplate"
@@ -21677,7 +21688,7 @@ msgstr "Referensa Buduće Isplate"
msgid "Future Payments"
msgstr "Buduće Isplate"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Budući datum nije dozvoljen"
@@ -21762,9 +21773,9 @@ msgstr "Rezultat je već uknjižen"
msgid "Gain/Loss from Revaluation"
msgstr "Rezultat od Revalorizacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Rezultat pri Odlaganju Imovine"
@@ -21937,7 +21948,7 @@ msgstr "Preuzmi Stanje"
msgid "Get Current Stock"
msgstr "Preuzmi Trenutne Zalihe"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Preuzmi Detalje o Grupi Klijenta"
@@ -21995,7 +22006,7 @@ msgstr "Preuzmi Lokacije Artikla"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22034,7 +22045,7 @@ msgstr "Preuzmi Artikle iz Sastavnice"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Preuzmi Artikle iz Materijalnog Naloga naspram ovog Dobavljača"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Preuzmi Artikle iz Paketa Artikala"
@@ -22208,7 +22219,7 @@ msgstr "Ciljevi"
msgid "Goods"
msgstr "Proizvod"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Proizvod u Tranzitu"
@@ -22217,7 +22228,7 @@ msgstr "Proizvod u Tranzitu"
msgid "Goods Transferred"
msgstr "Proizvod je Prenesen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Proizvod je već primljen naspram unosa izlaza {0}"
@@ -22400,7 +22411,7 @@ msgstr "Ukupni iznos mora odgovarati zbiru referenci plaćanja"
msgid "Grant Commission"
msgstr "Odobri Proviziju"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Veće od Iznosa"
@@ -22843,7 +22854,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:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Ovdje su opcije za nastavak:"
@@ -22871,7 +22882,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:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Zdravo,"
@@ -23070,7 +23081,7 @@ msgstr "Kako formatirati i prikazati vrijednosti u finansijskom izvještaju (sam
msgid "Hrs"
msgstr "Sati"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Ljudski Resursi"
@@ -23239,6 +23250,12 @@ msgstr "Ako je označeno, iznos PDV-a će se smatrati već uključenim u Uplaće
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"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr "Ako je odbrano, ovaj artikal se tretira kao direktna dostava u Prodajnim Nalozima, Prodajnim Fakturama i Nalozima Nabave prema standard postavkama. Može se poništiti u svakom redu transakcije."
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Ako je označeno, kreirat ćemo demo podatke za vas da istražite sistem. Ovi demo podaci mogu se kasnije izbrisati."
@@ -23459,7 +23476,7 @@ msgstr "Ako se za artikl u cjenovniku postavljenom u transakciji ne pronađe cij
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Ako Pdv nije postavljen i Šablon Pdv i Naknada je odabran, sistem će automatski primijeniti Pdv iz odabranog šablona."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Ako ne, možete Otkazati / Podnijeti ovaj unos"
@@ -23485,13 +23502,18 @@ msgstr "Ako je pravilo usklađeno, onda:"
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'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr "Ako je postavljeno, knjigovodstveni unosi za ovog klijenta knjižiti će se na ove račune umjesto na standard račune tvrtke."
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "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:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
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."
@@ -23500,7 +23522,7 @@ msgstr "Ako Sastavnica rezultira otpadnim materijalom, potrebno je odabrati Skla
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Ako je račun zamrznut, unosi su dozvoljeni ograničenim korisnicima."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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."
@@ -23510,7 +23532,7 @@ 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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
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."
@@ -23587,7 +23609,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:1158
+#: erpnext/stock/doctype/item/item.js:1142
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."
@@ -23601,7 +23623,7 @@ msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberite
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Ako i dalje želite da nastavite, onemogući polje za potvrdu 'Preskoči Dostupne Artikle Podsklopa'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Ako i dalje želite da nastavite, omogući {0}."
@@ -23685,7 +23707,7 @@ msgstr "Zanemari dnevnike revalorizacije deviznog kursa i rezultata"
msgid "Ignore Existing Ordered Qty"
msgstr "Zanemari Postojeće Količine Prodajnog Naloga"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Zanemari Postojeću Planiranu Količinu"
@@ -23772,12 +23794,12 @@ msgstr "Zanemari preklapanje vremena Radne Stanice"
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"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
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}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Otpisi"
@@ -23935,7 +23957,7 @@ 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/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "U Količini"
@@ -24059,7 +24081,7 @@ 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:1191
+#: erpnext/stock/doctype/item/item.js:1175
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."
@@ -24290,8 +24312,8 @@ msgstr "Uključujući artikle za podsklopove"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24362,7 +24384,7 @@ msgstr "Dolazna Plaćanja"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24394,7 +24416,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:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu"
@@ -24402,7 +24424,7 @@ msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu"
msgid "Incorrect Company"
msgstr "Pogrešno Poduzeće"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Netačna Količina Komponenti"
@@ -24536,15 +24558,15 @@ msgstr "Označava da je paket dio ove dostave (samo nacrt)"
msgid "Indirect Expense"
msgstr "Indirektni Troškak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirektni Troškovi"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirektni Prihod"
@@ -24612,14 +24634,14 @@ msgstr "Pokrenut"
msgid "Inspected By"
msgstr "Inspektor"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspekcija Odbijena"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspekcija Obavezna"
@@ -24636,8 +24658,8 @@ msgstr "Inspekcija Obavezna prije Dostave"
msgid "Inspection Required before Purchase"
msgstr "Inspekcija Obavezna prije Nabave"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Podnošenje Kontrole"
@@ -24667,7 +24689,7 @@ msgstr "Napomena Instalacije"
msgid "Installation Note Item"
msgstr "Stavka Napomene Instalacije "
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Napomena Instalacije {0} je već poslana"
@@ -24706,11 +24728,11 @@ msgstr "Uputstvo"
msgid "Insufficient Capacity"
msgstr "Nedovoljan Kapacitet"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Nedovoljne Dozvole"
@@ -24718,13 +24740,12 @@ msgstr "Nedovoljne Dozvole"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Nedovoljne Zalihe"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Nedovoljne Zalihe za Šaržu"
@@ -24844,13 +24865,13 @@ msgstr "Referenca Prenosa Inter Poduzeća"
msgid "Interest"
msgstr "Kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Troškovi Kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Prihod od Kamata"
@@ -24858,8 +24879,8 @@ msgstr "Prihod od Kamata"
msgid "Interest and/or dunning fee"
msgstr "Kamata i/ili Naknada Opomene"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Kamata na Oročene Depozite"
@@ -24879,7 +24900,7 @@ msgstr "Interni"
msgid "Internal Customer Accounting"
msgstr "Knjigovodstvo Internog Klijenta"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Interni Klijent za {0} već postoji"
@@ -24887,7 +24908,7 @@ msgstr "Interni Klijent za {0} već postoji"
msgid "Internal Purchase Order"
msgstr "Interni Nabavni Nalog"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Nedostaje referenca za Internu Prodaju ili Dostavu."
@@ -24895,7 +24916,7 @@ msgstr "Nedostaje referenca za Internu Prodaju ili Dostavu."
msgid "Internal Sales Order"
msgstr "Interni Prodajni Nalog"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Nedostaje Interna Prodajna Referenca"
@@ -24926,7 +24947,7 @@ msgstr "Interni Dobavljač za {0} već postoji"
msgid "Internal Transfer"
msgstr "Interni Prijenos"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Nedostaje Referenca Internog Prijenosa"
@@ -24939,7 +24960,12 @@ msgstr "Interni Prenosi"
msgid "Internal Work History"
msgstr "Interna Radna Istorija"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr "Interne bilješke o ovom klijentu. Nisu vidljive u transakcijama ili na portalu."
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interni prenosi se mogu vršiti samo u standard valuti poduzeća"
@@ -24955,12 +24981,12 @@ msgstr "Interval bi trebao biti između 1 i 59 minuta"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Nevažeći Račun"
@@ -24981,7 +25007,7 @@ msgstr "Nevažeći Iznos"
msgid "Invalid Attribute"
msgstr "Nevažeći Atribut"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Nevažeći Datum Automatskog Ponavljanja"
@@ -24994,7 +25020,7 @@ msgstr "Nevažeći bankovni račun"
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Nevažeći Barkod. Nema artikla priloženog ovom barkodu."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Nevažeća narudžba za odabranog Klijenta i Artikal"
@@ -25010,21 +25036,21 @@ msgstr "Nevažeća Podređena Procedura"
msgid "Invalid Company Field"
msgstr "Nevažeće polje poduzeća"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Nevažeće poduzeće za transakcije među poduzećima."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Nevažeći Centar Troškova"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Nevažeća Klijent Grupa"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Nevažeći Datum Dostave"
@@ -25062,7 +25088,7 @@ msgstr "Nevažeća Grupa po"
msgid "Invalid Item"
msgstr "Nevažeći Artikal"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Nevažeće Standard Postavke Artikla"
@@ -25076,7 +25102,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Nevažeći Neto Nabavni Iznos"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Nevažeći Početni Unos"
@@ -25084,11 +25110,11 @@ msgstr "Nevažeći Početni Unos"
msgid "Invalid POS Invoices"
msgstr "Nevažeće Kasa Fakture"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Nevažeći Nadređeni Račun"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Nevažeći Broj Artikla"
@@ -25118,12 +25144,12 @@ msgstr "Nevažeća Konfiguracija Gubitka Procesa"
msgid "Invalid Purchase Invoice"
msgstr "Nevažeća Nabavna Faktura"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Nevažeća Količina"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Nevažeća Količina"
@@ -25148,12 +25174,12 @@ msgstr "Nevažeći Raspored"
msgid "Invalid Selling Price"
msgstr "Nevažeća Prodajna Cijena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Nevažeći Serijski i Šaržni Paket"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Nevažeće izvorno i ciljno skladište"
@@ -25178,7 +25204,7 @@ msgstr "Nevažeći iznos u knjigovodstvenim unosima {} {} za račun {}: {}"
msgid "Invalid condition expression"
msgstr "Nevažeći Izraz Uvjeta"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Nevažeći URL datoteke"
@@ -25190,7 +25216,7 @@ msgstr "Nevažeća formula filtera. Molimo provjerite sintaksu."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Nevažeći izgubljeni razlog {0}, kreiraj novi izgubljeni razlog"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Nevažeća serija imenovanja (. nedostaje) za {0}"
@@ -25216,8 +25242,8 @@ msgstr "Nevažeći upit pretrage"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Nevažeća vrijednost {0} za {1} naspram računa {2}"
@@ -25225,7 +25251,7 @@ msgstr "Nevažeća vrijednost {0} za {1} naspram računa {2}"
msgid "Invalid {0}"
msgstr "Nevažeći {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Nevažeći {0} za transakcije među poduzećima."
@@ -25235,7 +25261,7 @@ msgid "Invalid {0}: {1}"
msgstr "Nevažeći {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Zalihe"
@@ -25284,8 +25310,8 @@ msgstr "Procjena Zaliha"
msgid "Investment Banking"
msgstr "Investiciono Bankarstvo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investicije"
@@ -25335,7 +25361,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:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Ukupni Iznos Fakture"
@@ -25440,7 +25466,7 @@ msgstr "Faktura se ne može kreirati 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25461,7 +25487,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25557,8 +25583,7 @@ msgstr "Alternativa"
msgid "Is Billable"
msgstr "Fakturisati"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Faktura Kontakt"
@@ -26000,8 +26025,7 @@ msgstr "Šablon"
msgid "Is Transporter"
msgstr "Dobavljač"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Je Adresa Vašeg Poduzeća"
@@ -26107,8 +26131,8 @@ msgstr "Tip Slučaja"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Izdaj Zadužnicu sa 0 količinom na postojeću Prodajnu Fakturu"
+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."
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26138,11 +26162,11 @@ msgstr "Slučajevi"
msgid "Issuing Date"
msgstr "Datum Izdavanja"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Može potrajati i do nekoliko sati da tačne vrijednosti zaliha budu vidljive nakon spajanja artikala."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Potreban je za preuzimanje Detalja Artikla."
@@ -26266,7 +26290,7 @@ msgstr "Kurzivni tekst za međuzbirove ili napomene"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26514,7 +26538,7 @@ msgstr "Artikal Korpe"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26576,7 +26600,7 @@ msgstr "Artikal Korpe"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26775,13 +26799,13 @@ msgstr "Detalji Artikla"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26998,7 +27022,7 @@ msgstr "Proizvođač Artikla"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27038,10 +27062,10 @@ msgstr "Proizvođač Artikla"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27082,10 +27106,6 @@ msgstr "Artikal nije na Zalihi"
msgid "Item Price"
msgstr "Cijena Artikla"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Cijena Artikla dodana za {0} u Cjenovniku {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27101,19 +27121,20 @@ msgstr "Postavke Cijene Artikla"
msgid "Item Price Stock"
msgstr "Cijena Artikla na Zalihama"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Cijena Artikla je dodana za {0} u Cijenovnik {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr "Cijena 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."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr "Cijena Artikla stvorena po stopi {0}"
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}"
@@ -27300,11 +27321,11 @@ msgstr "Detalji Varijante Artikla"
msgid "Item Variant Settings"
msgstr "Postavke Varijante Artikla"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Varijanta Artikla {0} već postoji sa istim atributima"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Varijante Artikla Ažurirane"
@@ -27405,11 +27426,11 @@ msgstr "Artikal i Skladište"
msgid "Item and Warranty Details"
msgstr "Detalji Artikla i Garancija"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
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:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Artikal ima Varijante."
@@ -27435,11 +27456,7 @@ msgstr "Naziv Artikla"
msgid "Item operation"
msgstr "Artikal Operacija"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Količina artikla se ne može ažurirati jer su sirovine već obrađene."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
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}"
@@ -27458,11 +27475,11 @@ 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:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Varijanta Artikla {0} postoji sa istim atributima"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr "Artikal s nazivom {0} nije pronađena u Nalogu Nabave"
@@ -27479,7 +27496,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikal {0} se nemože naručiti više od {1} u odnosu na Ugovorni Nalog {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Artikal {0} ne postoji"
@@ -27491,7 +27508,7 @@ msgstr "Artikal {0} ne postoji u sistemu ili je istekao"
msgid "Item {0} does not exist."
msgstr "Artikal {0} ne postoji."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Artikal {0} unesen više puta."
@@ -27503,15 +27520,15 @@ msgstr "Artikal {0} je već vraćen"
msgid "Item {0} has been disabled"
msgstr "Artikal {0} je onemogućen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Artikal {0} nema serijski broj. Samo serijski artikli mogu imati dostavu na osnovu serijskog broja"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Artikal {0} je dosego kraj svog vijeka trajanja {1}"
@@ -27523,15 +27540,15 @@ msgstr "Artikal {0} zanemaren jer nije artikal na zalihama"
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:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Artikal {0} je otkazan"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Artikal {0} je onemogućen"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr "Artikal {0} nije artikl za direktno slanje. Samo artikli za direktno slanje mogu imati ažuriranu dostavnu količinu."
@@ -27539,7 +27556,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:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Artikal {0} nije artikal na zalihama"
@@ -27547,11 +27564,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:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr "Artikal {0} nije šablon artikal."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka"
@@ -27567,7 +27584,7 @@ msgstr "Artikal {0} mora biti artikal koji nije na zalihama"
msgid "Item {0} must be a non-stock item"
msgstr "Artikal {0} mora biti artikal koji nije na zalihama"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Artikal {0} nije pronađen u tabeli 'Dostavljene Sirovine' u {1} {2}"
@@ -27575,7 +27592,7 @@ 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:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
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)."
@@ -27583,7 +27600,7 @@ msgstr "Artikal {0}: Količina Naloga {1} ne može biti manja od minimalne koli
msgid "Item {0}: {1} qty produced. "
msgstr "Artikal {0}: {1} količina proizvedena. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Atikal {} ne postoji."
@@ -27629,7 +27646,7 @@ msgstr "Prodajni Registar po Artiklu"
msgid "Item-wise sales Register"
msgstr "Registar Prodaje po Artiklima"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Šablona Artikla."
@@ -27653,7 +27670,7 @@ msgstr "Katalog Artikala"
msgid "Items Filter"
msgstr "Filter Artikala"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Artikli Obavezni"
@@ -27677,11 +27694,11 @@ msgstr "Nabavni Artikli"
msgid "Items and Pricing"
msgstr "Artikli & Cijene"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
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."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
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}."
@@ -27693,7 +27710,7 @@ msgstr "Artikli Materijalnog Naloga Sirovina"
msgid "Items not found."
msgstr "Artikli nisu pronađeni."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
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}"
@@ -27703,7 +27720,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/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
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."
@@ -27768,9 +27785,9 @@ msgstr "Radni Kapacitet"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27832,7 +27849,7 @@ msgstr "Zapisnik Vremana Radne Kartice"
msgid "Job Card and Capacity Planning"
msgstr "Radne Kartice i Planiranje Kapaciteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Radne Kartice {0} je završen"
@@ -27908,7 +27925,7 @@ msgstr "Naziv Podizvođača"
msgid "Job Worker Warehouse"
msgstr "Skladište Podizvođača"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Radna Kartica {0} kreirana"
@@ -28128,7 +28145,7 @@ msgstr "Kilovat"
msgid "Kilowatt-Hour"
msgstr "Kilovat-Sat"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Otkaži Unose Proizvodnje naspram Radnog Naloga {0}."
@@ -28256,7 +28273,7 @@ msgstr "Poslednji Datum Završetka"
msgid "Last Fiscal Year"
msgstr "Prošla Fiskalna Godina"
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {}. Ova operacija nije dozvoljena dok se sistem aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja."
@@ -28338,7 +28355,7 @@ msgstr "Datum posljednje kontrole Co2 ne može biti datum u budućnosti"
msgid "Last transacted"
msgstr "Zadnja Transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Najnovije"
@@ -28588,12 +28605,12 @@ msgstr "Starija Polja"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Pravno Lice / Podružnica sa posebnim Kontnim Planom koji pripada Poduzeću."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Pravni Troškovi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legenda"
@@ -28604,7 +28621,7 @@ msgstr "Legenda"
msgid "Length (cm)"
msgstr "Dužina (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Manje od Iznosa"
@@ -28663,7 +28680,7 @@ msgstr "Broj Vozačke Dozvole"
msgid "License Plate"
msgstr "Registarski Broj"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Prekoračeno Ograničenje"
@@ -28724,7 +28741,7 @@ msgstr "Veza za Materijalne Naloge"
msgid "Link with Customer"
msgstr "Veza sa Klijentom"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Veza sa Dobavljačem"
@@ -28745,12 +28762,12 @@ msgstr "Povezane Fakture"
msgid "Linked Location"
msgstr "Povezana Lokacija"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Povezano sa podnešenim dokumentima"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Povezivanje nije uspjelo"
@@ -28758,7 +28775,7 @@ msgstr "Povezivanje nije uspjelo"
msgid "Linking to Customer Failed. Please try again."
msgstr "Povezivanje s klijentom nije uspjelo. Molimo pokušajte ponovo."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Povezivanje sa dobavljačem nije uspjelo. Molimo pokušajte ponovo."
@@ -28816,8 +28833,8 @@ msgstr "Datum Početka Kredita"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Datum Početka Kredita i Period Kredita su obavezni za spremanje Popusta na Fakturi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Krediti (Obaveze)"
@@ -28862,8 +28879,8 @@ msgstr "Zabilježi prodajnu i nabavnu cijenu artikla"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Dugoročne Rezerve"
@@ -29064,6 +29081,11 @@ msgstr "Nivo Programa Lojalnosti"
msgid "Loyalty Program Type"
msgstr "Tip Programa Loojalnosti"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr "Program lojalnosti u okviru kojeg ovaj kljent zarađuje bodove. Automatski se dodjeljuje ako postoji odgovarajući program."
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29107,10 +29129,10 @@ msgstr "Mašina Neispravna"
msgid "Machine operator errors"
msgstr "Greške Operatera Mašine"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Standard Centar Troškova"
@@ -29353,9 +29375,9 @@ msgstr "Glavni/Izborni Predmeti"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Marka"
@@ -29375,7 +29397,7 @@ msgstr "Kreiraj Unos Amortizacije"
msgid "Make Difference Entry"
msgstr "Kreiraj Unos Razlike"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Napravi Vrijeme Isporuke"
@@ -29413,12 +29435,12 @@ msgstr "Napravi Prodajnu Fakturu"
msgid "Make Serial No / Batch from Work Order"
msgstr "Napravi Serijski Broj / Šaržu iz Radnog Naloga"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Napravi Unos Zaliha"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Napravi Podizvođački Nabavni Nalog"
@@ -29434,11 +29456,11 @@ msgstr "Pozovi"
msgid "Make project from a template."
msgstr "Napravi Projekt iz Šablona."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Napravi {0} Varijantu"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Napravi {0} Varijante"
@@ -29446,8 +29468,8 @@ msgstr "Napravi {0} Varijante"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Kreiranje Naloga Knjiženja naspram računa predujma: {0} se ne preporučuje. Ovi Nalozi Knjiženja neće biti dostupni za Usaglašavanje."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Upravljaj"
@@ -29466,7 +29488,7 @@ msgstr "Upravljajte provizijama prodajnih partnera i prodajnog tima"
msgid "Manage your orders"
msgstr "Upravljaj Nalozima"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Uprava"
@@ -29482,7 +29504,7 @@ msgstr "Generalni Direktor"
msgid "Mandatory Accounting Dimension"
msgstr "Obavezna Knjigovodstvena Dimenzija"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Obavezno Polje"
@@ -29581,8 +29603,8 @@ msgstr "Ručni unos se ne može kreirati! Onemogući automatski unos za odgođen
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29661,7 +29683,7 @@ msgstr "Proizvođač"
msgid "Manufacturer Part Number"
msgstr "Broj Artikla Proizvođača"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Broj Artikla Proizvođača {0} je nevažeći"
@@ -29686,7 +29708,7 @@ msgstr "Proizvođači koji se koriste u Artiklima"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29731,10 +29753,6 @@ msgstr "Datum Proizvodnje"
msgid "Manufacturing Manager"
msgstr "Upravitelj Proizvodnje"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Proizvodna Količina je obavezna"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29901,6 +29919,12 @@ msgstr "Bračno Stanje"
msgid "Mark As Closed"
msgstr "Označi kao Zatvoreno"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr "Odaberi ako ovaj klijent predstavlja interno poduzeće. Omogućuje transakcije između poduzeća."
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29915,12 +29939,12 @@ msgstr "Označi kao Zatvoreno"
msgid "Market Segment"
msgstr "Tržišni Segment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Marketinški Troškovi"
@@ -29999,7 +30023,7 @@ msgstr "Pravila Usklađivanja"
msgid "Material"
msgstr "Materijal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Potrošnja Materijala"
@@ -30007,7 +30031,7 @@ msgstr "Potrošnja Materijala"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Potrošnja Materijala za Proizvodnju"
@@ -30088,7 +30112,7 @@ msgstr "Priznanica Materijala"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30185,11 +30209,11 @@ msgstr "Artikal Plana Materijalnog Zahtjeva"
msgid "Material Request Type"
msgstr "Tip Materijalnog Naloga"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Zahtjev za materijal je već kreiran za naručenu količinu"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Materijalni Nalog nije kreiran, jer je količina Sirovine već dostupna."
@@ -30257,7 +30281,7 @@ msgstr "Materijal vraćen iz Posla u Toku"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30323,12 +30347,12 @@ msgstr "Materijal Dobavljaču"
msgid "Materials To Be Transferred"
msgstr "Materijali koji će se Prenijeti"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Materijali su već primljeni naspram {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Materijale je potrebno prebaciti u Skladište u Toku za Radnu Karticu {0}"
@@ -30399,9 +30423,9 @@ msgstr "Makimalni Rezultat"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Maksimalni dozvoljeni popust za artikal: {0} je {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30433,11 +30457,11 @@ msgstr "Maksimalni Iznos Uplate"
msgid "Maximum Producible Items"
msgstr "Maksimalni broj Proizvodnih Artikala"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maksimalni broj Uzoraka - {0} može se zadržati za Šaržu {1} i Artikal {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maksimalni broj Uzoraka - {0} su već zadržani za Šaržu {1} i Artikal {2} u Šarži {3}."
@@ -30498,15 +30522,10 @@ msgstr "Megadžul"
msgid "Megawatt"
msgstr "Megavat"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Navedi Stopu Vrednovanja u Postavkama Artikla."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Navedite ako Račun Potraživanja nije standard"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30556,7 +30575,7 @@ msgstr "Spoji s Postojećim Računom"
msgid "Merged"
msgstr "Spojeno"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Spajanje je moguće samo ako su sljedeća svojstva ista u oba zapisa. Grupa, Tip Klase, Poduzeće i Valuta Računa"
@@ -30586,7 +30605,7 @@ msgstr "Poruka će biti poslana korisnicima da preuzme njihov status u Projektu"
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Poruke duže od 160 karaktera bit će podijeljene na više poruka"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "Poruke Kampanje Prodajne Podrške"
@@ -30787,7 +30806,7 @@ msgstr "Minimalni Količina ne može biti veći od Maksimalnog Količine"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimalna Količina bi trebao biti veći od Povratne Količina"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Min. Vrijednost: {0}, Maks. Vrijednost: {1}, u stopama od: {2}"
@@ -30876,8 +30895,8 @@ msgstr "Minuta"
msgid "Miscellaneous"
msgstr "Razno"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Razni Troškovi"
@@ -30885,15 +30904,15 @@ msgstr "Razni Troškovi"
msgid "Mismatch"
msgstr "Neusklađeno"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Nedostaje"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Nedostaje Račun"
@@ -30923,7 +30942,7 @@ msgstr "Nedostajući Filteri"
msgid "Missing Finance Book"
msgstr "Nedostaje Finansijski Registar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Nedostaje Gotov Proizvod"
@@ -30931,7 +30950,7 @@ msgstr "Nedostaje Gotov Proizvod"
msgid "Missing Formula"
msgstr "Nedostaje Formula"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Nedostaje Artikal"
@@ -30968,7 +30987,7 @@ msgid "Missing required filter: {0}"
msgstr "Nedostaje obavezni filter: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Nedostaje vrijednost"
@@ -31217,11 +31236,11 @@ msgstr "Više Računa"
msgid "Multiple Accounts (Journal Template)"
msgstr "Više Računa (Šablon Naloga Knjiženja)"
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Višestruki Programi Lojalnosti pronađeni za Klijenta {}. Odaberi ručno."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Višestruki Unos Otvaranja Kase"
@@ -31243,11 +31262,11 @@ msgstr "Više Varijanti"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Dostupno je više polja poduzeća: {0}. Molimo odaberite ručno."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Za datum {0} postoji više fiskalnih godina. Molimo postavite poduzeće u Fiskalnoj Godini"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Više artikala se ne mogu označiti kao gotov proizvod"
@@ -31256,7 +31275,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:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31343,7 +31362,7 @@ msgstr "Opcije Imenovanja Serije"
msgid "Naming Series updated"
msgstr "Serija Imenovanja ažurirana"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Imenovanje serije '{0}' za DocType '{1}' ne sadrži standardni separator '.' ili '{{'. Koristi se rezervna ekstrakcija."
@@ -31387,7 +31406,7 @@ msgstr "Treba Analiza"
msgid "Negative Batch Report"
msgstr "Izvještaj Negativne Šarže"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negativna Količina nije dozvoljena"
@@ -31396,7 +31415,7 @@ msgstr "Negativna Količina nije dozvoljena"
msgid "Negative Stock Error"
msgstr "Greška Negativne Zalihe"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negativna Stopa Vrednovanja nije dozvoljena"
@@ -31702,7 +31721,7 @@ msgstr "Neto Težina"
msgid "Net Weight UOM"
msgstr "Jedinica Neto Težine"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Ukupni neto gubitak preciznosti proračuna"
@@ -31879,7 +31898,7 @@ msgstr "Nov Naziv Skladišta"
msgid "New Workplace"
msgstr "Novi Radni Prostor"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kreditno ograničenje mora biti najmanje {0}"
@@ -31933,7 +31952,7 @@ msgstr "Sljedeća e-pošta će biti poslana:"
msgid "No Account Data row found"
msgstr "Nije pronađen red Podaci Računa "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Nijedan Račun ne odgovara ovim filterima: {}"
@@ -31946,7 +31965,7 @@ msgstr "Bez Akcije"
msgid "No Answer"
msgstr "Bez Odgovora"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
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}"
@@ -31959,7 +31978,7 @@ msgstr "Nisu pronađeni Klijenti sa odabranim opcijama."
msgid "No Delivery Note selected for Customer {}"
msgstr "Nije odabrana Dostavnica za Klijenta {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Nema DocTypes na listi za brisanje. Molimo vas da generišete ili uvezete listu prije podnošenja."
@@ -31975,7 +31994,7 @@ msgstr "Nema Artikla sa Barkodom {0}"
msgid "No Item with Serial No {0}"
msgstr "Nema Artikla sa Serijskim Brojem {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Nema odabranih artikala za prijenos."
@@ -32010,7 +32029,7 @@ msgstr "Nije pronađen Kasa profil. Kreiraj novi Kasa Profil"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Bez Dozvole"
@@ -32039,19 +32058,19 @@ msgstr "Trenutno nema Dostupnih Zaliha"
msgid "No Summary"
msgstr "Nema Sažetak"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Nije pronađen Dobavljač za Transakcije Inter Poduzeća koji predstavlja {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Nisu pronađeni podaci o PDV-u po odbitku za trenutni datum knjiženja."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Nije postavljen račun Odbitka PDV-a za {0} u Kategoriji Odbitka PDV-a {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Nema Uslova"
@@ -32081,7 +32100,7 @@ msgstr "Nema konfiguriranih računa"
msgid "No accounts found."
msgstr "Nije pronađen nijedan račun."
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Nije pronađena aktivna Sastavnica za artikal {0}. Ne može se osigurati isporuka na osnovu serijskog broja"
@@ -32275,7 +32294,7 @@ msgstr "Broj Radnih Stanica"
msgid "No open Material Requests found for the given criteria."
msgstr "Nisu pronađeni otvoreni materijalni nalozi za date kriterije."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Nije pronađen Početni Unos Kase za Kasa Profil {0}."
@@ -32299,7 +32318,7 @@ msgstr "Nijedna neplaćena faktura ne zahtijeva revalorizaciju kursa"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Nema neplaćenih {0} pronađenih za {1} {2} koji ispunjavaju filtre koje ste naveli."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
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."
@@ -32370,7 +32389,7 @@ msgstr "Još nisu postavljena pravila"
msgid "No stock available for this batch."
msgstr "Nema dostupnih zaliha za ovu šaržu."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
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."
@@ -32403,7 +32422,7 @@ msgstr "Bez Vrijednosti"
msgid "No vouchers found for this transaction"
msgstr "Nisu pronađeni verifikati za ovu transakciju"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Nije pronađen {0} za transakcije među poduzećima."
@@ -32448,8 +32467,8 @@ msgstr "Neprofitna"
msgid "Non stock items"
msgstr "Artikli za koje se nevode Zalihe"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Dugoročne Obveze"
@@ -32550,7 +32569,7 @@ msgstr "Nije moguće pronaći najraniju Fiskalnu Godinu za dato poduzeće."
msgid "Not allow to set alternative item for the item {0}"
msgstr "Nije dozvoljeno postavljanje alternativnog artikla za artikal {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: 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}"
@@ -32604,7 +32623,7 @@ msgstr "Napomena: Ako želite koristiti gotov proizvod {0} kao sirovinu, označi
msgid "Note: Item {0} added multiple times"
msgstr "Napomena: Artikal {0} je dodan više puta"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
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"
@@ -32612,7 +32631,7 @@ msgstr "Napomena: Unos plaćanja neće biti kreiran jer 'Gotovina ili Bankovni R
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:695
+#: erpnext/stock/doctype/item/item.py:694
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}"
@@ -32795,6 +32814,11 @@ msgstr "Broj novog Računa, biće uključen u naziv računa kao prefiks"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Broj novog Centra Troškova, biće uključen u naziv Centra Troškova kao prefiks"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr "Brojevi koje ovaj klijent koristi za identifikaciju vašeg poduzeća u svom sistemu."
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32854,18 +32878,18 @@ msgstr "Kilometraža (Posljednja)"
msgid "Offer Date"
msgstr "Datum Ponude"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Uredska Oprema"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Troškovi Održavanja Ureda"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Iznajmljivanje Ureda"
@@ -32993,7 +33017,7 @@ msgstr "Uvođenje u Zalihe!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Nakon postavljanja, ova faktura će biti na čekanju do postavljenog datuma"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Nakon što je Radni Nalog Yatvoren. Ne može se ponovo otvoriti."
@@ -33033,7 +33057,7 @@ msgstr "Podržani su samo 'Unosi Plaćanja' naspram ovog predujam računa."
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Za uvoz podataka mogu se koristiti samo CSV i Excel datoteke. Provjeri format datoteke koji pokušavate učitati"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Dozvoljene su samo CSV datoteke"
@@ -33052,7 +33076,7 @@ msgstr "Odbij porez samo na višak Iznosa"
msgid "Only Include Allocated Payments"
msgstr "Uzmi u obzir samo Dodijeljena Plaćanja"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Jedino Nadređeni može biti tipa {0}"
@@ -33089,7 +33113,7 @@ msgstr "Samo jedan od Uplate ili Isplate ne treba biti nula prilikom primjene Is
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'."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
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}"
@@ -33307,8 +33331,8 @@ msgstr "Početno Stanje = Početak Perioda, Završno Stanje = Kraj Perioda, Prom
msgid "Opening Balance Details"
msgstr "Detalji Početnog Stanja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Početno Stanje Kapitala"
@@ -33331,7 +33355,7 @@ msgstr "Datum Otvaranja"
msgid "Opening Entry"
msgstr "Početni Unos"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Početni Unos ne može se kreirati nakon kreiranja Verifikata Zatvaranje Perioda."
@@ -33364,7 +33388,7 @@ msgid "Opening Invoice Tool"
msgstr "Alat Početne Fakture"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}. '{1}' račun je potreban za postavljanje ovih vrijednosti. Postavi je u: {2}. Ili, '{3}' se može omogućiti da se ne objavljuje nikakvo podešavanje zaokruživanja."
@@ -33400,16 +33424,16 @@ msgstr "Početne Fakture Prodaje su kreirane."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Početna Zaliha"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr "Unos početnih zaliha stvoren s nultom stopom vrednovanja: {0}"
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr "Početni Unos Zalha stvoren: {0}"
@@ -33427,12 +33451,15 @@ msgstr "Početna Vrijednosti"
msgid "Opening and Closing"
msgstr "Otvaranje & Zatvaranje"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Kreiranje Početnih Zaliha je stavljeno u red čekanja i bit će kreirano u pozadini.Provjeri unos 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
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Operativna komponenta"
@@ -33464,7 +33491,7 @@ msgstr "Operativni Trošak (Valuta Poduzeća)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Operativni trošak po količini Sastavnice"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Operativni Trošak prema Radnom Nalogu / Sastavnici"
@@ -33507,15 +33534,15 @@ msgstr "Opis Operacije"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Operacija"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Operacija"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33540,7 +33567,7 @@ msgstr "Broj Reda Operacije"
msgid "Operation Time"
msgstr "Operativno Vrijeme"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Vrijeme Operacije mora biti veće od 0 za operaciju {0}"
@@ -33555,11 +33582,11 @@ msgstr "Operacija je okončana za koliko gotove robe?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Vrijeme Operacije ne ovisi o količini za proizvodnju"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operacija {0} dodata je više puta u radni nalog {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Operacija {0} ne pripada radnom nalogu {1}"
@@ -33575,9 +33602,9 @@ msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33750,7 +33777,7 @@ msgstr "Prilika {0} je kreirana"
msgid "Optimize Route"
msgstr "Optimiziraj Rutu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "Opcionalno. Odaberi određeni unos proizvodnje za poništavanje."
@@ -33900,7 +33927,7 @@ msgstr "Naručena Količina"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Nalozi"
@@ -34016,7 +34043,7 @@ 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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Odlazna Količina"
@@ -34054,7 +34081,7 @@ msgstr "Van Garancije"
msgid "Out of stock"
msgstr "Nema u Zalihana"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Zastarjeli Unos Otvaranja Kase"
@@ -34073,6 +34100,7 @@ msgstr "Odlazno Plaćanje"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Odlazna Cijena"
@@ -34108,7 +34136,7 @@ msgstr "Nepodmireno (Valuta Tvrtke)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34118,7 +34146,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34178,17 +34206,22 @@ msgstr "Dozvoljeni Iznos Prekoračenje Fakturisanja za Artikal Nabavnog Računa
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Dozvola za prekomjernu Dostavu/Primanje (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr "Dozvoljeno Prekoračenje Naloga (%)"
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Dozvola za prekomjernu Odabir"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Preko Dostavnice"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekmjerni Prijema/Dostava {0} {1} zanemareno za artikal {2} jer imate {3} ulogu."
@@ -34208,11 +34241,11 @@ msgstr "Dozvola za prekomjerni Prenos (%)"
msgid "Over Withheld"
msgstr "Preko Odbitka"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekomjerno Fakturisanje {0} {1} zanemareno za artikal {2} jer imate {3} ulogu."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Prekomjerno Fakturisanje {} zanemareno jer imate {} ulogu."
@@ -34512,7 +34545,7 @@ msgstr "Selektor Kasa Artikala"
msgid "POS Opening Entry"
msgstr "Otvaranje Kase"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
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."
@@ -34533,7 +34566,7 @@ msgstr "Detalji Početnog Unosa Kase"
msgid "POS Opening Entry Exists"
msgstr "Unos Otvaranje Kase Postoji"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Početni Unos Kase Nedostaje"
@@ -34569,7 +34602,7 @@ msgstr "Način Plaćanja Kase"
msgid "POS Profile"
msgstr "Kasa Profil"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Kasa Profil - {0} ima više otvorenih Unosa Otvaranje Kase. Zatvori ili otkaži postojeće unose prije nego što nastavite."
@@ -34587,11 +34620,11 @@ msgstr "Korisnik Kasa Profila"
msgid "POS Profile doesn't match {}"
msgstr "Kasa Profil ne poklapa se s {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Kasa profil je obavezan za označavanje ove fakture kao Kasa transakcije."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Kasa Profil je obavezan za unos u Kasu"
@@ -34697,7 +34730,7 @@ msgstr "Upakovani Artikal"
msgid "Packed Items"
msgstr "Upakovani Artikli"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Upakovani Artikli se ne mogu interno prenositi"
@@ -34734,7 +34767,7 @@ msgstr "Otpremnica"
msgid "Packing Slip Item"
msgstr "Artikal Otpremnice"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Otpremnica otkazana"
@@ -34775,7 +34808,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34841,7 +34874,7 @@ msgid "Paid To Account Type"
msgstr "Plaćeno na Tip Računa"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Uplaćeni iznos + iznos otpisa ne može biti veći od ukupnog iznosa"
@@ -34935,7 +34968,7 @@ msgstr "Nadređena Šarža"
msgid "Parent Company"
msgstr "Matično Poduzeće"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Matično Poduzeće mora biti poduzeće grupe"
@@ -35062,7 +35095,7 @@ msgstr "Djelomično Usklađivanje"
msgid "Partial Material Transferred"
msgstr "Djelomični Prenesen Materijal"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Djelomično plaćanje u Kasa Transakcijama nije dozvoljeno."
@@ -35275,7 +35308,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35302,7 +35335,7 @@ msgstr "Stranka"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Račun Stranke"
@@ -35335,7 +35368,7 @@ msgstr "Broj računa Stranke."
msgid "Party Account No. (Bank Statement)"
msgstr "Broj Računa Stranke (Izvod iz Banke)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Valuta Računa Stranke {0} ({1}) i valuta dokumenta ({2}) trebaju biti iste"
@@ -35487,7 +35520,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35596,7 +35629,7 @@ msgstr "Prošli Događaji"
msgid "Pause"
msgstr "Pauza"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Pauziraj Posao"
@@ -35647,7 +35680,7 @@ msgid "Payable"
msgstr "Obaveze"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35681,7 +35714,7 @@ msgstr "Postavke Platitelja"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35828,7 +35861,7 @@ msgstr "Unos plaćanja je izmijenjen nakon što ste ga povukli. Molim te povuci
msgid "Payment Entry is already created"
msgstr "Unos plaćanja je već kreiran"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
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."
@@ -36053,7 +36086,7 @@ msgstr "Reference Uplate"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36118,7 +36151,7 @@ msgstr "Zahtjevi Plaćanja stvoren iz Prodajne / Nabavne Fakture bit će eksplic
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36147,7 +36180,7 @@ msgstr "Rasporedi Plaćanja"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36203,6 +36236,7 @@ msgstr "Status Uslova Plaćanja Prodajnog Naloga"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36217,6 +36251,7 @@ msgstr "Status Uslova Plaćanja Prodajnog Naloga"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36274,7 +36309,7 @@ msgstr "Platni portal {0} nije uspio kreirati sesiju plaćanja"
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Načini plaćanja su obavezni. Postavi barem jedan način plaćanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Načini plaćanja su osvježeni. Molimo vas da ih pregledate prije nego što nastavite."
@@ -36349,8 +36384,8 @@ msgstr "Plaćanja ažurirana."
msgid "Payroll Entry"
msgstr "Unos Plaća"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Isplata Plaća"
@@ -36397,10 +36432,14 @@ msgstr "Aktivnosti na Čekanju"
msgid "Pending Amount"
msgstr "Iznos na Čekanju"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36409,9 +36448,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Količina na Čekanju"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr "Količina na čekanju ne može biti veća od {0}"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr "Količina na čekanju ne može biti manja od 0"
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36441,6 +36489,14 @@ msgstr "Današnje Aktivnosti na Čekanju"
msgid "Pending processing"
msgstr "Obrada na Čekanju"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr "Količina na čekanju ne može biti veća od tražene količine."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr "Količina na čekanju ne može biti negativna."
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Penzioni Fondovi"
@@ -36551,7 +36607,7 @@ msgstr "Analiza Percepcije"
msgid "Period Based On"
msgstr "Period na Osnovu"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Period Zatvoren"
@@ -37115,8 +37171,8 @@ msgstr "Nadzorna Tabla Postrojenja"
msgid "Plant Floor"
msgstr "Proizvodna Površina"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Postrojenja i Mašinerije"
@@ -37152,7 +37208,7 @@ msgstr "Postavi Prioritet"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Podstavi Grupu Dobavljača u Postavkama Nabave."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Navedi Račun"
@@ -37200,7 +37256,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/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Dodaj Račun Matičnom Poduzeću - {}"
@@ -37208,7 +37264,7 @@ msgstr "Dodaj Račun Matičnom Poduzeću - {}"
msgid "Please add {1} role to user {0}."
msgstr "Dodaj {1} ulogu korisniku {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Podesi količinu ili uredi {0} da nastavite."
@@ -37216,7 +37272,7 @@ 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:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Poništi i Izmijeni Unos Plaćanja"
@@ -37250,7 +37306,7 @@ msgstr "Odaberi ili s operacijama ili operativnim troškovima zasnovanim na Goto
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste kreirali Paket Serijskih i Šaržnih brojeva za artikal."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
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."
@@ -37275,11 +37331,15 @@ msgstr "Klikni na 'Generiraj Raspored' da preuzmeš serijski broj dodan za Artik
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Klikni na 'Generiraj Raspored' da generišeš raspored"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr "Molimo vas da prvo završite posao prije unosa količine na čekanju"
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr "Konfiguriraj račune za pravilo bankovnog unosa."
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
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}"
@@ -37287,11 +37347,11 @@ msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da produžite kreditna og
msgid "Please contact any of the following users to {} this transaction."
msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da {} ovu transakciju."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Konvertiraj nadređeni račun u odgovarajućoj podređenojm poduzeću u grupni račun."
@@ -37303,11 +37363,11 @@ msgstr "Kreiraj Klijenta od Potencijalnog Klijenta {0}."
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“."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: 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."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave"
@@ -37315,11 +37375,11 @@ msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave"
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Kreiraj Nabavni Račun ili Nabavnu Fakturu za artikal {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Izbriši Artikal Paket {0}, prije spajanja {1} u {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Privremeno onemogući tok rada za Nalog Knjiženja {0}"
@@ -37327,7 +37387,7 @@ 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:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Ne Kreiraj više od 500 artikala odjednom"
@@ -37351,7 +37411,7 @@ msgstr "Omogući samo ako razumijete efekte omogućavanja."
msgid "Please enable {0} in the {1}."
msgstr "Omogući {0} u {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Omogući {} u {} da dozvolite isti artikal u više redova"
@@ -37363,20 +37423,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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Potvrdi je li {} račun račun Bilansa Stanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Potvrdi da je {} račun {} račun Potraživanja."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
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}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Unesi Račun za Kusur"
@@ -37384,15 +37444,15 @@ msgstr "Unesi Račun za Kusur"
msgid "Please enter Approving Role or Approving User"
msgstr "Unesi Odobravajuća Uloga ili Odobravajućeg Korisnika"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Molimo unesite broj Šarže"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Unesi Centar Troškova"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Unesi Datum Dostave"
@@ -37400,7 +37460,7 @@ msgstr "Unesi Datum Dostave"
msgid "Please enter Employee Id of this sales person"
msgstr "Unesi Personal Id ovog Prodavača"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Unesi Račun Troškova"
@@ -37409,7 +37469,7 @@ msgstr "Unesi Račun Troškova"
msgid "Please enter Item Code to get Batch Number"
msgstr "Unesi Kod Artikla da preuzmete Broj Šarže"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Unesi Kod Artikla da preuzmete Broj Šarže"
@@ -37425,7 +37485,7 @@ msgstr "Unesi Detalje Održavanju"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Unesi Planiranu Količinu za artikal {0} za red {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Unesi Artikal Proizvodnje"
@@ -37445,7 +37505,7 @@ msgstr "Unesi Referentni Datum"
msgid "Please enter Root Type for account- {0}"
msgstr "Unesi Kontnu Klasu za račun- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Molimo unesite Serijski broj"
@@ -37462,7 +37522,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Unesi Skladište i Datum"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Unesi Otpisni Račun"
@@ -37482,7 +37542,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:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Unesi Standard Valutu u Postavkama Poduzeća"
@@ -37510,7 +37570,7 @@ msgstr "Unesi Datum Otpusta."
msgid "Please enter serial nos"
msgstr "Unesi Serijski Broj"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Unesi Naziv Poduzeća za potvrdu"
@@ -37578,11 +37638,11 @@ msgstr "Provjerite da gore navedeni personal podneseni izvještaju drugom aktivn
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."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Da li zaista želiš izbrisati sve transakcije za ovo poduzeće. Vaši glavni podaci će ostati onakvi kakvi jesu. Ova radnja se ne može poništiti."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Navedi 'Jedinicu Težine' zajedno s Težinom."
@@ -37641,7 +37701,7 @@ msgstr "Odaberi Tip Šablona za preuzimanje šablona"
msgid "Please select Apply Discount On"
msgstr "Odaberi Primijeni Popust na"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Odaberi Sastavnicu naspram Artikla {0}"
@@ -37657,7 +37717,7 @@ msgstr "Odaberi Bankovni Račun"
msgid "Please select Category first"
msgstr "Odaberi Kategoriju"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37687,7 +37747,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:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Odaberi Postojeće Poduzeće za izradu Kontnog Plana"
@@ -37696,8 +37756,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:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Odaberi Kod Artikla"
@@ -37729,11 +37789,11 @@ msgstr "Odaberi Datum Knjiženja"
msgid "Please select Price List"
msgstr "Odaberi Cjenovnik"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Odaberi Količina naspram Artikla {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Odaberi Skladište za Zadržavanje Uzoraka u Postavkama Zaliha"
@@ -37749,7 +37809,7 @@ 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/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Odaberi Račun Nerealiziranog Rezultata ili postavi Standard Račun Nerealiziranog Rezultata za {0}"
@@ -37766,7 +37826,7 @@ msgstr "Odaberi Poduzeće"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Odaberi Poduzeće."
@@ -37790,7 +37850,7 @@ msgstr "Odaberi Dobavljača"
msgid "Please select a Warehouse"
msgstr "Odaberi Skladište"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Odaberi Radni Nalog."
@@ -37863,11 +37923,15 @@ msgstr "Odaberi Vrijednost za {0} Ponuda za {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Odaberite kod artikla prije postavljanja skladišta."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr "Molimo odaberite 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."
msgstr "Odaberi barem jedan filter: Šifra Artikla, Šarža ili Serijski Broj."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr "Molimo odaberite barem jedan artikal za ažuriranje isporučene količine."
@@ -37887,7 +37951,7 @@ msgstr "Odaberi barem jedan raspored."
msgid "Please select atleast one item to continue"
msgstr "Odaberi jedan artikal za nastavak"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Odaberi barem jednu operaciju za kreiranje kartice posla"
@@ -37945,7 +38009,7 @@ msgstr "Odaberi Poduzeće"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Odaberi Tip Višeslojnog Programa za više od jednog pravila prikupljanja."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Prvo odaberi skladište"
@@ -37974,7 +38038,7 @@ msgstr "Odaberi važeći tip dokumenta."
msgid "Please select weekly off day"
msgstr "Odaberi sedmične neradne dane"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Odaberi {0}"
@@ -37983,11 +38047,11 @@ msgstr "Odaberi {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Postavi 'Primijeni Dodatni Popust Na'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Postavi 'Centar Troškova Amortizacije Imovine' u {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Postavi 'Račun Rezultata Prilikom Odlaganja Imovine' u {0}"
@@ -37999,7 +38063,7 @@ msgstr "Postavi '{0}' u: {1}"
msgid "Please set Account"
msgstr "Postavi Račun"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Postavi Račun za Kusur"
@@ -38029,7 +38093,7 @@ msgstr "Postavi Poduzeće"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Postavi Adresu Klijenta kako biste utvrdili da li je transakcija izvoz."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Postavi račune koji se odnose na Amortizaciju u Kategoriji Imovine {0} ili Poduzeća {1}"
@@ -38047,7 +38111,7 @@ msgstr "Postavi Fiskalni Kod za Klijenta '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Postavi Fiskalni Kod za Javnu Upravu '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Postavi Račun Osnovne Imovine u Kategoriju Imovine {0}"
@@ -38093,7 +38157,7 @@ msgstr "Postavi Poduzeće"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amortizacije za {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Postavi standard Listu Praznika za {0}"
@@ -38130,23 +38194,23 @@ msgstr "Postavi barem jedan red u Tabeli PDV-a i Naknada"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Postavi i Porezni i Fiskalni broj za {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Načine Plaćanja {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Postavi Standard Račun Rezultata u {}"
@@ -38175,7 +38239,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:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Postavi jedno od sljedećeg:"
@@ -38183,7 +38247,7 @@ msgstr "Postavi jedno od sljedećeg:"
msgid "Please set opening number of booked depreciations"
msgstr "Postavi početni broj knjižene amortizacije"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Postavi ponavljanje nakon spremanja"
@@ -38195,15 +38259,15 @@ msgstr "Postavi Adresu Klienta"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Postavi Standard Centar Troškova u {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Postavi Kod Artikla"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Postavi Ciljno Skladište na Radnoj Kartici"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Postavi Skladište Obade na Radnoj Kartici"
@@ -38242,7 +38306,7 @@ msgstr "Postavi {0} u Konstruktoru Sastavnice {1}"
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:594
+#: erpnext/controllers/accounts_controller.py:595
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}."
@@ -38264,7 +38328,7 @@ msgstr "Navedi Poduzeće"
msgid "Please specify Company to proceed"
msgstr "Navedi Poduzeće da nastavite"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Navedi važeći ID reda za red {0} u tabeli {1}"
@@ -38277,7 +38341,7 @@ msgstr "Navedi {0}."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Navedi barem jedan atribut u tabeli Atributa"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje"
@@ -38382,8 +38446,8 @@ msgstr "Postavi Niz Rute"
msgid "Post Title Key"
msgstr "Postavi Naziv Ključa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Poštanski Troškovi"
@@ -38448,7 +38512,7 @@ msgstr "Objavljeno"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38466,7 +38530,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38588,10 +38652,6 @@ msgstr "Datuma Knjiženja"
msgid "Posting Time"
msgstr "Vrijeme Knjiženja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Datum i vrijeme knjiženja su obavezni"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr "Datum knjiženja ne odgovara odabranoj transakciji"
@@ -38665,18 +38725,23 @@ msgstr "Pokreće {0}"
msgid "Pre Sales"
msgstr "Pretprodaja"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr "Upozorenje prije podnošenja"
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr "Upozorenje prije podnošenja: Kreditno Ograničenje"
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr "Upozorenje prije podnošenja: Pakirana Količina"
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr "Unaprijed popunjeni unosi plaćanja za ovog klijenta. Mora biti račun poduzeća."
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Prednost"
@@ -38849,6 +38914,7 @@ msgstr "Tabele Popusta Cijena"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38872,6 +38938,7 @@ msgstr "Tabele Popusta Cijena"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38923,7 +38990,7 @@ msgstr "Cijenovnik Zemlje"
msgid "Price List Currency"
msgstr "Valuta Cijenovnika"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Valuta Cijenovnika nije odabrana"
@@ -39278,7 +39345,7 @@ msgstr "Ispiši"
msgid "Print Receipt on Order Complete"
msgstr "Ispiši Račun pri dovršenju Naloga"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Ispiši Jedinicu nakon Količine"
@@ -39287,8 +39354,8 @@ msgstr "Ispiši Jedinicu nakon Količine"
msgid "Print Without Amount"
msgstr "Ispiši bez Iznosa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Štampa i Kancelarijski Materijal"
@@ -39296,7 +39363,7 @@ msgstr "Štampa i Kancelarijski Materijal"
msgid "Print settings updated in respective print format"
msgstr "Postavke Ispisivanja su ažurirane u odgovarajućem formatu ispisa"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Ispiši PDV sa nultim iznosom"
@@ -39399,10 +39466,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Procedura"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Procedure su obrisane"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39456,7 +39519,7 @@ msgstr "Procentualni Gubitka Procesa ne može biti veći od 100"
msgid "Process Loss Qty"
msgstr "Količinski Gubitak Procesa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Količinski Gubitak Procesa"
@@ -39537,6 +39600,10 @@ msgstr "Obradi Pretplatu"
msgid "Process in Single Transaction"
msgstr "Obrada u Jednoj Transakciji"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr "Količina gubitaka u procesu ne može biti negativna."
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39632,8 +39699,8 @@ msgstr "Proizvod"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39698,7 +39765,7 @@ msgstr "ID Cijene Proizvoda"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Proizvodnja"
@@ -39912,7 +39979,7 @@ msgstr "% napretka za zadatak ne može biti veći od 100."
msgid "Progress (%)"
msgstr "Napredak (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Poziv na Projektnu Saradnju"
@@ -39956,7 +40023,7 @@ msgstr "Status Projekta"
msgid "Project Summary"
msgstr "Sažetak Projekta"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Sažetak Projekta za {0}"
@@ -40087,7 +40154,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40233,7 +40300,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Prospekti Angažovani, ali ne i Preobraćeni"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Zaštićeni DocType"
@@ -40248,7 +40315,7 @@ msgstr "Navedi adresu e-špšte registrovanu u Poduzeću"
msgid "Providing"
msgstr "Odredbe"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Privremeni Račun"
@@ -40320,8 +40387,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40644,7 +40712,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:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Nabavni Nalozi"
@@ -40659,7 +40727,7 @@ msgstr "Broj Nabavnih Naloga"
msgid "Purchase Orders Items Overdue"
msgstr "Nabavni Nalozi Kasne"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
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}."
@@ -40674,7 +40742,7 @@ msgstr "Nabavni Nalozi za Fakturisanje"
msgid "Purchase Orders to Receive"
msgstr "Nabavni Nalozi za Prijem"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Nabavni Nalozi {0} nisu povezani"
@@ -40808,7 +40876,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Šablon Nabavnog PDV-a"
@@ -40906,6 +40974,7 @@ msgstr "Nabava"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40915,10 +40984,6 @@ msgstr "Nabava"
msgid "Purpose"
msgstr "Namjena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Namjena mora biti jedna od {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40974,6 +41039,7 @@ msgstr "K4"
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41022,6 +41088,7 @@ msgstr "K4"
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41130,11 +41197,11 @@ msgstr "Količina po Jedinici"
msgid "Qty To Manufacture"
msgstr "Količina za Proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
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:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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}."
@@ -41185,8 +41252,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:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Količina za {0}"
@@ -41241,8 +41308,8 @@ msgstr "Količina za Demontažu"
msgid "Qty to Fetch"
msgstr "Količina za Preuzeti"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Količina za Proizvodnju"
@@ -41478,17 +41545,17 @@ msgstr "Šablon Inspekciju Kvaliteta"
msgid "Quality Inspection Template Name"
msgstr "Naziv Šablona Kontrole Kvaliteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
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/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Kontrola kvalitete {0} nije podnesena za artikal: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Kontrola kvalitete {0} je odbijena za artikal: {1}"
@@ -41502,7 +41569,7 @@ msgstr "Kontrola Kvaliteta"
msgid "Quality Inspections"
msgstr "Kontrola Kvalitete"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Upravljanje Kvalitetom"
@@ -41634,7 +41701,7 @@ msgstr "Količine su uspješno ažurirane."
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41769,7 +41836,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:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Količina ne smije biti veća od {0}"
@@ -41779,21 +41846,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Obavezna Količina za Artikal {0} u redu {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Količina bi trebala biti veća od 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Količina za Proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Količina za Proizvodnju mora biti veća od 0."
@@ -41816,7 +41883,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Četvrtina {0} {1}"
@@ -41935,11 +42002,11 @@ msgstr "Ponuda Za"
msgid "Quotation Trends"
msgstr "Trendovi Ponuda"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Ponuda {0} je otkazana"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Ponuda {0} nije tipa {1}"
@@ -42246,7 +42313,7 @@ msgstr "Stopa po kojoj se Valuta Dobavljača pretvara u osnovnu valutu poduzeća
msgid "Rate at which this tax is applied"
msgstr "PDV Stopa"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Cijena artikala '{}' ne može se promijeniti"
@@ -42412,7 +42479,7 @@ msgstr "Potrošene Sirovine"
msgid "Raw Materials Consumption"
msgstr "Potrošnja Sirovina"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Nedostaju Sirovine"
@@ -42451,12 +42518,6 @@ msgstr "Polje za Sirovine ne može biti prazno."
msgid "Raw Materials to Customer"
msgstr "Sirovine za Klijenta"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Sirovi SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42465,7 +42526,7 @@ msgstr "Količina utrošenih sirovina bit će validirana na osnovu potrebne koli
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42646,7 +42707,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:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43107,7 +43168,7 @@ msgstr "Referenca #"
msgid "Reference #{0} dated {1}"
msgstr "Referenca #{0} datirana {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Referentni Datum za popust pri ranijem plaćanju"
@@ -43271,11 +43332,11 @@ msgstr "Referenca: {0}, Artikal Kod: {1} i Klijent: {2}"
msgid "References"
msgstr "Reference"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Reference na Prodajne Fakture su Nepotpune"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Reference na Prodajne Naloge su Nepotpune"
@@ -43437,7 +43498,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Preostalo Stanje"
@@ -43495,7 +43556,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43559,7 +43620,7 @@ msgstr "Preimenuj Vrijednost Atributa u Atributu Artikla."
msgid "Rename Log"
msgstr "Preimenuj Zapisnik"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Preimenovanje Nije Dozvoljeno"
@@ -43576,7 +43637,7 @@ msgstr "Poslovi preimenovanja za {0} su stavljeni u red."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Poslovi preimenovanja za {0} nisu stavljeni u red."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Preimenovanje je dozvoljeno samo preko nadređenog poduzeća {0}, kako bi se izbjegla neusklađenost."
@@ -43700,7 +43761,7 @@ msgstr "Šablon Izvještaja"
msgid "Report Type is mandatory"
msgstr "Tip Izvještaja je obavezan"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Prijavi Slučaj"
@@ -43945,7 +44006,7 @@ msgstr "Zahtjev za Informacijama"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44126,7 +44187,7 @@ msgstr "Zahteva Ispunjenje"
msgid "Research"
msgstr "Istraživanja"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Istraživanje & Razvoj"
@@ -44171,7 +44232,7 @@ msgstr "Rezervacija"
msgid "Reservation Based On"
msgstr "Rezervacija Na Osnovu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44215,7 +44276,7 @@ msgstr "Rezerviši za Podsklop"
msgid "Reserved"
msgstr "Rezervisano"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Konflikt Rezervirane Šarže"
@@ -44285,14 +44346,14 @@ msgstr "Rezervisana Količina"
msgid "Reserved Quantity for Production"
msgstr "Rezervisana Količina za Proizvodnju"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44301,13 +44362,13 @@ msgstr "Rezervisani Serijski Broj"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Rezervisane Zalihe za Šaržu"
@@ -44573,7 +44634,7 @@ msgstr "Polje Naziva Rezultata"
msgid "Resume"
msgstr "Nastavi"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Nastavi Posao"
@@ -44598,8 +44659,8 @@ msgstr "Maloprodaja"
msgid "Retain Sample"
msgstr "Zadrži Uzorak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Zadržana Dobit"
@@ -44674,7 +44735,7 @@ msgstr "Povrat naspram Nabavnog Računa"
msgid "Return Against Subcontracting Receipt"
msgstr "Povrat naspram Podizvođačkog Računa "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Povrat Komponenti"
@@ -44710,7 +44771,7 @@ msgstr "Povratna Količina iz Odbijenog Skladišta"
msgid "Return Raw Material to Customer"
msgstr "Vrati Sirovinu Klijentu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Povratna faktura za otkazanu imovinu"
@@ -44808,8 +44869,8 @@ msgstr "Povrati"
msgid "Revaluation Journals"
msgstr "Revaloracijski Žurnali"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Revalorizacioni Višak"
@@ -45041,7 +45102,7 @@ msgstr "Kontna Klasa za {0} mora biti jedna od imovine, obaveza, prihoda, rashod
msgid "Root Type is mandatory"
msgstr "Kontna Klasa je obavezna"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root se ne može uređivati."
@@ -45060,8 +45121,8 @@ msgstr "Zaoktuži Besplatnu Kolićinu"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45241,21 +45302,21 @@ msgstr "Red # {0}: Cijena ne može biti veća od cijene korištene u {1} {2}"
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:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Red #1: ID Sekvence mora biti 1 za Operaciju {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Red #{0} (Tabela Plaćanja): Iznos mora da je negativan"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
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:582
+#: erpnext/stock/doctype/item/item.py:581
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}."
@@ -45276,7 +45337,7 @@ msgstr "Red #{0}: Prihvaćeno Skladište i Odbijeno Skladište ne mogu biti isto
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Red #{0}: Prihvaćeno Skladište je obavezno za Prihvaćeni Artikal {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Red #{0}: Račun {1} ne pripada {2}"
@@ -45337,31 +45398,31 @@ msgstr "Red #{0}: Ne može se otkazati ovaj Unos Zaliha jer vraćena količina n
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."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koja je već fakturisana."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koji je već dostavljen"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koji je već preuzet"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} kojem je dodijeljen radni nalog."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Red #{0}: Ne može se izbrisati artikal {1} koja je već u ovom Prodajnom Nalogu."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
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}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Red #{0}: Ne može se prenijeti više od potrebne količine {1} za artikal {2} naspram Radne Kartice {3}"
@@ -45411,11 +45472,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
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:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
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."
@@ -45423,7 +45484,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
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}."
@@ -45440,7 +45501,7 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nije u Radnom Nalogu {2}"
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Red #{0}: Datumi se preklapaju s drugim redom u grupi {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Red #{0}: Standard Sastavnica nije pronađena za gotov proizvod artikla {1}"
@@ -45464,22 +45525,22 @@ msgstr "Red #{0}: Račun Troškova nije postavljen za artikal {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Red #{0}: Račun troškova {1} nije važeći za Nabavnu Fakturu {2}. Dozvoljeni su samo računi troškova za artikle koji nisu na zalihama."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Red #{0}: Količina gotovog proizvoda artikla ne može biti nula"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Red #{0}: Gotov Proizvod artikla nije navedena zaservisni artikal {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Red #{0}: Gotov Proizvod Artikla {1} mora biti podizvođačkiartikal"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Red #{0}: Gotov Proizvod mora biti {1}"
@@ -45508,7 +45569,7 @@ msgstr "Red #{0}: Učestalost amortizacije mora biti veća od nule"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Red #{0}: Od datuma ne može biti prije Do datuma"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Red #{0}: Polja Od i Do su obavezna"
@@ -45516,7 +45577,7 @@ msgstr "Red #{0}: Polja Od i Do su obavezna"
msgid "Row #{0}: Item added"
msgstr "Red #{0}: Artikel je dodan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Red #{0}: Artikal {1} se ne može prenijeti više od {2} u odnosu na {3} {4}"
@@ -45544,7 +45605,7 @@ msgstr "Red #{0}: Artikal {1} u skladištu {2}: Dostupno {3}, Potrebno {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Red #{0}: Artikal {1} nije Klijent Dostavljen Artikal."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Red #{0}: Artikal {1} nije Serijalizirani/Šaržirani Artikal. Ne može imati Serijski Broj / Broj Šarže naspram sebe."
@@ -45585,7 +45646,7 @@ msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma dostup
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma nabave"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
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"
@@ -45597,10 +45658,6 @@ msgstr "Red #{0}: Samo {1} je dostupno za rezervisanje za artikal {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja ili jednaka {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Red #{0}: Operacija {1} nije završena za {2} količinu gotovog proizvoda u Radnom Nalogu {3}. Ažuriraj status rada putem Radne Kartice {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45622,11 +45679,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:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Red #{0}: Postavite količinu za ponovnu narudžbu"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
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"
@@ -45648,15 +45705,15 @@ msgstr "Red #{0}: Količina mora biti pozitivan broj"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Red #{0}: Količina bi trebala biti manja ili jednaka Dostupnoj Količini za Rezervaciju (stvarna količina - rezervisana količina) {1} za artikal {2} naspram Šarže {3} u Skladištu {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Red #{0}: Kontrola Kvaliteta je obavezna za artikal {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Red #{0}: Kontrola Kvaliteta {1} nije dostavljena za artikal: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Red #{0}: Kontrola Kvaliteta {1} je odbijena za artikal {2}"
@@ -45664,7 +45721,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za artikal {1} ne može biti nula."
@@ -45680,18 +45737,18 @@ msgstr "Red #{0}: Količina treba biti veća od 0 za {1} Artikal {2}"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti veća od 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Red #{0}: Cijena mora biti ista kao {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Nabavni Nalog, Nabavna Faktura ili Nalog Knjiženja"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Prodajni Nalog, Prodajna Faktura, Nalog Knjiženja ili Opomena"
@@ -45733,7 +45790,7 @@ msgstr "Red #{0}: Prodajna cijena za artikal {1} je niža od njegove {2}.\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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
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}."
@@ -45753,19 +45810,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
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:639
+#: erpnext/controllers/accounts_controller.py:640
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:633
+#: erpnext/controllers/accounts_controller.py:634
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"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Red #{0}: Postavi Dobavljača za artikal {1}"
@@ -45777,19 +45834,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
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:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Red #{0}: Izvorno i ciljno skladište ne mogu biti isto za prijenos materijala"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Red #{0}: Izvor, Ciljno Skladište i Dimenzije Zaliha ne mogu biti potpuno iste za Prijenos Materijala"
@@ -45805,6 +45862,10 @@ 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:485
+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"
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Red #{0}: Zaliha se ne može rezervisati za artikal {1} naspram onemogućene Šarže {2}."
@@ -45821,7 +45882,7 @@ msgstr "Red #{0}: Zalihe se ne mogu rezervisati u grupnom skladištu {1}."
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:598
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}."
@@ -45834,7 +45895,7 @@ msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} naspram Š
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:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
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}"
@@ -45846,7 +45907,7 @@ msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Red #{0}: Šarža {1} je već istekla."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
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}"
@@ -45882,7 +45943,7 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju z
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Red #{0}: Odaberi Imovinu za Artikal {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Red #{0}: {1} ne može biti negativan za artikal {2}"
@@ -45898,7 +45959,7 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje Početne Fakture {2}"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Red #{0}: {1} od {2} bi trebao biti {3}. Ažuriraj {1} ili odaberi drugi račun."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za artikal {1} ne može biti nula."
@@ -45999,7 +46060,7 @@ msgstr "Red #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Red #{}: {} {} ne postoji."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Red #{}: {} {} ne pripada {}. Odaberi važeći {}."
@@ -46007,7 +46068,7 @@ msgstr "Red #{}: {} {} ne pripada {}. Odaberi važeći {}."
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}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}"
@@ -46015,7 +46076,7 @@ msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Red {0} odabrana količina je manja od potrebne količine, potrebno je dodatno {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Red {0}# Artikal {1} nije pronađen u tabeli 'Isporučene Sirovine' u {2} {3}"
@@ -46047,11 +46108,11 @@ msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak nepodmirenom i
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Red {0}: Sastavnica nije pronađena za Artikal {1}"
@@ -46069,7 +46130,7 @@ msgstr "Red {0}: Potrošena Količina {1} {2} mora biti manja ili jednaka dostup
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Red {0}: Faktor konverzije je obavezan"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Red {0}: Centar Troškova {1} ne pripada {2}"
@@ -46089,7 +46150,7 @@ msgstr "Red {0}: Valuta Sastavnice #{1} bi trebala biti jednaka odabranoj valuti
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Red {0}: Unos debita ne može se povezati sa {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Red {0}: Skladište za Dostavu ({1}) i Skladište za Klijente ({2}) ne mogu biti isto"
@@ -46097,7 +46158,7 @@ msgstr "Red {0}: Skladište za Dostavu ({1}) i Skladište za Klijente ({2}) ne m
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Red {0}: Skladište isporuke ne može biti isto kao skladište klijenta za artikal {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Red {0}: Datum roka plaćanja u tabeli Uslovi Plaćanja ne može biti prije datuma knjiženja"
@@ -46142,16 +46203,16 @@ msgstr "Red {0}: Za Dobavljača {1}, adresa e-pošte je obavezna za slanje e-po
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Red {0}: Od vremena i do vremena je obavezano."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Red {0}: Od vremena i do vremena {1} se preklapa sa {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Iz skladišta je obavezano za interne prijenose"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Red {0}: Od vremena mora biti prije do vremena"
@@ -46167,7 +46228,7 @@ msgstr "Red {0}: Nevažeća referenca {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Red {0}: Šablon PDV-a za Artikal ažuriran je prema valjanosti i primijenjenoj cijeni"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
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"
@@ -46191,7 +46252,7 @@ msgstr "Red {0}: Količina Artikla {1} ne može biti veća od raspoložive koli
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}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Red {0}: Pakovana Količina mora biti jednaka {1} Količini."
@@ -46259,7 +46320,7 @@ msgstr "Red {0}: Nabavna Faktura {1} nema utjecaja na zalihe."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Red {0}: Količina u Jedinici Zaliha ne može biti nula."
@@ -46271,10 +46332,6 @@ msgstr "Red {0}: Količina mora biti veća od 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Red {0}: Količina ne može biti negativna."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Red {0}: Količina nije dostupna za {4} u skladištu {1} u vrijeme knjiženja unosa ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}"
@@ -46283,11 +46340,11 @@ msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Red {0}: Smjena se ne može promijeniti jer je amortizacija već obrađena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Red {0}: Podizvođački Artikal je obavezan za sirovinu {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Ciljno Skladište je obavezno za interne transfere"
@@ -46299,11 +46356,11 @@ msgstr "Red {0}: Zadatak {1} ne pripada Projektu {2}"
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Red {0}: Artikal {1}, količina mora biti pozitivan broj"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Red {0}: {3} Račun {1} ne pripada {2}"
@@ -46311,11 +46368,11 @@ msgstr "Red {0}: {3} Račun {1} ne pripada {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Red {0}: Za postavljanje {1} periodičnosti, razlika između od i do datuma mora biti veća ili jednaka {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Red {0}: Prenesena količina ne može biti veća od tražene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Red {0}: Jedinični Faktor Konverzije je obavezan"
@@ -46328,11 +46385,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Red {0}: Skladište {1} je povezano sa {2}. Molimo odaberite skladište koje pripada {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
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}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
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}"
@@ -46344,7 +46401,7 @@ msgstr "Red {0}: {1} račun je već primijenjen za Knjigovodstvenu Dimenziju {2}
msgid "Row {0}: {1} must be greater than 0"
msgstr "Red {0}: {1} mora biti veći od 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun Stranke) {4}"
@@ -46390,7 +46447,7 @@ msgstr "Redovi uklonjeni u {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Redovi sa unosom istog računa će se spojiti u Registru"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Pronađeni su redovi sa dupliranim rokovima u drugim redovima: {0}"
@@ -46398,7 +46455,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:283
+#: erpnext/controllers/accounts_controller.py:284
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."
@@ -46605,8 +46662,8 @@ msgstr "Sigurnosna Zaliha"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46628,8 +46685,8 @@ msgstr "Način Plate"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46643,18 +46700,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Prodaja"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr "Prodaja & Nabava"
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Prodajni Račun"
@@ -46678,8 +46740,8 @@ msgstr "Prodajni Doprinosi i Poticaji"
msgid "Sales Defaults"
msgstr "Standard Postavke Prodaje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Troškovi Prodaje"
@@ -46848,11 +46910,11 @@ msgstr "Prodajna Faktura nije kreirana od {}"
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."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Prodajna Faktura {0} je već podnešena"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Prodajna Faktura {0} mora se izbrisati prije otkazivanja ovog Prodajnog Naloga"
@@ -47050,25 +47112,25 @@ msgstr "Trendovi Prodajnih Naloga"
msgid "Sales Order required for Item {0}"
msgstr "Prodajni Nalog je obavezan za Artikal {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
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/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
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:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Prodajni Nalog {0} nije podnešen"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Prodajni Nalog {0} ne važi"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Prodajni Nalog {0} je {1}"
@@ -47112,6 +47174,7 @@ msgstr "Prodajni Nalozi za Dostavu"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47124,7 +47187,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47230,7 +47293,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47323,7 +47386,7 @@ msgstr "Registar Prodaje"
msgid "Sales Representative"
msgstr "Predstavnik Prodaje"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Prodajni Povrat"
@@ -47347,7 +47410,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Šablon Prodajnog PDV-a"
@@ -47466,7 +47529,7 @@ msgstr "Isti Artikal"
msgid "Same day"
msgstr "Isti dan"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Ista kombinacija artikla i skladišta je već unesena."
@@ -47498,12 +47561,12 @@ msgstr "Skladište Zadržavanja Uzoraka"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Veličina Uzorka"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Količina uzorka {0} ne može biti veća od primljene količine {1}"
@@ -47747,7 +47810,7 @@ msgstr "Rashodovana Imovina"
msgid "Scrap Warehouse"
msgstr "Otpadno Skladište"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Datum Rashodovanja ne može biti prije Datuma Nabave"
@@ -47866,8 +47929,8 @@ msgstr "Sekundarna Uloga"
msgid "Secretary"
msgstr "Sekretar(ica)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Osigurani Krediti"
@@ -47905,7 +47968,7 @@ msgstr "Odaberi Alternativni Artikal"
msgid "Select Alternative Items for Sales Order"
msgstr "Odaberite Alternativni Artikal za Prodajni Nalog"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Odaberite Vrijednosti Atributa"
@@ -47947,7 +48010,7 @@ msgstr "Odaberi Poduzeće"
msgid "Select Company Address"
msgstr "Odaberi Adresu Poduzeća"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Odaberi Popravnu Operaciju"
@@ -47983,7 +48046,7 @@ msgstr "Odaberi Dimenziju"
msgid "Select Dispatch Address "
msgstr "Odaberi Otpremnu Adresu "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Navedi Personal"
@@ -48008,7 +48071,7 @@ msgstr "Odaberi Artikle"
msgid "Select Items based on Delivery Date"
msgstr "OdaberiArtikal na osnovu Datuma Dostave"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Odaberi Artikle za Inspekciju Kvaliteta"
@@ -48046,7 +48109,7 @@ msgstr "Odaberi Raspored Plaćanja"
msgid "Select Possible Supplier"
msgstr "Odaberi Mogućeg Dobavljača"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Odaberi Količinu"
@@ -48121,7 +48184,7 @@ msgstr "Odaberi Standard Prioritet."
msgid "Select a Payment Method."
msgstr "Odaberi način plaćanja."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Odaberi Dobavljača"
@@ -48144,7 +48207,7 @@ msgstr "Odaberite transakciju za usklađivanje i poravnanje s računima"
msgid "Select all"
msgstr "Odaberi sve"
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Odaberi Grupu Artikla."
@@ -48160,9 +48223,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:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Odaberi najmanje jednu vrijednost iz svakog od atributa."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr "Odaberite barem jednu vrijednost atributa."
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48178,7 +48241,7 @@ msgstr "Odaberite Naziv Poduzeća."
msgid "Select date"
msgstr "Odaberi datum"
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Odaberi Finansijski Registar za artikal {0} u redu {1}"
@@ -48210,7 +48273,7 @@ msgstr "Odaberi Bankovni Račun za usaglašavanje."
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."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Odaberi Artikal za Proizvodnju."
@@ -48227,7 +48290,7 @@ msgstr "Odaberi Skladište"
msgid "Select the customer or supplier."
msgstr "Odaberite Klijenta ili Dobavljača."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Odaberi datum"
@@ -48235,6 +48298,12 @@ msgstr "Odaberi datum"
msgid "Select the date and your timezone"
msgstr "Odaberi Datum i Vremensku Zonu"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr "Prvo odaberite grupu kako biste filtrirali primjenjive kategorije obustave u nastavku."
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Odaberite Sirovine (Artikle) obavezne za proizvodnju artikla"
@@ -48263,7 +48332,7 @@ msgstr "Odaberi, kako bi mogao pretraživati klijenta pomoću ovih polja"
msgid "Selected POS Opening Entry should be open."
msgstr "Odabrani Početni Unos Kase bi trebao biti otvoren."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Odabrani Cijenovnik treba da ima označena polja za Nabavu i Prodaju."
@@ -48294,30 +48363,30 @@ msgstr "Odabrani dokument mora biti u podnešenom stanju"
msgid "Self delivery"
msgstr "Samostalna Dostava"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Prodaja"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Prodaj Imovinu"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Prodajna Količina"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Prodajna Količina ne može premašiti količinu imovine"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
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:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Prodajna Količina mora biti veća od nule"
@@ -48570,7 +48639,7 @@ msgstr "Serijski / Šaržni Broj"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48590,7 +48659,7 @@ msgstr "Serijski / Šaržni Broj"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48635,7 +48704,7 @@ msgstr "Serijski Broj Raspon"
msgid "Serial No Reserved"
msgstr "Rezervisan Serijski Broj"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Preklapa se Serijski broj Šarže"
@@ -48775,7 +48844,7 @@ msgstr "Serijski Brojevi / Šarže"
msgid "Serial Nos are created successfully"
msgstr "Serijski Brojevi su uspješno kreirani"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
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."
@@ -48845,7 +48914,7 @@ msgstr "Serijski i Šarža"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49259,7 +49328,7 @@ msgstr "Postavi Predujam i Dodijeli (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Postavi osnovnu cijenu ručno"
@@ -49278,8 +49347,8 @@ msgstr "Postavi Dostavno Skladište"
msgid "Set Dropship Items Delivered Quantity"
msgstr "Postavi dostavljenu količinu Dropship artikala"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Postavi Količinu Gotovog Proizvoda"
@@ -49446,11 +49515,11 @@ msgstr "Postavljeno prema Šablonu PDV-a za Artikal"
msgid "Set closing balance as per bank statement"
msgstr "Postavite završno stanje prema bankovnom izvodu"
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Postavi Standard Račun Zaliha za Stalno Upravljanje Zalihama"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Postavi Standard Račun {0} za artikle za koje se nevode zalihe"
@@ -49482,7 +49551,7 @@ 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:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
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)"
@@ -49593,7 +49662,7 @@ msgid "Setting up company"
msgstr "Postavljanje Poduzeća"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Podešavanje {0} je neophodno"
@@ -49613,6 +49682,10 @@ msgstr "Postavke Prodajnog Modula"
msgid "Settled"
msgstr "Usaglašeno"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr "Usaglašeno Kreditnom Notom"
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49805,7 +49878,7 @@ msgstr "Tip Pošiljke"
msgid "Shipment details"
msgstr "Detalji Pošiljke"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Pošiljke"
@@ -49843,7 +49916,7 @@ msgstr "Naziv Adrese Pošiljke"
msgid "Shipping Address Template"
msgstr "Šablon Adrese Pošiljke"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Adresa Dostave ne pripada {0}"
@@ -49986,8 +50059,8 @@ msgstr "Kratka biografija za web stranicu i druge publikacije."
msgid "Short-term Investments"
msgstr "Kratkoročna Ulaganja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kratkoročne Rezerve"
@@ -50321,7 +50394,7 @@ msgstr "Istovremeno"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Budući da u ovoj kategoriji postoje aktivna sredstva koja se amortiziraju, potrebni su sljedeći računi. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Budući da postoji gubitak u procesu od {0} jedinica za gotov proizvod {1}, trebali biste smanjiti količinu za {0} jedinica za gotov proizvod {1} u Tabeli Artikala."
@@ -50366,7 +50439,7 @@ msgstr "Preskoči Dostavnicu"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50408,8 +50481,8 @@ msgstr "Konstanta Zaglađivanja"
msgid "Soap & Detergent"
msgstr "Sapun i Deterdžent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Softver"
@@ -50433,7 +50506,7 @@ msgstr "Prodato od"
msgid "Solvency Ratios"
msgstr "Koeficijenti Solventnosti"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
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."
@@ -50497,7 +50570,7 @@ msgstr "Naziv Izvornog Polja"
msgid "Source Location"
msgstr "Izvorna Lokacija"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "Izvor Unosa Proizvodnje"
@@ -50506,11 +50579,11 @@ msgstr "Izvor Unosa Proizvodnje"
msgid "Source Stock Entry (Manufacture)"
msgstr "Izvor Unosa Zaliha (Proizvodnja)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "Izvor Unos Zaliha {0} pripada radnom nalogu {1}, a ne {2}. Koristi unos proizvodnje iz istog radnog naloga."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "Izvor Unosa Zaliha {0} nema količinu gotovih proizvoda"
@@ -50568,7 +50641,12 @@ msgstr "Veza Adrese Izvornog Skladišta"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Izvorno Skladište je obavezno za Artikal {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+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:305
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."
@@ -50576,24 +50654,23 @@ msgstr "Izvorno skladište {0} mora biti isto kao i skladište klijenta {1} u Po
msgid "Source and Target Location cannot be same"
msgstr "Izvorna i Ciljna lokacija ne mogu biti iste"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Izvorno i ciljno skladište ne mogu biti isto za red {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Izvorno i ciljno skladište moraju se razlikovati"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Izvor Sredstava (Obaveze)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Izvorno skladište je obavezno za red {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr "Izvorno ili Ciljano Skladište je obavezno za artikal {0}"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr "Izvorno Skladište je obavezno za artikal na zalihi {0}"
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50634,7 +50711,7 @@ 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:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50642,7 +50719,7 @@ msgid "Split"
msgstr "Razdjeli"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Podjeljena Imovina"
@@ -50666,7 +50743,7 @@ msgstr "Podjeli od"
msgid "Split Issue"
msgstr "Razdjeli Slučaj"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Podjeljena Količina"
@@ -50678,6 +50755,11 @@ msgstr "Količina podijeljene imovine mora biti manja od količine imovine"
msgid "Split across {} accounts"
msgstr "Raspodijeli na {} račune"
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr "Raspodijeli proviziju među više prodavača."
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Podjela {0} {1} na {2} redove prema Uslovima Plaćanja"
@@ -50750,13 +50832,13 @@ msgstr "Standard Kupovina"
msgid "Standard Description"
msgstr "Standard Opis"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
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:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standard Prodaja"
@@ -50777,8 +50859,8 @@ msgstr "Standard Šablon"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standard Uslovi i Odredbe koji se mogu navesti u Prodaju i Nabavu. Primjeri: Valjanost Ponude, Uslovi Plaćanja, Sigurnost i Korištenje itd."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Standardno ocijenjeno zalihe u {0}"
@@ -50813,7 +50895,7 @@ msgstr "Datum početka ne može biti prije tekućeg datuma"
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:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Počni Rad"
@@ -50942,7 +51024,7 @@ msgstr "Prikaz Statusa"
msgid "Status and Reference"
msgstr "Status i Referenca"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status mora biti Poništen ili Dovršen"
@@ -50972,6 +51054,7 @@ msgstr "Zakonske informacije i druge opšte informacije o vašem Dobavljaču"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50980,8 +51063,8 @@ msgstr "Zalihe"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51081,6 +51164,16 @@ msgstr "Unos Zaključanih Zaliha {0} je stavljen na čekanje za obradu, sistemu
msgid "Stock Closing Log"
msgstr "Zapisnik Zaključavanja Zaliha"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr "Zalihe Isporučene ali nisu Fakturisane"
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51090,10 +51183,6 @@ msgstr "Zapisnik Zaključavanja Zaliha"
msgid "Stock Details"
msgstr "Detalji Zaliha"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Unosi Zaliha su već kreirani za Radni Nalog {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51157,7 +51246,7 @@ msgstr "Unos Zaliha je već kreiran naspram ove Liste Odabira"
msgid "Stock Entry {0} created"
msgstr "Unos Zaliha {0} je kreiran"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Unos Zaliha {0} je kreiran"
@@ -51165,8 +51254,8 @@ msgstr "Unos Zaliha {0} je kreiran"
msgid "Stock Entry {0} is not submitted"
msgstr "Unos Zaliha {0} nije podnešen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Troškovi Zaliha"
@@ -51244,8 +51333,8 @@ msgstr "Količina Zaliha"
msgid "Stock Levels HTML"
msgstr "HTML Nivoa Zaliha"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Obaveze Zaliha"
@@ -51348,8 +51437,8 @@ msgstr "Količina Zaliha u odnosu na Serijski Broj"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51361,7 +51450,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51373,7 +51462,7 @@ msgstr "Popis Zaliha"
msgid "Stock Reconciliation Item"
msgstr "Artikal Popisa Zaliha"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Popisi Zaliha"
@@ -51398,9 +51487,9 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51411,7 +51500,7 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51436,10 +51525,10 @@ msgstr "Rezervacija Zaliha"
msgid "Stock Reservation Entries Cancelled"
msgstr "Otkazani Unosi Rezervacije Zaliha"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Kreirani Unosi Rezervacija Zaliha"
@@ -51467,7 +51556,7 @@ msgstr "Unos Rezervacije Zaliha ne može se ažurirati pošto je već dostavljen
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."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr " Neusklađeno Skladišta Rezervacije Zaliha"
@@ -51507,7 +51596,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51622,7 +51711,7 @@ msgstr "Postavke Transakcija Zaliha"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51755,11 +51844,11 @@ msgstr "Zalihe se ne mogu rezervisati u grupnom skladištu {0}."
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:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
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:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
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."
@@ -51814,14 +51903,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Razlog Zastoja"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
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:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Prodavnice"
@@ -51879,7 +51968,7 @@ msgstr "Skladište Podsklopa"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52141,7 +52230,7 @@ msgstr "Servisni Artikal Podizvođačkog Naloga"
msgid "Subcontracting Order Supplied Item"
msgstr "Dostavljeni Artikal Podizvođačkog Naloga"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Podizvođački Nalog {0} je kreiran."
@@ -52230,7 +52319,7 @@ msgstr "Postavljanje Podizvođača"
msgid "Subdivision"
msgstr "Pododjeljenje"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Radnja Podnošenja Neuspješna"
@@ -52251,7 +52340,7 @@ msgstr "Podnesi Generirane Fakture"
msgid "Submit Journal Entries"
msgstr "Podnesi Naloge Knjiženja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Podnesi ovaj Radni Nalog za dalju obradu."
@@ -52405,7 +52494,7 @@ msgstr "Uspješno Usaglašeno"
msgid "Successfully Set Supplier"
msgstr "Uspješno Postavljen Dobavljač"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Uspješno promijenjena Jedinica Zaliha, redefinirajte faktore konverzije za novu Jedinicu."
@@ -52429,7 +52518,7 @@ msgstr "Uspješno uveženo {0} zapisa."
msgid "Successfully linked to Customer"
msgstr "Uspješno povezan s Klijentom"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Uspješno povezan s Dobavljačem"
@@ -52589,7 +52678,7 @@ msgstr "Dostavljena Količina"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52687,6 +52776,7 @@ msgstr "Detalji Dobavljača"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52696,7 +52786,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52711,6 +52801,7 @@ msgstr "Detalji Dobavljača"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52795,7 +52886,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52830,8 +52921,6 @@ msgid "Supplier Number At Customer"
msgstr "Broj Dobavljača kod Klijenta"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Brojevi Dobavljača"
@@ -52883,7 +52972,7 @@ msgstr "Primarni Kontakt Dobavljača"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52912,7 +53001,7 @@ msgstr "Poređenje Ponuda Dobavljača"
msgid "Supplier Quotation Item"
msgstr "Artikal Ponude Dobavljača"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Ponuda Dobavljača {0} Kreirana"
@@ -53001,7 +53090,7 @@ msgstr "Tip Dobavljača"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Skladište Dobavljača"
@@ -53018,17 +53107,12 @@ msgstr "Dobavljač isporučuje Klijentu"
msgid "Supplier is required for all selected Items"
msgstr "Dobavljač je obavezan za sve odabrane artikle"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Brojevi dobavljača koje dodjeljuje klijent"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Dobavljač Proizvoda ili Usluga."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Dobavljač {0} nije pronađen u {1}"
@@ -53041,8 +53125,8 @@ msgstr "Dobavljač(i)"
msgid "Suppliers"
msgstr "Dobavljači"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Zalihe podliježu odredbi o povratnoj naplati"
@@ -53133,7 +53217,7 @@ msgstr "Sinhronizacija Pokrenuta"
msgid "Synchronize all accounts every hour"
msgstr "Sinhronizuj sve račune svakih sat vremena"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Sistem u Upotrebi"
@@ -53164,7 +53248,7 @@ msgstr "Sistem će izvršiti implicitnu konverziju koristeći fiksni kurs AED u
msgid "System will fetch all the entries if limit value is zero."
msgstr "Sistem će preuyeti sve unose ako je granična vrijednost nula."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Sistem neće provjeravati prekomjerno fakturisanje jer je iznos za Artikal {0} u {1} nula"
@@ -53185,10 +53269,16 @@ msgstr "Pregled izračuna poreza po odbitku (TDS)."
msgid "TDS Deducted"
msgstr "Odbijen porez po odbitku (TDS)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Dospjeli porez po odbitku (TDS)."
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr "TDS/TCS se obračunava po stopi navedenoj ovdje na svakoj uplati od ovog klijenta."
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53336,7 +53426,7 @@ msgstr "Adresa Skladišta"
msgid "Target Warehouse Address Link"
msgstr "Veza Adrese Skladišta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Greška pri Rezervaciji Skladišta"
@@ -53344,24 +53434,23 @@ msgstr "Greška pri Rezervaciji Skladišta"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {1} u Radnom Nalogu {2} povezanom s Internim Podizvođačkim Nalogom."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Skladište je obavezno prije Podnošenja"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr "Ciljno Skladište je obevezno za artikal {0}"
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Skladište je obavezno za red {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53478,8 +53567,8 @@ msgstr "Iznos PDV-a nakon Iznosa Popusta (Valuta Poduzeća)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Iznos PDV-a će biti zaokružen na nivou reda (artikala)."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Poreska Imovina"
@@ -53511,7 +53600,6 @@ msgstr "Poreska Imovina"
msgid "Tax Breakup"
msgstr "PDV Raspodjela"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53533,7 +53621,6 @@ msgstr "PDV Raspodjela"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53549,6 +53636,7 @@ msgstr "PDV Raspodjela"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53560,8 +53648,8 @@ msgstr "Kategorija PDV-a"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "PDV Kategorija je promijenjena u \"Ukupno\" jer svi artikli nisu na zalihama"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Porezni Trošak"
@@ -53635,7 +53723,7 @@ msgstr "PDV %"
msgid "Tax Rates"
msgstr "PDV Stope"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Povrat PDV koji se pruža turistima u okviru šeme povrata poreza za turiste"
@@ -53653,7 +53741,7 @@ msgstr "PDV Red"
msgid "Tax Rule"
msgstr "Pravila PDV-a"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "PDV Pravila u konfliktu sa {0}"
@@ -53668,7 +53756,7 @@ msgstr "PDV Postavke"
msgid "Tax Template"
msgstr "PDV Šablon"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "PDV Šablon je obavezan."
@@ -53988,7 +54076,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:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "PDV red #{0}: {1} ne može biti manji od {2}"
@@ -54021,8 +54109,8 @@ msgstr "Tehnologija"
msgid "Telecommunications"
msgstr "Telekomunikacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefonski Troškovi"
@@ -54073,13 +54161,13 @@ msgstr "Privremeno na Čekanju"
msgid "Temporary"
msgstr "Privremeno"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Privremeni Računi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Privremeni Početni Račun"
@@ -54261,7 +54349,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54360,7 +54448,7 @@ msgstr "Tekst prikazan u finansijskom izvještaju (npr. 'Ukupni Prihod', 'Gotovi
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "\"Od Paketa Broj.\" polje ne smije biti prazno niti njegova vrijednost manja od 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Pristup zahtjevu za ponudu sa portala je onemogućen. Da biste omogućili pristup, omogući ga u Postavkama Portala."
@@ -54413,7 +54501,8 @@ msgstr "Uslov Plaćanja u redu {0} je možda duplikat."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Lista Odabira koja ima Unose Rezervacije Zaliha ne može se ažurirati. Ako trebate unijeti promjene, preporučujemo da otkažete postojeće Unose Rezervacije Zaliha prije ažuriranja Liste Odabira."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa"
@@ -54429,7 +54518,7 @@ msgstr "Serijski Broj u redu #{0}: {1} nije dostupan u skladištu {2}."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti za bilo koju drugu transakciju."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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}"
@@ -54465,7 +54554,7 @@ msgstr "Bankovni račun je onemogućen. Molimo omogućite ga"
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"
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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}."
@@ -54473,7 +54562,11 @@ msgstr "Šarža {0} je već rezervisana u {1} {2}. Dakle, ne može se nastaviti
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr "Poduzeće {0} nije registrovano u Južnoj Africi. Izvještaj o PDV reviziji dostupan je samo za poduzeća registrovana u Južnoj Africi."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr "Poduzeće {0} nije u Ujedinjenim Arapskim Emiratima. Izvještaj o PDV-u UAE 201 dostupan je samo za poduzeća u Ujedinjenim Arapskim Emiratima."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
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}."
@@ -54493,7 +54586,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:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
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."
@@ -54526,7 +54619,7 @@ msgstr "Polje Od Dioničara ne može biti prazno"
msgid "The field To Shareholder cannot be blank"
msgstr "Polje Za Dioničara ne može biti prazno"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Polje {0} u redu {1} nije postavljeno"
@@ -54567,11 +54660,11 @@ 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:427
+#: erpnext/controllers/accounts_controller.py:428
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:961
+#: erpnext/stock/doctype/item/item.py:965
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."
@@ -54593,7 +54686,7 @@ msgstr "Sljedeći raspored(i) plaćanja već postoje:\n"
msgid "The following rows are duplicates:"
msgstr "Sljedeći redovi su duplikati:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Sljedeći {0} su kreirani: {1}"
@@ -54620,7 +54713,7 @@ msgstr "Faktura nije u potpunosti dodijeljena jer postoji razlika od {0}."
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Artikli {0} i {1} se nalaze u sljedećem {2} :"
@@ -54678,7 +54771,7 @@ msgstr "Operacija {0} ne može biti podoperacija"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Originalnu fakturu treba objediniti prije ili zajedno sa povratnom fakturom."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
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."
@@ -54690,6 +54783,12 @@ msgstr "Nadređeni Rađun {0} ne postoji u otpremljenom šablonu"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Račun pristupa plaćanja u planu {0} razlikuje se od računa pristupa plaćanja u ovom Zahtjevu Plaćanja"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr "Procenat za koji vam je dopušteno naručiti više na Nabavnom Nalogu od količine tražene u izvornom zahtjevu za materijal. Na primjer, ako zahtjev za materijal ima 100 jedinica, a dopuštena količina je 10%, možete naručiti do 110 jedinica"
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54731,7 +54830,7 @@ msgstr "Rezervisane Zalihe će biti puštene kada ažurirate artikle. Jeste li s
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Rezervisane Zalihe će biti puštene. Jeste li sigurni da želite nastaviti?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Kontna Klasa {0} mora biti grupa"
@@ -54747,7 +54846,7 @@ msgstr "Odabrani Račun Kusura {} ne pripada {}."
msgid "The selected item cannot have Batch"
msgstr "Odabrani artikal ne može imati Šaržu"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "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? "
@@ -54780,7 +54879,7 @@ msgstr "Dionice ne postoje sa {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Zalihe su rezervirane za sljedeće artikle i skladišta, poništite ih za {0} Usglašavanje Zaliha: {1}"
@@ -54802,11 +54901,11 @@ msgstr "Sistem će pokušati automatski uskladiti stranku s bankovnom transakcij
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Sistem će kreirati Prodajnu Fakturu ili Kasa Fkturu iz Kase na osnovu ove postavke. Za transakcije velikog obima preporučuje se korištenje Kasa Fakture."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem u obradi u pozadini, sistem će dodati komentar o grešci na ovom usaglašavanja zaliha i vratiti se u stanje nacrta"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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"
@@ -54854,15 +54953,15 @@ msgstr "Vrijednost {0} se razlikuje između artikala {1} i {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Vrijednost {0} je već dodijeljena postojećem artiklu {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
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:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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."
@@ -54870,19 +54969,19 @@ msgstr "Skladište u koje će vaši artikli biti prebačeni kada započnete proi
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr "Iznosi isplate ili uplate - potrebni su samo ako nema kolone za iznos."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) mora biti jednako {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} sadrži Artikle s Jediničnom Cijenom."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "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:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} je uspješno kreiran"
@@ -54890,7 +54989,7 @@ msgstr "{0} {1} je uspješno kreiran"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} se ne poklapa s {0} {2} u {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizvod {2}."
@@ -54906,7 +55005,7 @@ msgstr "Postoji aktivno održavanje ili popravke imovine naspram imovine. Morate
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"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Na ovom računu postoje unosi u registar. Promjena {0} u ne-{1} u sistemu će uzrokovati netačan izlaz u izvještaju 'Računi {2}'"
@@ -54935,7 +55034,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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. "
@@ -54975,7 +55074,7 @@ 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:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "U ovom Unosu Zaliha mora biti najmanje jedan gotov proizvod"
@@ -55031,11 +55130,11 @@ msgstr "Artikal je Varijanta {0} (Šablon)."
msgid "This Month's Summary"
msgstr "Sažetak ovog Mjeseca"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Ovaj Nabavni Nalog je u potpunosti podugovoren."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Ovaj Prodajnii Nalog je u potpunosti podugovoren."
@@ -55069,7 +55168,7 @@ msgstr "Ovo može sadržavati \"CR\"/\"DR\" vrijednosti ili pozitivne/negativne
msgid "This covers all scorecards tied to this Setup"
msgstr "Ovo pokriva sve bodovne kartice vezane za ovu postavku"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ovaj dokument je preko ograničenja za {0} {1} za artikal {4}. Da li pravite još jedan {3} naspram istog {2}?"
@@ -55172,11 +55271,11 @@ msgstr "Ovo se smatra opasnim knjigovodstvene tačke gledišta."
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"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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."
@@ -55245,7 +55344,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} potrošena kroz kapitalizac
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}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
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}."
@@ -55253,15 +55352,15 @@ msgstr "Ovaj raspored je kreiran kada je Imovina {0} vraćena u prvobitno stanje
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}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Ovaj raspored je kreiran kada je Imovina {0} vraćena."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
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}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana."
@@ -55269,7 +55368,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana."
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}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
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}."
@@ -55338,7 +55437,7 @@ msgstr "Ovo će samo predložiti kreiranje novog unosa, a neće ga automatski kr
msgid "This will restrict user access to other employee records"
msgstr "Ovo će ograničiti pristup korisnika drugim zapisima zaposlenih"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Ovaj {} će se tretirati kao prijenos materijala."
@@ -55449,7 +55548,7 @@ msgstr "Vrijeme u minutama"
msgid "Time in mins."
msgstr "Vrijeme u minutama."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Zapisnici Vremena su obavezni za {0} {1}"
@@ -55558,7 +55657,7 @@ msgstr "Za Fakturisati"
msgid "To Currency"
msgstr "Za Valutu"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: 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"
@@ -55785,11 +55884,15 @@ msgstr "Da biste dodali Operacije, označite polje 'S Operacijama'."
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Da se doda podizvođačka sirovina artikala ako je Uključi Rastavljene Artikle onemogućeno."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Da dozvolite prekomjerno fakturisanje, ažuriraj \"Dozvola prekomjernog Fakturisanja\" u Postavkama Knjigovodstva ili Artikla."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr "Da biste dopustili prekomjerno naručivanje, ažurirajte \"Dopušteno Prekoračenja Naloga\" u Postavkama Nabave."
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Da biste dozvolili prekomjerno primanje/isporuku, ažuriraj \"Dozvoli prekomjerni Prijema/Dostavu\" u Postavkama Zaliha ili Artikla."
@@ -55832,11 +55935,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Za uključivanje troškova podsklopova i sekundarnih artikala u gotove proizvode na radnom nalogu bez korištenja radne kartice, kada je omogućena opcija 'Koristi Višeslojnu Sastavnicu'."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Za spajanje, sljedeća svojstva moraju biti ista za obje stavke"
@@ -55844,7 +55947,7 @@ msgstr "Za spajanje, sljedeća svojstva moraju biti ista za obje stavke"
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."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Da poništite ovo, omogući '{0}' u kompaniji {1}"
@@ -55869,7 +55972,7 @@ msgstr "Da biste podnijeli fakturu bez nabavnog računa, postavite {0} kao {1} u
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standard Imovinu Finansijskog Registra'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56019,7 +56122,7 @@ msgstr "Ukupno Dodjeljeno"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56126,12 +56229,12 @@ msgstr "Ukupna Provizija"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Ukupno Završeno Količinski"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Ukupna završena količina je obavezna za karticu posla {0}, molimo vas da počnete i dovršite karticu posla prije podnošenja"
@@ -56433,7 +56536,7 @@ msgstr "Ukupni Neplaćeni Iznos"
msgid "Total Paid Amount"
msgstr "Ukupan Plaćeni Iznos"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Ukupan Iznos Plaćanja u Planu Plaćanja mora biti jednak Ukupnom / Zaokruženom Ukupnom Iznosu"
@@ -56445,7 +56548,7 @@ msgstr "Ukupni iznos zahtjeva za plaćanje ne može biti veći od {0} iznosa"
msgid "Total Payments"
msgstr "Ukupno za Platiti"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Ukupna Odabrana Količina {0} je veća od naručene količine {1}. Dozvolu za prekoračenje možete postaviti u Postavkama Zaliha."
@@ -56728,7 +56831,7 @@ msgstr "Ukupno vrijeme rada na Radnoj Stanici (u Satima)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Ukupna procentualna dodjela za prodajni tim treba biti 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Ukupan procenat doprinosa treba da bude jednak 100"
@@ -56903,7 +57006,7 @@ msgstr "Datum Transakcije"
msgid "Transaction Dates"
msgstr "Datumi Transakcija"
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Dokument Brisanju Transakcije {0} je pokrenut za {1}"
@@ -56927,11 +57030,11 @@ msgstr "Artikal Zapisa Brisanja Transakcije"
msgid "Transaction Deletion Record To Delete"
msgstr "Zapis Brisanju Transakcije za brisanje"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Zapis Brisanja Transakcije {0} se već izvršava. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Zapis Brisanja Transakcije {0} trenutno briše {1}. Nije moguće spremiti dokumente dok se brisanje ne dovrši."
@@ -57036,7 +57139,8 @@ msgstr "Transakcija za koju se odbija PDV"
msgid "Transaction from which tax is withheld"
msgstr "Transakcija od koje se odbija PDV"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transakcija nije dozvoljena naspram zaustavljenog Radnog Naloga {0}"
@@ -57083,11 +57187,16 @@ msgstr "Godišnja Istorija 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'
+#: 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."
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr "Transakcije koje će biti uvezene u sistem"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transakcije koje koriste Prodajnu Fakturu Kase su onemogućene."
@@ -57268,8 +57377,8 @@ msgstr "Info Dobavljača"
msgid "Transporter Name"
msgstr "Ime Dobavljača"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Putni Troškovi"
@@ -57533,6 +57642,7 @@ msgstr "Postavke PDV-a UAE"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57548,7 +57658,7 @@ msgstr "Postavke PDV-a UAE"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57609,7 +57719,7 @@ msgstr "Detalji Jedinice Konverzije"
msgid "UOM Conversion Factor"
msgstr "Faktor Konverzije Jedinice"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Faktor Konverzije Jedinice({0} -> {1}) nije pronađen za artikal: {2}"
@@ -57622,7 +57732,7 @@ msgstr "Faktor Konverzije Jedinice je obavezan u redu {0}"
msgid "UOM Name"
msgstr "Naziv Jedinice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Faktor Konverzije je obavezan za Jedinicu: {0} za Artikal: {1}"
@@ -57694,13 +57804,13 @@ msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}.
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Nije moguće pronaći rezultat koji počinje od {0}. Morate imati stalne rezultate koji pokrivaju od 0 do 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
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}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Nije moguće pronaći varijablu:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr "Nije moguće pronaći varijablu: {0}"
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57781,7 +57891,7 @@ msgstr "Poništi usklađivanje transakcija"
msgid "Undo {}?"
msgstr "Poništi {}?"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Neočekivani Uzorak Imenovanja Serije"
@@ -57800,7 +57910,7 @@ msgstr "Jedinica"
msgid "Unit Of Measure"
msgstr "Jedinica"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Jedinična Cijena"
@@ -57817,7 +57927,7 @@ msgstr "Jedinica Mjere"
msgid "Unit of Measure (UOM)"
msgstr "Jedinica Mjere"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
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"
@@ -57962,7 +58072,7 @@ msgstr "Neusaglašeni Unosi"
msgid "Unreconciled Transactions"
msgstr "Neusklađene Transakcije"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58002,12 +58112,12 @@ msgstr "Neriješeno"
msgid "Unscheduled"
msgstr "Neplanirano"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Neosigurani Krediti"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "OtkažiI Usklađeni Zahtjev Plaćanje"
@@ -58183,7 +58293,7 @@ msgstr "Ažuriraj Artikle"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Ažuriraj neplaćeni iznos za ovaj dokument"
@@ -58262,11 +58372,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:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Ažuriranje Varijanti u toku..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Ažuriranje statusa radnog naloga u toku"
@@ -58468,7 +58578,7 @@ msgstr "Koristi Prijedlog"
msgid "Use Transaction Date Exchange Rate"
msgstr "Koristi Devizni Kurs Datuma Transakcije"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Koristite naziv koji se razlikuje od naziva prethodnog projekta"
@@ -58510,7 +58620,7 @@ msgstr "Koristi se za izradu početnog unosa zaliha sa stopom vrednovanja prilik
msgid "Used with Financial Report Template"
msgstr "Koristi se s Šablonom Financijskog Izvještaja"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Forum Korisnika"
@@ -58574,6 +58684,11 @@ msgstr "Korisnici mogu omogućiti potvrdni okvir Ako žele prilagoditi ulaznu ci
msgid "Users can make manufacture entry against Job Cards"
msgstr "Korisnici mogu unositi podatke o proizvodnji putem radnih kartica"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr "Korisnici navedeni ovdje mogu se prijaviti na korisnički portal kako bi pregledali svoje naloge, fakture i dostave."
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58596,8 +58711,8 @@ msgstr "Korisnici s ovom ulogom bit će obaviješteni ako amortizacija imovine n
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/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Penzioni Troškovi"
@@ -58607,7 +58722,7 @@ msgstr "Penzioni Troškovi"
msgid "VAT Accounts"
msgstr "PDV Računi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Iznos PDV-a (AED)"
@@ -58617,12 +58732,12 @@ msgid "VAT Audit Report"
msgstr "Izvještaj revizije PDV-a"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "PDV na rashode i sve ostale ulaze"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "PDV na Prodaju i sve ostale izlaze"
@@ -58816,7 +58931,6 @@ msgstr "Metoda Vrijednovanja"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58832,14 +58946,12 @@ msgstr "Metoda Vrijednovanja"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Procijenjena Vrijednost"
@@ -58847,19 +58959,19 @@ msgstr "Procijenjena Vrijednost"
msgid "Valuation Rate (In / Out)"
msgstr "Stopa Vrednovnja (Ulaz / Izlaz)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Nedostaje Stopa Vrednovanja"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
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:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Procijenjano Vrijednovanje je obavezno ako se unese Početna Zaliha"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}"
@@ -58869,7 +58981,7 @@ msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}"
msgid "Valuation and Total"
msgstr "Vrednovanje i Ukupno"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu."
@@ -58883,7 +58995,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Stopa Vrednovanja artikla prema Prodajnoj Fakturi (samo za interne transfere)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Naknade za tip vrijednovanja ne mogu biti označene kao Inkluzivne"
@@ -58895,7 +59007,7 @@ msgstr "Naknade za vrstu vrijednovanja ne mogu biti označene kao Inkluzivne"
msgid "Value (G - D)"
msgstr "Vrijednost (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Vrijednost ({0})"
@@ -59014,12 +59126,12 @@ msgid "Variance ({})"
msgstr "Odstupanje ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Varijanta"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Greška Atributa Varijante"
@@ -59038,7 +59150,7 @@ msgstr "Varijanta Sastavnice"
msgid "Variant Based On"
msgstr "Varijanta zasnovana na"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Varijanta zasnovana na nemože se promijeniti"
@@ -59056,7 +59168,7 @@ msgstr "Polje Varijante"
msgid "Variant Item"
msgstr "Varijanta Artikla"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Varijanta Artikli"
@@ -59067,7 +59179,7 @@ msgstr "Varijanta Artikli"
msgid "Variant Of"
msgstr "Varijanta od"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Kreiranje varijante je stavljeno u red čekanja."
@@ -59361,7 +59473,7 @@ msgstr "Verifikat"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Verifikat #"
@@ -59433,7 +59545,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59507,7 +59619,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59534,7 +59646,7 @@ msgstr "Podtip Verifikata"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59714,8 +59826,8 @@ 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:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Skladište je obavezno za artikal zaliha {0}"
@@ -59740,7 +59852,7 @@ msgstr "Skladište {0} ne pripada{1}"
msgid "Warehouse {0} does not exist"
msgstr "Skladište {0} ne postoji"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
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}"
@@ -59877,11 +59989,11 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji naspram unosa zaliha {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Upozorenje: Količina Materijalnog Naloga je manja od Minimalne Količine Nabavnog Naloga"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
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}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Upozorenje: Prodajni Nalog {0} već postoji naspram Nabavnog Naloga {1}"
@@ -59971,7 +60083,7 @@ msgstr "Talasna dužina u Kilometrima"
msgid "Wavelength In Megametres"
msgstr "Talasna dužina u Megametrima"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Vidimo da je {0} napravljen protiv {1}. Ako želite da se ažuriraju neizmireni zahtjevi za {1}, poništite oznaku u polju za potvrdu '{2}'."
@@ -60040,7 +60152,7 @@ msgstr "Web Stranica:"
msgid "Week of the year"
msgstr "Sedmica u godini"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Sedmica {0} {1}"
@@ -60170,7 +60282,7 @@ msgstr "Kada je odabrano, prag transakcije će se primjenjivati samo za pojedina
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."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
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."
@@ -60180,7 +60292,7 @@ msgstr "Kada kreirate artikal, unosom vrijednosti za ovo polje automatski će se
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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."
@@ -60190,11 +60302,11 @@ msgstr "Kada postoji više gotovih proizvoda ({0}) u unosu zaliha za ponovno pak
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr "Kada nešto platite unaprijed (poput godišnjeg osiguranja), trošak se ovdje evidentira i postepeno se priznaje tokom vremena"
-#: erpnext/accounts/doctype/account/account.py:380
+#: 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."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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"
@@ -60339,7 +60451,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Radovi u Toku"
@@ -60376,7 +60488,7 @@ msgstr "Radovi u Toku"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60410,7 +60522,7 @@ msgstr "Potrošeni Materijali Radnog Naloga"
msgid "Work Order Item"
msgstr "Artikal Radnog Naloga"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "Neusklađenost Radnog Naloga"
@@ -60451,19 +60563,23 @@ 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:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Radni Nalog se ne može kreirati iz sljedećeg razloga: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Radni Nalog se nemože pokrenuti naspram Šablona Artikla"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Radni Nalog je {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr "Radni Nalog je obavezan"
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Radni Nalog nije kreiran"
@@ -60472,16 +60588,16 @@ msgstr "Radni Nalog nije kreiran"
msgid "Work Order {0} created"
msgstr "Radni nalog {0} izrađen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "Radni nalog {0} nema proizvedenu količinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Radni Nalog {0}: Radna Kartica nije pronađena za operaciju {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+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:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Radni Nalozi"
@@ -60506,7 +60622,7 @@ msgstr "Radovi u Toku"
msgid "Work-in-Progress Warehouse"
msgstr "Skladište Posla u Toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Skladište u Toku je obavezno prije Podnošenja"
@@ -60554,7 +60670,7 @@ msgstr "Radno Vrijeme"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60645,14 +60761,14 @@ msgstr "Radne Stanice"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Otpis"
@@ -60757,7 +60873,7 @@ msgstr "Otpisana Vrijednost"
msgid "Wrong Company"
msgstr "Pogrešno Poduzeće"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Pogrešna Lozinka"
@@ -60813,11 +60929,11 @@ msgstr "Datum početka ili datum završetka godine se preklapa sa {0}. Da biste
msgid "You are importing data for the code list:"
msgstr "Uvoziš podatke za Listu Koda:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Nije vam dozvoljeno ažuriranje prema uslovima postavljenim u {} Radnom Toku."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Niste ovlašteni da dodajete ili ažurirate unose prije {0}"
@@ -60825,7 +60941,7 @@ msgstr "Niste ovlašteni da dodajete ili ažurirate unose prije {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Niste ovlašteni da vršite/uredite transakcije zaliha za artikal {0} u skladištu {1} prije ovog vremena."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Niste ovlašteni za postavljanje Zamrznute vrijednosti"
@@ -60853,7 +60969,7 @@ msgstr "Također možete postaviti standard Račun Kapitalnog Posla u Toku u {}"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr "Također možete koristiti varijable u nazivu serije tako što ćete ih staviti između tačaka (.)"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
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."
@@ -60894,11 +61010,11 @@ msgstr "Možete ga postaviti kao naziv mašine ili tip operacije. Na primjer, ma
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr "Možete postaviti pravilo za podjelu transakcije na više računa."
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Možete koristiti {0} za kasnije usklađivanje sa {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Ne možete napraviti nikakve promjene na Radnoj Kartici jer je Radni Nalog zatvoren."
@@ -60922,7 +61038,7 @@ msgstr "Ne možete kreirati {0} unutar zatvorenog Knjigovodstvenog Perioda {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Ne možete kreirati ili poništiti bilo koje knjigovodstvene unose u zatvorenom knjigovodstvenom periodu {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Ne možete kreirati/izmijeniti bilo koje knjigovodstvene unose do ovog datuma."
@@ -60983,7 +61099,7 @@ msgstr "Nemate dozvolu za uvoz i podnošenje bankovnih transakcija"
msgid "You do not have permission to import bank transactions"
msgstr "Nemate dozvolu za uvoz bankovnih transakcija"
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Nemate dozvole za {} artikala u {}."
@@ -60995,19 +61111,19 @@ 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:4466
+#: erpnext/controllers/accounts_controller.py:4454
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."
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
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."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
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:4440
+#: erpnext/controllers/accounts_controller.py:4428
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."
@@ -61019,7 +61135,7 @@ msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Provjerite {
msgid "You have already selected items from {0} {1}"
msgstr "Već ste odabrali artikle iz {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Pozvani ste da sarađujete na projektu {0}."
@@ -61043,7 +61159,7 @@ 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:1180
+#: erpnext/stock/doctype/item/item.py:1184
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."
@@ -61059,7 +61175,7 @@ msgstr "Morate odabrati Klijenta prije dodavanja Artikla."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Morate otkazati Unos Zatvaranje Kase {} da biste mogli otkazati ovaj dokument."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Odabrali ste grupni račun {1} kao {2} Račun u redu {0}. Odaberi jedan račun."
@@ -61106,11 +61222,11 @@ msgstr "Poštanski Broj"
msgid "Zero Balance"
msgstr "Nulto Stanje"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Nulta Stopa"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Nulta Količina"
@@ -61132,11 +61248,11 @@ msgstr "Zip Datoteka"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Važno] [ERPNext] Greške Automatskog Preuređenja"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Dozvoli negativne cijene za Artikle`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "poslije"
@@ -61177,7 +61293,7 @@ msgid "cannot be greater than 100"
msgstr "ne može biti veći od 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "datirano {0}"
@@ -61326,7 +61442,7 @@ msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}"
msgid "per hour"
msgstr "po satu"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "izvodi bilo koje dolje:"
@@ -61359,7 +61475,7 @@ msgstr "primljeno od"
msgid "reconciled"
msgstr "usaglašeno"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "vraćeno"
@@ -61394,7 +61510,7 @@ msgstr "desno"
msgid "sandbox"
msgstr "sandbox"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "prodano"
@@ -61402,8 +61518,8 @@ msgstr "prodano"
msgid "subscription is already cancelled."
msgstr "pretplata je već otkazana."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61421,7 +61537,7 @@ msgstr "naziv"
msgid "to"
msgstr "do"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
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."
@@ -61448,7 +61564,7 @@ msgstr "odabrane transakcije"
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "jedinstveni npr. SAVE20 Koristi se za popust"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr "ažurirana dostavljena količina za artikal {0} na {1}"
@@ -61470,7 +61586,7 @@ msgstr "putem Alata Ažuriranje Sastavnice"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "morate odabrati Račun Kapitalnih Radova u Toku u Tabeli Računa"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' je onemogućen"
@@ -61478,7 +61594,7 @@ msgstr "{0} '{1}' je onemogućen"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' nije u Fiskalnoj Godini {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
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}"
@@ -61486,7 +61602,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:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Račun nije pronađen prema Klijentu {1}."
@@ -61519,11 +61635,11 @@ msgstr "{0} Serija Imenovanja"
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Broj {1} se već koristi u {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "Operativni trošak {0} za operaciju {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operacije: {1}"
@@ -61531,7 +61647,7 @@ msgstr "{0} Operacije: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Zahtjev za {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Zadržani Uzorak se zasniva na Šarži, provjeri Ima Broj Šarže da zadržite uzorak artikla"
@@ -61619,11 +61735,11 @@ msgstr "{0} kreirano"
msgid "{0} creation for the following records will be skipped."
msgstr "Kreiranje {0} za sljedeće zapise će biti preskočeno."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
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:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
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."
@@ -61635,7 +61751,7 @@ msgstr "{0} trenutno ima {1} Dobavljačko Bodovno stanje, i Nabavne Ponude ovom
msgid "{0} does not belong to Company {1}"
msgstr "{0} ne pripada {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} ne pripada {1}."
@@ -61644,7 +61760,7 @@ 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:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} uneseno dvaput {1} u PDV Artikla"
@@ -61669,7 +61785,7 @@ msgstr "{0} je uspješno podnešen"
msgid "{0} hours"
msgstr "{0} sati"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} u redu {1}"
@@ -61691,7 +61807,7 @@ msgstr "{0} je dodata više puta u redove: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} već radi za {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti"
@@ -61699,12 +61815,12 @@ msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} je u Nacrtu. Podnesi prije kreiranja Imovine."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} je obavezan za artikal {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} je obavezan za račun {1}"
@@ -61712,7 +61828,7 @@ msgstr "{0} je obavezan za račun {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
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}."
@@ -61720,7 +61836,7 @@ msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {
msgid "{0} is not a CSV file."
msgstr "{0} nije CSV datoteka."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} nije bankovni račun poduzeća"
@@ -61728,7 +61844,7 @@ msgstr "{0} nije bankovni račun poduzeća"
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"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} nije artikal na zalihama"
@@ -61768,27 +61884,27 @@ msgstr "{0} je na čekanju do {1}"
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."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} rastavljenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} artikala u toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} artikala izgubljenih tokom procesa."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} proizvedenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} vraćenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} artikala za povrat"
@@ -61796,7 +61912,7 @@ msgstr "{0} artikala za povrat"
msgid "{0} must be negative in return document"
msgstr "{0} mora biti negativan u povratnom dokumentu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} nije dozvoljeno obavljati transakcije sa {1}. Promijeni poduzeće ili dodaj poduzeće u sekciju 'Dozvoljena Transakcija s' u zapisu klijenata."
@@ -61812,7 +61928,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/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} količina artikla {1} se prima u Skladište {2} kapaciteta {3}."
@@ -61825,7 +61941,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr "{0} transakcija će biti uvezeno u sistem. Molimo Vas da pregledate detalje ispod i kliknete na dugme 'Uvezi' da biste nastavili."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
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."
@@ -61841,16 +61957,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
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:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
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:1714
+#: erpnext/stock/stock_ledger.py:1680
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."
@@ -61862,7 +61978,7 @@ 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:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varijante kreirane."
@@ -61878,7 +61994,7 @@ msgstr "{0} će biti dato kao popust."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} će biti postavljeno kao {1} u naredno skeniranim artiklima"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61916,8 +62032,8 @@ msgstr "{0} {1} je već u potpunosti plaćeno."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} je već djelimično plaćena. Koristi dugme 'Preuzmi Nepodmirene Fakture' ili 'Preuzmi Nepodmirene Naloge' da preuzmete najnovije nepodmirene iznose."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} je izmijenjeno. Osvježite."
@@ -62027,7 +62143,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/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Centar Troškova je obavezan za Artikal {2}"
@@ -62076,8 +62192,8 @@ msgstr "{0}% ukupne vrijednosti fakture će se dati kao popust."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0} {1} ne može biti nakon {2}očekivanog datuma završetka."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, završi operaciju {1} prije operacije {2}."
@@ -62097,11 +62213,11 @@ msgstr "{0}: Zaštićeni DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtualni DocType (bez tabele baze podataka)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} ne pripada: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} ne postoji"
@@ -62109,11 +62225,11 @@ msgstr "{0}: {1} ne postoji"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} ne postoji"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} je grupni račun."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} mora biti manje od {2}"
@@ -62125,7 +62241,7 @@ msgstr "{count} Imovina kreirana za {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} je otkazan ili zatvoren."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
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})"
@@ -62137,7 +62253,7 @@ msgstr "{ref_doctype} {ref_name} je {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} se ne može otkazati jer su zarađeni Poeni Lojalnosti iskorišteni. Prvo otkažite {} Broj {}"
diff --git a/erpnext/locale/cs.po b/erpnext/locale/cs.po
index e28210919f4..70969c7e66c 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-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -346,8 +346,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:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr ""
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr ""
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "90 a více"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -762,7 +762,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -779,7 +779,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -896,11 +896,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -945,7 +945,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1109,11 +1109,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1121,7 +1121,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "Zkratka: {0} se smí vyskytovat pouze jednou"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1175,7 +1175,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1211,7 +1211,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1329,8 +1329,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1348,7 +1348,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1361,7 +1361,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1400,7 +1400,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1416,11 +1416,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1487,15 +1487,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1503,8 +1503,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1512,11 +1512,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1524,11 +1524,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1544,15 +1544,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1560,7 +1560,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1568,19 +1568,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1596,7 +1596,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1881,8 +1881,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1906,8 +1906,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1916,7 +1916,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1971,7 +1971,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1984,14 +1983,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr ""
@@ -2021,8 +2019,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2122,15 +2120,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2295,7 +2293,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2419,7 +2417,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2541,7 +2539,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2550,7 +2548,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3043,13 +3041,13 @@ msgstr ""
#: erpnext/quality_management/doctype/quality_review/quality_review.json
#: erpnext/selling/page/point_of_sale/pos_payment.js:59
msgid "Additional Information"
-msgstr ""
+msgstr "Dodatečné informace"
#: erpnext/selling/page/point_of_sale/pos_payment.js:85
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3072,7 +3070,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3080,11 +3078,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3230,11 +3223,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3247,8 +3235,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3316,7 +3304,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3436,7 +3424,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3578,11 +3566,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3656,7 +3644,7 @@ msgstr ""
#. Booking Settings'
#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
msgid "Agents"
-msgstr ""
+msgstr "Agenti"
#. Description of a DocType
#: erpnext/selling/doctype/product_bundle/product_bundle.json
@@ -3732,21 +3720,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3826,7 +3814,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3840,6 +3828,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3848,23 +3841,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3878,11 +3871,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3901,7 +3894,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3911,7 +3904,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3941,7 +3934,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3998,7 +3991,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4062,7 +4055,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4185,16 +4178,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4320,6 +4303,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4396,10 +4389,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4411,6 +4402,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4452,8 +4448,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4694,7 +4690,7 @@ msgstr ""
msgid "Amount"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4828,11 +4824,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4878,11 +4874,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5226,7 +5222,7 @@ msgstr ""
#. Level Agreement'
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Apply SLA for Resolution Time"
-msgstr ""
+msgstr "Použít SLA pro dobu vyřešení"
#. Description of the 'Enable Discounts and Margin' (Check) field in DocType
#. 'Accounts Settings'
@@ -5422,7 +5418,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5434,7 +5430,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/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5572,7 +5568,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5749,8 +5745,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5850,7 +5846,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5882,7 +5878,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5890,20 +5886,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5923,7 +5919,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5964,7 +5960,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6014,7 +6010,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6028,7 +6024,7 @@ msgstr ""
#. Agreement'
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Assignment Conditions"
-msgstr ""
+msgstr "Podmínky přiřazení"
#: erpnext/setup/setup_wizard/data/designation.txt:5
msgid "Associate"
@@ -6075,7 +6071,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6083,20 +6079,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6179,11 +6171,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6191,19 +6183,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6415,7 +6407,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6527,7 +6519,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6616,10 +6608,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6628,8 +6616,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6653,14 +6641,16 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
#. Label of the avg_response_time (Duration) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Average Response Time"
-msgstr ""
+msgstr "Průměrná doba odezvy"
#. Description of the 'Lead Time in days' (Int) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -6677,7 +6667,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6735,7 +6725,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6758,7 +6748,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6830,11 +6820,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6988,7 +6973,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7056,7 +7041,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7120,7 +7105,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7185,7 +7170,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7341,8 +7326,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7457,8 +7442,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7631,11 +7616,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7763,11 +7748,11 @@ msgstr ""
#: erpnext/setup/doctype/holiday_list/holiday_list.js:60
msgid "Based on your HR Policy, select your leave allocation period's end date"
-msgstr ""
+msgstr "Podle vaší HR politiky vyberte datum konce období přidělení dovolené"
#: erpnext/setup/doctype/holiday_list/holiday_list.js:55
msgid "Based on your HR Policy, select your leave allocation period's start date"
-msgstr ""
+msgstr "Podle vaší HR politiky vyberte datum začátku období přidělení dovolené"
#. Label of the basic_amount (Currency) field in DocType 'Stock Entry Detail'
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
@@ -7792,7 +7777,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7867,7 +7852,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7956,13 +7941,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7979,7 +7964,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8002,12 +7987,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8062,7 +8047,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8071,7 +8056,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8085,11 +8070,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8190,7 +8177,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8373,7 +8360,7 @@ msgstr ""
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:285
msgid "Black"
-msgstr ""
+msgstr "Černá"
#. Option for the 'Data Source' (Select) field in DocType 'Financial Report
#. Row'
@@ -8442,6 +8429,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8538,7 +8535,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8797,8 +8794,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8860,7 +8857,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Call Log'
#: erpnext/telephony/doctype/call_log/call_log.json
msgid "Busy"
-msgstr ""
+msgstr "Obsazeno"
#: erpnext/stock/doctype/batch/batch_dashboard.py:8
#: erpnext/stock/doctype/item/item_dashboard.py:22
@@ -8959,14 +8956,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9016,8 +9013,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9164,7 +9161,7 @@ msgstr ""
#. Label of the call_received_by (Link) field in DocType 'Call Log'
#: erpnext/telephony/doctype/call_log/call_log.json
msgid "Call Received By"
-msgstr ""
+msgstr "Hovor přijal"
#. Label of the call_receiving_device (Select) field in DocType 'Voice Call
#. Settings'
@@ -9272,7 +9269,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9305,13 +9302,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9353,7 +9350,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9361,9 +9358,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9391,7 +9388,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9411,7 +9408,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9431,15 +9428,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9447,11 +9444,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9467,11 +9464,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9479,7 +9476,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9505,7 +9502,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9513,12 +9510,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9530,7 +9527,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9538,20 +9535,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9567,7 +9564,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9575,15 +9572,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9591,12 +9588,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9609,14 +9606,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9630,7 +9627,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9638,11 +9635,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Nelze nastavit množství menší než dodané množství."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Nelze nastavit množství menší než přijaté množství."
@@ -9654,7 +9651,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9687,7 +9684,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9706,13 +9703,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9929,7 +9926,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10034,7 +10031,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10044,7 +10041,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10052,7 +10049,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10067,7 +10064,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10121,7 +10118,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10264,7 +10261,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10322,7 +10319,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10374,6 +10371,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10516,11 +10518,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10772,11 +10774,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10807,7 +10815,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11206,8 +11214,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11260,7 +11268,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11349,18 +11357,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11456,7 +11466,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11491,7 +11501,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11530,12 +11540,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11577,7 +11587,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11624,12 +11634,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11818,7 +11828,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12012,7 +12022,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12041,7 +12051,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12082,7 +12092,7 @@ msgstr ""
#: erpnext/stock/doctype/manufacturer/manufacturer.json
#: erpnext/stock/doctype/warehouse/warehouse.json
msgid "Contact HTML"
-msgstr ""
+msgstr "Kontakt HTML"
#. Label of the contact_info_tab (Section Break) field in DocType 'Lead'
#. Label of the contact_info (Section Break) field in DocType 'Maintenance
@@ -12169,7 +12179,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12295,6 +12305,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12355,7 +12370,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12363,15 +12378,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12448,13 +12463,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12621,7 +12636,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12754,7 +12769,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12797,17 +12812,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12887,7 +12898,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13076,7 +13087,7 @@ msgstr ""
msgid "Create Item"
msgstr "Vytvořit položku"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13108,7 +13119,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13128,7 +13139,7 @@ msgstr ""
#: erpnext/public/js/call_popup/call_popup.js:122
msgid "Create New Contact"
-msgstr ""
+msgstr "Vytvořit nový kontakt"
#: erpnext/public/js/call_popup/call_popup.js:128
msgid "Create New Customer"
@@ -13175,7 +13186,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr "Vytvořit žádost o platbu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13320,7 +13331,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13358,12 +13369,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13394,12 +13405,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13433,7 +13444,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13466,7 +13477,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13659,7 +13670,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13669,12 +13680,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13706,7 +13711,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13734,7 +13739,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13742,7 +13747,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13751,20 +13756,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13772,8 +13777,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13943,7 +13948,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13953,7 +13958,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14036,8 +14041,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14104,6 +14109,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14199,7 +14209,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14306,7 +14315,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14334,7 +14342,7 @@ msgstr ""
#: erpnext/workspace_sidebar/selling.json
#: erpnext/workspace_sidebar/subscription.json
msgid "Customer"
-msgstr ""
+msgstr "Zákazník"
#. Label of the customer (Link) field in DocType 'Customer Item'
#: erpnext/accounts/doctype/customer_item/customer_item.json
@@ -14395,8 +14403,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14410,7 +14418,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14493,6 +14501,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14515,7 +14524,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14532,6 +14541,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14575,7 +14585,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14627,7 +14637,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14653,7 +14663,7 @@ msgstr ""
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Customer Name"
-msgstr ""
+msgstr "Název zákazníka"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:22
msgid "Customer Name: "
@@ -14733,7 +14743,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14790,9 +14800,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14904,7 +14914,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -14995,7 +15005,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15096,7 +15106,7 @@ msgstr ""
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
msgid "Days"
-msgstr ""
+msgstr "Dny"
#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:51
#: erpnext/selling/report/inactive_customers/inactive_customers.js:8
@@ -15221,7 +15231,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15249,13 +15259,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15383,8 +15393,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15410,14 +15419,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15432,19 +15441,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15497,9 +15506,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15615,6 +15622,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15650,23 +15667,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15789,15 +15802,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15849,7 +15862,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15940,6 +15953,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16022,12 +16041,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16048,8 +16067,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16160,11 +16179,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16245,7 +16264,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16305,11 +16324,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16395,10 +16414,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16518,8 +16533,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16612,7 +16627,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16770,15 +16785,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16890,15 +16905,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16979,6 +16994,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17015,11 +17035,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Pravidla cen byla zakázána, protože {} je interní převod"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17035,7 +17055,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17043,15 +17063,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Množství k rozebrání nemůže být menší nebo rovno 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17338,7 +17358,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17419,7 +17439,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17533,8 +17553,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17596,7 +17616,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17620,7 +17640,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17687,11 +17707,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17854,12 +17874,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17880,12 +17894,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18044,8 +18052,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18128,7 +18136,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18242,6 +18250,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18261,8 +18273,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18466,8 +18478,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18550,7 +18562,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18566,7 +18578,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18597,7 +18609,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18763,12 +18775,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18897,8 +18903,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18997,8 +19003,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19023,7 +19029,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19035,7 +19041,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19078,7 +19084,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19086,7 +19092,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19098,8 +19104,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19123,8 +19129,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19185,7 +19191,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19195,7 +19201,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19241,7 +19247,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19260,7 +19266,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:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19270,7 +19276,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19278,7 +19284,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19309,17 +19315,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19458,7 +19464,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19545,7 +19551,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19629,7 +19635,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19707,23 +19713,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19802,7 +19808,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19939,7 +19945,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20057,6 +20063,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20094,21 +20105,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20316,9 +20335,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20375,15 +20394,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20429,7 +20448,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20470,7 +20489,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20611,6 +20630,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20629,7 +20649,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20648,8 +20668,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20722,7 +20742,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20779,7 +20799,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20789,7 +20809,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20810,17 +20830,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20848,11 +20864,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20890,7 +20906,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20904,7 +20920,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20921,7 +20937,7 @@ msgstr "U projektu - {0} aktualizujte svůj stav"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20930,12 +20946,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20954,7 +20970,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21001,11 +21017,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21051,7 +21062,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21096,8 +21107,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21531,8 +21542,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21549,13 +21560,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21563,7 +21574,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21648,9 +21659,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21713,7 +21724,7 @@ msgstr ""
#. Label of the gs (Section Break) field in DocType 'Item Group'
#: erpnext/setup/doctype/item_group/item_group.json
msgid "General Settings"
-msgstr ""
+msgstr "Obecná nastavení"
#. Name of a report
#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.json
@@ -21823,7 +21834,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21881,7 +21892,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21920,7 +21931,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22094,7 +22105,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22103,7 +22114,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22286,7 +22297,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22729,7 +22740,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22750,14 +22761,14 @@ msgstr ""
#: erpnext/setup/doctype/holiday_list/holiday_list.js:77
msgid "Here, your weekly offs are pre-populated based on the previous selections. You can add more rows to also add public and national holidays individually."
-msgstr ""
+msgstr "Zde jsou vaše pravidelné volné dny předvyplněny podle předchozích voleb. Můžete přidat další řádky a doplnit i jednotlivé státní a národní svátky."
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22826,7 +22837,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:314
#: erpnext/selling/doctype/sales_order/sales_order.js:1033
msgid "Hold"
-msgstr ""
+msgstr "Pozastavit"
#. Label of the sb_14 (Section Break) field in DocType 'Purchase Invoice'
#. Label of the on_hold (Check) field in DocType 'Purchase Invoice'
@@ -22956,7 +22967,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23124,6 +23135,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23341,7 +23358,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23367,13 +23384,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23382,7 +23404,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23392,7 +23414,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23469,7 +23491,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23483,7 +23505,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23567,7 +23589,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23654,12 +23676,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23817,7 +23839,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23941,7 +23963,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24172,8 +24194,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24244,7 +24266,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24276,7 +24298,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24284,7 +24306,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr "Nesprávná společnost"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24418,15 +24440,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24485,7 +24507,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
msgid "Initiated"
-msgstr ""
+msgstr "Zahájeno"
#. Label of the inspected_by (Link) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:33
@@ -24494,14 +24516,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24518,8 +24540,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24549,7 +24571,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24588,11 +24610,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24600,13 +24622,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24726,13 +24747,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24740,8 +24761,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24761,7 +24782,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24769,7 +24790,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24777,7 +24798,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24808,7 +24829,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24821,7 +24842,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24837,12 +24863,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24863,7 +24889,7 @@ msgstr "Neplatná částka"
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24876,7 +24902,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24892,21 +24918,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24944,7 +24970,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24958,7 +24984,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24966,11 +24992,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25000,12 +25026,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25030,12 +25056,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25060,7 +25086,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25072,7 +25098,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25098,8 +25124,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25107,7 +25133,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25117,7 +25143,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25166,8 +25192,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25217,7 +25243,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25322,7 +25348,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25343,7 +25369,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25439,8 +25465,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25882,8 +25907,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25989,7 +26013,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26020,11 +26044,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26148,7 +26172,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26396,7 +26420,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26458,7 +26482,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26657,13 +26681,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26880,7 +26904,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26920,10 +26944,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26964,10 +26988,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26983,19 +27003,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27182,11 +27203,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27287,11 +27308,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27317,11 +27338,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27340,11 +27357,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27361,7 +27378,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27373,7 +27390,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27385,15 +27402,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "Položka {0} byla zakázána"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27405,15 +27422,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27421,7 +27438,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27429,11 +27446,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27449,7 +27466,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27457,7 +27474,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27465,7 +27482,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27511,7 +27528,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27535,7 +27552,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27559,11 +27576,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27575,7 +27592,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27585,7 +27602,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27650,9 +27667,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27714,7 +27731,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27790,7 +27807,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28010,7 +28027,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28138,7 +28155,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28220,7 +28237,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28470,12 +28487,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28486,7 +28503,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28545,7 +28562,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28581,7 +28598,7 @@ msgstr ""
#. Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Link Options"
-msgstr ""
+msgstr "Možnosti propojení"
#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:15
msgid "Link a new bank account"
@@ -28606,7 +28623,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28627,12 +28644,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28640,7 +28657,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28698,8 +28715,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28744,8 +28761,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28946,6 +28963,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28989,10 +29011,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29235,9 +29257,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29257,7 +29279,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29295,12 +29317,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29316,11 +29338,11 @@ msgstr "Uskutečnit hovor"
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29328,8 +29350,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29348,7 +29370,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29364,7 +29386,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29463,8 +29485,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29543,7 +29565,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29568,7 +29590,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29613,10 +29635,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29783,6 +29801,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29797,12 +29821,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29881,7 +29905,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29889,7 +29913,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29970,7 +29994,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30067,11 +30091,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30139,7 +30163,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30205,12 +30229,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30281,9 +30305,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30315,11 +30339,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30380,15 +30404,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30403,7 +30422,7 @@ msgstr ""
#: erpnext/accounts/doctype/account/account.js:169
msgid "Merge"
-msgstr ""
+msgstr "Sloučit"
#: erpnext/accounts/doctype/account/account.js:55
msgid "Merge Account"
@@ -30438,7 +30457,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30468,7 +30487,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30669,7 +30688,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30758,8 +30777,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30767,15 +30786,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30805,7 +30824,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30813,7 +30832,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30850,7 +30869,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31099,11 +31118,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31125,11 +31144,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31138,7 +31157,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31225,7 +31244,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31269,7 +31288,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31278,7 +31297,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31584,7 +31603,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31761,7 +31780,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Nové pracoviště"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31815,7 +31834,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31826,9 +31845,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Call Log'
#: erpnext/telephony/doctype/call_log/call_log.json
msgid "No Answer"
-msgstr ""
+msgstr "Žádná odpověď"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31841,7 +31860,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31857,7 +31876,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31892,7 +31911,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31921,19 +31940,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31963,7 +31982,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32157,7 +32176,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32181,7 +32200,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32252,7 +32271,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32285,7 +32304,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32330,8 +32349,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32406,7 +32425,7 @@ msgstr ""
#: erpnext/support/report/issue_summary/issue_summary.py:206
#: erpnext/support/report/issue_summary/issue_summary.py:287
msgid "Not Specified"
-msgstr ""
+msgstr "Neurčeno"
#. Option for the 'Status' (Select) field in DocType 'Bank Statement Import
#. Log'
@@ -32432,7 +32451,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32486,7 +32505,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32494,7 +32513,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32677,6 +32696,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32736,18 +32760,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32791,7 +32815,7 @@ msgstr ""
#. Label of the on_hold_since (Datetime) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "On Hold Since"
-msgstr ""
+msgstr "Pozastaveno od"
#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
@@ -32875,7 +32899,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32915,7 +32939,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32934,7 +32958,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32971,7 +32995,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33188,8 +33212,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33202,7 +33226,7 @@ msgstr ""
#. Label of the opening_date (Date) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Opening Date"
-msgstr ""
+msgstr "Datum otevření"
#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
@@ -33212,7 +33236,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33245,7 +33269,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33281,23 +33305,23 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
#. Label of the opening_time (Time) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Opening Time"
-msgstr ""
+msgstr "Čas otevření"
#: erpnext/stock/report/stock_balance/stock_balance.py:543
msgid "Opening Value"
@@ -33308,12 +33332,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33345,7 +33372,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33388,15 +33415,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33421,7 +33448,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33436,11 +33463,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33456,9 +33483,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33631,7 +33658,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33781,7 +33808,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33897,7 +33924,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33935,7 +33962,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33954,6 +33981,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33989,7 +34017,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33999,7 +34027,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34059,17 +34087,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34089,11 +34122,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34185,7 +34218,7 @@ msgstr ""
#: erpnext/accounts/report/sales_register/sales_register.py:236
#: erpnext/crm/report/lead_details/lead_details.py:45
msgid "Owner"
-msgstr ""
+msgstr "Vlastník"
#. Label of the asset_owner_section (Section Break) field in DocType 'Asset'
#: erpnext/assets/doctype/asset/asset.json
@@ -34393,7 +34426,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34414,7 +34447,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34450,7 +34483,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34468,11 +34501,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34578,7 +34611,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34615,7 +34648,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34656,7 +34689,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34722,7 +34755,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34816,7 +34849,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34943,7 +34976,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35156,7 +35189,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35183,7 +35216,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35216,7 +35249,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35368,7 +35401,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35477,7 +35510,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35499,7 +35532,7 @@ msgstr ""
#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
msgid "Paused"
-msgstr ""
+msgstr "Pozastaveno"
#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
@@ -35528,7 +35561,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35562,7 +35595,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35709,7 +35742,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35934,7 +35967,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35999,7 +36032,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36028,7 +36061,7 @@ msgstr "Platební plány"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36084,6 +36117,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36098,6 +36132,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36155,7 +36190,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36230,8 +36265,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36278,10 +36313,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36290,9 +36329,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36322,6 +36370,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36431,7 +36487,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36995,8 +37051,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37032,7 +37088,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37080,7 +37136,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37088,7 +37144,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37096,7 +37152,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37130,7 +37186,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37155,11 +37211,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37167,11 +37227,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37183,11 +37243,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37195,11 +37255,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37207,7 +37267,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37231,7 +37291,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37243,20 +37303,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37264,15 +37324,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37280,7 +37340,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37289,7 +37349,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37305,7 +37365,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37325,7 +37385,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37342,7 +37402,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37362,7 +37422,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37390,7 +37450,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37458,11 +37518,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37521,7 +37581,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37537,7 +37597,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37567,7 +37627,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37576,8 +37636,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37609,11 +37669,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37629,7 +37689,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37646,7 +37706,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37670,7 +37730,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37743,11 +37803,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37767,7 +37831,7 @@ msgstr "Vyberte prosím alespoň jeden plán."
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37825,7 +37889,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37852,9 +37916,9 @@ msgstr ""
#: erpnext/setup/doctype/holiday_list/holiday_list.py:52
msgid "Please select weekly off day"
-msgstr ""
+msgstr "Vyberte prosím týdenní den volna"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37863,11 +37927,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37879,7 +37943,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37909,7 +37973,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37927,7 +37991,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37973,7 +38037,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38010,23 +38074,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38055,7 +38119,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38063,7 +38127,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38075,15 +38139,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38122,7 +38186,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38144,7 +38208,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38157,7 +38221,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38230,7 +38294,7 @@ msgstr ""
#: erpnext/support/doctype/support_search_source/support_search_source.json
#: erpnext/support/doctype/support_settings/support_settings.json
msgid "Post Description Key"
-msgstr ""
+msgstr "Klíč popisu účtování"
#. Option for the 'Level' (Select) field in DocType 'Employee Education'
#: erpnext/setup/doctype/employee_education/employee_education.json
@@ -38246,24 +38310,24 @@ msgstr ""
#. Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Post Route Key List"
-msgstr ""
+msgstr "Seznam klíčů tras pošty"
#. Label of the post_route (Data) field in DocType 'Support Search Source'
#. Label of the post_route_string (Data) field in DocType 'Support Settings'
#: erpnext/support/doctype/support_search_source/support_search_source.json
#: erpnext/support/doctype/support_settings/support_settings.json
msgid "Post Route String"
-msgstr ""
+msgstr "Řetězec poštovní trasy"
#. Label of the post_title_key (Data) field in DocType 'Support Search Source'
#. Label of the post_title_key (Data) field in DocType 'Support Settings'
#: erpnext/support/doctype/support_search_source/support_search_source.json
#: erpnext/support/doctype/support_settings/support_settings.json
msgid "Post Title Key"
-msgstr ""
+msgstr "Klíč názvu účtování"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38328,7 +38392,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38346,7 +38410,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38468,10 +38532,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38545,18 +38605,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38729,6 +38794,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38752,6 +38818,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38803,7 +38870,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39158,7 +39225,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39167,8 +39234,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39176,7 +39243,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39244,7 +39311,7 @@ msgstr ""
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:109
msgid "Priority {0} has been repeated."
-msgstr ""
+msgstr "Priorita {0} se opakuje."
#: erpnext/setup/setup_wizard/data/industry_type.txt:38
msgid "Private Equity"
@@ -39279,10 +39346,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39336,7 +39399,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Množství ztráty procesu"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39417,6 +39480,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39512,8 +39579,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39578,7 +39645,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39792,7 +39859,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39836,7 +39903,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39967,7 +40034,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40113,7 +40180,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40128,7 +40195,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40200,8 +40267,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40524,7 +40592,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40539,7 +40607,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40554,7 +40622,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40688,7 +40756,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40786,6 +40854,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40795,10 +40864,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40854,6 +40919,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40902,6 +40968,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41010,11 +41077,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41065,8 +41132,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41121,8 +41188,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41358,17 +41425,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41382,7 +41449,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41514,7 +41581,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41649,7 +41716,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41659,21 +41726,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Množství musí být větší než 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41696,7 +41763,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41704,7 +41771,7 @@ msgstr ""
#. Label of the query_route (Data) field in DocType 'Support Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Query Route String"
-msgstr ""
+msgstr "Řetězec trasy dotazu"
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192
msgid "Queue Size should be between 5 and 100"
@@ -41815,11 +41882,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42126,7 +42193,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42292,7 +42359,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42331,12 +42398,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42345,7 +42406,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42526,7 +42587,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42987,7 +43048,7 @@ msgstr "Referenční #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43149,13 +43210,13 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
msgid "References"
-msgstr ""
+msgstr "Reference"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43317,7 +43378,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43375,7 +43436,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43439,7 +43500,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43456,7 +43517,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43579,7 +43640,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43824,7 +43885,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44005,7 +44066,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44050,7 +44111,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44094,7 +44155,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44164,14 +44225,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44180,13 +44241,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44277,19 +44338,19 @@ msgstr ""
#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Resolution"
-msgstr ""
+msgstr "Vyřešení"
#. Label of the sla_resolution_by (Datetime) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Resolution By"
-msgstr ""
+msgstr "Vyřešit do"
#. Label of the sla_resolution_date (Datetime) field in DocType 'Issue'
#. Label of the resolution_date (Datetime) field in DocType 'Warranty Claim'
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Resolution Date"
-msgstr ""
+msgstr "Datum vyřešení"
#. Label of the section_break_19 (Section Break) field in DocType 'Issue'
#. Label of the resolution_details (Text Editor) field in DocType 'Issue'
@@ -44297,13 +44358,13 @@ msgstr ""
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Resolution Details"
-msgstr ""
+msgstr "Detaily vyřešení"
#. Option for the 'Service Level Agreement Status' (Select) field in DocType
#. 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Resolution Due"
-msgstr ""
+msgstr "Termín vyřešení"
#. Label of the resolution_time (Duration) field in DocType 'Issue'
#. Label of the resolution_time (Duration) field in DocType 'Service Level
@@ -44311,7 +44372,7 @@ msgstr ""
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/doctype/service_level_priority/service_level_priority.json
msgid "Resolution Time"
-msgstr ""
+msgstr "Doba vyřešení"
#. Label of the resolutions (Table) field in DocType 'Quality Action'
#: erpnext/quality_management/doctype/quality_action/quality_action.json
@@ -44333,7 +44394,7 @@ msgstr ""
#: erpnext/support/report/issue_summary/issue_summary.js:45
#: erpnext/support/report/issue_summary/issue_summary.py:378
msgid "Resolved"
-msgstr ""
+msgstr "Vyřešeno"
#. Label of the resolved_by (Link) field in DocType 'Warranty Claim'
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
@@ -44359,23 +44420,23 @@ msgstr ""
#. Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Response Options"
-msgstr ""
+msgstr "Možnosti odpovědi"
#. Label of the response_result_key_path (Data) field in DocType 'Support
#. Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Response Result Key Path"
-msgstr ""
+msgstr "Cesta klíče výsledku odpovědi"
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:99
msgid "Response Time for {0} priority in row {1} can't be greater than Resolution Time."
-msgstr ""
+msgstr "Doba odpovědi pro prioritu {0} na řádku {1} nemůže být delší než doba vyřešení."
#. Label of the response_and_resolution_time_section (Section Break) field in
#. DocType 'Service Level Agreement'
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Response and Resolution"
-msgstr ""
+msgstr "Odpověď a vyřešení"
#. Label of the responsible (Link) field in DocType 'Quality Action Resolution'
#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
@@ -44431,19 +44492,19 @@ msgstr ""
#. Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Result Preview Field"
-msgstr ""
+msgstr "Pole náhledu výsledku"
#. Label of the result_route_field (Data) field in DocType 'Support Search
#. Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Result Route Field"
-msgstr ""
+msgstr "Pole trasy výsledku"
#. Label of the result_title_field (Data) field in DocType 'Support Search
#. Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Result Title Field"
-msgstr ""
+msgstr "Pole názvu výsledku"
#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:43
#: erpnext/buying/doctype/purchase_order/purchase_order.js:320
@@ -44452,7 +44513,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44477,8 +44538,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44553,7 +44614,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44589,7 +44650,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44687,8 +44748,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44920,7 +44981,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44939,8 +45000,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45120,21 +45181,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45155,7 +45216,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45216,31 +45277,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45290,11 +45351,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45302,7 +45363,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45319,7 +45380,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45343,22 +45404,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45387,7 +45448,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45395,7 +45456,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45423,7 +45484,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45464,7 +45525,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45476,10 +45537,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45501,11 +45558,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:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45527,15 +45584,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45543,7 +45600,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45559,18 +45616,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45609,7 +45666,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45629,19 +45686,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45653,19 +45710,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45681,6 +45738,10 @@ 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:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45697,7 +45758,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45710,7 +45771,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45722,7 +45783,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45758,7 +45819,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45774,7 +45835,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Řádek č. {0}: Množství pro položku {1} nemůže být nula."
@@ -45875,7 +45936,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45883,7 +45944,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45891,7 +45952,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45923,11 +45984,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45944,7 +46005,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45964,7 +46025,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45972,7 +46033,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46017,16 +46078,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46042,7 +46103,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46066,7 +46127,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46134,7 +46195,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46146,10 +46207,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46158,11 +46215,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46174,11 +46231,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46186,11 +46243,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46203,11 +46260,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46219,7 +46276,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46265,7 +46322,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46273,7 +46330,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46480,8 +46537,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46503,8 +46560,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46518,18 +46575,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46553,8 +46615,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46723,11 +46785,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46925,25 +46987,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46987,6 +47049,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46999,7 +47062,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47105,7 +47168,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47198,7 +47261,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47222,7 +47285,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47341,7 +47404,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47373,12 +47436,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47620,7 +47683,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47645,7 +47708,7 @@ msgstr ""
#. Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Search Term Param Name"
-msgstr ""
+msgstr "Název parametru vyhledávacího výrazu"
#: banking/src/components/common/AccountsDropdown.tsx:155
msgid "Search account..."
@@ -47739,8 +47802,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47778,7 +47841,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47820,7 +47883,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47856,7 +47919,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47881,7 +47944,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47919,7 +47982,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -47988,13 +48051,13 @@ msgstr ""
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:115
msgid "Select a Default Priority."
-msgstr ""
+msgstr "Vyberte výchozí prioritu."
#: erpnext/selling/page/point_of_sale/pos_payment.js:146
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48017,7 +48080,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48033,8 +48096,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48051,7 +48114,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48083,7 +48146,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48100,7 +48163,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48108,6 +48171,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48123,7 +48192,7 @@ msgstr ""
#: erpnext/setup/doctype/holiday_list/holiday_list.js:65
msgid "Select your weekly off day"
-msgstr ""
+msgstr "Vyberte svůj týdenní den volna"
#. Description of the 'Primary Address and Contact' (Section Break) field in
#. DocType 'Customer'
@@ -48135,7 +48204,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48166,30 +48235,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48442,7 +48511,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48462,7 +48531,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48507,7 +48576,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48647,7 +48716,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48717,7 +48786,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49057,7 +49126,7 @@ msgstr ""
#. Label of the service_level (Data) field in DocType 'Service Level Agreement'
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Service Level Name"
-msgstr ""
+msgstr "Název úrovně služby"
#. Name of a DocType
#: erpnext/support/doctype/service_level_priority/service_level_priority.json
@@ -49131,7 +49200,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49150,8 +49219,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49236,7 +49305,7 @@ msgstr ""
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:82
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:90
msgid "Set Response Time for Priority {0} in row {1}."
-msgstr ""
+msgstr "Nastavte dobu odpovědi pro prioritu {0} na řádku {1}."
#. Label of the set_serial_and_batch_bundle_naming_based_on_naming_series
#. (Check) field in DocType 'Stock Settings'
@@ -49318,11 +49387,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49354,7 +49423,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49465,7 +49534,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49485,6 +49554,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49677,7 +49750,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49715,7 +49788,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49858,8 +49931,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50191,7 +50264,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50236,7 +50309,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50278,8 +50351,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50303,7 +50376,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50326,7 +50399,7 @@ msgstr ""
#. Label of the source_doctype (Link) field in DocType 'Support Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Source DocType"
-msgstr ""
+msgstr "Zdrojový typ dokumentu"
#. Label of the source_document_section (Section Break) field in DocType
#. 'Serial No'
@@ -50367,7 +50440,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50376,18 +50449,18 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
#. Label of the source_type (Select) field in DocType 'Support Search Source'
#: erpnext/support/doctype/support_search_source/support_search_source.json
msgid "Source Type"
-msgstr ""
+msgstr "Zdrojový typ"
#. Label of the set_warehouse (Link) field in DocType 'POS Invoice'
#. Label of the set_warehouse (Link) field in DocType 'Sales Invoice'
@@ -50438,7 +50511,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50446,23 +50524,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50504,7 +50581,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50512,7 +50589,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50536,7 +50613,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50548,6 +50625,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50620,13 +50702,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50647,8 +50729,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50683,7 +50765,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50799,7 +50881,7 @@ msgstr ""
#. Agreement'
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Status Details"
-msgstr ""
+msgstr "Detaily stavu"
#. Label of the illustration_section (Section Break) field in DocType
#. 'Workstation'
@@ -50812,7 +50894,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50842,6 +50924,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50850,8 +50933,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50951,6 +51034,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50960,10 +51053,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51027,7 +51116,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51035,8 +51124,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51114,8 +51203,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51218,8 +51307,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51231,7 +51320,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51243,7 +51332,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51268,9 +51357,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51281,7 +51370,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51306,10 +51395,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51337,7 +51426,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51377,7 +51466,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51492,7 +51581,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51625,11 +51714,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51684,14 +51773,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51749,7 +51838,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52011,7 +52100,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52100,7 +52189,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52121,7 +52210,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52275,7 +52364,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52299,7 +52388,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52459,7 +52548,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52557,6 +52646,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52566,7 +52656,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52581,6 +52671,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52665,7 +52756,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52700,8 +52791,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52753,7 +52842,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52782,7 +52871,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52871,7 +52960,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52888,17 +52977,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52911,8 +52995,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -52931,12 +53015,12 @@ msgstr ""
#: erpnext/support/workspace/support/support.json
#: erpnext/workspace_sidebar/support.json
msgid "Support"
-msgstr ""
+msgstr "Podpora"
#. Name of a report
#: erpnext/support/report/support_hour_distribution/support_hour_distribution.json
msgid "Support Hour Distribution"
-msgstr ""
+msgstr "Rozložení hodin podpory"
#. Label of the portal_sb (Section Break) field in DocType 'Support Settings'
#: erpnext/support/doctype/support_settings/support_settings.json
@@ -52961,7 +53045,7 @@ msgstr ""
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/doctype/issue_type/issue_type.json
msgid "Support Team"
-msgstr ""
+msgstr "Tým podpory"
#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:68
msgid "Support Tickets"
@@ -53003,7 +53087,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53033,7 +53117,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53054,10 +53138,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53205,7 +53295,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53213,24 +53303,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53347,8 +53436,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53380,7 +53469,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53402,7 +53490,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53418,6 +53505,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53429,8 +53517,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53504,7 +53592,7 @@ msgstr ""
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53522,7 +53610,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53537,7 +53625,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53856,7 +53944,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53864,7 +53952,7 @@ msgstr ""
#. Maintenance Team'
#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
msgid "Team"
-msgstr ""
+msgstr "Tým"
#. Label of the team_member (Link) field in DocType 'Maintenance Team Member'
#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json
@@ -53889,8 +53977,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53919,7 +54007,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json
msgid "Template Name"
-msgstr ""
+msgstr "Název šablony"
#. Label of the template_task (Data) field in DocType 'Task'
#: erpnext/projects/doctype/task/task.json
@@ -53941,13 +54029,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54129,7 +54217,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54228,7 +54316,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Pole „Od čísla balíku“ nesmí být prázdné ani mít hodnotu menší než 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54281,7 +54369,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54297,7 +54386,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54333,7 +54422,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54341,7 +54430,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54361,7 +54454,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54394,7 +54487,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54435,11 +54528,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54460,7 +54553,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54477,7 +54570,7 @@ msgstr ""
#: erpnext/setup/doctype/holiday_list/holiday_list.py:126
msgid "The holiday on {0} is not between From Date and To Date"
-msgstr ""
+msgstr "Svátek dne {0} není mezi datem od a datem do"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:811
msgid "The invoice is not fully allocated as there is a difference of {0}."
@@ -54487,7 +54580,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54545,7 +54638,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54557,6 +54650,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54598,7 +54697,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54614,7 +54713,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54647,7 +54746,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54669,11 +54768,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54721,15 +54820,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
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:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54737,19 +54836,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54757,7 +54856,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54773,7 +54872,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54802,7 +54901,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54842,7 +54941,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54898,11 +54997,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54936,7 +55035,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Tento dokument překračuje limit o {0} {1} pro položku {4}. Vytváříte další {3} vůči stejnému {2}?"
@@ -55039,11 +55138,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55112,7 +55211,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55120,15 +55219,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55136,7 +55235,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55205,7 +55304,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55316,7 +55415,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55425,10 +55524,10 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
-msgstr ""
+msgstr "Datum do nemůže být před datem od"
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:38
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:34
@@ -55652,11 +55751,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55699,11 +55802,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55711,7 +55814,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55736,7 +55839,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55886,7 +55989,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55993,12 +56096,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56138,7 +56241,7 @@ msgstr ""
#. Label of the total_hold_time (Duration) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "Total Hold Time"
-msgstr ""
+msgstr "Celková doba podržení"
#. Label of the total_holidays (Int) field in DocType 'Holiday List'
#: erpnext/setup/doctype/holiday_list/holiday_list.json
@@ -56300,7 +56403,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56312,7 +56415,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56595,7 +56698,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56770,7 +56873,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56794,11 +56897,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56903,7 +57006,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56950,11 +57054,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57135,8 +57244,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57400,6 +57509,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57415,7 +57525,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57476,7 +57586,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57489,7 +57599,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57561,12 +57671,12 @@ msgstr ""
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57648,7 +57758,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57667,7 +57777,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57684,7 +57794,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57829,7 +57939,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57869,12 +57979,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58050,7 +58160,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58129,11 +58239,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58335,7 +58445,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58377,7 +58487,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58399,7 +58509,7 @@ msgstr ""
#. Label of the user_resolution_time (Duration) field in DocType 'Issue'
#: erpnext/support/doctype/issue/issue.json
msgid "User Resolution Time"
-msgstr ""
+msgstr "Doba vyřešení uživatelem"
#: erpnext/accounts/doctype/pricing_rule/utils.py:595
msgid "User has not applied rule on the invoice {0}"
@@ -58441,6 +58551,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58463,8 +58578,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58474,7 +58589,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58484,12 +58599,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58512,7 +58627,7 @@ msgstr ""
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
msgid "Valid From"
-msgstr ""
+msgstr "Platné od"
#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:45
msgid "Valid From date not in Fiscal Year {0}"
@@ -58683,7 +58798,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58699,14 +58813,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58714,19 +58826,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58736,7 +58848,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58750,7 +58862,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58762,7 +58874,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58881,12 +58993,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58905,7 +59017,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58923,7 +59035,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58934,7 +59046,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59018,7 +59130,7 @@ msgstr ""
#: erpnext/support/doctype/issue/issue.json
#: erpnext/support/web_form/issues/issues.json
msgid "Via Customer Portal"
-msgstr ""
+msgstr "Přes zákaznický portál"
#. Label of the via_landed_cost_voucher (Check) field in DocType 'Repost Item
#. Valuation'
@@ -59228,7 +59340,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59300,7 +59412,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59374,7 +59486,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59401,7 +59513,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59581,8 +59693,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59607,7 +59719,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59744,11 +59856,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59838,7 +59950,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59907,7 +60019,7 @@ msgstr "Webové stránky:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60037,7 +60149,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60047,7 +60159,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60057,11 +60169,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60206,7 +60318,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60243,7 +60355,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60277,7 +60389,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60318,19 +60430,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60339,16 +60455,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60373,7 +60489,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60384,7 +60500,7 @@ msgstr ""
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:137
msgid "Workday {0} has been repeated."
-msgstr ""
+msgstr "Pracovní den {0} byl zopakován."
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
@@ -60421,7 +60537,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60512,14 +60628,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60624,7 +60740,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60680,11 +60796,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60692,7 +60808,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60720,7 +60836,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60761,11 +60877,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60789,7 +60905,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60850,7 +60966,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60862,19 +60978,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60886,7 +61002,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60910,7 +61026,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60926,7 +61042,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60973,11 +61089,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60999,11 +61115,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61044,7 +61160,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61193,7 +61309,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61226,7 +61342,7 @@ msgstr ""
msgid "reconciled"
msgstr "spárováno"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61261,7 +61377,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61269,8 +61385,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61288,7 +61404,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61315,7 +61431,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61337,7 +61453,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61345,7 +61461,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61353,7 +61469,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61386,11 +61502,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61398,7 +61514,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61486,11 +61602,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61502,7 +61618,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61511,7 +61627,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61536,7 +61652,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61558,7 +61674,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61566,12 +61682,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61579,7 +61695,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61587,7 +61703,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61595,7 +61711,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61635,27 +61751,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61663,7 +61779,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61679,7 +61795,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61692,7 +61808,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61708,16 +61824,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61729,7 +61845,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61745,7 +61861,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61783,8 +61899,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61894,7 +62010,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61943,8 +62059,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61964,11 +62080,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} neexistuje"
@@ -61976,11 +62092,11 @@ msgstr "{0}: {1} neexistuje"
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61992,7 +62108,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62004,7 +62120,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/da.po b/erpnext/locale/da.po
index 9df59f98acf..f4afc2b3901 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-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Underenhed"
msgid " Summary"
msgstr " Oversigt"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
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:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Kunde Leverede Artikel\" kan ikke have Værdiansættelsesrate"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
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"
@@ -268,11 +268,11 @@ 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:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "\"Konto\" i Regnskab Sektion for Kunde {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Tillad flere Salg Ordrer mod Kundes Indkøb Ordre'"
@@ -284,7 +284,7 @@ msgstr "'Baseret På' og 'Gruppér Efter' må ikke være det samme"
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:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standard {0} Konto' i Selskab {1}"
@@ -302,7 +302,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:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Har Serienummer' kan ikke være 'Ja' for ikke Lager Artikel"
@@ -314,9 +314,9 @@ msgstr "\"Kontrol påkrævet før levering\" er deaktiveret for artikel {0}, der
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "\"Kontrol påkrævet før Inkøb\" er deaktiveret for artikel {0}, der er ikke behov for at oprette Kvalitet Kontrol"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Åbning'"
@@ -346,8 +346,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:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' skal være i selskab valuta {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90-120 Dage"
msgid "90 Above"
msgstr "90 Over"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -758,7 +758,7 @@ msgstr "Dato Indsti
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -775,7 +775,7 @@ msgstr ""
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -819,7 +819,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -892,11 +892,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -941,7 +941,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - B"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1105,11 +1105,11 @@ msgstr "Forkortelse"
msgid "Abbreviation"
msgstr "Forkortelse"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Forkortelse er obligatorisk"
@@ -1117,7 +1117,7 @@ msgstr "Forkortelse er obligatorisk"
msgid "Abbreviation: {0} must appear only once"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1171,7 +1171,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Accepteret antal i Lager Enhed"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Accepteret Antal"
@@ -1207,7 +1207,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "I henhold til CEFACT/ICG/2010/IC013 eller CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1325,8 +1325,8 @@ msgstr "Konto"
msgid "Account Manager"
msgstr "Konto Ansvarlig"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Konto Mangler"
@@ -1344,7 +1344,7 @@ msgstr "Konto Mangler"
msgid "Account Name"
msgstr "Konto Navn"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Konto Ikke Fundet"
@@ -1357,7 +1357,7 @@ msgstr "Konto Ikke Fundet"
msgid "Account Number"
msgstr "Konto Nummer"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1396,7 +1396,7 @@ msgstr "Konto Undertype"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1412,11 +1412,11 @@ msgstr "Konto Type"
msgid "Account Value"
msgstr "Konto Værdi"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1483,15 +1483,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1499,8 +1499,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1508,11 +1508,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1520,11 +1520,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1540,15 +1540,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1556,7 +1556,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1564,19 +1564,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1592,7 +1592,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1877,8 +1877,8 @@ msgstr "Bogføring Poster"
msgid "Accounting Entry for Asset"
msgstr "Bogføring Post for Aktiv"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1902,8 +1902,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1912,7 +1912,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1967,7 +1967,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1980,14 +1979,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Bogføring"
@@ -2017,8 +2015,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2118,15 +2116,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2291,7 +2289,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2415,7 +2413,7 @@ msgstr "Faktisk Slutdato"
msgid "Actual End Date (via Timesheet)"
msgstr "Faktisk Slutdato (via Timeseddel)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Faktisk Slutdato kan ikke være før Faktisk Startdato"
@@ -2537,7 +2535,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2546,7 +2544,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Tilføj / Rediger Priser"
@@ -3045,7 +3043,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3068,7 +3066,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3076,11 +3074,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3226,11 +3219,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3243,8 +3231,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3312,7 +3300,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3432,7 +3420,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3574,11 +3562,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3728,21 +3716,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3822,7 +3810,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3836,6 +3824,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3844,23 +3837,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3874,11 +3867,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3897,7 +3890,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3907,7 +3900,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3937,7 +3930,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3994,7 +3987,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4058,7 +4051,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4181,16 +4174,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4316,6 +4299,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4392,10 +4385,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4407,6 +4398,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4448,8 +4444,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4690,7 +4686,7 @@ msgstr ""
msgid "Amount"
msgstr "Beløb"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4824,11 +4820,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4874,11 +4870,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5418,7 +5414,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5430,7 +5426,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5568,7 +5564,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5745,8 +5741,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5846,7 +5842,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5878,7 +5874,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5886,20 +5882,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5919,7 +5915,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5960,7 +5956,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6010,7 +6006,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6071,7 +6067,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6079,20 +6075,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6175,11 +6167,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6187,19 +6179,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6411,7 +6403,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6523,7 +6515,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6612,10 +6604,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6624,8 +6612,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6649,7 +6637,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6673,7 +6663,7 @@ msgid "Avg Rate"
msgstr "Gennemsnitlig Pris"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6731,7 +6721,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6754,7 +6744,7 @@ msgstr "Stykliste"
msgid "BOM 1"
msgstr "Stykliste 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Stykliste 1 {0} og Stykliste 2 {1} bør ikke være ens"
@@ -6826,11 +6816,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Stykliste Info"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6984,7 +6969,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7052,7 +7037,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7116,7 +7101,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7181,7 +7166,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7337,8 +7322,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7453,8 +7438,8 @@ msgstr ""
msgid "Bank Name"
msgstr "Bank Navn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7627,11 +7612,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7788,7 +7773,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7863,7 +7848,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7952,13 +7937,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7975,7 +7960,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -7998,12 +7983,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8058,7 +8043,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8067,7 +8052,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8081,11 +8066,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8186,7 +8173,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8438,6 +8425,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8534,7 +8531,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8793,8 +8790,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8955,14 +8952,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9012,8 +9009,8 @@ msgstr ""
msgid "CRM Settings"
msgstr "Indstillinger"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9268,7 +9265,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9301,13 +9298,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9349,7 +9346,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9357,9 +9354,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9387,7 +9384,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9407,7 +9404,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9427,15 +9424,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9443,11 +9440,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9463,11 +9460,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9475,7 +9472,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9501,7 +9498,7 @@ msgstr "Kan ikke erklæres tabt, fordi der er afgivet tilbud."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9509,12 +9506,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9526,7 +9523,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9534,20 +9531,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9563,7 +9560,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9571,15 +9568,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9587,12 +9584,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9605,14 +9602,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9626,7 +9623,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9634,11 +9631,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr ""
@@ -9650,7 +9647,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9683,7 +9680,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9702,13 +9699,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9925,7 +9922,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10030,7 +10027,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10040,7 +10037,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10048,7 +10045,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10063,7 +10060,7 @@ msgid "Channel Partner"
msgstr "Kanal Partner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10117,7 +10114,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10260,7 +10257,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10318,7 +10315,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10370,6 +10367,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10512,11 +10514,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10768,11 +10770,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10803,7 +10811,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11202,8 +11210,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11256,7 +11264,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11345,18 +11353,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11452,7 +11462,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11487,7 +11497,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11526,12 +11536,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11573,7 +11583,7 @@ msgstr "Konkurrent Navn"
msgid "Competitors"
msgstr "Konkurrenter"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11620,12 +11630,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11814,7 +11824,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12008,7 +12018,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12037,7 +12047,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12165,7 +12175,7 @@ msgstr ""
msgid "Contact Person"
msgstr "Kontakt Person"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12291,6 +12301,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12351,7 +12366,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12359,15 +12374,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12444,13 +12459,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12617,7 +12632,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12750,7 +12765,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12793,17 +12808,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12883,7 +12894,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13072,7 +13083,7 @@ msgstr ""
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13104,7 +13115,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13171,7 +13182,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13316,7 +13327,7 @@ msgstr "Opret Opgave"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13354,12 +13365,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13390,12 +13401,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13429,7 +13440,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13462,7 +13473,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13655,7 +13666,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13665,12 +13676,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13702,7 +13707,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13730,7 +13735,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13738,7 +13743,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13747,20 +13752,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13768,8 +13773,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13939,7 +13944,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13949,7 +13954,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14032,8 +14037,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14100,6 +14105,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14195,7 +14205,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14302,7 +14311,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14391,8 +14399,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14406,7 +14414,7 @@ msgstr "Kunde Kode"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14489,6 +14497,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14511,7 +14520,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14528,6 +14537,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14571,7 +14581,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14623,7 +14633,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14729,7 +14739,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14786,9 +14796,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14900,7 +14910,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -14991,7 +15001,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15217,7 +15227,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15245,13 +15255,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15379,8 +15389,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15406,14 +15415,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15428,19 +15437,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15493,9 +15502,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15611,6 +15618,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15646,23 +15663,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15785,15 +15798,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15845,7 +15858,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15936,6 +15949,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16018,12 +16037,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16044,8 +16063,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16156,11 +16175,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16241,7 +16260,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16301,11 +16320,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16391,10 +16410,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16514,8 +16529,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16608,7 +16623,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16766,15 +16781,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16886,15 +16901,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16975,6 +16990,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17011,11 +17031,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17031,7 +17051,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17039,15 +17059,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17334,7 +17354,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17415,7 +17435,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17529,8 +17549,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17592,7 +17612,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17616,7 +17636,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17628,7 +17648,7 @@ msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447
msgid "DocType {0} does not exist"
-msgstr ""
+msgstr "DocType {0} findes ikke"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295
msgid "DocType {0} with company field '{1}' is already in the list"
@@ -17683,11 +17703,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17850,12 +17870,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17876,12 +17890,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18040,8 +18048,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18124,7 +18132,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18238,6 +18246,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18257,8 +18269,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18462,8 +18474,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18546,7 +18558,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18562,7 +18574,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18593,7 +18605,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18759,12 +18771,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18893,8 +18899,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18993,8 +18999,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19019,7 +19025,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19031,7 +19037,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19074,7 +19080,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19082,7 +19088,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19094,8 +19100,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19119,8 +19125,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19181,7 +19187,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19191,7 +19197,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19237,7 +19243,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19256,7 +19262,7 @@ msgstr ""
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19266,7 +19272,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19274,7 +19280,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19305,17 +19311,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19454,7 +19460,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19541,7 +19547,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19625,7 +19631,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19703,23 +19709,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19798,7 +19804,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19935,7 +19941,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20053,6 +20059,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20090,21 +20101,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20312,9 +20331,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20371,15 +20390,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20425,7 +20444,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20466,7 +20485,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20607,6 +20626,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20625,7 +20645,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20644,8 +20664,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20718,7 +20738,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20775,7 +20795,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20785,7 +20805,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20806,17 +20826,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20844,11 +20860,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20886,7 +20902,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20900,7 +20916,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20917,7 +20933,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20926,12 +20942,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20950,7 +20966,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -20997,11 +21013,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21047,7 +21058,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21092,8 +21103,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21527,8 +21538,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21545,13 +21556,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21559,7 +21570,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21644,9 +21655,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21819,7 +21830,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21877,7 +21888,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21916,7 +21927,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22090,7 +22101,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22099,7 +22110,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22282,7 +22293,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22725,7 +22736,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22753,7 +22764,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Hej,"
@@ -22952,7 +22963,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23120,6 +23131,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23337,7 +23354,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23363,13 +23380,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23378,7 +23400,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23388,7 +23410,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23465,7 +23487,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23479,7 +23501,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23563,7 +23585,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23650,12 +23672,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23813,7 +23835,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23937,7 +23959,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24168,8 +24190,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24240,7 +24262,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24272,7 +24294,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24280,7 +24302,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24414,15 +24436,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24490,14 +24512,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24514,8 +24536,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24545,7 +24567,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24584,11 +24606,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24596,13 +24618,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24722,13 +24743,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24736,8 +24757,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24757,7 +24778,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24765,7 +24786,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24773,7 +24794,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24804,7 +24825,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24817,7 +24838,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24833,12 +24859,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24859,7 +24885,7 @@ msgstr ""
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24872,7 +24898,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24888,21 +24914,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24940,7 +24966,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24954,7 +24980,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24962,11 +24988,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -24996,12 +25022,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25026,12 +25052,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25056,7 +25082,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25068,7 +25094,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25094,8 +25120,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25103,7 +25129,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25113,7 +25139,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25162,8 +25188,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25213,7 +25239,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25318,7 +25344,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25339,7 +25365,7 @@ msgstr "Faktureret Antal"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25435,8 +25461,7 @@ msgstr "Er Alternativ"
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25878,8 +25903,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25985,7 +26009,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26016,11 +26040,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26144,7 +26168,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26392,7 +26416,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26454,7 +26478,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26653,13 +26677,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26876,7 +26900,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26916,10 +26940,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26960,10 +26984,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26979,19 +26999,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27178,11 +27199,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27283,11 +27304,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27313,11 +27334,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27336,11 +27353,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27357,7 +27374,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27369,7 +27386,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27381,15 +27398,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27401,15 +27418,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27417,7 +27434,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27425,11 +27442,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27445,7 +27462,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27453,7 +27470,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27461,7 +27478,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27507,7 +27524,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27531,7 +27548,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27555,11 +27572,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27571,7 +27588,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27581,7 +27598,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27646,9 +27663,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27710,7 +27727,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27786,7 +27803,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28006,7 +28023,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28134,7 +28151,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28216,7 +28233,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28466,12 +28483,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28482,7 +28499,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28541,7 +28558,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28602,7 +28619,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28623,12 +28640,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28636,7 +28653,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28694,8 +28711,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28740,8 +28757,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28942,6 +28959,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28985,10 +29007,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29231,9 +29253,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29253,7 +29275,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29291,12 +29313,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29312,11 +29334,11 @@ msgstr ""
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29324,8 +29346,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29344,7 +29366,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29360,7 +29382,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29459,8 +29481,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29539,7 +29561,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29564,7 +29586,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29609,10 +29631,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29779,6 +29797,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29793,12 +29817,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29877,7 +29901,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29885,7 +29909,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29966,7 +29990,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30063,11 +30087,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30135,7 +30159,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30201,12 +30225,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30277,9 +30301,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30311,11 +30335,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30376,15 +30400,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30434,7 +30453,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30464,7 +30483,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30665,7 +30684,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30754,8 +30773,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30763,15 +30782,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30801,7 +30820,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30809,7 +30828,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30846,7 +30865,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31095,11 +31114,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31121,11 +31140,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31134,7 +31153,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31221,7 +31240,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31265,7 +31284,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31274,7 +31293,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31580,7 +31599,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31757,7 +31776,7 @@ msgstr ""
msgid "New Workplace"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31811,7 +31830,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31824,7 +31843,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31837,7 +31856,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31853,7 +31872,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31888,7 +31907,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31917,19 +31936,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31959,7 +31978,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32153,7 +32172,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32177,7 +32196,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32248,7 +32267,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32281,7 +32300,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32326,8 +32345,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32428,7 +32447,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32482,7 +32501,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32490,7 +32509,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32673,6 +32692,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32732,18 +32756,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32871,7 +32895,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32911,7 +32935,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32930,7 +32954,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32967,7 +32991,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33184,8 +33208,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33208,7 +33232,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33241,7 +33265,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33277,16 +33301,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33304,12 +33328,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33341,7 +33368,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33384,15 +33411,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33417,7 +33444,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33432,11 +33459,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33452,9 +33479,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33627,7 +33654,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33777,7 +33804,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33893,7 +33920,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33931,7 +33958,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33950,6 +33977,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33985,7 +34013,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33995,7 +34023,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34055,17 +34083,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34085,11 +34118,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34389,7 +34422,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34410,7 +34443,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34446,7 +34479,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34464,11 +34497,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34574,7 +34607,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34611,7 +34644,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34652,7 +34685,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34718,7 +34751,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34812,7 +34845,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34939,7 +34972,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35152,7 +35185,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35179,7 +35212,7 @@ msgstr "Parti"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35212,7 +35245,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35364,7 +35397,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35473,7 +35506,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35524,7 +35557,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35558,7 +35591,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35705,7 +35738,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35930,7 +35963,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35995,7 +36028,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36024,7 +36057,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36080,6 +36113,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36094,6 +36128,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36151,7 +36186,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36226,8 +36261,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36274,10 +36309,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36286,9 +36325,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36318,6 +36366,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36427,7 +36483,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36991,8 +37047,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37028,7 +37084,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37076,7 +37132,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37084,7 +37140,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37092,7 +37148,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37126,7 +37182,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37151,11 +37207,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37163,11 +37223,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37179,11 +37239,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37191,11 +37251,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37203,7 +37263,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37227,7 +37287,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37239,20 +37299,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37260,15 +37320,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37276,7 +37336,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37285,7 +37345,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37301,7 +37361,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37321,7 +37381,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37338,7 +37398,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37358,7 +37418,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37386,7 +37446,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37454,11 +37514,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37517,7 +37577,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37533,7 +37593,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37563,7 +37623,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37572,8 +37632,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37605,11 +37665,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37625,7 +37685,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37642,7 +37702,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37666,7 +37726,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37739,11 +37799,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37763,7 +37827,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37821,7 +37885,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37850,7 +37914,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37859,11 +37923,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37875,7 +37939,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37905,7 +37969,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37923,7 +37987,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37969,7 +38033,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38006,23 +38070,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38051,7 +38115,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38059,7 +38123,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38071,15 +38135,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38118,7 +38182,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38140,7 +38204,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38153,7 +38217,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38258,8 +38322,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38324,7 +38388,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38342,7 +38406,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38464,10 +38528,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38541,18 +38601,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38725,6 +38790,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38748,6 +38814,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38799,7 +38866,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39154,7 +39221,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39163,8 +39230,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39172,7 +39239,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39275,10 +39342,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39332,7 +39395,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39413,6 +39476,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39508,8 +39575,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39574,7 +39641,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39788,7 +39855,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39832,7 +39899,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39963,7 +40030,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40109,7 +40176,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40124,7 +40191,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40196,8 +40263,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40520,7 +40588,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40535,7 +40603,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40550,7 +40618,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40684,7 +40752,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40782,6 +40850,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40791,10 +40860,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40850,6 +40915,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40898,6 +40964,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41006,11 +41073,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41061,8 +41128,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41117,8 +41184,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41354,17 +41421,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41378,7 +41445,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41510,7 +41577,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41645,7 +41712,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41655,21 +41722,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41692,7 +41759,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41811,11 +41878,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42122,7 +42189,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42288,7 +42355,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42327,12 +42394,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42341,7 +42402,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42522,7 +42583,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42983,7 +43044,7 @@ msgstr ""
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43147,11 +43208,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43313,7 +43374,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43371,7 +43432,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43435,7 +43496,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43452,7 +43513,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43575,7 +43636,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43820,7 +43881,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44001,7 +44062,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44046,7 +44107,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44090,7 +44151,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44160,14 +44221,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44176,13 +44237,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44448,7 +44509,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44473,8 +44534,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44549,7 +44610,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44585,7 +44646,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44683,8 +44744,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44916,7 +44977,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44935,8 +44996,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45116,21 +45177,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45151,7 +45212,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45212,31 +45273,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45286,11 +45347,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45298,7 +45359,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45315,7 +45376,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45339,22 +45400,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45383,7 +45444,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45391,7 +45452,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45419,7 +45480,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45460,7 +45521,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45472,10 +45533,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45497,11 +45554,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45523,15 +45580,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45539,7 +45596,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45555,18 +45612,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45605,7 +45662,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45625,19 +45682,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45649,19 +45706,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45677,6 +45734,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr ""
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45693,7 +45754,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45706,7 +45767,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45718,7 +45779,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45754,7 +45815,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45770,7 +45831,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45871,7 +45932,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45879,7 +45940,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45887,7 +45948,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45919,11 +45980,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45940,7 +46001,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45960,7 +46021,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45968,7 +46029,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46013,16 +46074,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46038,7 +46099,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46062,7 +46123,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46130,7 +46191,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46142,10 +46203,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46154,11 +46211,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46170,11 +46227,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46182,11 +46239,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46199,11 +46256,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46215,7 +46272,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46261,7 +46318,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46269,7 +46326,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46476,8 +46533,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46499,8 +46556,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46514,18 +46571,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46549,8 +46611,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46719,11 +46781,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46921,25 +46983,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46983,6 +47045,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46995,7 +47058,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47101,7 +47164,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47194,7 +47257,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47218,7 +47281,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47337,7 +47400,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47369,12 +47432,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47616,7 +47679,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47735,8 +47798,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47774,7 +47837,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47816,7 +47879,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47852,7 +47915,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47877,7 +47940,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47915,7 +47978,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -47990,7 +48053,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48013,7 +48076,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48029,8 +48092,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48047,7 +48110,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48079,7 +48142,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48096,7 +48159,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48104,6 +48167,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48131,7 +48200,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48162,30 +48231,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48438,7 +48507,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48458,7 +48527,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48503,7 +48572,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48643,7 +48712,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48713,7 +48782,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49127,7 +49196,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49146,8 +49215,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49314,11 +49383,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49350,7 +49419,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49461,7 +49530,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49481,6 +49550,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49673,7 +49746,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49711,7 +49784,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49854,8 +49927,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50187,7 +50260,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50232,7 +50305,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50274,8 +50347,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50299,7 +50372,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50363,7 +50436,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50372,11 +50445,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50434,7 +50507,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50442,23 +50520,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50500,7 +50577,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50508,7 +50585,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50532,7 +50609,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50544,6 +50621,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50616,13 +50698,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50643,8 +50725,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50679,7 +50761,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50808,7 +50890,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50838,6 +50920,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50846,8 +50929,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50947,6 +51030,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50956,10 +51049,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51023,7 +51112,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51031,8 +51120,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51110,8 +51199,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51214,8 +51303,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51227,7 +51316,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51239,7 +51328,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51264,9 +51353,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51277,7 +51366,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51302,10 +51391,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51333,7 +51422,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51373,7 +51462,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51488,7 +51577,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51621,11 +51710,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51680,14 +51769,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51745,7 +51834,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52007,7 +52096,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52096,7 +52185,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52117,7 +52206,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52271,7 +52360,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52295,7 +52384,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52455,7 +52544,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52553,6 +52642,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52562,7 +52652,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52577,6 +52667,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52661,7 +52752,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52696,8 +52787,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52749,7 +52838,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52778,7 +52867,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52867,7 +52956,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52884,17 +52973,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52907,8 +52991,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -52999,7 +53083,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53029,7 +53113,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53050,10 +53134,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53201,7 +53291,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53209,24 +53299,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53343,8 +53432,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53376,7 +53465,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53398,7 +53486,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53414,6 +53501,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53425,8 +53513,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53500,7 +53588,7 @@ msgstr "Momssats %"
msgid "Tax Rates"
msgstr "Momssatser"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53518,7 +53606,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53533,7 +53621,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53852,7 +53940,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53885,8 +53973,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53937,13 +54025,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54125,7 +54213,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54224,7 +54312,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54277,7 +54365,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54293,7 +54382,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54329,7 +54418,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54337,7 +54426,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54357,7 +54450,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54390,7 +54483,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54431,11 +54524,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54456,7 +54549,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54483,7 +54576,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54541,7 +54634,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54553,6 +54646,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54594,7 +54693,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54610,7 +54709,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54643,7 +54742,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54665,11 +54764,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54717,15 +54816,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54733,19 +54832,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54753,7 +54852,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54769,7 +54868,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54798,7 +54897,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54838,7 +54937,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54894,11 +54993,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54932,7 +55031,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr ""
@@ -55035,11 +55134,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55108,7 +55207,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55116,15 +55215,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55132,7 +55231,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55201,7 +55300,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55312,7 +55411,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55421,7 +55520,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55648,11 +55747,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55695,11 +55798,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55707,7 +55810,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55732,7 +55835,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55882,7 +55985,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55989,12 +56092,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56296,7 +56399,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56308,7 +56411,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56591,7 +56694,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56766,7 +56869,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56790,11 +56893,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56899,7 +57002,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56946,11 +57050,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57131,8 +57240,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57396,6 +57505,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57411,7 +57521,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57472,7 +57582,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57485,7 +57595,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57557,12 +57667,12 @@ msgstr ""
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57644,7 +57754,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57663,7 +57773,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57680,7 +57790,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57825,7 +57935,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57865,12 +57975,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58046,7 +58156,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58125,11 +58235,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58331,7 +58441,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58373,7 +58483,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58437,6 +58547,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58459,8 +58574,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58470,7 +58585,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58480,12 +58595,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58679,7 +58794,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58695,14 +58809,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58710,19 +58822,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58732,7 +58844,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58746,7 +58858,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58758,7 +58870,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58877,12 +58989,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58901,7 +59013,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58919,7 +59031,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58930,7 +59042,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59224,7 +59336,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59296,7 +59408,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59370,7 +59482,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59397,7 +59509,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59577,8 +59689,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59603,7 +59715,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59740,11 +59852,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59834,7 +59946,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59897,13 +60009,13 @@ msgstr ""
#: erpnext/accounts/letterhead/company_letterhead.html:91
#: erpnext/accounts/letterhead/company_letterhead_grey.html:109
msgid "Website:"
-msgstr ""
+msgstr "Websted:"
#: erpnext/public/js/utils/naming_series.js:95
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60033,7 +60145,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60043,7 +60155,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60053,11 +60165,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60202,7 +60314,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60239,7 +60351,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60273,7 +60385,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60314,19 +60426,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60335,16 +60451,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60369,7 +60485,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60417,7 +60533,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60508,14 +60624,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60620,7 +60736,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60676,11 +60792,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60688,7 +60804,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60716,7 +60832,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60757,11 +60873,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60785,7 +60901,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60846,7 +60962,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60858,19 +60974,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60882,7 +60998,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60906,7 +61022,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60922,7 +61038,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60969,11 +61085,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60995,11 +61111,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61040,7 +61156,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61189,7 +61305,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61222,7 +61338,7 @@ msgstr ""
msgid "reconciled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61257,7 +61373,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61265,8 +61381,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61284,7 +61400,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61311,7 +61427,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61333,7 +61449,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61341,7 +61457,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61349,7 +61465,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61382,11 +61498,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61394,7 +61510,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61482,11 +61598,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61498,7 +61614,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61507,7 +61623,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61532,7 +61648,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61554,7 +61670,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61562,12 +61678,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61575,7 +61691,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61583,7 +61699,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61591,7 +61707,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61631,27 +61747,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61659,7 +61775,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61675,7 +61791,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61688,7 +61804,7 @@ msgstr "{0} til {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61704,16 +61820,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61725,7 +61841,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61741,7 +61857,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61779,8 +61895,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61890,7 +62006,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61939,8 +62055,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61960,11 +62076,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61972,11 +62088,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61988,7 +62104,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62000,7 +62116,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/de.po b/erpnext/locale/de.po
index ff3fbb0e653..122233de143 100644
--- a/erpnext/locale/de.po
+++ b/erpnext/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Unterbaugruppe"
msgid " Summary"
msgstr " Zusammenfassung"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Vom Kunden beigestellter Artikel\" kann nicht gleichzeitig \"Einkaufsartikel\" sein"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Vom Kunden beigestellter Artikel\" kann keinen Bewertungssatz haben"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Ist Anlagevermögen\" kann nicht deaktiviert werden, da Anlagebuchung für den Artikel vorhanden"
@@ -273,11 +273,11 @@ msgstr "% der Materialien, die im Rahmen dieser Entnahmeliste kommissioniert wur
msgid "% of materials delivered against this Sales Order"
msgstr "% der für diesen Auftrag gelieferten Materialien"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "„Konto“ im Abschnitt „Buchhaltung“ von Kunde {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "Mehrere Aufträge (je Kunde) mit derselben Bestellnummer erlauben"
@@ -289,7 +289,7 @@ msgstr "„Basierend auf“ und „Gruppieren nach“ dürfen nicht identisch se
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "„Tage seit der letzten Bestellung“ muss größer oder gleich null sein"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standardkonto {0} ' in Unternehmen {1}"
@@ -307,7 +307,7 @@ msgstr "\"Von-Datum\" ist erforderlich"
msgid "'From Date' must be after 'To Date'"
msgstr "\"Von-Datum\" muss nach \"Bis-Datum\" liegen"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "„Hat Seriennummer“ kann für Artikel ohne Lagerhaltung nicht aktiviert werden"
@@ -319,9 +319,9 @@ msgstr "'Inspektion vor der Auslieferung erforderlich' wurde für den Artikel {0
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Inspektion vor dem Kauf erforderlich' wurde für den Artikel {0} deaktiviert, es ist nicht erforderlich, die Qualitätsprüfung zu erstellen"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "\"Eröffnung\""
@@ -351,8 +351,8 @@ msgstr "Das Konto '{0}' wird bereits von {1} verwendet. Verwenden Sie ein andere
msgid "'{0}' has been already added."
msgstr "„{0}“ wurde bereits hinzugefügt."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "„{0}“ sollte in der Unternehmenswährung {1} sein."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 Tage"
msgid "90 Above"
msgstr "über 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Datumseinst
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Verrechnungsdatum muss nach dem Scheckdatum liegen für Zeile(n): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikel {0} in Zeile(n) {1} mit mehr als {2} abgerechnet "
@@ -825,7 +825,7 @@ msgstr "Zahlungsbeleg erforderlich für Zeile(n): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Folgende Artikel können nicht überberechnet werden:
"
@@ -888,7 +888,7 @@ msgstr "Buchungsdatum {0} kann nicht vor dem Bestelldatum der folgenden Beste
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 "Der Listenpreis wurde in den Verkaufseinstellungen nicht als bearbeitbar festgelegt. In diesem Fall verhindert die Einstellung Preisliste aktualisieren auf Basis des Listenpreises die automatische Aktualisierung des Artikelpreises.
Möchten Sie wirklich fortfahren?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Um Überberechnung zu erlauben, legen Sie bitte einen Toleranzwert in den Kontoeinstellungen fest.
"
@@ -976,11 +976,11 @@ msgstr "Ihre Verknüpfungen\n"
msgid "Your Shortcuts "
msgstr "Ihre Verknüpfungen "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Gesamtsumme: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Ausstehender Betrag: {0}"
@@ -1050,7 +1050,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Eine Kundengruppe mit dem gleichen Namen existiert bereits. Bitte den Kundennamen ändern oder die Kundengruppe umbenennen"
@@ -1214,11 +1214,11 @@ msgstr "Abkürzung"
msgid "Abbreviation"
msgstr "Abkürzung"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Abkürzung bereits für ein anderes Unternehmen verwendet"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Abkürzung ist zwingend erforderlich"
@@ -1226,7 +1226,7 @@ msgstr "Abkürzung ist zwingend erforderlich"
msgid "Abbreviation: {0} must appear only once"
msgstr "Abkürzung: {0} darf nur einmal erscheinen"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Über"
@@ -1280,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Angenommene Menge in Lagereinheit"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Angenommene Menge"
@@ -1316,7 +1316,7 @@ msgstr "Zugangsschlüssel ist erforderlich für Dienstanbieter: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Gemäß CEFACT/ICG/2010/IC013 oder CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Laut Stückliste {0} fehlt in der Lagerbuchung die Position '{1}'."
@@ -1434,8 +1434,8 @@ msgstr "Konto"
msgid "Account Manager"
msgstr "Kundenbetreuer"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Konto fehlt"
@@ -1453,7 +1453,7 @@ msgstr "Konto fehlt"
msgid "Account Name"
msgstr "Kontoname"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Konto nicht gefunden"
@@ -1466,7 +1466,7 @@ msgstr "Konto nicht gefunden"
msgid "Account Number"
msgstr "Kontonummer"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Die Kontonummer {0} wurde bereits im Konto {1} verwendet"
@@ -1505,7 +1505,7 @@ msgstr "Kontosubtyp"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1521,11 +1521,11 @@ msgstr "Kontotyp"
msgid "Account Value"
msgstr "Kontostand"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Der Kontostand ist bereits im Haben, daher können Sie „Saldo muss sein“ nicht auf „Soll“ setzen"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Der Kontostand ist bereits im Soll, daher können Sie „Saldo muss sein“ nicht auf „Haben“ setzen"
@@ -1592,15 +1592,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Ein Konto mit Unterknoten kann nicht in ein Kontoblatt umgewandelt werden"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Konto mit untergeordneten Knoten kann nicht als Hauptbuch festgelegt werden"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Ein Konto mit bestehenden Transaktionen kann nicht in eine Gruppe umgewandelt werden"
@@ -1608,8 +1608,8 @@ msgstr "Ein Konto mit bestehenden Transaktionen kann nicht in eine Gruppe umgewa
msgid "Account with existing transaction can not be deleted"
msgstr "Ein Konto mit bestehenden Transaktionen kann nicht gelöscht werden"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Ein Konto mit bestehenden Transaktionen kann nicht in ein Kontoblatt umgewandelt werden"
@@ -1617,11 +1617,11 @@ msgstr "Ein Konto mit bestehenden Transaktionen kann nicht in ein Kontoblatt umg
msgid "Account {0} added multiple times"
msgstr "Konto {0} mehrmals hinzugefügt"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Konto {0} kann nicht in eine Gruppe umgewandelt werden, da es bereits als {1} für {2} festgelegt ist."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Konto {0} kann nicht deaktiviert werden, da es bereits als {1} für {2} festgelegt ist."
@@ -1629,11 +1629,11 @@ msgstr "Konto {0} kann nicht deaktiviert werden, da es bereits als {1} für {2}
msgid "Account {0} does not belong to company {1}"
msgstr "Konto {0} gehört nicht zum Unternehmen {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Konto {0} gehört nicht zu Unternehmen {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Konto {0} existiert nicht"
@@ -1649,15 +1649,15 @@ msgstr "Konto {0} stimmt nicht mit Unternehmen {1} im Rechnungsmodus überein: {
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Konto {0} gehört nicht zu Firma {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Konto {0} existiert in der Muttergesellschaft {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Konto {0} wurde im Tochterunternehmen {1} hinzugefügt"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1665,7 +1665,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr "Konto {0} ist eingefroren"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Konto {0} ist ungültig. Kontenwährung muss {1} sein"
@@ -1673,19 +1673,19 @@ msgstr "Konto {0} ist ungültig. Kontenwährung muss {1} sein"
msgid "Account {0} should be of type Expense"
msgstr "Konto {0} sollte vom Typ „Ausgaben“ sein"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Konto {0}: Übergeordnetes Konto {1} kann kein Kontenblatt sein"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Konto {0}: Kontogruppe {1} gehört nicht zu Unternehmen {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Konto {0}: Hauptkonto {1} existiert nicht"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Konto {0}: Sie können dieses Konto sich selbst nicht als Über-Konto zuweisen"
@@ -1701,7 +1701,7 @@ msgstr "Konto: {0} kann nur über Lagertransaktionen aktualisiert werden"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Konto {0} kann nicht in Zahlung verwendet werden"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Konto: {0} mit Währung: {1} kann nicht ausgewählt werden"
@@ -1986,8 +1986,8 @@ msgstr "Buchungen"
msgid "Accounting Entry for Asset"
msgstr "Buchungseintrag für Vermögenswert"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Buchhaltungseintrag für Einstandskostenbeleg in Lagerbuchung {0}"
@@ -2011,8 +2011,8 @@ msgstr "Buchhaltungseintrag für Service"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Lagerbuchung"
@@ -2021,7 +2021,7 @@ msgstr "Lagerbuchung"
msgid "Accounting Entry for {0}"
msgstr "Buchungen für {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Eine Buchung für {0}: {1} kann nur in der Währung: {2} vorgenommen werden"
@@ -2076,7 +2076,6 @@ msgstr "Buchungen sind bis zu diesem Datum eingefroren. Nur Benutzer mit der ang
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2089,14 +2088,13 @@ msgstr "Buchungen sind bis zu diesem Datum eingefroren. Nur Benutzer mit der ang
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Rechnungswesen"
@@ -2126,8 +2124,8 @@ msgstr "Im Bericht fehlende Konten"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2227,15 +2225,15 @@ msgstr "Kontenliste darf nicht leer sein."
msgid "Accounts to Merge"
msgstr "Zu verschmelzende Konten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Abgegrenzte Aufwendungen"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Kumulierte/Indirekte Abschreibungen"
@@ -2400,7 +2398,7 @@ msgstr "Aktionen ausgeführt"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2524,7 +2522,7 @@ msgstr "Ist-Enddatum"
msgid "Actual End Date (via Timesheet)"
msgstr "Ist-Enddatum (via Zeiterfassung)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Das tatsächliche Enddatum kann nicht vor dem tatsächlichen Startdatum liegen"
@@ -2646,7 +2644,7 @@ msgstr "IST- Zeit in Stunden (aus Zeiterfassung)"
msgid "Actual qty in stock"
msgstr "Ist-Menge auf Lager"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Tatsächliche Steuerart kann nicht im Artikelpreis in Zeile {0} beinhaltet sein"
@@ -2655,7 +2653,7 @@ msgstr "Tatsächliche Steuerart kann nicht im Artikelpreis in Zeile {0} beinhalt
msgid "Ad-hoc Qty"
msgstr "Ad-hoc Menge"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Preise hinzufügen / bearbeiten"
@@ -3154,7 +3152,7 @@ msgstr "Weitere Informationen"
msgid "Additional Information updated successfully."
msgstr "Zusätzliche Informationen erfolgreich aktualisiert."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Zusätzlicher Materialübertrag"
@@ -3177,7 +3175,7 @@ msgstr "Zusätzliche Betriebskosten"
msgid "Additional Transferred Qty"
msgstr "Zusätzlich übertragene Menge"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3189,11 +3187,6 @@ msgstr "Zusätzlich übertragene Menge {0}\n"
"\t\t\t\t\tdes Feldes 'Zusätzliche Rohmaterialien zu WIP übertragen'\n"
"\t\t\t\t\tin den Fertigungseinstellungen."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Zusätzliche Informationen bezüglich des Kunden."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Zusätzliche {0} {1} des Artikels {2} gemäß Stückliste erforderlich, um diese Transaktion abzuschließen"
@@ -3339,11 +3332,6 @@ msgstr "Die Adresse muss mit einem Unternehmen verknüpft werden. Bitte fügen S
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresse, die zur Bestimmung der Steuerkategorie in Transaktionen verwendet wird"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Menge anpassen"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Anpassung gegen"
@@ -3356,8 +3344,8 @@ msgstr "Anpassung basierend auf dem Rechnungspreis"
msgid "Administrative Assistant"
msgstr "Verwaltungsassistent:in"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Verwaltungskosten"
@@ -3425,7 +3413,7 @@ msgstr "Vorauszahlungsstatus"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Anzahlungen"
@@ -3545,7 +3533,7 @@ msgstr "Gegenkonto"
msgid "Against Blanket Order"
msgstr "Gegen Rahmenauftrag"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Gegen Kundenauftrag {0}"
@@ -3687,11 +3675,11 @@ msgstr "Alter"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Alter (Tage)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Alter ({0})"
@@ -3841,21 +3829,21 @@ msgstr "Alle Kundengruppen"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Alle Abteilungen"
@@ -3935,7 +3923,7 @@ msgstr "Alle Lieferantengruppen"
msgid "All Territories"
msgstr "Alle Gebiete"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Alle Lager"
@@ -3949,6 +3937,11 @@ msgstr "Alle Zuweisungen wurden erfolgreich abgeglichen"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Alle Mitteilungen einschließlich und darüber sollen in die neue Anfrage verschoben werden"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Alle Artikel sind bereits angefordert"
@@ -3957,23 +3950,23 @@ msgstr "Alle Artikel sind bereits angefordert"
msgid "All items have already been Invoiced/Returned"
msgstr "Alle Artikel wurden bereits in Rechnung gestellt / zurückgesandt"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Alle Artikel sind bereits eingegangen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Alle Positionen wurden bereits für diesen Arbeitsauftrag übertragen."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Für alle Artikel in diesem Dokument ist bereits eine Qualitätsprüfung verknüpft."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Alle Artikel müssen für diese Ausgangsrechnung mit einem Auftrag oder einer Fremdvergabe-Eingangsbestellung verknüpft sein."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Alle verknüpften Aufträge müssen Untervergaben sein."
@@ -3987,11 +3980,11 @@ msgstr "Alle Kommentare und E-Mails werden von einem Dokument zu einem anderen n
msgid "All the items have been already returned."
msgstr "Alle Artikel wurden bereits zurückgegeben."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Alle benötigten Artikel (Rohmaterial) werden aus der Stückliste geholt und in diese Tabelle eingetragen. Hier können Sie auch das Quelllager für jeden Artikel ändern. Und während der Produktion können Sie das übertragene Rohmaterial in dieser Tabelle verfolgen."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Alle diese Artikel wurden bereits in Rechnung gestellt / zurückgesandt"
@@ -4010,7 +4003,7 @@ msgstr "Zuweisen"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Zuweisungen automatisch zuordnen (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Zahlungsbetrag zuweisen"
@@ -4020,7 +4013,7 @@ msgstr "Zahlungsbetrag zuweisen"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Ordnen Sie die Zahlung basierend auf den Zahlungsbedingungen zu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Zahlungsanfrage zuweisen"
@@ -4050,7 +4043,7 @@ msgstr "Zugewiesen"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4107,7 +4100,7 @@ msgstr "Zugeteilte Menge"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4171,7 +4164,7 @@ msgstr "Rückgabe zulassen"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Interne Übertragungen zum Fremdvergleichspreis zulassen"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Mehrfaches Hinzufügen von Artikeln in einer Transaktion zulassen"
@@ -4294,16 +4287,6 @@ msgstr "Zurücksetzen des Service Level Agreements in den Support-Einstellungen
msgid "Allow Sales"
msgstr "Verkauf erlauben"
-#. 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 "Erstellung von Ausgangsrechnungen ohne Lieferschein zulassen"
-
-#. 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 "Erstellung von Ausgangsrechnungen ohne Auftrag zulassen"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4429,6 +4412,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4505,10 +4498,8 @@ msgstr "Erlaubte Artikel"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Erlaubt Transaktionen mit"
@@ -4520,6 +4511,11 @@ msgstr "Zulässige Hauptrollen sind „Kunde“ und „Lieferant“. Bitte wähl
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4561,8 +4557,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Sie können auch nicht zurück zu FIFO wechseln, nachdem Sie die Bewertungsmethode für diesen Artikel auf gleitenden Durchschnitt gesetzt haben."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4803,7 +4799,7 @@ msgstr "Immer fragen"
msgid "Amount"
msgstr "Betrag"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Betrag (AED)"
@@ -4937,12 +4933,12 @@ msgid "Amount to Bill"
msgstr "Rechnungsbetrag"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Betrag {0} {1} gegen {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Betrag {0} {1} abgezogen gegen {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4987,11 +4983,11 @@ msgstr "Menge"
msgid "An Item Group is a way to classify items based on types."
msgstr "Artikelgruppen bieten die Möglichkeit, Artikel nach Typ zu klassifizieren."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Beim Umbuchen der Artikelbewertung über {0} ist ein Fehler aufgetreten"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Während des Aktualisierungsvorgangs ist ein Fehler aufgetreten"
@@ -5531,7 +5527,7 @@ msgstr "Da das Feld {0} aktiviert ist, ist das Feld {1} obligatorisch."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Wenn das Feld {0} aktiviert ist, sollte der Wert des Feldes {1} größer als 1 sein."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Da es bereits gebuchte Transaktionen für den Artikel {0} gibt, können Sie den Wert von {1} nicht ändern."
@@ -5543,7 +5539,7 @@ msgstr "Da es reservierte Bestände gibt, können Sie {0} nicht deaktivieren."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Da es genügend Artikel für die Unterbaugruppe gibt, ist ein Arbeitsauftrag für das Lager {0} nicht erforderlich."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Da genügend Rohstoffe vorhanden sind, ist für Warehouse {0} keine Materialanforderung erforderlich."
@@ -5681,7 +5677,7 @@ msgstr "Vermögensgegenstand-Kategorie Konto"
msgid "Asset Category Name"
msgstr "Name der Anlagenkategorie"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Vermögensgegenstand-Kategorie ist obligatorisch für Artikel des Anlagevermögens"
@@ -5858,8 +5854,8 @@ msgstr "Anzahl"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5959,7 +5955,7 @@ msgstr "Vermögensgegenstand storniert"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Vermögenswert kann nicht rückgängig gemacht werden, da es ohnehin schon {0} ist"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Der Vermögensgegenstand kann nicht vor der letzten Abschreibungsbuchung verschrottet werden."
@@ -5991,7 +5987,7 @@ msgstr "Vermögensgegenstand außer Betrieb aufgrund von Reparatur {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Vermögensgegenstand erhalten am Standort {0} und ausgegeben an Mitarbeiter {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Vermögensgegenstand wiederhergestellt"
@@ -5999,20 +5995,20 @@ msgstr "Vermögensgegenstand wiederhergestellt"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Vermögensgegenstand wiederhergestellt, nachdem die Vermögensgegenstand-Aktivierung {0} storniert wurde"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Vermögensgegenstand zurückgegeben"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Vermögensgegenstand verschrottet"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Vermögensgegenstand verschrottet über Buchungssatz {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Vermögensgegenstand verkauft"
@@ -6032,7 +6028,7 @@ msgstr "Vermögensgegenstand nach der Abspaltung in Vermögensgegenstand {0} akt
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Vermögensgegenstand aktualisiert aufgrund von Reparatur {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Vermögensgegenstand {0} kann nicht verschrottet werden, da er bereits {1} ist"
@@ -6073,7 +6069,7 @@ msgstr "Vermögensgegenstand {0} ist nicht für die Berechnung der Abschreibung
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Der Vermögensgegenstand {0} ist nicht gebucht. Bitte buchen Sie den Vermögensgegenstand, bevor Sie fortfahren."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Vermögensgegenstand {0} muss gebucht werden"
@@ -6123,7 +6119,7 @@ msgstr "Assets nicht für {item_code} erstellt. Sie müssen das Asset manuell er
msgid "Assets {assets_link} created for {item_code}"
msgstr "Vermögensgegenstände {assets_link} erstellt für {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Aufgabe an Mitarbeiter zuweisen"
@@ -6184,7 +6180,7 @@ msgstr "Es muss mindestens eines der zutreffenden Module ausgewählt werden"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Mindestens eine der Optionen „Verkauf“ oder „Einkauf“ muss ausgewählt werden"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Mindestens ein Rohmaterial-Artikel muss in der Lagerbuchung für den Typ {0} vorhanden sein"
@@ -6192,21 +6188,17 @@ msgstr "Mindestens ein Rohmaterial-Artikel muss in der Lagerbuchung für den Typ
msgid "At least one row is required for a financial report template"
msgstr "Mindestens eine Zeile ist für eine Finanzberichtsvorlage erforderlich"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Mindestens ein Lager ist obligatorisch"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "In Zeile #{0}: Das Differenzkonto darf kein Bestandskonto sein. Bitte ändern Sie die Kontoart für das Konto {1} oder wählen Sie ein anderes Konto aus"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "In Zeile {0}: Die Sequenz-ID {1} darf nicht kleiner sein als die vorherige Zeilen-Sequenz-ID {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "In der Zeile #{0}: haben Sie das Differenzkonto {1} ausgewählt, das ein Konto vom Typ Umsatzkosten ist. Bitte wählen Sie ein anderes Konto"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6288,11 +6280,11 @@ msgstr "Attributname"
msgid "Attribute Value"
msgstr "Attributwert"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Attributtabelle ist obligatorisch"
@@ -6300,19 +6292,19 @@ msgstr "Attributtabelle ist obligatorisch"
msgid "Attribute value: {0} must appear only once"
msgstr "Attributwert: {0} darf nur einmal vorkommen"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Attribut {0} mehrfach in der Attributtabelle ausgewählt"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Attribute"
@@ -6524,7 +6516,7 @@ msgstr "Partei automatisch anhand der Kontonummer bzw. IBAN zuordnen"
msgid "Auto re-order"
msgstr "Automatische Nachbestellung"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Automatisches Wiederholungsdokument aktualisiert"
@@ -6636,7 +6628,7 @@ msgstr "Zeitpunkt der Einsatzbereitschaft"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Verfügbare Menge"
@@ -6725,10 +6717,6 @@ msgstr "Verfügbar ab Datum"
msgid "Available for use date is required"
msgstr "Verfügbar für das Nutzungsdatum ist erforderlich"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Die verfügbare Menge ist {0}. Sie benötigen {1}."
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Verfügbar {0}"
@@ -6737,8 +6725,8 @@ msgstr "Verfügbar {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Das für die Verwendung verfügbare Datum sollte nach dem Kaufdatum liegen"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Durchschnittsalter"
@@ -6762,7 +6750,9 @@ msgstr "Durchschnittlicher Bestellwert"
msgid "Average Order Values"
msgstr "Durchschnittliche Bestellwerte"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Durchschnittsrate"
@@ -6786,7 +6776,7 @@ msgid "Avg Rate"
msgstr "Durchschnittspreis"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Durchschn. Preis (Bestandssaldo)"
@@ -6844,7 +6834,7 @@ msgstr "BIN Menge"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6867,7 +6857,7 @@ msgstr "Stückliste"
msgid "BOM 1"
msgstr "Stückliste 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Stückliste 1 {0} und Stückliste 2 {1} sollten nicht identisch sein"
@@ -6939,11 +6929,6 @@ msgstr "Position der aufgelösten Stückliste"
msgid "BOM ID"
msgstr "Stücklisten-ID"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Stücklisten-Infos"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7097,7 +7082,7 @@ msgstr "Stückliste Webseitenartikel"
msgid "BOM Website Operation"
msgstr "Stückliste Webseite Vorgang"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Stückliste und Menge des Fertigprodukts sind für die Demontage erforderlich"
@@ -7165,7 +7150,7 @@ msgstr "Rückdatierte Lagerbewegung"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Materialien aus WIP-Lager rückmelden"
@@ -7229,7 +7214,7 @@ msgstr "Saldo in Basiswährung"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Bilanzmenge"
@@ -7294,7 +7279,7 @@ msgstr "Saldentyp"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Bilanzwert"
@@ -7450,8 +7435,8 @@ msgid "Bank Balance"
msgstr "Kontostand"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bankkosten"
@@ -7566,8 +7551,8 @@ msgstr "Art der Bankgarantie"
msgid "Bank Name"
msgstr "Bankname"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Kontokorrentkredit-Konto"
@@ -7740,11 +7725,11 @@ msgstr "Bankwesen"
msgid "Barcode Type"
msgstr "Barcode-Typ"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Barcode {0} wird bereits für Artikel {1} verwendet"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Der Barcode {0} ist kein gültiger {1} Code"
@@ -7901,7 +7886,7 @@ msgstr "Grundbetrag (nach Lagermaßeinheit)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7976,7 +7961,7 @@ msgstr "Stapelobjekt Ablauf-Status"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8065,13 +8050,13 @@ msgstr "Chargenmenge aktualisiert auf {0}"
msgid "Batch Quantity"
msgstr "Chargenmenge"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8088,7 +8073,7 @@ msgstr "Chargen-Einheit"
msgid "Batch and Serial No"
msgstr "Chargen- und Seriennummer"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Für Artikel {} wurde keine Charge erstellt, da er keinen Nummernkreis für Chargen vorgibt."
@@ -8111,12 +8096,12 @@ msgstr "Charge {0} und Lager"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Charge {0} ist im Lager {1} nicht verfügbar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Die Charge {0} des Artikels {1} ist abgelaufen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Charge {0} von Artikel {1} ist deaktiviert."
@@ -8171,7 +8156,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8180,7 +8165,7 @@ msgstr "Rechnungsdatum"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8194,11 +8179,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Stückliste"
@@ -8299,7 +8286,7 @@ msgstr "Vorschau Rechnungsadresse"
msgid "Billing Address Name"
msgstr "Name der Rechnungsadresse"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Die Rechnungsadresse gehört nicht zu {0}"
@@ -8551,6 +8538,16 @@ msgstr "Rechnung sperren"
msgid "Block Supplier"
msgstr "Lieferant blockieren"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8647,7 +8644,7 @@ msgstr "Gebucht"
msgid "Booked Fixed Asset"
msgstr "Gebuchtes Anlagevermögen"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Die Bücher wurden bis zu dem am {0} endenden Zeitraum geschlossen"
@@ -8906,8 +8903,8 @@ msgstr "Baum erstellen"
msgid "Buildable Qty"
msgstr "Herstellbare Menge"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Gebäude"
@@ -9068,16 +9065,16 @@ msgstr "Standardmäßig wird die ID des Lieferanten basierend auf dem eingegeben
msgid "By-Product"
msgstr "Nebenprodukt"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Kreditlimitprüfung im Auftrag umgehen"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Kreditprüfung im Auftrag umgehen"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9125,8 +9122,8 @@ msgstr "CRM Notiz"
msgid "CRM Settings"
msgstr "CRM-Einstellungen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "CWIP-Konto"
@@ -9381,7 +9378,7 @@ msgstr "Kampagne {0} nicht gefunden"
msgid "Can be approved by {0}"
msgstr "Kann von {0} genehmigt werden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Der Arbeitsauftrag kann nicht geschlossen werden, da sich {0} Jobkarten im Status „In Bearbeitung“ befinden."
@@ -9414,13 +9411,13 @@ msgstr "Kann nicht nach Belegnummer filtern, wenn nach Beleg gruppiert"
msgid "Can only make payment against unbilled {0}"
msgstr "Zahlung kann nur zu einem noch nicht abgerechneten Beleg vom Typ {0} erstellt werden"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Kann sich nur auf eine Zeile beziehen, wenn die Berechnungsart der Kosten entweder \"auf vorherige Zeilensumme\" oder \"auf vorherigen Zeilenbetrag\" ist"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Die Bewertungsmethode kann nicht geändert werden, da es Transaktionen gegen einige Artikel gibt, die keine eigene Bewertungsmethode haben"
@@ -9462,7 +9459,7 @@ msgstr "Kassierer kann nicht zugewiesen werden"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Die Ankunftszeit kann nicht berechnet werden, da die Adresse des Fahrers fehlt."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Einstellung des Bestandskontos kann nicht geändert werden"
@@ -9470,9 +9467,9 @@ msgstr "Einstellung des Bestandskontos kann nicht geändert werden"
msgid "Cannot Create Return"
msgstr "Retoure kann nicht erstellt werden"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Zusammenführung nicht möglich"
@@ -9500,7 +9497,7 @@ msgstr "{0} {1} kann nicht berichtigt werden. Bitte erstellen Sie stattdessen ei
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Quellensteuer (TDS) kann nicht auf mehrere Parteien in einer Buchung angewendet werden"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Kann keine Anlageposition sein, wenn das Stock Ledger erstellt wird."
@@ -9520,7 +9517,7 @@ msgstr "Bestandsreservierungseintrag {0} kann nicht storniert werden, da er im A
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Kann nicht storniert werden, da die Verarbeitung der stornierten Dokumente noch nicht abgeschlossen ist."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Kann nicht storniert werden, da die gebuchte Lagerbewegung {0} existiert"
@@ -9540,15 +9537,15 @@ msgstr "Dieses Dokument kann nicht storniert werden, da es mit der gebuchten Anp
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Dieses Dokument kann nicht storniert werden, da es mit dem gebuchten Vermögensgegenstand {asset_link} verknüpft ist. Bitte stornieren Sie den Vermögensgegenstand, um fortzufahren."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Die Transaktion für den abgeschlossenen Arbeitsauftrag kann nicht storniert werden."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Attribute können nach einer Buchung nicht mehr geändert werden. Es muss ein neuer Artikel erstellt und der Bestand darauf übertragen werden."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Der Referenzdokumenttyp kann nicht geändert werden."
@@ -9556,11 +9553,11 @@ msgstr "Der Referenzdokumenttyp kann nicht geändert werden."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Das Servicestoppdatum für das Element in der Zeile {0} kann nicht geändert werden"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Die Eigenschaften der Variante können nach der Buchung nicht mehr verändert werden. Hierzu muss ein neuer Artikel erstellt werden."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Die Standardwährung des Unternehmens kann nicht geändern werden, weil es bestehende Transaktionen gibt. Transaktionen müssen abgebrochen werden, um die Standardwährung zu ändern."
@@ -9576,11 +9573,11 @@ msgstr "Kostenstelle kann nicht in ein Kontenblatt umgewandelt werden, da sie Un
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Aufgabe kann nicht in Nicht-Gruppe konvertiert werden, da die folgenden untergeordneten Aufgaben existieren: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Kann nicht in eine Gruppe umgewandelt werden, weil Kontentyp ausgewählt ist."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Kann nicht in eine Gruppe umgewandelt werden, weil Kontentyp ausgewählt ist."
@@ -9588,7 +9585,7 @@ msgstr "Kann nicht in eine Gruppe umgewandelt werden, weil Kontentyp ausgewählt
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Für in der Zukunft datierte Kaufbelege kann keine Bestandsreservierung erstellt werden."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Es kann keine Pickliste für den Auftrag {0} erstellt werden, da dieser einen reservierten Bestand hat. Bitte heben Sie die Reservierung des Bestands auf, um eine Pickliste zu erstellen."
@@ -9614,7 +9611,7 @@ msgstr "Kann nicht als verloren deklariert werden, da bereits ein Angebot erstel
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Abzug nicht möglich, wenn Kategorie \"Wertbestimmtung\" oder \"Wertbestimmung und Summe\" ist"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Zeile „Wechselkursgewinn/-verlust“ kann nicht gelöscht werden"
@@ -9622,12 +9619,12 @@ msgstr "Zeile „Wechselkursgewinn/-verlust“ kann nicht gelöscht werden"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Die Seriennummer {0} kann nicht gelöscht werden, da sie in Lagertransaktionen verwendet wird"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Ein bestellter Artikel kann nicht gelöscht werden"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Geschützter Kern-DocType kann nicht gelöscht werden: {0}"
@@ -9639,7 +9636,7 @@ msgstr "Virtueller DocType kann nicht gelöscht werden: {0}. Virtuelle DocTypes
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "Serien- und Chargennummer für Artikel kann nicht deaktiviert werden, da bereits Datensätze für Serien-/Chargen vorhanden sind."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Die dauerhafte Bestandsführung kann nicht deaktiviert werden, da bereits Lagerbucheinträge für das Unternehmen {0} vorhanden sind. Bitte stornieren Sie zuerst die Lagertransaktionen und versuchen Sie es erneut."
@@ -9647,20 +9644,20 @@ msgstr "Die dauerhafte Bestandsführung kann nicht deaktiviert werden, da bereit
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "{0} kann nicht deaktiviert werden, da dies zu einer fehlerhaften Lagerbewertung führen könnte."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Es kann nicht mehr als die produzierte Menge zerlegt werden."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Artikelbezogenes Bestandskonto kann nicht aktiviert werden, da für das Unternehmen {0} bereits Lagerbucheinträge mit lagerbezogenem Bestandskonto vorhanden sind. Bitte stornieren Sie zuerst die Lagertransaktionen und versuchen Sie es erneut."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Die Lieferung per Seriennummer kann nicht sichergestellt werden, da Artikel {0} mit und ohne Lieferung per Seriennummer hinzugefügt wird."
@@ -9676,7 +9673,7 @@ msgstr "Artikel oder Lager mit diesem Barcode kann nicht gefunden werden"
msgid "Cannot find Item with this Barcode"
msgstr "Artikel mit diesem Barcode kann nicht gefunden werden"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Es wurde kein Standardlager für den Artikel {0} gefunden. Bitte legen Sie eines im Artikelstamm oder in den Lagereinstellungen fest."
@@ -9684,15 +9681,15 @@ msgstr "Es wurde kein Standardlager für den Artikel {0} gefunden. Bitte legen S
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "{0} '{1}' kann nicht mit '{2}' zusammengeführt werden, da für das Unternehmen '{3}' bereits Buchungen in unterschiedlichen Währungen vorhanden sind."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Es können nicht mehr Artikel {0} als die Auftragsmenge {1} {2} produziert werden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Kann nicht mehr Artikel für {0} produzieren"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Es können nicht mehr als {0} Artikel für {1} produziert werden"
@@ -9700,12 +9697,12 @@ msgstr "Es können nicht mehr als {0} Artikel für {1} produziert werden"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Negativer Gesamtbetrag kann nicht vom Kunden empfangen werden"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Die Menge kann nicht unter die bestellte oder eingekaufte Menge reduziert werden"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Für diese Berechnungsart kann keine Zeilennummern zugeschrieben werden, die größer oder gleich der aktuellen Zeilennummer ist"
@@ -9718,14 +9715,14 @@ msgstr "Link-Token für Update kann nicht abgerufen werden. Prüfen Sie das Fehl
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Link-Token kann nicht abgerufen werden. Prüfen Sie das Fehlerprotokoll für weitere Informationen"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Eine Kundengruppe vom Typ Gruppe kann nicht ausgewählt werden. Bitte wählen Sie eine Kundengruppe ohne Gruppentyp."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9739,7 +9736,7 @@ msgstr "Kann nicht als verloren gekennzeichnet werden, da ein Auftrag dazu exist
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Genehmigung kann nicht auf der Basis des Rabattes für {0} festgelegt werden"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Es können nicht mehrere Artikelstandards für ein Unternehmen festgelegt werden."
@@ -9747,11 +9744,11 @@ msgstr "Es können nicht mehrere Artikelstandards für ein Unternehmen festgeleg
msgid "Cannot set multiple account rows for the same company"
msgstr "Für dasselbe Unternehmen können nicht mehrere Kontozeilen festgelegt werden"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Menge kann nicht kleiner als gelieferte Menge sein."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Menge kann nicht kleiner als die empfangene Menge eingestellt werden."
@@ -9763,7 +9760,7 @@ msgstr "Das Feld {0} kann nicht zum Kopieren in Varianten festgelegt werd
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Löschvorgang kann nicht gestartet werden. Ein weiterer Löschvorgang {0} ist bereits in der Warteschlange/wird ausgeführt. Bitte warten Sie, bis dieser abgeschlossen ist."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "Preis kann nicht aktualisiert werden, da Artikel {0} für dieses Angebot bereits bestellt oder eingekauft wurde"
@@ -9796,7 +9793,7 @@ msgstr "Kapazität (Lagereinheit)"
msgid "Capacity Planning"
msgstr "Kapazitätsplanung"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Fehler bei der Kapazitätsplanung, die geplante Startzeit darf nicht mit der Endzeit übereinstimmen"
@@ -9815,13 +9812,13 @@ msgstr "Kapazität in Lager-ME"
msgid "Capacity must be greater than 0"
msgstr "Die Kapazität muss größer als 0 sein"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Investitionsgüter"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Stammkapital"
@@ -10038,7 +10035,7 @@ msgstr "Kategorie Details"
msgid "Category-wise Asset Value"
msgstr "Kategorialer Vermögenswert"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Achtung"
@@ -10143,7 +10140,7 @@ msgstr "Ändern Sie das Veröffentlichungsdatum"
msgid "Change in Stock Value"
msgstr "Änderung des Lagerwerts"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Ändern Sie den Kontotyp in "Forderung" oder wählen Sie ein anderes Konto aus."
@@ -10153,7 +10150,7 @@ msgstr "Ändern Sie den Kontotyp in "Forderung" oder wählen Sie ein a
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ändern Sie dieses Datum manuell, um das nächste Startdatum für die Synchronisierung festzulegen"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Kundenname in „{}“ geändert, da „{}“ bereits existiert."
@@ -10161,7 +10158,7 @@ msgstr "Kundenname in „{}“ geändert, da „{}“ bereits existiert."
msgid "Changes in {0}"
msgstr "Änderungen an {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Die Änderung der Kundengruppe für den ausgewählten Kunden ist nicht zulässig."
@@ -10176,7 +10173,7 @@ msgid "Channel Partner"
msgstr "Vertriebspartner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Kosten für den Typ „Tatsächlich“ in Zeile {0} können nicht in den Artikelpreis oder den bezahlen Betrag einfließen"
@@ -10230,7 +10227,7 @@ msgstr "Diagrammbaum"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10373,7 +10370,7 @@ msgstr "Scheck Breite"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Scheck-/ Referenzdatum"
@@ -10431,7 +10428,7 @@ msgstr "Untergeordneter Dokumentname"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Zeilenreferenz"
@@ -10483,6 +10480,11 @@ msgstr "Klassifizierung der Kunden nach Region"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10625,11 +10627,11 @@ msgstr "Geschlossenes Dokument"
msgid "Closed Documents"
msgstr "Geschlossene Dokumente"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Ein geschlossener Arbeitsauftrag kann nicht gestoppt oder erneut geöffnet werden"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Geschlosser Auftrag kann nicht abgebrochen werden. Bitte wiedereröffnen um abzubrechen."
@@ -10881,11 +10883,17 @@ msgstr "Provisionssatz %"
msgid "Commission Rate (%)"
msgstr "Provisionssatz (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provision auf den Umsatz"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10916,7 +10924,7 @@ msgstr "Kommunikationsmedium-Zeitfenster"
msgid "Communication Medium Type"
msgstr "Typ des Kommunikationsmediums"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Artikel kompakt drucken"
@@ -11315,8 +11323,8 @@ msgstr "Firmen"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11369,7 +11377,7 @@ msgstr "Firmen"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11458,18 +11466,20 @@ msgstr "Anzeige der Unternehmensadresse"
msgid "Company Address Name"
msgstr "Bezeichnung der Anschrift des Unternehmens"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Unternehmensadresse fehlt. Sie haben keine Berechtigung, sie zu aktualisieren. Bitte kontaktieren Sie Ihren Systemmanager."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Firmenkonto"
@@ -11565,7 +11575,7 @@ msgstr "Unternehmen und Buchungsdatum sind obligatorisch"
msgid "Company and account filters not set!"
msgstr "Unternehmens- und Kontofilter nicht gesetzt!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Firmenwährungen beider Unternehmen sollten für Inter Company-Transaktionen übereinstimmen."
@@ -11600,7 +11610,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Name des Unternehmensverknüpfungsfeldes zur Filterung (optional – leer lassen, um alle Datensätze zu löschen)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Firma nicht gleich"
@@ -11639,12 +11649,12 @@ msgstr "Unternehmen, für das der interne Lieferant steht"
msgid "Company {0} added multiple times"
msgstr "Unternehmen {0} mehrfach hinzugefügt"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Unternehmen {0} existiert nicht"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Unternehmen {0} wird mehr als einmal hinzugefügt"
@@ -11686,7 +11696,7 @@ msgstr "Name des Mitbewerbers"
msgid "Competitors"
msgstr "Mitbewerber"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Auftrag abschließen"
@@ -11733,12 +11743,12 @@ msgstr "Abgeschlossene Projekte"
msgid "Completed Qty"
msgstr "Gefertigte Menge"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Die abgeschlossene Menge darf nicht größer sein als die Menge bis zur Herstellung."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Abgeschlossene Menge"
@@ -11927,7 +11937,7 @@ msgstr "Berücksichtigen Sie die Abrechnungsdimensionen"
msgid "Consider Minimum Order Qty"
msgstr "Mindestbestellmenge berücksichtigen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Prozessverlust berücksichtigen"
@@ -12121,7 +12131,7 @@ msgstr "Kosten für verbrauchte Artikel"
msgid "Consumed Qty"
msgstr "Verbrauchte Anzahl"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Die verbrauchte Menge kann nicht größer sein als die reservierte Menge für Artikel {0}"
@@ -12150,7 +12160,7 @@ msgstr "Verbrauchte Lagerartikel, verbrauchte Vermögensgegenstand-Artikel oder
msgid "Consumed Stock Total Value"
msgstr "Wert des verbrauchten Lagerbestands"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Verbrauchte Menge von Artikel {0} überschreitet die übertragene Menge."
@@ -12278,7 +12288,7 @@ msgstr "Kontakt-Nr."
msgid "Contact Person"
msgstr "Kontaktperson"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Die Kontaktperson gehört nicht zu {0}"
@@ -12404,6 +12414,11 @@ msgstr "Historische Lagerbewegungen überprüfen"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12464,7 +12479,7 @@ msgstr "Umrechnungsfaktor"
msgid "Conversion Rate"
msgstr "Wechselkurs"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Umrechnungsfaktor für Standardmaßeinheit muss in Zeile {0} 1 sein"
@@ -12472,15 +12487,15 @@ msgstr "Umrechnungsfaktor für Standardmaßeinheit muss in Zeile {0} 1 sein"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "Der Umrechnungsfaktor für Artikel {0} wurde auf 1,0 zurückgesetzt, da die Maßeinheit {1} dieselbe ist wie die Lagermaßeinheit {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Der Umrechnungskurs kann nicht 0 sein"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Der Umrechnungskurs beträgt 1,00, aber die Währung des Dokuments unterscheidet sich von der Währung des Unternehmens"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Der Umrechnungskurs muss 1,00 betragen, wenn die Belegwährung mit der Währung des Unternehmens übereinstimmt"
@@ -12557,13 +12572,13 @@ msgstr "Korrigierend"
msgid "Corrective Action"
msgstr "Korrekturmaßnahme"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Nacharbeitsauftrag"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Nacharbeit"
@@ -12730,7 +12745,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12863,7 +12878,7 @@ msgstr "Kostenstelle {} ist eine Gruppenkostenstelle und Gruppenkostenstellen k
msgid "Cost Center: {0} does not exist"
msgstr "Kostenstelle: {0} existiert nicht"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Kostenstellen"
@@ -12906,17 +12921,13 @@ msgstr "Aufwendungen für gelieferte Artikel"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Selbstkosten"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Selbstkostenkonto in der Artikeltabelle"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Aufwendungen für in Umlauf gebrachte Artikel"
@@ -12996,7 +13007,7 @@ msgstr "Demodaten konnten nicht gelöscht werden"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Der Kunde konnte aufgrund der folgenden fehlenden Pflichtfelder nicht automatisch erstellt werden:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Gutschrift konnte nicht automatisch erstellt werden, bitte deaktivieren Sie 'Gutschrift ausgeben' und senden Sie sie erneut"
@@ -13185,7 +13196,7 @@ msgstr "Rechnungen erstellen"
msgid "Create Item"
msgstr "Artikel erstellen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Jobkarte erstellen"
@@ -13217,7 +13228,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Buchungssätze für Wechselgeld erstellen"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Verknüpfung erstellen"
@@ -13284,7 +13295,7 @@ msgstr "Zahlungseintrag für konsolidierte POS-Rechnungen erstellen."
msgid "Create Payment Request"
msgstr "Zahlungsanforderung erstellen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Pickliste erstellen"
@@ -13429,7 +13440,7 @@ msgstr "Aufgabe Erstellen"
msgid "Create Tasks"
msgstr "Vorgänge erstellen"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Steuervorlage erstellen"
@@ -13467,12 +13478,12 @@ msgstr "Benutzerberechtigung Erstellen"
msgid "Create Users"
msgstr "Benutzer erstellen"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Variante erstellen"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Varianten erstellen"
@@ -13503,12 +13514,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Eine Variante mit dem Vorlagenbild erstellen."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Erstellen Sie eine eingehende Lagertransaktion für den Artikel."
@@ -13542,7 +13553,7 @@ msgstr "{0} {1} erstellen?"
msgid "Created By Migration"
msgstr "Durch Migration erstellt"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Erstellte {0} Bewertungsliste für {1} zwischen:"
@@ -13575,7 +13586,7 @@ msgstr "Lieferschein erstellen ..."
msgid "Creating Delivery Schedule..."
msgstr "Lieferplan wird erstellt..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Dimensionen erstellen ..."
@@ -13770,7 +13781,7 @@ msgstr "Zahlungsziel"
msgid "Credit Limit"
msgstr "Kreditlimit"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Kreditlimit überschritten"
@@ -13780,12 +13791,6 @@ msgstr "Kreditlimit überschritten"
msgid "Credit Limit Settings"
msgstr "Kreditlimit-Einstellungen"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Kreditlimit und Zahlungsbedingungen"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Kreditlimit:"
@@ -13817,7 +13822,7 @@ msgstr "Kreditmonate"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13845,7 +13850,7 @@ msgstr "Gutschrift ausgestellt"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Den ausstehenden Betrag dieser Rechnungskorrektur separat buchen, statt den der korrigierten Rechnung zu verringern."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Gutschrift {0} wurde automatisch erstellt"
@@ -13853,7 +13858,7 @@ msgstr "Gutschrift {0} wurde automatisch erstellt"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Gutschreiben auf"
@@ -13862,20 +13867,20 @@ msgstr "Gutschreiben auf"
msgid "Credit in Company Currency"
msgstr "(Gut)Haben in Unternehmenswährung"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Das Kreditlimit wurde für den Kunden {0} ({1} / {2}) überschritten."
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Kreditlimit für das Unternehmen ist bereits definiert {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Kreditlimit für Kunde erreicht {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13883,8 +13888,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Kreditorenumschlagsquote"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Gläubiger"
@@ -14054,7 +14059,7 @@ msgstr "Der Währungsumtausch muss beim Kauf oder beim Verkauf anwendbar sein."
msgid "Currency and Price List"
msgstr "Währung und Preisliste"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Die Währung kann nicht geändert werden, wenn Buchungen in einer anderen Währung getätigt wurden"
@@ -14064,7 +14069,7 @@ msgstr "Währungsfilter werden im benutzerdefinierten Finanzbericht derzeit nich
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Währung für {0} muss {1} sein"
@@ -14147,8 +14152,8 @@ msgstr "Aktuelles Rechnungsstartdatum"
msgid "Current Level"
msgstr "Aktuelles Level"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Laufende Verbindlichkeiten"
@@ -14215,6 +14220,11 @@ msgstr "Aktueller Lagerbestand"
msgid "Current Valuation Rate"
msgstr "Aktueller Wertansatz"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Kurven"
@@ -14310,7 +14320,6 @@ msgstr "Benutzerdefinierte Trennzeichen"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14417,7 +14426,6 @@ msgstr "Benutzerdefinierte Trennzeichen"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14506,8 +14514,8 @@ msgstr "Kundenadresse"
msgid "Customer Addresses And Contacts"
msgstr "Kundenadressen und Ansprechpartner"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Kundenanzahlungen"
@@ -14521,7 +14529,7 @@ msgstr "Kunden-Nr."
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14604,6 +14612,7 @@ msgstr "Kundenrückmeldung"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14626,7 +14635,7 @@ msgstr "Kundenrückmeldung"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14643,6 +14652,7 @@ msgstr "Kundenrückmeldung"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14686,7 +14696,7 @@ msgstr "Kunden-Artikel"
msgid "Customer Items"
msgstr "Kunden-Artikel"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Kunden LPO"
@@ -14738,7 +14748,7 @@ msgstr "Mobilnummer des Kunden"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14844,7 +14854,7 @@ msgstr "Vom Kunden beigestellt"
msgid "Customer Provided Item Cost"
msgstr "Vom Kunden bereitgestellte Artikelkosten"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Kundenservice"
@@ -14901,9 +14911,9 @@ msgstr "Kunde oder Artikel"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Kunde erforderlich für \"Kundenbezogener Rabatt\""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Customer {0} gehört nicht zum Projekt {1}"
@@ -15015,7 +15025,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "Tiefensuche"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Tägliche Projektzusammenfassung für {0}"
@@ -15106,7 +15116,7 @@ msgstr "Geburtsdatum kann nicht später liegen als heute."
msgid "Date of Commencement"
msgstr "Anfangsdatum"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Das Datum des Beginns sollte größer sein als das Gründungsdatum"
@@ -15332,7 +15342,7 @@ msgstr "Soll-Betrag in Transaktionswährung"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15360,13 +15370,13 @@ msgstr "Den ausstehenden Betrag dieser Rechnungskorrektur separat buchen, statt
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Forderungskonto"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Forderungskonto erforderlich"
@@ -15494,8 +15504,7 @@ msgstr "Standardkonto"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15521,14 +15530,14 @@ msgstr "Standard Vorschusskonto"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Standardkonto für geleistete Vorauszahlungen"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Standardkonto für erhaltene Vorauszahlungen"
@@ -15543,19 +15552,19 @@ msgstr "Standard-Fälligkeitsbereich"
msgid "Default BOM"
msgstr "Standardstückliste"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Standardstückliste ({0}) muss für diesen Artikel oder dessen Vorlage aktiv sein"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Standardstückliste für {0} nicht gefunden"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Standard Stückliste für Fertigprodukt {0} nicht gefunden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Standard-Stückliste nicht gefunden für Position {0} und Projekt {1}"
@@ -15608,9 +15617,7 @@ msgid "Default Company"
msgstr "Standard Unternehmen"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Standard-Bankkonto des Unternehmens"
@@ -15726,6 +15733,16 @@ msgstr "Standard-Artikelgruppe"
msgid "Default Item Manufacturer"
msgstr "Standardartikelhersteller"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15761,23 +15778,19 @@ msgid "Default Payment Request Message"
msgstr "Standard Payment Request Message"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Standardvorlage für Zahlungsbedingungen"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15900,15 +15913,15 @@ msgstr "Standardregion"
msgid "Default Unit of Measure"
msgstr "Standardmaßeinheit"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "Die Standardmaßeinheit für Artikel {0} kann nicht direkt geändert werden, da bereits einige Transaktionen mit einer anderen Maßeinheit durchgeführt wurden. Sie können entweder die verknüpften Dokumente stornieren oder einen neuen Artikel erstellen."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Die Standard-Maßeinheit für Artikel {0} kann nicht direkt geändert werden, weil Sie bereits einige Transaktionen mit einer anderen Maßeinheit durchgeführt haben. Sie müssen einen neuen Artikel erstellen, um eine andere Standard-Maßeinheit verwenden zukönnen."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Standard-Maßeinheit für Variante '{0}' muss dieselbe wie in der Vorlage '{1}' sein"
@@ -15960,7 +15973,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Standardeinstellungen für Ihre lagerbezogenen Transaktionen"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Es werden Standard-Steuervorlagen für Verkauf, Einkauf und Artikel erstellt."
@@ -16051,6 +16064,12 @@ msgstr "Projekttyp definieren"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Definiert das Datum, nach dem der Artikel nicht mehr in Transaktionen oder der Fertigung verwendet werden kann"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16133,12 +16152,12 @@ msgstr "Interessenten und Adressen löschen"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Transaktionen löschen"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Löschen aller Transaktionen dieses Unternehmens"
@@ -16159,8 +16178,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Lösche {0} und alle zugehörigen Common Code Dokumente..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Löschung im Gange!"
@@ -16271,11 +16290,11 @@ msgstr "Gelieferte Stückzahl"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Kommissionierte Menge (in Lager ME)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16356,7 +16375,7 @@ msgstr "Auslieferungsmanager"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16416,11 +16435,11 @@ msgstr "Lieferschein Verpackter Artikel"
msgid "Delivery Note Trends"
msgstr "Entwicklung Lieferscheine"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Lieferschein {0} ist nicht gebucht"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Lieferscheine"
@@ -16506,10 +16525,6 @@ msgstr "Auslieferungslager"
msgid "Delivery to"
msgstr "Lieferung an"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Auslieferungslager für Lagerartikel {0} erforderlich"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16629,8 +16644,8 @@ msgstr "Abschreibungsbetrag"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16723,7 +16738,7 @@ msgstr "Abschreibungsoptionen"
msgid "Depreciation Posting Date"
msgstr "Buchungsdatum der Abschreibung"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Das Buchungsdatum der Abschreibung kann nicht vor dem Datum der Verfügbarkeit liegen"
@@ -16881,15 +16896,15 @@ msgstr "Differenz (Soll - Haben)"
msgid "Difference Account"
msgstr "Differenzkonto"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Differenzkonto in der Artikeltabelle"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Differenzkonto muss ein Vermögens-/Verbindlichkeiten-Konto (Vorläufige Eröffnung) sein, da diese Lagerbewegung eine Eröffnungsbuchung ist"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Differenzkonto muss ein Vermögens-/Verbindlichkeiten-Konto sein, da dieser Lagerabgleich eine Eröffnungsbuchung ist"
@@ -17001,15 +17016,15 @@ msgstr "Dimensionen"
msgid "Direct Expense"
msgstr "Direkte Ausgaben"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Direkte Aufwendungen"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Direkte Erträge"
@@ -17090,6 +17105,11 @@ msgstr "\"Gesamtsumme runden\" abschalten"
msgid "Disable Serial No And Batch Selector"
msgstr "Selektor für Seriennummer und Chargen deaktivieren"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17126,11 +17146,11 @@ msgstr "Deaktiviertes Lager {0} kann für diese Transaktion nicht verwendet werd
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Preisregeln deaktiviert, da es sich bei {} um eine interne Übertragung handelt"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Bruttopreise deaktiviert, da es sich bei {} um eine interne Übertragung handelt"
@@ -17146,7 +17166,7 @@ msgstr "Deaktiviert das automatische Abrufen der vorhandenen Menge"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17154,15 +17174,15 @@ msgstr "Deaktiviert das automatische Abrufen der vorhandenen Menge"
msgid "Disassemble"
msgstr "Demontage"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Demontageauftrag"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Demontage-Menge darf nicht kleiner oder gleich 0 sein."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Demontage-Menge darf nicht kleiner oder gleich 0 sein."
@@ -17449,7 +17469,7 @@ msgstr "Ermessensgrund"
msgid "Dislikes"
msgstr "Gefällt mir nicht"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Versand"
@@ -17530,7 +17550,7 @@ msgstr "Anzeigename"
msgid "Disposal Date"
msgstr "Verkauf Datum"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Verkaufsdatum {0} kann nicht vor dem {1}-Datum {2} der Anlage liegen."
@@ -17644,8 +17664,8 @@ msgstr "Bezeichnung der Verteilung"
msgid "Distributor"
msgstr "Lieferant"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Ausgeschüttete Dividenden"
@@ -17707,7 +17727,7 @@ msgstr "Kein Symbol wie € o.Ä. neben Währungen anzeigen."
msgid "Do not update variants on save"
msgstr "Aktualisieren Sie keine Varianten beim Speichern"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Wollen Sie diesen entsorgte Vermögenswert wirklich wiederherstellen?"
@@ -17731,7 +17751,7 @@ msgstr "Möchten Sie alle Kunden per E-Mail benachrichtigen?"
msgid "Do you want to submit the material request"
msgstr "Möchten Sie die Materialanforderung buchen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Möchten Sie die Lagerbewegung buchen?"
@@ -17798,11 +17818,11 @@ msgstr "Dokumentnummer"
msgid "Document Type "
msgstr "Art des Dokuments"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Dokumenttyp wird bereits als Dimension verwendet"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentation"
@@ -17965,12 +17985,6 @@ msgstr "Führerscheinklasse"
msgid "Driving License Category"
msgstr "Führerscheinklasse"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Prozeduren löschen"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17991,12 +18005,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Löscht vorhandene SQL-Prozeduren und Funktionen, die vom Forderungsbericht eingerichtet wurden"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Das Fälligkeitsdatum darf nicht nach {0} liegen"
@@ -18155,8 +18163,8 @@ msgstr "Dauer (Tage)"
msgid "Duration in Days"
msgstr "Dauer in Tagen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Zölle und Steuern"
@@ -18239,7 +18247,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Jede Transaktion"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Frühestens"
@@ -18353,6 +18361,10 @@ msgstr "Entweder Zielstückzahl oder Zielmenge ist zwingend erforderlich"
msgid "Either target qty or target amount is mandatory."
msgstr "Entweder Zielstückzahl oder Zielmenge ist zwingend erforderlich."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18372,8 +18384,8 @@ msgstr "Elektrizität"
msgid "Electricity down"
msgstr "Strom aus"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronische Geräte"
@@ -18577,8 +18589,8 @@ msgstr "Mitarbeitervorschuss"
msgid "Employee Advances"
msgstr "Mitarbeiter Fortschritte"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Mitarbeiter-Leistungsverpflichtung"
@@ -18661,7 +18673,7 @@ msgstr "Mitarbeiter {0} hat bereits einen verknüpften Benutzer"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Mitarbeiter {0} gehört nicht zum Unternehmen {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Der Mitarbeiter {0} arbeitet derzeit an einem anderen Arbeitsplatz. Bitte weisen Sie einen anderen Mitarbeiter zu."
@@ -18677,7 +18689,7 @@ msgstr "Mitarbeiter"
msgid "Empty"
msgstr "Leer"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Löschliste leeren"
@@ -18708,7 +18720,7 @@ msgstr "Terminplanung aktivieren"
msgid "Enable Auto Email"
msgstr "Aktivieren Sie die automatische E-Mail"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Aktivieren Sie die automatische Nachbestellung"
@@ -18874,12 +18886,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19008,8 +19014,8 @@ msgstr "Das Enddatum darf nicht vor dem Startdatum liegen."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19108,8 +19114,8 @@ msgstr "Manuell eingeben"
msgid "Enter Serial Nos"
msgstr "Seriennummern eingeben"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Wert eingeben"
@@ -19134,7 +19140,7 @@ msgstr "Geben Sie einen Namen für diese Liste der arbeitsfreien Tage ein."
msgid "Enter amount to be redeemed."
msgstr "Geben Sie den einzulösenden Betrag ein."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Geben Sie einen Artikelcode ein. Der Name wird automatisch mit dem Artikelcode ausgefüllt, wenn Sie in das Feld Artikelname klicken."
@@ -19146,7 +19152,7 @@ msgstr "Geben Sie die E-Mail-Adresse des Kunden ein"
msgid "Enter customer's phone number"
msgstr "Geben Sie die Telefonnummer des Kunden ein"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Datum für die Verschrottung des Vermögensgegenstandes eingeben"
@@ -19190,7 +19196,7 @@ msgstr "Geben Sie den Namen des Begünstigten ein, bevor Sie buchen."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Geben Sie den Namen der Bank oder des Kreditinstituts ein, bevor Sie buchen."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Geben Sie die Anfangsbestandseinheiten ein."
@@ -19198,7 +19204,7 @@ msgstr "Geben Sie die Anfangsbestandseinheiten ein."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Geben Sie die Menge des Artikels ein, der aus dieser Stückliste hergestellt werden soll."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Geben Sie die zu produzierende Menge ein. Rohmaterialartikel werden erst abgerufen, wenn dies eingetragen ist."
@@ -19210,8 +19216,8 @@ msgstr "Geben Sie den Betrag {0} ein."
msgid "Entertainment & Leisure"
msgstr "Unterhaltung & Freizeit"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Bewirtungskosten"
@@ -19235,8 +19241,8 @@ msgstr "Buchungstyp"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19297,7 +19303,7 @@ msgstr "Fehler beim Buchen von Abschreibungsbuchungen"
msgid "Error while processing deferred accounting for {0}"
msgstr "Fehler bei der Verarbeitung der Rechnungsabgrenzung für {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Fehler beim Umbuchen der Artikelbewertung"
@@ -19309,7 +19315,7 @@ msgstr "Fehler: Für diese Sachanlage sind bereits {0} Abschreibungszeiträume g
"\t\t\t\t\tDas Datum „Abschreibungsbeginn“ muss mindestens {1} Zeiträume nach dem Datum „Zeitpunkt der Einsatzbereitschaft“ liegen.\n"
"\t\t\t\t\tBitte korrigieren Sie die Daten entsprechend."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Fehler: {0} ist ein Pflichtfeld"
@@ -19355,7 +19361,7 @@ msgstr "Ab Werk"
msgid "Example URL"
msgstr "Beispiel URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Beispiel für ein verknüpftes Dokument: {0}"
@@ -19375,7 +19381,7 @@ msgstr "Beispiel: ABCD. #####. Wenn die Serie gesetzt ist und die Chargennummer
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Beispiel: Seriennummer {0} reserviert in {1}."
@@ -19385,7 +19391,7 @@ msgstr "Beispiel: Seriennummer {0} reserviert in {1}."
msgid "Exception Budget Approver Role"
msgstr "Ausnahmegenehmigerrolle"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19393,7 +19399,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Überschüssige Materialien verbraucht"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Überschuss-Übertragung"
@@ -19424,17 +19430,17 @@ msgstr "Wechselkursgewinn oder -verlust"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Wechselkursgewinne/-verluste"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Wechselkursgewinne/-verluste wurden über {0} verbucht"
@@ -19573,7 +19579,7 @@ msgstr "Assistent:in der Geschäftsführung"
msgid "Executive Search"
msgstr "Personalberatung"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Steuerbefreite Lieferungen"
@@ -19660,7 +19666,7 @@ msgstr "Voraussichtlicher Stichtag"
msgid "Expected Delivery Date"
msgstr "Geplanter Liefertermin"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Voraussichtlicher Liefertermin sollte nach Auftragsdatum erfolgen"
@@ -19744,7 +19750,7 @@ msgstr "Erwartungswert nach der Ausmusterung"
msgid "Expense"
msgstr "Aufwand"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Aufwands-/Differenz-Konto ({0}) muss ein \"Gewinn oder Verlust\"-Konto sein"
@@ -19822,23 +19828,23 @@ msgstr "Aufwandskonto ist zwingend für Artikel {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Aufwendungen"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Aufwendungen, die in der Vermögensbewertung enthalten sind"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "In der Bewertung enthaltene Aufwendungen"
@@ -19917,7 +19923,7 @@ msgstr "Externe Arbeits-Historie"
msgid "Extra Consumed Qty"
msgstr "Zusätzlich verbrauchte Menge"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Extra Jobkarten Menge"
@@ -20054,7 +20060,7 @@ msgstr "Fehler beim Einrichten des Unternehmens"
msgid "Failed to setup defaults"
msgstr "Standardwerte konnten nicht gesetzt werden"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Die Standardeinstellungen für das Land {0} konnten nicht eingerichtet werden. Bitte kontaktieren Sie den Support."
@@ -20172,6 +20178,11 @@ msgstr "Wert abrufen von"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Abruf der aufgelösten Stückliste (einschließlich der Unterbaugruppen)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Nur {0} verfügbare Seriennummern abgerufen."
@@ -20209,21 +20220,29 @@ msgstr "Feldzuordnung"
msgid "Field in Bank Transaction"
msgstr "Feld im Bankverkehr"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Felder werden nur zum Zeitpunkt der Erstellung kopiert."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Datei gehört nicht zu diesem Transaktionslöschprotokoll"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Datei nicht gefunden"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Datei nicht auf dem Server gefunden"
@@ -20431,9 +20450,9 @@ msgstr "Das Geschäftsjahr beginnt am"
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 "Finanzberichte werden unter Verwendung von Hauptbucheinträgen erstellt (sollte aktiviert werden, wenn der Beleg für den Periodenabschluss nicht für alle Jahre nacheinander gebucht wird oder fehlt) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Fertig"
@@ -20490,15 +20509,15 @@ msgstr "Fertigerzeugnisartikel Menge"
msgid "Finished Good Item Quantity"
msgstr "Fertigerzeugnisartikel Menge"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Fertigerzeugnisartikel ist nicht als Dienstleistungsartikel {0} angelegt"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Menge für Fertigerzeugnis {0} kann nicht Null sein"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Fertigerzeugnis {0} muss ein untervergebener Artikel sein"
@@ -20544,7 +20563,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Fertigerzeugnis {0} muss ein Artikel sein, der untervergeben wurde."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Fertigerzeugnisse"
@@ -20585,7 +20604,7 @@ msgstr "Fertigwarenlager"
msgid "Finished Goods based Operating Cost"
msgstr "Auf Fertigerzeugnissen basierende Betriebskosten"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Fertigerzeugnis {0} stimmt nicht mit dem Arbeitsauftrag {1} überein"
@@ -20726,6 +20745,7 @@ msgstr "Fest"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Anlagevermögen"
@@ -20744,7 +20764,7 @@ msgstr "Konto für Anlagevermögen"
msgid "Fixed Asset Defaults"
msgstr " Standards für Anlagevermögen"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Posten des Anlagevermögens muss ein Artikel ohne Lagerhaltung sein."
@@ -20763,8 +20783,8 @@ msgstr "Anlagenumschlag"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Anlagevermögensartikel {0} kann nicht in Stücklisten verwendet werden."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Anlagevermögen"
@@ -20837,7 +20857,7 @@ msgstr "Folgen Sie den Kalendermonaten"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Folgende Materialanfragen wurden automatisch auf der Grundlage der Nachbestellmenge des Artikels generiert"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Folgende Felder müssen ausgefüllt werden, um eine Adresse zu erstellen:"
@@ -20894,7 +20914,7 @@ msgstr "Für Unternehmen"
msgid "For Item"
msgstr "Für Artikel"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Für Artikel {0} können nicht mehr als {1} ME gegen {2} {3} in Empfang genommen werden"
@@ -20904,7 +20924,7 @@ msgid "For Job Card"
msgstr "Für Jobkarte"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Für Vorgang"
@@ -20925,17 +20945,13 @@ msgstr "Für Preisliste"
msgid "For Production"
msgstr "Für die Produktion"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Für Menge (hergestellte Menge) ist zwingend erforderlich"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Für Rohmaterialien"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Bei Rücksendebelegen mit Lagerbestandsauswirkung sind Artikel mit Menge '0' nicht zulässig. Folgende Zeilen sind betroffen: {0}"
@@ -20963,11 +20979,11 @@ msgstr "Für Lager"
msgid "For Work Order"
msgstr "Für Arbeitsauftrag"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Für eine Position {0} muss die Menge eine negative Zahl sein"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Für eine Position {0} muss die Menge eine positive Zahl sein"
@@ -21005,7 +21021,7 @@ msgstr "Für einzelne Anbieter"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Für Artikel {0} wurden nur {1} Anlagevermögen erstellt oder mit {2} verknüpft. Bitte erstellen oder verknüpfen Sie {3} weitere Anlagevermögen mit dem entsprechenden Dokument."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Für den Artikel {0} muss der Einzelpreis eine positive Zahl sein. Um negative Einzelpreise zuzulassen, aktivieren Sie {1} in {2}"
@@ -21019,7 +21035,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Für den Vorgang {0} in Zeile {1} bitte Rohmaterialien hinzufügen oder eine Stückliste dafür festlegen."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Für den Vorgang {0}: Die Menge ({1}) darf nicht größer sein als die ausstehende Menge ({2})"
@@ -21036,7 +21052,7 @@ msgstr "Für Projekt - {0}, aktualisieren Sie Ihren Status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Für projizierte und prognostizierte Mengen berücksichtigt das System alle untergeordneten Lager unter dem ausgewählten übergeordneten Lager."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Denn die Menge {0} darf nicht größer sein als die zulässige Menge {1}"
@@ -21045,12 +21061,12 @@ msgstr "Denn die Menge {0} darf nicht größer sein als die zulässige Menge {1}
msgid "For reference"
msgstr "Zu Referenzzwecken"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Für Zeile {0} in {1}. Um {2} in die Artikel-Bewertung mit einzubeziehen, muss auch Zeile {3} mit enthalten sein"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Für Zeile {0}: Geben Sie die geplante Menge ein"
@@ -21069,7 +21085,7 @@ msgstr "Für die Bedingung 'Regel auf andere anwenden' ist das Feld {0}
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Zur Vereinfachung für Kunden können diese Codes in Druckformaten wie Rechnungen und Lieferscheinen verwendet werden"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Für den Artikel {0} sollte die verbrauchte Menge gemäß der Stückliste {2} gleich {1} sein."
@@ -21116,11 +21132,6 @@ msgstr "Prognose"
msgid "Forecast Demand"
msgstr "Prognostizierter Bedarf"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Prognosemenge"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21166,7 +21177,7 @@ msgstr "Forum Beiträge"
msgid "Forum URL"
msgstr "Forum-URL"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21211,8 +21222,8 @@ msgstr "In der Preisregel {0} nicht festgelegter kostenloser Artikel"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Aktien einfrieren älter als (Tage)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Fracht- und Versandkosten"
@@ -21646,8 +21657,8 @@ msgstr "Vollständig bezahlt"
msgid "Furlong"
msgstr "Achtelmeile"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Betriebs- und Geschäftsausstattung"
@@ -21664,13 +21675,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Zukünftiger Zahlungsbetrag"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Zukünftige Zahlung"
@@ -21678,7 +21689,7 @@ msgstr "Zukünftige Zahlung"
msgid "Future Payments"
msgstr "Zukünftige Zahlungen"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Ein zukünftiges Datum ist nicht zulässig"
@@ -21763,9 +21774,9 @@ msgstr "Gewinn/Verlust bereits verbucht"
msgid "Gain/Loss from Revaluation"
msgstr "Gewinn/Verlust aus Neubewertung"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Gewinn / Verlust aus der Veräußerung von Vermögenswerten"
@@ -21938,7 +21949,7 @@ msgstr "Saldo abrufen"
msgid "Get Current Stock"
msgstr "Aktuellen Lagerbestand aufrufen"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Einstellungen aus Kundengruppe übernehmen"
@@ -21996,7 +22007,7 @@ msgstr "Artikelstandorte abrufen"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22035,7 +22046,7 @@ msgstr "Artikel aus der Stückliste holen"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Erhalten Sie Artikel aus Materialanfragen gegen diesen Lieferanten"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Artikel aus dem Produkt-Bundle übernehmen"
@@ -22209,7 +22220,7 @@ msgstr "Ziele"
msgid "Goods"
msgstr "Waren"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Waren im Transit"
@@ -22218,7 +22229,7 @@ msgstr "Waren im Transit"
msgid "Goods Transferred"
msgstr "Übergebene Ware"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Waren sind bereits gegen die Ausgangsbuchung {0} eingegangen"
@@ -22401,7 +22412,7 @@ msgstr "Gesamtsumme muss der Summe der Zahlungsreferenzen entsprechen"
msgid "Grant Commission"
msgstr "Provision gewähren"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Größer als Menge"
@@ -22844,7 +22855,7 @@ msgstr "Hilft Ihnen, das Budget/Ziel über die Monate zu verteilen, wenn Sie in
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Hier sind die Fehlerprotokolle für die oben erwähnten fehlgeschlagenen Abschreibungseinträge: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Hier sind die Optionen für das weitere Vorgehen:"
@@ -22872,7 +22883,7 @@ msgstr "Hier werden Ihre wöchentlichen freien Tage auf der Grundlage der zuvor
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Hallo,"
@@ -23071,7 +23082,7 @@ msgstr "Wie Werte im Finanzbericht formatiert und dargestellt werden (nur wenn a
msgid "Hrs"
msgstr "Std"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Personalwesen"
@@ -23240,6 +23251,12 @@ msgstr "Falls aktiviert, wird der Betrag in einer Zahlung als Bruttobetrag (inkl
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Falls aktiviert, wird der Steuerbetrag als im Einzelpreis enthalten betrachtet"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Falls aktiviert, werden Demodaten erstellt, damit Sie das System erkunden können. Diese Demodaten können später wieder gelöscht werden."
@@ -23460,7 +23477,7 @@ msgstr ""
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Falls keine Steuern festgelegt sind und eine Steuer- und Gebührenvorlage ausgewählt ist, wendet das System automatisch die Steuern aus der ausgewählten Vorlage an."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Wenn nicht, können Sie diesen Eintrag stornieren / buchen"
@@ -23486,13 +23503,18 @@ msgstr ""
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 "Wenn die ausgewählte Preisregel für 'Rate' (Einzelpreis) festgelegt ist, überschreibt sie die Preisliste. Der Einzelpreis der Preisregel ist der endgültige Preis, sodass kein weiterer Rabatt angewendet werden sollte. Daher wird er in Transaktionen wie Auftrag, Bestellung usw. im Feld 'Einzelpreis' abgerufen, statt im Feld 'Listenpreis'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Falls festgelegt, verwendet das System nicht die E-Mail des Benutzers oder das Standard-E-Mail-Konto für ausgehende E-Mails für den Versand von Angebotsanfragen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Wenn die Stückliste Schrottmaterial ergibt, muss ein Schrottlager ausgewählt werden."
@@ -23501,7 +23523,7 @@ msgstr "Wenn die Stückliste Schrottmaterial ergibt, muss ein Schrottlager ausge
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Wenn das Konto gesperrt ist, sind einem eingeschränkten Benutzerkreis Buchungen erlaubt."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Wenn der Artikel in diesem Eintrag als Artikel mit der Bewertung Null bewertet wird, aktivieren Sie in der Tabelle {0} Artikel die Option 'Nullbewertung zulassen'."
@@ -23511,7 +23533,7 @@ msgstr "Wenn der Artikel in diesem Eintrag als Artikel mit der Bewertung Null be
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 "Wenn die Nachbestellungsprüfung auf Gruppenlagereebene festgelegt ist, ergibt sich die verfügbare Menge aus der Summe der prognostizierten Mengen aller untergeordneten Lager."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Wenn die ausgewählte Stückliste Vorgänge enthält, holt das System alle Vorgänge aus der Stückliste. Diese Werte können geändert werden."
@@ -23588,7 +23610,7 @@ msgstr "Wenn die Gültigkeit der Treuepunkte unbegrenzt ist, lassen Sie die Abla
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Falls aktiviert, wird dieses Lager für zurückgewiesenes Material verwendet"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Wenn Sie diesen Artikel in Ihrem Inventar führen, nimmt ERPNext für jede Transaktion dieses Artikels einen Lagerbuch-Eintrag vor."
@@ -23602,7 +23624,7 @@ msgstr "Wenn Sie bestimmte Transaktionen gegeneinander abgleichen müssen, wähl
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Wenn Sie trotzdem fortfahren möchten, deaktivieren Sie bitte das Kontrollkästchen 'Verfügbare Unterbaugruppenartikel überspringen'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Wenn Sie dennoch fortfahren möchten, aktivieren Sie bitte {0}."
@@ -23686,7 +23708,7 @@ msgstr "Wechselkursneubewertung und Gewinn-/Verlust-Journale ignorieren"
msgid "Ignore Existing Ordered Qty"
msgstr "Existierende bestelle Menge ignorieren"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Vorhandene projizierte Menge ignorieren"
@@ -23773,12 +23795,12 @@ msgstr "Arbeitsplatz-Zeitüberlappung ignorieren"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Ignoriert das veraltete Ist-Eröffnung-Feld im Hauptbucheintrag, das das Hinzufügen von Eröffnungssalden nach der Inbetriebnahme des Systems bei der Berichterstellung ermöglicht"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "Das Bild in der Beschreibung wurde entfernt. Um dieses Verhalten zu deaktivieren, deaktivieren Sie \"{0}\" in {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Wertminderung"
@@ -23936,7 +23958,7 @@ msgstr "In Produktion"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "In Menge"
@@ -24060,7 +24082,7 @@ msgstr "Im Falle eines mehrstufigen Programms werden die Kunden je nach ihren Au
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "In diesem Abschnitt können Sie unternehmensweite transaktionsbezogene Standardwerte für diesen Artikel festlegen. Z. B. Standardlager, Standardpreisliste, Lieferant, etc."
@@ -24291,8 +24313,8 @@ msgstr "Einschließlich der Artikel für Unterbaugruppen"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24363,7 +24385,7 @@ msgstr "Eingehende Zahlung"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24395,7 +24417,7 @@ msgstr "Falsche Saldo-Menge nach Transaktion"
msgid "Incorrect Batch Consumed"
msgstr "Falsche Charge verbraucht"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Falsches Aktivieren in (Gruppen-)Lager für Nachbestellung"
@@ -24403,7 +24425,7 @@ msgstr "Falsches Aktivieren in (Gruppen-)Lager für Nachbestellung"
msgid "Incorrect Company"
msgstr "Falsches Unternehmen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Falsche Komponentenmenge"
@@ -24537,15 +24559,15 @@ msgstr "Zeigt an, dass das Paket ein Teil dieser Lieferung ist (nur Entwurf)"
msgid "Indirect Expense"
msgstr "Indirekte Kosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirekte Aufwendungen"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirekte Erträge"
@@ -24613,14 +24635,14 @@ msgstr "Initiiert"
msgid "Inspected By"
msgstr "kontrolliert durch"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspektion abgelehnt"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Prüfung erforderlich"
@@ -24637,8 +24659,8 @@ msgstr "Inspektion vor der Auslieferung erforderlich"
msgid "Inspection Required before Purchase"
msgstr "Inspektion vor dem Kauf erforderlich"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Prüfungsübermittlung"
@@ -24668,7 +24690,7 @@ msgstr "Installationshinweis"
msgid "Installation Note Item"
msgstr "Bestandteil des Installationshinweises"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Der Installationsschein {0} wurde bereits gebucht"
@@ -24707,11 +24729,11 @@ msgstr "Anweisung"
msgid "Insufficient Capacity"
msgstr "Unzureichende Kapazität"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Nicht ausreichende Berechtigungen"
@@ -24719,13 +24741,12 @@ msgstr "Nicht ausreichende Berechtigungen"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Nicht genug Lagermenge."
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Unzureichender Bestand für Charge"
@@ -24845,13 +24866,13 @@ msgstr "Inter-Transfer-Referenz"
msgid "Interest"
msgstr "Zinsen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Zinserträge"
@@ -24859,8 +24880,8 @@ msgstr "Zinserträge"
msgid "Interest and/or dunning fee"
msgstr "Zinsen und/oder Mahngebühren"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Zinsen auf Festgeld"
@@ -24880,7 +24901,7 @@ msgstr "Intern"
msgid "Internal Customer Accounting"
msgstr "Interne Kundenbuchhaltung"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Interner Kunde für Unternehmen {0} existiert bereits"
@@ -24888,7 +24909,7 @@ msgstr "Interner Kunde für Unternehmen {0} existiert bereits"
msgid "Internal Purchase Order"
msgstr "Interne Bestellung"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Interne Verkaufs- oder Lieferreferenz fehlt."
@@ -24896,7 +24917,7 @@ msgstr "Interne Verkaufs- oder Lieferreferenz fehlt."
msgid "Internal Sales Order"
msgstr "Interner Auftrag"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Interne Verkaufsreferenz Fehlt"
@@ -24927,7 +24948,7 @@ msgstr "Interner Lieferant für Unternehmen {0} existiert bereits"
msgid "Internal Transfer"
msgstr "Interner Transfer"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Interne Transferreferenz fehlt"
@@ -24940,7 +24961,12 @@ msgstr "Interne Transfers"
msgid "Internal Work History"
msgstr "Interne Arbeits-Historie"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interne Transfers können nur in der Standardwährung des Unternehmens durchgeführt werden"
@@ -24956,12 +24982,12 @@ msgstr "Das Intervall sollte zwischen 1 und 59 Minuten liegen"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Ungültiger Account"
@@ -24982,7 +25008,7 @@ msgstr "Ungültiger Betrag"
msgid "Invalid Attribute"
msgstr "Ungültige Attribute"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Ungültiges Datum für die automatische Wiederholung"
@@ -24995,7 +25021,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Ungültiger Barcode. Es ist kein Artikel an diesen Barcode angehängt."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Ungültiger Rahmenauftrag für den ausgewählten Kunden und Artikel"
@@ -25011,21 +25037,21 @@ msgstr "Ungültige untergeordnete Prozedur"
msgid "Invalid Company Field"
msgstr "Ungültiges Unternehmensfeld"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Ungültige Firma für Inter Company-Transaktion."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Ungültige Kostenstelle"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Ungültige Kundengruppe"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Ungültiges Lieferdatum"
@@ -25063,7 +25089,7 @@ msgstr "Ungültige Gruppierung"
msgid "Invalid Item"
msgstr "Ungültiger Artikel"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Ungültige Artikel-Standardwerte"
@@ -25077,7 +25103,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Ungültiger Netto-Kaufbetrag"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Ungültiger Eröffnungseintrag"
@@ -25085,11 +25111,11 @@ msgstr "Ungültiger Eröffnungseintrag"
msgid "Invalid POS Invoices"
msgstr "Ungültige POS-Rechnungen"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Ungültiges übergeordnetes Konto"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Ungültige Teilenummer"
@@ -25119,12 +25145,12 @@ msgstr "Ungültige Prozessverlust-Konfiguration"
msgid "Invalid Purchase Invoice"
msgstr "Ungültige Eingangsrechnung"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Ungültige Menge"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Ungültige Menge"
@@ -25149,12 +25175,12 @@ msgstr "Ungültiger Zeitplan"
msgid "Invalid Selling Price"
msgstr "Ungültiger Verkaufspreis"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Ungültiges Serien- und Chargenbündel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Ungültiges Quell- und Ziellager"
@@ -25179,7 +25205,7 @@ msgstr "Ungültiger Betrag in Buchungssätzen von {} {} für Konto {}: {}"
msgid "Invalid condition expression"
msgstr "Ungültiger Bedingungsausdruck"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Ungültige Datei-URL"
@@ -25191,7 +25217,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Ungültiger Grund für verlorene(s) {0}, bitte erstellen Sie einen neuen Grund für Verlust"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Ungültige Namensreihe (. Fehlt) für {0}"
@@ -25217,8 +25243,8 @@ msgstr "Ungültige Suchanfrage"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Ungültiger Wert {0} für {1} gegen Konto {2}"
@@ -25226,7 +25252,7 @@ msgstr "Ungültiger Wert {0} für {1} gegen Konto {2}"
msgid "Invalid {0}"
msgstr "Ungültige(r) {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Ungültige {0} für Inter Company-Transaktion."
@@ -25236,7 +25262,7 @@ msgid "Invalid {0}: {1}"
msgstr "Ungültige(r/s) {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Lagerbestand"
@@ -25285,8 +25311,8 @@ msgstr "Bestandsbewertung"
msgid "Investment Banking"
msgstr "Investment-Banking"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investitionen"
@@ -25336,7 +25362,7 @@ msgstr "Rechnungsrabatt"
msgid "Invoice Document Type Selection Error"
msgstr "Fehler bei der Auswahl des Rechnungs-Dokumententyps"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Rechnungssumme"
@@ -25441,7 +25467,7 @@ msgstr "Die Rechnung kann nicht für die Null-Rechnungsstunde erstellt werden"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25462,7 +25488,7 @@ msgstr "In Rechnung gestellte Menge"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25558,8 +25584,7 @@ msgstr "Ist Alternative"
msgid "Is Billable"
msgstr "Ist abrechenbar"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Ist Rechnungskontakt"
@@ -26001,8 +26026,7 @@ msgstr " Ist Vorlage"
msgid "Is Transporter"
msgstr "Ist Transporter"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Ist Ihre Unternehmensadresse"
@@ -26108,8 +26132,8 @@ msgstr "Anfragetyp"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Lastschrift mit Menge 0 gegen eine bestehende Ausgangsrechnung ausstellen"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26139,11 +26163,11 @@ msgstr "Probleme"
msgid "Issuing Date"
msgstr "Ausstellungsdatum"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Es kann bis zu einigen Stunden dauern, bis nach der Zusammenführung von Artikeln genaue Bestandswerte sichtbar sind."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Wird gebraucht, um Artikeldetails abzurufen"
@@ -26267,7 +26291,7 @@ msgstr "Kursiver Text für Zwischensummen oder Anmerkungen"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26515,7 +26539,7 @@ msgstr "Artikel-Warenkorb"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26577,7 +26601,7 @@ msgstr "Artikel-Warenkorb"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26776,13 +26800,13 @@ msgstr "Artikeldetails"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26999,7 +27023,7 @@ msgstr "Artikel Hersteller"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27039,10 +27063,10 @@ msgstr "Artikel Hersteller"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27083,10 +27107,6 @@ msgstr "Artikel nicht vorrätig"
msgid "Item Price"
msgstr "Artikelpreis"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Artikelpreis für {0} in Preisliste {1} hinzugefügt"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27102,19 +27122,20 @@ msgstr "Artikelpreiseinstellungen"
msgid "Item Price Stock"
msgstr "Artikel Preis Lagerbestand"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Artikel Preis hinzugefügt für {0} in Preisliste {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Ein Artikelpreis für diese Kombination aus Preisliste, Lieferant/Kunde, Währung, Artikel, Charge, ME, Menge und Datum existiert bereits."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Artikel Preis aktualisiert für {0} in der Preisliste {1}"
@@ -27301,11 +27322,11 @@ msgstr "Details der Artikelvariante"
msgid "Item Variant Settings"
msgstr "Einstellungen zur Artikelvariante"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Artikelvariante {0} mit denselben Attributen existiert bereits"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Artikelvarianten aktualisiert"
@@ -27406,11 +27427,11 @@ msgstr "Artikel und Lager"
msgid "Item and Warranty Details"
msgstr "Einzelheiten Artikel und Garantie"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Artikel für Zeile {0} stimmt nicht mit Materialanforderung überein"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Artikel hat Varianten."
@@ -27436,11 +27457,7 @@ msgstr "Artikelname"
msgid "Item operation"
msgstr "Artikeloperation"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Die Artikelmenge kann nicht aktualisiert werden, da das Rohmaterial bereits verarbeitet werden."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Artikelpreis wurde auf Null aktualisiert, da „Nullbewertung zulassen“ für Artikel {0} aktiviert ist"
@@ -27459,11 +27476,11 @@ msgstr "Der Wertansatz wird unter Berücksichtigung des Einstandskostenbelegbetr
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Neubewertung der Artikel im Gange. Der Bericht könnte eine falsche Artikelbewertung anzeigen."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Artikelvariante {0} mit denselben Attributen existiert"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27480,7 +27497,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikel {0} kann nicht mehr als {1} im Rahmenauftrag {2} bestellt werden."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Artikel {0} existiert nicht"
@@ -27492,7 +27509,7 @@ msgstr "Artikel {0} ist nicht im System vorhanden oder abgelaufen"
msgid "Item {0} does not exist."
msgstr "Artikel {0} existiert nicht."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Artikel {0} mehrfach eingegeben."
@@ -27504,15 +27521,15 @@ msgstr "Artikel {0} wurde bereits zurück gegeben"
msgid "Item {0} has been disabled"
msgstr "Artikel {0} wurde deaktiviert"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Artikel {0} hat keine Seriennummer. Nur Artikel mit Seriennummer können basierend auf der Seriennummer geliefert werden"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Artikel {0} hat das Ende seiner Lebensdauer erreicht zum Datum {1}"
@@ -27524,15 +27541,15 @@ msgstr "Artikel {0} ignoriert, da es sich nicht um einen Lagerartikel handelt"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Der Artikel {0} ist bereits für den Auftrag {1} reserviert/geliefert."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Artikel {0} wird storniert"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Artikel {0} ist deaktiviert"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27540,7 +27557,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Artikel {0} ist kein Fortsetzungsartikel"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Artikel {0} ist kein Lagerartikel"
@@ -27548,11 +27565,11 @@ msgstr "Artikel {0} ist kein Lagerartikel"
msgid "Item {0} is not a subcontracted item"
msgstr "Artikel {0} ist kein unterbeauftragter Artikel"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Artikel {0} ist nicht aktiv oder hat das Ende der Lebensdauer erreicht"
@@ -27568,7 +27585,7 @@ msgstr "Artikel {0} ein Artikel ohne Lagerhaltung sein"
msgid "Item {0} must be a non-stock item"
msgstr "Artikel {0} muss ein Artikel ohne Lagerhaltung sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Artikel {0} wurde in der Tabelle „Gelieferte Rohstoffe“ in {1} {2} nicht gefunden"
@@ -27576,7 +27593,7 @@ msgstr "Artikel {0} wurde in der Tabelle „Gelieferte Rohstoffe“ in {1} {2} n
msgid "Item {0} not found."
msgstr "Artikel {0} nicht gefunden."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Artikel {0}: Bestellmenge {1} kann nicht weniger als Mindestbestellmenge {2} (im Artikel definiert) sein."
@@ -27584,7 +27601,7 @@ msgstr "Artikel {0}: Bestellmenge {1} kann nicht weniger als Mindestbestellmenge
msgid "Item {0}: {1} qty produced. "
msgstr "Artikel {0}: {1} produzierte Menge."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Artikel {0} existiert nicht."
@@ -27630,7 +27647,7 @@ msgstr "Artikelbezogene Übersicht der Verkäufe"
msgid "Item-wise sales Register"
msgstr "Artikelweises Verkaufsregister"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Artikel/Artikelcode erforderlich, um Artikel-Steuervorlage zu erhalten."
@@ -27654,7 +27671,7 @@ msgstr "Artikelkatalog"
msgid "Items Filter"
msgstr "Artikel filtern"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Erforderliche Artikel"
@@ -27678,11 +27695,11 @@ msgstr "Anzufragende Artikel"
msgid "Items and Pricing"
msgstr "Artikel und Preise"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Artikel können nicht aktualisiert werden, da Subunternehmer-Eingangsauftrag/Eingangsaufträge gegen diesen Subunternehmer-Auftrag existieren."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Artikel können nicht aktualisiert werden, da ein Unterauftrag für die Bestellung {0} erstellt ist."
@@ -27694,7 +27711,7 @@ msgstr "Artikel für Rohstoffanforderung"
msgid "Items not found."
msgstr "Artikel nicht gefunden."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Der Artikelpreis wurde auf null aktualisiert, da Null-Bewertungssatz zulassen für folgende Artikel aktiviert ist: {0}"
@@ -27704,7 +27721,7 @@ msgstr "Der Artikelpreis wurde auf null aktualisiert, da Null-Bewertungssatz zul
msgid "Items to Be Repost"
msgstr "Neu zu buchende Artikel"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Zu fertigende Gegenstände sind erforderlich, um die damit verbundenen Rohstoffe zu ziehen."
@@ -27769,9 +27786,9 @@ msgstr "Arbeitskapazität"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27833,7 +27850,7 @@ msgstr "Jobkarten-Zeitprotokoll"
msgid "Job Card and Capacity Planning"
msgstr "Jobkarte und Kapazitätsplanung"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Jobkarte {0} wurde abgeschlossen"
@@ -27909,7 +27926,7 @@ msgstr "Name des Unterauftragnehmers"
msgid "Job Worker Warehouse"
msgstr "Lagerhaus des Unterauftragnehmers"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Jobkarte {0} erstellt"
@@ -28129,7 +28146,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowattstunde"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Stornieren Sie bitte zuerst die Fertigungseinträge gegen den Arbeitsauftrag {0}."
@@ -28257,7 +28274,7 @@ msgstr "Letztes Fertigstellungsdatum"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Letzte Hauptbucheintrags-Aktualisierung wurde {} durchgeführt. Dieser Vorgang ist nicht zulässig, während das System aktiv genutzt wird. Bitte warten Sie 5 Minuten, bevor Sie es erneut versuchen."
@@ -28339,7 +28356,7 @@ msgstr "Das Datum der letzten Kohlenstoffprüfung kann kein zukünftiges Datum s
msgid "Last transacted"
msgstr "Zuletzt verarbeitet"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Neueste"
@@ -28590,12 +28607,12 @@ msgstr "Veraltete Felder"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Juristische Person / Tochtergesellschaft mit einem separaten Kontenplan, der zur Organisation gehört."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Rechtskosten"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legende"
@@ -28606,7 +28623,7 @@ msgstr "Legende"
msgid "Length (cm)"
msgstr "Länge (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Weniger als der Betrag"
@@ -28665,7 +28682,7 @@ msgstr "Lizenznummer"
msgid "License Plate"
msgstr "Nummernschild"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Grenze überschritten"
@@ -28726,7 +28743,7 @@ msgstr "Link zu Materialanfragen"
msgid "Link with Customer"
msgstr "Mit Kunde verknüpfen"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Mit Lieferant verknüpfen"
@@ -28747,12 +28764,12 @@ msgstr "Verknüpfte Rechnungen"
msgid "Linked Location"
msgstr "Verknüpfter Ort"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Verknüpft mit gebuchten Dokumenten"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Verknüpfung fehlgeschlagen"
@@ -28760,7 +28777,7 @@ msgstr "Verknüpfung fehlgeschlagen"
msgid "Linking to Customer Failed. Please try again."
msgstr "Verknüpfung mit Kunde fehlgeschlagen. Bitte versuchen Sie es erneut."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Verknüpfung mit Lieferant fehlgeschlagen. Bitte versuchen Sie es erneut."
@@ -28818,8 +28835,8 @@ msgstr "Startdatum des Darlehens"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Das Ausleihbeginndatum und die Ausleihdauer sind obligatorisch, um die Rechnungsdiskontierung zu speichern"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Darlehen/Kredite (Verbindlichkeiten)"
@@ -28864,8 +28881,8 @@ msgstr "Protokollieren Sie den Einkaufs- und Verkaufspreis eines Artikels"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29066,6 +29083,11 @@ msgstr "Loyalitätsprogramm-Stufe"
msgid "Loyalty Program Type"
msgstr "Treueprogrammtyp"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29109,10 +29131,10 @@ msgstr "Maschinenstörung"
msgid "Machine operator errors"
msgstr "Maschinenbedienerfehler"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Haupt"
@@ -29355,9 +29377,9 @@ msgstr "Wichtiger/wahlweiser Betreff"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Erstellen"
@@ -29377,7 +29399,7 @@ msgstr "Neuen Abschreibungseintrag erstellen"
msgid "Make Difference Entry"
msgstr "Differenzbuchung erstellen"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Vorlaufzeit erstellen"
@@ -29415,12 +29437,12 @@ msgstr "Ausgangsrechnung erstellen"
msgid "Make Serial No / Batch from Work Order"
msgstr "Seriennummer / Charge aus Arbeitsauftrag herstellen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Bestandserfassung vornehmen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Untervergabebestellung erstellen"
@@ -29436,11 +29458,11 @@ msgstr "Einen Anruf tätigen"
msgid "Make project from a template."
msgstr "Projekt aus einer Vorlage erstellen."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "{0} Variante erstellen"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "{0} Varianten erstellen"
@@ -29448,8 +29470,8 @@ msgstr "{0} Varianten erstellen"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Es wird nicht empfohlen, Buchungssätze gegen Vorschusskonten vorzunehmen: {0}. Diese Buchungssätze sind für die Abstimmungen nicht verfügbar."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Verwalten"
@@ -29468,7 +29490,7 @@ msgstr "Provisionen von Vertriebspartnern und Verkaufsteams verwalten"
msgid "Manage your orders"
msgstr "Verwalten Sie Ihre Aufträge"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Verwaltung"
@@ -29484,7 +29506,7 @@ msgstr "Geschäftsleitung"
msgid "Mandatory Accounting Dimension"
msgstr "Obligatorische Buchhaltungsdimension"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Pflichtfeld"
@@ -29583,8 +29605,8 @@ msgstr "Manuelle Eingabe kann nicht erstellt werden! Deaktivieren Sie die automa
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29663,7 +29685,7 @@ msgstr "Hersteller"
msgid "Manufacturer Part Number"
msgstr "Herstellernummer"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Die Herstellerteilenummer {0} ist ungültig"
@@ -29688,7 +29710,7 @@ msgstr "In Artikeln verwendete Hersteller"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29733,10 +29755,6 @@ msgstr "Herstellungsdatum"
msgid "Manufacturing Manager"
msgstr "Fertigungsleiter"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Eingabe einer Fertigungsmenge ist erforderlich"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29903,6 +29921,12 @@ msgstr "Familienstand"
msgid "Mark As Closed"
msgstr "Als geschlossen markieren"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29917,12 +29941,12 @@ msgstr "Als geschlossen markieren"
msgid "Market Segment"
msgstr "Marktsegment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Marketingkosten"
@@ -30001,7 +30025,7 @@ msgstr ""
msgid "Material"
msgstr "Material"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Materialverbrauch"
@@ -30009,7 +30033,7 @@ msgstr "Materialverbrauch"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Materialverbrauch für die Herstellung"
@@ -30090,7 +30114,7 @@ msgstr "Materialannahme"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30187,11 +30211,11 @@ msgstr "Materialanforderung Planelement"
msgid "Material Request Type"
msgstr "Materialanfragetyp"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Materialanfrage für die bestellte Menge wurde bereits erstellt"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Materialanforderung nicht angelegt, da Menge für Rohstoffe bereits vorhanden."
@@ -30259,7 +30283,7 @@ msgstr "Aus WIP zurückgegebenes Material"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30325,12 +30349,12 @@ msgstr "Material an den Lieferanten"
msgid "Materials To Be Transferred"
msgstr "Zu übertragende Materialien"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Materialien sind bereits gegen {0} {1} eingegangen"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Materialien müssen für die Jobkarte {0} ins Lager der Arbeit in Bearbeitung übertragen werden"
@@ -30401,9 +30425,9 @@ msgstr "Max. Ergebnis"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Der maximal zulässige Rabatt für den Artikel: {0} beträgt {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30435,11 +30459,11 @@ msgstr "Maximaler Zahlungsbetrag"
msgid "Maximum Producible Items"
msgstr "Maximal produzierbare Artikel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maximum Samples - {0} kann für Batch {1} und Item {2} beibehalten werden."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maximum Samples - {0} wurden bereits für Batch {1} und Artikel {2} in Batch {3} gespeichert."
@@ -30500,15 +30524,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Erwähnen Sie die Bewertungsrate im Artikelstamm."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Festlegen, falls nicht das Standard-Forderungskonto verwendet werden soll"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30558,7 +30577,7 @@ msgstr "Mit existierendem Konto zusammenfassen"
msgid "Merged"
msgstr "Zusammengeführt"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Zusammenführen ist nur möglich, wenn folgende Eigenschaften in beiden Datensätzen gleich sind: Ist Gruppe, Wurzeltyp, Unternehmen und Kontowährung"
@@ -30588,7 +30607,7 @@ msgstr "Es wird eine Nachricht an die Benutzer gesendet, um über den Projektsta
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Mitteilungen mit mehr als 160 Zeichen werden in mehrere Nachrichten aufgeteilt"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "Messaging-CRM-Kampagne"
@@ -30789,7 +30808,7 @@ msgstr "Mindestmenge kann nicht größer als Maximalmenge sein"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Mindestmenge sollte größer sein als Rekursions-Schwellenwert"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Mindestwert: {0}, Höchstwert: {1}, in Schritten von: {2}"
@@ -30878,8 +30897,8 @@ msgstr "Minuten"
msgid "Miscellaneous"
msgstr "Sonstiges"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Sonstige Aufwendungen"
@@ -30887,15 +30906,15 @@ msgstr "Sonstige Aufwendungen"
msgid "Mismatch"
msgstr "Keine Übereinstimmung"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Fehlt"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Fehlendes Konto"
@@ -30925,7 +30944,7 @@ msgstr "Fehlende Filter"
msgid "Missing Finance Book"
msgstr "Fehlendes Finanzbuch"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Fehlendes Fertigerzeugnis"
@@ -30933,7 +30952,7 @@ msgstr "Fehlendes Fertigerzeugnis"
msgid "Missing Formula"
msgstr "Fehlende Formel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Fehlender Artikel"
@@ -30970,7 +30989,7 @@ msgid "Missing required filter: {0}"
msgstr "Erforderlicher Filter fehlt: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Fehlender Wert"
@@ -31219,11 +31238,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Für den Kunden {} wurden mehrere Treueprogramme gefunden. Bitte manuell auswählen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Mehrere POS-Eröffnungseinträge"
@@ -31245,11 +31264,11 @@ msgstr "Mehrere Varianten"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Mehrere Unternehmensfelder verfügbar: {0}. Bitte manuell auswählen."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Mehrere Geschäftsjahre existieren für das Datum {0}. Bitte setzen Unternehmen im Geschäftsjahr"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Mehrere Artikel können nicht als fertiger Artikel markiert werden"
@@ -31258,7 +31277,7 @@ msgid "Music"
msgstr "Musik"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31345,7 +31364,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Nummernkreis '{0}' für DocType '{1}' enthält keinen Standard-Trenner '.' oder '{{'. Verwende Fallback-Extraktion."
@@ -31389,7 +31408,7 @@ msgstr "Muss analysiert werden"
msgid "Negative Batch Report"
msgstr "Bericht über negative Chargen"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negative Menge ist nicht erlaubt"
@@ -31398,7 +31417,7 @@ msgstr "Negative Menge ist nicht erlaubt"
msgid "Negative Stock Error"
msgstr "Fehler bei negativem Lagerbestand"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negative Bewertung ist nicht erlaubt"
@@ -31704,7 +31723,7 @@ msgstr "Nettogewicht"
msgid "Net Weight UOM"
msgstr "Nettogewichtmaßeinheit"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Präzisionsverlust bei Berechnung der Nettosumme"
@@ -31881,7 +31900,7 @@ msgstr "Neuer Lagername"
msgid "New Workplace"
msgstr "Neuer Arbeitsplatz"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Neues Kreditlimit ist weniger als der aktuell ausstehende Betrag für den Kunden. Kreditlimit muss mindestens {0} sein"
@@ -31935,7 +31954,7 @@ msgstr "Nächste E-Mail wird gesendet am:"
msgid "No Account Data row found"
msgstr "Keine Kontodaten -Zeile gefunden"
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Kein Konto entspricht diesen Filtern: {}"
@@ -31948,7 +31967,7 @@ msgstr "Keine Aktion"
msgid "No Answer"
msgstr "Keine Antwort"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Für Transaktionen zwischen Unternehmen, die das Unternehmen {0} darstellen, wurde kein Kunde gefunden."
@@ -31961,7 +31980,7 @@ msgstr "Keine Kunden mit ausgewählten Optionen gefunden."
msgid "No Delivery Note selected for Customer {}"
msgstr "Kein Lieferschein für den Kunden {} ausgewählt"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Keine DocTypes in der Zu-löschenden-Liste. Bitte die Liste vor dem Buchen generieren oder importieren."
@@ -31977,7 +31996,7 @@ msgstr "Kein Artikel mit Barcode {0}"
msgid "No Item with Serial No {0}"
msgstr "Kein Artikel mit Seriennummer {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Keine Artikel zur Übertragung ausgewählt."
@@ -32012,7 +32031,7 @@ msgstr "Kein POS-Profil gefunden. Bitte erstellen Sie zunächst ein neues POS-Pr
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Keine Berechtigung"
@@ -32041,19 +32060,19 @@ msgstr "Derzeit kein Lagerbestand verfügbar"
msgid "No Summary"
msgstr "Keine Zusammenfassung"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Es wurde kein Lieferant für Transaktionen zwischen Unternehmen gefunden, die das Unternehmen {0} darstellen."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Für das aktuelle Buchungsdatum wurden keine Quellensteuerdaten gefunden."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Kein Steuereinbehalt-Konto für das Unternehmen {0} in der Steuereinbehalt-Kategorie {1} hinterlegt."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Keine Bedingungen"
@@ -32083,7 +32102,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Für Artikel {0} wurde keine aktive Stückliste gefunden. Die Lieferung per Seriennummer kann nicht gewährleistet werden"
@@ -32277,7 +32296,7 @@ msgstr "Anzahl Arbeitsplätze"
msgid "No open Material Requests found for the given criteria."
msgstr "Keine offenen Materialanfragen für die angegebenen Kriterien gefunden."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Kein offener POS-Eröffnungseintrag für das POS-Profil {0} gefunden."
@@ -32301,7 +32320,7 @@ msgstr "Keine ausstehenden Rechnungen erfordern eine Neubewertung des Wechselkur
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Für {1} {2} wurden kein ausstehender Beleg vom Typ {0} gefunden, der den angegebenen Filtern entspricht."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Es wurden keine ausstehenden Materialanfragen gefunden, die mit dem angegebenen Artikel verknüpft werden können."
@@ -32372,7 +32391,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Es wurden keine Lagerbuchungen erstellt. Bitte geben Sie die Menge oder den Wertansatz für die Artikel ordnungsgemäß an und versuchen Sie es erneut."
@@ -32405,7 +32424,7 @@ msgstr "Keine Werte"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Keine {0} für Inter-Company-Transaktionen gefunden."
@@ -32450,8 +32469,8 @@ msgstr "Gemeinnützig"
msgid "Non stock items"
msgstr "Artikel ohne Lagerhaltung"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32552,7 +32571,7 @@ msgstr "Das früheste Geschäftsjahr für die angegebene Firma konnte nicht gefu
msgid "Not allow to set alternative item for the item {0}"
msgstr "Nicht zulassen, alternative Artikel für den Artikel {0} festzulegen"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Kontodimension für {0} darf nicht erstellt werden"
@@ -32606,7 +32625,7 @@ msgstr "Hinweis: Wenn Sie das Fertigerzeugnis {0} als Rohmaterial verwenden möc
msgid "Note: Item {0} added multiple times"
msgstr "Hinweis: Element {0} wurde mehrmals hinzugefügt"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Hinweis: Zahlungsbuchung wird nicht erstellt, da kein \"Kassen- oder Bankkonto\" angegeben wurde"
@@ -32614,7 +32633,7 @@ msgstr "Hinweis: Zahlungsbuchung wird nicht erstellt, da kein \"Kassen- oder Ban
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Hinweis: Diese Kostenstelle ist eine Gruppe. Buchungen können nicht zu Gruppen erstellt werden."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Hinweis: Um die Artikel zusammenzuführen, erstellen Sie eine separate Bestandsabstimmung für den alten Artikel {0}"
@@ -32797,6 +32816,11 @@ msgstr "Die Nummer des neuen Kontos wird als Präfix in den Kontonamen aufgenomm
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Nummer der neuen Kostenstelle, wird als Name in den Namen der Kostenstelle eingefügt"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32856,18 +32880,18 @@ msgstr "(letzter) Tachostand"
msgid "Offer Date"
msgstr "Angebotsdatum"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Büroausstattung"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Büro-Wartungskosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Büromiete"
@@ -32995,7 +33019,7 @@ msgstr "Einführung in das Lagerwesen!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Einmal eingestellt, liegt diese Rechnung bis zum festgelegten Datum auf Eis"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Sobald der Arbeitsauftrag abgeschlossen ist, kann er nicht wiederaufgenommen werden."
@@ -33035,7 +33059,7 @@ msgstr "Es werden nur 'Zahlungsbuchungen' unterstützt, die gegen dieses Vorschu
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Nur CSV- und Excel-Dateien können für den Datenimport verwendet werden. Bitte überprüfen Sie das Format der Datei, die Sie hochladen möchten"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Nur CSV-Dateien sind erlaubt"
@@ -33054,7 +33078,7 @@ msgstr "Nur den überschüssigen Betrag versteuern "
msgid "Only Include Allocated Payments"
msgstr "Nur zugeordnete Zahlungen einbeziehen"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Nur das übergeordnete Element kann vom Typ {0} sein"
@@ -33091,7 +33115,7 @@ msgstr "Nur eines von Einzahlung oder Auszahlung darf ungleich null sein, wenn e
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "Nur ein Arbeitsgang kann 'Ist endgültiges Fertigerzeugnis' aktiviert haben, wenn 'Halbfertigerzeugnisse verfolgen' aktiviert ist."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Nur ein {0} Eintrag kann gegen den Arbeitsauftrag {1} erstellt werden"
@@ -33309,8 +33333,8 @@ msgstr "Anfangssaldo = Periodenbeginn, Schlusssaldo = Periodenende, Periodenbewe
msgid "Opening Balance Details"
msgstr "Details zum Eröffnungssaldo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Anfangsstand Eigenkapital"
@@ -33333,7 +33357,7 @@ msgstr "Eröffnungsdatum"
msgid "Opening Entry"
msgstr "Eröffnungsbuchung"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Eine Eröffnungsbuchung kann nicht erstellt werden, nachdem ein Periodenabschlussbeleg erstellt wurde."
@@ -33366,7 +33390,7 @@ msgid "Opening Invoice Tool"
msgstr "Werkzeug für offene Rechnungen"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Die Eröffnungsrechnung weist eine Rundungsanpassung von {0} auf. Das Konto '{1}' ist erforderlich, um diese Werte zu buchen. Bitte legen Sie es im Unternehmen {2} fest. Oder '{3}' kann aktiviert werden, um keine Rundungsanpassung zu buchen."
@@ -33402,16 +33426,16 @@ msgstr "Eröffnungsrechnungen wurden erstellt."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Anfangsbestand"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33429,12 +33453,15 @@ msgstr "Öffnungswert"
msgid "Opening and Closing"
msgstr "Öffnen und Schließen"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Die Erstellung des Anfangsbestands wurde in die Warteschlange aufgenommen und wird im Hintergrund erstellt. Bitte prüfen Sie die Lagerbuchung nach einiger Zeit."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Betriebskomponente"
@@ -33466,7 +33493,7 @@ msgstr "Betriebskosten (Gesellschaft Währung)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Betriebskosten pro Stücklistenmenge"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Betriebskosten gemäß Fertigungsauftrag / Stückliste"
@@ -33509,15 +33536,15 @@ msgstr "Vorgangsbeschreibung"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Betriebs-ID"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Arbeitsgang-ID"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33542,7 +33569,7 @@ msgstr "Nummer der Operationszeile"
msgid "Operation Time"
msgstr "Zeit für einen Arbeitsgang"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Betriebszeit muss für die Operation {0} größer als 0 sein"
@@ -33557,11 +33584,11 @@ msgstr "Für wie viele fertige Erzeugnisse wurde der Arbeitsgang abgeschlossen?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Die Vorgangsdauer hängt nicht von der zu produzierenden Menge ab"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operation {0} wurde mehrfach zum Arbeitsauftrag {1} hinzugefügt"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Operation {0} gehört nicht zum Arbeitsauftrag {1}"
@@ -33577,9 +33604,9 @@ msgstr "Arbeitsgang {0} ist länger als alle verfügbaren Arbeitszeiten am Arbei
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33752,7 +33779,7 @@ msgstr "Opportunity {0} erstellt"
msgid "Optimize Route"
msgstr "Route optimieren"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33902,7 +33929,7 @@ msgstr "Bestellte Menge"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Bestellungen"
@@ -34018,7 +34045,7 @@ msgstr "Unze/Gallone (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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Ausgabe-Menge"
@@ -34056,7 +34083,7 @@ msgstr "Außerhalb der Garantie"
msgid "Out of stock"
msgstr "Nicht auf Lager"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Veralteter POS-Eröffnungseintrag"
@@ -34075,6 +34102,7 @@ msgstr "Ausgehende Zahlung"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Verkaufspreis"
@@ -34110,7 +34138,7 @@ msgstr "Ausstehend (Unternehmenswährung)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34120,7 +34148,7 @@ msgstr "Ausstehend (Unternehmenswährung)"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34180,17 +34208,22 @@ msgstr "Erlaubte Mehrabrechnung (%) für Eingangsbelegposition {0} ({1}) um {2}
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Erlaubte Mehrlieferung/-annahme (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Erlaubte Überkommissionierung"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Mehreingang"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Überhöhte Annahme bzw. Lieferung von Artikel {2} mit {0} {1} wurde ignoriert, weil Sie die Rolle {3} haben."
@@ -34210,11 +34243,11 @@ msgstr "Erlaubte Mehrtransferierung (%)"
msgid "Over Withheld"
msgstr "Zu viel einbehalten"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Überhöhte Abrechnung von Artikel {2} mit {0} {1} wurde ignoriert, weil Sie die Rolle {3} haben."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Überhöhte Abrechnung von {} wurde ignoriert, weil Sie die Rolle {} haben."
@@ -34514,7 +34547,7 @@ msgstr "POS-Artikelauswahl"
msgid "POS Opening Entry"
msgstr "POS-Eröffnungseintrag"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "POS-Eröffnungseintrag - {0} ist veraltet. Bitte schließen Sie die POS und erstellen Sie einen neuen POS-Eröffnungseintrag."
@@ -34535,7 +34568,7 @@ msgstr "Detail des POS-Eröffnungseintrags"
msgid "POS Opening Entry Exists"
msgstr "POS-Eröffnungseintrag existiert bereits"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "POS-Eröffnungseintrag fehlt"
@@ -34571,7 +34604,7 @@ msgstr "POS-Zahlungsmethode"
msgid "POS Profile"
msgstr "Verkaufsstellen-Profil"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "POS-Profil - {0} hat mehrere offene POS-Eröffnungseinträge. Bitte schließen oder stornieren Sie die bestehenden Einträge, bevor Sie fortfahren."
@@ -34589,11 +34622,11 @@ msgstr "POS-Profilbenutzer"
msgid "POS Profile doesn't match {}"
msgstr "POS-Profil stimmt nicht mit {} überein"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "POS-Profil ist erforderlich, um diese Rechnung als POS-Transaktion zu kennzeichnen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Verkaufsstellen-Profil benötigt, um Verkaufsstellen-Buchung zu erstellen"
@@ -34699,7 +34732,7 @@ msgstr "Verpackter Artikel"
msgid "Packed Items"
msgstr "Verpackte Artikel"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Verpackte Artikel können nicht intern transferiert werden"
@@ -34736,7 +34769,7 @@ msgstr "Packzettel"
msgid "Packing Slip Item"
msgstr "Position auf dem Packzettel"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Packzettel storniert"
@@ -34777,7 +34810,7 @@ msgstr "Bezahlt"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34843,7 +34876,7 @@ msgid "Paid To Account Type"
msgstr "Bezahlt an Kontotyp"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Summe aus gezahltem Betrag + ausgebuchter Betrag darf nicht größer der Gesamtsumme sein"
@@ -34937,7 +34970,7 @@ msgstr "Übergeordnete Charge"
msgid "Parent Company"
msgstr "Muttergesellschaft"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Die Muttergesellschaft muss eine Konzerngesellschaft sein"
@@ -35064,7 +35097,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Material teilweise transferiert"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Teilzahlungen in POS-Transaktionen sind nicht zulässig."
@@ -35277,7 +35310,7 @@ msgstr "Teile pro Million"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35304,7 +35337,7 @@ msgstr "Partei"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Konto der Partei"
@@ -35337,7 +35370,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Konto-Nr. der Partei (Kontoauszug)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Die Währung des Kontos {0} ({1}) und die des Dokuments ({2}) müssen identisch sein"
@@ -35489,7 +35522,7 @@ msgstr "Parteispezifischer Artikel"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35598,7 +35631,7 @@ msgstr "Vergangene Ereignisse"
msgid "Pause"
msgstr "Anhalten"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Auftrag pausieren"
@@ -35649,7 +35682,7 @@ msgid "Payable"
msgstr "Zahlbar"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35683,7 +35716,7 @@ msgstr "Payer Einstellungen"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35830,7 +35863,7 @@ msgstr "Zahlungsbuchung wurde geändert, nachdem sie abgerufen wurde. Bitte erne
msgid "Payment Entry is already created"
msgstr "Payment Eintrag bereits erstellt"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Zahlungseintrag {0} ist mit Bestellung {1} verknüpft. Prüfen Sie, ob er in dieser Rechnung als Vorauszahlung ausgewiesen werden soll."
@@ -36055,7 +36088,7 @@ msgstr "Bezahlung Referenzen"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36120,7 +36153,7 @@ msgstr "Zahlungsaufforderungen aus Ausgangs-/Eingangsrechnungen werden explizit
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36149,7 +36182,7 @@ msgstr "Zahlungspläne"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36205,6 +36238,7 @@ msgstr "Status für Zahlungsbedingungen für Aufträge"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36219,6 +36253,7 @@ msgstr "Status für Zahlungsbedingungen für Aufträge"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36276,7 +36311,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Zahlungsmethoden sind obligatorisch. Bitte fügen Sie mindestens eine Zahlungsmethode hinzu."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Zahlungsmethoden wurden aktualisiert. Bitte prüfen Sie diese vor dem Fortfahren."
@@ -36351,8 +36386,8 @@ msgstr "Zahlungen aktualisiert."
msgid "Payroll Entry"
msgstr "Personalabrechnung"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Payroll Kreditoren"
@@ -36399,10 +36434,14 @@ msgstr "Ausstehende Aktivitäten"
msgid "Pending Amount"
msgstr "Ausstehender Betrag"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36411,9 +36450,18 @@ msgstr "Ausstehende Menge"
#: 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:273
msgid "Pending Quantity"
msgstr "Ausstehende Menge"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36443,6 +36491,14 @@ msgstr "Ausstehende Aktivitäten für heute"
msgid "Pending processing"
msgstr "Ausstehende Verarbeitung"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Rentenfonds"
@@ -36553,7 +36609,7 @@ msgstr "Wahrnehmungs-Analyse"
msgid "Period Based On"
msgstr "Zeitraum basierend auf"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Zeitraum geschlossen"
@@ -37117,8 +37173,8 @@ msgstr "Werk Dashboard"
msgid "Plant Floor"
msgstr "Werkshalle"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Pflanzen und Maschinen"
@@ -37154,7 +37210,7 @@ msgstr "Bitte Priorität festlegen"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Bitte legen Sie die Lieferantengruppe in den Kaufeinstellungen fest."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Bitte Konto angeben"
@@ -37202,7 +37258,7 @@ msgstr "Bitte fügen Sie die Spalte „Bankkonto“ hinzu"
msgid "Please add the account to root level Company - {0}"
msgstr "Bitte fügen Sie das Konto zur Muttergesellschaft hinzu - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Bitte fügen Sie das Konto der Root-Ebene Company - {} hinzu"
@@ -37210,7 +37266,7 @@ msgstr "Bitte fügen Sie das Konto der Root-Ebene Company - {} hinzu"
msgid "Please add {1} role to user {0}."
msgstr "Bitte fügen Sie dem Benutzer {0} die Rolle {1} hinzu."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Bitte passen Sie die Menge an oder bearbeiten Sie {0}, um fortzufahren."
@@ -37218,7 +37274,7 @@ msgstr "Bitte passen Sie die Menge an oder bearbeiten Sie {0}, um fortzufahren."
msgid "Please attach CSV file"
msgstr "Bitte CSV-Datei anhängen"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Bitte stornieren und berichtigen Sie die Zahlung"
@@ -37252,7 +37308,7 @@ msgstr "Bitte aktivieren Sie entweder \"Mit Arbeitsgängen\" oder \"Auf Fertiger
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Bitte überprüfen Sie die Fehlermeldung und ergreifen Sie die notwendigen Maßnahmen, um den Fehler zu beheben und starten Sie dann die Neubuchung erneut."
@@ -37277,11 +37333,15 @@ msgstr "Bitte auf \"Zeitplan generieren\" klicken, um die Seriennummer für Arti
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Bitte auf \"Zeitplan generieren\" klicken, um den Zeitplan zu erhalten"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Bitte kontaktieren Sie einen der folgenden Benutzer, um die Kreditlimits für {0} zu erweitern: {1}"
@@ -37289,11 +37349,11 @@ msgstr "Bitte kontaktieren Sie einen der folgenden Benutzer, um die Kreditlimits
msgid "Please contact any of the following users to {} this transaction."
msgstr "Bitte kontaktieren Sie einen der folgenden Benutzer, um diese Transaktion zu {}."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Bitte wenden Sie sich an Ihren Administrator, um die Kreditlimits für {0} zu erweitern."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Bitte konvertieren Sie das Elternkonto in der entsprechenden Kinderfirma in ein Gruppenkonto."
@@ -37305,11 +37365,11 @@ msgstr "Bitte erstellen Sie einen Kunden aus Interessent {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Bitte erstellen Sie einen Einstandskostenbeleg gegen Rechnungen, bei denen die Option „Lagerbestand aktualisieren“ aktiviert ist."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Bitte erstellen Sie bei Bedarf eine neue Buchhaltungsdimension."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Bitte erstellen Sie den Kauf aus dem internen Verkaufs- oder Lieferbeleg selbst"
@@ -37317,11 +37377,11 @@ msgstr "Bitte erstellen Sie den Kauf aus dem internen Verkaufs- oder Lieferbeleg
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Bitte erstellen Sie eine Kaufquittung oder eine Eingangsrechnungen für den Artikel {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Bitte löschen Sie das Produktbündel {0}, bevor Sie {1} mit {2} zusammenführen"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Bitte deaktivieren Sie vorübergehend den Workflow für Buchungssatz {0}"
@@ -37329,7 +37389,7 @@ msgstr "Bitte deaktivieren Sie vorübergehend den Workflow für Buchungssatz {0}
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Bitte buchen Sie die Ausgaben für mehrere Vermögensgegenstände nicht auf einen einzigen Vermögensgegenstand."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Bitte erstellen Sie nicht mehr als 500 Artikel gleichzeitig"
@@ -37353,7 +37413,7 @@ msgstr "Bitte aktivieren Sie diese Option nur, wenn Sie die Auswirkungen versteh
msgid "Please enable {0} in the {1}."
msgstr "Bitte aktivieren Sie {0} in {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Bitte aktivieren Sie {} in {}, um denselben Artikel in mehreren Zeilen zuzulassen"
@@ -37365,20 +37425,20 @@ msgstr "Bitte stellen Sie sicher, dass das {0}-Konto ein Bilanzkonto ist. Sie k
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 "Bitte stellen Sie sicher, dass das {0}-Konto {1} ein Verbindlichkeiten-Konto ist. Sie können den Kontotyp in "Verbindlichkeiten" ändern oder ein anderes Konto auswählen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Bitte stellen Sie sicher, dass das Konto {} ein Bilanzkonto ist."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Bitte stellen Sie sicher, dass {} Konto {} ein Forderungskonto ist."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Geben Sie das Differenzkonto ein oder legen Sie das Standardkonto für die Bestandsanpassung für Firma {0} fest."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Bitte geben Sie Konto für Änderungsbetrag"
@@ -37386,15 +37446,15 @@ msgstr "Bitte geben Sie Konto für Änderungsbetrag"
msgid "Please enter Approving Role or Approving User"
msgstr "Bitte genehmigende Rolle oder genehmigenden Nutzer eingeben"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Bitte Chargennummer eingeben"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Bitte die Kostenstelle eingeben"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Bitte geben Sie das Lieferdatum ein"
@@ -37402,7 +37462,7 @@ msgstr "Bitte geben Sie das Lieferdatum ein"
msgid "Please enter Employee Id of this sales person"
msgstr "Bitte die Mitarbeiter-ID dieses Vertriebsmitarbeiters angeben"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Bitte das Aufwandskonto angeben"
@@ -37411,7 +37471,7 @@ msgstr "Bitte das Aufwandskonto angeben"
msgid "Please enter Item Code to get Batch Number"
msgstr "Bitte geben Sie Item Code zu Chargennummer erhalten"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Bitte die Artikelnummer eingeben um die Chargennummer zu erhalten"
@@ -37427,7 +37487,7 @@ msgstr "Bitte geben Sie zuerst die Wartungsdetails ein"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Bitte die geplante Menge für Artikel {0} in Zeile {1} eingeben"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Bitte zuerst Herstellungsartikel eingeben"
@@ -37447,7 +37507,7 @@ msgstr "Bitte den Stichtag eingeben"
msgid "Please enter Root Type for account- {0}"
msgstr "Bitte geben Sie den Root-Typ für das Konto ein: {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Bitte Seriennummer eingeben"
@@ -37464,7 +37524,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Bitte geben Sie Lager und Datum ein"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Bitte Abschreibungskonto eingeben"
@@ -37484,7 +37544,7 @@ msgstr "Bitte geben Sie mindestens ein Lieferdatum und eine Menge ein"
msgid "Please enter company name first"
msgstr "Bitte zuerst Firma angeben"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Bitte die Standardwährung in die Stammdaten des Unternehmens eingeben"
@@ -37512,7 +37572,7 @@ msgstr "Bitte Freistellungsdatum eingeben."
msgid "Please enter serial nos"
msgstr "Bitte geben Sie die Seriennummern ein"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Bitte geben Sie den Firmennamen zur Bestätigung ein"
@@ -37580,11 +37640,11 @@ msgstr "Bitte stellen Sie sicher, dass die oben genannten Mitarbeiter einem ande
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Bitte vergewissern Sie sich, dass die von Ihnen verwendete Datei in der Kopfzeile die Spalte 'Parent Account' enthält."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Bitte sicher stellen, dass wirklich alle Transaktionen dieses Unternehmens gelöscht werden sollen. Die Stammdaten bleiben bestehen. Diese Aktion kann nicht rückgängig gemacht werden."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Bitte geben Sie neben dem Gewicht auch die entsprechende Mengeneinheit an."
@@ -37643,7 +37703,7 @@ msgstr "Bitte wählen Sie Vorlagentyp , um die Vorlage herunterzuladen"
msgid "Please select Apply Discount On"
msgstr "Bitte \"Rabatt anwenden auf\" auswählen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Bitte eine Stückliste für Artikel {0} auswählen"
@@ -37659,7 +37719,7 @@ msgstr "Bitte wählen Sie ein Bankkonto"
msgid "Please select Category first"
msgstr "Bitte zuerst eine Kategorie auswählen"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37689,7 +37749,7 @@ msgstr "Bitte wählen Sie Fertigstellungsdatum für das abgeschlossene Wartungsp
msgid "Please select Customer first"
msgstr "Bitte wählen Sie zuerst den Kunden aus"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Bitte wählen Sie Bestehende Unternehmen für die Erstellung von Konten"
@@ -37698,8 +37758,8 @@ msgstr "Bitte wählen Sie Bestehende Unternehmen für die Erstellung von Konten"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Bitte wählen Sie ein Fertigprodukt für Serviceartikel {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Bitte wählen Sie zuerst den Artikelcode"
@@ -37731,11 +37791,11 @@ msgstr "Bitte zuerst ein Buchungsdatum auswählen"
msgid "Please select Price List"
msgstr "Bitte eine Preisliste auswählen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Bitte wählen Sie Menge für Artikel {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Bitte wählen Sie in den Lagereinstellungen zuerst das Muster-Aufbewahrungslager aus"
@@ -37751,7 +37811,7 @@ msgstr "Bitte Start -und Enddatum für den Artikel {0} auswählen"
msgid "Please select Stock Asset Account"
msgstr "Bitte Bestandskonto wählen"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Bitte wählen Sie ein Konto für nicht realisierten Gewinn/Verlust aus oder legen Sie das Standardkonto für nicht realisierten Gewinn/Verlust für Unternehmen {0} fest"
@@ -37768,7 +37828,7 @@ msgstr "Bitte ein Unternehmen auswählen"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Bitte wählen Sie zuerst eine Firma aus."
@@ -37792,7 +37852,7 @@ msgstr "Bitte wählen Sie einen Lieferanten aus"
msgid "Please select a Warehouse"
msgstr "Bitte wählen Sie ein Lager"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Bitte wählen Sie zuerst einen Arbeitsauftrag aus."
@@ -37865,11 +37925,15 @@ msgstr "Bitte einen Wert für {0} Angebot an {1} auswählen"
msgid "Please select an item code before setting the warehouse."
msgstr "Bitte wählen Sie einen Artikelcode aus, bevor Sie das Lager festlegen."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Bitte wählen Sie mindestens einen Filter: Artikel-Code, Charge oder Seriennummer."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37889,7 +37953,7 @@ msgstr "Bitte mindestens einen Zahlungsplan auswählen."
msgid "Please select atleast one item to continue"
msgstr "Bitte wählen Sie mindestens einen Artikel aus, um fortzufahren"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Bitte wählen Sie mindestens einen Arbeitsgang aus, um eine Jobkarte zu erstellen"
@@ -37947,7 +38011,7 @@ msgstr "Bitte wählen Sie das Unternehmen aus"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Wählen Sie den Programmtyp Mehrstufig für mehrere Sammlungsregeln aus."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Bitte zuerst das Lager auswählen"
@@ -37976,7 +38040,7 @@ msgstr "Bitte wählen Sie einen gültigen Dokumententyp aus."
msgid "Please select weekly off day"
msgstr "Bitte die wöchentlichen Auszeittage auswählen"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Bitte zuerst {0} auswählen"
@@ -37985,11 +38049,11 @@ msgstr "Bitte zuerst {0} auswählen"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Bitte \"Zusätzlichen Rabatt anwenden auf\" aktivieren"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Bitte setzen Sie die Kostenstelle für Abschreibungen von Vermögenswerten für das Unternehmen {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Bitte setzen Sie \"Gewinn-/Verlustrechnung auf die Veräußerung von Vermögenswerten\" für Unternehmen {0}"
@@ -38001,7 +38065,7 @@ msgstr "Bitte stellen Sie '{0}' in Unternehmen ein: {1}"
msgid "Please set Account"
msgstr "Bitte legen Sie ein Konto fest"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Bitte Konto für Wechselgeldbetrag festlegen"
@@ -38031,7 +38095,7 @@ msgstr "Bitte Unternehmen angeben"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Bitte legen Sie die Kundenadresse fest, um festzustellen, ob es sich bei der Transaktion um einen Export handelt."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Bitte stellen Sie die Abschreibungskonten in der Anlagenkategorie {0} oder im Unternehmen {1} ein"
@@ -38049,7 +38113,7 @@ msgstr "Bitte setzen Sie den Steuercode für den Kunden '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Bitte setzen Sie den Steuercode für die öffentliche Verwaltung '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Bitte legen Sie das Konto für Anlagevermögen in der Vermögensgegenstand-Kategorie {0} fest."
@@ -38095,7 +38159,7 @@ msgstr "Bitte legen Sie eine Firma fest"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Bitte legen Sie eine Kostenstelle für den Vermögensgegenstand oder eine Standard-Kostenstelle für die Abschreibung von Vermögensgegenständen für das Unternehmen {} fest"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Bitte legen Sie eine Standardliste der arbeitsfreien Tage für Unternehmen {0} fest"
@@ -38132,23 +38196,23 @@ msgstr "Bitte setzen Sie mindestens eine Zeile in die Tabelle Steuern und Abgabe
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Bitte setzen Sie sowohl die Steuernummer als auch den Steuercode für Unternehmen {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Bitte tragen Sie ein Bank- oder Kassenkonto in Zahlungsweise {0} ein"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Bitte tragen Sie ein Bank- oder Kassenkonto in Zahlungsweise {} ein"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Bitte tragen Sie jeweils ein Bank- oder Kassenkonto in Zahlungsweisen {} ein"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Bitte legen Sie im Unternehmen {} das Standardkonto für Wechselkursgewinne/-verluste fest"
@@ -38177,7 +38241,7 @@ msgstr "Bitte Standardwert für {0} in Unternehmen {1} setzen"
msgid "Please set filter based on Item or Warehouse"
msgstr "Bitte setzen Sie Filter basierend auf Artikel oder Lager"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Bitte stellen Sie eine der folgenden Optionen ein:"
@@ -38185,7 +38249,7 @@ msgstr "Bitte stellen Sie eine der folgenden Optionen ein:"
msgid "Please set opening number of booked depreciations"
msgstr "Bitte geben Sie die Anzahl der gebuchten Abschreibungen zu Beginn an"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Bitte setzen Sie wiederkehrende nach dem Speichern"
@@ -38197,15 +38261,15 @@ msgstr "Bitte geben Sie die Kundenadresse an"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Bitte die Standardkostenstelle im Unternehmen {0} festlegen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Bitte legen Sie zuerst den Itemcode fest"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Bitte setzen Sie das Eingangslager in der Jobkarte"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Bitte legen Sie das Fertigungslager im Arbeitsplan fest"
@@ -38244,7 +38308,7 @@ msgstr "Bitte setzen Sie {0} im Stücklistenersteller {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Bitte stellen Sie {0} in Unternehmen {1} ein, um Wechselkursgewinne/-verluste zu berücksichtigen"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Bitte setzen Sie {0} auf {1}, das gleiche Konto, das in der ursprünglichen Rechnung {2} verwendet wurde."
@@ -38266,7 +38330,7 @@ msgstr "Bitte Unternehmen angeben"
msgid "Please specify Company to proceed"
msgstr "Bitte Unternehmen angeben um fortzufahren"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Bitte eine gültige Zeilen-ID für die Zeile {0} in Tabelle {1} angeben"
@@ -38279,7 +38343,7 @@ msgstr "Bitte geben Sie zuerst {0} ein."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Bitte geben Sie mindestens ein Attribut in der Attributtabelle ein"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Bitte entweder die Menge oder den Wertansatz oder beides eingeben"
@@ -38384,8 +38448,8 @@ msgstr "Post-Route-Zeichenfolge"
msgid "Post Title Key"
msgstr "Beitragstitel eingeben"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Portoaufwendungen"
@@ -38450,7 +38514,7 @@ msgstr "Gepostet am"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38468,7 +38532,7 @@ msgstr "Gepostet am"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38590,10 +38654,6 @@ msgstr "Buchungszeitpunkt"
msgid "Posting Time"
msgstr "Buchungszeit"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Buchungsdatum und Buchungszeit sind zwingend erforderlich"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38667,18 +38727,23 @@ msgstr "Powered by {0}"
msgid "Pre Sales"
msgstr "Vorverkauf"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Präferenz"
@@ -38851,6 +38916,7 @@ msgstr "Preisnachlass Platten"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38874,6 +38940,7 @@ msgstr "Preisnachlass Platten"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38925,7 +38992,7 @@ msgstr "Preisliste Land"
msgid "Price List Currency"
msgstr "Preislistenwährung"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Preislistenwährung nicht ausgewählt"
@@ -39280,7 +39347,7 @@ msgstr "Druckeingang"
msgid "Print Receipt on Order Complete"
msgstr "Beleg bei Auftragsabschluss drucken"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "ME nach Menge drucken"
@@ -39289,8 +39356,8 @@ msgstr "ME nach Menge drucken"
msgid "Print Without Amount"
msgstr "Drucken ohne Betrag"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Drucken und Papierwaren"
@@ -39298,7 +39365,7 @@ msgstr "Drucken und Papierwaren"
msgid "Print settings updated in respective print format"
msgstr "Die Druckeinstellungen im jeweiligen Druckformat aktualisiert"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Steuern mit null Betrag drucken"
@@ -39401,10 +39468,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Verfahren"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Prozeduren gelöscht"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39458,7 +39521,7 @@ msgstr "Der Prozentsatz der Prozessverluste kann nicht größer als 100 sein"
msgid "Process Loss Qty"
msgstr "Prozessverlustmenge"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Prozessverlustmenge"
@@ -39539,6 +39602,10 @@ msgstr "Abonnement verarbeiten"
msgid "Process in Single Transaction"
msgstr "Verarbeitung in einer einzigen Transaktion"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39634,8 +39701,8 @@ msgstr "Produkt"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39700,7 +39767,7 @@ msgstr "Produktpreis-ID"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Produktion"
@@ -39914,7 +39981,7 @@ msgstr "Der prozentuale Fortschritt für eine Aufgabe darf nicht mehr als 100 be
msgid "Progress (%)"
msgstr "Fortschritt (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Projekt-Zusammenarbeit Einladung"
@@ -39958,7 +40025,7 @@ msgstr "Projektstatus"
msgid "Project Summary"
msgstr "Projektübersicht"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Projektzusammenfassung für {0}"
@@ -40089,7 +40156,7 @@ msgstr "Geplante Menge"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40235,7 +40302,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Perspektiven engagiert, aber nicht umgewandelt"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Geschützter DocType"
@@ -40250,7 +40317,7 @@ msgstr "Geben Sie E-Mail-Adresse in Unternehmen registriert"
msgid "Providing"
msgstr "Bereitstellung"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Vorläufiges Konto"
@@ -40322,8 +40389,9 @@ msgstr "Verlagswesen"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40646,7 +40714,7 @@ msgstr "Bestellung {0} erstellt"
msgid "Purchase Order {0} is not submitted"
msgstr "Bestellung {0} ist nicht gebucht"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Bestellungen"
@@ -40661,7 +40729,7 @@ msgstr "Anzahl Lieferantenaufträge"
msgid "Purchase Orders Items Overdue"
msgstr "Bestellungen überfällig"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Kaufaufträge sind für {0} wegen einem Stand von {1} in der Bewertungsliste nicht erlaubt."
@@ -40676,7 +40744,7 @@ msgstr "Bestellungen an Rechnung"
msgid "Purchase Orders to Receive"
msgstr "Anzuliefernde Bestellungen"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Bestellungen {0} sind nicht verknüpft"
@@ -40810,7 +40878,7 @@ msgstr "Warenrücksendung"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Umsatzsteuer-Vorlage"
@@ -40908,6 +40976,7 @@ msgstr "Einkauf"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40917,10 +40986,6 @@ msgstr "Einkauf"
msgid "Purpose"
msgstr "Zweck"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Zweck muss einer von diesen sein: {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40976,6 +41041,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41024,6 +41090,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41132,11 +41199,11 @@ msgstr "Menge pro Einheit"
msgid "Qty To Manufacture"
msgstr "Herzustellende Menge"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Die Herzustellende Menge ({0}) kann nicht ein Bruchteil der Maßeinheit {2} sein. Um dies zu ermöglichen, deaktivieren Sie '{1}' in der Maßeinheit {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "Die zu fertigende Menge in der Jobkarte darf nicht größer sein als die zu fertigende Menge im Arbeitsauftrag für den Arbeitsgang {0}. Lösung: Sie können entweder die zu fertigende Menge in der Jobkarte reduzieren oder den 'Überproduktionsprozentsatz für Arbeitsauftrag' in {1} festlegen."
@@ -41187,8 +41254,8 @@ msgstr "Menge in Lagermaßeinheit"
msgid "Qty for which recursion isn't applicable."
msgstr "Menge, für die Rekursion nicht anwendbar ist."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Menge für {0}"
@@ -41243,8 +41310,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Abzurufende Menge"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Herzustellende Menge"
@@ -41480,17 +41547,17 @@ msgstr "Qualitätsinspektionsvorlage"
msgid "Quality Inspection Template Name"
msgstr "Name der Qualitätsinspektionsvorlage"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Für Artikel {0} ist eine Qualitätsprüfung erforderlich, bevor die Jobkarte {1} abgeschlossen werden kann"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Qualitätsprüfung {0} wurde für Artikel {1} nicht gebucht"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Qualitätsprüfung {0} wurde für den Artikel {1} abgelehnt"
@@ -41504,7 +41571,7 @@ msgstr "Qualitätsprüfung(en)"
msgid "Quality Inspections"
msgstr "Qualitätsprüfungen"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Qualitätsmanagement"
@@ -41636,7 +41703,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41771,7 +41838,7 @@ msgstr "Menge muss größer als null sein"
msgid "Quantity must be less than or equal to {0}"
msgstr "Die Menge muss kleiner oder gleich {0} sein"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Menge darf nicht mehr als {0} sein"
@@ -41781,21 +41848,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Für Artikel {0} in Zeile {1} benötigte Menge"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Menge sollte größer 0 sein"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Menge zu fertigen"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Die herzustellende Menge darf für den Vorgang {0} nicht Null sein."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Menge Herstellung muss größer als 0 sein."
@@ -41818,7 +41885,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Quartal {0} {1}"
@@ -41937,11 +42004,11 @@ msgstr "Angebot für"
msgid "Quotation Trends"
msgstr "Trendanalyse Angebote"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Angebot {0} wird storniert"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Angebot {0} nicht vom Typ {1}"
@@ -42248,7 +42315,7 @@ msgstr "Kurs, zu dem die Währung des Lieferanten in die Basiswährung des Unter
msgid "Rate at which this tax is applied"
msgstr "Kurs, zu dem dieser Steuersatz angewandt wird"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Einzelpreis von '{}' Artikeln kann nicht geändert werden"
@@ -42414,7 +42481,7 @@ msgstr "Verbrauchte Rohstoffe"
msgid "Raw Materials Consumption"
msgstr "Rohstoffverbrauch"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Rohmaterialien fehlen"
@@ -42453,12 +42520,6 @@ msgstr "Rohmaterial kann nicht leer sein"
msgid "Raw Materials to Customer"
msgstr "Rohstoffe an Kunde"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Rohes SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42467,7 +42528,7 @@ msgstr "Die verbrauchte Menge an Rohmaterialien wird anhand der in der Stücklis
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42648,7 +42709,7 @@ msgid "Receivable / Payable Account"
msgstr "Forderungen-/Verbindlichkeiten-Konto"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43109,7 +43170,7 @@ msgstr "Referenz #"
msgid "Reference #{0} dated {1}"
msgstr "Referenz #{0} vom {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Stichtag für Skonto"
@@ -43273,11 +43334,11 @@ msgstr "Referenz: {0}, Item Code: {1} und Kunde: {2}"
msgid "References"
msgstr "Referenzen"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Verweise auf Ausgangsrechnungen sind unvollständig"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Referenzen zu Kundenaufträgen sind unvollständig"
@@ -43439,7 +43500,7 @@ msgid "Remaining Amount"
msgstr "Verbleibender Betrag"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Verbleibendes Saldo"
@@ -43497,7 +43558,7 @@ msgstr "Bemerkung"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43561,7 +43622,7 @@ msgstr "Benennen Sie Attributwert in Elementattribut um."
msgid "Rename Log"
msgstr "Protokoll umbenennen"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Umbenennen nicht erlaubt"
@@ -43578,7 +43639,7 @@ msgstr "Umbenennungsjobs für Doctype {0} wurden in die Warteschlange gestellt."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Umbenennungs-Jobs für DocType {0} wurden nicht in die Warteschlange gestellt."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Das Umbenennen ist nur über die Muttergesellschaft {0} zulässig, um Fehlanpassungen zu vermeiden."
@@ -43702,7 +43763,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "Berichtstyp ist zwingend erforderlich"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Ein Problem melden"
@@ -43947,7 +44008,7 @@ msgstr "Informationsanfrage"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44128,7 +44189,7 @@ msgstr "Erfordert Erfüllung"
msgid "Research"
msgstr "Forschung"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Forschung & Entwicklung"
@@ -44173,7 +44234,7 @@ msgstr "Reservierung"
msgid "Reservation Based On"
msgstr "Reservierung basierend auf"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44217,7 +44278,7 @@ msgstr "Für Unterbaugruppe reservieren"
msgid "Reserved"
msgstr "Reserviert"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Konflikt bei reservierter Charge"
@@ -44287,14 +44348,14 @@ msgstr "Reservierte Menge"
msgid "Reserved Quantity for Production"
msgstr "Reservierte Menge für die Produktion"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Reservierte Seriennr."
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44303,13 +44364,13 @@ msgstr "Reservierte Seriennr."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Reservierter Bestand"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Reservierter Bestand für Charge"
@@ -44575,7 +44636,7 @@ msgstr "Ergebnis Titelfeld"
msgid "Resume"
msgstr "Fortsetzen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Auftrag fortsetzen"
@@ -44600,8 +44661,8 @@ msgstr "Einzelhändler"
msgid "Retain Sample"
msgstr "Probe aufbewahren"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Gewinnrücklagen"
@@ -44676,7 +44737,7 @@ msgstr "Zurück zum Eingangsbeleg"
msgid "Return Against Subcontracting Receipt"
msgstr "Retoure gegen Unterauftragsbeleg"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Komponenten zurückgeben"
@@ -44712,7 +44773,7 @@ msgstr "Rückgabemenge aus Ausschusslager"
msgid "Return Raw Material to Customer"
msgstr "Rohstoff an Kunde zurückgeben"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Rückrechnung des Anlagegutes storniert"
@@ -44810,8 +44871,8 @@ msgstr "Retouren"
msgid "Revaluation Journals"
msgstr "Neubewertungsjournale"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Neubewertungsüberschüsse"
@@ -45043,7 +45104,7 @@ msgstr "Root-Typ für {0} muss einer der folgenden sein: Vermögenswert, Verbind
msgid "Root Type is mandatory"
msgstr "Root-Typ ist zwingend erforderlich"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root kann nicht bearbeitet werden."
@@ -45062,8 +45123,8 @@ msgstr "Kostenfreie Menge runden"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45243,21 +45304,21 @@ msgstr "Zeile {0}: Die Rate kann nicht größer sein als die Rate, die in {1} {2
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Zeile {0}: Zurückgegebenes Element {1} ist in {2} {3} nicht vorhanden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Zeile #1: Sequenz-ID muss für Arbeitsgang {0} 1 sein."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Zeile {0} (Zahlungstabelle): Betrag muss negativ sein"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Zeile {0} (Zahlungstabelle): Betrag muss positiv sein"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Zeile #{0}: Für das Lager {1} mit dem Nachbestellungstyp {2} ist bereits ein Nachbestellungseintrag vorhanden."
@@ -45278,7 +45339,7 @@ msgstr "Zeile #{0}: Annahme- und Ablehnungslager dürfen nicht identisch sein"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Zeile #{0}: Annahmelager ist obligatorisch für den angenommenen Artikel {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Zeile {0}: Konto {1} gehört nicht zur Unternehmen {2}"
@@ -45339,31 +45400,31 @@ msgstr "Zeile #{0}: Diese Lagerbuchung kann nicht storniert werden, da die zurü
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Zeile #{0}: Eintrag mit unterschiedlichen steuerpflichtigen UND quellensteuerrelevanten Dokumentverknüpfungen kann nicht erstellt werden."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Zeile {0}: Der bereits abgerechnete Artikel {1} kann nicht gelöscht werden."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Zeile {0}: Element {1}, das bereits geliefert wurde, kann nicht gelöscht werden"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Zeile {0}: Element {1}, das bereits empfangen wurde, kann nicht gelöscht werden"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Zeile {0}: Element {1}, dem ein Arbeitsauftrag zugewiesen wurde, kann nicht gelöscht werden."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Zeile #{0}: Artikel {1} kann nicht gelöscht werden, da er bereits für diesen Auftrag bestellt wurde."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Zeile #{0}: Der Einzelpreis kann nicht festgelegt werden, wenn der abgerechnete Betrag größer als der Betrag für Artikel {1} ist."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Zeile #{0}: Es kann nicht mehr als die erforderliche Menge {1} für Artikel {2} gegen Auftragskarte {3} übertragen werden"
@@ -45413,11 +45474,11 @@ msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} für Fremdvergabe-Einga
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} kann nicht mehrfach im Fremdvergabe-Eingangsprozess hinzugefügt werden."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} kann nicht mehrfach hinzugefügt werden."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} existiert nicht in der Tabelle „Erforderliche Elemente“, die mit der Fremdvergabe-Eingangsbestellung verknüpft ist."
@@ -45425,7 +45486,7 @@ msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} existiert nicht in der
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} überschreitet die über die Fremdvergabe-Eingangsbestellung verfügbare Menge"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} weist eine unzureichende Menge in der Fremdvergabe-Eingangsbestellung auf. Verfügbare Menge: {2}."
@@ -45442,7 +45503,7 @@ msgstr "Zeile #{0}: Vom Kunden beigestellter Artikel {1} ist nicht Teil von Arbe
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Zeile #{0}: Datumsüberschneidung mit einer anderen Zeile in Gruppe {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Zeile #{0}: Standard-Stückliste für Fertigerzeugnis {1} nicht gefunden"
@@ -45466,22 +45527,22 @@ msgstr "Zeile #{0}: Aufwandskonto für den Artikel nicht festgelegt {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Zeile #{0}: Aufwandskonto {1} ist für die Eingangsrechnung {2} nicht gültig. Es sind nur Aufwandskonten aus Nicht-Lagerartikeln erlaubt."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Zeile #{0}: Menge für Fertigerzeugnis darf nicht Null sein"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Zeile #{0}: Fertigerzeugnisartikel ist nicht für Dienstleistungsartikel {1} spezifiziert"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Zeile #{0}: Fertigerzeugnisartikel {1} muss ein unterbeauftragter Artikel sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Zeile #{0}: Fertigerzeugnis muss {1} sein"
@@ -45510,7 +45571,7 @@ msgstr "Zeile #{0}: Abschreibungshäufigkeit muss größer als null sein"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Zeile #{0}: Von-Datum kann nicht vor Bis-Datum liegen"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Zeile #{0}: Die Felder „Von-Zeit“ und „Bis-Zeit“ sind erforderlich"
@@ -45518,7 +45579,7 @@ msgstr "Zeile #{0}: Die Felder „Von-Zeit“ und „Bis-Zeit“ sind erforderli
msgid "Row #{0}: Item added"
msgstr "Zeile {0}: Element hinzugefügt"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Zeile #{0}: Artikel {1} kann nicht mehr als {2} gegen {3} {4} übertragen werden"
@@ -45546,7 +45607,7 @@ msgstr "Zeile #{0}: Artikel {1} im Lager {2}: Verfügbar {3}, Benötigt {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Zeile #{0}: Artikel {1} ist kein vom Kunden beigestellter Artikel."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Zeile {0}: Element {1} ist kein serialisiertes / gestapeltes Element. Es kann keine Seriennummer / Chargennummer dagegen haben."
@@ -45587,7 +45648,7 @@ msgstr "Zeile #{0}: Der nächste Abschreibungstermin kann nicht vor dem Verfügb
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Zeile #{0}: Der nächste Abschreibungstermin kann nicht vor dem Einkaufsdatum liegen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Zeile {0}: Es ist nicht erlaubt den Lieferanten zu wechseln, da bereits eine Bestellung vorhanden ist"
@@ -45599,10 +45660,6 @@ msgstr "Zeile #{0}: Nur {1} zur Reservierung für den Artikel {2} verfügbar"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Zeile #{0}: Kumulierte Abschreibungen zu Beginn müssen kleiner oder gleich {1} sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Zeile {0}: Vorgang {1} ist für {2} Fertigwarenmenge im Fertigungsauftrag {3} nicht abgeschlossen. Bitte aktualisieren Sie den Betriebsstatus über die Jobkarte {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45624,11 +45681,11 @@ msgstr "Zeile #{0}: Bitte wählen Sie das Fertigerzeugnis aus, für das dieser v
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Zeile #{0}: Bitte wählen Sie das Lager für Unterbaugruppen"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Zeile {0}: Bitte Nachbestellmenge angeben"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Zeile #{0}: Bitte aktualisieren Sie das aktive/passive Rechnungsabgrenzungskonto in der Artikelzeile oder das Standardkonto in den Unternehmenseinstellungen"
@@ -45650,15 +45707,15 @@ msgstr "Zeile #{0}: Menge muss eine positive Zahl sein"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Zeile #{0}: Die Menge sollte kleiner oder gleich der verfügbaren Menge zum Reservieren sein (Ist-Menge – reservierte Menge) {1} für Artikel {2} der Charge {3} im Lager {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Zeile {0}: Für Artikel {1} ist eine Qualitätsprüfung erforderlich"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Zeile {0}: Qualitätsprüfung {1} wurde für den Artikel {2} nicht gebucht"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Zeile {0}: Qualitätsprüfung {1} wurde für Artikel {2} abgelehnt"
@@ -45666,7 +45723,7 @@ msgstr "Zeile {0}: Qualitätsprüfung {1} wurde für Artikel {2} abgelehnt"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Zeile #{0}: Die Menge kann keine nicht-positive Zahl sein. Bitte erhöhen Sie die Menge oder entfernen Sie den Artikel {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Zeile {0}: Artikelmenge {1} kann nicht Null sein."
@@ -45682,18 +45739,18 @@ msgstr "Zeile #{0}: Die Menge muss für {1} Artikel {2} größer als 0 sein"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Zeile #{0}: Die zu reservierende Menge für den Artikel {1} sollte größer als 0 sein."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Zeile #{0}: Einzelpreis muss gleich sein wie {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Zeile {0}: Referenzdokumenttyp muss eine der Bestellung, Eingangsrechnung oder Buchungssatz sein"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Zeile #{0}: Referenzbelegtyp muss einer der folgenden sein: Auftrag, Ausgangsrechnung, Buchungssatz oder Mahnung"
@@ -45735,7 +45792,7 @@ msgstr "Zeile #{0}: Verkaufspreis für Artikel {1} liegt unter {2}.\n"
"\t\t\t\t\tkönnen Sie '{5}' in {6} deaktivieren, um\n"
"\t\t\t\t\tdiese Validierung zu umgehen."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Zeile #{0}: Sequenz-ID muss für Arbeitsgang {3} {1} oder {2} sein."
@@ -45755,19 +45812,19 @@ msgstr "Zeile #{0}: Die Seriennummer {1} ist bereits ausgewählt."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Zeile #{0}: Seriennummer(n) {1} gehört/gehören nicht zur verknüpften Fremdvergabe-Eingangsbestellung. Bitte wählen Sie gültige Seriennummer(n) aus."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Zeile #{0}: Das Service-Enddatum darf nicht vor dem Rechnungsbuchungsdatum liegen"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Zeile {0}: Das Servicestartdatum darf nicht höher als das Serviceenddatum sein"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Zeile #{0}: Das Start- und Enddatum des Service ist für die Rechnungsabgrenzung erforderlich"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Zeile {0}: Lieferanten für Artikel {1} einstellen"
@@ -45779,19 +45836,19 @@ msgstr "Zeile #{0}: Da 'Halbfertige Waren nachverfolgen' aktiviert ist, kann die
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Zeile #{0}: Quelllager muss dasselbe wie Kundenlager {1} aus der verknüpften Fremdvergabe-Eingangsbestellung sein"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Zeile #{0}: Quelllager {1} für Artikel {2} kann nicht ein Kundenlager sein."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Zeile #{0}: Quelllager {1} für Artikel {2} muss gleich sein wie Quelllager {3} im Arbeitsauftrag."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Zeile #{0}: Quell- und Ziellager können beim Materialumlagerung nicht identisch sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Zeile #{0}: Quelllager, Ziellager und Lagerbestandsdimensionen dürfen für eine Materialumlagerung nicht identisch sein"
@@ -45807,6 +45864,10 @@ msgstr "Zeile #{0}: Status ist obligatorisch"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Zeile {0}: Status muss {1} für Rechnungsrabatt {2} sein"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Zeile #{0}: Der Bestand kann nicht für Artikel {1} für eine deaktivierte Charge {2} reserviert werden."
@@ -45823,7 +45884,7 @@ msgstr "Zeile #{0}: Bestand kann nicht im Gruppenlager {1} reserviert werden."
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Zeile #{0}: Für den Artikel {1} ist bereits ein Lagerbestand reserviert."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Zeile #{0}: Der Bestand ist für den Artikel {1} im Lager {2} reserviert."
@@ -45836,7 +45897,7 @@ msgstr "Zeile #{0}: Bestand nicht verfügbar für Artikel {1} von Charge {2} im
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Zeile #{0}: Kein Bestand für den Artikel {1} im Lager {2} verfügbar."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Zeile #{0}: Lagermenge {1} ({2}) für Artikel {3} kann nicht größer als {4} sein"
@@ -45848,7 +45909,7 @@ msgstr "Zeile #{0}: Ziellager muss dasselbe wie Kundenlager {1} aus der verknüp
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Zeile {0}: Der Stapel {1} ist bereits abgelaufen."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Zeile #{0}: Das Lager {1} ist kein untergeordnetes Lager eines Gruppenlagers {2}"
@@ -45884,7 +45945,7 @@ msgstr "Zeile #{0}: Sie können die Bestandsdimension '{1}' in der Bestandsabgle
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Zeile #{0}: Sie müssen einen Vermögensgegenstand für Artikel {1} auswählen."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Zeile {0}: {1} kann für Artikel nicht negativ sein {2}"
@@ -45900,7 +45961,7 @@ msgstr "Zeile {0}: {1} ist erforderlich, um die Eröffnungsrechnungen {2} zu ers
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Zeile #{0}: {1} von {2} sollte {3} sein. Bitte aktualisieren Sie die {1} oder wählen Sie ein anderes Konto."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Zeile #{0}: Menge für Artikel {1} darf nicht null sein."
@@ -46001,7 +46062,7 @@ msgstr "Reihe #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Zeile # {}: {} {} existiert nicht."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Zeile #{}: {} {} gehört nicht zur Firma {}. Bitte wählen Sie eine gültige {} aus."
@@ -46009,7 +46070,7 @@ msgstr "Zeile #{}: {} {} gehört nicht zur Firma {}. Bitte wählen Sie eine gül
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Zeile Nr. {0}: Lager ist erforderlich. Bitte legen Sie ein Standardlager für Artikel {1} und Unternehmen {2} fest"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Zeile {0}: Vorgang ist für die Rohmaterialposition {1} erforderlich"
@@ -46017,7 +46078,7 @@ msgstr "Zeile {0}: Vorgang ist für die Rohmaterialposition {1} erforderlich"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Zeile {0} kommissionierte Menge ist kleiner als die erforderliche Menge, zusätzliche {1} {2} erforderlich."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Zeile {0}# Artikel {1} wurde in der Tabelle „Gelieferte Rohstoffe“ in {2} {3} nicht gefunden"
@@ -46049,11 +46110,11 @@ msgstr "Zeile {0}: Der zugewiesene Betrag {1} muss kleiner oder gleich dem ausst
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Zeile {0}: Der zugewiesene Betrag {1} muss kleiner oder gleich dem verbleibenden Zahlungsbetrag {2} sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Zeile {0}: Da {1} aktiviert ist, können dem {2}-Eintrag keine Rohstoffe hinzugefügt werden. Verwenden Sie einen {3}-Eintrag, um Rohstoffe zu verbrauchen."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Zeile {0}: Bill of Materials nicht für den Artikel gefunden {1}"
@@ -46071,7 +46132,7 @@ msgstr "Zeile {0}: Verbrauchte Menge {1} {2} muss kleiner oder gleich der verfü
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Zeile {0}: Umrechnungsfaktor ist zwingend erfoderlich"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Zeile {0}: Die Kostenstelle {1} gehört nicht zum Unternehmen {2}"
@@ -46091,7 +46152,7 @@ msgstr "Zeile {0}: Währung der Stückliste # {1} sollte der gewählten Währung
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Zeile {0}: Sollbuchung kann nicht mit ein(em) {1} verknüpft werden"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Zeile {0}: Lieferlager ({1}) und Kundenlager ({2}) können nicht identisch sein"
@@ -46099,7 +46160,7 @@ msgstr "Zeile {0}: Lieferlager ({1}) und Kundenlager ({2}) können nicht identis
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Zeile {0}: Auslieferungslager kann nicht identisch mit Kundenlager für Artikel {1} sein."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Zeile {0}: Fälligkeitsdatum in der Tabelle "Zahlungsbedingungen" darf nicht vor dem Buchungsdatum liegen"
@@ -46144,16 +46205,16 @@ msgstr "Zeile {0}: Für Lieferant {1} ist eine E-Mail-Adresse erforderlich, um e
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Zeile {0}: Von Zeit und zu Zeit ist obligatorisch."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Zeile {0}: Zeitüberlappung in {1} mit {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Zeile {0}: Von Lager ist obligatorisch für interne Transfers"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Zeile {0}: Von Zeit zu Zeit muss kleiner sein"
@@ -46169,7 +46230,7 @@ msgstr "Zeile {0}: Ungültige Referenz {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Zeile {0}: Artikelsteuervorlage aktualisiert gemäß Gültigkeit und angewendetem Satz"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Zeile {0}: Der Einzelpreis wurde gemäß dem Bewertungskurs aktualisiert, da es sich um eine interne Umlagerung handelt"
@@ -46193,7 +46254,7 @@ msgstr "Zeile {0}: Die Menge des Artikels {1} kann nicht höher sein als die ver
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Zeile {0}: Die Vorgangszeit für Arbeitsgang {1} muss größer als 0 sein"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Zeile {0}: Verpackte Menge muss gleich der {1} Menge sein."
@@ -46261,7 +46322,7 @@ msgstr "Zeile {0}: Eingangsrechnung {1} hat keine Auswirkungen auf den Bestand."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Zeile {0}: Die Menge darf für den Artikel {2} nicht größer als {1} sein."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Zeile {0}: Menge in Lager-ME kann nicht Null sein."
@@ -46273,10 +46334,6 @@ msgstr "Zeile {0}: Menge muss größer als 0 sein."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Zeile {0}: Die Menge darf nicht negativ sein."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Zeile {0}: Menge für {4} in Lager {1} zum Buchungszeitpunkt des Eintrags nicht verfügbar ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Zeile {0}: Ausgangsrechnung {1} wurde bereits für {2} erstellt"
@@ -46285,11 +46342,11 @@ msgstr "Zeile {0}: Ausgangsrechnung {1} wurde bereits für {2} erstellt"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Zeile {0}: Schicht kann nicht geändert werden, da die Abschreibung bereits verarbeitet wurde"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Zeile {0}: Unterauftragsartikel sind für den Rohstoff {1} obligatorisch."
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Zeile {0}: Ziellager ist für interne Transfers obligatorisch"
@@ -46301,11 +46358,11 @@ msgstr "Zeile {0}: Aufgabe {1} gehört nicht zum Projekt {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Zeile {0}: Der gesamte Ausgabebetrag für Konto {1} in {2} wurde bereits zugewiesen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Zeile {0}: Die Menge des Artikels {1} muss eine positive Zahl sein"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Zeile {0}: Das {3}-Konto {1} gehört nicht zum Unternehmen {2}"
@@ -46313,11 +46370,11 @@ msgstr "Zeile {0}: Das {3}-Konto {1} gehört nicht zum Unternehmen {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Zeile {0}: Um die Periodizität {1} festzulegen, muss die Differenz zwischen dem Von- und Bis-Datum größer oder gleich {2} sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Zeile {0}: Die übertragene Menge darf die angeforderte Menge nicht überschreiten."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Zeile {0}: Umrechnungsfaktor für Maßeinheit ist zwingend erforderlich"
@@ -46330,11 +46387,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Zeile {0}: Lager {1} ist mit Unternehmen {2} verknüpft. Bitte wählen Sie ein Lager aus, das zu Unternehmen {3} gehört."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Zeile {0}: Arbeitsplatz oder Arbeitsplatztyp ist obligatorisch für einen Vorgang {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Zeile {0}: Der Nutzer hat die Regel {1} nicht auf das Element {2} angewendet."
@@ -46346,7 +46403,7 @@ msgstr "Zeile {0}: Konto {1} wird bereits für die Buchhaltungsdimension {2} ver
msgid "Row {0}: {1} must be greater than 0"
msgstr "Zeile {0}: {1} muss größer als 0 sein"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Zeile {0}: {1} {2} kann nicht identisch mit {3} (Konto der Partei) {4} sein"
@@ -46392,7 +46449,7 @@ msgstr "Zeilen in {0} entfernt"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Zeilen mit denselben Konten werden im Hauptbuch zusammengefasst"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Zeilen mit doppelten Fälligkeitsdaten in anderen Zeilen wurden gefunden: {0}"
@@ -46400,7 +46457,7 @@ msgstr "Zeilen mit doppelten Fälligkeitsdaten in anderen Zeilen wurden gefunden
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Zeilen: {0} haben „Zahlungseintrag“ als Referenztyp. Dies sollte nicht manuell festgelegt werden."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Zeilen: {0} im Abschnitt {1} sind ungültig. Der Referenzname sollte auf einen gültigen Zahlungseintrag oder Buchungssatz verweisen."
@@ -46607,8 +46664,8 @@ msgstr "Sicherheitsbestand"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46630,8 +46687,8 @@ msgstr "Gehaltsmodus"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46645,18 +46702,23 @@ msgstr "Gehaltsmodus"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Vertrieb"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Verkaufskonto"
@@ -46680,8 +46742,8 @@ msgstr "Verkaufsbeiträge und Anreize"
msgid "Sales Defaults"
msgstr "Verkaufsvorgaben"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Vertriebskosten"
@@ -46850,11 +46912,11 @@ msgstr "Ausgangsrechnung wurde nicht von Benutzer {} erstellt"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Ausgangsrechnungs-Modus ist im POS aktiviert. Bitte erstellen Sie stattdessen eine Ausgangsrechnung."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Ausgangsrechnung {0} wurde bereits gebucht"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Ausgangsrechnung {0} muss vor der Stornierung dieses Auftrags gelöscht werden"
@@ -47052,25 +47114,25 @@ msgstr "Trendanalyse Aufträge"
msgid "Sales Order required for Item {0}"
msgstr "Auftrag für den Artikel {0} erforderlich"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Auftrag {0} existiert bereits für die Kundenbestellung {1}. Um mehrere Verkaufsaufträge zuzulassen, aktivieren Sie {2} in {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Auftrag {0} ist nicht gebucht"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Auftrag {0} ist nicht gültig"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Auftrag {0} ist {1}"
@@ -47114,6 +47176,7 @@ msgstr "Auszuliefernde Aufträge"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47126,7 +47189,7 @@ msgstr "Auszuliefernde Aufträge"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47232,7 +47295,7 @@ msgstr "Zusammenfassung der Verkaufszahlung"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47325,7 +47388,7 @@ msgstr "Übersicht über den Umsatz"
msgid "Sales Representative"
msgstr "Vertriebsmitarbeiter:in"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Retoure"
@@ -47349,7 +47412,7 @@ msgstr "Verkaufszusammenfassung"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Umsatzsteuer-Vorlage"
@@ -47468,7 +47531,7 @@ msgstr "Gleicher Artikel"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Dieselbe Artikel- und Lagerkombination wurde bereits eingegeben."
@@ -47500,12 +47563,12 @@ msgstr "Beispiel Retention Warehouse"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Stichprobenumfang"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Die Beispielmenge {0} darf nicht mehr als die empfangene Menge {1} sein"
@@ -47749,7 +47812,7 @@ msgstr "Vermögensgegenstand verschrotten"
msgid "Scrap Warehouse"
msgstr "Ausschusslager"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Das Verschrottungsdatum kann nicht vor dem Kaufdatum liegen"
@@ -47868,8 +47931,8 @@ msgstr "Sekundäre Rolle"
msgid "Secretary"
msgstr "Sekretär:in"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Gedeckte Kredite"
@@ -47907,7 +47970,7 @@ msgstr "Wählen Sie Alternatives Element"
msgid "Select Alternative Items for Sales Order"
msgstr "Alternativpositionen für Auftragsbestätigung auswählen"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Wählen Sie Attributwerte"
@@ -47949,7 +48012,7 @@ msgstr "Unternehmen auswählen"
msgid "Select Company Address"
msgstr "Unternehmensadresse auswählen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Korrekturarbeitsgang auswählen"
@@ -47985,7 +48048,7 @@ msgstr "Dimension auswählen"
msgid "Select Dispatch Address "
msgstr "Absendeadresse auswählen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Mitarbeiter auswählen"
@@ -48010,7 +48073,7 @@ msgstr "Gegenstände auswählen"
msgid "Select Items based on Delivery Date"
msgstr "Wählen Sie die Positionen nach dem Lieferdatum aus"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Artikel für die Qualitätsprüfung auswählen"
@@ -48048,7 +48111,7 @@ msgstr "Zahlungsplan auswählen"
msgid "Select Possible Supplier"
msgstr "Möglichen Lieferanten wählen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Menge wählen"
@@ -48123,7 +48186,7 @@ msgstr "Wählen Sie eine Standardpriorität."
msgid "Select a Payment Method."
msgstr "Wählen Sie eine Zahlungsmethode."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Wählen Sie einen Lieferanten aus"
@@ -48146,7 +48209,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Wählen Sie eine Artikelgruppe."
@@ -48162,9 +48225,9 @@ msgstr "Wählen Sie eine Rechnung aus, um die Zusammenfassung zu laden"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Wählen Sie aus den Alternativen jeweils einen Artikel aus, der in die Auftragsbestätigung übernommen werden soll."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Wählen Sie aus jedem Attribut mindestens einen Wert aus."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48180,7 +48243,7 @@ msgstr "Zuerst Firma auswählen."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Wählen Sie das Finanzbuch für das Element {0} in Zeile {1} aus."
@@ -48212,7 +48275,7 @@ msgstr "Wählen Sie das abzustimmende Bankkonto aus."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Wählen Sie den Standard-Arbeitsplatz aus, an dem der Arbeitsgang ausgeführt wird. Dieser wird in Stücklisten und Arbeitsaufträgen übernommen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Wählen Sie den Artikel, der hergestellt werden soll."
@@ -48229,7 +48292,7 @@ msgstr "Wählen Sie das Lager aus"
msgid "Select the customer or supplier."
msgstr "Wählen Sie den Kunden oder den Lieferanten aus."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Wählen Sie das Datum"
@@ -48237,6 +48300,12 @@ msgstr "Wählen Sie das Datum"
msgid "Select the date and your timezone"
msgstr "Wählen Sie das Datum und Ihre Zeitzone"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Wählen Sie die Rohstoffe (Artikel) aus, die zur Herstellung des Artikels benötigt werden"
@@ -48265,7 +48334,7 @@ msgstr "Wählen Sie, um den Kunden mit diesen Feldern durchsuchbar zu machen"
msgid "Selected POS Opening Entry should be open."
msgstr "Der ausgewählte POS-Eröffnungseintrag sollte geöffnet sein."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Die ausgewählte Preisliste sollte die Kauf- und Verkaufsfelder überprüft haben."
@@ -48296,30 +48365,30 @@ msgstr "Ausgewähltes Dokument muss in gebuchtem Zustand sein"
msgid "Self delivery"
msgstr "Eigenlieferung"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Verkaufen"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Vermögensgegenstand verkaufen"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Verkaufsmenge"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Die Verkaufsmenge darf die Menge des Vermögensgegenstands nicht überschreiten"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "Verkaufsmenge darf die Vermögensgegenstand-Menge nicht überschreiten. Vermögensgegenstand {0} hat nur {1} Artikel."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Verkaufsmenge muss größer als null sein"
@@ -48572,7 +48641,7 @@ msgstr "Serien-/Chargennrn."
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48592,7 +48661,7 @@ msgstr "Serien-/Chargennrn."
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48637,7 +48706,7 @@ msgstr "Seriennummernbereich"
msgid "Serial No Reserved"
msgstr "Seriennummer reserviert"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Überschneidung der Seriennummernreihe"
@@ -48777,7 +48846,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Seriennummern wurden erfolgreich erstellt"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Seriennummern sind bereits reserviert. Sie müssen die Reservierung aufheben, bevor Sie fortfahren."
@@ -48847,7 +48916,7 @@ msgstr "Seriennummer und Charge"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49261,7 +49330,7 @@ msgstr "Vorschüsse setzen und zuordnen (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Grundpreis manuell einstellen"
@@ -49280,8 +49349,8 @@ msgstr "Lieferlager festlegen"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Fertigwarenmenge festlegen"
@@ -49448,11 +49517,11 @@ msgstr "Nach Artikelsteuervorlage festlegen"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Inventurkonto für permanente Inventur auswählen"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Legen Sie das Standardkonto {0} für \"Artikel ohne Lagerhaltung\" fest"
@@ -49484,7 +49553,7 @@ msgstr "Einzelpreis für Artikel der Unterbaugruppe auf Basis deren Stückliste
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Ziele artikelgruppenbezogen für diesen Vertriebsmitarbeiter festlegen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Legen Sie den geplanten Starttermin fest (ein voraussichtliches Datum, an dem die Produktion beginnen soll)"
@@ -49595,7 +49664,7 @@ msgid "Setting up company"
msgstr "Firma gründen"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Einstellung {0} ist erforderlich"
@@ -49615,6 +49684,10 @@ msgstr "Einstellungen für das Verkaufsmodul"
msgid "Settled"
msgstr "Erledigt"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49807,7 +49880,7 @@ msgstr "Sendungstyp"
msgid "Shipment details"
msgstr "Sendungsdetails"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Lieferungen"
@@ -49845,7 +49918,7 @@ msgstr "Lieferadresse Bezeichnung"
msgid "Shipping Address Template"
msgstr "Vorlage Lieferadresse"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Die Lieferadresse gehört nicht zu {0}"
@@ -49988,8 +50061,8 @@ msgstr "Kurzbiographie für die Webseite und andere Publikationen."
msgid "Short-term Investments"
msgstr "Kurzfristige Anlagen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kurzfristige Rückstellungen"
@@ -50323,7 +50396,7 @@ msgstr "Gleichzeitig"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Da es aktive abschreibungsfähige Vermögensgegenstände in dieser Kategorie gibt, sind folgende Konten erforderlich. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Da es einen Prozessverlust von {0} Einheiten für das Fertigerzeugnis {1} gibt, sollten Sie die Menge um {0} Einheiten für das Fertigerzeugnis {1} in der Artikeltabelle reduzieren."
@@ -50368,7 +50441,7 @@ msgstr "Lieferschein überspringen"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50410,8 +50483,8 @@ msgstr "Glättungskonstante"
msgid "Soap & Detergent"
msgstr "Seife & Waschmittel"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Software"
@@ -50435,7 +50508,7 @@ msgstr "Verkauft von"
msgid "Solvency Ratios"
msgstr "Solvabilitätskennzahlen"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Einige erforderliche Unternehmensdetails fehlen. Sie haben keine Berechtigung, diese zu aktualisieren. Bitte kontaktieren Sie Ihren Systemmanager."
@@ -50499,7 +50572,7 @@ msgstr "Quellfeldname"
msgid "Source Location"
msgstr "Quellspeicherort"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50508,11 +50581,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50570,7 +50643,12 @@ msgstr "Link zur Quelllageradresse"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Ausgangslager ist für Zeile {0} zwingend erforderlich."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Quelllager {0} muss dasselbe wie Kundenlager {1} in der Fremdvergabe-Eingangsbestellung sein."
@@ -50578,24 +50656,23 @@ msgstr "Quelllager {0} muss dasselbe wie Kundenlager {1} in der Fremdvergabe-Ein
msgid "Source and Target Location cannot be same"
msgstr "Quelle und Zielort können nicht identisch sein"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Ausgangs- und Eingangslager können nicht gleich sein für die Zeile {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Quell- und Ziel-Warehouse müssen unterschiedlich sein"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Mittelherkunft (Verbindlichkeiten)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Ausgangslager ist für Zeile {0} zwingend erforderlich"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50636,7 +50713,7 @@ msgstr "Die Ausgaben für Konto {0} ({1}) zwischen {2} und {3} haben das neu zug
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50644,7 +50721,7 @@ msgid "Split"
msgstr "Teilt"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Vermögensgegenstand aufspalten"
@@ -50668,7 +50745,7 @@ msgstr "Abspalten von"
msgid "Split Issue"
msgstr "Split-Problem"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Abgespaltene Menge"
@@ -50680,6 +50757,11 @@ msgstr "Abgespaltene Menge muss kleiner sein als die Anzahl"
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Aufteilen von {0} {1} in {2} Zeilen gemäß Zahlungsbedingungen"
@@ -50752,13 +50834,13 @@ msgstr "Standard-Kauf"
msgid "Standard Description"
msgstr "Standardbeschreibung"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Ausgaben mit Normalsteuersatz"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standard-Vertrieb"
@@ -50779,8 +50861,8 @@ msgstr "Standard-Vorlage"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standard-Allgemeine Geschäftsbedingungen, die zu Vertrieb und Einkauf hinzugefügt werden können. Beispiele: Gültigkeit des Angebots, Zahlungsbedingungen, Sicherheit und Verwendung, usw."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Lieferungen zum Normalsteuersatz in {0}"
@@ -50815,7 +50897,7 @@ msgstr "Startdatum darf nicht vor dem aktuellen Datum liegen"
msgid "Start Date should be lower than End Date"
msgstr "Das Startdatum muss vor dem Enddatum liegen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Job starten"
@@ -50944,7 +51026,7 @@ msgstr "Statusdarstellung"
msgid "Status and Reference"
msgstr "Status und Referenz"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Der Status muss abgebrochen oder abgeschlossen sein"
@@ -50974,6 +51056,7 @@ msgstr "Rechtlich notwendige und andere allgemeine Informationen über Ihren Lie
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50982,8 +51065,8 @@ msgstr "Lager"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51083,6 +51166,16 @@ msgstr "Bestandsabschlusseintrag {0} wurde zur Verarbeitung in die Warteschlange
msgid "Stock Closing Log"
msgstr "Bestandsabschluss-Protokoll"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51092,10 +51185,6 @@ msgstr "Bestandsabschluss-Protokoll"
msgid "Stock Details"
msgstr "Lagerdetails"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Lagerbuchungen bereits erstellt für Fertigungsauftrag {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51159,7 +51248,7 @@ msgstr "Für diese Pickliste wurde bereits eine Lagerbewegung erstellt"
msgid "Stock Entry {0} created"
msgstr "Lagerbuchung {0} erstellt"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Lagerbuchung {0} erstellt"
@@ -51167,8 +51256,8 @@ msgstr "Lagerbuchung {0} erstellt"
msgid "Stock Entry {0} is not submitted"
msgstr "Lagerbewegung {0} ist nicht gebucht"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Lagerkosten"
@@ -51246,8 +51335,8 @@ msgstr "Lagerbestände"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Lager-Verbindlichkeiten"
@@ -51350,8 +51439,8 @@ msgstr "Lagermenge vs Seriennummer"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51363,7 +51452,7 @@ msgstr "Empfangener, aber nicht berechneter Lagerbestand"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51375,7 +51464,7 @@ msgstr "Bestandsabgleich"
msgid "Stock Reconciliation Item"
msgstr "Bestandsabgleich-Artikel"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Bestandsabstimmungen"
@@ -51400,9 +51489,9 @@ msgstr "Bestandsumbuchungs-Einstellungen"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51413,7 +51502,7 @@ msgstr "Bestandsumbuchungs-Einstellungen"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51438,10 +51527,10 @@ msgstr "Bestandsreservierung"
msgid "Stock Reservation Entries Cancelled"
msgstr "Bestandsreservierungen storniert"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Bestandsreservierungen erstellt"
@@ -51469,7 +51558,7 @@ msgstr "Der Bestandsreservierungseintrag kann nicht aktualisiert werden, da er b
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 "Ein anhand einer Kommissionierliste erstellter Bestandsreservierungseintrag kann nicht aktualisiert werden. Wenn Sie Änderungen vornehmen müssen, empfehlen wir, den vorhandenen Eintrag zu stornieren und einen neuen zu erstellen."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Bestandsreservierung Lager-Inkonsistenz"
@@ -51509,7 +51598,7 @@ msgstr "Reservierter Bestand (in Lager-ME)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51624,7 +51713,7 @@ msgstr "Lagertransaktionseinstellungen"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51757,11 +51846,11 @@ msgstr "In der Lager-Gruppe {0} kann kein Bestand reserviert werden."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "In der Lager-Gruppe {0} kann kein Bestand reserviert werden."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Der Bestand kann nicht gegen die folgenden Lieferscheine aktualisiert werden: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Der Bestand kann nicht aktualisiert werden, da die Eingangsrechnung einen Direktversand-Artikel enthält. Bitte deaktivieren Sie 'Lagerbestand aktualisieren' oder entfernen Sie den Direktversand-Artikel."
@@ -51816,14 +51905,14 @@ msgstr ""
msgid "Stop Reason"
msgstr "Stoppen Sie die Vernunft"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Der angehaltene Arbeitsauftrag kann nicht abgebrochen werden. Stoppen Sie ihn zuerst, um ihn abzubrechen"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Lagerräume"
@@ -51881,7 +51970,7 @@ msgstr "Unterbaugruppe Lager"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52143,7 +52232,7 @@ msgstr "Dienstleistung für Unterauftrag"
msgid "Subcontracting Order Supplied Item"
msgstr "Unterauftrag Gelieferter Artikel"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Unterauftrag {0} erstellt."
@@ -52232,7 +52321,7 @@ msgstr "Unterauftragsvergabe einrichten"
msgid "Subdivision"
msgstr "Teilgebiet"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Aktion Buchen fehlgeschlagen"
@@ -52253,7 +52342,7 @@ msgstr "Generierte Rechnungen buchen"
msgid "Submit Journal Entries"
msgstr "Buchungssätze buchen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Buchen Sie diesen Arbeitsauftrag zur weiteren Bearbeitung."
@@ -52407,7 +52496,7 @@ msgstr "Erfolgreich abgestimmt"
msgid "Successfully Set Supplier"
msgstr "Setzen Sie den Lieferanten erfolgreich"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Lager-ME erfolgreich geändert. Bitte passen Sie nun die Umrechnungsfaktoren an."
@@ -52431,7 +52520,7 @@ msgstr "{0} Datensätze erfolgreich importiert."
msgid "Successfully linked to Customer"
msgstr "Erfolgreich mit dem Kunden verknüpft"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Erfolgreich mit dem Lieferanten verknüpft"
@@ -52591,7 +52680,7 @@ msgstr "Gelieferte Anzahl"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52689,6 +52778,7 @@ msgstr "Lieferantendetails"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52698,7 +52788,7 @@ msgstr "Lieferantendetails"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52713,6 +52803,7 @@ msgstr "Lieferantendetails"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52797,7 +52888,7 @@ msgstr "Lieferanten-Ledger-Zusammenfassung"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52832,8 +52923,6 @@ msgid "Supplier Number At Customer"
msgstr "Lieferantennummer beim Kunden"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Lieferantennummern"
@@ -52885,7 +52974,7 @@ msgstr "Hauptkontakt des Lieferanten"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52914,7 +53003,7 @@ msgstr "Vergleich der Lieferantenangebote"
msgid "Supplier Quotation Item"
msgstr "Lieferantenangebotsposition"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Lieferantenangebot {0} Erstellt"
@@ -53003,7 +53092,7 @@ msgstr "Lieferantentyp"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Lieferantenlager"
@@ -53020,17 +53109,12 @@ msgstr "Lieferant liefert an Kunden"
msgid "Supplier is required for all selected Items"
msgstr "Lieferant ist für alle ausgewählten Artikel erforderlich"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Vom Kunden vergebene Lieferantennummern"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Lieferant von Waren oder Dienstleistungen."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Lieferant {0} nicht in {1} gefunden"
@@ -53043,8 +53127,8 @@ msgstr "Lieferant(en)"
msgid "Suppliers"
msgstr "Lieferanten"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Lieferungen, die der Reverse-Charge-Regelung unterliegen"
@@ -53135,7 +53219,7 @@ msgstr "Synchronisierung gestartet"
msgid "Synchronize all accounts every hour"
msgstr "Synchronisieren Sie alle Konten stündlich"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "System in Verwendung"
@@ -53166,7 +53250,7 @@ msgstr "Das System führt eine implizite Umrechnung unter Verwendung der gekoppe
msgid "System will fetch all the entries if limit value is zero."
msgstr "Das System ruft alle Einträge ab, wenn der Grenzwert Null ist."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Das System überprüft keine Überabrechnung, da der Betrag für Artikel {0} in {1} null ist"
@@ -53187,10 +53271,16 @@ msgstr "Quellensteuer (TDS) Berechnungsübersicht"
msgid "TDS Deducted"
msgstr "Quellensteuer (TDS) abgezogen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Fällige Quellensteuer (TDS)"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53338,7 +53428,7 @@ msgstr "Ziellageradresse"
msgid "Target Warehouse Address Link"
msgstr "Ziellager-Adressverknüpfung"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Fehler bei Ziellager-Reservierung"
@@ -53346,24 +53436,23 @@ msgstr "Fehler bei Ziellager-Reservierung"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Das Ziellager für Fertigerzeugnisse muss mit dem Fertigerzeugnis-Lager {1} im Arbeitsauftrag {2} übereinstimmen, der mit der Fremdvergabe-Eingangsbestellung verknüpft ist."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Ziellager ist vor der Buchung erforderlich"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Ziellager ist für einige Artikel festgelegt, aber der Kunde ist kein interner Kunde."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Ziellager {0} muss mit dem Lieferlager {1} in der Fremdvergabe-Eingangsbestellungsposition übereinstimmen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Eingangslager ist für Zeile {0} zwingend erforderlich"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53480,8 +53569,8 @@ msgstr "Steuerbetrag nach Abzug von Rabatt (Unternehmenswährung)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Der Steuerbetrag wird auf (Artikel-)Zeilenebene gerundet"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Steuerguthaben"
@@ -53513,7 +53602,6 @@ msgstr "Steuerguthaben"
msgid "Tax Breakup"
msgstr "Steuererhebung"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53535,7 +53623,6 @@ msgstr "Steuererhebung"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53551,6 +53638,7 @@ msgstr "Steuererhebung"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53562,8 +53650,8 @@ msgstr "Steuerkategorie"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Steuer-Kategorie wurde in \"Total\" geändert, da alle Artikel \"Artikel ohne Lagerhaltung\" sind"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Steueraufwand"
@@ -53637,7 +53725,7 @@ msgstr "Steuersatz %"
msgid "Tax Rates"
msgstr "Steuersätze"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Steuererstattungen für Touristen im Rahmen der Steuererstattungsregelung für Touristen"
@@ -53655,7 +53743,7 @@ msgstr "Steuerzeile"
msgid "Tax Rule"
msgstr "Steuerregel"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Steuer-Regel steht in Konflikt mit {0}"
@@ -53670,7 +53758,7 @@ msgstr "Umsatzsteuer-Einstellungen"
msgid "Tax Template"
msgstr "Steuervorlage"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Steuer-Vorlage ist erforderlich."
@@ -53990,7 +54078,7 @@ msgstr "Steuern und Gebühren abgezogen"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Steuern und Gebühren abgezogen (Unternehmenswährung)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Steuerzeile #{0}: {1} kann nicht kleiner als {2} sein"
@@ -54023,8 +54111,8 @@ msgstr "Technologie"
msgid "Telecommunications"
msgstr "Telekommunikation"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefonkosten"
@@ -54075,13 +54163,13 @@ msgstr "Vorübergehend auf Eis gelegt"
msgid "Temporary"
msgstr "Temporär"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Temporäre Konten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Temporäre Eröffnungskonten"
@@ -54263,7 +54351,7 @@ msgstr "Vorlage für Allgemeine Geschäftsbedingungen"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54362,7 +54450,7 @@ msgstr "Text, der im Finanzbericht angezeigt wird (z. B. 'Gesamtumsatz', 'Zahlun
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Die 'Von Paketnummer' Das Feld darf weder leer sein noch einen Wert kleiner als 1 haben."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Der Zugriff auf die Angebotsanfrage vom Portal ist deaktiviert. Um den Zugriff zuzulassen, aktivieren Sie ihn in den Portaleinstellungen."
@@ -54415,7 +54503,8 @@ msgstr "Die Zahlungsbedingung in Zeile {0} ist möglicherweise ein Duplikat."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Die Entnahmeliste mit Bestandsreservierungseinträgen kann nicht aktualisiert werden. Wenn Sie Änderungen vornehmen müssen, empfehlen wir Ihnen, die bestehenden Bestandsreservierungseinträge zu stornieren, bevor Sie die Entnahmeliste aktualisieren."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Die Prozessverlustmenge wurde gemäß den Jobkarten zurückgesetzt"
@@ -54431,7 +54520,7 @@ msgstr "Die Seriennummer in Zeile #{0}: {1} ist im Lager {2} nicht verfügbar."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Die Seriennummer {0} ist für {1} {2} reserviert und kann für keine andere Transaktion verwendet werden."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Das Serien- und Chargenbündel {0} ist für diese Transaktion nicht gültig. Die 'Art der Transaktion' sollte 'Nach außen' anstatt 'Nach innen' im Serien- und Chargenbündel {0} sein"
@@ -54467,7 +54556,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "Die Charge {0} ist bereits in {1} {2} reserviert. Daher kann mit {3} {4}, das gegen {5} {6} erstellt wurde, nicht fortgefahren werden."
@@ -54475,7 +54564,11 @@ msgstr "Die Charge {0} ist bereits in {1} {2} reserviert. Daher kann mit {3} {4}
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "Die fertiggestellte Menge {0} des Vorgangs {1} darf nicht größer sein als die fertiggestellte Menge {2} eines vorherigen Vorgangs {3}."
@@ -54495,7 +54588,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Die Standardstückliste für diesen Artikel wird vom System abgerufen. Sie können die Stückliste auch ändern."
@@ -54528,7 +54621,7 @@ msgstr "Das Feld Von Anteilseigner darf nicht leer sein"
msgid "The field To Shareholder cannot be blank"
msgstr "Das Feld An Anteilseigner darf nicht leer sein"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Das Feld {0} in der Zeile {1} ist nicht gesetzt"
@@ -54569,11 +54662,11 @@ msgstr "Bei den folgenden Vermögensgegenständen wurden die Abschreibungen nich
msgid "The following batches are expired, please restock them: {0}"
msgstr "Die folgenden Chargen sind abgelaufen, bitte füllen Sie sie wieder auf: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Die folgenden stornierten Neubuchungseinträge existieren für {0} : {1} Bitte löschen Sie diese Einträge, bevor Sie fortfahren."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Die folgenden gelöschten Attribute sind in Varianten vorhanden, jedoch nicht in der Vorlage. Sie können entweder die Varianten löschen oder die Attribute in der Vorlage behalten."
@@ -54595,7 +54688,7 @@ msgstr "Der/die folgende(n) Zahlungsplan/Zahlungspläne ist/sind bereits vorhand
msgid "The following rows are duplicates:"
msgstr "Die folgenden Zeilen sind Duplikate:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Die folgenden {0} wurden erstellt: {1}"
@@ -54622,7 +54715,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Der Artikel {item} ist nicht als {type_of} Artikel gekennzeichnet. Sie können ihn als {type_of} Artikel in seinem Artikelstamm aktivieren."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Die Artikel {0} und {1} sind im folgenden {2} zu finden:"
@@ -54680,7 +54773,7 @@ msgstr "Der Arbeitsgang {0} kann nicht der Unterarbeitsgang sein"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Die Originalrechnung sollte vor oder zusammen mit der Erstattungsrechnung konsolidiert werden."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Der offene Betrag {0} in {1} ist kleiner als {2}. Der offene Betrag wird auf diese Rechnung aktualisiert."
@@ -54692,6 +54785,12 @@ msgstr "Das übergeordnete Konto {0} ist in der hochgeladenen Vorlage nicht vorh
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Das Zahlungsgatewaykonto in Plan {0} unterscheidet sich von dem Zahlungsgatewaykonto in dieser Zahlungsanforderung"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54733,7 +54832,7 @@ msgstr "Der reservierte Bestand wird freigegeben, wenn Sie Artikel aktualisieren
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Der reservierte Bestand wird freigegeben. Sind Sie sicher, dass Sie fortfahren möchten?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Das Root-Konto {0} muss eine Gruppe sein"
@@ -54749,7 +54848,7 @@ msgstr "Das ausgewählte Änderungskonto {} gehört nicht zur Firma {}."
msgid "The selected item cannot have Batch"
msgstr "Der ausgewählte Artikel kann keine Charge haben"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Die Verkaufsmenge ist geringer als die Gesamtmenge des Vermögensgegenstands. Die verbleibende Menge wird in einen neuen Vermögensgegenstand aufgeteilt. Diese Aktion kann nicht rückgängig gemacht werden. Möchten Sie fortfahren? "
@@ -54782,7 +54881,7 @@ msgstr "Die Anteile existieren nicht mit der {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Der Bestand für den Artikel {0} im Lager {1} war am {2} negativ. Sie sollten einen positiven Eintrag {3} vor dem Datum {4} und der Uhrzeit {5} erstellen, um den korrekten Bewertungssatz zu buchen. Weitere Informationen finden Sie in der Dokumentation ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Der Bestand wurde für die folgenden Artikel und Lager reserviert. Bitte heben Sie die Reservierung auf, um den Bestandsabgleich zu {0}: {1}"
@@ -54804,11 +54903,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Das System erstellt eine Ausgangsrechnung oder eine POS-Rechnung über die POS-Oberfläche basierend auf dieser Einstellung. Bei Transaktionen mit hohem Volumen wird empfohlen, POS-Rechnung zu verwenden."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Die Aufgabe wurde als Hintergrundjob in die Warteschlange gestellt. Falls bei der Verarbeitung im Hintergrund Probleme auftreten, fügt das System einen Kommentar zum Fehler in dieser Bestandsabstimmung hinzu und kehrt zum Entwurfsstadium zurück"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Die Aufgabe wurde als Hintergrundjob in die Warteschlange gestellt. Falls bei der Verarbeitung im Hintergrund ein Problem auftritt, fügt das System einen Kommentar über den Fehler bei dieser Bestandsabstimmung hinzu und kehrt zur Stufe Gebucht zurück"
@@ -54856,15 +54955,15 @@ msgstr "Der Wert von {0} unterscheidet sich zwischen den Elementen {1} und {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Der Wert {0} ist bereits einem vorhandenen Element {1} zugeordnet."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Das Lager, in dem Sie fertige Artikel lagern, bevor sie versandt werden."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "Das Lager, in dem Sie Ihre Rohmaterialien lagern. Jeder benötigte Artikel kann ein eigenes Quelllager haben. Auch ein Gruppenlager kann als Quelllager ausgewählt werden. Bei Buchung des Arbeitsauftrags werden die Rohstoffe in diesen Lagern für die Produktion reserviert."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Das Lager, in das Ihre Artikel übertragen werden, wenn Sie mit der Produktion beginnen. Es kann auch eine Lager-Gruppe ausgewählt werden."
@@ -54872,19 +54971,19 @@ msgstr "Das Lager, in das Ihre Artikel übertragen werden, wenn Sie mit der Prod
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "Die {0} ({1}) muss gleich {2} ({3}) sein."
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} enthält Artikel mit Stückpreis."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Das {0}-Präfix '{1}' ist bereits vorhanden. Bitte ändern Sie die Seriennummernkreis, da Sie sonst einen Fehler wegen doppeltem Eintrag erhalten."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} erfolgreich erstellt"
@@ -54892,7 +54991,7 @@ msgstr "{0} {1} erfolgreich erstellt"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "Der {0} {1} stimmt nicht mit dem {0} {2} in {3} {4} überein"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "Die {0} {1} wird verwendet, um die Bewertungskosten für das Fertigerzeugnis {2} zu berechnen."
@@ -54908,7 +55007,7 @@ msgstr "Es gibt aktive Wartungs- oder Reparaturarbeiten am Vermögenswert. Sie m
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Es gibt Unstimmigkeiten zwischen dem Kurs, der Anzahl der Aktien und dem berechneten Betrag"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Es gibt Hauptbucheinträge für dieses Konto. Die Änderung von {0} zu etwas anderem als {1} im laufenden System führt zu einer falschen Ausgabe im {2}-Bericht"
@@ -54937,7 +55036,7 @@ msgstr "Für dieses Datum sind keine Plätze verfügbar"
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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Es gibt zwei Möglichkeiten, die Bewertung des Lagerbestands zu verwalten: FIFO (first in - first out) und gleitender Durchschnitt. Um dieses Thema im Detail zu verstehen, besuchen Sie bitte Artikelbewertung, FIFO und gleitender Durchschnitt. "
@@ -54977,7 +55076,7 @@ msgstr "Es wurde kein Stapel für {0} gefunden: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Es muss mindestens 1 Fertigerzeugnis in dieser Lagerbewegung vorhanden sein"
@@ -55033,11 +55132,11 @@ msgstr "Dieser Artikel ist eine Variante von {0} (Vorlage)."
msgid "This Month's Summary"
msgstr "Zusammenfassung dieses Monats"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Diese Bestellung wurde vollständig untervergeben."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Dieser Auftrag wurde vollständig an Subunternehmer vergeben."
@@ -55071,7 +55170,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Dies deckt alle mit diesem Setup verbundenen Bewertungslisten ab"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Dieses Dokument ist über dem Limit von {0} {1} für item {4}. Machen Sie eine andere {3} gegen die gleiche {2}?"
@@ -55174,11 +55273,11 @@ msgstr "Dies gilt aus buchhalterischer Sicht als gefährlich."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Dies erfolgt zur Abrechnung von Fällen, in denen der Eingangsbeleg nach der Eingangsrechnung erstellt wird"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Diese Option ist standardmäßig aktiviert. Wenn Sie Materialien für Unterbaugruppen des Artikels, den Sie herstellen, planen möchten, lassen Sie diese Option aktiviert. Wenn Sie die Unterbaugruppen separat planen und herstellen, können Sie dieses Kontrollkästchen deaktivieren."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Dies gilt für \"Rohmaterial Artikel\", die zur Herstellung von Fertigprodukten verwendet werden. Wenn es sich bei dem Artikel um eine zusätzliche Dienstleistung wie „Waschen“ handelt, welche in der Stückliste verwendet wird, lassen Sie dieses Kontrollkästchen deaktiviert."
@@ -55247,7 +55346,7 @@ msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} durch V
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Dieser Zeitplan wurde erstellt, als Vermögensgegenstand {0} über Vermögensgegenstand-Reparatur {1} repariert wurde."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} aufgrund der Stornierung der Ausgangsrechnung {1} wiederhergestellt wurde."
@@ -55255,15 +55354,15 @@ msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} aufgrun
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} nach der Stornierung der Vermögensgegenstand-Aktivierung {1} wiederhergestellt wurde."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} wiederhergestellt wurde."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} über die Ausgangsrechnung {1} zurückgegeben wurde."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} verschrottet wurde."
@@ -55271,7 +55370,7 @@ msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} verschr
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} {1} in den neuen Vermögensgegenstand {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Dieser Zeitplan wurde erstellt, als der Vermögensgegenstand {0} über die Ausgangsrechnung {2} {1} wurde."
@@ -55340,7 +55439,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Dies schränkt den Benutzerzugriff auf andere Mitarbeiterdatensätze ein"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Diese(r) {} wird als Materialtransfer behandelt."
@@ -55451,7 +55550,7 @@ msgstr "Zeit in Min"
msgid "Time in mins."
msgstr "Zeit in Min."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Zeitprotokolle sind für {0} {1} erforderlich"
@@ -55560,7 +55659,7 @@ msgstr "Abrechnen"
msgid "To Currency"
msgstr "In Währung"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Bis-Datum kann nicht vor Von-Datum liegen"
@@ -55787,11 +55886,15 @@ msgstr "Um Arbeitsgänge hinzuzufügen, aktivieren Sie das Kontrollkästchen 'Mi
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Um Rohmaterialien von subkontrahierten Artikeln hinzuzufügen, wenn „Aufgelöste Artikel einbeziehen“ deaktiviert ist."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Aktualisieren Sie "Over Billing Allowance" in den Buchhaltungseinstellungen oder im Artikel, um eine Überberechnung zuzulassen."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Um eine Überbestätigung / Überlieferung zu ermöglichen, aktualisieren Sie "Überbestätigung / Überlieferung" in den Lagereinstellungen oder im Artikel."
@@ -55834,11 +55937,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Um Unterbaugruppen-Kosten und Sekundärartikel in Fertigerzeugnissen eines Arbeitsauftrags ohne Jobkarte einzubeziehen, wenn die Option 'Mehrstufige Stückliste verwenden' aktiviert ist."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Um Steuern im Artikelpreis in Zeile {0} einzubeziehen, müssen Steuern in den Zeilen {1} ebenfalls einbezogen sein"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Um zwei Produkte zusammenzuführen, müssen folgende Eigenschaften für beide Produkte gleich sein"
@@ -55846,7 +55949,7 @@ msgstr "Um zwei Produkte zusammenzuführen, müssen folgende Eigenschaften für
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Um eine Preisregel nicht auf eine bestimmte Transaktion anzuwenden, müssen alle anwendbaren Preisregeln deaktiviert werden."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Um dies zu überschreiben, aktivieren Sie '{0}' in Firma {1}"
@@ -55871,7 +55974,7 @@ msgstr "Um die Rechnung ohne Eingangsbeleg zu buchen, stellen Sie bitte {0} als
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Um ein anderes Finanzbuch zu verwenden, deaktivieren Sie bitte 'Standard-Finanzbuch-Anlagegüter einbeziehen'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56021,7 +56124,7 @@ msgstr "Gesamte Zuteilungen"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56128,12 +56231,12 @@ msgstr "Gesamtprovision"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Gesamt abgeschlossene Menge"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Gesamte fertiggestellte Menge ist für Auftragszettel {0} erforderlich. Bitte starten und vervollständigen Sie den Auftragszettel vor der Buchung."
@@ -56435,7 +56538,7 @@ msgstr "Summe ausstehende Beträge"
msgid "Total Paid Amount"
msgstr "Summe gezahlte Beträge"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Der gesamte Zahlungsbetrag im Zahlungsplan muss gleich Groß / Abgerundet sein"
@@ -56447,7 +56550,7 @@ msgstr "Der Gesamtbetrag der Zahlungsanforderung darf nicht größer als {0} sei
msgid "Total Payments"
msgstr "Gesamtzahlungen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Die gesamte kommissionierte Menge {0} ist größer als die bestellte Menge {1}. Sie können die Zulässigkeit der Überkommissionierung in den Lagereinstellungen festlegen."
@@ -56730,7 +56833,7 @@ msgstr "Gesamte Arbeitsplatzzeit (in Stunden)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Insgesamt verteilte Prozentmenge für Vertriebsteam sollte 100 sein"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Der prozentuale Gesamtbeitrag sollte 100 betragen"
@@ -56905,7 +57008,7 @@ msgstr "Transaktionsdatum"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Transaktionslöschdokument {0} wurde für das Unternehmen {1} ausgelöst"
@@ -56929,11 +57032,11 @@ msgstr "Eintrag zum Datensatz zur Transaktionslöschung"
msgid "Transaction Deletion Record To Delete"
msgstr "Transaktionslöschprotokoll zum Löschen"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Transaktionslöschdatensatz {0} wird bereits ausgeführt. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Transaktionslöschungsdatensatz {0} löscht derzeit {1}. Dokumente können erst gespeichert werden, wenn die Löschung abgeschlossen ist."
@@ -57038,7 +57141,8 @@ msgstr "Transaktion, für die Steuer einbehalten wird"
msgid "Transaction from which tax is withheld"
msgstr "Transaktion, von der die Steuer einbehalten wird"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Die Transaktion ist für den angehaltenen Arbeitsauftrag {0} nicht zulässig."
@@ -57085,11 +57189,16 @@ msgstr "Transaktionen Jährliche Geschichte"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Es gibt bereits Transaktionen für das Unternehmen! Kontenpläne können nur für ein Unternehmen ohne Transaktionen importiert werden."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transaktionen mit Verkaufsrechnung im POS sind deaktiviert."
@@ -57270,8 +57379,8 @@ msgstr "Informationen zum Transportunternehmer"
msgid "Transporter Name"
msgstr "Name des Transportunternehmers"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Reisekosten"
@@ -57535,6 +57644,7 @@ msgstr "VAE VAT Einstellungen"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57550,7 +57660,7 @@ msgstr "VAE VAT Einstellungen"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57611,7 +57721,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Maßeinheit-Umrechnungsfaktor"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "UOM-Umrechnungsfaktor ({0} -> {1}) für Element nicht gefunden: {2}"
@@ -57624,7 +57734,7 @@ msgstr "Maßeinheit-Umrechnungsfaktor ist erforderlich in der Zeile {0}"
msgid "UOM Name"
msgstr "Maßeinheit-Name"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "ME Umrechnungsfaktor erforderlich für ME: {0} in Artikel: {1}"
@@ -57696,13 +57806,13 @@ msgstr "Der Wechselkurs {0} zu {1} für den Stichtag {2} kann nicht gefunden wer
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Es konnte keine Punktzahl gefunden werden, die bei {0} beginnt. Sie benötigen eine Punktzahl zwischen 0 und 100."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Es ist nicht möglich, ein Zeitfenster in den nächsten {0} Tagen für die Operation {1} zu finden. Bitte erhöhen Sie die 'Kapazitätsplanung für (Tage)' in der {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Variable kann nicht gefunden werden:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57783,7 +57893,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Unerwartetes Nummernkreismuster"
@@ -57802,7 +57912,7 @@ msgstr "Maßeinheit"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Einzelpreis"
@@ -57819,7 +57929,7 @@ msgstr "Maßeinheit"
msgid "Unit of Measure (UOM)"
msgstr "Maßeinheit (ME)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Die Mengeneinheit {0} wurde mehr als einmal in die Umrechnungsfaktortabelle eingetragen."
@@ -57964,7 +58074,7 @@ msgstr "Nicht abgeglichene Einträge"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58004,12 +58114,12 @@ msgstr "Ungeklärt"
msgid "Unscheduled"
msgstr "Außerplanmäßig"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Ungesicherte Kredite"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Zugeordnete Zahlungsanforderung aufheben"
@@ -58185,7 +58295,7 @@ msgstr "Artikel aktualisieren"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Ausstehenden Betrag für dieses Dokument aktualisieren"
@@ -58264,11 +58374,11 @@ msgstr "{0} Finanzberichtszeile(n) mit neuem Kategorienamen aktualisiert"
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Kosten- und Abrechnungsfelder für dieses Projekt werden aktualisiert..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Varianten werden aktualisiert ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Status des Arbeitsauftrags aktualisieren"
@@ -58470,7 +58580,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Wechselkurs des Transaktionsdatums verwenden"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Verwenden Sie einen anderen Namen als den vorherigen Projektnamen"
@@ -58512,7 +58622,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Wird mit Finanzberichtsvorlage verwendet"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Benutzerforum"
@@ -58576,6 +58686,11 @@ msgstr "Benutzer können das Kontrollkästchen aktivieren, wenn sie den Eingangs
msgid "Users can make manufacture entry against Job Cards"
msgstr "Benutzer können Fertigungsbuchungen gegen Jobkarten erstellen"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58598,8 +58713,8 @@ msgstr "Benutzer mit dieser Rolle werden benachrichtigt, wenn die Abschreibung e
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Die Verwendung von Negativbestand deaktiviert die FIFO-/gleitende Durchschnittsbewertung, wenn der Bestand negativ ist."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Versorgungsaufwendungen"
@@ -58609,7 +58724,7 @@ msgstr "Versorgungsaufwendungen"
msgid "VAT Accounts"
msgstr "USt-Konten"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "MwSt.-Betrag (AED)"
@@ -58619,12 +58734,12 @@ msgid "VAT Audit Report"
msgstr "USt-Prüfbericht"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "MwSt. auf Ausgaben und alle anderen Eingangsumsätze"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "MwSt. auf Verkäufe und alle sonstigen Ausgangsumsätze"
@@ -58818,7 +58933,6 @@ msgstr "Bewertungsmethode"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58834,14 +58948,12 @@ msgstr "Bewertungsmethode"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Wertansatz"
@@ -58849,19 +58961,19 @@ msgstr "Wertansatz"
msgid "Valuation Rate (In / Out)"
msgstr "Wertansatz (Eingang / Ausgang)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Bewertungsrate fehlt"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Der Bewertungssatz für den Posten {0} ist erforderlich, um Buchhaltungseinträge für {1} {2} vorzunehmen."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Bewertungskurs ist obligatorisch, wenn Öffnung Stock eingegeben"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Bewertungssatz für Position {0} in Zeile {1} erforderlich"
@@ -58871,7 +58983,7 @@ msgstr "Bewertungssatz für Position {0} in Zeile {1} erforderlich"
msgid "Valuation and Total"
msgstr "Bewertung und Summe"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Die Bewertungsrate für von Kunden beigestellte Artikel wurde auf Null gesetzt."
@@ -58885,7 +58997,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Wertansatz für den Artikel gemäß Ausgangsrechnung (nur für interne Transfers)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Bewertungsgebühren können nicht als Inklusiv gekennzeichnet werden"
@@ -58897,7 +59009,7 @@ msgstr "Bewertungsart Gebühren kann nicht als \"inklusive\" markiert werden"
msgid "Value (G - D)"
msgstr "Wert (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Wert ({0})"
@@ -59016,12 +59128,12 @@ msgid "Variance ({})"
msgstr "Varianz ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variante"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Variantenattributfehler"
@@ -59040,7 +59152,7 @@ msgstr "Variantenstückliste"
msgid "Variant Based On"
msgstr "Variante basierend auf"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Variant Based On kann nicht geändert werden"
@@ -59058,7 +59170,7 @@ msgstr "Variantenfeld"
msgid "Variant Item"
msgstr "Variantenartikel"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Variantenartikel"
@@ -59069,7 +59181,7 @@ msgstr "Variantenartikel"
msgid "Variant Of"
msgstr "Variante von"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Variantenerstellung wurde der Warteschlange hinzugefügt"
@@ -59363,7 +59475,7 @@ msgstr "Beleg"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Beleg #"
@@ -59435,7 +59547,7 @@ msgstr "Beleg"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59509,7 +59621,7 @@ msgstr "Beleg Untertyp"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59536,7 +59648,7 @@ msgstr "Beleg Untertyp"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59716,8 +59828,8 @@ msgstr "Lager ist erforderlich, um produzierbare Fertigerzeugnisse abzurufen"
msgid "Warehouse not found against the account {0}"
msgstr "Lager für Konto {0} nicht gefunden"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Angabe des Lagers ist für den Lagerartikel {0} erforderlich"
@@ -59742,7 +59854,7 @@ msgstr "Lager {0} gehört nicht zu Unternehmen {1}"
msgid "Warehouse {0} does not exist"
msgstr "Lager {0} existiert nicht"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Lager {0} ist für den Auftrag {1} nicht zulässig, es sollte {2} sein"
@@ -59879,11 +59991,11 @@ msgstr "Achtung: Zu Lagerbuchung {2} gibt es eine andere Gegenbuchung {0} # {1}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Achtung : Materialanfragemenge ist geringer als die Mindestbestellmenge"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Warnung: Die Menge überschreitet die maximale produzierbare Menge basierend auf der Menge an Rohstoffen, die über die Subunternehmer-Eingangsbestellung {0} eingegangen sind."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Warnung: Auftrag {0} zu Kunden-Bestellung bereits vorhanden {1}"
@@ -59973,7 +60085,7 @@ msgstr "Wellenlänge in Kilometern"
msgid "Wavelength In Megametres"
msgstr "Wellenlänge in Megametern"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Es ist erkennbar, dass {0} gegen {1} erstellt wurde. Wenn Sie den offenen Betrag von {1} aktualisieren möchten, deaktivieren Sie das Kontrollkästchen '{2}'."
@@ -60042,7 +60154,7 @@ msgstr "Webseite:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Woche {0} {1}"
@@ -60172,7 +60284,7 @@ msgstr "Falls aktiviert, wird nur der Transaktionsschwellenwert für jede Transa
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 "Falls aktiviert, verwendet das System das Buchungsdatum des Dokuments für die Benennung des Dokuments anstelle des Erstellungsdatums."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Wenn Sie bei der Erstellung eines Artikels einen Wert für dieses Feld eingeben, wird automatisch ein Artikelpreis erstellt."
@@ -60182,7 +60294,7 @@ msgstr "Wenn Sie bei der Erstellung eines Artikels einen Wert für dieses Feld e
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Wenn ein Umlagerungs-Lagerbuchung mehrere Fertigerzeugnisse ({0}) enthält, muss der Grundpreis für alle Fertigerzeugnisse manuell festgelegt werden. Um den Preis manuell festzulegen, aktivieren Sie das Kontrollkästchen 'Grundpreis manuell festlegen' in der jeweiligen Fertigerzeugnis-Zeile."
@@ -60192,11 +60304,11 @@ msgstr "Wenn ein Umlagerungs-Lagerbuchung mehrere Fertigerzeugnisse ({0}) enthä
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Beim Erstellen eines Kontos für die untergeordnete Firma {0} wurde das übergeordnete Konto {1} als Sachkonto gefunden."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Beim Erstellen eines Kontos für die untergeordnete Firma {0} wurde das übergeordnete Konto {1} nicht gefunden. Bitte erstellen Sie das übergeordnete Konto in der entsprechenden COA"
@@ -60341,7 +60453,7 @@ msgstr "Arbeit erledigt"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Laufende Arbeit/-en"
@@ -60378,7 +60490,7 @@ msgstr "Laufende Arbeit/-en"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60412,7 +60524,7 @@ msgstr "In Arbeitsauftrag verbrauchtes Material"
msgid "Work Order Item"
msgstr "Arbeitsauftragsposition"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60453,19 +60565,23 @@ msgstr "Arbeitsauftragsübersicht"
msgid "Work Order Summary Report"
msgstr "Zusammenfassungsbericht Arbeitsaufträge"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Arbeitsauftrag kann aus folgenden Gründen nicht erstellt werden: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Arbeitsauftrag kann nicht gegen eine Artikelbeschreibungsvorlage ausgelöst werden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Arbeitsauftrag wurde {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Arbeitsauftrag wurde nicht erstellt"
@@ -60474,16 +60590,16 @@ msgstr "Arbeitsauftrag wurde nicht erstellt"
msgid "Work Order {0} created"
msgstr "Arbeitsauftrag {0} erstellt"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Fertigungsauftrag {0}: Auftragskarte für den Vorgang {1} nicht gefunden"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Arbeitsanweisungen"
@@ -60508,7 +60624,7 @@ msgstr "Laufende Arbeit/-en"
msgid "Work-in-Progress Warehouse"
msgstr "Fertigungslager"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Fertigungslager wird vor dem Übertragen benötigt"
@@ -60556,7 +60672,7 @@ msgstr "Arbeitszeit"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60647,14 +60763,14 @@ msgstr "Arbeitsplätze"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Abschreiben"
@@ -60759,7 +60875,7 @@ msgstr "Niedergeschriebener Wert"
msgid "Wrong Company"
msgstr "Falsches Unternehmen"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Falsches Passwort"
@@ -60815,11 +60931,11 @@ msgstr "Jahresbeginn oder Enddatum überlappt mit {0}. Bitte ein Unternehmen wä
msgid "You are importing data for the code list:"
msgstr "Sie importieren Daten für die Codeliste:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Sie dürfen nicht gemäß den im {} Workflow festgelegten Bedingungen aktualisieren."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Sie haben keine Berechtigung Buchungen vor {0} hinzuzufügen oder zu aktualisieren"
@@ -60827,7 +60943,7 @@ msgstr "Sie haben keine Berechtigung Buchungen vor {0} hinzuzufügen oder zu akt
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Sie sind nicht berechtigt, Lagertransaktionen für Artikel {0} im Lager {1} vor diesem Zeitpunkt durchzuführen/zu bearbeiten."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Sie haben keine Berechtigung gesperrte Werte zu setzen"
@@ -60855,7 +60971,7 @@ msgstr "Sie können auch das Standard-CWIP-Konto in Firma {} festlegen"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Sie können das übergeordnete Konto in ein Bilanzkonto ändern oder ein anderes Konto auswählen."
@@ -60896,11 +61012,11 @@ msgstr "Sie können es als Maschinenname oder Vorgangstyp festlegen. Zum Beispie
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Sie können {0} verwenden, um später mit {1} abzugleichen."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Sie können keine Änderungen an der Jobkarte vornehmen, da der Arbeitsauftrag geschlossen ist."
@@ -60924,7 +61040,7 @@ msgstr "Sie können innerhalb der abgeschlossenen Abrechnungsperiode {1} kein(e)
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Sie können im abgeschlossenen Abrechnungszeitraum {0} keine Buchhaltungseinträge mit erstellen oder stornieren."
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Bis zu diesem Datum können Sie keine Buchungen erstellen/berichtigen."
@@ -60985,7 +61101,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Sie haben keine Berechtigungen für {} Elemente in einem {}."
@@ -60997,19 +61113,19 @@ msgstr "Sie haben nicht genügend Treuepunkte zum Einlösen"
msgid "You don't have enough points to redeem."
msgstr "Sie haben nicht genug Punkte zum Einlösen."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61021,7 +61137,7 @@ msgstr "Beim Erstellen von Eröffnungsrechnungen sind {} Fehler aufgetreten. Üb
msgid "You have already selected items from {0} {1}"
msgstr "Sie haben bereits Elemente aus {0} {1} gewählt"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Sie wurden eingeladen, am Projekt {0} mitzuarbeiten."
@@ -61045,7 +61161,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Sie müssen die automatische Nachbestellung in den Lagereinstellungen aktivieren, um den Nachbestellungsstand beizubehalten."
@@ -61061,7 +61177,7 @@ msgstr "Sie müssen einen Kunden auswählen, bevor Sie einen Artikel hinzufügen
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Sie müssen den POS-Abschlusseintrag {} stornieren, um diesen Beleg stornieren zu können."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Sie haben die Kontengruppe {1} als {2}-Konto in Zeile {0} ausgewählt. Bitte wählen Sie ein einzelnes Konto."
@@ -61108,11 +61224,11 @@ msgstr "Postleitzahl"
msgid "Zero Balance"
msgstr "Nullsaldo"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Lieferungen zum Nullsatz"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Nullmenge"
@@ -61134,11 +61250,11 @@ msgstr "Zip-Datei"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Wichtig] [ERPNext] Fehler bei der automatischen Neuordnung"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "„Negative Preise für Artikel zulassen“"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "nach"
@@ -61179,7 +61295,7 @@ msgid "cannot be greater than 100"
msgstr "kann nicht größer als 100 sein"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "von {0}"
@@ -61328,7 +61444,7 @@ msgstr "Die Zahlungs-App ist nicht installiert. Bitte installieren Sie sie von {
msgid "per hour"
msgstr "pro Stunde"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "eine der folgenden Aktionen durchführen:"
@@ -61361,7 +61477,7 @@ msgstr "erhalten von"
msgid "reconciled"
msgstr "versöhnt"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "zurückgeschickt"
@@ -61396,7 +61512,7 @@ msgstr "Rechts"
msgid "sandbox"
msgstr "Sandkasten"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "verkauft"
@@ -61404,8 +61520,8 @@ msgstr "verkauft"
msgid "subscription is already cancelled."
msgstr "abonnement ist bereits storniert."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "Zielreferenzfeld"
@@ -61423,7 +61539,7 @@ msgstr "Titel"
msgid "to"
msgstr "An"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "um den Betrag dieser Rücksendebeleg vor dem Stornieren freizugeben."
@@ -61450,7 +61566,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "einzigartig zB SAVE20 Um Rabatt zu bekommen"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61472,7 +61588,7 @@ msgstr "via Stücklisten-Update-Tool"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "Sie müssen in der Kontentabelle das Konto "Kapital in Bearbeitung" auswählen"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' ist deaktiviert"
@@ -61480,7 +61596,7 @@ msgstr "{0} '{1}' ist deaktiviert"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' nicht im Geschäftsjahr {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) darf nicht größer als die geplante Menge ({2}) im Arbeitsauftrag {3} sein"
@@ -61488,7 +61604,7 @@ msgstr "{0} ({1}) darf nicht größer als die geplante Menge ({2}) im Arbeitsauf
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} hat Vermögensgegenstände gebucht. Entfernen Sie Artikel {2} aus der Tabelle, um fortzufahren."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Konto für Kunde {1} nicht gefunden."
@@ -61521,11 +61637,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Nummer {1} wird bereits in {2} {3} verwendet"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} Betriebskosten für Vorgang {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operationen: {1}"
@@ -61533,7 +61649,7 @@ msgstr "{0} Operationen: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Anfrage für {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Probe aufbewahren basiert auf Charge. Bitte aktivieren Sie die Option Chargennummer, um die Probe des Artikels aufzubewahren"
@@ -61621,11 +61737,11 @@ msgstr "{0} erstellt"
msgid "{0} creation for the following records will be skipped."
msgstr "Die Erstellung von {0} für die folgenden Datensätze wird übersprungen."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "Die Währung {0} muss mit der Standardwährung des Unternehmens übereinstimmen. Bitte wählen Sie ein anderes Konto aus."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} hat derzeit einen Stand von {1} in der Lieferantenbewertung, und Bestellungen an diesen Lieferanten sollten mit Vorsicht erteilt werden."
@@ -61637,7 +61753,7 @@ msgstr "{0} hat derzeit einen Stand von {1} in der Lieferantenbewertung und Anfr
msgid "{0} does not belong to Company {1}"
msgstr "{0} gehört nicht zu Unternehmen {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} gehört nicht zum Unternehmen {1}."
@@ -61646,7 +61762,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} in Artikelsteuer doppelt eingegeben"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} zweimal {1} in Artikelsteuern eingegeben"
@@ -61671,7 +61787,7 @@ msgstr "{0} wurde erfolgreich gebucht"
msgid "{0} hours"
msgstr "{0} Stunden"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} in Zeile {1}"
@@ -61693,7 +61809,7 @@ msgstr "{0} wurde mehrfach in den Zeilen hinzugefügt: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} läuft bereits für {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} ist blockiert, daher kann diese Transaktion nicht fortgesetzt werden"
@@ -61701,12 +61817,12 @@ msgstr "{0} ist blockiert, daher kann diese Transaktion nicht fortgesetzt werden
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} ist im Entwurf. Bitte buchen Sie es, bevor Sie den Vermögensgegenstand erstellen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} Artikel ist zwingend erfoderlich für {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} ist für Konto {1} obligatorisch"
@@ -61714,7 +61830,7 @@ msgstr "{0} ist für Konto {1} obligatorisch"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} ist obligatorisch. Möglicherweise wird kein Währungsumtauschdatensatz für {1} bis {2} erstellt."
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für die Währungsumrechung für {1} bis {2} nicht erstellt."
@@ -61722,7 +61838,7 @@ msgstr "{0} ist zwingend erforderlich. Möglicherweise wurde der Datensatz für
msgid "{0} is not a CSV file."
msgstr "{0} ist keine CSV-Datei."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} ist kein Firmenbankkonto"
@@ -61730,7 +61846,7 @@ msgstr "{0} ist kein Firmenbankkonto"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} ist kein Gruppenknoten. Bitte wählen Sie einen Gruppenknoten als übergeordnete Kostenstelle"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} ist kein Lagerartikel"
@@ -61770,27 +61886,27 @@ msgstr "{0} ist auf Eis gelegt bis {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} ist geöffnet. Schließen Sie die Kasse oder stornieren Sie den vorhandenen POS-Eröffnungseintrag, um einen neuen POS-Eröffnungseintrag zu erstellen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} Artikel demontiert"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} Elemente in Bearbeitung"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} Elemente gingen während des Prozesses verloren."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} Elemente hergestellt"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} Artikel zurückgegeben"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} Artikel zurückzugeben"
@@ -61798,7 +61914,7 @@ msgstr "{0} Artikel zurückzugeben"
msgid "{0} must be negative in return document"
msgstr "{0} muss im Retourenschein negativ sein"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} darf nicht mit {1} handeln. Bitte ändern Sie das Unternehmen oder fügen Sie das Unternehmen im Abschnitt 'Erlaubte Geschäftspartner' im Kundendatensatz hinzu."
@@ -61814,7 +61930,7 @@ msgstr "Der Parameter {0} ist ungültig"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} Zahlungsbuchungen können nicht nach {1} gefiltert werden"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "Menge {0} des Artikels {1} wird im Lager {2} mit einer Kapazität von {3} empfangen."
@@ -61827,7 +61943,7 @@ msgstr "{0} bis {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} Einheiten sind für Artikel {1} in Lager {2} reserviert. Bitte heben Sie die Reservierung auf, um die Lagerbestandsabstimmung {3} zu können."
@@ -61843,16 +61959,16 @@ msgstr "{0} Einheiten von Artikel {1} sind in keinem der Lager verfügbar. Für
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} Einheiten von {1} werden in {2} mit der Lagerbestandsdimension: {3} am {4} {5} für {6} benötigt, um die Transaktion abzuschließen."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "Es werden {0} Einheiten von {1} in {2} auf {3} {4} für {5} benötigt, um diesen Vorgang abzuschließen."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} Einheiten von {1} benötigt in {2} am {3} {4}, um diese Transaktion abzuschließen."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} Einheiten von {1} benötigt in {2} zum Abschluss dieser Transaktion."
@@ -61864,7 +61980,7 @@ msgstr "{0} bis {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} gültige Seriennummern für Artikel {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} Varianten erstellt."
@@ -61880,7 +61996,7 @@ msgstr "{0} wird als Rabatt gewährt."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} wird als {1} in nachfolgend gescannten Artikeln gesetzt"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61918,8 +62034,8 @@ msgstr "{0} {1} wurde bereits vollständig bezahlt."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} wurde bereits teilweise bezahlt. Bitte nutzen Sie den Button 'Ausstehende Rechnungen aufrufen', um die aktuell ausstehenden Beträge zu erhalten."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} wurde geändert. Bitte aktualisieren."
@@ -62029,7 +62145,7 @@ msgstr "{0} {1}: Konto {2} ist inaktiv"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Konteneintrag für {2} kann nur in folgender Währung vorgenommen werden: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Kostenstelle ist zwingend erfoderlich für Artikel {2}"
@@ -62078,8 +62194,8 @@ msgstr "{0}% des Gesamtrechnungswerts wird als Rabatt gewährt."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0}s {1} darf nicht nach dem erwarteten Enddatum von {2} liegen."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, schließen Sie die Operation {1} vor der Operation {2} ab."
@@ -62099,11 +62215,11 @@ msgstr "{0}: Geschützter DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtueller DocType (keine Datenbanktabelle)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} gehört nicht zum Unternehmen: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} existiert nicht"
@@ -62111,11 +62227,11 @@ msgstr "{0}: {1} existiert nicht"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} existiert nicht"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} ist ein Sammelkonto."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} muss kleiner als {2} sein"
@@ -62127,7 +62243,7 @@ msgstr "{count} Vermögensgegenstände erstellt für {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} wurde abgebrochen oder geschlossen."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "Die Stichprobengröße von {item_name} ({sample_size}) darf nicht größer sein als die akzeptierte Menge ({accepted_quantity})"
@@ -62139,7 +62255,7 @@ msgstr "{ref_doctype} {ref_name} ist {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} kann nicht storniert werden, da die gesammelten Treuepunkte eingelöst wurden. Brechen Sie zuerst das {} Nein {} ab"
diff --git a/erpnext/locale/eo.po b/erpnext/locale/eo.po
index 436786fc995..94f909d9849 100644
--- a/erpnext/locale/eo.po
+++ b/erpnext/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:22\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr "crwdns132096:0crwdne132096:0"
msgid " Summary"
msgstr "crwdns62312:0crwdne62312:0"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "crwdns62314:0crwdne62314:0"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "crwdns62316:0crwdne62316:0"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "crwdns62318:0crwdne62318:0"
@@ -268,11 +268,11 @@ msgstr "crwdns155450:0crwdne155450:0"
msgid "% of materials delivered against this Sales Order"
msgstr "crwdns132124:0crwdne132124:0"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "crwdns62472:0{0}crwdne62472:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "crwdns62474:0crwdne62474:0"
@@ -284,7 +284,7 @@ msgstr "crwdns62476:0crwdne62476:0"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "crwdns62480:0crwdne62480:0"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "crwdns62482:0{0}crwdnd62482:0{1}crwdne62482:0"
@@ -302,7 +302,7 @@ msgstr "crwdns62486:0crwdne62486:0"
msgid "'From Date' must be after 'To Date'"
msgstr "crwdns62488:0crwdne62488:0"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "crwdns62490:0crwdne62490:0"
@@ -314,9 +314,9 @@ msgstr "crwdns151814:0{0}crwdne151814:0"
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "crwdns151816:0{0}crwdne151816:0"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "crwdns62492:0crwdne62492:0"
@@ -346,8 +346,8 @@ msgstr "crwdns111570:0{0}crwdnd111570:0{1}crwdne111570:0"
msgid "'{0}' has been already added."
msgstr "crwdns152414:0{0}crwdne152414:0"
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "crwdns127446:0{0}crwdnd127446:0{1}crwdne127446:0"
@@ -517,8 +517,8 @@ msgstr "crwdns132138:0crwdne132138:0"
msgid "11-50"
msgstr "crwdns132140:0crwdne132140:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "crwdns62564:0{0}crwdne62564:0"
@@ -607,8 +607,8 @@ msgstr "crwdns148576:0crwdne148576:0"
msgid "90 Above"
msgstr "crwdns62600:0crwdne62600:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "crwdns164140:0crwdne164140:0"
@@ -758,7 +758,7 @@ msgstr "crwdns132180:0crwdne132180:0"
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "crwdns155778:0{0}crwdne155778:0"
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "crwdns155606:0{0}crwdnd155606:0{1}crwdnd155606:0{2}crwdne155606:0"
@@ -775,7 +775,7 @@ msgstr "crwdns155780:0{0}crwdne155780:0"
msgid "{} "
msgstr "crwdns155906:0crwdne155906:0"
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid " Cannot overbill for the following Items:
"
msgstr "crwdns155608:0crwdne155608:0"
@@ -819,7 +819,7 @@ msgstr "crwdns155784:0{0}crwdne155784:0"
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 "crwdns154814:0crwdne154814:0"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "crwdns155610:0crwdne155610:0"
@@ -892,11 +892,11 @@ msgstr "crwdns148590:0crwdne148590:0"
msgid "Your Shortcuts "
msgstr "crwdns148592:0crwdne148592:0"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "crwdns148848:0{0}crwdne148848:0"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "crwdns148850:0{0}crwdne148850:0"
@@ -941,7 +941,7 @@ msgstr "crwdns62642:0crwdne62642:0"
msgid "A - C"
msgstr "crwdns62644:0crwdne62644:0"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "crwdns62648:0crwdne62648:0"
@@ -1105,11 +1105,11 @@ msgstr "crwdns132216:0crwdne132216:0"
msgid "Abbreviation"
msgstr "crwdns132218:0crwdne132218:0"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "crwdns62734:0crwdne62734:0"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "crwdns62736:0crwdne62736:0"
@@ -1117,7 +1117,7 @@ msgstr "crwdns62736:0crwdne62736:0"
msgid "Abbreviation: {0} must appear only once"
msgstr "crwdns62738:0{0}crwdne62738:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "crwdns160050:0crwdne160050:0"
@@ -1171,7 +1171,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "crwdns132228:0crwdne132228:0"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "crwdns62770:0crwdne62770:0"
@@ -1207,7 +1207,7 @@ msgstr "crwdns62788:0{0}crwdne62788:0"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "crwdns132236:0crwdne132236:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "crwdns152084:0{0}crwdnd152084:0{1}crwdne152084:0"
@@ -1325,8 +1325,8 @@ msgstr "crwdns132250:0crwdne132250:0"
msgid "Account Manager"
msgstr "crwdns132252:0crwdne132252:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "crwdns62894:0crwdne62894:0"
@@ -1344,7 +1344,7 @@ msgstr "crwdns62894:0crwdne62894:0"
msgid "Account Name"
msgstr "crwdns132254:0crwdne132254:0"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "crwdns62904:0crwdne62904:0"
@@ -1357,7 +1357,7 @@ msgstr "crwdns62904:0crwdne62904:0"
msgid "Account Number"
msgstr "crwdns62906:0crwdne62906:0"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "crwdns62910:0{0}crwdnd62910:0{1}crwdne62910:0"
@@ -1396,7 +1396,7 @@ msgstr "crwdns132262:0crwdne132262:0"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1412,11 +1412,11 @@ msgstr "crwdns62924:0crwdne62924:0"
msgid "Account Value"
msgstr "crwdns62938:0crwdne62938:0"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "crwdns62940:0crwdne62940:0"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "crwdns62942:0crwdne62942:0"
@@ -1483,15 +1483,15 @@ msgstr "crwdns200714:0crwdne200714:0"
msgid "Account where the cost of this item will be debited on purchase"
msgstr "crwdns200716:0crwdne200716:0"
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "crwdns62956:0crwdne62956:0"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "crwdns62958:0crwdne62958:0"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "crwdns62960:0crwdne62960:0"
@@ -1499,8 +1499,8 @@ msgstr "crwdns62960:0crwdne62960:0"
msgid "Account with existing transaction can not be deleted"
msgstr "crwdns62962:0crwdne62962:0"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "crwdns62964:0crwdne62964:0"
@@ -1508,11 +1508,11 @@ msgstr "crwdns62964:0crwdne62964:0"
msgid "Account {0} added multiple times"
msgstr "crwdns62966:0{0}crwdne62966:0"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "crwdns160592:0{0}crwdnd160592:0{1}crwdnd160592:0{2}crwdne160592:0"
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "crwdns160594:0{0}crwdnd160594:0{1}crwdnd160594:0{2}crwdne160594:0"
@@ -1520,11 +1520,11 @@ msgstr "crwdns160594:0{0}crwdnd160594:0{1}crwdnd160594:0{2}crwdne160594:0"
msgid "Account {0} does not belong to company {1}"
msgstr "crwdns161250:0{0}crwdnd161250:0{1}crwdne161250:0"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "crwdns62968:0{0}crwdnd62968:0{1}crwdne62968:0"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "crwdns62972:0{0}crwdne62972:0"
@@ -1540,15 +1540,15 @@ msgstr "crwdns62978:0{0}crwdnd62978:0{1}crwdnd62978:0{2}crwdne62978:0"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "crwdns155910:0{0}crwdnd155910:0{1}crwdne155910:0"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "crwdns62980:0{0}crwdnd62980:0{1}crwdne62980:0"
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "crwdns62984:0{0}crwdnd62984:0{1}crwdne62984:0"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "crwdns160596:0{0}crwdne160596:0"
@@ -1556,7 +1556,7 @@ msgstr "crwdns160596:0{0}crwdne160596:0"
msgid "Account {0} is frozen"
msgstr "crwdns62986:0{0}crwdne62986:0"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "crwdns62988:0{0}crwdnd62988:0{1}crwdne62988:0"
@@ -1564,19 +1564,19 @@ msgstr "crwdns62988:0{0}crwdnd62988:0{1}crwdne62988:0"
msgid "Account {0} should be of type Expense"
msgstr "crwdns154816:0{0}crwdne154816:0"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "crwdns62990:0{0}crwdnd62990:0{1}crwdne62990:0"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "crwdns62992:0{0}crwdnd62992:0{1}crwdnd62992:0{2}crwdne62992:0"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "crwdns62994:0{0}crwdnd62994:0{1}crwdne62994:0"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "crwdns62996:0{0}crwdne62996:0"
@@ -1592,7 +1592,7 @@ msgstr "crwdns63000:0{0}crwdne63000:0"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "crwdns63004:0{0}crwdne63004:0"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "crwdns63006:0{0}crwdnd63006:0{1}crwdne63006:0"
@@ -1877,8 +1877,8 @@ msgstr "crwdns132272:0crwdne132272:0"
msgid "Accounting Entry for Asset"
msgstr "crwdns63168:0crwdne63168:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "crwdns155452:0{0}crwdne155452:0"
@@ -1902,8 +1902,8 @@ msgstr "crwdns63170:0crwdne63170:0"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "crwdns63172:0crwdne63172:0"
@@ -1912,7 +1912,7 @@ msgstr "crwdns63172:0crwdne63172:0"
msgid "Accounting Entry for {0}"
msgstr "crwdns63174:0{0}crwdne63174:0"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "crwdns63176:0{0}crwdnd63176:0{1}crwdnd63176:0{2}crwdne63176:0"
@@ -1967,7 +1967,6 @@ msgstr "crwdns161988:0crwdne161988:0"
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1980,14 +1979,13 @@ msgstr "crwdns161988:0crwdne161988:0"
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "crwdns63194:0crwdne63194:0"
@@ -2017,8 +2015,8 @@ msgstr "crwdns161044:0crwdne161044:0"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2118,15 +2116,15 @@ msgstr "crwdns63260:0crwdne63260:0"
msgid "Accounts to Merge"
msgstr "crwdns132288:0crwdne132288:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "crwdns161046:0crwdne161046:0"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "crwdns63266:0crwdne63266:0"
@@ -2291,7 +2289,7 @@ msgstr "crwdns132314:0crwdne132314:0"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "crwdns200182:0crwdne200182:0"
@@ -2415,7 +2413,7 @@ msgstr "crwdns63388:0crwdne63388:0"
msgid "Actual End Date (via Timesheet)"
msgstr "crwdns132324:0crwdne132324:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "crwdns155360:0crwdne155360:0"
@@ -2537,7 +2535,7 @@ msgstr "crwdns132344:0crwdne132344:0"
msgid "Actual qty in stock"
msgstr "crwdns63452:0crwdne63452:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "crwdns63454:0{0}crwdne63454:0"
@@ -2546,7 +2544,7 @@ msgstr "crwdns63454:0{0}crwdne63454:0"
msgid "Ad-hoc Qty"
msgstr "crwdns159788:0crwdne159788:0"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "crwdns63462:0crwdne63462:0"
@@ -3045,7 +3043,7 @@ msgstr "crwdns111604:0crwdne111604:0"
msgid "Additional Information updated successfully."
msgstr "crwdns154822:0crwdne154822:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "crwdns160052:0crwdne160052:0"
@@ -3068,7 +3066,7 @@ msgstr "crwdns132400:0crwdne132400:0"
msgid "Additional Transferred Qty"
msgstr "crwdns160054:0crwdne160054:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3076,11 +3074,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr "crwdns160056:0{0}crwdnd160056:0{1}crwdne160056:0"
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "crwdns132402:0crwdne132402:0"
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "crwdns161476:0{0}crwdnd161476:0{1}crwdnd161476:0{2}crwdne161476:0"
@@ -3226,11 +3219,6 @@ msgstr "crwdns63806:0crwdne63806:0"
msgid "Address used to determine Tax Category in transactions"
msgstr "crwdns132418:0crwdne132418:0"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "crwdns159794:0crwdne159794:0"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "crwdns63814:0crwdne63814:0"
@@ -3243,8 +3231,8 @@ msgstr "crwdns63816:0crwdne63816:0"
msgid "Administrative Assistant"
msgstr "crwdns143322:0crwdne143322:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "crwdns63818:0crwdne63818:0"
@@ -3312,7 +3300,7 @@ msgstr "crwdns132430:0crwdne132430:0"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "crwdns63834:0crwdne63834:0"
@@ -3432,7 +3420,7 @@ msgstr "crwdns63874:0crwdne63874:0"
msgid "Against Blanket Order"
msgstr "crwdns132442:0crwdne132442:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "crwdns148754:0{0}crwdne148754:0"
@@ -3574,11 +3562,11 @@ msgstr "crwdns63942:0crwdne63942:0"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "crwdns63944:0crwdne63944:0"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "crwdns63946:0{0}crwdne63946:0"
@@ -3728,21 +3716,21 @@ msgstr "crwdns64010:0crwdne64010:0"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "crwdns64014:0crwdne64014:0"
@@ -3822,7 +3810,7 @@ msgstr "crwdns64028:0crwdne64028:0"
msgid "All Territories"
msgstr "crwdns64030:0crwdne64030:0"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "crwdns64032:0crwdne64032:0"
@@ -3836,6 +3824,11 @@ msgstr "crwdns132500:0crwdne132500:0"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "crwdns64036:0crwdne64036:0"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr "crwdns201945:0crwdne201945:0"
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "crwdns152148:0crwdne152148:0"
@@ -3844,23 +3837,23 @@ msgstr "crwdns152148:0crwdne152148:0"
msgid "All items have already been Invoiced/Returned"
msgstr "crwdns64038:0crwdne64038:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "crwdns112194:0crwdne112194:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "crwdns64040:0crwdne64040:0"
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "crwdns64042:0crwdne64042:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "crwdns160274:0crwdne160274:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "crwdns160276:0crwdne160276:0"
@@ -3874,11 +3867,11 @@ msgstr "crwdns132502:0crwdne132502:0"
msgid "All the items have been already returned."
msgstr "crwdns152571:0crwdne152571:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "crwdns64046:0crwdne64046:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "crwdns64048:0crwdne64048:0"
@@ -3897,7 +3890,7 @@ msgstr "crwdns64050:0crwdne64050:0"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "crwdns132504:0crwdne132504:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "crwdns64056:0crwdne64056:0"
@@ -3907,7 +3900,7 @@ msgstr "crwdns64056:0crwdne64056:0"
msgid "Allocate Payment Based On Payment Terms"
msgstr "crwdns132506:0crwdne132506:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "crwdns148852:0crwdne148852:0"
@@ -3937,7 +3930,7 @@ msgstr "crwdns132508:0crwdne132508:0"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3994,7 +3987,7 @@ msgstr "crwdns64100:0crwdne64100:0"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4058,7 +4051,7 @@ msgstr "crwdns132522:0crwdne132522:0"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "crwdns142934:0crwdne142934:0"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "crwdns143338:0crwdne143338:0"
@@ -4181,16 +4174,6 @@ msgstr "crwdns64170:0crwdne64170:0"
msgid "Allow Sales"
msgstr "crwdns132558:0crwdne132558:0"
-#. 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 "crwdns132560:0crwdne132560:0"
-
-#. 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 "crwdns132562:0crwdne132562:0"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4316,6 +4299,16 @@ msgstr "crwdns200506:0crwdne200506:0"
msgid "Allow negative rates for Items"
msgstr "crwdns200508:0crwdne200508:0"
+#. 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 "crwdns201947:0crwdne201947:0"
+
+#. 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 "crwdns201949:0crwdne201949:0"
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4392,10 +4385,8 @@ msgstr "crwdns132592:0crwdne132592:0"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "crwdns64224:0crwdne64224:0"
@@ -4407,6 +4398,11 @@ msgstr "crwdns64230:0crwdne64230:0"
msgid "Allowed special characters are '/' and '-'"
msgstr "crwdns200728:0crwdne200728:0"
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr "crwdns201951:0crwdne201951:0"
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4448,8 +4444,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "crwdns154742:0crwdne154742:0"
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4690,7 +4686,7 @@ msgstr "crwdns155138:0crwdne155138:0"
msgid "Amount"
msgstr "crwdns64404:0crwdne64404:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "crwdns64520:0crwdne64520:0"
@@ -4824,12 +4820,12 @@ msgid "Amount to Bill"
msgstr "crwdns151890:0crwdne151890:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "crwdns64574:0{0}crwdnd64574:0{1}crwdnd64574:0{2}crwdnd64574:0{3}crwdne64574:0"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr "crwdns201837:0{0}crwdnd201837:0{1}crwdnd201837:0{2}crwdnd201837:0{3}crwdne201837:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "crwdns64576:0{0}crwdnd64576:0{1}crwdnd64576:0{2}crwdne64576:0"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr "crwdns201839:0{0}crwdnd201839:0{1}crwdnd201839:0{2}crwdne201839:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4874,11 +4870,11 @@ msgstr "crwdns64582:0crwdne64582:0"
msgid "An Item Group is a way to classify items based on types."
msgstr "crwdns111618:0crwdne111618:0"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "crwdns64584:0{0}crwdne64584:0"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "crwdns64590:0crwdne64590:0"
@@ -5418,7 +5414,7 @@ msgstr "crwdns64800:0{0}crwdnd64800:0{1}crwdne64800:0"
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "crwdns64802:0{0}crwdnd64802:0{1}crwdne64802:0"
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "crwdns64804:0{0}crwdnd64804:0{1}crwdne64804:0"
@@ -5430,7 +5426,7 @@ msgstr "crwdns64808:0{0}crwdne64808:0"
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "crwdns111624:0{0}crwdne111624:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "crwdns64810:0{0}crwdne64810:0"
@@ -5568,7 +5564,7 @@ msgstr "crwdns64880:0crwdne64880:0"
msgid "Asset Category Name"
msgstr "crwdns132708:0crwdne132708:0"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "crwdns64884:0crwdne64884:0"
@@ -5745,8 +5741,8 @@ msgstr "crwdns132724:0crwdne132724:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5846,7 +5842,7 @@ msgstr "crwdns65008:0crwdne65008:0"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "crwdns65010:0{0}crwdne65010:0"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "crwdns148762:0crwdne148762:0"
@@ -5878,7 +5874,7 @@ msgstr "crwdns65026:0{0}crwdne65026:0"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "crwdns65028:0{0}crwdnd65028:0{1}crwdne65028:0"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "crwdns65030:0crwdne65030:0"
@@ -5886,20 +5882,20 @@ msgstr "crwdns65030:0crwdne65030:0"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "crwdns65032:0{0}crwdne65032:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "crwdns65034:0crwdne65034:0"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "crwdns65036:0crwdne65036:0"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "crwdns65038:0{0}crwdne65038:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "crwdns65040:0crwdne65040:0"
@@ -5919,7 +5915,7 @@ msgstr "crwdns65046:0{0}crwdne65046:0"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "crwdns154852:0{0}crwdnd154852:0{1}crwdne154852:0"
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "crwdns65054:0{0}crwdnd65054:0{1}crwdne65054:0"
@@ -5960,7 +5956,7 @@ msgstr "crwdns157446:0{0}crwdne157446:0"
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "crwdns157448:0{0}crwdne157448:0"
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "crwdns65070:0{0}crwdne65070:0"
@@ -6010,7 +6006,7 @@ msgstr "crwdns154228:0{item_code}crwdne154228:0"
msgid "Assets {assets_link} created for {item_code}"
msgstr "crwdns154230:0{assets_link}crwdnd154230:0{item_code}crwdne154230:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "crwdns65092:0crwdne65092:0"
@@ -6071,7 +6067,7 @@ msgstr "crwdns65108:0crwdne65108:0"
msgid "At least one of the Selling or Buying must be selected"
msgstr "crwdns104536:0crwdne104536:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "crwdns194944:0{0}crwdne194944:0"
@@ -6079,21 +6075,17 @@ msgstr "crwdns194944:0{0}crwdne194944:0"
msgid "At least one row is required for a financial report template"
msgstr "crwdns161052:0crwdne161052:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "crwdns104538:0crwdne104538:0"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "crwdns154854:0#{0}crwdnd154854:0{1}crwdne154854:0"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr "crwdns201841:0#{0}crwdne201841:0"
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "crwdns65110:0#{0}crwdnd65110:0{1}crwdnd65110:0{2}crwdne65110:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "crwdns154856:0#{0}crwdnd154856:0{1}crwdne154856:0"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr "crwdns201843:0#{0}crwdnd201843:0{1}crwdne201843:0"
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6175,11 +6167,11 @@ msgstr "crwdns132752:0crwdne132752:0"
msgid "Attribute Value"
msgstr "crwdns132754:0crwdne132754:0"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr "crwdns201747:0{0}crwdnd201747:0{1}crwdne201747:0"
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "crwdns65150:0crwdne65150:0"
@@ -6187,19 +6179,19 @@ msgstr "crwdns65150:0crwdne65150:0"
msgid "Attribute value: {0} must appear only once"
msgstr "crwdns65152:0{0}crwdne65152:0"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr "crwdns201749:0{0}crwdne201749:0"
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr "crwdns201751:0{0}crwdne201751:0"
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "crwdns65154:0{0}crwdne65154:0"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "crwdns65156:0crwdne65156:0"
@@ -6411,7 +6403,7 @@ msgstr "crwdns132802:0crwdne132802:0"
msgid "Auto re-order"
msgstr "crwdns132804:0crwdne132804:0"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "crwdns65254:0crwdne65254:0"
@@ -6523,7 +6515,7 @@ msgstr "crwdns65282:0crwdne65282:0"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "crwdns65284:0crwdne65284:0"
@@ -6612,10 +6604,6 @@ msgstr "crwdns195134:0crwdne195134:0"
msgid "Available for use date is required"
msgstr "crwdns65316:0crwdne65316:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "crwdns65318:0{0}crwdnd65318:0{1}crwdne65318:0"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "crwdns65320:0{0}crwdne65320:0"
@@ -6624,8 +6612,8 @@ msgstr "crwdns65320:0{0}crwdne65320:0"
msgid "Available-for-use Date should be after purchase date"
msgstr "crwdns65324:0crwdne65324:0"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "crwdns65326:0crwdne65326:0"
@@ -6649,7 +6637,9 @@ msgstr "crwdns164146:0crwdne164146:0"
msgid "Average Order Values"
msgstr "crwdns163924:0crwdne163924:0"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "crwdns65332:0crwdne65332:0"
@@ -6673,7 +6663,7 @@ msgid "Avg Rate"
msgstr "crwdns132848:0crwdne132848:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "crwdns65342:0crwdne65342:0"
@@ -6731,7 +6721,7 @@ msgstr "crwdns132856:0crwdne132856:0"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6754,7 +6744,7 @@ msgstr "crwdns65358:0crwdne65358:0"
msgid "BOM 1"
msgstr "crwdns65380:0crwdne65380:0"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "crwdns65382:0{0}crwdnd65382:0{1}crwdne65382:0"
@@ -6826,11 +6816,6 @@ msgstr "crwdns65410:0crwdne65410:0"
msgid "BOM ID"
msgstr "crwdns65412:0crwdne65412:0"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "crwdns132862:0crwdne132862:0"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6984,7 +6969,7 @@ msgstr "crwdns65480:0crwdne65480:0"
msgid "BOM Website Operation"
msgstr "crwdns65482:0crwdne65482:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "crwdns164148:0crwdne164148:0"
@@ -7052,7 +7037,7 @@ msgstr "crwdns65506:0crwdne65506:0"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "crwdns132876:0crwdne132876:0"
@@ -7116,7 +7101,7 @@ msgstr "crwdns132886:0crwdne132886:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "crwdns65526:0crwdne65526:0"
@@ -7181,7 +7166,7 @@ msgstr "crwdns161054:0crwdne161054:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "crwdns65544:0crwdne65544:0"
@@ -7337,8 +7322,8 @@ msgid "Bank Balance"
msgstr "crwdns132904:0crwdne132904:0"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "crwdns132906:0crwdne132906:0"
@@ -7453,8 +7438,8 @@ msgstr "crwdns132916:0crwdne132916:0"
msgid "Bank Name"
msgstr "crwdns132918:0crwdne132918:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "crwdns65658:0crwdne65658:0"
@@ -7627,11 +7612,11 @@ msgstr "crwdns65704:0crwdne65704:0"
msgid "Barcode Type"
msgstr "crwdns132922:0crwdne132922:0"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "crwdns65728:0{0}crwdnd65728:0{1}crwdne65728:0"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "crwdns65730:0{0}crwdnd65730:0{1}crwdne65730:0"
@@ -7788,7 +7773,7 @@ msgstr "crwdns132958:0crwdne132958:0"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7863,7 +7848,7 @@ msgstr "crwdns65808:0crwdne65808:0"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7952,13 +7937,13 @@ msgstr "crwdns160196:0{0}crwdne160196:0"
msgid "Batch Quantity"
msgstr "crwdns132972:0crwdne132972:0"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7975,7 +7960,7 @@ msgstr "crwdns132974:0crwdne132974:0"
msgid "Batch and Serial No"
msgstr "crwdns132976:0crwdne132976:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "crwdns65882:0crwdne65882:0"
@@ -7998,12 +7983,12 @@ msgstr "crwdns65884:0{0}crwdne65884:0"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "crwdns132978:0{0}crwdnd132978:0{1}crwdne132978:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "crwdns65886:0{0}crwdnd65886:0{1}crwdne65886:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "crwdns65888:0{0}crwdnd65888:0{1}crwdne65888:0"
@@ -8058,7 +8043,7 @@ msgstr "crwdns200955:0{0}crwdnd200955:0{1}crwdne200955:0"
#. 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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8067,7 +8052,7 @@ msgstr "crwdns65900:0crwdne65900:0"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8081,11 +8066,13 @@ msgstr "crwdns201759:0crwdne201759:0"
#. 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "crwdns65914:0crwdne65914:0"
@@ -8186,7 +8173,7 @@ msgstr "crwdns132994:0crwdne132994:0"
msgid "Billing Address Name"
msgstr "crwdns132996:0crwdne132996:0"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "crwdns154234:0{0}crwdne154234:0"
@@ -8438,6 +8425,16 @@ msgstr "crwdns66058:0crwdne66058:0"
msgid "Block Supplier"
msgstr "crwdns133030:0crwdne133030:0"
+#. 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 "crwdns201953:0crwdne201953:0"
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr "crwdns201955:0crwdne201955:0"
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8534,7 +8531,7 @@ msgstr "crwdns66100:0crwdne66100:0"
msgid "Booked Fixed Asset"
msgstr "crwdns133054:0crwdne133054:0"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "crwdns66108:0{0}crwdne66108:0"
@@ -8793,8 +8790,8 @@ msgstr "crwdns66212:0crwdne66212:0"
msgid "Buildable Qty"
msgstr "crwdns66214:0crwdne66214:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "crwdns66216:0crwdne66216:0"
@@ -8955,16 +8952,16 @@ msgstr "crwdns66266:0crwdne66266:0"
msgid "By-Product"
msgstr "crwdns198308:0crwdne198308:0"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "crwdns133086:0crwdne133086:0"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "crwdns66272:0crwdne66272:0"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr "crwdns201957:0crwdne201957:0"
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9012,8 +9009,8 @@ msgstr "crwdns66286:0crwdne66286:0"
msgid "CRM Settings"
msgstr "crwdns66288:0crwdne66288:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "crwdns66298:0crwdne66298:0"
@@ -9268,7 +9265,7 @@ msgstr "crwdns195764:0{0}crwdne195764:0"
msgid "Can be approved by {0}"
msgstr "crwdns66390:0{0}crwdne66390:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "crwdns66392:0{0}crwdne66392:0"
@@ -9301,13 +9298,13 @@ msgstr "crwdns66404:0crwdne66404:0"
msgid "Can only make payment against unbilled {0}"
msgstr "crwdns66406:0{0}crwdne66406:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "crwdns66408:0crwdne66408:0"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "crwdns66410:0crwdne66410:0"
@@ -9349,7 +9346,7 @@ msgstr "crwdns155620:0crwdne155620:0"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "crwdns66520:0crwdne66520:0"
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "crwdns160598:0crwdne160598:0"
@@ -9357,9 +9354,9 @@ msgstr "crwdns160598:0crwdne160598:0"
msgid "Cannot Create Return"
msgstr "crwdns154636:0crwdne154636:0"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "crwdns66522:0crwdne66522:0"
@@ -9387,7 +9384,7 @@ msgstr "crwdns66530:0{0}crwdnd66530:0{1}crwdne66530:0"
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "crwdns66532:0crwdne66532:0"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "crwdns66534:0crwdne66534:0"
@@ -9407,7 +9404,7 @@ msgstr "crwdns160650:0{0}crwdnd160650:0{1}crwdne160650:0"
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "crwdns66538:0crwdne66538:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "crwdns66540:0{0}crwdne66540:0"
@@ -9427,15 +9424,15 @@ msgstr "crwdns164154:0{0}crwdne164154:0"
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "crwdns154236:0{asset_link}crwdne154236:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "crwdns66546:0crwdne66546:0"
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "crwdns66548:0crwdne66548:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "crwdns66552:0crwdne66552:0"
@@ -9443,11 +9440,11 @@ msgstr "crwdns66552:0crwdne66552:0"
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "crwdns66554:0{0}crwdne66554:0"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "crwdns66556:0crwdne66556:0"
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "crwdns66558:0crwdne66558:0"
@@ -9463,11 +9460,11 @@ msgstr "crwdns66562:0crwdne66562:0"
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "crwdns66564:0{0}crwdne66564:0"
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "crwdns66566:0crwdne66566:0"
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "crwdns66568:0crwdne66568:0"
@@ -9475,7 +9472,7 @@ msgstr "crwdns66568:0crwdne66568:0"
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "crwdns66570:0crwdne66570:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "crwdns66574:0{0}crwdne66574:0"
@@ -9501,7 +9498,7 @@ msgstr "crwdns66580:0crwdne66580:0"
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "crwdns66582:0crwdne66582:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "crwdns151892:0crwdne151892:0"
@@ -9509,12 +9506,12 @@ msgstr "crwdns151892:0crwdne151892:0"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "crwdns66584:0{0}crwdne66584:0"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "crwdns163928:0crwdne163928:0"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "crwdns194948:0{0}crwdne194948:0"
@@ -9526,7 +9523,7 @@ msgstr "crwdns194950:0{0}crwdne194950:0"
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "crwdns197102:0crwdne197102:0"
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "crwdns160600:0{0}crwdne160600:0"
@@ -9534,20 +9531,20 @@ msgstr "crwdns160600:0{0}crwdne160600:0"
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "crwdns199136:0{0}crwdne199136:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "crwdns155788:0crwdne155788:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr "crwdns200028:0{0}crwdnd200028:0{1}crwdnd200028:0{2}crwdne200028:0"
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "crwdns160602:0{0}crwdne160602:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "crwdns66586:0{0}crwdne66586:0"
@@ -9563,7 +9560,7 @@ msgstr "crwdns158330:0crwdne158330:0"
msgid "Cannot find Item with this Barcode"
msgstr "crwdns66588:0crwdne66588:0"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "crwdns143360:0{0}crwdne143360:0"
@@ -9571,15 +9568,15 @@ msgstr "crwdns143360:0{0}crwdne143360:0"
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "crwdns164156:0{0}crwdnd164156:0{1}crwdnd164156:0{2}crwdnd164156:0{3}crwdne164156:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "crwdns194952:0{0}crwdnd194952:0{1}crwdnd194952:0{2}crwdne194952:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "crwdns66596:0{0}crwdne66596:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "crwdns66598:0{0}crwdnd66598:0{1}crwdne66598:0"
@@ -9587,12 +9584,12 @@ msgstr "crwdns66598:0{0}crwdnd66598:0{1}crwdne66598:0"
msgid "Cannot receive from customer against negative outstanding"
msgstr "crwdns66600:0crwdne66600:0"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "crwdns163930:0crwdne163930:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "crwdns66602:0crwdne66602:0"
@@ -9605,14 +9602,14 @@ msgstr "crwdns66604:0crwdne66604:0"
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "crwdns66606:0crwdne66606:0"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "crwdns200010:0crwdne200010:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9626,7 +9623,7 @@ msgstr "crwdns66610:0crwdne66610:0"
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "crwdns66612:0{0}crwdne66612:0"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "crwdns66614:0crwdne66614:0"
@@ -9634,11 +9631,11 @@ msgstr "crwdns66614:0crwdne66614:0"
msgid "Cannot set multiple account rows for the same company"
msgstr "crwdns195832:0crwdne195832:0"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "crwdns200965:0crwdne200965:0"
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "crwdns200967:0crwdne200967:0"
@@ -9650,7 +9647,7 @@ msgstr "crwdns66620:0{0}crwdne66620:0"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "crwdns194954:0{0}crwdne194954:0"
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "crwdns197106:0{0}crwdne197106:0"
@@ -9683,7 +9680,7 @@ msgstr "crwdns66626:0crwdne66626:0"
msgid "Capacity Planning"
msgstr "crwdns133134:0crwdne133134:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "crwdns66630:0crwdne66630:0"
@@ -9702,13 +9699,13 @@ msgstr "crwdns133138:0crwdne133138:0"
msgid "Capacity must be greater than 0"
msgstr "crwdns66636:0crwdne66636:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "crwdns104544:0crwdne104544:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "crwdns66640:0crwdne66640:0"
@@ -9925,7 +9922,7 @@ msgstr "crwdns133166:0crwdne133166:0"
msgid "Category-wise Asset Value"
msgstr "crwdns66722:0crwdne66722:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "crwdns66724:0crwdne66724:0"
@@ -10030,7 +10027,7 @@ msgstr "crwdns66746:0crwdne66746:0"
msgid "Change in Stock Value"
msgstr "crwdns66748:0crwdne66748:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "crwdns66754:0crwdne66754:0"
@@ -10040,7 +10037,7 @@ msgstr "crwdns66754:0crwdne66754:0"
msgid "Change this date manually to setup the next synchronization start date"
msgstr "crwdns133184:0crwdne133184:0"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "crwdns66758:0crwdne66758:0"
@@ -10048,7 +10045,7 @@ msgstr "crwdns66758:0crwdne66758:0"
msgid "Changes in {0}"
msgstr "crwdns111644:0{0}crwdne111644:0"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "crwdns66762:0crwdne66762:0"
@@ -10063,7 +10060,7 @@ msgid "Channel Partner"
msgstr "crwdns133188:0crwdne133188:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "crwdns66766:0{0}crwdne66766:0"
@@ -10117,7 +10114,7 @@ msgstr "crwdns133198:0crwdne133198:0"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10260,7 +10257,7 @@ msgstr "crwdns133228:0crwdne133228:0"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "crwdns66844:0crwdne66844:0"
@@ -10318,7 +10315,7 @@ msgstr "crwdns133230:0crwdne133230:0"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "crwdns152086:0crwdne152086:0"
@@ -10370,6 +10367,11 @@ msgstr "crwdns111652:0crwdne111652:0"
msgid "Classify As"
msgstr "crwdns200973:0crwdne200973:0"
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr "crwdns201959:0crwdne201959:0"
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10512,11 +10514,11 @@ msgstr "crwdns66960:0crwdne66960:0"
msgid "Closed Documents"
msgstr "crwdns133254:0crwdne133254:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "crwdns66964:0crwdne66964:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "crwdns66966:0crwdne66966:0"
@@ -10768,11 +10770,17 @@ msgstr "crwdns67064:0crwdne67064:0"
msgid "Commission Rate (%)"
msgstr "crwdns133284:0crwdne133284:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "crwdns67072:0crwdne67072:0"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr "crwdns201961:0crwdne201961:0"
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10803,7 +10811,7 @@ msgstr "crwdns67082:0crwdne67082:0"
msgid "Communication Medium Type"
msgstr "crwdns133290:0crwdne133290:0"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "crwdns67086:0crwdne67086:0"
@@ -11202,8 +11210,8 @@ msgstr "crwdns133292:0crwdne133292:0"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11256,7 +11264,7 @@ msgstr "crwdns133292:0crwdne133292:0"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11345,18 +11353,20 @@ msgstr "crwdns133298:0crwdne133298:0"
msgid "Company Address Name"
msgstr "crwdns133300:0crwdne133300:0"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager."
msgstr "crwdns200188:0crwdne200188:0"
-#: erpnext/controllers/accounts_controller.py:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "crwdns160284:0crwdne160284:0"
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "crwdns133302:0crwdne133302:0"
@@ -11452,7 +11462,7 @@ msgstr "crwdns67420:0crwdne67420:0"
msgid "Company and account filters not set!"
msgstr "crwdns199142:0crwdne199142:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "crwdns67422:0crwdne67422:0"
@@ -11487,7 +11497,7 @@ msgstr "crwdns201001:0crwdne201001:0"
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "crwdns194966:0crwdne194966:0"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "crwdns67430:0crwdne67430:0"
@@ -11526,12 +11536,12 @@ msgstr "crwdns133328:0crwdne133328:0"
msgid "Company {0} added multiple times"
msgstr "crwdns154238:0{0}crwdne154238:0"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "crwdns67444:0{0}crwdne67444:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "crwdns67446:0{0}crwdne67446:0"
@@ -11573,7 +11583,7 @@ msgstr "crwdns133330:0crwdne133330:0"
msgid "Competitors"
msgstr "crwdns67462:0crwdne67462:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "crwdns67474:0crwdne67474:0"
@@ -11620,12 +11630,12 @@ msgstr "crwdns163934:0crwdne163934:0"
msgid "Completed Qty"
msgstr "crwdns133336:0crwdne133336:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "crwdns67562:0crwdne67562:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "crwdns67564:0crwdne67564:0"
@@ -11814,7 +11824,7 @@ msgstr "crwdns67658:0crwdne67658:0"
msgid "Consider Minimum Order Qty"
msgstr "crwdns133366:0crwdne133366:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "crwdns156056:0crwdne156056:0"
@@ -12008,7 +12018,7 @@ msgstr "crwdns154864:0crwdne154864:0"
msgid "Consumed Qty"
msgstr "crwdns67708:0crwdne67708:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "crwdns152336:0{0}crwdne152336:0"
@@ -12037,7 +12047,7 @@ msgstr "crwdns142936:0crwdne142936:0"
msgid "Consumed Stock Total Value"
msgstr "crwdns133398:0crwdne133398:0"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "crwdns161994:0{0}crwdne161994:0"
@@ -12165,7 +12175,7 @@ msgstr "crwdns133422:0crwdne133422:0"
msgid "Contact Person"
msgstr "crwdns133424:0crwdne133424:0"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "crwdns154240:0{0}crwdne154240:0"
@@ -12291,6 +12301,11 @@ msgstr "crwdns133450:0crwdne133450:0"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr "crwdns200524:0crwdne200524:0"
+#. 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 "crwdns201963:0crwdne201963:0"
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12351,7 +12366,7 @@ msgstr "crwdns67944:0crwdne67944:0"
msgid "Conversion Rate"
msgstr "crwdns67978:0crwdne67978:0"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "crwdns67986:0{0}crwdne67986:0"
@@ -12359,15 +12374,15 @@ msgstr "crwdns67986:0{0}crwdne67986:0"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "crwdns149164:0{0}crwdnd149164:0{1}crwdnd149164:0{2}crwdne149164:0"
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "crwdns154377:0crwdne154377:0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "crwdns154379:0crwdne154379:0"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "crwdns154381:0crwdne154381:0"
@@ -12444,13 +12459,13 @@ msgstr "crwdns133458:0crwdne133458:0"
msgid "Corrective Action"
msgstr "crwdns133460:0crwdne133460:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "crwdns68018:0crwdne68018:0"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "crwdns68020:0crwdne68020:0"
@@ -12617,7 +12632,7 @@ msgstr "crwdns200526:0crwdne200526:0"
#: 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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12750,7 +12765,7 @@ msgstr "crwdns68178:0crwdne68178:0"
msgid "Cost Center: {0} does not exist"
msgstr "crwdns68180:0{0}crwdne68180:0"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "crwdns68182:0crwdne68182:0"
@@ -12793,17 +12808,13 @@ msgstr "crwdns68192:0crwdne68192:0"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "crwdns68194:0crwdne68194:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "crwdns154866:0crwdne154866:0"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "crwdns68198:0crwdne68198:0"
@@ -12883,7 +12894,7 @@ msgstr "crwdns68232:0crwdne68232:0"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "crwdns68234:0crwdne68234:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "crwdns68238:0crwdne68238:0"
@@ -13072,7 +13083,7 @@ msgstr "crwdns68320:0crwdne68320:0"
msgid "Create Item"
msgstr "crwdns197128:0crwdne197128:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "crwdns68322:0crwdne68322:0"
@@ -13104,7 +13115,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "crwdns133506:0crwdne133506:0"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "crwdns68334:0crwdne68334:0"
@@ -13171,7 +13182,7 @@ msgstr "crwdns155628:0crwdne155628:0"
msgid "Create Payment Request"
msgstr "crwdns197134:0crwdne197134:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "crwdns68354:0crwdne68354:0"
@@ -13316,7 +13327,7 @@ msgstr "crwdns197158:0crwdne197158:0"
msgid "Create Tasks"
msgstr "crwdns197160:0crwdne197160:0"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "crwdns68386:0crwdne68386:0"
@@ -13354,12 +13365,12 @@ msgstr "crwdns133512:0crwdne133512:0"
msgid "Create Users"
msgstr "crwdns68396:0crwdne68396:0"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "crwdns68398:0crwdne68398:0"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "crwdns68400:0crwdne68400:0"
@@ -13390,12 +13401,12 @@ msgstr "crwdns201031:0crwdne201031:0"
msgid "Create a new rule to automatically classify transactions."
msgstr "crwdns201033:0crwdne201033:0"
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "crwdns142938:0crwdne142938:0"
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "crwdns68438:0crwdne68438:0"
@@ -13429,7 +13440,7 @@ msgstr "crwdns68456:0{0}crwdnd68456:0{1}crwdne68456:0"
msgid "Created By Migration"
msgstr "crwdns164164:0crwdne164164:0"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "crwdns68460:0{0}crwdnd68460:0{1}crwdne68460:0"
@@ -13462,7 +13473,7 @@ msgstr "crwdns68466:0crwdne68466:0"
msgid "Creating Delivery Schedule..."
msgstr "crwdns159804:0crwdne159804:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "crwdns68468:0crwdne68468:0"
@@ -13655,7 +13666,7 @@ msgstr "crwdns133528:0crwdne133528:0"
msgid "Credit Limit"
msgstr "crwdns68532:0crwdne68532:0"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "crwdns68544:0crwdne68544:0"
@@ -13665,12 +13676,6 @@ msgstr "crwdns68544:0crwdne68544:0"
msgid "Credit Limit Settings"
msgstr "crwdns133530:0crwdne133530:0"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "crwdns133532:0crwdne133532:0"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "crwdns148604:0crwdne148604:0"
@@ -13702,7 +13707,7 @@ msgstr "crwdns133536:0crwdne133536:0"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13730,7 +13735,7 @@ msgstr "crwdns68568:0crwdne68568:0"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "crwdns152202:0crwdne152202:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "crwdns68574:0{0}crwdne68574:0"
@@ -13738,7 +13743,7 @@ msgstr "crwdns68574:0{0}crwdne68574:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "crwdns133540:0crwdne133540:0"
@@ -13747,20 +13752,20 @@ msgstr "crwdns133540:0crwdne133540:0"
msgid "Credit in Company Currency"
msgstr "crwdns133542:0crwdne133542:0"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "crwdns68580:0{0}crwdnd68580:0{1}crwdnd68580:0{2}crwdne68580:0"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "crwdns68582:0{0}crwdne68582:0"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "crwdns68584:0{0}crwdne68584:0"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr "crwdns201035:0{0}crwdne201035:0"
@@ -13768,8 +13773,8 @@ msgstr "crwdns201035:0{0}crwdne201035:0"
msgid "Creditor Turnover Ratio"
msgstr "crwdns160066:0crwdne160066:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "crwdns68586:0crwdne68586:0"
@@ -13939,7 +13944,7 @@ msgstr "crwdns68688:0crwdne68688:0"
msgid "Currency and Price List"
msgstr "crwdns133558:0crwdne133558:0"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "crwdns68708:0crwdne68708:0"
@@ -13949,7 +13954,7 @@ msgstr "crwdns161070:0crwdne161070:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "crwdns68710:0{0}crwdnd68710:0{1}crwdne68710:0"
@@ -14032,8 +14037,8 @@ msgstr "crwdns133578:0crwdne133578:0"
msgid "Current Level"
msgstr "crwdns133580:0crwdne133580:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "crwdns68748:0crwdne68748:0"
@@ -14100,6 +14105,11 @@ msgstr "crwdns68766:0crwdne68766:0"
msgid "Current Valuation Rate"
msgstr "crwdns133594:0crwdne133594:0"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr "crwdns201965:0crwdne201965:0"
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "crwdns133596:0crwdne133596:0"
@@ -14195,7 +14205,6 @@ msgstr "crwdns142924:0crwdne142924:0"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14302,7 +14311,6 @@ msgstr "crwdns142924:0crwdne142924:0"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14391,8 +14399,8 @@ msgstr "crwdns133614:0crwdne133614:0"
msgid "Customer Addresses And Contacts"
msgstr "crwdns68902:0crwdne68902:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "crwdns161076:0crwdne161076:0"
@@ -14406,7 +14414,7 @@ msgstr "crwdns133616:0crwdne133616:0"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14489,6 +14497,7 @@ msgstr "crwdns133624:0crwdne133624:0"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14511,7 +14520,7 @@ msgstr "crwdns133624:0crwdne133624:0"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14528,6 +14537,7 @@ msgstr "crwdns133624:0crwdne133624:0"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14571,7 +14581,7 @@ msgstr "crwdns68988:0crwdne68988:0"
msgid "Customer Items"
msgstr "crwdns133630:0crwdne133630:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "crwdns68992:0crwdne68992:0"
@@ -14623,7 +14633,7 @@ msgstr "crwdns133632:0crwdne133632:0"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14729,7 +14739,7 @@ msgstr "crwdns133646:0crwdne133646:0"
msgid "Customer Provided Item Cost"
msgstr "crwdns160292:0crwdne160292:0"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "crwdns69066:0crwdne69066:0"
@@ -14786,9 +14796,9 @@ msgstr "crwdns133654:0crwdne133654:0"
msgid "Customer required for 'Customerwise Discount'"
msgstr "crwdns69084:0crwdne69084:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "crwdns69086:0{0}crwdnd69086:0{1}crwdne69086:0"
@@ -14900,7 +14910,7 @@ msgstr "crwdns69136:0crwdne69136:0"
msgid "DFS"
msgstr "crwdns133668:0crwdne133668:0"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "crwdns69160:0{0}crwdne69160:0"
@@ -14991,7 +15001,7 @@ msgstr "crwdns69256:0crwdne69256:0"
msgid "Date of Commencement"
msgstr "crwdns133684:0crwdne133684:0"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "crwdns69260:0crwdne69260:0"
@@ -15217,7 +15227,7 @@ msgstr "crwdns133722:0crwdne133722:0"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15245,13 +15255,13 @@ msgstr "crwdns152206:0crwdne152206:0"
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "crwdns133728:0crwdne133728:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "crwdns69352:0crwdne69352:0"
@@ -15379,8 +15389,7 @@ msgstr "crwdns133750:0crwdne133750:0"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15406,14 +15415,14 @@ msgstr "crwdns133754:0crwdne133754:0"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "crwdns133756:0crwdne133756:0"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "crwdns133758:0crwdne133758:0"
@@ -15428,19 +15437,19 @@ msgstr "crwdns164172:0crwdne164172:0"
msgid "Default BOM"
msgstr "crwdns133760:0crwdne133760:0"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "crwdns69414:0{0}crwdne69414:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "crwdns69416:0{0}crwdne69416:0"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "crwdns69418:0{0}crwdne69418:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "crwdns69420:0{0}crwdnd69420:0{1}crwdne69420:0"
@@ -15493,9 +15502,7 @@ msgid "Default Company"
msgstr "crwdns133774:0crwdne133774:0"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "crwdns133776:0crwdne133776:0"
@@ -15611,6 +15618,16 @@ msgstr "crwdns133812:0crwdne133812:0"
msgid "Default Item Manufacturer"
msgstr "crwdns133814:0crwdne133814:0"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr "crwdns201845:0crwdne201845:0"
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr "crwdns201847:0crwdne201847:0"
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15646,23 +15663,19 @@ msgid "Default Payment Request Message"
msgstr "crwdns133828:0crwdne133828:0"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "crwdns133830:0crwdne133830:0"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15785,15 +15798,15 @@ msgstr "crwdns133868:0crwdne133868:0"
msgid "Default Unit of Measure"
msgstr "crwdns133872:0crwdne133872:0"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "crwdns69574:0{0}crwdne69574:0"
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "crwdns69576:0{0}crwdne69576:0"
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "crwdns69578:0{0}crwdnd69578:0{1}crwdne69578:0"
@@ -15845,7 +15858,7 @@ msgstr "crwdns200754:0crwdne200754:0"
msgid "Default settings for your stock-related transactions"
msgstr "crwdns111684:0crwdne111684:0"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "crwdns69606:0crwdne69606:0"
@@ -15936,6 +15949,12 @@ msgstr "crwdns69652:0crwdne69652:0"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "crwdns199550:0crwdne199550:0"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr "crwdns201967:0crwdne201967:0"
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16018,12 +16037,12 @@ msgstr "crwdns133916:0crwdne133916:0"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "crwdns69680:0crwdne69680:0"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "crwdns69682:0crwdne69682:0"
@@ -16044,8 +16063,8 @@ msgstr "crwdns201045:0crwdne201045:0"
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "crwdns151674:0{0}crwdne151674:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "crwdns111692:0crwdne111692:0"
@@ -16156,11 +16175,11 @@ msgstr "crwdns69706:0crwdne69706:0"
msgid "Delivered Qty (in Stock UOM)"
msgstr "crwdns155462:0crwdne155462:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr "crwdns201049:0{0}crwdnd201049:0{1}crwdne201049:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr "crwdns201051:0{0}crwdnd201051:0{1}crwdne201051:0"
@@ -16241,7 +16260,7 @@ msgstr "crwdns69736:0crwdne69736:0"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16301,11 +16320,11 @@ msgstr "crwdns133926:0crwdne133926:0"
msgid "Delivery Note Trends"
msgstr "crwdns69774:0crwdne69774:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "crwdns69776:0{0}crwdne69776:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "crwdns69780:0crwdne69780:0"
@@ -16391,10 +16410,6 @@ msgstr "crwdns133932:0crwdne133932:0"
msgid "Delivery to"
msgstr "crwdns133934:0crwdne133934:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "crwdns69808:0{0}crwdne69808:0"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16514,8 +16529,8 @@ msgstr "crwdns69862:0crwdne69862:0"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16608,7 +16623,7 @@ msgstr "crwdns133960:0crwdne133960:0"
msgid "Depreciation Posting Date"
msgstr "crwdns133962:0crwdne133962:0"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "crwdns142940:0crwdne142940:0"
@@ -16766,15 +16781,15 @@ msgstr "crwdns133972:0crwdne133972:0"
msgid "Difference Account"
msgstr "crwdns70148:0crwdne70148:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "crwdns154878:0crwdne154878:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "crwdns154766:0crwdne154766:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "crwdns70160:0crwdne70160:0"
@@ -16886,15 +16901,15 @@ msgstr "crwdns151126:0crwdne151126:0"
msgid "Direct Expense"
msgstr "crwdns133986:0crwdne133986:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "crwdns70206:0crwdne70206:0"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "crwdns70208:0crwdne70208:0"
@@ -16975,6 +16990,11 @@ msgstr "crwdns133996:0crwdne133996:0"
msgid "Disable Serial No And Batch Selector"
msgstr "crwdns133998:0crwdne133998:0"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr "crwdns201849:0crwdne201849:0"
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17011,11 +17031,11 @@ msgstr "crwdns70304:0{0}crwdne70304:0"
msgid "Disabled items cannot be selected in any transaction."
msgstr "crwdns200756:0crwdne200756:0"
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "crwdns70306:0crwdne70306:0"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "crwdns70308:0crwdne70308:0"
@@ -17031,7 +17051,7 @@ msgstr "crwdns134000:0crwdne134000:0"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17039,15 +17059,15 @@ msgstr "crwdns134000:0crwdne134000:0"
msgid "Disassemble"
msgstr "crwdns148608:0crwdne148608:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "crwdns148862:0crwdne148862:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "crwdns200030:0crwdne200030:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "crwdns163862:0crwdne163862:0"
@@ -17334,7 +17354,7 @@ msgstr "crwdns148774:0crwdne148774:0"
msgid "Dislikes"
msgstr "crwdns70438:0crwdne70438:0"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "crwdns70442:0crwdne70442:0"
@@ -17415,7 +17435,7 @@ msgstr "crwdns161084:0crwdne161084:0"
msgid "Disposal Date"
msgstr "crwdns134046:0crwdne134046:0"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "crwdns155150:0{0}crwdnd155150:0{1}crwdnd155150:0{2}crwdne155150:0"
@@ -17529,8 +17549,8 @@ msgstr "crwdns134064:0crwdne134064:0"
msgid "Distributor"
msgstr "crwdns70488:0crwdne70488:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "crwdns70490:0crwdne70490:0"
@@ -17592,7 +17612,7 @@ msgstr "crwdns134072:0crwdne134072:0"
msgid "Do not update variants on save"
msgstr "crwdns134074:0crwdne134074:0"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "crwdns70506:0crwdne70506:0"
@@ -17616,7 +17636,7 @@ msgstr "crwdns70510:0crwdne70510:0"
msgid "Do you want to submit the material request"
msgstr "crwdns70512:0crwdne70512:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "crwdns156060:0crwdne156060:0"
@@ -17683,11 +17703,11 @@ msgstr "crwdns195840:0crwdne195840:0"
msgid "Document Type "
msgstr "crwdns134082:0crwdne134082:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "crwdns70546:0crwdne70546:0"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "crwdns201767:0crwdne201767:0"
@@ -17850,12 +17870,6 @@ msgstr "crwdns134116:0crwdne134116:0"
msgid "Driving License Category"
msgstr "crwdns70700:0crwdne70700:0"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "crwdns155914:0crwdne155914:0"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17876,12 +17890,6 @@ msgstr "crwdns201073:0crwdne201073:0"
msgid "Drop some files here, or click to select files"
msgstr "crwdns201075:0crwdne201075:0"
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "crwdns155916:0crwdne155916:0"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "crwdns152150:0{0}crwdne152150:0"
@@ -18040,8 +18048,8 @@ msgstr "crwdns134132:0crwdne134132:0"
msgid "Duration in Days"
msgstr "crwdns70804:0crwdne70804:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "crwdns70806:0crwdne70806:0"
@@ -18124,7 +18132,7 @@ msgstr "crwdns200760:0crwdne200760:0"
msgid "Each Transaction"
msgstr "crwdns134146:0crwdne134146:0"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "crwdns70824:0crwdne70824:0"
@@ -18238,6 +18246,10 @@ msgstr "crwdns70872:0crwdne70872:0"
msgid "Either target qty or target amount is mandatory."
msgstr "crwdns70874:0crwdne70874:0"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "crwdns201851:0crwdne201851:0"
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18257,8 +18269,8 @@ msgstr "crwdns158394:0crwdne158394:0"
msgid "Electricity down"
msgstr "crwdns134160:0crwdne134160:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "crwdns104558:0crwdne104558:0"
@@ -18462,8 +18474,8 @@ msgstr "crwdns134190:0crwdne134190:0"
msgid "Employee Advances"
msgstr "crwdns71018:0crwdne71018:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "crwdns161086:0crwdne161086:0"
@@ -18546,7 +18558,7 @@ msgstr "crwdns199560:0{0}crwdne199560:0"
msgid "Employee {0} does not belong to the company {1}"
msgstr "crwdns159256:0{0}crwdnd159256:0{1}crwdne159256:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "crwdns152577:0{0}crwdne152577:0"
@@ -18562,7 +18574,7 @@ msgstr "crwdns134198:0crwdne134198:0"
msgid "Empty"
msgstr "crwdns71054:0crwdne71054:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "crwdns194990:0crwdne194990:0"
@@ -18593,7 +18605,7 @@ msgstr "crwdns134200:0crwdne134200:0"
msgid "Enable Auto Email"
msgstr "crwdns134202:0crwdne134202:0"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "crwdns71062:0crwdne71062:0"
@@ -18759,12 +18771,6 @@ msgstr "crwdns200536:0crwdne200536:0"
msgid "Enable discount accounting for selling"
msgstr "crwdns200538:0crwdne200538:0"
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr "crwdns200762:0crwdne200762:0"
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18893,8 +18899,8 @@ msgstr "crwdns71142:0crwdne71142:0"
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18993,8 +18999,8 @@ msgstr "crwdns149088:0crwdne149088:0"
msgid "Enter Serial Nos"
msgstr "crwdns104560:0crwdne104560:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "crwdns71176:0crwdne71176:0"
@@ -19019,7 +19025,7 @@ msgstr "crwdns71184:0crwdne71184:0"
msgid "Enter amount to be redeemed."
msgstr "crwdns71186:0crwdne71186:0"
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "crwdns71188:0crwdne71188:0"
@@ -19031,7 +19037,7 @@ msgstr "crwdns71190:0crwdne71190:0"
msgid "Enter customer's phone number"
msgstr "crwdns71192:0crwdne71192:0"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "crwdns148778:0crwdne148778:0"
@@ -19074,7 +19080,7 @@ msgstr "crwdns104566:0crwdne104566:0"
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "crwdns104568:0crwdne104568:0"
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "crwdns71208:0crwdne71208:0"
@@ -19082,7 +19088,7 @@ msgstr "crwdns71208:0crwdne71208:0"
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "crwdns71210:0crwdne71210:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "crwdns71212:0crwdne71212:0"
@@ -19094,8 +19100,8 @@ msgstr "crwdns71214:0{0}crwdne71214:0"
msgid "Entertainment & Leisure"
msgstr "crwdns143416:0crwdne143416:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "crwdns71216:0crwdne71216:0"
@@ -19119,8 +19125,8 @@ msgstr "crwdns134260:0crwdne134260:0"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19181,7 +19187,7 @@ msgstr "crwdns71268:0crwdne71268:0"
msgid "Error while processing deferred accounting for {0}"
msgstr "crwdns71270:0{0}crwdne71270:0"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "crwdns71272:0crwdne71272:0"
@@ -19191,7 +19197,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr "crwdns154884:0{0}crwdnd154884:0{1}crwdne154884:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "crwdns71274:0{0}crwdne71274:0"
@@ -19237,7 +19243,7 @@ msgstr "crwdns143418:0crwdne143418:0"
msgid "Example URL"
msgstr "crwdns134280:0crwdne134280:0"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "crwdns71292:0{0}crwdne71292:0"
@@ -19256,7 +19262,7 @@ msgstr "crwdns134284:0crwdne134284:0"
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr "crwdns201093:0crwdne201093:0"
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "crwdns71298:0{0}crwdnd71298:0{1}crwdne71298:0"
@@ -19266,7 +19272,7 @@ msgstr "crwdns71298:0{0}crwdnd71298:0{1}crwdne71298:0"
msgid "Exception Budget Approver Role"
msgstr "crwdns134286:0crwdne134286:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "crwdns200032:0crwdne200032:0"
@@ -19274,7 +19280,7 @@ msgstr "crwdns200032:0crwdne200032:0"
msgid "Excess Materials Consumed"
msgstr "crwdns71302:0crwdne71302:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "crwdns71304:0crwdne71304:0"
@@ -19305,17 +19311,17 @@ msgstr "crwdns134292:0crwdne134292:0"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "crwdns71312:0crwdne71312:0"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "crwdns71320:0{0}crwdne71320:0"
@@ -19454,7 +19460,7 @@ msgstr "crwdns143420:0crwdne143420:0"
msgid "Executive Search"
msgstr "crwdns143422:0crwdne143422:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "crwdns71390:0crwdne71390:0"
@@ -19541,7 +19547,7 @@ msgstr "crwdns134314:0crwdne134314:0"
msgid "Expected Delivery Date"
msgstr "crwdns71412:0crwdne71412:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "crwdns71422:0crwdne71422:0"
@@ -19625,7 +19631,7 @@ msgstr "crwdns134320:0crwdne134320:0"
msgid "Expense"
msgstr "crwdns71456:0crwdne71456:0"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "crwdns71466:0{0}crwdne71466:0"
@@ -19703,23 +19709,23 @@ msgstr "crwdns71504:0{0}crwdne71504:0"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr "crwdns200774:0crwdne200774:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "crwdns71506:0crwdne71506:0"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "crwdns71508:0crwdne71508:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "crwdns71512:0crwdne71512:0"
@@ -19798,7 +19804,7 @@ msgstr "crwdns134334:0crwdne134334:0"
msgid "Extra Consumed Qty"
msgstr "crwdns71556:0crwdne71556:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "crwdns71558:0crwdne71558:0"
@@ -19935,7 +19941,7 @@ msgstr "crwdns71638:0crwdne71638:0"
msgid "Failed to setup defaults"
msgstr "crwdns71640:0crwdne71640:0"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "crwdns71642:0{0}crwdne71642:0"
@@ -20053,6 +20059,11 @@ msgstr "crwdns134356:0crwdne134356:0"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "crwdns71686:0crwdne71686:0"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr "crwdns201969:0crwdne201969:0"
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "crwdns154185:0{0}crwdne154185:0"
@@ -20090,21 +20101,29 @@ msgstr "crwdns134360:0crwdne134360:0"
msgid "Field in Bank Transaction"
msgstr "crwdns134364:0crwdne134364:0"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "crwdns201853:0crwdne201853:0"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr "crwdns201855:0{0}crwdnd201855:0{1}crwdne201855:0"
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "crwdns134370:0crwdne134370:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "crwdns194996:0crwdne194996:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "crwdns194998:0crwdne194998:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "crwdns195000:0crwdne195000:0"
@@ -20312,9 +20331,9 @@ msgstr "crwdns71790:0crwdne71790:0"
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 "crwdns134400:0crwdne134400:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "crwdns71794:0crwdne71794:0"
@@ -20371,15 +20390,15 @@ msgstr "crwdns71814:0crwdne71814:0"
msgid "Finished Good Item Quantity"
msgstr "crwdns134404:0crwdne134404:0"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "crwdns71818:0{0}crwdne71818:0"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "crwdns71820:0{0}crwdne71820:0"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "crwdns71822:0{0}crwdne71822:0"
@@ -20425,7 +20444,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "crwdns71838:0{0}crwdne71838:0"
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "crwdns71840:0crwdne71840:0"
@@ -20466,7 +20485,7 @@ msgstr "crwdns71842:0crwdne71842:0"
msgid "Finished Goods based Operating Cost"
msgstr "crwdns134426:0crwdne134426:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "crwdns71844:0{0}crwdnd71844:0{1}crwdne71844:0"
@@ -20607,6 +20626,7 @@ msgstr "crwdns134436:0crwdne134436:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "crwdns71904:0crwdne71904:0"
@@ -20625,7 +20645,7 @@ msgstr "crwdns134438:0crwdne134438:0"
msgid "Fixed Asset Defaults"
msgstr "crwdns134440:0crwdne134440:0"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "crwdns71914:0crwdne71914:0"
@@ -20644,8 +20664,8 @@ msgstr "crwdns160074:0crwdne160074:0"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "crwdns157462:0{0}crwdne157462:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "crwdns71918:0crwdne71918:0"
@@ -20718,7 +20738,7 @@ msgstr "crwdns134456:0crwdne134456:0"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "crwdns71938:0crwdne71938:0"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "crwdns71940:0crwdne71940:0"
@@ -20775,7 +20795,7 @@ msgstr "crwdns134460:0crwdne134460:0"
msgid "For Item"
msgstr "crwdns111740:0crwdne111740:0"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "crwdns104576:0{0}crwdnd104576:0{1}crwdnd104576:0{2}crwdnd104576:0{3}crwdne104576:0"
@@ -20785,7 +20805,7 @@ msgid "For Job Card"
msgstr "crwdns134462:0crwdne134462:0"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "crwdns71958:0crwdne71958:0"
@@ -20806,17 +20826,13 @@ msgstr "crwdns134464:0crwdne134464:0"
msgid "For Production"
msgstr "crwdns134466:0crwdne134466:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "crwdns71966:0crwdne71966:0"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "crwdns154892:0crwdne154892:0"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "crwdns111742:0{0}crwdne111742:0"
@@ -20844,11 +20860,11 @@ msgstr "crwdns71972:0crwdne71972:0"
msgid "For Work Order"
msgstr "crwdns71978:0crwdne71978:0"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "crwdns71980:0{0}crwdne71980:0"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "crwdns71982:0{0}crwdne71982:0"
@@ -20886,7 +20902,7 @@ msgstr "crwdns134476:0crwdne134476:0"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "crwdns154774:0{0}crwdnd154774:0{1}crwdnd154774:0{2}crwdnd154774:0{3}crwdne154774:0"
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "crwdns71992:0{0}crwdnd71992:0{1}crwdnd71992:0{2}crwdne71992:0"
@@ -20900,7 +20916,7 @@ msgstr "crwdns201769:0crwdne201769:0"
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "crwdns195160:0{0}crwdnd195160:0{1}crwdne195160:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "crwdns104578:0{0}crwdnd104578:0{1}crwdnd104578:0{2}crwdne104578:0"
@@ -20917,7 +20933,7 @@ msgstr "crwdns197182:0{0}crwdne197182:0"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "crwdns159832:0crwdne159832:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "crwdns71998:0{0}crwdnd71998:0{1}crwdne71998:0"
@@ -20926,12 +20942,12 @@ msgstr "crwdns71998:0{0}crwdnd71998:0{1}crwdne71998:0"
msgid "For reference"
msgstr "crwdns134478:0crwdne134478:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "crwdns72002:0{0}crwdnd72002:0{1}crwdnd72002:0{2}crwdnd72002:0{3}crwdne72002:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "crwdns72004:0{0}crwdne72004:0"
@@ -20950,7 +20966,7 @@ msgstr "crwdns72006:0{0}crwdne72006:0"
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "crwdns111744:0crwdne111744:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "crwdns195002:0{0}crwdnd195002:0{1}crwdnd195002:0{2}crwdne195002:0"
@@ -20997,11 +21013,6 @@ msgstr "crwdns152030:0crwdne152030:0"
msgid "Forecast Demand"
msgstr "crwdns159834:0crwdne159834:0"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "crwdns159836:0crwdne159836:0"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21047,7 +21058,7 @@ msgstr "crwdns134488:0crwdne134488:0"
msgid "Forum URL"
msgstr "crwdns134490:0crwdne134490:0"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "crwdns161098:0crwdne161098:0"
@@ -21092,8 +21103,8 @@ msgstr "crwdns72030:0{0}crwdne72030:0"
msgid "Freeze Stocks Older Than (Days)"
msgstr "crwdns134496:0crwdne134496:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "crwdns72034:0crwdne72034:0"
@@ -21527,8 +21538,8 @@ msgstr "crwdns134580:0crwdne134580:0"
msgid "Furlong"
msgstr "crwdns112342:0crwdne112342:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "crwdns104584:0crwdne104584:0"
@@ -21545,13 +21556,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "crwdns72304:0crwdne72304:0"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "crwdns72306:0crwdne72306:0"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "crwdns72308:0crwdne72308:0"
@@ -21559,7 +21570,7 @@ msgstr "crwdns72308:0crwdne72308:0"
msgid "Future Payments"
msgstr "crwdns72310:0crwdne72310:0"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "crwdns148786:0crwdne148786:0"
@@ -21644,9 +21655,9 @@ msgstr "crwdns134596:0crwdne134596:0"
msgid "Gain/Loss from Revaluation"
msgstr "crwdns134598:0crwdne134598:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "crwdns72336:0crwdne72336:0"
@@ -21819,7 +21830,7 @@ msgstr "crwdns155468:0crwdne155468:0"
msgid "Get Current Stock"
msgstr "crwdns134622:0crwdne134622:0"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "crwdns72390:0crwdne72390:0"
@@ -21877,7 +21888,7 @@ msgstr "crwdns134628:0crwdne134628:0"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21916,7 +21927,7 @@ msgstr "crwdns72414:0crwdne72414:0"
msgid "Get Items from Material Requests against this Supplier"
msgstr "crwdns72416:0crwdne72416:0"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "crwdns72420:0crwdne72420:0"
@@ -22090,7 +22101,7 @@ msgstr "crwdns134662:0crwdne134662:0"
msgid "Goods"
msgstr "crwdns134664:0crwdne134664:0"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "crwdns72490:0crwdne72490:0"
@@ -22099,7 +22110,7 @@ msgstr "crwdns72490:0crwdne72490:0"
msgid "Goods Transferred"
msgstr "crwdns72492:0crwdne72492:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "crwdns72494:0{0}crwdne72494:0"
@@ -22282,7 +22293,7 @@ msgstr "crwdns197184:0crwdne197184:0"
msgid "Grant Commission"
msgstr "crwdns134672:0crwdne134672:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "crwdns72570:0crwdne72570:0"
@@ -22725,7 +22736,7 @@ msgstr "crwdns111754:0crwdne111754:0"
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "crwdns72768:0{0}crwdne72768:0"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "crwdns72770:0crwdne72770:0"
@@ -22753,7 +22764,7 @@ msgstr "crwdns72778:0crwdne72778:0"
msgid "Hertz"
msgstr "crwdns112384:0crwdne112384:0"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "crwdns72786:0crwdne72786:0"
@@ -22952,7 +22963,7 @@ msgstr "crwdns161108:0crwdne161108:0"
msgid "Hrs"
msgstr "crwdns134766:0crwdne134766:0"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "crwdns72870:0crwdne72870:0"
@@ -23120,6 +23131,12 @@ msgstr "crwdns134798:0crwdne134798:0"
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "crwdns134800:0crwdne134800:0"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr "crwdns201857:0crwdne201857:0"
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "crwdns72932:0crwdne72932:0"
@@ -23337,7 +23354,7 @@ msgstr "crwdns200554:0crwdne200554:0"
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "crwdns155632:0crwdne155632:0"
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "crwdns72958:0crwdne72958:0"
@@ -23363,13 +23380,18 @@ msgstr "crwdns201141:0crwdne201141:0"
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 "crwdns157468:0crwdne157468:0"
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr "crwdns201971:0crwdne201971:0"
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "crwdns158698:0crwdne158698:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "crwdns72964:0crwdne72964:0"
@@ -23378,7 +23400,7 @@ msgstr "crwdns72964:0crwdne72964:0"
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "crwdns134836:0crwdne134836:0"
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "crwdns72968:0{0}crwdne72968:0"
@@ -23388,7 +23410,7 @@ msgstr "crwdns72968:0{0}crwdne72968:0"
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 "crwdns161998:0crwdne161998:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "crwdns72970:0crwdne72970:0"
@@ -23465,7 +23487,7 @@ msgstr "crwdns111764:0crwdne111764:0"
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "crwdns134852:0crwdne134852:0"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "crwdns72996:0crwdne72996:0"
@@ -23479,7 +23501,7 @@ msgstr "crwdns134854:0crwdne134854:0"
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "crwdns111768:0crwdne111768:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "crwdns73000:0{0}crwdne73000:0"
@@ -23563,7 +23585,7 @@ msgstr "crwdns155920:0crwdne155920:0"
msgid "Ignore Existing Ordered Qty"
msgstr "crwdns73024:0crwdne73024:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "crwdns73026:0crwdne73026:0"
@@ -23650,12 +23672,12 @@ msgstr "crwdns134872:0crwdne134872:0"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "crwdns152316:0crwdne152316:0"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "crwdns195014:0{0}crwdnd195014:0{1}crwdne195014:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "crwdns148792:0crwdne148792:0"
@@ -23813,7 +23835,7 @@ msgstr "crwdns73228:0crwdne73228:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "crwdns73250:0crwdne73250:0"
@@ -23937,7 +23959,7 @@ msgstr "crwdns111776:0crwdne111776:0"
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 "crwdns201157:0crwdne201157:0"
-#: erpnext/stock/doctype/item/item.js:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "crwdns73326:0crwdne73326:0"
@@ -24168,8 +24190,8 @@ msgstr "crwdns134946:0crwdne134946:0"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24240,7 +24262,7 @@ msgstr "crwdns164206:0crwdne164206:0"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24272,7 +24294,7 @@ msgstr "crwdns73454:0crwdne73454:0"
msgid "Incorrect Batch Consumed"
msgstr "crwdns73456:0crwdne73456:0"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "crwdns127834:0crwdne127834:0"
@@ -24280,7 +24302,7 @@ msgstr "crwdns127834:0crwdne127834:0"
msgid "Incorrect Company"
msgstr "crwdns197190:0crwdne197190:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "crwdns148794:0crwdne148794:0"
@@ -24414,15 +24436,15 @@ msgstr "crwdns134956:0crwdne134956:0"
msgid "Indirect Expense"
msgstr "crwdns134960:0crwdne134960:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "crwdns73518:0crwdne73518:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "crwdns73520:0crwdne73520:0"
@@ -24490,14 +24512,14 @@ msgstr "crwdns73548:0crwdne73548:0"
msgid "Inspected By"
msgstr "crwdns73556:0crwdne73556:0"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "crwdns73560:0crwdne73560:0"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "crwdns73562:0crwdne73562:0"
@@ -24514,8 +24536,8 @@ msgstr "crwdns134970:0crwdne134970:0"
msgid "Inspection Required before Purchase"
msgstr "crwdns134972:0crwdne134972:0"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "crwdns73570:0crwdne73570:0"
@@ -24545,7 +24567,7 @@ msgstr "crwdns73578:0crwdne73578:0"
msgid "Installation Note Item"
msgstr "crwdns73582:0crwdne73582:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "crwdns73584:0{0}crwdne73584:0"
@@ -24584,11 +24606,11 @@ msgstr "crwdns134982:0crwdne134982:0"
msgid "Insufficient Capacity"
msgstr "crwdns73606:0crwdne73606:0"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "crwdns73608:0crwdne73608:0"
@@ -24596,13 +24618,12 @@ msgstr "crwdns73608:0crwdne73608:0"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "crwdns73610:0crwdne73610:0"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "crwdns73612:0crwdne73612:0"
@@ -24722,13 +24743,13 @@ msgstr "crwdns135014:0crwdne135014:0"
msgid "Interest"
msgstr "crwdns135018:0crwdne135018:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "crwdns161120:0crwdne161120:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "crwdns161122:0crwdne161122:0"
@@ -24736,8 +24757,8 @@ msgstr "crwdns161122:0crwdne161122:0"
msgid "Interest and/or dunning fee"
msgstr "crwdns73660:0crwdne73660:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "crwdns161124:0crwdne161124:0"
@@ -24757,7 +24778,7 @@ msgstr "crwdns73666:0crwdne73666:0"
msgid "Internal Customer Accounting"
msgstr "crwdns195164:0crwdne195164:0"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "crwdns73670:0{0}crwdne73670:0"
@@ -24765,7 +24786,7 @@ msgstr "crwdns73670:0{0}crwdne73670:0"
msgid "Internal Purchase Order"
msgstr "crwdns158338:0crwdne158338:0"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "crwdns73672:0crwdne73672:0"
@@ -24773,7 +24794,7 @@ msgstr "crwdns73672:0crwdne73672:0"
msgid "Internal Sales Order"
msgstr "crwdns158340:0crwdne158340:0"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "crwdns73674:0crwdne73674:0"
@@ -24804,7 +24825,7 @@ msgstr "crwdns73678:0{0}crwdne73678:0"
msgid "Internal Transfer"
msgstr "crwdns73680:0crwdne73680:0"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "crwdns73692:0crwdne73692:0"
@@ -24817,7 +24838,12 @@ msgstr "crwdns73694:0crwdne73694:0"
msgid "Internal Work History"
msgstr "crwdns135024:0crwdne135024:0"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr "crwdns201973:0crwdne201973:0"
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "crwdns73698:0crwdne73698:0"
@@ -24833,12 +24859,12 @@ msgstr "crwdns152212:0crwdne152212:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "crwdns73712:0crwdne73712:0"
@@ -24859,7 +24885,7 @@ msgstr "crwdns148868:0crwdne148868:0"
msgid "Invalid Attribute"
msgstr "crwdns73714:0crwdne73714:0"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "crwdns73716:0crwdne73716:0"
@@ -24872,7 +24898,7 @@ msgstr "crwdns201163:0crwdne201163:0"
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "crwdns73718:0crwdne73718:0"
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "crwdns73720:0crwdne73720:0"
@@ -24888,21 +24914,21 @@ msgstr "crwdns73722:0crwdne73722:0"
msgid "Invalid Company Field"
msgstr "crwdns195022:0crwdne195022:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "crwdns73724:0crwdne73724:0"
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "crwdns73726:0crwdne73726:0"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "crwdns200018:0crwdne200018:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "crwdns73730:0crwdne73730:0"
@@ -24940,7 +24966,7 @@ msgstr "crwdns73740:0crwdne73740:0"
msgid "Invalid Item"
msgstr "crwdns73742:0crwdne73742:0"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "crwdns73744:0crwdne73744:0"
@@ -24954,7 +24980,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "crwdns160218:0crwdne160218:0"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "crwdns73746:0crwdne73746:0"
@@ -24962,11 +24988,11 @@ msgstr "crwdns73746:0crwdne73746:0"
msgid "Invalid POS Invoices"
msgstr "crwdns73748:0crwdne73748:0"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "crwdns73750:0crwdne73750:0"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "crwdns73752:0crwdne73752:0"
@@ -24996,12 +25022,12 @@ msgstr "crwdns73760:0crwdne73760:0"
msgid "Invalid Purchase Invoice"
msgstr "crwdns73762:0crwdne73762:0"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "crwdns73764:0crwdne73764:0"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "crwdns73766:0crwdne73766:0"
@@ -25026,12 +25052,12 @@ msgstr "crwdns73768:0crwdne73768:0"
msgid "Invalid Selling Price"
msgstr "crwdns73770:0crwdne73770:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "crwdns127484:0crwdne127484:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "crwdns160658:0crwdne160658:0"
@@ -25056,7 +25082,7 @@ msgstr "crwdns154421:0crwdne154421:0"
msgid "Invalid condition expression"
msgstr "crwdns73778:0crwdne73778:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "crwdns195024:0crwdne195024:0"
@@ -25068,7 +25094,7 @@ msgstr "crwdns161128:0crwdne161128:0"
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "crwdns73780:0{0}crwdne73780:0"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "crwdns73782:0{0}crwdne73782:0"
@@ -25094,8 +25120,8 @@ msgstr "crwdns157204:0crwdne157204:0"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "crwdns73788:0{0}crwdnd73788:0{1}crwdnd73788:0{2}crwdne73788:0"
@@ -25103,7 +25129,7 @@ msgstr "crwdns73788:0{0}crwdnd73788:0{1}crwdnd73788:0{2}crwdne73788:0"
msgid "Invalid {0}"
msgstr "crwdns73790:0{0}crwdne73790:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "crwdns73792:0{0}crwdne73792:0"
@@ -25113,7 +25139,7 @@ msgid "Invalid {0}: {1}"
msgstr "crwdns73794:0{0}crwdnd73794:0{1}crwdne73794:0"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "crwdns135028:0crwdne135028:0"
@@ -25162,8 +25188,8 @@ msgstr "crwdns195166:0crwdne195166:0"
msgid "Investment Banking"
msgstr "crwdns143460:0crwdne143460:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "crwdns73806:0crwdne73806:0"
@@ -25213,7 +25239,7 @@ msgstr "crwdns73820:0crwdne73820:0"
msgid "Invoice Document Type Selection Error"
msgstr "crwdns155376:0crwdne155376:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "crwdns73824:0crwdne73824:0"
@@ -25318,7 +25344,7 @@ msgstr "crwdns73868:0crwdne73868:0"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25339,7 +25365,7 @@ msgstr "crwdns73872:0crwdne73872:0"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25435,8 +25461,7 @@ msgstr "crwdns73918:0crwdne73918:0"
msgid "Is Billable"
msgstr "crwdns135058:0crwdne135058:0"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "crwdns142834:0crwdne142834:0"
@@ -25878,8 +25903,7 @@ msgstr "crwdns135168:0crwdne135168:0"
msgid "Is Transporter"
msgstr "crwdns135170:0crwdne135170:0"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "crwdns142836:0crwdne142836:0"
@@ -25985,8 +26009,8 @@ msgstr "crwdns74194:0crwdne74194:0"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "crwdns135182:0crwdne135182:0"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr "crwdns201859:0crwdne201859:0"
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26016,11 +26040,11 @@ msgstr "crwdns74210:0crwdne74210:0"
msgid "Issuing Date"
msgstr "crwdns135184:0crwdne135184:0"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "crwdns74220:0crwdne74220:0"
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "crwdns74222:0crwdne74222:0"
@@ -26144,7 +26168,7 @@ msgstr "crwdns161132:0crwdne161132:0"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26392,7 +26416,7 @@ msgstr "crwdns111786:0crwdne111786:0"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26454,7 +26478,7 @@ msgstr "crwdns111786:0crwdne111786:0"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26653,13 +26677,13 @@ msgstr "crwdns111788:0crwdne111788:0"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26876,7 +26900,7 @@ msgstr "crwdns74534:0crwdne74534:0"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26916,10 +26940,10 @@ msgstr "crwdns74534:0crwdne74534:0"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26960,10 +26984,6 @@ msgstr "crwdns162002:0crwdne162002:0"
msgid "Item Price"
msgstr "crwdns74656:0crwdne74656:0"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "crwdns199150:0{0}crwdnd199150:0{1}crwdne199150:0"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26979,19 +26999,20 @@ msgstr "crwdns135206:0crwdne135206:0"
msgid "Item Price Stock"
msgstr "crwdns74662:0crwdne74662:0"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "crwdns74664:0{0}crwdnd74664:0{1}crwdne74664:0"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr "crwdns201861:0{0}crwdnd201861:0{1}crwdne201861:0"
#: 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 "crwdns74666:0crwdne74666:0"
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr "crwdns200784:0{0}crwdne200784:0"
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "crwdns74668:0{0}crwdnd74668:0{1}crwdne74668:0"
@@ -27178,11 +27199,11 @@ msgstr "crwdns74756:0crwdne74756:0"
msgid "Item Variant Settings"
msgstr "crwdns74758:0crwdne74758:0"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "crwdns74762:0{0}crwdne74762:0"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "crwdns74764:0crwdne74764:0"
@@ -27283,11 +27304,11 @@ msgstr "crwdns135226:0crwdne135226:0"
msgid "Item and Warranty Details"
msgstr "crwdns135228:0crwdne135228:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "crwdns74796:0{0}crwdne74796:0"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "crwdns74798:0crwdne74798:0"
@@ -27313,11 +27334,7 @@ msgstr "crwdns74804:0crwdne74804:0"
msgid "Item operation"
msgstr "crwdns135230:0crwdne135230:0"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "crwdns74808:0crwdne74808:0"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "crwdns74810:0{0}crwdne74810:0"
@@ -27336,11 +27353,11 @@ msgstr "crwdns111790:0crwdne111790:0"
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "crwdns74814:0crwdne74814:0"
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "crwdns74816:0{0}crwdne74816:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr "crwdns201779:0{0}crwdne201779:0"
@@ -27357,7 +27374,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "crwdns74820:0{0}crwdnd74820:0{1}crwdnd74820:0{2}crwdne74820:0"
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "crwdns74822:0{0}crwdne74822:0"
@@ -27369,7 +27386,7 @@ msgstr "crwdns74824:0{0}crwdne74824:0"
msgid "Item {0} does not exist."
msgstr "crwdns149136:0{0}crwdne149136:0"
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "crwdns74826:0{0}crwdne74826:0"
@@ -27381,15 +27398,15 @@ msgstr "crwdns74828:0{0}crwdne74828:0"
msgid "Item {0} has been disabled"
msgstr "crwdns74830:0{0}crwdne74830:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "crwdns104602:0{0}crwdne104602:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity."
msgstr "crwdns201181:0{0}crwdne201181:0"
-#: erpnext/stock/doctype/item/item.py:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "crwdns74834:0{0}crwdnd74834:0{1}crwdne74834:0"
@@ -27401,15 +27418,15 @@ msgstr "crwdns74836:0{0}crwdne74836:0"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "crwdns74838:0{0}crwdnd74838:0{1}crwdne74838:0"
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "crwdns74840:0{0}crwdne74840:0"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "crwdns74842:0{0}crwdne74842:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr "crwdns201781:0{0}crwdne201781:0"
@@ -27417,7 +27434,7 @@ msgstr "crwdns201781:0{0}crwdne201781:0"
msgid "Item {0} is not a serialized Item"
msgstr "crwdns74844:0{0}crwdne74844:0"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "crwdns74846:0{0}crwdne74846:0"
@@ -27425,11 +27442,11 @@ msgstr "crwdns74846:0{0}crwdne74846:0"
msgid "Item {0} is not a subcontracted item"
msgstr "crwdns152154:0{0}crwdne152154:0"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr "crwdns201783:0{0}crwdne201783:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "crwdns74848:0{0}crwdne74848:0"
@@ -27445,7 +27462,7 @@ msgstr "crwdns74852:0{0}crwdne74852:0"
msgid "Item {0} must be a non-stock item"
msgstr "crwdns74856:0{0}crwdne74856:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "crwdns74858:0{0}crwdnd74858:0{1}crwdnd74858:0{2}crwdne74858:0"
@@ -27453,7 +27470,7 @@ msgstr "crwdns74858:0{0}crwdnd74858:0{1}crwdnd74858:0{2}crwdne74858:0"
msgid "Item {0} not found."
msgstr "crwdns74860:0{0}crwdne74860:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "crwdns74862:0{0}crwdnd74862:0{1}crwdnd74862:0{2}crwdne74862:0"
@@ -27461,7 +27478,7 @@ msgstr "crwdns74862:0{0}crwdnd74862:0{1}crwdnd74862:0{2}crwdne74862:0"
msgid "Item {0}: {1} qty produced. "
msgstr "crwdns74864:0{0}crwdnd74864:0{1}crwdne74864:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "crwdns74866:0crwdne74866:0"
@@ -27507,7 +27524,7 @@ msgstr "crwdns74878:0crwdne74878:0"
msgid "Item-wise sales Register"
msgstr "crwdns195856:0crwdne195856:0"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "crwdns155382:0crwdne155382:0"
@@ -27531,7 +27548,7 @@ msgstr "crwdns74934:0crwdne74934:0"
msgid "Items Filter"
msgstr "crwdns74936:0crwdne74936:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "crwdns74938:0crwdne74938:0"
@@ -27555,11 +27572,11 @@ msgstr "crwdns74940:0crwdne74940:0"
msgid "Items and Pricing"
msgstr "crwdns74942:0crwdne74942:0"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "crwdns160452:0crwdne160452:0"
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "crwdns74944:0{0}crwdne74944:0"
@@ -27571,7 +27588,7 @@ msgstr "crwdns74946:0crwdne74946:0"
msgid "Items not found."
msgstr "crwdns164210:0crwdne164210:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "crwdns74948:0{0}crwdne74948:0"
@@ -27581,7 +27598,7 @@ msgstr "crwdns74948:0{0}crwdne74948:0"
msgid "Items to Be Repost"
msgstr "crwdns135234:0crwdne135234:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "crwdns74952:0crwdne74952:0"
@@ -27646,9 +27663,9 @@ msgstr "crwdns135242:0crwdne135242:0"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27710,7 +27727,7 @@ msgstr "crwdns75000:0crwdne75000:0"
msgid "Job Card and Capacity Planning"
msgstr "crwdns148798:0crwdne148798:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "crwdns135246:0{0}crwdne135246:0"
@@ -27786,7 +27803,7 @@ msgstr "crwdns142956:0crwdne142956:0"
msgid "Job Worker Warehouse"
msgstr "crwdns142958:0crwdne142958:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "crwdns75012:0{0}crwdne75012:0"
@@ -28006,7 +28023,7 @@ msgstr "crwdns112444:0crwdne112444:0"
msgid "Kilowatt-Hour"
msgstr "crwdns112446:0crwdne112446:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "crwdns75070:0{0}crwdne75070:0"
@@ -28134,7 +28151,7 @@ msgstr "crwdns135278:0crwdne135278:0"
msgid "Last Fiscal Year"
msgstr "crwdns201185:0crwdne201185:0"
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "crwdns152585:0crwdne152585:0"
@@ -28216,7 +28233,7 @@ msgstr "crwdns75140:0crwdne75140:0"
msgid "Last transacted"
msgstr "crwdns151904:0crwdne151904:0"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "crwdns75142:0crwdne75142:0"
@@ -28466,12 +28483,12 @@ msgstr "crwdns154910:0crwdne154910:0"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "crwdns111798:0crwdne111798:0"
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "crwdns75262:0crwdne75262:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "crwdns75264:0crwdne75264:0"
@@ -28482,7 +28499,7 @@ msgstr "crwdns75264:0crwdne75264:0"
msgid "Length (cm)"
msgstr "crwdns135312:0crwdne135312:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "crwdns75272:0crwdne75272:0"
@@ -28541,7 +28558,7 @@ msgstr "crwdns135330:0crwdne135330:0"
msgid "License Plate"
msgstr "crwdns135332:0crwdne135332:0"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "crwdns75404:0crwdne75404:0"
@@ -28602,7 +28619,7 @@ msgstr "crwdns75424:0crwdne75424:0"
msgid "Link with Customer"
msgstr "crwdns75426:0crwdne75426:0"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "crwdns75428:0crwdne75428:0"
@@ -28623,12 +28640,12 @@ msgstr "crwdns135348:0crwdne135348:0"
msgid "Linked Location"
msgstr "crwdns75434:0crwdne75434:0"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "crwdns75436:0crwdne75436:0"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "crwdns75438:0crwdne75438:0"
@@ -28636,7 +28653,7 @@ msgstr "crwdns75438:0crwdne75438:0"
msgid "Linking to Customer Failed. Please try again."
msgstr "crwdns75440:0crwdne75440:0"
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "crwdns75442:0crwdne75442:0"
@@ -28694,8 +28711,8 @@ msgstr "crwdns135362:0crwdne135362:0"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "crwdns75460:0crwdne75460:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "crwdns75462:0crwdne75462:0"
@@ -28740,8 +28757,8 @@ msgstr "crwdns111800:0crwdne111800:0"
msgid "Logo"
msgstr "crwdns135372:0crwdne135372:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "crwdns161138:0crwdne161138:0"
@@ -28942,6 +28959,11 @@ msgstr "crwdns135384:0crwdne135384:0"
msgid "Loyalty Program Type"
msgstr "crwdns135386:0crwdne135386:0"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr "crwdns201975:0crwdne201975:0"
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28985,10 +29007,10 @@ msgstr "crwdns135388:0crwdne135388:0"
msgid "Machine operator errors"
msgstr "crwdns135390:0crwdne135390:0"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "crwdns75642:0crwdne75642:0"
@@ -29231,9 +29253,9 @@ msgstr "crwdns135426:0crwdne135426:0"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "crwdns75748:0crwdne75748:0"
@@ -29253,7 +29275,7 @@ msgstr "crwdns135428:0crwdne135428:0"
msgid "Make Difference Entry"
msgstr "crwdns135430:0crwdne135430:0"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "crwdns159864:0crwdne159864:0"
@@ -29291,12 +29313,12 @@ msgstr "crwdns135434:0crwdne135434:0"
msgid "Make Serial No / Batch from Work Order"
msgstr "crwdns135436:0crwdne135436:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "crwdns75772:0crwdne75772:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "crwdns135438:0crwdne135438:0"
@@ -29312,11 +29334,11 @@ msgstr "crwdns199152:0crwdne199152:0"
msgid "Make project from a template."
msgstr "crwdns75774:0crwdne75774:0"
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "crwdns75776:0{0}crwdne75776:0"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "crwdns75778:0{0}crwdne75778:0"
@@ -29324,8 +29346,8 @@ msgstr "crwdns75778:0{0}crwdne75778:0"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "crwdns127494:0{0}crwdne127494:0"
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "crwdns75780:0crwdne75780:0"
@@ -29344,7 +29366,7 @@ msgstr "crwdns195170:0crwdne195170:0"
msgid "Manage your orders"
msgstr "crwdns75788:0crwdne75788:0"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "crwdns75790:0crwdne75790:0"
@@ -29360,7 +29382,7 @@ msgstr "crwdns143466:0crwdne143466:0"
msgid "Mandatory Accounting Dimension"
msgstr "crwdns75798:0crwdne75798:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "crwdns75802:0crwdne75802:0"
@@ -29459,8 +29481,8 @@ msgstr "crwdns75834:0crwdne75834:0"
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29539,7 +29561,7 @@ msgstr "crwdns75872:0crwdne75872:0"
msgid "Manufacturer Part Number"
msgstr "crwdns75892:0crwdne75892:0"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "crwdns75910:0{0}crwdne75910:0"
@@ -29564,7 +29586,7 @@ msgstr "crwdns111808:0crwdne111808:0"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29609,10 +29631,6 @@ msgstr "crwdns135458:0crwdne135458:0"
msgid "Manufacturing Manager"
msgstr "crwdns75920:0crwdne75920:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "crwdns75922:0crwdne75922:0"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29779,6 +29797,12 @@ msgstr "crwdns135472:0crwdne135472:0"
msgid "Mark As Closed"
msgstr "crwdns111810:0crwdne111810:0"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr "crwdns201977:0crwdne201977:0"
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29793,12 +29817,12 @@ msgstr "crwdns111810:0crwdne111810:0"
msgid "Market Segment"
msgstr "crwdns75988:0crwdne75988:0"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "crwdns76000:0crwdne76000:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "crwdns76002:0crwdne76002:0"
@@ -29877,7 +29901,7 @@ msgstr "crwdns201205:0crwdne201205:0"
msgid "Material"
msgstr "crwdns76014:0crwdne76014:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "crwdns76016:0crwdne76016:0"
@@ -29885,7 +29909,7 @@ msgstr "crwdns76016:0crwdne76016:0"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "crwdns135480:0crwdne135480:0"
@@ -29966,7 +29990,7 @@ msgstr "crwdns76036:0crwdne76036:0"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30063,11 +30087,11 @@ msgstr "crwdns76110:0crwdne76110:0"
msgid "Material Request Type"
msgstr "crwdns111814:0crwdne111814:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "crwdns199154:0crwdne199154:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "crwdns76118:0crwdne76118:0"
@@ -30135,7 +30159,7 @@ msgstr "crwdns76136:0crwdne76136:0"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30201,12 +30225,12 @@ msgstr "crwdns76170:0crwdne76170:0"
msgid "Materials To Be Transferred"
msgstr "crwdns195862:0crwdne195862:0"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "crwdns76174:0{0}crwdnd76174:0{1}crwdne76174:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "crwdns76176:0{0}crwdne76176:0"
@@ -30277,9 +30301,9 @@ msgstr "crwdns135518:0crwdne135518:0"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "crwdns76202:0{0}crwdnd76202:0{1}crwdne76202:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30311,11 +30335,11 @@ msgstr "crwdns135524:0crwdne135524:0"
msgid "Maximum Producible Items"
msgstr "crwdns199582:0crwdne199582:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "crwdns76212:0{0}crwdnd76212:0{1}crwdnd76212:0{2}crwdne76212:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "crwdns76214:0{0}crwdnd76214:0{1}crwdnd76214:0{2}crwdnd76214:0{3}crwdne76214:0"
@@ -30376,15 +30400,10 @@ msgstr "crwdns112464:0crwdne112464:0"
msgid "Megawatt"
msgstr "crwdns112466:0crwdne112466:0"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "crwdns76238:0crwdne76238:0"
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "crwdns135532:0crwdne135532:0"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30434,7 +30453,7 @@ msgstr "crwdns76260:0crwdne76260:0"
msgid "Merged"
msgstr "crwdns135544:0crwdne135544:0"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "crwdns76266:0crwdne76266:0"
@@ -30464,7 +30483,7 @@ msgstr "crwdns135552:0crwdne135552:0"
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "crwdns135554:0crwdne135554:0"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "crwdns195864:0crwdne195864:0"
@@ -30665,7 +30684,7 @@ msgstr "crwdns76316:0crwdne76316:0"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "crwdns76318:0crwdne76318:0"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "crwdns161142:0{0}crwdnd161142:0{1}crwdnd161142:0{2}crwdne161142:0"
@@ -30754,8 +30773,8 @@ msgstr "crwdns135586:0crwdne135586:0"
msgid "Miscellaneous"
msgstr "crwdns195172:0crwdne195172:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "crwdns76346:0crwdne76346:0"
@@ -30763,15 +30782,15 @@ msgstr "crwdns76346:0crwdne76346:0"
msgid "Mismatch"
msgstr "crwdns76348:0crwdne76348:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "crwdns76350:0crwdne76350:0"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "crwdns76352:0crwdne76352:0"
@@ -30801,7 +30820,7 @@ msgstr "crwdns157474:0crwdne157474:0"
msgid "Missing Finance Book"
msgstr "crwdns76358:0crwdne76358:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "crwdns76360:0crwdne76360:0"
@@ -30809,7 +30828,7 @@ msgstr "crwdns76360:0crwdne76360:0"
msgid "Missing Formula"
msgstr "crwdns76362:0crwdne76362:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "crwdns152088:0crwdne152088:0"
@@ -30846,7 +30865,7 @@ msgid "Missing required filter: {0}"
msgstr "crwdns161144:0{0}crwdne161144:0"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "crwdns76376:0crwdne76376:0"
@@ -31095,11 +31114,11 @@ msgstr "crwdns201213:0crwdne201213:0"
msgid "Multiple Accounts (Journal Template)"
msgstr "crwdns201215:0crwdne201215:0"
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "crwdns76630:0crwdne76630:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "crwdns155640:0crwdne155640:0"
@@ -31121,11 +31140,11 @@ msgstr "crwdns76636:0crwdne76636:0"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "crwdns195028:0{0}crwdne195028:0"
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "crwdns76640:0{0}crwdne76640:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "crwdns76642:0crwdne76642:0"
@@ -31134,7 +31153,7 @@ msgid "Music"
msgstr "crwdns143476:0crwdne143476:0"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31221,7 +31240,7 @@ msgstr "crwdns200796:0crwdne200796:0"
msgid "Naming Series updated"
msgstr "crwdns200798:0crwdne200798:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "crwdns195030:0{0}crwdnd195030:0{1}crwdne195030:0"
@@ -31265,7 +31284,7 @@ msgstr "crwdns76732:0crwdne76732:0"
msgid "Negative Batch Report"
msgstr "crwdns195870:0crwdne195870:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "crwdns76734:0crwdne76734:0"
@@ -31274,7 +31293,7 @@ msgstr "crwdns76734:0crwdne76734:0"
msgid "Negative Stock Error"
msgstr "crwdns160326:0crwdne160326:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "crwdns76736:0crwdne76736:0"
@@ -31580,7 +31599,7 @@ msgstr "crwdns135656:0crwdne135656:0"
msgid "Net Weight UOM"
msgstr "crwdns135658:0crwdne135658:0"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "crwdns76898:0crwdne76898:0"
@@ -31757,7 +31776,7 @@ msgstr "crwdns76964:0crwdne76964:0"
msgid "New Workplace"
msgstr "crwdns135682:0crwdne135682:0"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "crwdns76968:0{0}crwdne76968:0"
@@ -31811,7 +31830,7 @@ msgstr "crwdns135690:0crwdne135690:0"
msgid "No Account Data row found"
msgstr "crwdns161148:0crwdne161148:0"
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "crwdns77020:0crwdne77020:0"
@@ -31824,7 +31843,7 @@ msgstr "crwdns77022:0crwdne77022:0"
msgid "No Answer"
msgstr "crwdns135692:0crwdne135692:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "crwdns77026:0{0}crwdne77026:0"
@@ -31837,7 +31856,7 @@ msgstr "crwdns77028:0crwdne77028:0"
msgid "No Delivery Note selected for Customer {}"
msgstr "crwdns77032:0crwdne77032:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "crwdns195032:0crwdne195032:0"
@@ -31853,7 +31872,7 @@ msgstr "crwdns77034:0{0}crwdne77034:0"
msgid "No Item with Serial No {0}"
msgstr "crwdns77036:0{0}crwdne77036:0"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "crwdns77038:0crwdne77038:0"
@@ -31888,7 +31907,7 @@ msgstr "crwdns77046:0crwdne77046:0"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "crwdns77048:0crwdne77048:0"
@@ -31917,19 +31936,19 @@ msgstr "crwdns77054:0crwdne77054:0"
msgid "No Summary"
msgstr "crwdns111830:0crwdne111830:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "crwdns77056:0{0}crwdne77056:0"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "crwdns77058:0crwdne77058:0"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "crwdns164220:0{0}crwdnd164220:0{1}crwdne164220:0"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "crwdns77060:0crwdne77060:0"
@@ -31959,7 +31978,7 @@ msgstr "crwdns201221:0crwdne201221:0"
msgid "No accounts found."
msgstr "crwdns201223:0crwdne201223:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "crwdns77070:0{0}crwdne77070:0"
@@ -32153,7 +32172,7 @@ msgstr "crwdns159884:0crwdne159884:0"
msgid "No open Material Requests found for the given criteria."
msgstr "crwdns159886:0crwdne159886:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "crwdns154504:0{0}crwdne154504:0"
@@ -32177,7 +32196,7 @@ msgstr "crwdns77128:0crwdne77128:0"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "crwdns77130:0{0}crwdnd77130:0{1}crwdnd77130:0{2}crwdne77130:0"
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "crwdns77132:0crwdne77132:0"
@@ -32248,7 +32267,7 @@ msgstr "crwdns201245:0crwdne201245:0"
msgid "No stock available for this batch."
msgstr "crwdns200200:0crwdne200200:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "crwdns154776:0crwdne154776:0"
@@ -32281,7 +32300,7 @@ msgstr "crwdns77150:0crwdne77150:0"
msgid "No vouchers found for this transaction"
msgstr "crwdns201253:0crwdne201253:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "crwdns77154:0{0}crwdne77154:0"
@@ -32326,8 +32345,8 @@ msgstr "crwdns77168:0crwdne77168:0"
msgid "Non stock items"
msgstr "crwdns77170:0crwdne77170:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "crwdns161150:0crwdne161150:0"
@@ -32428,7 +32447,7 @@ msgstr "crwdns157214:0crwdne157214:0"
msgid "Not allow to set alternative item for the item {0}"
msgstr "crwdns77204:0{0}crwdne77204:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "crwdns77206:0{0}crwdne77206:0"
@@ -32482,7 +32501,7 @@ msgstr "crwdns154916:0{0}crwdne154916:0"
msgid "Note: Item {0} added multiple times"
msgstr "crwdns77232:0{0}crwdne77232:0"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "crwdns77234:0crwdne77234:0"
@@ -32490,7 +32509,7 @@ msgstr "crwdns77234:0crwdne77234:0"
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "crwdns77236:0crwdne77236:0"
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "crwdns77238:0{0}crwdne77238:0"
@@ -32673,6 +32692,11 @@ msgstr "crwdns77326:0crwdne77326:0"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "crwdns77328:0crwdne77328:0"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr "crwdns201979:0crwdne201979:0"
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32732,18 +32756,18 @@ msgstr "crwdns135770:0crwdne135770:0"
msgid "Offer Date"
msgstr "crwdns135774:0crwdne135774:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "crwdns104616:0crwdne104616:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "crwdns77358:0crwdne77358:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "crwdns77360:0crwdne77360:0"
@@ -32871,7 +32895,7 @@ msgstr "crwdns197208:0crwdne197208:0"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "crwdns135798:0crwdne135798:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "crwdns77432:0crwdne77432:0"
@@ -32911,7 +32935,7 @@ msgstr "crwdns135800:0crwdne135800:0"
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "crwdns77436:0crwdne77436:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "crwdns195038:0crwdne195038:0"
@@ -32930,7 +32954,7 @@ msgstr "crwdns135802:0crwdne135802:0"
msgid "Only Include Allocated Payments"
msgstr "crwdns135804:0crwdne135804:0"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "crwdns77444:0{0}crwdne77444:0"
@@ -32967,7 +32991,7 @@ msgstr "crwdns163958:0crwdne163958:0"
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "crwdns195174:0crwdne195174:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "crwdns111850:0{0}crwdnd111850:0{1}crwdne111850:0"
@@ -33184,8 +33208,8 @@ msgstr "crwdns161152:0crwdne161152:0"
msgid "Opening Balance Details"
msgstr "crwdns135828:0crwdne135828:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "crwdns77560:0crwdne77560:0"
@@ -33208,7 +33232,7 @@ msgstr "crwdns135830:0crwdne135830:0"
msgid "Opening Entry"
msgstr "crwdns135832:0crwdne135832:0"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "crwdns77568:0crwdne77568:0"
@@ -33241,7 +33265,7 @@ msgid "Opening Invoice Tool"
msgstr "crwdns195874:0crwdne195874:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "crwdns148804:0{0}crwdnd148804:0{1}crwdnd148804:0{2}crwdnd148804:0{3}crwdne148804:0"
@@ -33277,16 +33301,16 @@ msgstr "crwdns148808:0crwdne148808:0"
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "crwdns77584:0crwdne77584:0"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr "crwdns200804:0{0}crwdne200804:0"
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr "crwdns200806:0{0}crwdne200806:0"
@@ -33304,12 +33328,15 @@ msgstr "crwdns77592:0crwdne77592:0"
msgid "Opening and Closing"
msgstr "crwdns77594:0crwdne77594:0"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "crwdns164222:0crwdne164222:0"
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "crwdns158398:0crwdne158398:0"
@@ -33341,7 +33368,7 @@ msgstr "crwdns135838:0crwdne135838:0"
msgid "Operating Cost Per BOM Quantity"
msgstr "crwdns135840:0crwdne135840:0"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "crwdns77608:0crwdne77608:0"
@@ -33384,15 +33411,15 @@ msgstr "crwdns135850:0crwdne135850:0"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "crwdns135852:0crwdne135852:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "crwdns77648:0crwdne77648:0"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33417,7 +33444,7 @@ msgstr "crwdns135858:0crwdne135858:0"
msgid "Operation Time"
msgstr "crwdns135860:0crwdne135860:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "crwdns77658:0{0}crwdne77658:0"
@@ -33432,11 +33459,11 @@ msgstr "crwdns135866:0crwdne135866:0"
msgid "Operation time does not depend on quantity to produce"
msgstr "crwdns135868:0crwdne135868:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "crwdns77664:0{0}crwdnd77664:0{1}crwdne77664:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "crwdns77666:0{0}crwdnd77666:0{1}crwdne77666:0"
@@ -33452,9 +33479,9 @@ msgstr "crwdns77668:0{0}crwdnd77668:0{1}crwdne77668:0"
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33627,7 +33654,7 @@ msgstr "crwdns77750:0{0}crwdne77750:0"
msgid "Optimize Route"
msgstr "crwdns135876:0crwdne135876:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "crwdns200034:0crwdne200034:0"
@@ -33777,7 +33804,7 @@ msgstr "crwdns77814:0crwdne77814:0"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "crwdns77818:0crwdne77818:0"
@@ -33893,7 +33920,7 @@ msgstr "crwdns112546:0crwdne112546:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "crwdns77862:0crwdne77862:0"
@@ -33931,7 +33958,7 @@ msgstr "crwdns135906:0crwdne135906:0"
msgid "Out of stock"
msgstr "crwdns77880:0crwdne77880:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "crwdns155642:0crwdne155642:0"
@@ -33950,6 +33977,7 @@ msgstr "crwdns164228:0crwdne164228:0"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "crwdns135908:0crwdne135908:0"
@@ -33985,7 +34013,7 @@ msgstr "crwdns154389:0crwdne154389:0"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33995,7 +34023,7 @@ msgstr "crwdns154389:0crwdne154389:0"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34055,17 +34083,22 @@ msgstr "crwdns154918:0{0}crwdnd154918:0{1}crwdnd154918:0{2}crwdne154918:0"
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "crwdns135916:0crwdne135916:0"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr "crwdns201981:0crwdne201981:0"
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "crwdns142960:0crwdne142960:0"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "crwdns77934:0crwdne77934:0"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "crwdns77936:0{0}crwdnd77936:0{1}crwdnd77936:0{2}crwdnd77936:0{3}crwdne77936:0"
@@ -34085,11 +34118,11 @@ msgstr "crwdns135920:0crwdne135920:0"
msgid "Over Withheld"
msgstr "crwdns164230:0crwdne164230:0"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "crwdns77942:0{0}crwdnd77942:0{1}crwdnd77942:0{2}crwdnd77942:0{3}crwdne77942:0"
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "crwdns77944:0crwdne77944:0"
@@ -34389,7 +34422,7 @@ msgstr "crwdns195182:0crwdne195182:0"
msgid "POS Opening Entry"
msgstr "crwdns78062:0crwdne78062:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "crwdns155644:0{0}crwdne155644:0"
@@ -34410,7 +34443,7 @@ msgstr "crwdns78070:0crwdne78070:0"
msgid "POS Opening Entry Exists"
msgstr "crwdns155650:0crwdne155650:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "crwdns154506:0crwdne154506:0"
@@ -34446,7 +34479,7 @@ msgstr "crwdns78072:0crwdne78072:0"
msgid "POS Profile"
msgstr "crwdns78074:0crwdne78074:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "crwdns155656:0{0}crwdne155656:0"
@@ -34464,11 +34497,11 @@ msgstr "crwdns78084:0crwdne78084:0"
msgid "POS Profile doesn't match {}"
msgstr "crwdns143488:0crwdne143488:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "crwdns154652:0crwdne154652:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "crwdns78088:0crwdne78088:0"
@@ -34574,7 +34607,7 @@ msgstr "crwdns78136:0crwdne78136:0"
msgid "Packed Items"
msgstr "crwdns135958:0crwdne135958:0"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "crwdns78146:0crwdne78146:0"
@@ -34611,7 +34644,7 @@ msgstr "crwdns78160:0crwdne78160:0"
msgid "Packing Slip Item"
msgstr "crwdns78164:0crwdne78164:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "crwdns78166:0crwdne78166:0"
@@ -34652,7 +34685,7 @@ msgstr "crwdns78204:0crwdne78204:0"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34718,7 +34751,7 @@ msgid "Paid To Account Type"
msgstr "crwdns135980:0crwdne135980:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "crwdns78248:0crwdne78248:0"
@@ -34812,7 +34845,7 @@ msgstr "crwdns136004:0crwdne136004:0"
msgid "Parent Company"
msgstr "crwdns136006:0crwdne136006:0"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "crwdns78298:0crwdne78298:0"
@@ -34939,7 +34972,7 @@ msgstr "crwdns201281:0crwdne201281:0"
msgid "Partial Material Transferred"
msgstr "crwdns136036:0crwdne136036:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "crwdns154654:0crwdne154654:0"
@@ -35152,7 +35185,7 @@ msgstr "crwdns112550:0crwdne112550:0"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35179,7 +35212,7 @@ msgstr "crwdns78408:0crwdne78408:0"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "crwdns78442:0crwdne78442:0"
@@ -35212,7 +35245,7 @@ msgstr "crwdns201283:0crwdne201283:0"
msgid "Party Account No. (Bank Statement)"
msgstr "crwdns136068:0crwdne136068:0"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "crwdns78456:0{0}crwdnd78456:0{1}crwdnd78456:0{2}crwdne78456:0"
@@ -35364,7 +35397,7 @@ msgstr "crwdns78486:0crwdne78486:0"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35473,7 +35506,7 @@ msgstr "crwdns154778:0crwdne154778:0"
msgid "Pause"
msgstr "crwdns78554:0crwdne78554:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "crwdns78558:0crwdne78558:0"
@@ -35524,7 +35557,7 @@ msgid "Payable"
msgstr "crwdns78570:0crwdne78570:0"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35558,7 +35591,7 @@ msgstr "crwdns136100:0crwdne136100:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35705,7 +35738,7 @@ msgstr "crwdns78642:0crwdne78642:0"
msgid "Payment Entry is already created"
msgstr "crwdns78644:0crwdne78644:0"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "crwdns78646:0{0}crwdnd78646:0{1}crwdne78646:0"
@@ -35930,7 +35963,7 @@ msgstr "crwdns136134:0crwdne136134:0"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35995,7 +36028,7 @@ msgstr "crwdns164234:0crwdne164234:0"
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36024,7 +36057,7 @@ msgstr "crwdns197212:0crwdne197212:0"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36080,6 +36113,7 @@ msgstr "crwdns78794:0crwdne78794:0"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36094,6 +36128,7 @@ msgstr "crwdns78794:0crwdne78794:0"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36151,7 +36186,7 @@ msgstr "crwdns201305:0{0}crwdne201305:0"
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "crwdns78828:0crwdne78828:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "crwdns199158:0crwdne199158:0"
@@ -36226,8 +36261,8 @@ msgstr "crwdns155664:0crwdne155664:0"
msgid "Payroll Entry"
msgstr "crwdns136142:0crwdne136142:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "crwdns78856:0crwdne78856:0"
@@ -36274,10 +36309,14 @@ msgstr "crwdns78884:0crwdne78884:0"
msgid "Pending Amount"
msgstr "crwdns78886:0crwdne78886:0"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36286,9 +36325,18 @@ msgstr "crwdns78888:0crwdne78888:0"
#: 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:273
msgid "Pending Quantity"
msgstr "crwdns78892:0crwdne78892:0"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr "crwdns201863:0{0}crwdne201863:0"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr "crwdns201865:0crwdne201865:0"
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36318,6 +36366,14 @@ msgstr "crwdns78900:0crwdne78900:0"
msgid "Pending processing"
msgstr "crwdns78902:0crwdne78902:0"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr "crwdns201867:0crwdne201867:0"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr "crwdns201869:0crwdne201869:0"
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "crwdns143490:0crwdne143490:0"
@@ -36427,7 +36483,7 @@ msgstr "crwdns78950:0crwdne78950:0"
msgid "Period Based On"
msgstr "crwdns78954:0crwdne78954:0"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "crwdns78956:0crwdne78956:0"
@@ -36991,8 +37047,8 @@ msgstr "crwdns136254:0crwdne136254:0"
msgid "Plant Floor"
msgstr "crwdns111888:0crwdne111888:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "crwdns79170:0crwdne79170:0"
@@ -37028,7 +37084,7 @@ msgstr "crwdns127838:0crwdne127838:0"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "crwdns79182:0crwdne79182:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "crwdns79184:0crwdne79184:0"
@@ -37076,7 +37132,7 @@ msgstr "crwdns79198:0crwdne79198:0"
msgid "Please add the account to root level Company - {0}"
msgstr "crwdns79200:0{0}crwdne79200:0"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "crwdns79202:0crwdne79202:0"
@@ -37084,7 +37140,7 @@ msgstr "crwdns79202:0crwdne79202:0"
msgid "Please add {1} role to user {0}."
msgstr "crwdns79204:0{1}crwdnd79204:0{0}crwdne79204:0"
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "crwdns79206:0{0}crwdne79206:0"
@@ -37092,7 +37148,7 @@ msgstr "crwdns79206:0{0}crwdne79206:0"
msgid "Please attach CSV file"
msgstr "crwdns79208:0crwdne79208:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "crwdns79210:0crwdne79210:0"
@@ -37126,7 +37182,7 @@ msgstr "crwdns79220:0crwdne79220:0"
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "crwdns200206:0{0}crwdne200206:0"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "crwdns79222:0crwdne79222:0"
@@ -37151,11 +37207,15 @@ msgstr "crwdns79232:0{0}crwdne79232:0"
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "crwdns79234:0crwdne79234:0"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr "crwdns201871:0crwdne201871:0"
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr "crwdns201311:0crwdne201311:0"
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "crwdns79236:0{0}crwdnd79236:0{1}crwdne79236:0"
@@ -37163,11 +37223,11 @@ msgstr "crwdns79236:0{0}crwdnd79236:0{1}crwdne79236:0"
msgid "Please contact any of the following users to {} this transaction."
msgstr "crwdns79238:0crwdne79238:0"
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "crwdns79240:0{0}crwdne79240:0"
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "crwdns79242:0crwdne79242:0"
@@ -37179,11 +37239,11 @@ msgstr "crwdns79244:0{0}crwdne79244:0"
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "crwdns79246:0crwdne79246:0"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "crwdns79248:0crwdne79248:0"
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "crwdns79250:0crwdne79250:0"
@@ -37191,11 +37251,11 @@ msgstr "crwdns79250:0crwdne79250:0"
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "crwdns79252:0{0}crwdne79252:0"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "crwdns79254:0{0}crwdnd79254:0{1}crwdnd79254:0{2}crwdne79254:0"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "crwdns154920:0{0}crwdne154920:0"
@@ -37203,7 +37263,7 @@ msgstr "crwdns154920:0{0}crwdne154920:0"
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "crwdns79256:0crwdne79256:0"
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "crwdns79258:0crwdne79258:0"
@@ -37227,7 +37287,7 @@ msgstr "crwdns127840:0crwdne127840:0"
msgid "Please enable {0} in the {1}."
msgstr "crwdns79266:0{0}crwdnd79266:0{1}crwdne79266:0"
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "crwdns79268:0crwdne79268:0"
@@ -37239,20 +37299,20 @@ msgstr "crwdns143494:0{0}crwdne143494:0"
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 "crwdns143496:0{0}crwdnd143496:0{1}crwdne143496:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "crwdns79270:0crwdne79270:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "crwdns79276:0crwdne79276:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "crwdns79278:0{0}crwdne79278:0"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "crwdns79280:0crwdne79280:0"
@@ -37260,15 +37320,15 @@ msgstr "crwdns79280:0crwdne79280:0"
msgid "Please enter Approving Role or Approving User"
msgstr "crwdns79282:0crwdne79282:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "crwdns195040:0crwdne195040:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "crwdns79284:0crwdne79284:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "crwdns79286:0crwdne79286:0"
@@ -37276,7 +37336,7 @@ msgstr "crwdns79286:0crwdne79286:0"
msgid "Please enter Employee Id of this sales person"
msgstr "crwdns79288:0crwdne79288:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "crwdns79290:0crwdne79290:0"
@@ -37285,7 +37345,7 @@ msgstr "crwdns79290:0crwdne79290:0"
msgid "Please enter Item Code to get Batch Number"
msgstr "crwdns79292:0crwdne79292:0"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "crwdns79294:0crwdne79294:0"
@@ -37301,7 +37361,7 @@ msgstr "crwdns104632:0crwdne104632:0"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "crwdns79300:0{0}crwdnd79300:0{1}crwdne79300:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "crwdns79304:0crwdne79304:0"
@@ -37321,7 +37381,7 @@ msgstr "crwdns79310:0crwdne79310:0"
msgid "Please enter Root Type for account- {0}"
msgstr "crwdns79314:0{0}crwdne79314:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "crwdns195042:0crwdne195042:0"
@@ -37338,7 +37398,7 @@ msgid "Please enter Warehouse and Date"
msgstr "crwdns79320:0crwdne79320:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "crwdns79324:0crwdne79324:0"
@@ -37358,7 +37418,7 @@ msgstr "crwdns159912:0crwdne159912:0"
msgid "Please enter company name first"
msgstr "crwdns79328:0crwdne79328:0"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "crwdns79330:0crwdne79330:0"
@@ -37386,7 +37446,7 @@ msgstr "crwdns79340:0crwdne79340:0"
msgid "Please enter serial nos"
msgstr "crwdns79342:0crwdne79342:0"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "crwdns79344:0crwdne79344:0"
@@ -37454,11 +37514,11 @@ msgstr "crwdns79366:0crwdne79366:0"
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "crwdns79368:0crwdne79368:0"
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "crwdns79370:0crwdne79370:0"
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "crwdns79372:0crwdne79372:0"
@@ -37517,7 +37577,7 @@ msgstr "crwdns79392:0crwdne79392:0"
msgid "Please select Apply Discount On"
msgstr "crwdns79394:0crwdne79394:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "crwdns79396:0{0}crwdne79396:0"
@@ -37533,7 +37593,7 @@ msgstr "crwdns136256:0crwdne136256:0"
msgid "Please select Category first"
msgstr "crwdns79402:0crwdne79402:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37563,7 +37623,7 @@ msgstr "crwdns79412:0crwdne79412:0"
msgid "Please select Customer first"
msgstr "crwdns79414:0crwdne79414:0"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "crwdns79416:0crwdne79416:0"
@@ -37572,8 +37632,8 @@ msgstr "crwdns79416:0crwdne79416:0"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "crwdns79418:0{0}crwdne79418:0"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "crwdns79420:0crwdne79420:0"
@@ -37605,11 +37665,11 @@ msgstr "crwdns79428:0crwdne79428:0"
msgid "Please select Price List"
msgstr "crwdns79430:0crwdne79430:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "crwdns79432:0{0}crwdne79432:0"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "crwdns79434:0crwdne79434:0"
@@ -37625,7 +37685,7 @@ msgstr "crwdns79438:0{0}crwdne79438:0"
msgid "Please select Stock Asset Account"
msgstr "crwdns155490:0crwdne155490:0"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "crwdns79442:0{0}crwdne79442:0"
@@ -37642,7 +37702,7 @@ msgstr "crwdns79446:0crwdne79446:0"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "crwdns79448:0crwdne79448:0"
@@ -37666,7 +37726,7 @@ msgstr "crwdns79456:0crwdne79456:0"
msgid "Please select a Warehouse"
msgstr "crwdns111900:0crwdne111900:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "crwdns79458:0crwdne79458:0"
@@ -37739,11 +37799,15 @@ msgstr "crwdns79480:0{0}crwdnd79480:0{1}crwdne79480:0"
msgid "Please select an item code before setting the warehouse."
msgstr "crwdns142838:0crwdne142838:0"
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr "crwdns201925:0crwdne201925:0"
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "crwdns157478:0crwdne157478:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr "crwdns201321:0crwdne201321:0"
@@ -37763,7 +37827,7 @@ msgstr "crwdns197216:0crwdne197216:0"
msgid "Please select atleast one item to continue"
msgstr "crwdns155386:0crwdne155386:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "crwdns157216:0crwdne157216:0"
@@ -37821,7 +37885,7 @@ msgstr "crwdns79494:0crwdne79494:0"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "crwdns79496:0crwdne79496:0"
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "crwdns162004:0crwdne162004:0"
@@ -37850,7 +37914,7 @@ msgstr "crwdns79504:0crwdne79504:0"
msgid "Please select weekly off day"
msgstr "crwdns79506:0crwdne79506:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "crwdns79510:0{0}crwdne79510:0"
@@ -37859,11 +37923,11 @@ msgstr "crwdns79510:0{0}crwdne79510:0"
msgid "Please set 'Apply Additional Discount On'"
msgstr "crwdns79512:0crwdne79512:0"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "crwdns79514:0{0}crwdne79514:0"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "crwdns79516:0{0}crwdne79516:0"
@@ -37875,7 +37939,7 @@ msgstr "crwdns148820:0{0}crwdnd148820:0{1}crwdne148820:0"
msgid "Please set Account"
msgstr "crwdns79518:0crwdne79518:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "crwdns111902:0crwdne111902:0"
@@ -37905,7 +37969,7 @@ msgstr "crwdns79524:0crwdne79524:0"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "crwdns158346:0crwdne158346:0"
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "crwdns79526:0{0}crwdnd79526:0{1}crwdne79526:0"
@@ -37923,7 +37987,7 @@ msgstr "crwdns79530:0%scrwdne79530:0"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "crwdns79532:0%scrwdne79532:0"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "crwdns154922:0{0}crwdne154922:0"
@@ -37969,7 +38033,7 @@ msgstr "crwdns79548:0crwdne79548:0"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "crwdns79550:0crwdne79550:0"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "crwdns79554:0{0}crwdne79554:0"
@@ -38006,23 +38070,23 @@ msgstr "crwdns79566:0crwdne79566:0"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "crwdns154248:0{0}crwdne154248:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "crwdns79568:0{0}crwdne79568:0"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "crwdns79570:0crwdne79570:0"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "crwdns79572:0crwdne79572:0"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "crwdns79574:0crwdne79574:0"
@@ -38051,7 +38115,7 @@ msgstr "crwdns79582:0{0}crwdnd79582:0{1}crwdne79582:0"
msgid "Please set filter based on Item or Warehouse"
msgstr "crwdns79586:0crwdne79586:0"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "crwdns79590:0crwdne79590:0"
@@ -38059,7 +38123,7 @@ msgstr "crwdns79590:0crwdne79590:0"
msgid "Please set opening number of booked depreciations"
msgstr "crwdns154924:0crwdne154924:0"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "crwdns79592:0crwdne79592:0"
@@ -38071,15 +38135,15 @@ msgstr "crwdns79594:0crwdne79594:0"
msgid "Please set the Default Cost Center in {0} company."
msgstr "crwdns79596:0{0}crwdne79596:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "crwdns79598:0crwdne79598:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "crwdns154391:0crwdne154391:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "crwdns154393:0crwdne154393:0"
@@ -38118,7 +38182,7 @@ msgstr "crwdns79612:0{0}crwdnd79612:0{1}crwdne79612:0"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "crwdns151910:0{0}crwdnd151910:0{1}crwdne151910:0"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "crwdns151138:0{0}crwdnd151138:0{1}crwdnd151138:0{2}crwdne151138:0"
@@ -38140,7 +38204,7 @@ msgstr "crwdns79620:0crwdne79620:0"
msgid "Please specify Company to proceed"
msgstr "crwdns79622:0crwdne79622:0"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "crwdns79624:0{0}crwdnd79624:0{1}crwdne79624:0"
@@ -38153,7 +38217,7 @@ msgstr "crwdns152324:0{0}crwdne152324:0"
msgid "Please specify at least one attribute in the Attributes table"
msgstr "crwdns79628:0crwdne79628:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "crwdns79630:0crwdne79630:0"
@@ -38258,8 +38322,8 @@ msgstr "crwdns136278:0crwdne136278:0"
msgid "Post Title Key"
msgstr "crwdns136280:0crwdne136280:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "crwdns79678:0crwdne79678:0"
@@ -38324,7 +38388,7 @@ msgstr "crwdns201327:0crwdne201327:0"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38342,7 +38406,7 @@ msgstr "crwdns201327:0crwdne201327:0"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38464,10 +38528,6 @@ msgstr "crwdns136282:0crwdne136282:0"
msgid "Posting Time"
msgstr "crwdns79742:0crwdne79742:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "crwdns79774:0crwdne79774:0"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr "crwdns201329:0crwdne201329:0"
@@ -38541,18 +38601,23 @@ msgstr "crwdns112724:0{0}crwdne112724:0"
msgid "Pre Sales"
msgstr "crwdns79778:0crwdne79778:0"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr "crwdns201333:0crwdne201333:0"
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr "crwdns201335:0crwdne201335:0"
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr "crwdns201337:0crwdne201337:0"
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr "crwdns201983:0crwdne201983:0"
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "crwdns79784:0crwdne79784:0"
@@ -38725,6 +38790,7 @@ msgstr "crwdns136306:0crwdne136306:0"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38748,6 +38814,7 @@ msgstr "crwdns136306:0crwdne136306:0"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38799,7 +38866,7 @@ msgstr "crwdns79870:0crwdne79870:0"
msgid "Price List Currency"
msgstr "crwdns136308:0crwdne136308:0"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "crwdns79894:0crwdne79894:0"
@@ -39154,7 +39221,7 @@ msgstr "crwdns80160:0crwdne80160:0"
msgid "Print Receipt on Order Complete"
msgstr "crwdns152160:0crwdne152160:0"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "crwdns80182:0crwdne80182:0"
@@ -39163,8 +39230,8 @@ msgstr "crwdns80182:0crwdne80182:0"
msgid "Print Without Amount"
msgstr "crwdns136350:0crwdne136350:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "crwdns80186:0crwdne80186:0"
@@ -39172,7 +39239,7 @@ msgstr "crwdns80186:0crwdne80186:0"
msgid "Print settings updated in respective print format"
msgstr "crwdns80188:0crwdne80188:0"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "crwdns80190:0crwdne80190:0"
@@ -39275,10 +39342,6 @@ msgstr "crwdns136362:0crwdne136362:0"
msgid "Procedure"
msgstr "crwdns136364:0crwdne136364:0"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "crwdns155924:0crwdne155924:0"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39332,7 +39395,7 @@ msgstr "crwdns80274:0crwdne80274:0"
msgid "Process Loss Qty"
msgstr "crwdns80276:0crwdne80276:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "crwdns154429:0crwdne154429:0"
@@ -39413,6 +39476,10 @@ msgstr "crwdns80310:0crwdne80310:0"
msgid "Process in Single Transaction"
msgstr "crwdns136374:0crwdne136374:0"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr "crwdns201873:0crwdne201873:0"
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39508,8 +39575,8 @@ msgstr "crwdns136382:0crwdne136382:0"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39574,7 +39641,7 @@ msgstr "crwdns136392:0crwdne136392:0"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "crwdns80386:0crwdne80386:0"
@@ -39788,7 +39855,7 @@ msgstr "crwdns80478:0crwdne80478:0"
msgid "Progress (%)"
msgstr "crwdns80480:0crwdne80480:0"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "crwdns80580:0crwdne80580:0"
@@ -39832,7 +39899,7 @@ msgstr "crwdns80596:0crwdne80596:0"
msgid "Project Summary"
msgstr "crwdns80600:0crwdne80600:0"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "crwdns80602:0{0}crwdne80602:0"
@@ -39963,7 +40030,7 @@ msgstr "crwdns80658:0crwdne80658:0"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40109,7 +40176,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "crwdns80714:0crwdne80714:0"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "crwdns195052:0crwdne195052:0"
@@ -40124,7 +40191,7 @@ msgstr "crwdns136418:0crwdne136418:0"
msgid "Providing"
msgstr "crwdns136422:0crwdne136422:0"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "crwdns143506:0crwdne143506:0"
@@ -40196,8 +40263,9 @@ msgstr "crwdns143508:0crwdne143508:0"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40520,7 +40588,7 @@ msgstr "crwdns159924:0{0}crwdne159924:0"
msgid "Purchase Order {0} is not submitted"
msgstr "crwdns80886:0{0}crwdne80886:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "crwdns80888:0crwdne80888:0"
@@ -40535,7 +40603,7 @@ msgstr "crwdns163964:0crwdne163964:0"
msgid "Purchase Orders Items Overdue"
msgstr "crwdns136434:0crwdne136434:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "crwdns80892:0{0}crwdnd80892:0{1}crwdne80892:0"
@@ -40550,7 +40618,7 @@ msgstr "crwdns136436:0crwdne136436:0"
msgid "Purchase Orders to Receive"
msgstr "crwdns136438:0crwdne136438:0"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "crwdns80898:0{0}crwdne80898:0"
@@ -40684,7 +40752,7 @@ msgstr "crwdns80956:0crwdne80956:0"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "crwdns80958:0crwdne80958:0"
@@ -40782,6 +40850,7 @@ msgstr "crwdns81004:0crwdne81004:0"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40791,10 +40860,6 @@ msgstr "crwdns81004:0crwdne81004:0"
msgid "Purpose"
msgstr "crwdns81014:0crwdne81014:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "crwdns81028:0{0}crwdne81028:0"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40850,6 +40915,7 @@ msgstr "crwdns201353:0crwdne201353:0"
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40898,6 +40964,7 @@ msgstr "crwdns201353:0crwdne201353:0"
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41006,11 +41073,11 @@ msgstr "crwdns81106:0crwdne81106:0"
msgid "Qty To Manufacture"
msgstr "crwdns81108:0crwdne81108:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "crwdns127510:0{0}crwdnd127510:0{2}crwdnd127510:0{1}crwdnd127510:0{2}crwdne127510:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "crwdns162008:0{0}crwdnd162008:0{1}crwdne162008:0"
@@ -41061,8 +41128,8 @@ msgstr "crwdns136470:0crwdne136470:0"
msgid "Qty for which recursion isn't applicable."
msgstr "crwdns136472:0crwdne136472:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "crwdns81138:0{0}crwdne81138:0"
@@ -41117,8 +41184,8 @@ msgstr "crwdns200038:0crwdne200038:0"
msgid "Qty to Fetch"
msgstr "crwdns81162:0crwdne81162:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "crwdns81164:0crwdne81164:0"
@@ -41354,17 +41421,17 @@ msgstr "crwdns81266:0crwdne81266:0"
msgid "Quality Inspection Template Name"
msgstr "crwdns136490:0crwdne136490:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "crwdns195188:0{0}crwdnd195188:0{1}crwdne195188:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "crwdns195190:0{0}crwdnd195190:0{1}crwdne195190:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "crwdns195192:0{0}crwdnd195192:0{1}crwdne195192:0"
@@ -41378,7 +41445,7 @@ msgstr "crwdns81282:0crwdne81282:0"
msgid "Quality Inspections"
msgstr "crwdns163966:0crwdne163966:0"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "crwdns81284:0crwdne81284:0"
@@ -41510,7 +41577,7 @@ msgstr "crwdns201355:0crwdne201355:0"
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41645,7 +41712,7 @@ msgstr "crwdns199588:0crwdne199588:0"
msgid "Quantity must be less than or equal to {0}"
msgstr "crwdns199590:0{0}crwdne199590:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "crwdns81398:0{0}crwdne81398:0"
@@ -41655,21 +41722,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "crwdns81402:0{0}crwdnd81402:0{1}crwdne81402:0"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "crwdns81404:0crwdne81404:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "crwdns81408:0crwdne81408:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "crwdns81410:0{0}crwdne81410:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "crwdns81412:0crwdne81412:0"
@@ -41692,7 +41759,7 @@ msgstr "crwdns112592:0crwdne112592:0"
msgid "Quart Liquid (US)"
msgstr "crwdns112594:0crwdne112594:0"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "crwdns81420:0{0}crwdnd81420:0{1}crwdne81420:0"
@@ -41811,11 +41878,11 @@ msgstr "crwdns136518:0crwdne136518:0"
msgid "Quotation Trends"
msgstr "crwdns81502:0crwdne81502:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "crwdns81504:0{0}crwdne81504:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "crwdns81506:0{0}crwdnd81506:0{1}crwdne81506:0"
@@ -42122,7 +42189,7 @@ msgstr "crwdns136556:0crwdne136556:0"
msgid "Rate at which this tax is applied"
msgstr "crwdns136558:0crwdne136558:0"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "crwdns160678:0crwdne160678:0"
@@ -42288,7 +42355,7 @@ msgstr "crwdns136582:0crwdne136582:0"
msgid "Raw Materials Consumption"
msgstr "crwdns151698:0crwdne151698:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "crwdns195054:0crwdne195054:0"
@@ -42327,12 +42394,6 @@ msgstr "crwdns81796:0crwdne81796:0"
msgid "Raw Materials to Customer"
msgstr "crwdns160336:0crwdne160336:0"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "crwdns155926:0crwdne155926:0"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42341,7 +42402,7 @@ msgstr "crwdns161488:0crwdne161488:0"
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42522,7 +42583,7 @@ msgid "Receivable / Payable Account"
msgstr "crwdns136632:0crwdne136632:0"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42983,7 +43044,7 @@ msgstr "crwdns201389:0crwdne201389:0"
msgid "Reference #{0} dated {1}"
msgstr "crwdns82078:0#{0}crwdnd82078:0{1}crwdne82078:0"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "crwdns82084:0crwdne82084:0"
@@ -43147,11 +43208,11 @@ msgstr "crwdns82202:0{0}crwdnd82202:0{1}crwdnd82202:0{2}crwdne82202:0"
msgid "References"
msgstr "crwdns82204:0crwdne82204:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "crwdns111936:0crwdne111936:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "crwdns111938:0crwdne111938:0"
@@ -43313,7 +43374,7 @@ msgid "Remaining Amount"
msgstr "crwdns154926:0crwdne154926:0"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "crwdns82290:0crwdne82290:0"
@@ -43371,7 +43432,7 @@ msgstr "crwdns82292:0crwdne82292:0"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43435,7 +43496,7 @@ msgstr "crwdns136754:0crwdne136754:0"
msgid "Rename Log"
msgstr "crwdns136756:0crwdne136756:0"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "crwdns82346:0crwdne82346:0"
@@ -43452,7 +43513,7 @@ msgstr "crwdns154658:0{0}crwdne154658:0"
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "crwdns154660:0{0}crwdne154660:0"
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "crwdns82350:0{0}crwdne82350:0"
@@ -43575,7 +43636,7 @@ msgstr "crwdns161176:0crwdne161176:0"
msgid "Report Type is mandatory"
msgstr "crwdns82414:0crwdne82414:0"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "crwdns127512:0crwdne127512:0"
@@ -43820,7 +43881,7 @@ msgstr "crwdns136804:0crwdne136804:0"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44001,7 +44062,7 @@ msgstr "crwdns136812:0crwdne136812:0"
msgid "Research"
msgstr "crwdns82586:0crwdne82586:0"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "crwdns82588:0crwdne82588:0"
@@ -44046,7 +44107,7 @@ msgstr "crwdns154934:0crwdne154934:0"
msgid "Reservation Based On"
msgstr "crwdns82600:0crwdne82600:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44090,7 +44151,7 @@ msgstr "crwdns154938:0crwdne154938:0"
msgid "Reserved"
msgstr "crwdns136820:0crwdne136820:0"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "crwdns161310:0crwdne161310:0"
@@ -44160,14 +44221,14 @@ msgstr "crwdns82636:0crwdne82636:0"
msgid "Reserved Quantity for Production"
msgstr "crwdns82638:0crwdne82638:0"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "crwdns82640:0crwdne82640:0"
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44176,13 +44237,13 @@ msgstr "crwdns82640:0crwdne82640:0"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "crwdns82642:0crwdne82642:0"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "crwdns82646:0crwdne82646:0"
@@ -44448,7 +44509,7 @@ msgstr "crwdns136876:0crwdne136876:0"
msgid "Resume"
msgstr "crwdns82750:0crwdne82750:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "crwdns82752:0crwdne82752:0"
@@ -44473,8 +44534,8 @@ msgstr "crwdns143518:0crwdne143518:0"
msgid "Retain Sample"
msgstr "crwdns136878:0crwdne136878:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "crwdns82760:0crwdne82760:0"
@@ -44549,7 +44610,7 @@ msgstr "crwdns136888:0crwdne136888:0"
msgid "Return Against Subcontracting Receipt"
msgstr "crwdns136890:0crwdne136890:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "crwdns82800:0crwdne82800:0"
@@ -44585,7 +44646,7 @@ msgstr "crwdns82812:0crwdne82812:0"
msgid "Return Raw Material to Customer"
msgstr "crwdns160340:0crwdne160340:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "crwdns154944:0crwdne154944:0"
@@ -44683,8 +44744,8 @@ msgstr "crwdns82844:0crwdne82844:0"
msgid "Revaluation Journals"
msgstr "crwdns82848:0crwdne82848:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "crwdns148824:0crwdne148824:0"
@@ -44916,7 +44977,7 @@ msgstr "crwdns82916:0{0}crwdne82916:0"
msgid "Root Type is mandatory"
msgstr "crwdns82918:0crwdne82918:0"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "crwdns82920:0crwdne82920:0"
@@ -44935,8 +44996,8 @@ msgstr "crwdns136930:0crwdne136930:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45116,21 +45177,21 @@ msgstr "crwdns83038:0{0}crwdnd83038:0{1}crwdnd83038:0{2}crwdne83038:0"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "crwdns83040:0{0}crwdnd83040:0{1}crwdnd83040:0{2}crwdnd83040:0{3}crwdne83040:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "crwdns156066:0{0}crwdne156066:0"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "crwdns83042:0#{0}crwdne83042:0"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "crwdns83044:0#{0}crwdne83044:0"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "crwdns83046:0#{0}crwdnd83046:0{1}crwdnd83046:0{2}crwdne83046:0"
@@ -45151,7 +45212,7 @@ msgstr "crwdns83052:0#{0}crwdne83052:0"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "crwdns83056:0#{0}crwdnd83056:0{1}crwdne83056:0"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "crwdns83058:0#{0}crwdnd83058:0{1}crwdnd83058:0{2}crwdne83058:0"
@@ -45212,31 +45273,31 @@ msgstr "crwdns160350:0#{0}crwdnd160350:0{1}crwdne160350:0"
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "crwdns164242:0#{0}crwdne164242:0"
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "crwdns83074:0#{0}crwdnd83074:0{1}crwdne83074:0"
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "crwdns83076:0#{0}crwdnd83076:0{1}crwdne83076:0"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "crwdns83078:0#{0}crwdnd83078:0{1}crwdne83078:0"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "crwdns83080:0#{0}crwdnd83080:0{1}crwdne83080:0"
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "crwdns164244:0#{0}crwdnd164244:0{1}crwdne164244:0"
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "crwdns154952:0#{0}crwdnd154952:0{1}crwdne154952:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "crwdns83088:0#{0}crwdnd83088:0{1}crwdnd83088:0{2}crwdnd83088:0{3}crwdne83088:0"
@@ -45286,11 +45347,11 @@ msgstr "crwdns160454:0#{0}crwdnd160454:0{1}crwdnd160454:0{2}crwdnd160454:0{3}crw
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "crwdns160456:0#{0}crwdnd160456:0{1}crwdne160456:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "crwdns160458:0#{0}crwdnd160458:0{1}crwdne160458:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "crwdns160460:0#{0}crwdnd160460:0{1}crwdne160460:0"
@@ -45298,7 +45359,7 @@ msgstr "crwdns160460:0#{0}crwdnd160460:0{1}crwdne160460:0"
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "crwdns160352:0#{0}crwdnd160352:0{1}crwdne160352:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "crwdns160462:0#{0}crwdnd160462:0{1}crwdnd160462:0{2}crwdne160462:0"
@@ -45315,7 +45376,7 @@ msgstr "crwdns160464:0#{0}crwdnd160464:0{1}crwdnd160464:0{2}crwdne160464:0"
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "crwdns164248:0#{0}crwdnd164248:0{1}crwdne164248:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "crwdns83110:0#{0}crwdnd83110:0{1}crwdne83110:0"
@@ -45339,22 +45400,22 @@ msgstr "crwdns83116:0#{0}crwdnd83116:0{1}crwdnd83116:0{2}crwdne83116:0"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "crwdns163866:0#{0}crwdnd163866:0{1}crwdnd163866:0{2}crwdne163866:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "crwdns83118:0#{0}crwdne83118:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "crwdns83120:0#{0}crwdnd83120:0{1}crwdne83120:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "crwdns83122:0#{0}crwdnd83122:0{1}crwdne83122:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "crwdns136954:0#{0}crwdnd136954:0{1}crwdne136954:0"
@@ -45383,7 +45444,7 @@ msgstr "crwdns164250:0#{0}crwdne164250:0"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "crwdns83130:0#{0}crwdne83130:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "crwdns154780:0#{0}crwdne154780:0"
@@ -45391,7 +45452,7 @@ msgstr "crwdns154780:0#{0}crwdne154780:0"
msgid "Row #{0}: Item added"
msgstr "crwdns83132:0#{0}crwdne83132:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "crwdns164252:0#{0}crwdnd164252:0{1}crwdnd164252:0{2}crwdnd164252:0{3}crwdnd164252:0{4}crwdne164252:0"
@@ -45419,7 +45480,7 @@ msgstr "crwdns162016:0#{0}crwdnd162016:0{1}crwdnd162016:0{2}crwdnd162016:0{3}crw
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "crwdns160466:0#{0}crwdnd160466:0{1}crwdne160466:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "crwdns83138:0#{0}crwdnd83138:0{1}crwdne83138:0"
@@ -45460,7 +45521,7 @@ msgstr "crwdns154958:0#{0}crwdne154958:0"
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "crwdns154960:0#{0}crwdne154960:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "crwdns83148:0#{0}crwdne83148:0"
@@ -45472,10 +45533,6 @@ msgstr "crwdns83150:0#{0}crwdnd83150:0{1}crwdnd83150:0{2}crwdne83150:0"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "crwdns154962:0#{0}crwdnd154962:0{1}crwdne154962:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "crwdns83152:0#{0}crwdnd83152:0{1}crwdnd83152:0{2}crwdnd83152:0{3}crwdnd83152:0{4}crwdne83152:0"
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45497,11 +45554,11 @@ msgstr "crwdns160470:0#{0}crwdne160470:0"
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "crwdns111962:0#{0}crwdne111962:0"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "crwdns83162:0#{0}crwdne83162:0"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "crwdns83164:0#{0}crwdne83164:0"
@@ -45523,15 +45580,15 @@ msgstr "crwdns83168:0#{0}crwdne83168:0"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "crwdns83170:0#{0}crwdnd83170:0{1}crwdnd83170:0{2}crwdnd83170:0{3}crwdnd83170:0{4}crwdne83170:0"
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "crwdns151832:0#{0}crwdnd151832:0{1}crwdne151832:0"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "crwdns151834:0#{0}crwdnd151834:0{1}crwdnd151834:0{2}crwdne151834:0"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "crwdns151836:0#{0}crwdnd151836:0{1}crwdnd151836:0{2}crwdne151836:0"
@@ -45539,7 +45596,7 @@ msgstr "crwdns151836:0#{0}crwdnd151836:0{1}crwdnd151836:0{2}crwdne151836:0"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "crwdns158348:0#{0}crwdnd158348:0{1}crwdne158348:0"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "crwdns83172:0#{0}crwdnd83172:0{1}crwdne83172:0"
@@ -45555,18 +45612,18 @@ msgstr "crwdns198342:0#{0}crwdnd198342:0{1}crwdnd198342:0{2}crwdne198342:0"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "crwdns83174:0#{0}crwdnd83174:0{1}crwdne83174:0"
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "crwdns83176:0#{0}crwdnd83176:0{1}crwdnd83176:0{2}crwdnd83176:0{3}crwdnd83176:0{4}crwdne83176:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "crwdns83180:0#{0}crwdne83180:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "crwdns83182:0#{0}crwdne83182:0"
@@ -45605,7 +45662,7 @@ msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n"
"\t\t\t\t\tthis validation."
msgstr "crwdns195196:0#{0}crwdnd195196:0{1}crwdnd195196:0{2}crwdnd195196:0{3}crwdnd195196:0{4}crwdnd195196:0{5}crwdnd195196:0{6}crwdne195196:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "crwdns156068:0#{0}crwdnd156068:0{1}crwdnd156068:0{2}crwdnd156068:0{3}crwdne156068:0"
@@ -45625,19 +45682,19 @@ msgstr "crwdns83200:0#{0}crwdnd83200:0{1}crwdne83200:0"
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "crwdns160372:0#{0}crwdnd160372:0{1}crwdne160372:0"
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "crwdns83202:0#{0}crwdne83202:0"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "crwdns83204:0#{0}crwdne83204:0"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "crwdns83206:0#{0}crwdne83206:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "crwdns83208:0#{0}crwdnd83208:0{1}crwdne83208:0"
@@ -45649,19 +45706,19 @@ msgstr "crwdns158350:0#{0}crwdnd158350:0{1}crwdne158350:0"
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "crwdns160374:0#{0}crwdnd160374:0{1}crwdne160374:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "crwdns160376:0#{0}crwdnd160376:0{1}crwdnd160376:0{2}crwdne160376:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "crwdns160472:0#{0}crwdnd160472:0{1}crwdnd160472:0{2}crwdnd160472:0{3}crwdne160472:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "crwdns160680:0#{0}crwdne160680:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "crwdns160682:0#{0}crwdne160682:0"
@@ -45677,6 +45734,10 @@ msgstr "crwdns83210:0#{0}crwdne83210:0"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "crwdns83212:0#{0}crwdnd83212:0{1}crwdnd83212:0{2}crwdne83212:0"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr "crwdns201875:0#{0}crwdne201875:0"
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "crwdns83214:0#{0}crwdnd83214:0{1}crwdnd83214:0{2}crwdne83214:0"
@@ -45693,7 +45754,7 @@ msgstr "crwdns83218:0#{0}crwdnd83218:0{1}crwdne83218:0"
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "crwdns83220:0#{0}crwdnd83220:0{1}crwdne83220:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "crwdns83222:0#{0}crwdnd83222:0{1}crwdnd83222:0{2}crwdne83222:0"
@@ -45706,7 +45767,7 @@ msgstr "crwdns83224:0#{0}crwdnd83224:0{1}crwdnd83224:0{2}crwdnd83224:0{3}crwdne8
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "crwdns83226:0#{0}crwdnd83226:0{1}crwdnd83226:0{2}crwdne83226:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "crwdns160378:0#{0}crwdnd160378:0{1}crwdnd160378:0{2}crwdnd160378:0{3}crwdnd160378:0{4}crwdne160378:0"
@@ -45718,7 +45779,7 @@ msgstr "crwdns160380:0#{0}crwdnd160380:0{1}crwdne160380:0"
msgid "Row #{0}: The batch {1} has already expired."
msgstr "crwdns83228:0#{0}crwdnd83228:0{1}crwdne83228:0"
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "crwdns127848:0#{0}crwdnd127848:0{1}crwdnd127848:0{2}crwdne127848:0"
@@ -45754,7 +45815,7 @@ msgstr "crwdns83234:0#{0}crwdnd83234:0{1}crwdne83234:0"
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "crwdns83236:0#{0}crwdnd83236:0{1}crwdne83236:0"
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "crwdns83240:0#{0}crwdnd83240:0{1}crwdnd83240:0{2}crwdne83240:0"
@@ -45770,7 +45831,7 @@ msgstr "crwdns83244:0#{0}crwdnd83244:0{1}crwdnd83244:0{2}crwdne83244:0"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "crwdns83246:0#{0}crwdnd83246:0{1}crwdnd83246:0{2}crwdnd83246:0{3}crwdnd83246:0{1}crwdne83246:0"
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "crwdns197236:0#{0}crwdnd197236:0{1}crwdne197236:0"
@@ -45871,7 +45932,7 @@ msgstr "crwdns83278:0crwdne83278:0"
msgid "Row #{}: {} {} does not exist."
msgstr "crwdns83280:0crwdne83280:0"
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "crwdns83282:0crwdne83282:0"
@@ -45879,7 +45940,7 @@ msgstr "crwdns83282:0crwdne83282:0"
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "crwdns83284:0{0}crwdnd83284:0{1}crwdnd83284:0{2}crwdne83284:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "crwdns83286:0{0}crwdnd83286:0{1}crwdne83286:0"
@@ -45887,7 +45948,7 @@ msgstr "crwdns83286:0{0}crwdnd83286:0{1}crwdne83286:0"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "crwdns83288:0{0}crwdnd83288:0{1}crwdnd83288:0{2}crwdne83288:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "crwdns83292:0{0}crwdnd83292:0{1}crwdnd83292:0{2}crwdnd83292:0{3}crwdne83292:0"
@@ -45919,11 +45980,11 @@ msgstr "crwdns83306:0{0}crwdnd83306:0{1}crwdnd83306:0{2}crwdne83306:0"
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "crwdns83308:0{0}crwdnd83308:0{1}crwdnd83308:0{2}crwdne83308:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "crwdns111976:0{0}crwdnd111976:0{1}crwdnd111976:0{2}crwdnd111976:0{3}crwdne111976:0"
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "crwdns83310:0{0}crwdnd83310:0{1}crwdne83310:0"
@@ -45940,7 +46001,7 @@ msgstr "crwdns161490:0{0}crwdnd161490:0{1}crwdnd161490:0{2}crwdnd161490:0{3}crwd
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "crwdns83314:0{0}crwdne83314:0"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "crwdns83316:0{0}crwdnd83316:0{1}crwdnd83316:0{2}crwdne83316:0"
@@ -45960,7 +46021,7 @@ msgstr "crwdns83322:0{0}crwdnd83322:0#{1}crwdnd83322:0{2}crwdne83322:0"
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "crwdns83324:0{0}crwdnd83324:0{1}crwdne83324:0"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "crwdns83326:0{0}crwdnd83326:0{1}crwdnd83326:0{2}crwdne83326:0"
@@ -45968,7 +46029,7 @@ msgstr "crwdns83326:0{0}crwdnd83326:0{1}crwdnd83326:0{2}crwdne83326:0"
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "crwdns160384:0{0}crwdnd160384:0{1}crwdne160384:0"
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "crwdns83330:0{0}crwdne83330:0"
@@ -46013,16 +46074,16 @@ msgstr "crwdns83346:0{0}crwdnd83346:0{1}crwdne83346:0"
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "crwdns83348:0{0}crwdne83348:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "crwdns83350:0{0}crwdnd83350:0{1}crwdnd83350:0{2}crwdne83350:0"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "crwdns83352:0{0}crwdne83352:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "crwdns83354:0{0}crwdne83354:0"
@@ -46038,7 +46099,7 @@ msgstr "crwdns83358:0{0}crwdnd83358:0{1}crwdne83358:0"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "crwdns83360:0{0}crwdne83360:0"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "crwdns83362:0{0}crwdne83362:0"
@@ -46062,7 +46123,7 @@ msgstr "crwdns151960:0{0}crwdnd151960:0{1}crwdne151960:0"
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "crwdns199162:0{0}crwdnd199162:0{1}crwdne199162:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "crwdns83368:0{0}crwdnd83368:0{1}crwdne83368:0"
@@ -46130,7 +46191,7 @@ msgstr "crwdns83398:0{0}crwdnd83398:0{1}crwdne83398:0"
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "crwdns83400:0{0}crwdnd83400:0{1}crwdnd83400:0{2}crwdne83400:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "crwdns83402:0{0}crwdne83402:0"
@@ -46142,10 +46203,6 @@ msgstr "crwdns83404:0{0}crwdne83404:0"
msgid "Row {0}: Quantity cannot be negative."
msgstr "crwdns152228:0{0}crwdne152228:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "crwdns83406:0{0}crwdnd83406:0{4}crwdnd83406:0{1}crwdnd83406:0{2}crwdnd83406:0{3}crwdne83406:0"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "crwdns164260:0{0}crwdnd164260:0{1}crwdnd164260:0{2}crwdne164260:0"
@@ -46154,11 +46211,11 @@ msgstr "crwdns164260:0{0}crwdnd164260:0{1}crwdnd164260:0{2}crwdne164260:0"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "crwdns83408:0{0}crwdne83408:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "crwdns83410:0{0}crwdnd83410:0{1}crwdne83410:0"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "crwdns83412:0{0}crwdne83412:0"
@@ -46170,11 +46227,11 @@ msgstr "crwdns151452:0{0}crwdnd151452:0{1}crwdnd151452:0{2}crwdne151452:0"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "crwdns163870:0{0}crwdnd163870:0{1}crwdnd163870:0{2}crwdne163870:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "crwdns83414:0{0}crwdnd83414:0{1}crwdne83414:0"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "crwdns149102:0{0}crwdnd149102:0{3}crwdnd149102:0{1}crwdnd149102:0{2}crwdne149102:0"
@@ -46182,11 +46239,11 @@ msgstr "crwdns149102:0{0}crwdnd149102:0{3}crwdnd149102:0{1}crwdnd149102:0{2}crwd
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "crwdns83416:0{0}crwdnd83416:0{1}crwdnd83416:0{2}crwdne83416:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "crwdns163972:0{0}crwdne163972:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "crwdns83420:0{0}crwdne83420:0"
@@ -46199,11 +46256,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "crwdns199166:0{0}crwdnd199166:0{1}crwdnd199166:0{2}crwdnd199166:0{3}crwdne199166:0"
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "crwdns151454:0{0}crwdnd151454:0{1}crwdne151454:0"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "crwdns83422:0{0}crwdnd83422:0{1}crwdnd83422:0{2}crwdne83422:0"
@@ -46215,7 +46272,7 @@ msgstr "crwdns83424:0{0}crwdnd83424:0{1}crwdnd83424:0{2}crwdne83424:0"
msgid "Row {0}: {1} must be greater than 0"
msgstr "crwdns83426:0{0}crwdnd83426:0{1}crwdne83426:0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "crwdns83428:0{0}crwdnd83428:0{1}crwdnd83428:0{2}crwdnd83428:0{3}crwdnd83428:0{4}crwdne83428:0"
@@ -46261,7 +46318,7 @@ msgstr "crwdns83444:0{0}crwdne83444:0"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "crwdns136958:0crwdne136958:0"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "crwdns83448:0{0}crwdne83448:0"
@@ -46269,7 +46326,7 @@ msgstr "crwdns83448:0{0}crwdne83448:0"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "crwdns83450:0{0}crwdne83450:0"
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "crwdns83452:0{0}crwdnd83452:0{1}crwdne83452:0"
@@ -46476,8 +46533,8 @@ msgstr "crwdns83518:0crwdne83518:0"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46499,8 +46556,8 @@ msgstr "crwdns136980:0crwdne136980:0"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46514,18 +46571,23 @@ msgstr "crwdns136980:0crwdne136980:0"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "crwdns83534:0crwdne83534:0"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr "crwdns201985:0crwdne201985:0"
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "crwdns83546:0crwdne83546:0"
@@ -46549,8 +46611,8 @@ msgstr "crwdns136982:0crwdne136982:0"
msgid "Sales Defaults"
msgstr "crwdns136984:0crwdne136984:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "crwdns83554:0crwdne83554:0"
@@ -46719,11 +46781,11 @@ msgstr "crwdns154674:0crwdne154674:0"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "crwdns154676:0crwdne154676:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "crwdns83606:0{0}crwdne83606:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "crwdns83608:0{0}crwdne83608:0"
@@ -46921,25 +46983,25 @@ msgstr "crwdns83690:0crwdne83690:0"
msgid "Sales Order required for Item {0}"
msgstr "crwdns83692:0{0}crwdne83692:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "crwdns83694:0{0}crwdnd83694:0{1}crwdnd83694:0{2}crwdnd83694:0{3}crwdne83694:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr "crwdns200212:0{0}crwdne200212:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "crwdns83696:0{0}crwdne83696:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "crwdns83698:0{0}crwdne83698:0"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "crwdns83700:0{0}crwdnd83700:0{1}crwdne83700:0"
@@ -46983,6 +47045,7 @@ msgstr "crwdns137000:0crwdne137000:0"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46995,7 +47058,7 @@ msgstr "crwdns137000:0crwdne137000:0"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47101,7 +47164,7 @@ msgstr "crwdns83756:0crwdne83756:0"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47194,7 +47257,7 @@ msgstr "crwdns83788:0crwdne83788:0"
msgid "Sales Representative"
msgstr "crwdns143522:0crwdne143522:0"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "crwdns83790:0crwdne83790:0"
@@ -47218,7 +47281,7 @@ msgstr "crwdns83798:0crwdne83798:0"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "crwdns83800:0crwdne83800:0"
@@ -47337,7 +47400,7 @@ msgstr "crwdns137018:0crwdne137018:0"
msgid "Same day"
msgstr "crwdns201441:0crwdne201441:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "crwdns83872:0crwdne83872:0"
@@ -47369,12 +47432,12 @@ msgstr "crwdns137022:0crwdne137022:0"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "crwdns83884:0crwdne83884:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "crwdns83888:0{0}crwdnd83888:0{1}crwdne83888:0"
@@ -47616,7 +47679,7 @@ msgstr "crwdns84022:0crwdne84022:0"
msgid "Scrap Warehouse"
msgstr "crwdns137074:0crwdne137074:0"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "crwdns148832:0crwdne148832:0"
@@ -47735,8 +47798,8 @@ msgstr "crwdns137084:0crwdne137084:0"
msgid "Secretary"
msgstr "crwdns143524:0crwdne143524:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "crwdns84074:0crwdne84074:0"
@@ -47774,7 +47837,7 @@ msgstr "crwdns84086:0crwdne84086:0"
msgid "Select Alternative Items for Sales Order"
msgstr "crwdns84088:0crwdne84088:0"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "crwdns84090:0crwdne84090:0"
@@ -47816,7 +47879,7 @@ msgstr "crwdns84106:0crwdne84106:0"
msgid "Select Company Address"
msgstr "crwdns162018:0crwdne162018:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "crwdns84108:0crwdne84108:0"
@@ -47852,7 +47915,7 @@ msgstr "crwdns84120:0crwdne84120:0"
msgid "Select Dispatch Address "
msgstr "crwdns154782:0crwdne154782:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "crwdns84124:0crwdne84124:0"
@@ -47877,7 +47940,7 @@ msgstr "crwdns84128:0crwdne84128:0"
msgid "Select Items based on Delivery Date"
msgstr "crwdns84130:0crwdne84130:0"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "crwdns84132:0crwdne84132:0"
@@ -47915,7 +47978,7 @@ msgstr "crwdns197248:0crwdne197248:0"
msgid "Select Possible Supplier"
msgstr "crwdns84140:0crwdne84140:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "crwdns84142:0crwdne84142:0"
@@ -47990,7 +48053,7 @@ msgstr "crwdns84172:0crwdne84172:0"
msgid "Select a Payment Method."
msgstr "crwdns155794:0crwdne155794:0"
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "crwdns84174:0crwdne84174:0"
@@ -48013,7 +48076,7 @@ msgstr "crwdns201459:0crwdne201459:0"
msgid "Select all"
msgstr "crwdns201461:0crwdne201461:0"
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "crwdns84180:0crwdne84180:0"
@@ -48029,9 +48092,9 @@ msgstr "crwdns111990:0crwdne111990:0"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "crwdns84184:0crwdne84184:0"
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "crwdns111992:0crwdne111992:0"
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr "crwdns201927:0crwdne201927:0"
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48047,7 +48110,7 @@ msgstr "crwdns137096:0crwdne137096:0"
msgid "Select date"
msgstr "crwdns201463:0crwdne201463:0"
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "crwdns84192:0{0}crwdnd84192:0{1}crwdne84192:0"
@@ -48079,7 +48142,7 @@ msgstr "crwdns137098:0crwdne137098:0"
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "crwdns84200:0crwdne84200:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "crwdns84202:0crwdne84202:0"
@@ -48096,7 +48159,7 @@ msgstr "crwdns84206:0crwdne84206:0"
msgid "Select the customer or supplier."
msgstr "crwdns84208:0crwdne84208:0"
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "crwdns148834:0crwdne148834:0"
@@ -48104,6 +48167,12 @@ msgstr "crwdns148834:0crwdne148834:0"
msgid "Select the date and your timezone"
msgstr "crwdns84210:0crwdne84210:0"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr "crwdns201987:0crwdne201987:0"
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "crwdns84212:0crwdne84212:0"
@@ -48131,7 +48200,7 @@ msgstr "crwdns137100:0crwdne137100:0"
msgid "Selected POS Opening Entry should be open."
msgstr "crwdns84222:0crwdne84222:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "crwdns84224:0crwdne84224:0"
@@ -48162,30 +48231,30 @@ msgstr "crwdns84230:0crwdne84230:0"
msgid "Self delivery"
msgstr "crwdns137104:0crwdne137104:0"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "crwdns84234:0crwdne84234:0"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "crwdns84236:0crwdne84236:0"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "crwdns164268:0crwdne164268:0"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "crwdns164270:0crwdne164270:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "crwdns164272:0{0}crwdnd164272:0{1}crwdne164272:0"
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "crwdns164274:0crwdne164274:0"
@@ -48438,7 +48507,7 @@ msgstr "crwdns84330:0crwdne84330:0"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48458,7 +48527,7 @@ msgstr "crwdns84330:0crwdne84330:0"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48503,7 +48572,7 @@ msgstr "crwdns149104:0crwdne149104:0"
msgid "Serial No Reserved"
msgstr "crwdns152348:0crwdne152348:0"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "crwdns163872:0crwdne163872:0"
@@ -48643,7 +48712,7 @@ msgstr "crwdns200214:0crwdne200214:0"
msgid "Serial Nos are created successfully"
msgstr "crwdns84434:0crwdne84434:0"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "crwdns84436:0crwdne84436:0"
@@ -48713,7 +48782,7 @@ msgstr "crwdns137154:0crwdne137154:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49127,7 +49196,7 @@ msgstr "crwdns137206:0crwdne137206:0"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "crwdns137208:0crwdne137208:0"
@@ -49146,8 +49215,8 @@ msgstr "crwdns160390:0crwdne160390:0"
msgid "Set Dropship Items Delivered Quantity"
msgstr "crwdns201471:0crwdne201471:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "crwdns137212:0crwdne137212:0"
@@ -49314,11 +49383,11 @@ msgstr "crwdns151704:0crwdne151704:0"
msgid "Set closing balance as per bank statement"
msgstr "crwdns201473:0crwdne201473:0"
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "crwdns84768:0crwdne84768:0"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "crwdns84770:0{0}crwdne84770:0"
@@ -49350,7 +49419,7 @@ msgstr "crwdns137238:0crwdne137238:0"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "crwdns137240:0crwdne137240:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "crwdns84780:0crwdne84780:0"
@@ -49461,7 +49530,7 @@ msgid "Setting up company"
msgstr "crwdns84818:0crwdne84818:0"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "crwdns155928:0{0}crwdne155928:0"
@@ -49481,6 +49550,10 @@ msgstr "crwdns112000:0crwdne112000:0"
msgid "Settled"
msgstr "crwdns84828:0crwdne84828:0"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr "crwdns201877:0crwdne201877:0"
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49673,7 +49746,7 @@ msgstr "crwdns137274:0crwdne137274:0"
msgid "Shipment details"
msgstr "crwdns137276:0crwdne137276:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "crwdns84896:0crwdne84896:0"
@@ -49711,7 +49784,7 @@ msgstr "crwdns137282:0crwdne137282:0"
msgid "Shipping Address Template"
msgstr "crwdns137284:0crwdne137284:0"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "crwdns154272:0{0}crwdne154272:0"
@@ -49854,8 +49927,8 @@ msgstr "crwdns137310:0crwdne137310:0"
msgid "Short-term Investments"
msgstr "crwdns161180:0crwdne161180:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "crwdns161182:0crwdne161182:0"
@@ -50187,7 +50260,7 @@ msgstr "crwdns137356:0crwdne137356:0"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "crwdns195896:0crwdne195896:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "crwdns85116:0{0}crwdnd85116:0{1}crwdnd85116:0{0}crwdnd85116:0{1}crwdne85116:0"
@@ -50232,7 +50305,7 @@ msgstr "crwdns137366:0crwdne137366:0"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50274,8 +50347,8 @@ msgstr "crwdns85146:0crwdne85146:0"
msgid "Soap & Detergent"
msgstr "crwdns143530:0crwdne143530:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "crwdns104658:0crwdne104658:0"
@@ -50299,7 +50372,7 @@ msgstr "crwdns112008:0crwdne112008:0"
msgid "Solvency Ratios"
msgstr "crwdns160110:0crwdne160110:0"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "crwdns160392:0crwdne160392:0"
@@ -50363,7 +50436,7 @@ msgstr "crwdns137386:0crwdne137386:0"
msgid "Source Location"
msgstr "crwdns137388:0crwdne137388:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "crwdns200042:0crwdne200042:0"
@@ -50372,11 +50445,11 @@ msgstr "crwdns200042:0crwdne200042:0"
msgid "Source Stock Entry (Manufacture)"
msgstr "crwdns200044:0crwdne200044:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "crwdns200046:0{0}crwdnd200046:0{1}crwdnd200046:0{2}crwdne200046:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "crwdns200048:0{0}crwdne200048:0"
@@ -50434,7 +50507,12 @@ msgstr "crwdns143534:0crwdne143534:0"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "crwdns152350:0{0}crwdne152350:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr "crwdns201879:0{0}crwdne201879:0"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "crwdns160474:0{0}crwdnd160474:0{1}crwdne160474:0"
@@ -50442,24 +50520,23 @@ msgstr "crwdns160474:0{0}crwdnd160474:0{1}crwdne160474:0"
msgid "Source and Target Location cannot be same"
msgstr "crwdns85222:0crwdne85222:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "crwdns85224:0{0}crwdne85224:0"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "crwdns85226:0crwdne85226:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "crwdns85228:0crwdne85228:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "crwdns85230:0{0}crwdne85230:0"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr "crwdns201881:0{0}crwdne201881:0"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr "crwdns201883:0{0}crwdne201883:0"
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50500,7 +50577,7 @@ msgstr "crwdns161320:0{0}crwdnd161320:0{1}crwdnd161320:0{2}crwdnd161320:0{3}crwd
msgid "Spent"
msgstr "crwdns201485:0crwdne201485:0"
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50508,7 +50585,7 @@ msgid "Split"
msgstr "crwdns85244:0crwdne85244:0"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "crwdns85246:0crwdne85246:0"
@@ -50532,7 +50609,7 @@ msgstr "crwdns137402:0crwdne137402:0"
msgid "Split Issue"
msgstr "crwdns85254:0crwdne85254:0"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "crwdns85256:0crwdne85256:0"
@@ -50544,6 +50621,11 @@ msgstr "crwdns154974:0crwdne154974:0"
msgid "Split across {} accounts"
msgstr "crwdns201487:0crwdne201487:0"
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr "crwdns201989:0crwdne201989:0"
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "crwdns85260:0{0}crwdnd85260:0{1}crwdnd85260:0{2}crwdne85260:0"
@@ -50616,13 +50698,13 @@ msgstr "crwdns85272:0crwdne85272:0"
msgid "Standard Description"
msgstr "crwdns85274:0crwdne85274:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "crwdns85276:0crwdne85276:0"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "crwdns85278:0crwdne85278:0"
@@ -50643,8 +50725,8 @@ msgstr "crwdns137412:0crwdne137412:0"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "crwdns112014:0crwdne112014:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "crwdns85284:0{0}crwdne85284:0"
@@ -50679,7 +50761,7 @@ msgstr "crwdns85318:0crwdne85318:0"
msgid "Start Date should be lower than End Date"
msgstr "crwdns148836:0crwdne148836:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "crwdns85322:0crwdne85322:0"
@@ -50808,7 +50890,7 @@ msgstr "crwdns137430:0crwdne137430:0"
msgid "Status and Reference"
msgstr "crwdns195792:0crwdne195792:0"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "crwdns85524:0crwdne85524:0"
@@ -50838,6 +50920,7 @@ msgstr "crwdns137432:0crwdne137432:0"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50846,8 +50929,8 @@ msgstr "crwdns85532:0crwdne85532:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50947,6 +51030,16 @@ msgstr "crwdns152048:0{0}crwdne152048:0"
msgid "Stock Closing Log"
msgstr "crwdns152050:0crwdne152050:0"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr "crwdns201885:0crwdne201885:0"
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50956,10 +51049,6 @@ msgstr "crwdns152050:0crwdne152050:0"
msgid "Stock Details"
msgstr "crwdns137442:0crwdne137442:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "crwdns85570:0{0}crwdnd85570:0{1}crwdne85570:0"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51023,7 +51112,7 @@ msgstr "crwdns85592:0crwdne85592:0"
msgid "Stock Entry {0} created"
msgstr "crwdns85594:0{0}crwdne85594:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "crwdns137448:0{0}crwdne137448:0"
@@ -51031,8 +51120,8 @@ msgstr "crwdns137448:0{0}crwdne137448:0"
msgid "Stock Entry {0} is not submitted"
msgstr "crwdns85596:0{0}crwdne85596:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "crwdns85598:0crwdne85598:0"
@@ -51110,8 +51199,8 @@ msgstr "crwdns85620:0crwdne85620:0"
msgid "Stock Levels HTML"
msgstr "crwdns200824:0crwdne200824:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "crwdns85622:0crwdne85622:0"
@@ -51214,8 +51303,8 @@ msgstr "crwdns85644:0crwdne85644:0"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51227,7 +51316,7 @@ msgstr "crwdns85646:0crwdne85646:0"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51239,7 +51328,7 @@ msgstr "crwdns85652:0crwdne85652:0"
msgid "Stock Reconciliation Item"
msgstr "crwdns85656:0crwdne85656:0"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "crwdns85658:0crwdne85658:0"
@@ -51264,9 +51353,9 @@ msgstr "crwdns85662:0crwdne85662:0"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51277,7 +51366,7 @@ msgstr "crwdns85662:0crwdne85662:0"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51302,10 +51391,10 @@ msgstr "crwdns85664:0crwdne85664:0"
msgid "Stock Reservation Entries Cancelled"
msgstr "crwdns85668:0crwdne85668:0"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "crwdns85670:0crwdne85670:0"
@@ -51333,7 +51422,7 @@ msgstr "crwdns85674:0crwdne85674:0"
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 "crwdns85676:0crwdne85676:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "crwdns85678:0crwdne85678:0"
@@ -51373,7 +51462,7 @@ msgstr "crwdns137456:0crwdne137456:0"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51488,7 +51577,7 @@ msgstr "crwdns137458:0crwdne137458:0"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51621,11 +51710,11 @@ msgstr "crwdns85782:0{0}crwdne85782:0"
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "crwdns85784:0{0}crwdne85784:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "crwdns112036:0{0}crwdne112036:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "crwdns112038:0crwdne112038:0"
@@ -51680,14 +51769,14 @@ msgstr "crwdns112624:0crwdne112624:0"
msgid "Stop Reason"
msgstr "crwdns85812:0crwdne85812:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "crwdns85824:0crwdne85824:0"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "crwdns85826:0crwdne85826:0"
@@ -51745,7 +51834,7 @@ msgstr "crwdns137480:0crwdne137480:0"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52007,7 +52096,7 @@ msgstr "crwdns85894:0crwdne85894:0"
msgid "Subcontracting Order Supplied Item"
msgstr "crwdns85896:0crwdne85896:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "crwdns85898:0{0}crwdne85898:0"
@@ -52096,7 +52185,7 @@ msgstr "crwdns197270:0crwdne197270:0"
msgid "Subdivision"
msgstr "crwdns137496:0crwdne137496:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "crwdns85940:0crwdne85940:0"
@@ -52117,7 +52206,7 @@ msgstr "crwdns137502:0crwdne137502:0"
msgid "Submit Journal Entries"
msgstr "crwdns137504:0crwdne137504:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "crwdns85950:0crwdne85950:0"
@@ -52271,7 +52360,7 @@ msgstr "crwdns86058:0crwdne86058:0"
msgid "Successfully Set Supplier"
msgstr "crwdns86060:0crwdne86060:0"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "crwdns86062:0crwdne86062:0"
@@ -52295,7 +52384,7 @@ msgstr "crwdns86074:0{0}crwdne86074:0"
msgid "Successfully linked to Customer"
msgstr "crwdns86076:0crwdne86076:0"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "crwdns86078:0crwdne86078:0"
@@ -52455,7 +52544,7 @@ msgstr "crwdns86128:0crwdne86128:0"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52553,6 +52642,7 @@ msgstr "crwdns137544:0crwdne137544:0"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52562,7 +52652,7 @@ msgstr "crwdns137544:0crwdne137544:0"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52577,6 +52667,7 @@ msgstr "crwdns137544:0crwdne137544:0"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52661,7 +52752,7 @@ msgstr "crwdns86278:0crwdne86278:0"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52696,8 +52787,6 @@ msgid "Supplier Number At Customer"
msgstr "crwdns154978:0crwdne154978:0"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "crwdns154980:0crwdne154980:0"
@@ -52749,7 +52838,7 @@ msgstr "crwdns137564:0crwdne137564:0"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52778,7 +52867,7 @@ msgstr "crwdns86336:0crwdne86336:0"
msgid "Supplier Quotation Item"
msgstr "crwdns86338:0crwdne86338:0"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "crwdns86342:0{0}crwdne86342:0"
@@ -52867,7 +52956,7 @@ msgstr "crwdns137570:0crwdne137570:0"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "crwdns137572:0crwdne137572:0"
@@ -52884,17 +52973,12 @@ msgstr "crwdns137574:0crwdne137574:0"
msgid "Supplier is required for all selected Items"
msgstr "crwdns161496:0crwdne161496:0"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "crwdns154982:0crwdne154982:0"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "crwdns112044:0crwdne112044:0"
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "crwdns86388:0{0}crwdnd86388:0{1}crwdne86388:0"
@@ -52907,8 +52991,8 @@ msgstr "crwdns86390:0crwdne86390:0"
msgid "Suppliers"
msgstr "crwdns137576:0crwdne137576:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "crwdns86396:0crwdne86396:0"
@@ -52999,7 +53083,7 @@ msgstr "crwdns86424:0crwdne86424:0"
msgid "Synchronize all accounts every hour"
msgstr "crwdns137586:0crwdne137586:0"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "crwdns152593:0crwdne152593:0"
@@ -53029,7 +53113,7 @@ msgstr "crwdns155672:0crwdne155672:0"
msgid "System will fetch all the entries if limit value is zero."
msgstr "crwdns137592:0crwdne137592:0"
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "crwdns86438:0{0}crwdnd86438:0{1}crwdne86438:0"
@@ -53050,10 +53134,16 @@ msgstr "crwdns86444:0crwdne86444:0"
msgid "TDS Deducted"
msgstr "crwdns151582:0crwdne151582:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "crwdns86446:0crwdne86446:0"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr "crwdns201991:0crwdne201991:0"
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53201,7 +53291,7 @@ msgstr "crwdns137636:0crwdne137636:0"
msgid "Target Warehouse Address Link"
msgstr "crwdns143542:0crwdne143542:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "crwdns152360:0crwdne152360:0"
@@ -53209,24 +53299,23 @@ msgstr "crwdns152360:0crwdne152360:0"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "crwdns160476:0{1}crwdnd160476:0{2}crwdne160476:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "crwdns137638:0crwdne137638:0"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr "crwdns201887:0{0}crwdne201887:0"
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "crwdns86566:0crwdne86566:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "crwdns160478:0{0}crwdnd160478:0{1}crwdne160478:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "crwdns86568:0{0}crwdne86568:0"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53343,8 +53432,8 @@ msgstr "crwdns137658:0crwdne137658:0"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "crwdns137660:0crwdne137660:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "crwdns86644:0crwdne86644:0"
@@ -53376,7 +53465,6 @@ msgstr "crwdns86644:0crwdne86644:0"
msgid "Tax Breakup"
msgstr "crwdns137662:0crwdne137662:0"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53398,7 +53486,6 @@ msgstr "crwdns137662:0crwdne137662:0"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53414,6 +53501,7 @@ msgstr "crwdns137662:0crwdne137662:0"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53425,8 +53513,8 @@ msgstr "crwdns86664:0crwdne86664:0"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "crwdns86700:0crwdne86700:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "crwdns161192:0crwdne161192:0"
@@ -53500,7 +53588,7 @@ msgstr "crwdns164276:0crwdne164276:0"
msgid "Tax Rates"
msgstr "crwdns137664:0crwdne137664:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "crwdns86730:0crwdne86730:0"
@@ -53518,7 +53606,7 @@ msgstr "crwdns161324:0crwdne161324:0"
msgid "Tax Rule"
msgstr "crwdns86732:0crwdne86732:0"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "crwdns86736:0{0}crwdne86736:0"
@@ -53533,7 +53621,7 @@ msgstr "crwdns137666:0crwdne137666:0"
msgid "Tax Template"
msgstr "crwdns195900:0crwdne195900:0"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "crwdns86740:0crwdne86740:0"
@@ -53852,7 +53940,7 @@ msgstr "crwdns137686:0crwdne137686:0"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "crwdns137688:0crwdne137688:0"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "crwdns148632:0#{0}crwdnd148632:0{1}crwdnd148632:0{2}crwdne148632:0"
@@ -53885,8 +53973,8 @@ msgstr "crwdns143546:0crwdne143546:0"
msgid "Telecommunications"
msgstr "crwdns143548:0crwdne143548:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "crwdns86884:0crwdne86884:0"
@@ -53937,13 +54025,13 @@ msgstr "crwdns86910:0crwdne86910:0"
msgid "Temporary"
msgstr "crwdns86912:0crwdne86912:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "crwdns86916:0crwdne86916:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "crwdns86918:0crwdne86918:0"
@@ -54125,7 +54213,7 @@ msgstr "crwdns143208:0crwdne143208:0"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54224,7 +54312,7 @@ msgstr "crwdns161194:0crwdne161194:0"
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "crwdns87054:0crwdne87054:0"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "crwdns87056:0crwdne87056:0"
@@ -54277,7 +54365,8 @@ msgstr "crwdns87082:0{0}crwdne87082:0"
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "crwdns87084:0crwdne87084:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "crwdns87086:0crwdne87086:0"
@@ -54293,7 +54382,7 @@ msgstr "crwdns142842:0#{0}crwdnd142842:0{1}crwdnd142842:0{2}crwdne142842:0"
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "crwdns152364:0{0}crwdnd152364:0{1}crwdnd152364:0{2}crwdne152364:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "crwdns127518:0{0}crwdnd127518:0{0}crwdne127518:0"
@@ -54329,7 +54418,7 @@ msgstr "crwdns201511:0crwdne201511:0"
msgid "The bank account is not a company account. Please select a company account"
msgstr "crwdns201513:0crwdne201513:0"
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "crwdns161328:0{0}crwdnd161328:0{1}crwdnd161328:0{2}crwdnd161328:0{3}crwdnd161328:0{4}crwdnd161328:0{5}crwdnd161328:0{6}crwdne161328:0"
@@ -54337,7 +54426,11 @@ msgstr "crwdns161328:0{0}crwdnd161328:0{1}crwdnd161328:0{2}crwdnd161328:0{3}crwd
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr "crwdns200216:0{0}crwdne200216:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr "crwdns201889:0{0}crwdne201889:0"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "crwdns162022:0{0}crwdnd162022:0{1}crwdnd162022:0{2}crwdnd162022:0{3}crwdne162022:0"
@@ -54357,7 +54450,7 @@ msgstr "crwdns201515:0crwdne201515:0"
msgid "The date of the transaction"
msgstr "crwdns201517:0crwdne201517:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "crwdns87102:0crwdne87102:0"
@@ -54390,7 +54483,7 @@ msgstr "crwdns87110:0crwdne87110:0"
msgid "The field To Shareholder cannot be blank"
msgstr "crwdns87112:0crwdne87112:0"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "crwdns148838:0{0}crwdnd148838:0{1}crwdne148838:0"
@@ -54431,11 +54524,11 @@ msgstr "crwdns87120:0{0}crwdne87120:0"
msgid "The following batches are expired, please restock them: {0}"
msgstr "crwdns154201:0{0}crwdne154201:0"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "crwdns162024:0{0}crwdnd162024:0{1}crwdne162024:0"
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "crwdns87122:0crwdne87122:0"
@@ -54456,7 +54549,7 @@ msgstr "crwdns197272:0{0}crwdne197272:0"
msgid "The following rows are duplicates:"
msgstr "crwdns163876:0crwdne163876:0"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "crwdns87126:0{0}crwdnd87126:0{1}crwdne87126:0"
@@ -54483,7 +54576,7 @@ msgstr "crwdns201525:0{0}crwdne201525:0"
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "crwdns154274:0{item}crwdnd154274:0{type_of}crwdnd154274:0{type_of}crwdne154274:0"
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "crwdns87132:0{0}crwdnd87132:0{1}crwdnd87132:0{2}crwdne87132:0"
@@ -54541,7 +54634,7 @@ msgstr "crwdns87142:0{0}crwdne87142:0"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "crwdns143552:0crwdne143552:0"
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "crwdns195066:0{0}crwdnd195066:0{1}crwdnd195066:0{2}crwdne195066:0"
@@ -54553,6 +54646,12 @@ msgstr "crwdns87144:0{0}crwdne87144:0"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "crwdns87146:0{0}crwdne87146:0"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr "crwdns201993:0crwdne201993:0"
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54594,7 +54693,7 @@ msgstr "crwdns87154:0crwdne87154:0"
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "crwdns87156:0crwdne87156:0"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "crwdns87158:0{0}crwdne87158:0"
@@ -54610,7 +54709,7 @@ msgstr "crwdns87162:0crwdne87162:0"
msgid "The selected item cannot have Batch"
msgstr "crwdns87164:0crwdne87164:0"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "crwdns164292:0crwdne164292:0"
@@ -54643,7 +54742,7 @@ msgstr "crwdns87176:0{0}crwdne87176:0"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "crwdns143554:0{0}crwdnd143554:0{1}crwdnd143554:0{2}crwdnd143554:0{3}crwdnd143554:0{4}crwdnd143554:0{5}crwdne143554:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "crwdns87178:0{0}crwdnd87178:0{1}crwdne87178:0"
@@ -54665,11 +54764,11 @@ msgstr "crwdns201535:0crwdne201535:0"
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "crwdns155396:0crwdne155396:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "crwdns87186:0crwdne87186:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "crwdns87188:0crwdne87188:0"
@@ -54717,15 +54816,15 @@ msgstr "crwdns87196:0{0}crwdnd87196:0{1}crwdnd87196:0{2}crwdne87196:0"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "crwdns87198:0{0}crwdnd87198:0{1}crwdne87198:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "crwdns87200:0crwdne87200:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "crwdns87202:0crwdne87202:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "crwdns87204:0crwdne87204:0"
@@ -54733,19 +54832,19 @@ msgstr "crwdns87204:0crwdne87204:0"
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr "crwdns201537:0crwdne201537:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "crwdns87206:0{0}crwdnd87206:0{1}crwdnd87206:0{2}crwdnd87206:0{3}crwdne87206:0"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "crwdns154984:0{0}crwdne154984:0"
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "crwdns163878:0{0}crwdnd163878:0{1}crwdne163878:0"
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "crwdns104670:0{0}crwdnd104670:0{1}crwdne104670:0"
@@ -54753,7 +54852,7 @@ msgstr "crwdns104670:0{0}crwdnd104670:0{1}crwdne104670:0"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "crwdns156074:0{0}crwdnd156074:0{1}crwdnd156074:0{0}crwdnd156074:0{2}crwdnd156074:0{3}crwdnd156074:0{4}crwdne156074:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "crwdns87210:0{0}crwdnd87210:0{1}crwdnd87210:0{2}crwdne87210:0"
@@ -54769,7 +54868,7 @@ msgstr "crwdns87212:0crwdne87212:0"
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "crwdns87214:0crwdne87214:0"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "crwdns112056:0{0}crwdnd112056:0{1}crwdnd112056:0{2}crwdne112056:0"
@@ -54798,7 +54897,7 @@ msgstr "crwdns87218:0crwdne87218:0"
msgid "There are no transactions in the system for the selected bank account and dates that match the filters."
msgstr "crwdns201543:0crwdne201543:0"
-#: erpnext/stock/doctype/item/item.js:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "crwdns164294:0crwdne164294:0"
@@ -54838,7 +54937,7 @@ msgstr "crwdns87236:0{0}crwdnd87236:0{1}crwdne87236:0"
msgid "There is one unreconciled transaction before {0}."
msgstr "crwdns201547:0{0}crwdne201547:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "crwdns87240:0crwdne87240:0"
@@ -54894,11 +54993,11 @@ msgstr "crwdns87260:0{0}crwdne87260:0"
msgid "This Month's Summary"
msgstr "crwdns87262:0crwdne87262:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "crwdns160416:0crwdne160416:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "crwdns160418:0crwdne160418:0"
@@ -54932,7 +55031,7 @@ msgstr "crwdns201555:0crwdne201555:0"
msgid "This covers all scorecards tied to this Setup"
msgstr "crwdns87274:0crwdne87274:0"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "crwdns87276:0{0}crwdnd87276:0{1}crwdnd87276:0{4}crwdnd87276:0{3}crwdnd87276:0{2}crwdne87276:0"
@@ -55035,11 +55134,11 @@ msgstr "crwdns87318:0crwdne87318:0"
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "crwdns87320:0crwdne87320:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "crwdns87322:0crwdne87322:0"
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "crwdns87324:0crwdne87324:0"
@@ -55108,7 +55207,7 @@ msgstr "crwdns87332:0{0}crwdnd87332:0{1}crwdne87332:0"
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "crwdns87334:0{0}crwdnd87334:0{1}crwdne87334:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "crwdns154988:0{0}crwdnd154988:0{1}crwdne154988:0"
@@ -55116,15 +55215,15 @@ msgstr "crwdns154988:0{0}crwdnd154988:0{1}crwdne154988:0"
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "crwdns87336:0{0}crwdnd87336:0{1}crwdne87336:0"
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "crwdns87338:0{0}crwdne87338:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "crwdns87340:0{0}crwdnd87340:0{1}crwdne87340:0"
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "crwdns87342:0{0}crwdne87342:0"
@@ -55132,7 +55231,7 @@ msgstr "crwdns87342:0{0}crwdne87342:0"
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "crwdns154990:0{0}crwdnd154990:0{1}crwdnd154990:0{2}crwdne154990:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "crwdns154992:0{0}crwdnd154992:0{1}crwdnd154992:0{2}crwdne154992:0"
@@ -55201,7 +55300,7 @@ msgstr "crwdns201585:0crwdne201585:0"
msgid "This will restrict user access to other employee records"
msgstr "crwdns137766:0crwdne137766:0"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "crwdns87364:0crwdne87364:0"
@@ -55312,7 +55411,7 @@ msgstr "crwdns137794:0crwdne137794:0"
msgid "Time in mins."
msgstr "crwdns137796:0crwdne137796:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "crwdns87440:0{0}crwdnd87440:0{1}crwdne87440:0"
@@ -55421,7 +55520,7 @@ msgstr "crwdns87548:0crwdne87548:0"
msgid "To Currency"
msgstr "crwdns137802:0crwdne137802:0"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "crwdns87598:0crwdne87598:0"
@@ -55648,11 +55747,15 @@ msgstr "crwdns87702:0crwdne87702:0"
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "crwdns87704:0crwdne87704:0"
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "crwdns87706:0crwdne87706:0"
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr "crwdns201995:0crwdne201995:0"
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "crwdns87708:0crwdne87708:0"
@@ -55695,11 +55798,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "crwdns198372:0crwdne198372:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "crwdns87724:0{0}crwdnd87724:0{1}crwdne87724:0"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "crwdns87726:0crwdne87726:0"
@@ -55707,7 +55810,7 @@ msgstr "crwdns87726:0crwdne87726:0"
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "crwdns157498:0crwdne157498:0"
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "crwdns87728:0{0}crwdnd87728:0{1}crwdne87728:0"
@@ -55732,7 +55835,7 @@ msgstr "crwdns87734:0{0}crwdnd87734:0{1}crwdnd87734:0{2}crwdne87734:0"
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "crwdns87736:0crwdne87736:0"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55882,7 +55985,7 @@ msgstr "crwdns137850:0crwdne137850:0"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55989,12 +56092,12 @@ msgstr "crwdns87878:0crwdne87878:0"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "crwdns87888:0crwdne87888:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "crwdns195200:0{0}crwdne195200:0"
@@ -56296,7 +56399,7 @@ msgstr "crwdns88002:0crwdne88002:0"
msgid "Total Paid Amount"
msgstr "crwdns88004:0crwdne88004:0"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "crwdns88006:0crwdne88006:0"
@@ -56308,7 +56411,7 @@ msgstr "crwdns88008:0{0}crwdne88008:0"
msgid "Total Payments"
msgstr "crwdns88010:0crwdne88010:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "crwdns142968:0{0}crwdnd142968:0{1}crwdne142968:0"
@@ -56591,7 +56694,7 @@ msgstr "crwdns159948:0crwdne159948:0"
msgid "Total allocated percentage for sales team should be 100"
msgstr "crwdns88156:0crwdne88156:0"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "crwdns88158:0crwdne88158:0"
@@ -56766,7 +56869,7 @@ msgstr "crwdns88222:0crwdne88222:0"
msgid "Transaction Dates"
msgstr "crwdns201597:0crwdne201597:0"
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "crwdns195070:0{0}crwdnd195070:0{1}crwdne195070:0"
@@ -56790,11 +56893,11 @@ msgstr "crwdns88238:0crwdne88238:0"
msgid "Transaction Deletion Record To Delete"
msgstr "crwdns195072:0crwdne195072:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "crwdns195074:0{0}crwdnd195074:0{1}crwdne195074:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "crwdns195076:0{0}crwdnd195076:0{1}crwdne195076:0"
@@ -56899,7 +57002,8 @@ msgstr "crwdns164308:0crwdne164308:0"
msgid "Transaction from which tax is withheld"
msgstr "crwdns164310:0crwdne164310:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "crwdns88258:0{0}crwdne88258:0"
@@ -56946,11 +57050,16 @@ msgstr "crwdns137974:0crwdne137974:0"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "crwdns88266:0crwdne88266:0"
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr "crwdns201997:0crwdne201997:0"
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr "crwdns201611:0crwdne201611:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "crwdns154686:0crwdne154686:0"
@@ -57131,8 +57240,8 @@ msgstr "crwdns137994:0crwdne137994:0"
msgid "Transporter Name"
msgstr "crwdns137996:0crwdne137996:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "crwdns88334:0crwdne88334:0"
@@ -57396,6 +57505,7 @@ msgstr "crwdns88430:0crwdne88430:0"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57411,7 +57521,7 @@ msgstr "crwdns88430:0crwdne88430:0"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57472,7 +57582,7 @@ msgstr "crwdns200838:0crwdne200838:0"
msgid "UOM Conversion Factor"
msgstr "crwdns88514:0crwdne88514:0"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "crwdns88540:0{0}crwdnd88540:0{1}crwdnd88540:0{2}crwdne88540:0"
@@ -57485,7 +57595,7 @@ msgstr "crwdns88542:0{0}crwdne88542:0"
msgid "UOM Name"
msgstr "crwdns138022:0crwdne138022:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "crwdns88546:0{0}crwdnd88546:0{1}crwdne88546:0"
@@ -57557,13 +57667,13 @@ msgstr "crwdns159272:0{0}crwdnd159272:0{1}crwdnd159272:0{2}crwdne159272:0"
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "crwdns88568:0{0}crwdne88568:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "crwdns112094:0{0}crwdnd112094:0{1}crwdnd112094:0{2}crwdne112094:0"
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "crwdns88572:0crwdne88572:0"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr "crwdns201929:0{0}crwdne201929:0"
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57644,7 +57754,7 @@ msgstr "crwdns201631:0crwdne201631:0"
msgid "Undo {}?"
msgstr "crwdns201633:0crwdne201633:0"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "crwdns195080:0crwdne195080:0"
@@ -57663,7 +57773,7 @@ msgstr "crwdns112652:0crwdne112652:0"
msgid "Unit Of Measure"
msgstr "crwdns200586:0crwdne200586:0"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "crwdns160688:0crwdne160688:0"
@@ -57680,7 +57790,7 @@ msgstr "crwdns88602:0crwdne88602:0"
msgid "Unit of Measure (UOM)"
msgstr "crwdns143212:0crwdne143212:0"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "crwdns88606:0{0}crwdne88606:0"
@@ -57825,7 +57935,7 @@ msgstr "crwdns138068:0crwdne138068:0"
msgid "Unreconciled Transactions"
msgstr "crwdns201641:0crwdne201641:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57865,12 +57975,12 @@ msgstr "crwdns88674:0crwdne88674:0"
msgid "Unscheduled"
msgstr "crwdns138070:0crwdne138070:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "crwdns88680:0crwdne88680:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "crwdns148884:0crwdne148884:0"
@@ -58046,7 +58156,7 @@ msgstr "crwdns88756:0crwdne88756:0"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "crwdns138098:0crwdne138098:0"
@@ -58125,11 +58235,11 @@ msgstr "crwdns161198:0{0}crwdne161198:0"
msgid "Updating Costing and Billing fields against this Project..."
msgstr "crwdns156078:0crwdne156078:0"
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "crwdns88788:0crwdne88788:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "crwdns88790:0crwdne88790:0"
@@ -58331,7 +58441,7 @@ msgstr "crwdns201649:0crwdne201649:0"
msgid "Use Transaction Date Exchange Rate"
msgstr "crwdns138138:0crwdne138138:0"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "crwdns88824:0crwdne88824:0"
@@ -58373,7 +58483,7 @@ msgstr "crwdns200844:0crwdne200844:0"
msgid "Used with Financial Report Template"
msgstr "crwdns161202:0crwdne161202:0"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "crwdns127520:0crwdne127520:0"
@@ -58437,6 +58547,11 @@ msgstr "crwdns138156:0crwdne138156:0"
msgid "Users can make manufacture entry against Job Cards"
msgstr "crwdns195800:0crwdne195800:0"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr "crwdns201999:0crwdne201999:0"
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58459,8 +58574,8 @@ msgstr "crwdns162026:0crwdne162026:0"
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "crwdns88898:0crwdne88898:0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "crwdns88900:0crwdne88900:0"
@@ -58470,7 +58585,7 @@ msgstr "crwdns88900:0crwdne88900:0"
msgid "VAT Accounts"
msgstr "crwdns138164:0crwdne138164:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "crwdns88904:0crwdne88904:0"
@@ -58480,12 +58595,12 @@ msgid "VAT Audit Report"
msgstr "crwdns88906:0crwdne88906:0"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "crwdns88908:0crwdne88908:0"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "crwdns88910:0crwdne88910:0"
@@ -58679,7 +58794,6 @@ msgstr "crwdns88988:0crwdne88988:0"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58695,14 +58809,12 @@ msgstr "crwdns88988:0crwdne88988:0"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "crwdns88992:0crwdne88992:0"
@@ -58710,19 +58822,19 @@ msgstr "crwdns88992:0crwdne88992:0"
msgid "Valuation Rate (In / Out)"
msgstr "crwdns89020:0crwdne89020:0"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "crwdns89022:0crwdne89022:0"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "crwdns89024:0{0}crwdnd89024:0{1}crwdnd89024:0{2}crwdne89024:0"
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "crwdns89026:0crwdne89026:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "crwdns89028:0{0}crwdnd89028:0{1}crwdne89028:0"
@@ -58732,7 +58844,7 @@ msgstr "crwdns89028:0{0}crwdnd89028:0{1}crwdne89028:0"
msgid "Valuation and Total"
msgstr "crwdns138192:0crwdne138192:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "crwdns89032:0crwdne89032:0"
@@ -58746,7 +58858,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "crwdns142970:0crwdne142970:0"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "crwdns89034:0crwdne89034:0"
@@ -58758,7 +58870,7 @@ msgstr "crwdns89036:0crwdne89036:0"
msgid "Value (G - D)"
msgstr "crwdns151606:0crwdne151606:0"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "crwdns152168:0{0}crwdne152168:0"
@@ -58877,12 +58989,12 @@ msgid "Variance ({})"
msgstr "crwdns89086:0crwdne89086:0"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "crwdns89088:0crwdne89088:0"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "crwdns89090:0crwdne89090:0"
@@ -58901,7 +59013,7 @@ msgstr "crwdns89094:0crwdne89094:0"
msgid "Variant Based On"
msgstr "crwdns138204:0crwdne138204:0"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "crwdns89098:0crwdne89098:0"
@@ -58919,7 +59031,7 @@ msgstr "crwdns89102:0crwdne89102:0"
msgid "Variant Item"
msgstr "crwdns89104:0crwdne89104:0"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "crwdns89106:0crwdne89106:0"
@@ -58930,7 +59042,7 @@ msgstr "crwdns89106:0crwdne89106:0"
msgid "Variant Of"
msgstr "crwdns138206:0crwdne138206:0"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "crwdns89112:0crwdne89112:0"
@@ -59224,7 +59336,7 @@ msgstr "crwdns89190:0crwdne89190:0"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "crwdns89192:0crwdne89192:0"
@@ -59296,7 +59408,7 @@ msgstr "crwdns201669:0crwdne201669:0"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59370,7 +59482,7 @@ msgstr "crwdns89230:0crwdne89230:0"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59397,7 +59509,7 @@ msgstr "crwdns89230:0crwdne89230:0"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59577,8 +59689,8 @@ msgstr "crwdns199610:0crwdne199610:0"
msgid "Warehouse not found against the account {0}"
msgstr "crwdns89402:0{0}crwdne89402:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "crwdns89406:0{0}crwdne89406:0"
@@ -59603,7 +59715,7 @@ msgstr "crwdns89416:0{0}crwdnd89416:0{1}crwdne89416:0"
msgid "Warehouse {0} does not exist"
msgstr "crwdns162028:0{0}crwdne162028:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "crwdns152376:0{0}crwdnd152376:0{1}crwdnd152376:0{2}crwdne152376:0"
@@ -59740,11 +59852,11 @@ msgstr "crwdns89464:0{0}crwdnd89464:0{1}crwdnd89464:0{2}crwdne89464:0"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "crwdns89466:0crwdne89466:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "crwdns160422:0{0}crwdne160422:0"
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "crwdns89468:0{0}crwdnd89468:0{1}crwdne89468:0"
@@ -59834,7 +59946,7 @@ msgstr "crwdns112666:0crwdne112666:0"
msgid "Wavelength In Megametres"
msgstr "crwdns112668:0crwdne112668:0"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "crwdns195088:0{0}crwdnd195088:0{1}crwdnd195088:0{1}crwdnd195088:0{2}crwdne195088:0"
@@ -59903,7 +60015,7 @@ msgstr "crwdns160424:0crwdne160424:0"
msgid "Week of the year"
msgstr "crwdns200846:0crwdne200846:0"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "crwdns89556:0{0}crwdnd89556:0{1}crwdne89556:0"
@@ -60033,7 +60145,7 @@ msgstr "crwdns164322:0crwdne164322:0"
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 "crwdns195092:0crwdne195092:0"
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "crwdns89646:0crwdne89646:0"
@@ -60043,7 +60155,7 @@ msgstr "crwdns89646:0crwdne89646:0"
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 "crwdns200596:0crwdne200596:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "crwdns195094:0{0}crwdne195094:0"
@@ -60053,11 +60165,11 @@ msgstr "crwdns195094:0{0}crwdne195094:0"
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr "crwdns200848:0crwdne200848:0"
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "crwdns89648:0{0}crwdnd89648:0{1}crwdne89648:0"
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "crwdns89650:0{0}crwdnd89650:0{1}crwdne89650:0"
@@ -60202,7 +60314,7 @@ msgstr "crwdns138328:0crwdne138328:0"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "crwdns89678:0crwdne89678:0"
@@ -60239,7 +60351,7 @@ msgstr "crwdns89678:0crwdne89678:0"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60273,7 +60385,7 @@ msgstr "crwdns89708:0crwdne89708:0"
msgid "Work Order Item"
msgstr "crwdns89710:0crwdne89710:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "crwdns200054:0crwdne200054:0"
@@ -60314,19 +60426,23 @@ msgstr "crwdns89720:0crwdne89720:0"
msgid "Work Order Summary Report"
msgstr "crwdns197294:0crwdne197294:0"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "crwdns89722:0{0}crwdne89722:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "crwdns89724:0crwdne89724:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "crwdns89726:0{0}crwdne89726:0"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr "crwdns201891:0crwdne201891:0"
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "crwdns89728:0crwdne89728:0"
@@ -60335,16 +60451,16 @@ msgstr "crwdns89728:0crwdne89728:0"
msgid "Work Order {0} created"
msgstr "crwdns159962:0{0}crwdne159962:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "crwdns200056:0{0}crwdne200056:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "crwdns89730:0{0}crwdnd89730:0{1}crwdne89730:0"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr "crwdns201893:0{0}crwdne201893:0"
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "crwdns89732:0crwdne89732:0"
@@ -60369,7 +60485,7 @@ msgstr "crwdns138332:0crwdne138332:0"
msgid "Work-in-Progress Warehouse"
msgstr "crwdns138334:0crwdne138334:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "crwdns89744:0crwdne89744:0"
@@ -60417,7 +60533,7 @@ msgstr "crwdns89760:0crwdne89760:0"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60508,14 +60624,14 @@ msgstr "crwdns138346:0crwdne138346:0"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "crwdns89800:0crwdne89800:0"
@@ -60620,7 +60736,7 @@ msgstr "crwdns138368:0crwdne138368:0"
msgid "Wrong Company"
msgstr "crwdns89862:0crwdne89862:0"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "crwdns89864:0crwdne89864:0"
@@ -60676,11 +60792,11 @@ msgstr "crwdns89884:0{0}crwdne89884:0"
msgid "You are importing data for the code list:"
msgstr "crwdns151712:0crwdne151712:0"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "crwdns89926:0crwdne89926:0"
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "crwdns89928:0{0}crwdne89928:0"
@@ -60688,7 +60804,7 @@ msgstr "crwdns89928:0{0}crwdne89928:0"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "crwdns89930:0{0}crwdnd89930:0{1}crwdne89930:0"
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "crwdns89932:0crwdne89932:0"
@@ -60716,7 +60832,7 @@ msgstr "crwdns89940:0crwdne89940:0"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr "crwdns200854:0crwdne200854:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "crwdns89942:0crwdne89942:0"
@@ -60757,11 +60873,11 @@ msgstr "crwdns89956:0crwdne89956:0"
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr "crwdns201697:0crwdne201697:0"
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "crwdns195096:0{0}crwdnd195096:0{1}crwdne195096:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "crwdns89960:0crwdne89960:0"
@@ -60785,7 +60901,7 @@ msgstr "crwdns89966:0{0}crwdnd89966:0{1}crwdne89966:0"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "crwdns89968:0{0}crwdne89968:0"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "crwdns89970:0crwdne89970:0"
@@ -60846,7 +60962,7 @@ msgstr "crwdns201699:0crwdne201699:0"
msgid "You do not have permission to import bank transactions"
msgstr "crwdns201701:0crwdne201701:0"
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "crwdns89988:0crwdne89988:0"
@@ -60858,19 +60974,19 @@ msgstr "crwdns89990:0crwdne89990:0"
msgid "You don't have enough points to redeem."
msgstr "crwdns89992:0crwdne89992:0"
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "crwdns200222:0crwdne200222:0"
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr "crwdns200224:0crwdne200224:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr "crwdns201801:0{0}crwdne201801:0"
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr "crwdns200226:0crwdne200226:0"
@@ -60882,7 +60998,7 @@ msgstr "crwdns89994:0crwdne89994:0"
msgid "You have already selected items from {0} {1}"
msgstr "crwdns89996:0{0}crwdnd89996:0{1}crwdne89996:0"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "crwdns152236:0{0}crwdne152236:0"
@@ -60906,7 +61022,7 @@ msgstr "crwdns201703:0crwdne201703:0"
msgid "You have not performed any reconciliations in this session yet."
msgstr "crwdns201705:0crwdne201705:0"
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "crwdns90002:0crwdne90002:0"
@@ -60922,7 +61038,7 @@ msgstr "crwdns90008:0crwdne90008:0"
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "crwdns90010:0crwdne90010:0"
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "crwdns149108:0{1}crwdnd149108:0{2}crwdnd149108:0{0}crwdne149108:0"
@@ -60969,11 +61085,11 @@ msgstr "crwdns90034:0crwdne90034:0"
msgid "Zero Balance"
msgstr "crwdns138390:0crwdne138390:0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "crwdns90038:0crwdne90038:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "crwdns90040:0crwdne90040:0"
@@ -60995,11 +61111,11 @@ msgstr "crwdns138392:0crwdne138392:0"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "crwdns90044:0crwdne90044:0"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "crwdns90046:0crwdne90046:0"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "crwdns112160:0crwdne112160:0"
@@ -61040,7 +61156,7 @@ msgid "cannot be greater than 100"
msgstr "crwdns112162:0crwdne112162:0"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "crwdns148846:0{0}crwdne148846:0"
@@ -61189,7 +61305,7 @@ msgstr "crwdns90126:0crwdne90126:0"
msgid "per hour"
msgstr "crwdns138414:0crwdne138414:0"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "crwdns90134:0crwdne90134:0"
@@ -61222,7 +61338,7 @@ msgstr "crwdns90144:0crwdne90144:0"
msgid "reconciled"
msgstr "crwdns201709:0crwdne201709:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "crwdns155012:0crwdne155012:0"
@@ -61257,7 +61373,7 @@ msgstr "crwdns138422:0crwdne138422:0"
msgid "sandbox"
msgstr "crwdns138424:0crwdne138424:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "crwdns155014:0crwdne155014:0"
@@ -61265,8 +61381,8 @@ msgstr "crwdns155014:0crwdne155014:0"
msgid "subscription is already cancelled."
msgstr "crwdns90172:0crwdne90172:0"
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "crwdns90174:0crwdne90174:0"
@@ -61284,7 +61400,7 @@ msgstr "crwdns138428:0crwdne138428:0"
msgid "to"
msgstr "crwdns90180:0crwdne90180:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "crwdns90182:0crwdne90182:0"
@@ -61311,7 +61427,7 @@ msgstr "crwdns201717:0crwdne201717:0"
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "crwdns138430:0crwdne138430:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr "crwdns201803:0{0}crwdnd201803:0{1}crwdne201803:0"
@@ -61333,7 +61449,7 @@ msgstr "crwdns90190:0crwdne90190:0"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "crwdns90194:0crwdne90194:0"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "crwdns90198:0{0}crwdnd90198:0{1}crwdne90198:0"
@@ -61341,7 +61457,7 @@ msgstr "crwdns90198:0{0}crwdnd90198:0{1}crwdne90198:0"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "crwdns90200:0{0}crwdnd90200:0{1}crwdnd90200:0{2}crwdne90200:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "crwdns90202:0{0}crwdnd90202:0{1}crwdnd90202:0{2}crwdnd90202:0{3}crwdne90202:0"
@@ -61349,7 +61465,7 @@ msgstr "crwdns90202:0{0}crwdnd90202:0{1}crwdnd90202:0{2}crwdnd90202:0{3}crwdne90
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "crwdns90206:0{0}crwdnd90206:0{1}crwdnd90206:0{2}crwdne90206:0"
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "crwdns90208:0{0}crwdnd90208:0{1}crwdne90208:0"
@@ -61382,11 +61498,11 @@ msgstr "crwdns200858:0{0}crwdne200858:0"
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "crwdns90216:0{0}crwdnd90216:0{1}crwdnd90216:0{2}crwdnd90216:0{3}crwdne90216:0"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "crwdns158412:0{0}crwdnd158412:0{1}crwdne158412:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "crwdns90218:0{0}crwdnd90218:0{1}crwdne90218:0"
@@ -61394,7 +61510,7 @@ msgstr "crwdns90218:0{0}crwdnd90218:0{1}crwdne90218:0"
msgid "{0} Request for {1}"
msgstr "crwdns90220:0{0}crwdnd90220:0{1}crwdne90220:0"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "crwdns90222:0{0}crwdne90222:0"
@@ -61482,11 +61598,11 @@ msgstr "crwdns90250:0{0}crwdne90250:0"
msgid "{0} creation for the following records will be skipped."
msgstr "crwdns162030:0{0}crwdne162030:0"
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "crwdns90252:0{0}crwdne90252:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "crwdns90254:0{0}crwdnd90254:0{1}crwdne90254:0"
@@ -61498,7 +61614,7 @@ msgstr "crwdns90256:0{0}crwdnd90256:0{1}crwdne90256:0"
msgid "{0} does not belong to Company {1}"
msgstr "crwdns90258:0{0}crwdnd90258:0{1}crwdne90258:0"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "crwdns163880:0{0}crwdnd163880:0{1}crwdne163880:0"
@@ -61507,7 +61623,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "crwdns90260:0{0}crwdne90260:0"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "crwdns90262:0{0}crwdnd90262:0{1}crwdne90262:0"
@@ -61532,7 +61648,7 @@ msgstr "crwdns90268:0{0}crwdne90268:0"
msgid "{0} hours"
msgstr "crwdns112174:0{0}crwdne112174:0"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "crwdns90270:0{0}crwdnd90270:0{1}crwdne90270:0"
@@ -61554,7 +61670,7 @@ msgstr "crwdns138434:0{0}crwdnd138434:0{1}crwdne138434:0"
msgid "{0} is already running for {1}"
msgstr "crwdns112176:0{0}crwdnd112176:0{1}crwdne112176:0"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "crwdns90274:0{0}crwdne90274:0"
@@ -61562,12 +61678,12 @@ msgstr "crwdns90274:0{0}crwdne90274:0"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "crwdns162036:0{0}crwdne162036:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "crwdns90278:0{0}crwdnd90278:0{1}crwdne90278:0"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "crwdns90280:0{0}crwdnd90280:0{1}crwdne90280:0"
@@ -61575,7 +61691,7 @@ msgstr "crwdns90280:0{0}crwdnd90280:0{1}crwdne90280:0"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "crwdns90282:0{0}crwdnd90282:0{1}crwdnd90282:0{2}crwdne90282:0"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "crwdns90284:0{0}crwdnd90284:0{1}crwdnd90284:0{2}crwdne90284:0"
@@ -61583,7 +61699,7 @@ msgstr "crwdns90284:0{0}crwdnd90284:0{1}crwdnd90284:0{2}crwdne90284:0"
msgid "{0} is not a CSV file."
msgstr "crwdns198376:0{0}crwdne198376:0"
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "crwdns90286:0{0}crwdne90286:0"
@@ -61591,7 +61707,7 @@ msgstr "crwdns90286:0{0}crwdne90286:0"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "crwdns90288:0{0}crwdne90288:0"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "crwdns90290:0{0}crwdne90290:0"
@@ -61631,27 +61747,27 @@ msgstr "crwdns90300:0{0}crwdnd90300:0{1}crwdne90300:0"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "crwdns155684:0{0}crwdne155684:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "crwdns198378:0{0}crwdne198378:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "crwdns90304:0{0}crwdne90304:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "crwdns152390:0{0}crwdne152390:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "crwdns90306:0{0}crwdne90306:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "crwdns198380:0{0}crwdne198380:0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "crwdns198382:0{0}crwdne198382:0"
@@ -61659,7 +61775,7 @@ msgstr "crwdns198382:0{0}crwdne198382:0"
msgid "{0} must be negative in return document"
msgstr "crwdns90308:0{0}crwdne90308:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "crwdns112674:0{0}crwdnd112674:0{1}crwdne112674:0"
@@ -61675,7 +61791,7 @@ msgstr "crwdns90314:0{0}crwdne90314:0"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "crwdns90316:0{0}crwdnd90316:0{1}crwdne90316:0"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "crwdns90318:0{0}crwdnd90318:0{1}crwdnd90318:0{2}crwdnd90318:0{3}crwdne90318:0"
@@ -61688,7 +61804,7 @@ msgstr "crwdns201719:0{0}crwdnd201719:0{1}crwdne201719:0"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr "crwdns201721:0{0}crwdne201721:0"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "crwdns90320:0{0}crwdnd90320:0{1}crwdnd90320:0{2}crwdnd90320:0{3}crwdne90320:0"
@@ -61704,16 +61820,16 @@ msgstr "crwdns195912:0{0}crwdnd195912:0{1}crwdne195912:0"
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "crwdns162038:0{0}crwdnd162038:0{1}crwdnd162038:0{2}crwdnd162038:0{3}crwdnd162038:0{4}crwdnd162038:0{5}crwdnd162038:0{6}crwdne162038:0"
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "crwdns90328:0{0}crwdnd90328:0{1}crwdnd90328:0{2}crwdnd90328:0{3}crwdnd90328:0{4}crwdnd90328:0{5}crwdne90328:0"
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "crwdns90330:0{0}crwdnd90330:0{1}crwdnd90330:0{2}crwdnd90330:0{3}crwdnd90330:0{4}crwdne90330:0"
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "crwdns90332:0{0}crwdnd90332:0{1}crwdnd90332:0{2}crwdne90332:0"
@@ -61725,7 +61841,7 @@ msgstr "crwdns148638:0{0}crwdnd148638:0{1}crwdne148638:0"
msgid "{0} valid serial nos for Item {1}"
msgstr "crwdns90334:0{0}crwdnd90334:0{1}crwdne90334:0"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "crwdns90336:0{0}crwdne90336:0"
@@ -61741,7 +61857,7 @@ msgstr "crwdns90338:0{0}crwdne90338:0"
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "crwdns158360:0{0}crwdnd158360:0{1}crwdne158360:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "crwdns90340:0{0}crwdnd90340:0{1}crwdne90340:0"
@@ -61779,8 +61895,8 @@ msgstr "crwdns90352:0{0}crwdnd90352:0{1}crwdne90352:0"
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "crwdns90354:0{0}crwdnd90354:0{1}crwdne90354:0"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "crwdns90356:0{0}crwdnd90356:0{1}crwdne90356:0"
@@ -61890,7 +62006,7 @@ msgstr "crwdns90404:0{0}crwdnd90404:0{1}crwdnd90404:0{2}crwdne90404:0"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "crwdns90406:0{0}crwdnd90406:0{1}crwdnd90406:0{2}crwdnd90406:0{3}crwdne90406:0"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "crwdns90408:0{0}crwdnd90408:0{1}crwdnd90408:0{2}crwdne90408:0"
@@ -61939,8 +62055,8 @@ msgstr "crwdns90428:0{0}crwdne90428:0"
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "crwdns90430:0{0}crwdnd90430:0{1}crwdnd90430:0{2}crwdne90430:0"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "crwdns90432:0{0}crwdnd90432:0{1}crwdnd90432:0{2}crwdne90432:0"
@@ -61960,11 +62076,11 @@ msgstr "crwdns195104:0{0}crwdne195104:0"
msgid "{0}: Virtual DocType (no database table)"
msgstr "crwdns195106:0{0}crwdne195106:0"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "crwdns152378:0{0}crwdnd152378:0{1}crwdnd152378:0{2}crwdne152378:0"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "crwdns197298:0{0}crwdnd197298:0{1}crwdne197298:0"
@@ -61972,11 +62088,11 @@ msgstr "crwdns197298:0{0}crwdnd197298:0{1}crwdne197298:0"
msgid "{0}: {1} does not exists"
msgstr "crwdns90434:0{0}crwdnd90434:0{1}crwdne90434:0"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "crwdns160624:0{0}crwdnd160624:0{1}crwdne160624:0"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "crwdns90436:0{0}crwdnd90436:0{1}crwdnd90436:0{2}crwdne90436:0"
@@ -61988,7 +62104,7 @@ msgstr "crwdns154278:0{count}crwdnd154278:0{item_code}crwdne154278:0"
msgid "{doctype} {name} is cancelled or closed."
msgstr "crwdns154280:0{doctype}crwdnd154280:0{name}crwdne154280:0"
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "crwdns90442:0{item_name}crwdnd90442:0{sample_size}crwdnd90442:0{accepted_quantity}crwdne90442:0"
@@ -62000,7 +62116,7 @@ msgstr "crwdns154284:0{ref_doctype}crwdnd154284:0{ref_name}crwdnd154284:0{status
msgid "{}"
msgstr "crwdns90446:0crwdne90446:0"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "crwdns90450:0crwdne90450:0"
diff --git a/erpnext/locale/es.po b/erpnext/locale/es.po
index 44f4da0262b..ece93a3efb8 100644
--- a/erpnext/locale/es.po
+++ b/erpnext/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:22\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Sub Ensamblado"
msgid " Summary"
msgstr " Resumen"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "El \"artículo proporcionado por el cliente\" no puede ser un artículo de compra también"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "El \"artículo proporcionado por el cliente\" no puede tener una tasa de valoración"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Es activo fijo\" no puede estar sin marcar, ya que existe registro de activos contra el elemento"
@@ -268,11 +268,11 @@ msgstr "% de materiales entregados contra esta Lista de Selección"
msgid "% of materials delivered against this Sales Order"
msgstr "% de materiales entregados contra esta Orden de Venta"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Cuenta' en la sección Contabilidad de Cliente {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Permitir múltiples órdenes de venta contra la orden de compra de un cliente'"
@@ -284,7 +284,7 @@ msgstr "'Basado en' y 'Agrupar por' no pueden ser iguales"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Días desde la última orden' debe ser mayor que o igual a cero"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Cuenta {0} Predeterminada' en la Compañía {1}"
@@ -302,7 +302,7 @@ msgstr "'Desde la fecha' es requerido"
msgid "'From Date' must be after 'To Date'"
msgstr "'Desde la fecha' debe ser después de 'Hasta Fecha'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Posee numero de serie' no puede ser \"Sí\" para los productos que NO son de stock"
@@ -314,9 +314,9 @@ msgstr "'Inspección requerida antes de la entrega' se ha desactivado para el ar
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Inspección requerida antes de la compra' se ha desactivado para el artículo {0}, no es necesario crear el QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Apertura'"
@@ -346,8 +346,8 @@ msgstr "La cuenta de '{0}' ya está siendo utilizada por {1}. Utilice otra cuent
msgid "'{0}' has been already added."
msgstr "'{0}' ya ha sido añadido."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' debe estar en la moneda de la empresa {1}."
@@ -517,8 +517,8 @@ msgstr "más de 1.000"
msgid "11-50"
msgstr "11 a 50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 días"
msgid "90 Above"
msgstr "Superior a 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Configuraci
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "La fecha de liquidación debe ser posterior a la fecha del cheque para la(s) fila(s): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artículo {0} en la(s) fila(s) {1} facturado más que {2} "
@@ -820,7 +820,7 @@ msgstr "Documento de pago requerido para la(s) fila(s): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "No se puede facturar de más los siguientes artículos:
"
@@ -883,7 +883,7 @@ msgstr "La Fecha de Publicación {0} no puede ser anterior a la fecha de la O
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 "La tarifa de la lista de precios no se ha configurado como editable en la configuración de ventas. En este caso, configurar Actualizar la lista de precios según como Tarifa de la lista de precios evitará que el precio del artículo se actualice automáticamente.
¿Seguro que desea continuar?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Para permitir la sobrefacturación, configure el permiso en la Configuración de Cuentas.
"
@@ -971,11 +971,11 @@ msgstr "Tus accesos directos\n"
msgid "Your Shortcuts "
msgstr "Tus accesos directos "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Total general: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Importe pendiente: {0}"
@@ -1045,7 +1045,7 @@ msgstr "A-B"
msgid "A - C"
msgstr "A-C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Existe una categoría de cliente con el mismo nombre. Por favor cambie el nombre de cliente o renombre la categoría de cliente"
@@ -1209,11 +1209,11 @@ msgstr "Abrev."
msgid "Abbreviation"
msgstr "Abreviación"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Abreviatura ya utilizada para otra empresa"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "La abreviatura es obligatoria"
@@ -1221,7 +1221,7 @@ msgstr "La abreviatura es obligatoria"
msgid "Abbreviation: {0} must appear only once"
msgstr "Abreviación: {0} debe aparecer sólo una vez"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Arriba"
@@ -1275,7 +1275,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Cantidad Aceptada en UdM de Stock"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Cantidad Aceptada"
@@ -1311,7 +1311,7 @@ msgstr "Se requiere clave de acceso para el proveedor de servicios: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Según CEFACT/ICG/2010/IC013 o CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Según la BOM{0}, falta el artículo '{1}' en la entrada de stock."
@@ -1429,8 +1429,8 @@ msgstr "Encabezado de Cuenta"
msgid "Account Manager"
msgstr "Gerente de cuentas"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Cuenta Faltante"
@@ -1448,7 +1448,7 @@ msgstr "Cuenta Faltante"
msgid "Account Name"
msgstr "Nombre de la Cuenta"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Cuenta no encontrada"
@@ -1461,7 +1461,7 @@ msgstr "Cuenta no encontrada"
msgid "Account Number"
msgstr "Número de cuenta"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Número de cuenta {0} ya usado en la cuenta {1}"
@@ -1500,7 +1500,7 @@ msgstr "Subtipo de cuenta"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1516,11 +1516,11 @@ msgstr "Tipo de cuenta"
msgid "Account Value"
msgstr "Valor de la cuenta"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Balance de la cuenta ya en Crédito, no le está permitido establecer 'Balance Debe Ser' como 'Débito'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Balance de la cuenta ya en Débito, no le está permitido establecer \"Balance Debe Ser\" como \"Crédito\""
@@ -1587,15 +1587,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Una cuenta con nodos secundarios no puede convertirse en libro mayor"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Una cuenta con nodos secundarios no puede ser establecida como libro mayor"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Cuenta con transacción existente no se puede convertir al grupo."
@@ -1603,8 +1603,8 @@ msgstr "Cuenta con transacción existente no se puede convertir al grupo."
msgid "Account with existing transaction can not be deleted"
msgstr "Cuenta con transacción existente no se puede eliminar"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Cuenta con una transacción existente no se puede convertir en el libro mayor"
@@ -1612,11 +1612,11 @@ msgstr "Cuenta con una transacción existente no se puede convertir en el libro
msgid "Account {0} added multiple times"
msgstr "Cuenta {0} agregada varias veces"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "La cuenta {0} no se puede convertir a un grupo porque ya está configurada como {1} para {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "La cuenta {0} no se puede deshabilitar porque ya está configurada como {1} para {2}."
@@ -1624,11 +1624,11 @@ msgstr "La cuenta {0} no se puede deshabilitar porque ya está configurada como
msgid "Account {0} does not belong to company {1}"
msgstr "La cuenta {0} no pertenece a la empresa{1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Cuenta {0} no pertenece a la compañía: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Cuenta {0} no existe"
@@ -1644,15 +1644,15 @@ msgstr "Cuenta {0} no coincide con la Compañía {1} en Modo de Cuenta: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "La cuenta {0} no pertenece a la empresa{1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "La cuenta {0} existe en la empresa matriz {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "La cuenta {0} se agrega en la empresa secundaria {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "La cuenta {0} está deshabilitada."
@@ -1660,7 +1660,7 @@ msgstr "La cuenta {0} está deshabilitada."
msgid "Account {0} is frozen"
msgstr "La cuenta {0} está congelada"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "La cuenta {0} no es válida. La divisa de la cuenta debe ser {1}"
@@ -1668,19 +1668,19 @@ msgstr "La cuenta {0} no es válida. La divisa de la cuenta debe ser {1}"
msgid "Account {0} should be of type Expense"
msgstr "La cuenta {0} debe ser del tipo Gasto"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Cuenta {0}: la cuenta padre {1} no puede ser una cuenta de libro mayor"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Cuenta {0}: la cuenta padre {1} no pertenece a la empresa: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Cuenta {0}: la cuenta padre {1} no existe"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Cuenta {0}: no puede asignarse a sí misma como cuenta padre"
@@ -1696,7 +1696,7 @@ msgstr "Cuenta: {0} sólo puede ser actualizada mediante transacciones de invent
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Cuenta: {0} no está permitido en Entrada de pago"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Cuenta: {0} con divisa: {1} no puede ser seleccionada"
@@ -1981,8 +1981,8 @@ msgstr "Asientos contables"
msgid "Accounting Entry for Asset"
msgstr "Entrada Contable para Activos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Entrada Contable para LCV en la Entrada de Stock {0}"
@@ -2006,8 +2006,8 @@ msgstr "Entrada contable para servicio"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Asiento contable para inventario"
@@ -2016,7 +2016,7 @@ msgstr "Asiento contable para inventario"
msgid "Accounting Entry for {0}"
msgstr "Entrada contable para {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Asiento contable para {0}: {1} sólo puede realizarse con la divisa: {2}"
@@ -2071,7 +2071,6 @@ msgstr "Los asientos contables están congelados hasta esta fecha. Solo los usua
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2084,14 +2083,13 @@ msgstr "Los asientos contables están congelados hasta esta fecha. Solo los usua
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Cuentas"
@@ -2121,8 +2119,8 @@ msgstr "Cuentas que faltan en el informe"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2222,15 +2220,15 @@ msgstr "Tabla de cuentas no puede estar vacía."
msgid "Accounts to Merge"
msgstr "Cuentas a fusionar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Gastos acumulados"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Depreciación acumulada"
@@ -2395,7 +2393,7 @@ msgstr "Acciones realizadas"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2519,7 +2517,7 @@ msgstr "Fecha Real de Finalización"
msgid "Actual End Date (via Timesheet)"
msgstr "Fecha de finalización real (a través de hoja de horas)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "La fecha de finalización real no puede ser anterior a la fecha de inicio real"
@@ -2641,7 +2639,7 @@ msgstr "Tiempo real (en horas)"
msgid "Actual qty in stock"
msgstr "Cantidad real en stock"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "El tipo de impuesto real no puede incluirse en la tarifa del artículo en la fila {0}"
@@ -2650,7 +2648,7 @@ msgstr "El tipo de impuesto real no puede incluirse en la tarifa del artículo e
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Añadir / Editar precios"
@@ -3149,7 +3147,7 @@ msgstr "Información Adicional"
msgid "Additional Information updated successfully."
msgstr "Información adicional actualizada exitosamente."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Transferencia de material adicional"
@@ -3172,7 +3170,7 @@ msgstr "Costos adicionales de operación"
msgid "Additional Transferred Qty"
msgstr "Cantidad adicional transferida"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3184,11 +3182,6 @@ msgstr "La cantidad transferida adicional {0}\n"
"\t\t\t\t\tdel campo 'Transferir materias primas adicionales a WIP'\n"
"\t\t\t\t\ten la configuración de fabricación."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Información adicional referente al cliente."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Se requiere {0} {1} adicional del artículo {2} según la lista de materiales para completar esta transacción"
@@ -3334,11 +3327,6 @@ msgstr "La dirección debe estar vinculada a una empresa. Agregue una fila para
msgid "Address used to determine Tax Category in transactions"
msgstr "Dirección utilizada para determinar la categoría fiscal en las transacciones"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Ajustar Cantidad"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Ajuste contra"
@@ -3351,8 +3339,8 @@ msgstr "Ajuste basado en la tarifa de la Factura de Compra"
msgid "Administrative Assistant"
msgstr "Asistente Administrativo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "GASTOS DE ADMINISTRACIÓN"
@@ -3420,7 +3408,7 @@ msgstr "Estado del pago anticipado"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Pagos adelantados"
@@ -3540,7 +3528,7 @@ msgstr "Contra la cuenta"
msgid "Against Blanket Order"
msgstr "Contra el pedido abierto"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Contra pedido del cliente {0}"
@@ -3682,11 +3670,11 @@ msgstr "Edad"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Edad (Días)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Edad ({0})"
@@ -3836,21 +3824,21 @@ msgstr "Todas las categorías de clientes"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Todos los departamentos"
@@ -3930,7 +3918,7 @@ msgstr "Todos los grupos de proveedores"
msgid "All Territories"
msgstr "Todos los territorios"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Todos los almacenes"
@@ -3944,6 +3932,11 @@ msgstr "Todas las asignaciones se han conciliado correctamente"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Todas las comunicaciones incluidas y superiores se incluirán en el nuevo Issue"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Todos los artículos ya están solicitados"
@@ -3952,23 +3945,23 @@ msgstr "Todos los artículos ya están solicitados"
msgid "All items have already been Invoiced/Returned"
msgstr "Todos los artículos ya han sido facturados / devueltos"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Ya se han recibido todos los artículos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Todos los artículos ya han sido transferidos para esta Orden de Trabajo."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Todos los artículos de este documento ya tienen una Inspección de Calidad vinculada."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Todos los artículos deben estar vinculados a una orden de venta o una orden de entrada de subcontratación para esta factura de venta."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Todas las órdenes de venta vinculadas deben ser subcontratadas."
@@ -3982,11 +3975,11 @@ msgstr "Todos los comentarios y correos electrónicos se copiarán de un documen
msgid "All the items have been already returned."
msgstr "Todos los artículos ya han sido devueltos."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Todos los artículos necesarios (LdM) se obtendrán de la lista de materiales y se rellenarán en esta tabla. Aquí también puede cambiar el Almacén de Origen para cualquier artículo. Y durante la producción, puede hacer un seguimiento de las materias primas transferidas desde esta tabla."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Todos estos artículos ya han sido facturados / devueltos"
@@ -4005,7 +3998,7 @@ msgstr "Asignar"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Asignar adelantos automáticamente (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Distribuir el Importe de Pago"
@@ -4015,7 +4008,7 @@ msgstr "Distribuir el Importe de Pago"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Asignar el pago según las condiciones de pago"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Asignar solicitud de pago"
@@ -4045,7 +4038,7 @@ msgstr "Numerado"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4102,7 +4095,7 @@ msgstr "Cantidad asignada"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4166,7 +4159,7 @@ msgstr "Permitir devoluciones"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Permitir Transferencias Internas a Precio de Mercado"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Permitir que un artículo se añada varias veces en una transacción"
@@ -4289,16 +4282,6 @@ msgstr "Permitir restablecer el acuerdo de nivel de servicio desde la configurac
msgid "Allow Sales"
msgstr "Permitir Ventas"
-#. 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 "Permitir la creación de facturas de venta sin nota de entrega"
-
-#. 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 "Permitir la creación de facturas de venta sin orden de venta"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4424,6 +4407,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4500,10 +4493,8 @@ msgstr "Productos Permitidos"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Permitido para realizar Transacciones con"
@@ -4515,6 +4506,11 @@ msgstr "Los roles permitidos son 'Cliente' y 'Proveedor'. Por favor, seleccione
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4556,8 +4552,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Tampoco puedes volver a FIFO después de configurar el método de valoración en Promedio móvil para este artículo."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4798,7 +4794,7 @@ msgstr "Preguntar siempre"
msgid "Amount"
msgstr "Importe"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Importe (AED)"
@@ -4932,12 +4928,12 @@ msgid "Amount to Bill"
msgstr "Importe a Facturar"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Monto {0} {1} {2} contra {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Monto {0} {1} deducido contra {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4982,11 +4978,11 @@ msgstr "Monto"
msgid "An Item Group is a way to classify items based on types."
msgstr "Un Grupo de Producto es una forma de clasificar Productos según sus tipos."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Se ha producido un error al volver a recalcular la valoración del artículo a través de {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Se produjo un error durante el proceso de actualización"
@@ -5526,7 +5522,7 @@ msgstr "Como el campo {0} está habilitado, el campo {1} es obligatorio."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Como el campo {0} está habilitado, el valor del campo {1} debe ser superior a 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Como ya existen transacciones validadas contra el artículo {0}, no puede cambiar el valor de {1}."
@@ -5538,7 +5534,7 @@ msgstr "No puedes desactivarlo porque hay stock reservado {0}."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Dado que hay suficientes artículos de sub ensamblaje, no se requiere una orden de trabajo para el almacén {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Como hay suficientes materias primas, la Solicitud de material no es necesaria para Almacén {0}."
@@ -5676,7 +5672,7 @@ msgstr "Cuenta de categoría de activos"
msgid "Asset Category Name"
msgstr "Nombre de la Categoría de Activos"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Categoría activo es obligatorio para la partida del activo fijo"
@@ -5853,8 +5849,8 @@ msgstr "Cantidad de Activos"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5954,7 +5950,7 @@ msgstr "Activo cancelado"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Activo no se puede cancelar, como ya es {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "El activo no puede desecharse antes de la última entrada de depreciación."
@@ -5986,7 +5982,7 @@ msgstr "Activo fuera de servicio debido a la reparación del activo {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Activo recibido en la ubicación {0} y entregado al empleado {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Activo restituido"
@@ -5994,20 +5990,20 @@ msgstr "Activo restituido"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Activo restituido después de la Capitalización de Activos {0} fue cancelada"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Activo devuelto"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Activo desechado"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Activos desechado a través de entrada de diario {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Activo vendido"
@@ -6027,7 +6023,7 @@ msgstr "Activo actualizado tras ser dividido en Activo {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Activo actualizado debido a la reparación de activos {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Activo {0} no puede ser desechado, debido a que ya es {1}"
@@ -6068,7 +6064,7 @@ msgstr "El activo {0} no está configurado para calcular la depreciación."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "El activo {0} no se ha validado. Por favor, valide el recurso antes de continuar."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Activo {0} debe ser validado"
@@ -6118,7 +6114,7 @@ msgstr "Activos no creados para {item_code}. Tendrá que crear el activo manualm
msgid "Assets {assets_link} created for {item_code}"
msgstr "Activos {assets_link} creados para {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Asignar trabajo a empleado"
@@ -6179,7 +6175,7 @@ msgstr "Se debe seleccionar al menos uno de los módulos aplicables."
msgid "At least one of the Selling or Buying must be selected"
msgstr "Debe seleccionarse al menos una de las opciones de Venta o Compra"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6187,20 +6183,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Es obligatorio tener al menos un almacén"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "En la fila #{0}: la Cuenta de Diferencia no debe ser una cuenta de tipo Acciones, cambie el Tipo de Cuenta para la cuenta {1} o seleccione una cuenta diferente"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "En la fila n.º {0}: el ID de secuencia {1} no puede ser menor que el ID de secuencia de fila anterior {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6283,11 +6275,11 @@ msgstr "Nombre del Atributo"
msgid "Attribute Value"
msgstr "Valor del Atributo"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabla de atributos es obligatoria"
@@ -6295,19 +6287,19 @@ msgstr "Tabla de atributos es obligatoria"
msgid "Attribute value: {0} must appear only once"
msgstr "Valor del atributo: {0} debe aparecer sólo una vez"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Atributo {0} seleccionado varias veces en la tabla Atributos"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributos"
@@ -6519,7 +6511,7 @@ msgstr "Encontrar automáticamente y establecer las partes en las Transacciones
msgid "Auto re-order"
msgstr "Ordenar Automáticamente"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Documento automático editado"
@@ -6631,7 +6623,7 @@ msgstr "Disponible para uso Fecha"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Cant. disponible"
@@ -6720,10 +6712,6 @@ msgstr "Fecha de disponibilidad para uso"
msgid "Available for use date is required"
msgstr "Disponible para la fecha de uso es obligatorio"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "La cantidad disponible es {0}, necesita {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Disponible {0}"
@@ -6732,8 +6720,8 @@ msgstr "Disponible {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "La fecha de uso disponible debe ser posterior a la fecha de compra."
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Edad promedio"
@@ -6757,7 +6745,9 @@ msgstr "Valor medio del pedido"
msgid "Average Order Values"
msgstr "Valor medio del pedido"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Tasa promedio"
@@ -6781,7 +6771,7 @@ msgid "Avg Rate"
msgstr "Tasa media"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Tasa media (Balance Stock)"
@@ -6839,7 +6829,7 @@ msgstr "Cant. BIN"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6862,7 +6852,7 @@ msgstr "LdM"
msgid "BOM 1"
msgstr "LdM 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} y BOM 2 {1} no deben ser iguales"
@@ -6934,11 +6924,6 @@ msgstr "Desplegar lista de materiales (LdM) del producto"
msgid "BOM ID"
msgstr "ID de lista de materiales"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Información de LdM"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7092,7 +7077,7 @@ msgstr "BOM de artículo del sitio web"
msgid "BOM Website Operation"
msgstr "Operación de Página Web de lista de materiales"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "La lista de materiales y la cantidad de producto terminado son obligatorias para el desmontaje"
@@ -7160,7 +7145,7 @@ msgstr "Entrada de stock retroactiva"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Consumo retroactivo de materiales del almacén WIP"
@@ -7224,7 +7209,7 @@ msgstr "Saldo en Moneda Base"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Balance"
@@ -7289,7 +7274,7 @@ msgstr "Tipo de saldo"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Valor de balance"
@@ -7445,8 +7430,8 @@ msgid "Bank Balance"
msgstr "Saldo Bancario"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Cargos bancarios"
@@ -7561,8 +7546,8 @@ msgstr "Tipo de Garantía Bancaria"
msgid "Bank Name"
msgstr "Nombre del Banco"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Cuenta de Sobre-Giros"
@@ -7735,11 +7720,11 @@ msgstr "Banca"
msgid "Barcode Type"
msgstr "Tipo de Código de Barras"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "El código de barras {0} ya se utiliza en el artículo {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Código de Barras {0} no es un código {1} válido"
@@ -7896,7 +7881,7 @@ msgstr "Precio base (según la UdM)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7971,7 +7956,7 @@ msgstr "Estado de Caducidad de Lote de Productos"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8060,13 +8045,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr "Cantidad de lote"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8083,7 +8068,7 @@ msgstr "Unidad de medida por lotes"
msgid "Batch and Serial No"
msgstr "Núm. de Lote y Serie"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Lote no creado para el artículo {}, ya que no tiene serie de lote."
@@ -8106,12 +8091,12 @@ msgstr "Lote {0} y almacén"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "El lote {0} no está disponible en el almacén {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "El lote {0} del producto {1} ha expirado."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "El lote {0} del elemento {1} está deshabilitado."
@@ -8166,7 +8151,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8175,7 +8160,7 @@ msgstr "Fecha de factura"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8189,11 +8174,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Lista de materiales"
@@ -8294,7 +8281,7 @@ msgstr "Detalles de la dirección de facturación"
msgid "Billing Address Name"
msgstr "Nombre de la dirección de facturación"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "La dirección de facturación no pertenece a {0}"
@@ -8546,6 +8533,16 @@ msgstr "Factura en Bloque"
msgid "Block Supplier"
msgstr "Bloquear Proveedor"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8642,7 +8639,7 @@ msgstr "Reservado"
msgid "Booked Fixed Asset"
msgstr "Activo Fijo Reservado"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Los libros estarán cerrados hasta el período que finaliza el {0}"
@@ -8901,8 +8898,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr "Cant. producible"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Edificios"
@@ -9063,16 +9060,16 @@ msgstr "Por defecto, el Nombre del Proveedor se establece según el Nombre del P
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Evitar el control de límite de crédito en la Orden de Venta"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Omitir verificación de crédito en Orden de Venta"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9120,8 +9117,8 @@ msgstr "Nota CRM"
msgid "CRM Settings"
msgstr "Configuración CRM"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Cuenta CWIP"
@@ -9376,7 +9373,7 @@ msgstr "Campaña {0} no encontrada"
msgid "Can be approved by {0}"
msgstr "Puede ser aprobado por {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "No se puede cerrar la Orden de Trabajo. Ya que {0} Las fichas de trabajo están en estado Trabajo en curso."
@@ -9409,13 +9406,13 @@ msgstr "No se puede filtrar en función al 'No. de comprobante', si esta agrupad
msgid "Can only make payment against unbilled {0}"
msgstr "Sólo se puede crear el pago contra {0} impagado"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Puede referirse a la línea, sólo si el tipo de importe es 'previo al importe' o 'previo al total'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "No se puede cambiar el método de valoración, ya que hay transacciones contra algunos artículos que no tienen su propio método de valoración"
@@ -9457,7 +9454,7 @@ msgstr "No se puede asignar cajero"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "No se puede calcular la hora de llegada porque falta la dirección del conductor."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "No se puede cambiar la configuración de la cuenta de inventario"
@@ -9465,9 +9462,9 @@ msgstr "No se puede cambiar la configuración de la cuenta de inventario"
msgid "Cannot Create Return"
msgstr "No se puede crear una devolución"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "No se puede fusionar"
@@ -9495,7 +9492,7 @@ msgstr "No se puede modificar {0} {1}; en su lugar, cree uno nuevo."
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "No se puede aplicar Retención de impuestos en origen contra varias partes en una sola entrada"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "No puede ser un elemento de Activo Fijo ya que se creo un Libro de Stock ."
@@ -9515,7 +9512,7 @@ msgstr "No se puede cancelar la entrada de reserva de stock {0}, ya que se utili
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "No se puede cancelar porque el procesamiento de los documentos cancelados está pendiente."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "No se puede cancelar debido a que existe una entrada de Stock validada en el almacén {0}"
@@ -9535,15 +9532,15 @@ msgstr "No se puede cancelar este documento porque está vinculado con el Ajuste
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "No se puede cancelar este documento porque está vinculado al recurso enviado {asset_link}. Cancele el recurso para continuar."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "No se puede cancelar la transacción para la orden de trabajo completada."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "No se pueden cambiar los Atributos después de la Transacciones de Stock. Haga un nuevo Artículo y transfiera el stock al nuevo Artículo"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "No se puede cambiar el tipo de documento de referencia."
@@ -9551,11 +9548,11 @@ msgstr "No se puede cambiar el tipo de documento de referencia."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "No se puede cambiar la fecha de detención del servicio para el artículo en la fila {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "No se pueden cambiar las propiedades de la Variante después de una transacción de stock. Deberá crear un nuevo ítem para hacer esto."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "No se puede cambiar la divisa/moneda por defecto de la compañía, porque existen transacciones, estas deben ser canceladas antes de cambiarla"
@@ -9571,11 +9568,11 @@ msgstr "No se puede convertir de 'Centros de Costos' a una cuenta del libro mayo
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "No se puede convertir una tarea a una no grupal porque existen las siguientes tareas secundarias: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "No se puede convertir a Grupo porque Tipo de Cuenta está seleccionado."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "No se puede convertir a 'Grupo' porque se seleccionó 'Tipo de Cuenta'."
@@ -9583,7 +9580,7 @@ msgstr "No se puede convertir a 'Grupo' porque se seleccionó 'Tipo de Cuenta'."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "No se pueden crear entradas de reserva de stock para recibos de compra con fecha futura."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "No se puede crear una lista de selección para la orden de venta {0} porque tiene stock reservado. Anule la reserva del stock para crear una lista de selección."
@@ -9609,7 +9606,7 @@ msgstr "No se puede declarar como perdida, porque se ha hecho el Presupuesto"
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "No se puede deducir cuando categoría es para ' Valoración ' o ' de Valoración y Total '"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "No se puede eliminar la fila de ganancias/pérdidas de cambio"
@@ -9617,12 +9614,12 @@ msgstr "No se puede eliminar la fila de ganancias/pérdidas de cambio"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "No se puede eliminar el No. de serie {0}, ya que esta siendo utilizado en transacciones de stock"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "No se puede eliminar un artículo que ya se ha pedido"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9634,7 +9631,7 @@ msgstr "No se puede eliminar el DocType virtual: {0}. Los DocTypes virtuales no
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "No se puede deshabilitar el número de serie y de lote para el artículo, ya que existen registros para el número de serie/lote."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "No se puede desactivar el inventario permanente, ya que existen asientos contables de la empresa {0}. Cancele primero las transacciones de stock y vuelva a intentarlo."
@@ -9642,20 +9639,20 @@ msgstr "No se puede desactivar el inventario permanente, ya que existen asientos
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "No se puede desmontar más de la cantidad producida."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "No se puede habilitar la cuenta de inventario por artículo, ya que existen asientos contables de stock para la empresa {0} con cuenta de inventario por almacén. Cancele las transacciones de stock primero y vuelva a intentarlo."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "No se puede garantizar la entrega por número de serie ya que el artículo {0} se agrega con y sin Asegurar entrega por número de serie"
@@ -9671,7 +9668,7 @@ msgstr "No se puede encontrar el artículo o almacén con este código de barras
msgid "Cannot find Item with this Barcode"
msgstr "No se puede encontrar el artículo con este código de barras"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "No se puede encontrar un almacén predeterminado para el artículo {0}. Establezca uno en el Maestro de artículos o en la Configuración de existencias."
@@ -9679,15 +9676,15 @@ msgstr "No se puede encontrar un almacén predeterminado para el artículo {0}.
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "No se puede fusionar {0} '{1}' en '{2}' ya que ambos tienen entradas contables existentes en diferentes monedas para la empresa '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "No se pueden producir más artículos {0} que la cantidad del pedido de venta {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "No se puede producir más productos por {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "No se pueden producir más de {0} productos por {1}"
@@ -9695,12 +9692,12 @@ msgstr "No se pueden producir más de {0} productos por {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "No se puede recibir del cliente contra saldos pendientes negativos"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "No se puede reducir la cantidad a la cantidad pedida o comprada"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "No se puede referenciar a una línea mayor o igual al numero de línea actual."
@@ -9713,14 +9710,14 @@ msgstr "No se puede recuperar el token de enlace para la actualización. Consult
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "No se puede recuperar el token de enlace. Compruebe el registro de errores para obtener más información"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9734,7 +9731,7 @@ msgstr "No se puede definir como pérdida, cuando la orden de venta esta hecha."
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "No se puede establecer la autorización sobre la base de descuento para {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "No se pueden establecer varios valores predeterminados de artículos para una empresa."
@@ -9742,11 +9739,11 @@ msgstr "No se pueden establecer varios valores predeterminados de artículos par
msgid "Cannot set multiple account rows for the same company"
msgstr "No se pueden configurar varias filas de cuentas para la misma empresa"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "No se puede establecer una cantidad menor que la cantidad entregada."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "No se puede establecer una cantidad menor que la cantidad recibida."
@@ -9758,7 +9755,7 @@ msgstr "No se puede establecer el campo {0} para copiar en variantes"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "No se puede iniciar la eliminación. Otra eliminación {0} ya está en cola/en ejecución. Espere a que se complete."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "No se puede actualizar la tarifa porque el artículo {0} ya está pedido o comprado según esta cotización"
@@ -9791,7 +9788,7 @@ msgstr "Capacidad (Stock UdM)"
msgid "Capacity Planning"
msgstr "Planificación de capacidad"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Error de planificación de capacidad, la hora de inicio planificada no puede ser la misma que la hora de finalización"
@@ -9810,13 +9807,13 @@ msgstr "Capacidad en stock UdM"
msgid "Capacity must be greater than 0"
msgstr "La capacidad debe ser superior a 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Bienes de capital"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Capital de inventario"
@@ -10033,7 +10030,7 @@ msgstr "Detalles de la categoría"
msgid "Category-wise Asset Value"
msgstr "Valor del activo por categoría"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Precaución"
@@ -10138,7 +10135,7 @@ msgstr "Cambiar fecha de lanzamiento"
msgid "Change in Stock Value"
msgstr "Cambio en el Valor de Stock"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Cambie el tipo de cuenta a Cobrar o seleccione una cuenta diferente."
@@ -10148,7 +10145,7 @@ msgstr "Cambie el tipo de cuenta a Cobrar o seleccione una cuenta diferente."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Cambie esta fecha manualmente para configurar la próxima fecha de inicio de sincronización"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Se cambió el nombre del Cliente a '{}' porque '{}' ya existe."
@@ -10156,7 +10153,7 @@ msgstr "Se cambió el nombre del Cliente a '{}' porque '{}' ya existe."
msgid "Changes in {0}"
msgstr "Cambios en {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "No se permite cambiar el grupo de clientes para el cliente seleccionado."
@@ -10171,7 +10168,7 @@ msgid "Channel Partner"
msgstr "Canal de socio"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "El cargo de tipo 'Real' en la fila {0} no puede incluirse en la Tarifa del artículo o en el Importe pagado"
@@ -10225,7 +10222,7 @@ msgstr "Árbol de cartas"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10368,7 +10365,7 @@ msgstr "Ancho Cheque"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Cheque / Fecha de referencia"
@@ -10426,7 +10423,7 @@ msgstr "Nombre del documento secundario"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referencia de filas hijas"
@@ -10478,6 +10475,11 @@ msgstr "Clasificación de Clientes por región"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10620,11 +10622,11 @@ msgstr "Documento Cerrado"
msgid "Closed Documents"
msgstr "Documentos Cerrados"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "La orden de trabajo cerrada no puede detenerse ni reabrirse"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Orden cerrada no se puede cancelar. Abrir para cancelar."
@@ -10876,11 +10878,17 @@ msgstr "Comisión de ventas %"
msgid "Commission Rate (%)"
msgstr "Comisión de ventas (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Comisiones sobre ventas"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10911,7 +10919,7 @@ msgstr "Intervalo de tiempo medio de comunicación"
msgid "Communication Medium Type"
msgstr "Tipo de medio de comunicación"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Impresión Compacta de Artículo"
@@ -11310,8 +11318,8 @@ msgstr "Compañías"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11364,7 +11372,7 @@ msgstr "Compañías"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11453,18 +11461,20 @@ msgstr "Mostrar dirección de la empresa"
msgid "Company Address Name"
msgstr "Nombre de la Empresa"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Falta la dirección de la empresa. No tiene permiso para actualizarla. Contacte con el administrador del sistema."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Cuenta bancaria de la empresa"
@@ -11560,7 +11570,7 @@ msgstr "La Empresa y la Fecha de Publicación son obligatorias"
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Las monedas de la empresa de ambas compañías deben coincidir para las Transacciones entre empresas."
@@ -11595,7 +11605,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Nombre del campo de enlace de la empresa utilizado para filtrar (opcional: déjelo vacío para eliminar todos los registros)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "El nombre de la empresa no es el mismo"
@@ -11634,12 +11644,12 @@ msgstr "Empresa a la que representa el proveedor interno"
msgid "Company {0} added multiple times"
msgstr "Empresa {0} añadida varias veces"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Compañía {0} no existe"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "La empresa {0} se agrega más de una vez"
@@ -11681,7 +11691,7 @@ msgstr "Nombre del Competidor"
msgid "Competitors"
msgstr "Competidores"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Trabajo completo"
@@ -11728,12 +11738,12 @@ msgstr "Proyectos finalizados"
msgid "Completed Qty"
msgstr "Cant. completada"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Cant. Completada no puede ser mayor que 'Cant. a Fabricar'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Cantidad completada"
@@ -11922,7 +11932,7 @@ msgstr "Considere las dimensiones contables"
msgid "Consider Minimum Order Qty"
msgstr "Considerar la cantidad mínima de pedido"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Considerar la pérdida de proceso"
@@ -12116,7 +12126,7 @@ msgstr "Costo de los artículos consumidos"
msgid "Consumed Qty"
msgstr "Cantidad consumida"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "La cantidad consumida no puede ser mayor que la cantidad reservada para el artículo {0}"
@@ -12145,7 +12155,7 @@ msgstr "Los artículos de stock consumidos, los artículos de activos consumidos
msgid "Consumed Stock Total Value"
msgstr "Valor total del stock consumido"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "La cantidad consumida del artículo {0} excede la cantidad transferida."
@@ -12273,7 +12283,7 @@ msgstr "Contacto No."
msgid "Contact Person"
msgstr "Persona de contacto"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "La persona de contacto no pertenece a {0}"
@@ -12399,6 +12409,11 @@ msgstr "Control Histórico de las transacciones de stock"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12459,7 +12474,7 @@ msgstr "Factor de conversión"
msgid "Conversion Rate"
msgstr "Tasa de conversión"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "El factor de conversión de la unidad de medida (UdM) en la línea {0} debe ser 1"
@@ -12467,15 +12482,15 @@ msgstr "El factor de conversión de la unidad de medida (UdM) en la línea {0} d
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "El factor de conversión para el artículo {0} se ha restablecido a 1.0, ya que la unidad de medida {1} es la misma que la unidad de medida de stock {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "La tasa de conversión no puede ser 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "La tasa de conversión es 1,00, pero la moneda del documento es diferente de la moneda de la empresa."
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "La tasa de conversión debe ser 1,00 si la moneda del documento es la misma que la moneda de la empresa"
@@ -12552,13 +12567,13 @@ msgstr "Correctivo"
msgid "Corrective Action"
msgstr "Acción correctiva"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Ficha de trabajo correctivo"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Operación correctiva"
@@ -12589,13 +12604,13 @@ msgstr "Costo"
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "Asignación de Costos"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "Asignación de Costos %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12725,7 +12740,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12858,7 +12873,7 @@ msgstr "El centro de costes {} es un centro de costes de grupo y los centros de
msgid "Cost Center: {0} does not exist"
msgstr "Centro de coste: {0} no existe"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Centros de costos"
@@ -12901,17 +12916,13 @@ msgstr "Costo de productos entregados"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Costo sobre ventas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Cuenta de costo de bienes vendidos en la tabla de artículos"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Costo de productos entregados"
@@ -12991,7 +13002,7 @@ msgstr "No se pueden borrar los datos de la demostración"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "No se pudo crear automáticamente el Cliente debido a que faltan los siguientes campos obligatorios:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "No se pudo crear una Nota de Crédito automáticamente, desmarque 'Emitir Nota de Crédito' y vuelva a validarla"
@@ -13180,7 +13191,7 @@ msgstr "Crear facturas"
msgid "Create Item"
msgstr "Crear articulo"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Crear tarjeta de trabajo"
@@ -13212,7 +13223,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Crear entradas en el libro mayor para el importe de modificación"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Crear enlace"
@@ -13279,7 +13290,7 @@ msgstr "Crear entrada de pago para facturas TPV consolidadas."
msgid "Create Payment Request"
msgstr "Crear solicitud de pago"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Crear lista de selección"
@@ -13424,7 +13435,7 @@ msgstr ""
msgid "Create Tasks"
msgstr "Crear tareas"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Crear plantilla de impuestos"
@@ -13462,12 +13473,12 @@ msgstr "Crear Permiso de Usuario"
msgid "Create Users"
msgstr "Crear Usuarios"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Crear variante"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Crear variantes"
@@ -13498,12 +13509,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Cree una variante con la imagen de la plantilla."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Cree una transacción de stock entrante para el artículo."
@@ -13537,7 +13548,7 @@ msgstr "¿Crear {0} {1} ?"
msgid "Created By Migration"
msgstr "Creado por migración"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Se crearon {0} tarjetas de puntos para {1} entre:"
@@ -13570,7 +13581,7 @@ msgstr "Creando Nota de Entrega..."
msgid "Creating Delivery Schedule..."
msgstr "Creando un programa de entrega..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Creando Dimensiones ..."
@@ -13765,7 +13776,7 @@ msgstr "Días de Crédito"
msgid "Credit Limit"
msgstr "Límite de crédito"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Límite de crédito sobrepasado"
@@ -13775,12 +13786,6 @@ msgstr "Límite de crédito sobrepasado"
msgid "Credit Limit Settings"
msgstr "Configuración del límite de crédito"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Límite de Crédito y Condiciones de Pago"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Límite de crédito:"
@@ -13812,7 +13817,7 @@ msgstr "Meses de Crédito"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13840,7 +13845,7 @@ msgstr "Nota de crédito emitida"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "La nota de crédito actualizará su propio importe pendiente, incluso si se especifica \"Devolución contra\"."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Nota de crédito {0} se ha creado automáticamente"
@@ -13848,7 +13853,7 @@ msgstr "Nota de crédito {0} se ha creado automáticamente"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Acreditar en"
@@ -13857,20 +13862,20 @@ msgstr "Acreditar en"
msgid "Credit in Company Currency"
msgstr "Divisa por defecto de la cuenta de credito"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Se ha cruzado el límite de crédito para el Cliente {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "El límite de crédito ya está definido para la Compañía {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Se alcanzó el límite de crédito para el cliente {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13878,8 +13883,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Tasa de rotación de acreedores"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Acreedores"
@@ -14049,7 +14054,7 @@ msgstr "El Cambio de Moneda debe ser aplicable para comprar o vender."
msgid "Currency and Price List"
msgstr "Divisa y listas de precios"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "El tipo de moneda/divisa no se puede cambiar después de crear la entrada contable"
@@ -14059,7 +14064,7 @@ msgstr "Actualmente, los filtros de moneda no son compatibles con el Informe fin
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Moneda para {0} debe ser {1}"
@@ -14142,8 +14147,8 @@ msgstr "Fecha de Inicio de la Factura Actual"
msgid "Current Level"
msgstr "Nivel actual"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Pasivo circulante"
@@ -14210,6 +14215,11 @@ msgstr "Inventario Actual"
msgid "Current Valuation Rate"
msgstr "Tasa de valoración actual"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Curvas"
@@ -14305,7 +14315,6 @@ msgstr "Delimitador personalizado"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14412,7 +14421,6 @@ msgstr "Delimitador personalizado"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14501,8 +14509,8 @@ msgstr "Dirección del cliente"
msgid "Customer Addresses And Contacts"
msgstr "Direcciones de clientes y contactos"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Avances del cliente"
@@ -14516,7 +14524,7 @@ msgstr "Código de Cliente"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14599,6 +14607,7 @@ msgstr "Comentarios de cliente"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14621,7 +14630,7 @@ msgstr "Comentarios de cliente"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14638,6 +14647,7 @@ msgstr "Comentarios de cliente"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14681,7 +14691,7 @@ msgstr "Artículo del cliente"
msgid "Customer Items"
msgstr "Partidas de deudores"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Cliente LPO"
@@ -14733,7 +14743,7 @@ msgstr "Numero de móvil de cliente"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14839,7 +14849,7 @@ msgstr "Proporcionado por el cliente"
msgid "Customer Provided Item Cost"
msgstr "Costo del artículo proporcionado por el cliente"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Servicio al cliente"
@@ -14896,9 +14906,9 @@ msgstr "Cliente o artículo"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Se requiere un cliente para el descuento"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Cliente {0} no pertenece al proyecto {1}"
@@ -15010,7 +15020,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Resumen diario del proyecto para {0}"
@@ -15101,7 +15111,7 @@ msgstr "La fecha de nacimiento no puede ser mayor a la fecha de hoy."
msgid "Date of Commencement"
msgstr "Fecha de Comienzo"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "La fecha de inicio debe ser mayor que la fecha de incorporación"
@@ -15327,7 +15337,7 @@ msgstr "Importe del débito en la moneda de la transacción"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15355,13 +15365,13 @@ msgstr "La nota de débito actualizará su propio monto pendiente, incluso si se
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debitar a"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Débito Para es requerido"
@@ -15489,8 +15499,7 @@ msgstr "Cuenta predeterminada"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15516,14 +15525,14 @@ msgstr "Cuenta de anticipos por defecto"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Cuenta de anticipos por defecto"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Cuenta de anticipos recibidos por defecto"
@@ -15538,19 +15547,19 @@ msgstr "Rango de envejecimiento predeterminado"
msgid "Default BOM"
msgstr "Lista de Materiales (LdM) por defecto"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "La lista de materiales (LdM) por defecto ({0}) debe estar activa para este producto o plantilla"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "BOM por defecto para {0} no encontrado"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "LDM por defecto no encontrada para el artículo FG {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "La lista de materiales predeterminada no se encontró para el Elemento {0} y el Proyecto {1}"
@@ -15603,9 +15612,7 @@ msgid "Default Company"
msgstr "Compañía predeterminada"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Cuenta bancaria predeterminada de la empresa"
@@ -15721,6 +15728,16 @@ msgstr "Grupo de artículos predeterminado"
msgid "Default Item Manufacturer"
msgstr "Fabricante de artículo predeterminado"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15756,23 +15773,19 @@ msgid "Default Payment Request Message"
msgstr "Mensaje de solicitud de pago por defecto"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Plantilla de Términos de Pago Predeterminados"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15895,15 +15908,15 @@ msgstr "Territorio predeterminado"
msgid "Default Unit of Measure"
msgstr "Unidad de Medida (UdM) predeterminada"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "La unidad de medida predeterminada para el artículo {0} no se puede cambiar directamente porque ya ha realizado alguna transacción con otra unidad de medida. Debe cancelar los documentos vinculados o crear un artículo nuevo."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Unidad de medida predeterminada para el artículo {0} no se puede cambiar directamente porque ya ha realizado alguna transacción (s) con otra UOM. Usted tendrá que crear un nuevo elemento a utilizar un UOM predeterminado diferente."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Unidad de medida predeterminada para variante '{0}' debe ser la mismo que en la plantilla '{1}'"
@@ -15955,7 +15968,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Configuración predeterminada para sus transacciones relacionadas con acciones"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Se crean plantillas de impuestos por defecto para ventas, compras y artículos."
@@ -16046,6 +16059,12 @@ msgstr "Defina el Tipo de Proyecto."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16128,12 +16147,12 @@ msgstr "Eliminar clientes potenciales y direcciones"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Eliminar transacciones"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Eliminar todas las transacciones para esta compañía"
@@ -16154,8 +16173,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Eliminando {0} y todos los documentos de Código Común asociados..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "¡Eliminación en progreso!"
@@ -16266,11 +16285,11 @@ msgstr "Cant. Entregada"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Cantidad entregada (en stock UdM)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16351,7 +16370,7 @@ msgstr "Gerente de Envío"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16411,11 +16430,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr "Evolución de las notas de entrega"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "La nota de entrega {0} no se ha validado"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Notas de entrega"
@@ -16501,10 +16520,6 @@ msgstr "Almacén de entrega"
msgid "Delivery to"
msgstr "Entregar a"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Almacén de entrega requerido para el inventrio del producto {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16624,8 +16639,8 @@ msgstr "Monto Depreciado"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16718,7 +16733,7 @@ msgstr "Opciones de Depreciación"
msgid "Depreciation Posting Date"
msgstr "Fecha de contabilización de la depreciación"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "La fecha de contabilización de la depreciación no puede ser anterior a la fecha de disponibilidad para uso"
@@ -16876,15 +16891,15 @@ msgstr "Diferencia (Deb - Cred)"
msgid "Difference Account"
msgstr "Cuenta para la Diferencia"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Cuenta de Diferencia en la Tabla de Artículos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Una cuenta distinta debe ser del tipo Activo / Pasivo, ya que la reconciliación del stock es una entrada de apertura"
@@ -16996,15 +17011,15 @@ msgstr "Dimensiones"
msgid "Direct Expense"
msgstr "Gastos Directos"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Gastos directos"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Ingreso directo"
@@ -17085,6 +17100,11 @@ msgstr "Desactivar redondeo"
msgid "Disable Serial No And Batch Selector"
msgstr "Desactivar selección de Núm. de Serie y Lote"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17121,11 +17141,11 @@ msgstr "El almacén deshabilitado {0} no se puede utilizar para esta transacció
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Deshabilitado las reglas de precios, ya que esta {} es una transferencia interna"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Precios con impuestos incluidos, ya que este {} es un traslado interno"
@@ -17141,7 +17161,7 @@ msgstr "Desactiva el cálculo automático de la cantidad existente"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17149,15 +17169,15 @@ msgstr "Desactiva el cálculo automático de la cantidad existente"
msgid "Disassemble"
msgstr "Desmontar"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Orden de desmontaje"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "La Cant. a desensamblar no puede ser menor o igual a 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "La Cant. a desensamblar no puede ser menor o igual a 0 ."
@@ -17444,7 +17464,7 @@ msgstr "Motivo discrecional"
msgid "Dislikes"
msgstr "No me gusta"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Despacho"
@@ -17525,7 +17545,7 @@ msgstr "Mostrar Nombre"
msgid "Disposal Date"
msgstr "Fecha de eliminación"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17639,8 +17659,8 @@ msgstr "Nombre de la distribución"
msgid "Distributor"
msgstr "Distribuidor"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Dividendos pagados"
@@ -17702,7 +17722,7 @@ msgstr "No volver a mostrar cualquier símbolo como $ u otro junto a las monedas
msgid "Do not update variants on save"
msgstr "No actualice las variantes al guardar"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "¿Realmente desea restaurar este activo desechado?"
@@ -17726,7 +17746,7 @@ msgstr "¿Desea notificar a todos los clientes por correo electrónico?"
msgid "Do you want to submit the material request"
msgstr "¿Quieres validar la solicitud de material?"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "¿Desea validar la entrada de stock?"
@@ -17793,11 +17813,11 @@ msgstr "No. de documento"
msgid "Document Type "
msgstr "Tipo de Documento"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Tipo de documento ya utilizado como dimensión"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Documentación"
@@ -17960,12 +17980,6 @@ msgstr "Categorías de Licencia de Conducir"
msgid "Driving License Category"
msgstr "Categoría de Licencia de Conducir"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Procedimientos de entrega"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17986,12 +18000,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "La fecha de vencimiento no puede ser posterior a {0}"
@@ -18150,8 +18158,8 @@ msgstr "Duración (Días)"
msgid "Duration in Days"
msgstr "Duración en Días"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "IMPUESTOS Y ARANCELES"
@@ -18234,7 +18242,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Cada Transacción"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Primeras"
@@ -18348,6 +18356,10 @@ msgstr "Es obligatoria la meta de facturacion"
msgid "Either target qty or target amount is mandatory."
msgstr "Es obligatoria la meta fe facturación."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18367,8 +18379,8 @@ msgstr "Electricidad"
msgid "Electricity down"
msgstr "Electricidad bajada"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Equipo Electrónico"
@@ -18572,8 +18584,8 @@ msgstr "Avance del Empleado"
msgid "Employee Advances"
msgstr "Avances de Empleado"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Obligación de beneficios a los empleados"
@@ -18656,7 +18668,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "El empleado {0} no pertenece a la empresa {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "El empleado {0} está trabajando en otra estación de trabajo. Por favor, asigne otro empleado."
@@ -18672,7 +18684,7 @@ msgstr "Empleados"
msgid "Empty"
msgstr "Vacío"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Lista vacía para eliminar"
@@ -18703,7 +18715,7 @@ msgstr "Habilitar programación de citas"
msgid "Enable Auto Email"
msgstr "Habilitar correo electrónico automático"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Habilitar reordenamiento automático"
@@ -18869,12 +18881,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19003,8 +19009,8 @@ msgstr "La fecha de finalización no puede ser anterior a la fecha de inicio."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19103,8 +19109,8 @@ msgstr "Introducir manualmente"
msgid "Enter Serial Nos"
msgstr "Introduzca los números de serie"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Introduzca valor"
@@ -19129,7 +19135,7 @@ msgstr "Introduzca un nombre para esta Lista de vacaciones."
msgid "Enter amount to be redeemed."
msgstr "Introduzca el importe a canjear."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Introduzca un Código de Artículo, el nombre se autocompletará igual que Código de Artículo al pulsar dentro del campo Nombre de Artículo."
@@ -19141,7 +19147,7 @@ msgstr "Introduzca el correo electrónico del cliente"
msgid "Enter customer's phone number"
msgstr "Introduzca el número de teléfono del cliente"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Introduce la fecha para dar de baja el activo."
@@ -19185,7 +19191,7 @@ msgstr "Introduzca el nombre del beneficiario antes de validar."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Introduzca el nombre del banco o de la entidad de crédito antes de validar el formulario."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Introduzca las unidades de existencias iniciales."
@@ -19193,7 +19199,7 @@ msgstr "Introduzca las unidades de existencias iniciales."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Introduzca la cantidad del Artículo que se fabricará a partir de esta Lista de Materiales."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Introduzca la cantidad a fabricar. Los artículos de materia prima sólo se obtendrán cuando se haya configurado esta opción."
@@ -19205,8 +19211,8 @@ msgstr "Introduzca el importe {0}"
msgid "Entertainment & Leisure"
msgstr "Entretenimiento y Ocio"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "GASTOS DE ENTRETENIMIENTO"
@@ -19230,8 +19236,8 @@ msgstr "Tipo de entrada"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19292,7 +19298,7 @@ msgstr "Error al contabilizar asientos de amortización"
msgid "Error while processing deferred accounting for {0}"
msgstr "Error al procesar la contabilidad diferida para {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Error al volver a publicar la valoración del artículo"
@@ -19304,7 +19310,7 @@ msgstr "Error: Este activo ya tiene contabilizados {0} periodos de amortización
"\t\t\t\t\tLa fecha de `inicio de la amortización` debe ser al menos {1} periodos después de la fecha de `disponible para su uso`.\n"
"\t\t\t\t\tPor favor, corrija las fechas en consecuencia."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Error: {0} es un campo obligatorio"
@@ -19350,7 +19356,7 @@ msgstr ""
msgid "Example URL"
msgstr "URL de ejemplo"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Ejemplo de documento vinculado: {0}"
@@ -19369,7 +19375,7 @@ msgstr "Ejemplo: ABCD. #####. Si se establece una serie y no se menciona el No d
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Ejemplo: Número de serie {0} reservado en {1}."
@@ -19379,7 +19385,7 @@ msgstr "Ejemplo: Número de serie {0} reservado en {1}."
msgid "Exception Budget Approver Role"
msgstr "Rol de aprobación de presupuesto de excepción"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19387,7 +19393,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Exceso de materiales consumidos"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Exceso de transferencia"
@@ -19418,17 +19424,17 @@ msgstr "Ganancias o pérdidas por tipo de cambio"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Ganancia/Pérdida en Cambio"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "El importe de las ganancias/pérdidas de cambio se ha contabilizado a través de {0}."
@@ -19567,7 +19573,7 @@ msgstr "Asistente Ejecutivo"
msgid "Executive Search"
msgstr "Búsqueda de Ejecutivo"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Suministros exentos"
@@ -19654,7 +19660,7 @@ msgstr "Fecha de cierre prevista"
msgid "Expected Delivery Date"
msgstr "Fecha prevista de entrega"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "La fecha de entrega esperada debe ser posterior a la fecha del pedido de cliente"
@@ -19738,7 +19744,7 @@ msgstr "Valor esperado después de la Vida Útil"
msgid "Expense"
msgstr "Gastos"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "La cuenta de Gastos/Diferencia ({0}) debe ser una cuenta de 'utilidad o pérdida \""
@@ -19816,23 +19822,23 @@ msgstr "La cuenta de gastos es obligatoria para el elemento {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Gastos"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Gastos incluidos en la valoración de activos"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "GASTOS DE VALORACIÓN"
@@ -19911,7 +19917,7 @@ msgstr "Historial de trabajos externos"
msgid "Extra Consumed Qty"
msgstr "Cantidad extra consumida"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Cantidad de tarjetas de trabajo adicionales"
@@ -20048,7 +20054,7 @@ msgstr "Error al configurar la compañía"
msgid "Failed to setup defaults"
msgstr "Error al cambiar a default"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Fallo al configurar los valores predeterminados para el país {0}. Póngase en contacto con el servicio de asistencia."
@@ -20166,6 +20172,11 @@ msgstr "Obtener valor de"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Buscar lista de materiales (LdM) incluyendo subconjuntos"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20203,21 +20214,29 @@ msgstr "Mapeo de campo"
msgid "Field in Bank Transaction"
msgstr "Campo en transacción bancaria"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Los campos se copiarán solo al momento de la creación."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20425,9 +20444,9 @@ msgstr "El año fiscal comienza el"
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 "Los informes financieros se generarán utilizando los doctypes de entrada GL (debe activarse si el Comprobante de Cierre de Período no se contabiliza para todos los años secuencialmente o faltantes) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Terminar"
@@ -20484,15 +20503,15 @@ msgstr "Cantidad de artículos acabados"
msgid "Finished Good Item Quantity"
msgstr "Cantidad de artículos acabados"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Artículo de producto terminado no especificado para artículo de servicio {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Producto terminado {0} La cantidad no puede ser cero"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "El artículo terminado {0} debe ser un artículo subcontratado"
@@ -20538,7 +20557,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "El producto terminado {0} debe ser un artículo subcontratado."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Productos terminados"
@@ -20579,7 +20598,7 @@ msgstr "Almacén de productos terminados"
msgid "Finished Goods based Operating Cost"
msgstr "Costo operativo basado en productos terminados"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Artículo terminado {0} no coincide con la orden de trabajo {1}"
@@ -20720,6 +20739,7 @@ msgstr "Fijo"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Activo fijo"
@@ -20738,7 +20758,7 @@ msgstr "Cuenta de activo fijo"
msgid "Fixed Asset Defaults"
msgstr "Cuenta de activo fijo predeterminada"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Artículo de Activos Fijos no debe ser un artículo de stock."
@@ -20757,8 +20777,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Activos fijos"
@@ -20831,7 +20851,7 @@ msgstr "Seguir meses del calendario"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Las Solicitudes de Materiales siguientes se han planteado de forma automática según el nivel de re-pedido del articulo"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Los siguientes campos son obligatorios para crear una dirección:"
@@ -20888,7 +20908,7 @@ msgstr "Para la empresa"
msgid "For Item"
msgstr "Para artículo"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Para el artículo {0} no se puede recibir más de {1} cantidad contra {2} {3}"
@@ -20898,7 +20918,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Para operaciones"
@@ -20919,17 +20939,13 @@ msgstr "Por lista de precios"
msgid "For Production"
msgstr "Por producción"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Para Cantidad (Cant. Fabricada) es obligatorio"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Para las Facturas de Devolución con efecto de Stock, no se permiten artículos de cant. '0'. Se ven afectadas las siguientes líneas: {0}"
@@ -20957,11 +20973,11 @@ msgstr "Para el almacén"
msgid "For Work Order"
msgstr "Para Orden de Trabajo"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Para un artículo {0}, la cantidad debe ser un número negativo"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Para un Artículo {0}, la cantidad debe ser número positivo"
@@ -20999,7 +21015,7 @@ msgstr "Por proveedor individual"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Para el producto {0}, el precio debe ser un número positivo. Para permitir precios negativos, habilite {1} en {2}"
@@ -21013,7 +21029,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Para la operación {0}: la cantidad ({1}) no puede ser mayor que la cantidad pendiente ({2})"
@@ -21030,7 +21046,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Para la cantidad {0} no debe ser mayor que la cantidad permitida {1}"
@@ -21039,12 +21055,12 @@ msgstr "Para la cantidad {0} no debe ser mayor que la cantidad permitida {1}"
msgid "For reference"
msgstr "Para referencia"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Para la línea {0} en {1}. incluir {2} en la tasa del producto, las lineas {3} también deben ser incluidas"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Para la fila {0}: Introduzca la cantidad prevista"
@@ -21063,7 +21079,7 @@ msgstr "Para la condición "Aplicar regla a otros", el campo {0} es ob
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Para comodidad de los clientes, estos códigos se pueden utilizar en formatos de impresión como facturas y notas de entrega."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21110,11 +21126,6 @@ msgstr "Pronóstico"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21160,7 +21171,7 @@ msgstr "Publicaciones del Foro"
msgid "Forum URL"
msgstr "URL del Foro"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21205,8 +21216,8 @@ msgstr "Artículo gratuito no establecido en la regla de precios {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Congelar existencias anteriores a (días)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "CARGOS DE TRANSITO Y TRANSPORTE"
@@ -21640,8 +21651,8 @@ msgstr "Totalmente pagado"
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Muebles y accesorios"
@@ -21658,13 +21669,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Monto de pago futuro"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Ref. De pago futuro"
@@ -21672,7 +21683,7 @@ msgstr "Ref. De pago futuro"
msgid "Future Payments"
msgstr "Pagos futuros"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "No se permiten fechas futuras"
@@ -21757,9 +21768,9 @@ msgstr "Ganancias/pérdidas ya contabilizadas"
msgid "Gain/Loss from Revaluation"
msgstr "Ganancias/pérdidas por revalorización"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Ganancia/Pérdida por enajenación de activos fijos"
@@ -21932,7 +21943,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr "Verificar inventario actual"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Obtener Detalles del Grupo de Clientes"
@@ -21990,7 +22001,7 @@ msgstr "Obtener ubicaciones de artículos"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22029,7 +22040,7 @@ msgstr "Obtener productos desde lista de materiales (LdM)"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Obtener artículos de solicitudes de material contra este proveedor"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Obtener Productos del Paquete de Productos"
@@ -22203,7 +22214,7 @@ msgstr "Objetivos"
msgid "Goods"
msgstr "Mercancías"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Las mercancías en tránsito"
@@ -22212,7 +22223,7 @@ msgstr "Las mercancías en tránsito"
msgid "Goods Transferred"
msgstr "Bienes transferidos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Las mercancías ya se reciben contra la entrada exterior {0}"
@@ -22395,7 +22406,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "Conceder Comisión"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Mayor que la cantidad"
@@ -22838,7 +22849,7 @@ msgstr "Le ayuda a distribuir el Presupuesto/Objetivo a lo largo de los meses si
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "A continuación se muestran los registros de errores de las entradas de depreciación fallidas mencionadas anteriormente: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Estas son las opciones para proceder:"
@@ -22866,7 +22877,7 @@ msgstr "Aquí, los días libres semanales se rellenan previamente en función de
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Hola,"
@@ -23065,7 +23076,7 @@ msgstr ""
msgid "Hrs"
msgstr "Hrs"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Recursos Humanos"
@@ -23234,6 +23245,12 @@ msgstr "Si está marcada, el importe del impuesto se considerará ya incluido en
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Si se selecciona, el valor del impuesto se considerará como ya incluido en el importe"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Si está marcada, crearemos datos de demostración para que explore el sistema. Estos datos de demostración pueden borrarse posteriormente."
@@ -23452,7 +23469,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "En caso contrario, puedes Cancelar/Validar esta entrada"
@@ -23478,13 +23495,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Si la lista de materiales arroja como resultado material de desecho, se debe seleccionar el almacén de desecho."
@@ -23493,7 +23515,7 @@ msgstr "Si la lista de materiales arroja como resultado material de desecho, se
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Si la cuenta está congelado, las entradas estarán permitidas a los usuarios restringidos."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Si el artículo está realizando transacciones como un artículo de tasa de valoración cero en esta entrada, habilite "Permitir tasa de valoración cero" en la {0} tabla de artículos."
@@ -23503,7 +23525,7 @@ msgstr "Si el artículo está realizando transacciones como un artículo de tasa
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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Si la lista de materiales seleccionada tiene Operaciones mencionadas en ella, el sistema obtendrá todas las Operaciones de la lista de materiales, estos valores pueden modificarse."
@@ -23580,7 +23602,7 @@ msgstr "Si la caducidad de los Puntos de fidelidad es ilimitada, mantenga la Dur
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "En caso afirmativo, este almacén se utilizará para almacenar los materiales rechazados"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Si mantiene existencias de este artículo en su inventario, ERPNext realizará una entrada en el libro de existencias para cada transacción de este artículo."
@@ -23594,7 +23616,7 @@ msgstr "Si necesita conciliar transacciones específicas entre sí, seleccione l
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Si aún así desea continuar, desactive la casilla 'Omitir elementos de subensamblaje disponibles'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Si aún desea continuar, habilite {0}."
@@ -23678,7 +23700,7 @@ msgstr "Ignorar la revalorización del tipo de cambio y los diarios de ganancias
msgid "Ignore Existing Ordered Qty"
msgstr "Ignorar la existencia ordenada Qty"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Ignorar la cantidad proyectada existente"
@@ -23765,12 +23787,12 @@ msgstr "Ignorar la Superposición de Tiempo de la Estación de Trabajo"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23928,7 +23950,7 @@ msgstr "En producción"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "En Cant."
@@ -24052,7 +24074,7 @@ msgstr "En el caso de un programa de multi-nivel, los clientes serán asignados
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "En esta sección, puede definir los valores predeterminados relacionados con las transacciones de toda la empresa para este Artículo. Por ejemplo, Almacén por defecto, Lista de precios por defecto, Proveedor, etc."
@@ -24283,8 +24305,8 @@ msgstr "Incluir productos para subconjuntos"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24355,7 +24377,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24387,7 +24409,7 @@ msgstr "Cantidad de saldo incorrecta tras la transacción"
msgid "Incorrect Batch Consumed"
msgstr "Lote incorrecto consumido"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Comprobación incorrecta en (grupo) Almacén para Reordenar"
@@ -24395,7 +24417,7 @@ msgstr "Comprobación incorrecta en (grupo) Almacén para Reordenar"
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Cantidad incorrecta de componentes"
@@ -24529,15 +24551,15 @@ msgstr "Indica que el paquete es una parte de esta entrega (Sólo borradores)"
msgid "Indirect Expense"
msgstr "Gastos Indirectos"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Egresos Indirectos"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Ingresos Indirectos"
@@ -24605,14 +24627,14 @@ msgstr "Iniciado"
msgid "Inspected By"
msgstr "Inspeccionado por"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspección Rechazada"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspección Requerida"
@@ -24629,8 +24651,8 @@ msgstr "Inspección Requerida antes de Entrega"
msgid "Inspection Required before Purchase"
msgstr "Inspección Requerida antes de Compra"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Presentación de la inspección"
@@ -24660,7 +24682,7 @@ msgstr "Nota de Instalación"
msgid "Installation Note Item"
msgstr "Nota de instalación de elementos"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "La nota de instalación {0} ya se ha validado"
@@ -24699,11 +24721,11 @@ msgstr "Instrucción"
msgid "Insufficient Capacity"
msgstr "Capacidad Insuficiente"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Permisos Insuficientes"
@@ -24711,13 +24733,12 @@ msgstr "Permisos Insuficientes"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Insuficiente Stock"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Stock insuficiente para el lote"
@@ -24837,13 +24858,13 @@ msgstr "Referencia de inter transferencia"
msgid "Interest"
msgstr "Interés"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24851,8 +24872,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr "Intereses y/o gastos de reclamación"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24872,7 +24893,7 @@ msgstr "Interno"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Cliente Interno para empresa {0} ya existe"
@@ -24880,7 +24901,7 @@ msgstr "Cliente Interno para empresa {0} ya existe"
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Falta referencia de venta o entrega interna."
@@ -24888,7 +24909,7 @@ msgstr "Falta referencia de venta o entrega interna."
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Falta la referencia de ventas internas"
@@ -24919,7 +24940,7 @@ msgstr "Ya existe el proveedor interno de la empresa {0}"
msgid "Internal Transfer"
msgstr "Transferencia Interna"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Falta referencia de transferencia interna"
@@ -24932,7 +24953,12 @@ msgstr "Transferencias Internas"
msgid "Internal Work History"
msgstr "Historial de trabajo interno"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Las transferencias internas solo se pueden realizar en la moneda predeterminada de la empresa"
@@ -24948,12 +24974,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Cuenta no válida"
@@ -24974,7 +25000,7 @@ msgstr "Importe no válido"
msgid "Invalid Attribute"
msgstr "Atributo Inválido"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Fecha de repetición automática inválida"
@@ -24987,7 +25013,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Código de barras inválido. No hay ningún elemento adjunto a este código de barras."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Pedido abierto inválido para el cliente y el artículo seleccionado"
@@ -25003,21 +25029,21 @@ msgstr "Procedimiento de niño no válido"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Empresa inválida para transacciones entre empresas."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Centro de Costo Inválido"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Fecha de Entrega Inválida"
@@ -25055,7 +25081,7 @@ msgstr "Agrupar por no válido"
msgid "Invalid Item"
msgstr "Artículo Inválido"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Artículos por defecto no válidos"
@@ -25069,7 +25095,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Entrada de apertura no válida"
@@ -25077,11 +25103,11 @@ msgstr "Entrada de apertura no válida"
msgid "Invalid POS Invoices"
msgstr "Facturas de PdV inválidas"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Cuenta principal no válida"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Número de pieza no válido"
@@ -25111,12 +25137,12 @@ msgstr "Configuración de pérdida de proceso no válida"
msgid "Invalid Purchase Invoice"
msgstr "Factura de Compra no válida"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Cant. inválida"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Cantidad inválida"
@@ -25141,12 +25167,12 @@ msgstr "Programación no válida"
msgid "Invalid Selling Price"
msgstr "Precio de venta no válido"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Paquete de serie y lote no válidos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25171,7 +25197,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr "Expresión de condición no válida"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25183,7 +25209,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Motivo perdido no válido {0}, cree un nuevo motivo perdido"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Serie de nombres no válida (falta.) Para {0}"
@@ -25209,8 +25235,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Valor no válido {0} para {1} contra la cuenta {2}"
@@ -25218,7 +25244,7 @@ msgstr "Valor no válido {0} para {1} contra la cuenta {2}"
msgid "Invalid {0}"
msgstr "Inválido {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "No válido {0} para la transacción entre empresas."
@@ -25228,7 +25254,7 @@ msgid "Invalid {0}: {1}"
msgstr "No válido {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Inventario"
@@ -25277,8 +25303,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "Banca de Inversión"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Inversiones"
@@ -25328,7 +25354,7 @@ msgstr "Descuento de facturas"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Factura Gran Total"
@@ -25433,7 +25459,7 @@ msgstr "No se puede facturar por cero horas de facturación"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25454,7 +25480,7 @@ msgstr "Cant. Facturada"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25550,8 +25576,7 @@ msgstr "Es Alternativo"
msgid "Is Billable"
msgstr "Es Facturable"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Es contacto de facturación"
@@ -25993,8 +26018,7 @@ msgstr "Es Plantilla"
msgid "Is Transporter"
msgstr "Es transportador"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Es la dirección de su compañía"
@@ -26100,8 +26124,8 @@ msgstr "Tipo de Problema"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Emitir una Nota de Débito con cantidad 0 contra una Factura de Venta existente"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26131,11 +26155,11 @@ msgstr "Incidencias"
msgid "Issuing Date"
msgstr "Fecha de Emisión"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Pueden pasar algunas horas hasta que los valores de stock precisos sean visibles después de fusionar los elementos."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Se necesita a buscar Detalles del artículo."
@@ -26259,7 +26283,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26507,7 +26531,7 @@ msgstr "Carrito de Productos"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26569,7 +26593,7 @@ msgstr "Carrito de Productos"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26768,13 +26792,13 @@ msgstr "Detalles del artículo"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26991,7 +27015,7 @@ msgstr "Fabricante del artículo"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27031,10 +27055,10 @@ msgstr "Fabricante del artículo"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27075,10 +27099,6 @@ msgstr ""
msgid "Item Price"
msgstr "Precio de Productos"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27094,19 +27114,20 @@ msgstr "Configuración del precio del Producto"
msgid "Item Price Stock"
msgstr "Artículo Stock de Precios"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Precio del producto añadido para {0} en Lista de Precios {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "El precio del producto aparece varias veces según la lista de precios, proveedor/cliente, moneda, producto, lote, unidad de medida, cantidad y fechas."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Precio del producto actualizado para {0} en Lista de Precios {1}"
@@ -27293,11 +27314,11 @@ msgstr "Detalles de la Variante del Artículo"
msgid "Item Variant Settings"
msgstr "Configuraciones de Variante de Artículo"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Artículo Variant {0} ya existe con los mismos atributos"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Variantes del artículo actualizadas"
@@ -27398,11 +27419,11 @@ msgstr "Producto y Almacén"
msgid "Item and Warranty Details"
msgstr "Producto y detalles de garantía"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "El artículo de la fila {0} no coincide con la solicitud de material"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "El producto tiene variantes."
@@ -27428,11 +27449,7 @@ msgstr "Nombre del producto"
msgid "Item operation"
msgstr "Operación del artículo"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "La cantidad de artículos no puede actualizarse porque las materias primas ya están procesadas."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "La tasa del artículo se ha actualizado a cero ya que la opción Permitir tasa de valoración cero está marcada para el artículo {0}"
@@ -27451,11 +27468,11 @@ msgstr "La tasa de valoración del artículo se recalcula teniendo en cuenta el
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Traspaso de valoración de artículos en curso. El informe podría mostrar una valoración de artículos incorrecta."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Existe la variante de artículo {0} con mismos atributos"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27472,7 +27489,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artículo {0} no puede ser pedido más que {1} contra pedido abierto {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "El elemento {0} no existe"
@@ -27484,7 +27501,7 @@ msgstr "El elemento {0} no existe en el sistema o ha expirado"
msgid "Item {0} does not exist."
msgstr "El artículo {0} no existe."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Producto {0} ingresado varias veces."
@@ -27496,15 +27513,15 @@ msgstr "El producto {0} ya ha sido devuelto"
msgid "Item {0} has been disabled"
msgstr "Elemento {0} ha sido desactivado"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "El artículo {0} no tiene número de serie. Solo los artículos serializados pueden enviarse según el número de serie."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "El producto {0} ha llegado al fin de la vida útil el {1}"
@@ -27516,15 +27533,15 @@ msgstr "El producto {0} ha sido ignorado ya que no es un elemento de stock"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "El artículo {0} ya está reservado/entregado contra el pedido de venta {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "El producto {0} esta cancelado"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Artículo {0} está deshabilitado"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27532,7 +27549,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "El producto {0} no es un producto serializado"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "El producto {0} no es un producto de stock"
@@ -27540,11 +27557,11 @@ msgstr "El producto {0} no es un producto de stock"
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "El producto {0} no está activo o ha llegado al final de la vida útil"
@@ -27560,7 +27577,7 @@ msgstr "El artículo {0} debe ser un artículo que no se encuentra en stock"
msgid "Item {0} must be a non-stock item"
msgstr "Elemento {0} debe ser un elemento de no-stock"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "El artículo {0} no se encontró en la tabla 'Materias primas suministradas' en {1} {2}"
@@ -27568,7 +27585,7 @@ msgstr "El artículo {0} no se encontró en la tabla 'Materias primas suministra
msgid "Item {0} not found."
msgstr "Artículo {0} no encontrado."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "El producto {0}: Con la cantidad ordenada {1} no puede ser menor que el pedido mínimo {2} (definido en el producto)."
@@ -27576,7 +27593,7 @@ msgstr "El producto {0}: Con la cantidad ordenada {1} no puede ser menor que el
msgid "Item {0}: {1} qty produced. "
msgstr "Elemento {0}: {1} cantidad producida."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Producto {0} no existe."
@@ -27622,7 +27639,7 @@ msgstr "Detalle de Ventas"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27646,7 +27663,7 @@ msgstr "Catálogo de Productos"
msgid "Items Filter"
msgstr "Artículos Filtra"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Elementos requeridos"
@@ -27670,11 +27687,11 @@ msgstr "Solicitud de Productos"
msgid "Items and Pricing"
msgstr "Productos y Precios"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Los artículos no se pueden actualizar, ya que la orden de subcontratación se crea contra la orden de compra {0}."
@@ -27686,7 +27703,7 @@ msgstr "Artículos para solicitud de materia prima"
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "La tasa de artículos se ha actualizado a cero, ya que la opción Permitir tasa de valoración cero está marcada para los siguientes artículos: {0}"
@@ -27696,7 +27713,7 @@ msgstr "La tasa de artículos se ha actualizado a cero, ya que la opción Permit
msgid "Items to Be Repost"
msgstr "Artículos a reenviar"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Los artículos a fabricar están obligados a extraer las materias primas asociadas."
@@ -27761,9 +27778,9 @@ msgstr "Capacidad de Trabajo"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27825,7 +27842,7 @@ msgstr "Registro de tiempo de tarjeta de trabajo"
msgid "Job Card and Capacity Planning"
msgstr "Ficha de trabajo y planificación de capacidad"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "La ficha de trabajo {0} se ha completado"
@@ -27901,7 +27918,7 @@ msgstr "Nombre del trabajador"
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Tarjeta de trabajo {0} creada"
@@ -28121,7 +28138,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowatt-Hora"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Por favor cancele primero las entradas de fabricación contra la orden de trabajo {0}."
@@ -28249,7 +28266,7 @@ msgstr "Última Fecha de Finalización"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28331,7 +28348,7 @@ msgstr "La última fecha de verificación de carbono no puede ser una fecha futu
msgid "Last transacted"
msgstr "Última transacción"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Más reciente"
@@ -28582,12 +28599,12 @@ msgstr "Campos heredados"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Entidad Legal / Subsidiaria con un Plan de Cuentas separado perteneciente a la Organización."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Gastos legales"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Leyenda"
@@ -28598,7 +28615,7 @@ msgstr "Leyenda"
msgid "Length (cm)"
msgstr "Longitud (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Menos de la cantidad"
@@ -28657,7 +28674,7 @@ msgstr "Número de Licencia"
msgid "License Plate"
msgstr "Matrículas"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Límite cruzado"
@@ -28718,7 +28735,7 @@ msgstr "Enlace a solicitudes de material"
msgid "Link with Customer"
msgstr "Enlace con el cliente"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Enlace con el proveedor"
@@ -28739,12 +28756,12 @@ msgstr "Facturas Vinculadas"
msgid "Linked Location"
msgstr "Ubicación vinculada"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Vinculado con los documentos validados"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Enlace fallido"
@@ -28752,7 +28769,7 @@ msgstr "Enlace fallido"
msgid "Linking to Customer Failed. Please try again."
msgstr "Error al vincular al cliente. Inténtalo de nuevo."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Error al vincular al proveedor. Inténtalo nuevamente."
@@ -28810,8 +28827,8 @@ msgstr "Fecha de inicio del préstamo"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "La fecha de inicio del préstamo y el período de préstamo son obligatorios para guardar el descuento de facturas"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Préstamos (Pasivos)"
@@ -28856,8 +28873,8 @@ msgstr "Registra la tasa de venta y compra de un artículo"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29058,6 +29075,11 @@ msgstr "Nivel de programa de lealtad"
msgid "Loyalty Program Type"
msgstr "Tipo de programa de lealtad"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29101,10 +29123,10 @@ msgstr "Mal funcionamiento de la máquina"
msgid "Machine operator errors"
msgstr "Errores del operador de la máquina"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Principal"
@@ -29347,9 +29369,9 @@ msgstr "Principales / Asignaturas Optativas"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Crear"
@@ -29369,7 +29391,7 @@ msgstr "Hacer la Entrada de Depreciación"
msgid "Make Difference Entry"
msgstr "Crear una entrada con una diferencia"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29407,12 +29429,12 @@ msgstr "Crear Factura de Venta"
msgid "Make Serial No / Batch from Work Order"
msgstr "Crear número de serie/lote a partir de la orden de trabajo"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Hacer entrada de stock"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Realizar orden de subcontratación"
@@ -29428,11 +29450,11 @@ msgstr "Hacer una llamada"
msgid "Make project from a template."
msgstr "Hacer proyecto a partir de una plantilla."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Hacer {0} variante"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Hacer {0} variantes"
@@ -29440,8 +29462,8 @@ msgstr "Hacer {0} variantes"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "No se recomienda realizar asientos contables contra cuentas anticipadas: {0} . Estos asientos contables no estarán disponibles para la conciliación."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Gestionar"
@@ -29460,7 +29482,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Gestionar sus Pedidos"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Gerencia"
@@ -29476,7 +29498,7 @@ msgstr "Director General"
msgid "Mandatory Accounting Dimension"
msgstr "Dimensión contable obligatoria"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Campo obligatorio"
@@ -29575,8 +29597,8 @@ msgstr "¡No se puede crear una entrada manual! Deshabilite la entrada automáti
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29655,7 +29677,7 @@ msgstr "Fabricante"
msgid "Manufacturer Part Number"
msgstr "Número de componente del fabricante"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "El número de pieza del fabricante {0} no es válido."
@@ -29680,7 +29702,7 @@ msgstr "Fabricantes utilizados en los artículos"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29725,10 +29747,6 @@ msgstr "Fecha de Fabricación"
msgid "Manufacturing Manager"
msgstr "Gerente de Producción"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "La cantidad a producir es obligatoria"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29895,6 +29913,12 @@ msgstr "Estado Civil"
msgid "Mark As Closed"
msgstr "Marcar como cerrado"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29909,12 +29933,12 @@ msgstr "Marcar como cerrado"
msgid "Market Segment"
msgstr "Sector de Mercado"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Márketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Gastos de Publicidad"
@@ -29993,7 +30017,7 @@ msgstr ""
msgid "Material"
msgstr "Material"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Material de consumo"
@@ -30001,7 +30025,7 @@ msgstr "Material de consumo"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Consumo de Material para Fabricación"
@@ -30082,7 +30106,7 @@ msgstr "Recepción de Materiales"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30179,11 +30203,11 @@ msgstr "Artículo de Plan de Solicitud de Material"
msgid "Material Request Type"
msgstr "Tipo de Requisición"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Requerimiento de material no creado, debido a que la cantidad de materia prima ya está disponible."
@@ -30251,7 +30275,7 @@ msgstr "Material devuelto de Producción (WIP)"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30317,12 +30341,12 @@ msgstr "Materiales de Proveedor"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Los materiales ya se recibieron contra el {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Es necesario transferir los materiales al almacén de trabajos en curso para la ficha de trabajo {0}"
@@ -30393,9 +30417,9 @@ msgstr "Puntuación Máxima"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Descuento máximo permitido para el artículo: {0} es {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30427,11 +30451,11 @@ msgstr "Importe máximo del pago"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Las muestras máximas - {0} se pueden conservar para el lote {1} y el elemento {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Las muestras máximas - {0} ya se han conservado para el lote {1} y el elemento {2} en el lote {3}."
@@ -30492,15 +30516,10 @@ msgstr "Megajulio"
msgid "Megawatt"
msgstr "Megavatio"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Mencione Tasa de valoración en el maestro de artículos."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Indique si no es Cuenta por Cobrar estándar"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30550,7 +30569,7 @@ msgstr "Fusionar con Cuenta Existente"
msgid "Merged"
msgstr "Combinado"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "La fusión solo es posible si las siguientes propiedades son las mismas en ambos registros: grupo, tipo de raíz, empresa y moneda de la cuenta."
@@ -30580,7 +30599,7 @@ msgstr "Se enviará un mensaje a los usuarios para conocer su estado en el Proye
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Los mensajes con más de 160 caracteres se dividirá en varios envios"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30781,7 +30800,7 @@ msgstr "La cantidad mínima no puede ser mayor que la cantidad máxima"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "La cantidad mínima debe ser mayor que la cantidad recursiva"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30870,8 +30889,8 @@ msgstr "Minutos"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Gastos varios"
@@ -30879,15 +30898,15 @@ msgstr "Gastos varios"
msgid "Mismatch"
msgstr "Discordancia"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Faltante"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Cuenta faltante"
@@ -30917,7 +30936,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr "Libro de finanzas faltante"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Bien terminado faltante"
@@ -30925,7 +30944,7 @@ msgstr "Bien terminado faltante"
msgid "Missing Formula"
msgstr "Fórmula faltante"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Artículo faltante"
@@ -30962,7 +30981,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Valor faltante"
@@ -31211,11 +31230,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Se encontraron varios programas de fidelización para el cliente {}. Seleccione manualmente."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31237,11 +31256,11 @@ msgstr "Multiples Variantes"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Existen varios ejercicios para la fecha {0}. Por favor, establece la compañía en el año fiscal"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "No se pueden marcar varios artículos como artículo terminado"
@@ -31250,7 +31269,7 @@ msgid "Music"
msgstr "Música"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31337,7 +31356,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31381,7 +31400,7 @@ msgstr "Necesita Anáisis"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "No se permiten cantidades negativas"
@@ -31390,7 +31409,7 @@ msgstr "No se permiten cantidades negativas"
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "La valoración negativa no está permitida"
@@ -31696,7 +31715,7 @@ msgstr "Peso neto"
msgid "Net Weight UOM"
msgstr "Unidad de medida para el peso neto"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Pérdida neta total de precisión de cálculo"
@@ -31873,7 +31892,7 @@ msgstr "Almacén nuevo nombre"
msgid "New Workplace"
msgstr "Nuevo lugar de trabajo"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Nuevo límite de crédito es menor que la cantidad pendiente actual para el cliente. límite de crédito tiene que ser al menos {0}"
@@ -31927,7 +31946,7 @@ msgstr "El siguiente correo electrónico será enviado el:"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Ninguna cuenta coincide con estos filtros: {}"
@@ -31940,7 +31959,7 @@ msgstr "Ninguna acción"
msgid "No Answer"
msgstr "Sin respuesta"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "No se encontró ningún cliente para transacciones entre empresas que representen a la empresa {0}"
@@ -31953,7 +31972,7 @@ msgstr "No se encontraron clientes con las opciones seleccionadas."
msgid "No Delivery Note selected for Customer {}"
msgstr "No se ha seleccionado ninguna Nota de Entrega para el Cliente {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31969,7 +31988,7 @@ msgstr "Ningún producto con código de barras {0}"
msgid "No Item with Serial No {0}"
msgstr "Ningún producto con numero de serie {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "No hay artículos seleccionados para transferir."
@@ -32004,7 +32023,7 @@ msgstr "No se encontró ningún perfil de PDV. Cree primero un nuevo perfil de P
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Sin permiso"
@@ -32033,19 +32052,19 @@ msgstr "No hay existencias disponibles actualmente"
msgid "No Summary"
msgstr "Sin resumen"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "No se encontró ningún proveedor para transacciones entre empresas que represente a la empresa {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "No se han encontrado datos de retenciones fiscales para la fecha de contabilización actual."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Sin términos"
@@ -32075,7 +32094,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "No se encontró ninguna lista de materiales activa para el artículo {0}. No se puede garantizar la entrega por número de serie"
@@ -32269,7 +32288,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "No se ha encontrado ninguna Entrada de Apertura para el perfil de PDV {0}."
@@ -32293,7 +32312,7 @@ msgstr "No hay facturas pendientes requieren revalorización del tipo de cambio"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "No se encontraron {0} pendientes para los {1} {2} que califican para los filtros que ha especificado."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "No se encontraron solicitudes de material pendientes de vincular para los artículos dados."
@@ -32364,7 +32383,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32397,7 +32416,7 @@ msgstr "Sin valores"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "No se ha encontrado {0} para transacciones entre empresas."
@@ -32442,8 +32461,8 @@ msgstr "Sin fines de lucro"
msgid "Non stock items"
msgstr "Artículos sin stock"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32544,7 +32563,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr "No permitir establecer un elemento alternativo para el Artículo {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "No se permite crear una dimensión contable para {0}"
@@ -32598,7 +32617,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Nota: elemento {0} agregado varias veces"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Nota : El registro del pago no se creará hasta que la cuenta del tipo 'Banco o Cajas' sea definida"
@@ -32606,7 +32625,7 @@ msgstr "Nota : El registro del pago no se creará hasta que la cuenta del tipo '
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Nota: este centro de costes es una categoría. No se pueden crear asientos contables en las categorías."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Nota: Para fusionar los artículos, cree una reconciliación de existencias separada para el antiguo artículo {0}."
@@ -32789,6 +32808,11 @@ msgstr "Número de Cuenta Nueva, se incluirá en el nombre de la cuenta como pre
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Número de centro de coste nuevo: se incluirá en el nombre del centro de coste como prefijo."
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32848,18 +32872,18 @@ msgstr "Valor del cuentakilómetros (Última)"
msgid "Offer Date"
msgstr "Fecha de oferta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Equipos de Oficina"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Gastos de mantenimiento de oficina"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Alquiler de oficina"
@@ -32987,7 +33011,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Una vez configurado, esta factura estará en espera hasta la fecha establecida"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Una vez cerrada la Orden de Trabajo. No se puede reanudar."
@@ -33027,7 +33051,7 @@ msgstr "Sólo se admiten 'Entradas de pago' realizadas contra esta cuenta de ant
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Sólo se pueden utilizar archivos CSV y Excel para importar datos. Por favor, compruebe el formato de archivo que está intentando cargar"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33046,7 +33070,7 @@ msgstr "Deducir impuestos solo sobre el importe excedente "
msgid "Only Include Allocated Payments"
msgstr "Incluir sólo los pagos asignados"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Sólo el padre puede ser del tipo {0}"
@@ -33083,7 +33107,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Sólo puede crearse una entrada {0} contra la orden de trabajo {1}"
@@ -33301,8 +33325,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "Detalles del saldo inicial"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Apertura de Capital"
@@ -33325,7 +33349,7 @@ msgstr "Fecha de apertura"
msgid "Opening Entry"
msgstr "Asiento de apertura"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "El asiento de apertura no puede crearse después de haber creado el comprobante de cierre del período."
@@ -33358,7 +33382,7 @@ msgid "Opening Invoice Tool"
msgstr "Herramienta de apertura de facturas"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "La factura de apertura tiene un ajuste de redondeo de {0}. Se requiere la cuenta '{1}' para contabilizar estos valores. Por favor, configúrela en Empresa: {2}. O bien, '{3}' puede habilitarse para no contabilizar ningún ajuste de redondeo."
@@ -33394,16 +33418,16 @@ msgstr "Se han creado facturas de venta de apertura."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Stock de apertura"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33421,12 +33445,15 @@ msgstr "Valor de apertura"
msgid "Opening and Closing"
msgstr "Abriendo y cerrando"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33458,7 +33485,7 @@ msgstr "Costo de funcionamiento (Divisa de la Compañia)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Coste operativo por cantidad de la lista de materiales"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Costo operativo según la orden de trabajo / BOM"
@@ -33501,15 +33528,15 @@ msgstr "Descripción de la operación"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ID de operación"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ID de operación"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33534,7 +33561,7 @@ msgstr "Número de fila de operación"
msgid "Operation Time"
msgstr "Tiempo de Operación"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "El tiempo de operación debe ser mayor que 0 para {0}"
@@ -33549,11 +33576,11 @@ msgstr "¿Operación completada para cuántos productos terminados?"
msgid "Operation time does not depend on quantity to produce"
msgstr "El tiempo de operación no depende de la cantidad a producir"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operación {0} agregada varias veces en la orden de trabajo {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "La operación {0} no pertenece a la orden de trabajo {1}"
@@ -33569,9 +33596,9 @@ msgstr "La operación {0} tomará mas tiempo que la capacidad de producción de
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33744,7 +33771,7 @@ msgstr "Oportunidad {0} creada"
msgid "Optimize Route"
msgstr "Optimizar Ruta"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33894,7 +33921,7 @@ msgstr "Cantidad ordenada"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Órdenes"
@@ -34010,7 +34037,7 @@ msgstr "Onza/Galón (EE. UU.)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Cant. enviada"
@@ -34048,7 +34075,7 @@ msgstr "Fuera de garantía"
msgid "Out of stock"
msgstr "Agotado"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34067,6 +34094,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Tasa saliente"
@@ -34102,7 +34130,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34112,7 +34140,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34172,17 +34200,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Tolerancia por exceso de entrega/recepción (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Exceso de recolección permitido"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Sobre recibo"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Se ignora la recepción/entrega excesiva de {0} {1} para el artículo {2} porque tiene el rol {3} ."
@@ -34202,11 +34235,11 @@ msgstr "Tolerancia de transferencia permitida (%)"
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Sobrefacturación de {0} {1} ignorada para el artículo {2} porque tiene el rol {3} ."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Se ignora la sobrefacturación de {} porque tiene el rol {}."
@@ -34506,7 +34539,7 @@ msgstr "Selector de Productos PdV"
msgid "POS Opening Entry"
msgstr "Entrada de Apertura PdV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Entrada de Apertura de PdV - {0} está desactualizada. Cierre el PdV y cree una nueva."
@@ -34527,7 +34560,7 @@ msgstr "Detalle de entrada de apertura de punto de venta"
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34563,7 +34596,7 @@ msgstr "Método de Pago PdV"
msgid "POS Profile"
msgstr "Perfil de PdV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Perfil de PdV - {0} tiene varias entradas de apertura de PdV abiertas. Cierre o cancele las entradas existentes antes de continuar."
@@ -34581,11 +34614,11 @@ msgstr "Usuario de Perfil PdV"
msgid "POS Profile doesn't match {}"
msgstr "El perfil de PdV no coincide con {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "El Perfil de PdV es obligatorio para marcar esta factura como transacción POS."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Se requiere un Perfil de PdV para crear entradas en el punto de venta"
@@ -34691,7 +34724,7 @@ msgstr "Artículo Empacado"
msgid "Packed Items"
msgstr "Productos Empacados"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Los artículos empaquetados no se pueden transferir internamente"
@@ -34728,7 +34761,7 @@ msgstr "Lista de embalaje"
msgid "Packing Slip Item"
msgstr "Lista de embalaje del producto"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Lista(s) de embalaje cancelada(s)"
@@ -34769,7 +34802,7 @@ msgstr "Pagado"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34835,7 +34868,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "El total de la cantidad pagada + desajuste, no puede ser mayor que el gran total"
@@ -34929,7 +34962,7 @@ msgstr "Lote padre"
msgid "Parent Company"
msgstr "Empresa Matriz"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "La empresa matriz debe ser una empresa grupal"
@@ -35056,7 +35089,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Material parcial transferido"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35269,7 +35302,7 @@ msgstr "Partes por millón"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35296,7 +35329,7 @@ msgstr "Tercero"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Cuenta asignada"
@@ -35329,7 +35362,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Número de cuenta del tercero (extracto bancario)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "La moneda de la cuenta del tercero {0} ({1}) y la moneda del documento ({2}) deben ser iguales"
@@ -35481,7 +35514,7 @@ msgstr "Producto específico de la Parte"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35590,7 +35623,7 @@ msgstr ""
msgid "Pause"
msgstr "Pausa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Pausar trabajo"
@@ -35641,7 +35674,7 @@ msgid "Payable"
msgstr "Pagadero"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35675,7 +35708,7 @@ msgstr "Configuración del pagador"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35822,7 +35855,7 @@ msgstr "El registro del pago ha sido modificado antes de su modificación. Por f
msgid "Payment Entry is already created"
msgstr "Entrada de Pago ya creada"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "La entrada de pago {0} está vinculada al pedido {1}, verifique si debe extraerse como anticipo en esta factura."
@@ -36047,7 +36080,7 @@ msgstr "Referencias del Pago"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36112,7 +36145,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36141,7 +36174,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36197,6 +36230,7 @@ msgstr "Estado de las condiciones de pago de la orden de venta"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36211,6 +36245,7 @@ msgstr "Estado de las condiciones de pago de la orden de venta"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36268,7 +36303,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Los métodos de pago son obligatorios. Agregue al menos un método de pago."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36343,8 +36378,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr "Entrada de Nómina"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Nómina por Pagar"
@@ -36391,10 +36426,14 @@ msgstr "Actividades pendientes"
msgid "Pending Amount"
msgstr "Monto pendiente"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36403,9 +36442,18 @@ msgstr "Cant. pendiente"
#: 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:273
msgid "Pending Quantity"
msgstr "Cantidad pendiente"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36435,6 +36483,14 @@ msgstr "Actividades pendientes para hoy"
msgid "Pending processing"
msgstr "Pendiente de procesamiento"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Fondos de Pensiones"
@@ -36544,7 +36600,7 @@ msgstr "Análisis de percepción"
msgid "Period Based On"
msgstr "Periodo basado en"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Período cerrado"
@@ -37108,8 +37164,8 @@ msgstr "Panel de control de la planta"
msgid "Plant Floor"
msgstr "Planta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Plantas y maquinarias"
@@ -37145,7 +37201,7 @@ msgstr "Por favor, establezca la prioridad"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Por favor, configure el grupo de proveedores en las configuraciones de compra."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Por favor especifique la cuenta"
@@ -37193,7 +37249,7 @@ msgstr "Por favor, añada la columna Cuenta bancaria"
msgid "Please add the account to root level Company - {0}"
msgstr "Por favor, añada la cuenta al nivel raíz Empresa - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Agregue la cuenta a la empresa de nivel raíz - {}"
@@ -37201,7 +37257,7 @@ msgstr "Agregue la cuenta a la empresa de nivel raíz - {}"
msgid "Please add {1} role to user {0}."
msgstr "Por favor, añada el rol {1} al usuario {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Ajuste la cantidad o edite {0} para continuar."
@@ -37209,7 +37265,7 @@ msgstr "Ajuste la cantidad o edite {0} para continuar."
msgid "Please attach CSV file"
msgstr "Adjunte el archivo CSV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Por favor, cancele y modifique la Entrada de Pago"
@@ -37243,7 +37299,7 @@ msgstr "Consulte con operaciones o con el costo operativo basado en FG."
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Por favor, compruebe el mensaje de error y tome las medidas necesarias para solucionar el error y luego reinicie el reenvío de nuevo."
@@ -37268,11 +37324,15 @@ msgstr "Por favor, haga clic en 'Generar planificación' para obtener el no. de
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Por favor, haga clic en 'Generar planificación' para obtener las tareas"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Comuníquese con cualquiera de los siguientes usuarios para ampliar los límites de crédito para {0}: {1}"
@@ -37280,11 +37340,11 @@ msgstr "Comuníquese con cualquiera de los siguientes usuarios para ampliar los
msgid "Please contact any of the following users to {} this transaction."
msgstr "Por favor, póngase en contacto con cualquiera de los siguientes usuarios para {} esta transacción."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Póngase en contacto con su administrador para ampliar los límites de crédito de {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Convierta la cuenta principal de la empresa secundaria correspondiente en una cuenta de grupo."
@@ -37296,11 +37356,11 @@ msgstr "Cree un cliente a partir de un cliente potencial {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Por favor, cree comprobantes de desembolso contra facturas que tengan activada la opción \"Actualizar existencias\"."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Por favor, cree una nueva Dimensión Contable si es necesario."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Por favor, cree la compra a partir de la venta interna o del propio documento de entrega"
@@ -37308,11 +37368,11 @@ msgstr "Por favor, cree la compra a partir de la venta interna o del propio docu
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Cree un recibo de compra o una factura de compra para el artículo {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Por favor, elimine el paquete de productos {0}, antes de fusionar {1} en {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37320,7 +37380,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Por favor, no contabilice gastos de múltiples activos contra un único Activo."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "No cree más de 500 artículos a la vez."
@@ -37344,7 +37404,7 @@ msgstr "Habilítelo solo si comprende los efectos de habilitar esto."
msgid "Please enable {0} in the {1}."
msgstr "Por favor, habilite {0} en {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Por favor, active {} en {} para permitir el mismo elemento en varias filas"
@@ -37356,20 +37416,20 @@ msgstr "Asegúrese de que la cuenta {0} es una cuenta de Balance. Puede cambiar
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 "Asegúrese de que la cuenta {0} {1} sea una cuenta de pago. Puede cambiar el tipo de cuenta a pago o seleccionar una cuenta diferente."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Asegúrese de que la cuenta {} sea una cuenta de balance general."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Asegúrese de que {} cuenta {} sea una cuenta por cobrar."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Por favor, introduzca la cuenta de diferencia o establezca la cuenta de ajuste de existencias por defecto para la empresa {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Por favor, introduzca la cuenta para el importe de cambio"
@@ -37377,15 +37437,15 @@ msgstr "Por favor, introduzca la cuenta para el importe de cambio"
msgid "Please enter Approving Role or Approving User"
msgstr "Por favor, introduzca 'Función para aprobar' o 'Usuario de aprobación'---"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Por favor, introduzca el centro de costos"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Por favor, introduzca la Fecha de Entrega"
@@ -37393,7 +37453,7 @@ msgstr "Por favor, introduzca la Fecha de Entrega"
msgid "Please enter Employee Id of this sales person"
msgstr "Por favor, Introduzca ID de empleado para este vendedor"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Introduzca la cuenta de gastos"
@@ -37402,7 +37462,7 @@ msgstr "Introduzca la cuenta de gastos"
msgid "Please enter Item Code to get Batch Number"
msgstr "Por favor, introduzca el código de artículo para obtener el número de lote"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Introduzca el código de artículo para obtener el número de lote"
@@ -37418,7 +37478,7 @@ msgstr "Por favor, introduzca primero los detalles de mantenimiento"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Por favor, ingrese la Cant. Planeada para el producto {0} en la fila {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Por favor, ingrese primero el producto a fabricar"
@@ -37438,7 +37498,7 @@ msgstr "Por favor, introduzca la fecha de referencia"
msgid "Please enter Root Type for account- {0}"
msgstr "Por favor, introduzca el tipo de cuenta- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37455,7 +37515,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Por favor, introduzca el almacén y la fecha"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Por favor, ingrese la cuenta de desajuste"
@@ -37475,7 +37535,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr "Por favor, ingrese el nombre de la compañia"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Por favor, ingrese la divisa por defecto en la compañía principal"
@@ -37503,7 +37563,7 @@ msgstr "Por favor, introduzca la fecha de relevo"
msgid "Please enter serial nos"
msgstr "Por favor, introduzca los números de serie"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Ingrese el nombre de la empresa para confirmar"
@@ -37571,11 +37631,11 @@ msgstr "Asegúrese de que los empleados anteriores denuncien a otro empleado act
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Asegúrese de que el archivo que está utilizando tenga la columna 'Cuenta principal' presente en el encabezado."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Por favor, asegurate de que realmente desea borrar todas las transacciones de esta compañía. Sus datos maestros permanecerán intactos. Esta acción no se puede deshacer."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Mencione 'Peso UdM' junto con el Peso."
@@ -37634,7 +37694,7 @@ msgstr "Seleccione Tipo de plantilla para descargar la plantilla"
msgid "Please select Apply Discount On"
msgstr "Por favor seleccione 'Aplicar descuento en'"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Seleccione la Lista de Materiales contra el Artículo {0}"
@@ -37650,7 +37710,7 @@ msgstr "Por favor, seleccione Cuenta Bancaria"
msgid "Please select Category first"
msgstr "Por favor, seleccione primero la categoría"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37680,7 +37740,7 @@ msgstr "Seleccione Fecha de Finalización para el Registro de Mantenimiento de A
msgid "Please select Customer first"
msgstr "Por favor seleccione Cliente primero"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Por favor, seleccione empresa ya existente para la creación del plan de cuentas"
@@ -37689,8 +37749,8 @@ msgstr "Por favor, seleccione empresa ya existente para la creación del plan de
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Por favor, seleccione el Artículo Terminado para el Servicio {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Seleccione primero el código del artículo"
@@ -37722,11 +37782,11 @@ msgstr "Por favor, seleccione fecha de publicación primero"
msgid "Please select Price List"
msgstr "Por favor, seleccione la lista de precios"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Seleccione Cant. contra el Elemento {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Seleccione primero Almacén de Retención de Muestras en la Configuración de Stock."
@@ -37742,7 +37802,7 @@ msgstr "Por favor, seleccione Fecha de inicio y Fecha de finalización para el e
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Seleccione la cuenta de ganancias/pérdidas no realizadas o agregue la cuenta de ganancias/pérdidas no realizadas predeterminada para la empresa {0}"
@@ -37759,7 +37819,7 @@ msgstr "Por favor, seleccione la compañía"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Primero seleccione una empresa."
@@ -37783,7 +37843,7 @@ msgstr "Seleccione un proveedor"
msgid "Please select a Warehouse"
msgstr "Por favor seleccione un almacén"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Seleccione primero una orden de trabajo."
@@ -37856,11 +37916,15 @@ msgstr "Por favor, seleccione un valor para {0} quotation_to {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Por favor, seleccione un código de artículo antes de establecer el almacén."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37880,7 +37944,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37938,7 +38002,7 @@ msgstr "Por favor seleccione la Compañía"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Seleccione el tipo de Programa de niveles múltiples para más de una reglas de recopilación."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37967,7 +38031,7 @@ msgstr "Por favor, seleccione un tipo de documento válido."
msgid "Please select weekly off day"
msgstr "Por favor seleccione el día libre de la semana"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Por favor, seleccione primero {0}"
@@ -37976,11 +38040,11 @@ msgstr "Por favor, seleccione primero {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Por favor, establece \"Aplicar descuento adicional en\""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Ajuste 'Centro de la amortización del coste del activo' en la empresa {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Por favor, fije \"Ganancia/Pérdida en la venta de activos\" en la empresa {0}."
@@ -37992,7 +38056,7 @@ msgstr "Por favor, configure '{0}' en la Empresa: {1}"
msgid "Please set Account"
msgstr "Por favor, establezca una cuenta"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Por favor, establezca la cuenta para el importe del cambio"
@@ -38022,7 +38086,7 @@ msgstr "Por favor seleccione Compañía"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Por favor establezca Cuentas relacionadas con la depreciación en la Categoría de Activo {0} o Compañía {1}."
@@ -38040,7 +38104,7 @@ msgstr "Por favor, establezca el código fiscal para el cliente '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Por favor, establezca el código fiscal para la administración pública '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38086,7 +38150,7 @@ msgstr "Establezca una empresa"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Por favor, establezca un Centro de Costo para el Activo o establezca un Centro de Costo de Amortización del Activo para la Empresa {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Por favor, establezca una lista de vacaciones por defecto para la empresa {0}"
@@ -38123,23 +38187,23 @@ msgstr "Establezca al menos una fila en la Tabla de impuestos y cargos"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Por favor, defina la cuenta de bancos o caja predeterminados en el método de pago {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Establezca una cuenta bancaria o en efectivo predeterminada en el modo de pago {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Establezca la cuenta bancaria o en efectivo predeterminada en el modo de pago {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Por favor, establezca por defecto la Cuenta de Ganancias/Pérdidas de Cambio en la Empresa {}"
@@ -38168,7 +38232,7 @@ msgstr "Por favor seleccione el valor por defecto {0} en la empresa {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Por favor, configurar el filtro basado en Elemento o Almacén"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Establezca una de las siguientes opciones:"
@@ -38176,7 +38240,7 @@ msgstr "Establezca una de las siguientes opciones:"
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Por favor configura recurrente después de guardar"
@@ -38188,15 +38252,15 @@ msgstr "Por favor, configure la dirección del cliente"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Configure el Centro de Costo predeterminado en la empresa {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Configure primero el Código del Artículo"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38235,7 +38299,7 @@ msgstr "Establezca {0} en LdM Creator {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Por favor, configure {0} en la empresa {1} para contabilizar las Ganancias / Pérdidas de Cambio"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Por favor, establezca {0} en {1}, la misma cuenta que se utilizó en la factura original {2}."
@@ -38257,7 +38321,7 @@ msgstr "Por favor, especifique la compañía"
msgid "Please specify Company to proceed"
msgstr "Por favor, especifique la compañía para continuar"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Por favor, especifique un ID de fila válida para la línea {0} en la tabla {1}"
@@ -38270,7 +38334,7 @@ msgstr "Por favor, especifique un {0} primero."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Por favor, especifique al menos un atributo en la tabla"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Por favor indique la Cantidad o el Tipo de Valoración, o ambos"
@@ -38375,8 +38439,8 @@ msgstr "Publicar cadena de ruta"
msgid "Post Title Key"
msgstr "Clave de título de publicación"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Gastos postales"
@@ -38441,7 +38505,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38459,7 +38523,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38581,10 +38645,6 @@ msgstr "Fecha y Hora de Contabilización"
msgid "Posting Time"
msgstr "Hora de Contabilización"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "La fecha y hora de contabilización son obligatorias"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38658,18 +38718,23 @@ msgstr "Desarrollado por {0}"
msgid "Pre Sales"
msgstr "Pre ventas"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Preferencia"
@@ -38842,6 +38907,7 @@ msgstr "Losas de descuento de precio"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38865,6 +38931,7 @@ msgstr "Losas de descuento de precio"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38916,7 +38983,7 @@ msgstr "Lista de precios del país"
msgid "Price List Currency"
msgstr "Divisa de la lista de precios"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "El tipo de divisa para la lista de precios no ha sido seleccionado"
@@ -39271,7 +39338,7 @@ msgstr "Imprimir el recibo"
msgid "Print Receipt on Order Complete"
msgstr "Imprimir recibo al completar la orden"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Imprimir UOM después de Cantidad"
@@ -39280,8 +39347,8 @@ msgstr "Imprimir UOM después de Cantidad"
msgid "Print Without Amount"
msgstr "Imprimir sin importe"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Impresión y Papelería"
@@ -39289,7 +39356,7 @@ msgstr "Impresión y Papelería"
msgid "Print settings updated in respective print format"
msgstr "Los ajustes de impresión actualizados en formato de impresión respectivo"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Imprimir impuestos con importe nulo"
@@ -39392,10 +39459,6 @@ msgstr "Problema"
msgid "Procedure"
msgstr "Procedimiento"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39449,7 +39512,7 @@ msgstr "El porcentaje de pérdida de proceso no puede ser mayor que 100"
msgid "Process Loss Qty"
msgstr "Cantidad de pérdida de proceso"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Cantidad de Pérdida del Proceso"
@@ -39530,6 +39593,10 @@ msgstr "Proceso de suscripción"
msgid "Process in Single Transaction"
msgstr "Proceso en Transacción Única"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39625,8 +39692,8 @@ msgstr "Producto"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39691,7 +39758,7 @@ msgstr "ID del Precio del producto"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Producción"
@@ -39905,7 +39972,7 @@ msgstr "El % de progreso de una tarea no puede ser superior a 100."
msgid "Progress (%)"
msgstr "Progreso (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Invitación a Colaboración de Proyecto"
@@ -39949,7 +40016,7 @@ msgstr "Estado del proyecto"
msgid "Project Summary"
msgstr "Resumen del proyecto"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Resumen del proyecto para {0}"
@@ -40080,7 +40147,7 @@ msgstr "Cantidad proyectada"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40226,7 +40293,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Perspectivas comprometidas pero no convertidas"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40241,7 +40308,7 @@ msgstr "Proporcionar dirección de correo electrónico registrada en la compañ
msgid "Providing"
msgstr "Siempre que"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Cuenta provisional"
@@ -40313,8 +40380,9 @@ msgstr "Publicando"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40637,7 +40705,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr "La orden de compra {0} no se encuentra validada"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Ordenes de compra"
@@ -40652,7 +40720,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr "Órdenes de compra Artículos vencidos"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Las órdenes de compra no están permitidas para {0} debido a una tarjeta de puntuación de {1}."
@@ -40667,7 +40735,7 @@ msgstr "Órdenes de compra a Bill"
msgid "Purchase Orders to Receive"
msgstr "Órdenes de compra para recibir"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Las órdenes de compra {0} no están vinculadas"
@@ -40801,7 +40869,7 @@ msgstr "Devolución de compra"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Plantilla de Impuestos sobre compras"
@@ -40899,6 +40967,7 @@ msgstr "Compras"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40908,10 +40977,6 @@ msgstr "Compras"
msgid "Purpose"
msgstr "Propósito"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Propósito debe ser uno de {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40967,6 +41032,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41015,6 +41081,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41123,11 +41190,11 @@ msgstr "Cant. por unidad"
msgid "Qty To Manufacture"
msgstr "Cantidad para producción"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "La Cant. a fabricar ({0}) no puede ser una fracción para la UdM {2}. Para permitir esto, deshabilite '{1}' en la UdM {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "La cant. a fabricar en la tarjeta de trabajo no puede ser mayor que la cant. a fabricar en la orden de trabajo para la operación {0}. Solución: Puede reducir la cant. a fabricar en la tarjeta de trabajo o establecer el 'Porcentaje de sobreproducción para la orden de trabajo' en {1}."
@@ -41178,8 +41245,8 @@ msgstr "Cantidad de acuerdo a la unidad de medida (UdM) de stock"
msgid "Qty for which recursion isn't applicable."
msgstr "Cantidad para la que no es aplicable la recursividad."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Cant. de {0}"
@@ -41234,8 +41301,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Cant. a buscar"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Cant. para producción"
@@ -41471,17 +41538,17 @@ msgstr "Plantilla de Inspección de Calidad"
msgid "Quality Inspection Template Name"
msgstr "Nombre de Plantilla de Inspección de Calidad"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41495,7 +41562,7 @@ msgstr "Inspección(es) de calidad"
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Gestión de Calidad"
@@ -41627,7 +41694,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41762,7 +41829,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "La cantidad no debe ser más de {0}"
@@ -41772,21 +41839,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Cantidad requerida para el producto {0} en la línea {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Cantidad debe ser mayor que 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Cantidad a fabricar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "La cantidad a fabricar no puede ser cero para la operación {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "La cantidad a producir debe ser mayor que 0."
@@ -41809,7 +41876,7 @@ msgstr "Cuarto seco (US)"
msgid "Quart Liquid (US)"
msgstr "Cuarto Líquido (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Trimestre {0} {1}"
@@ -41928,11 +41995,11 @@ msgstr "Presupuesto para"
msgid "Quotation Trends"
msgstr "Tendencias de Presupuestos"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "El presupuesto {0} se ha cancelado"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "El presupuesto {0} no es del tipo {1}"
@@ -42239,7 +42306,7 @@ msgstr "Tasa por la cual la divisa del proveedor es convertida como moneda base
msgid "Rate at which this tax is applied"
msgstr "Valor por el cual el impuesto es aplicado"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42405,7 +42472,7 @@ msgstr "Materias primas consumidas"
msgid "Raw Materials Consumption"
msgstr "Consumo de materias primas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42444,12 +42511,6 @@ msgstr "'Materias primas' no puede estar en blanco."
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "SQL crudo"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42458,7 +42519,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42639,7 +42700,7 @@ msgid "Receivable / Payable Account"
msgstr "Cuenta por Cobrar / Pagar"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43100,7 +43161,7 @@ msgstr "Referencia #"
msgid "Reference #{0} dated {1}"
msgstr "Referencia #{0} con fecha {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Fecha de referencia para el descuento por pronto pago"
@@ -43264,11 +43325,11 @@ msgstr "Referencia: {0}, Código del artículo: {1} y Cliente: {2}"
msgid "References"
msgstr "Referencias"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Las referencias a las facturas de venta están incompletas"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Las referencias a los pedidos de venta están incompletas"
@@ -43430,7 +43491,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Balance restante"
@@ -43488,7 +43549,7 @@ msgstr "Observación"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43552,7 +43613,7 @@ msgstr "Cambiar el nombre del valor del atributo en el atributo del elemento."
msgid "Rename Log"
msgstr "Cambiar el nombre de sesión"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Cambiar nombre no permitido"
@@ -43569,7 +43630,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Solo se permite cambiar el nombre a través de la empresa matriz {0}, para evitar discrepancias."
@@ -43693,7 +43754,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "El tipo de reporte es obligatorio"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Reportar Incidente"
@@ -43938,7 +43999,7 @@ msgstr "Solicitud de información"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44119,7 +44180,7 @@ msgstr "Requiere Cumplimiento"
msgid "Research"
msgstr "Investigación"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Investigación y desarrollo"
@@ -44164,7 +44225,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr "Reserva basada en"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44208,7 +44269,7 @@ msgstr ""
msgid "Reserved"
msgstr "Reservado"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44278,14 +44339,14 @@ msgstr "Cantidad Reservada"
msgid "Reserved Quantity for Production"
msgstr "Cantidad reservada para producción"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Número de serie reservado."
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44294,13 +44355,13 @@ msgstr "Número de serie reservado."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Existencias Reservadas"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Stock reservado para lote"
@@ -44566,7 +44627,7 @@ msgstr "Campo de título del resultado"
msgid "Resume"
msgstr "Reanudar"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Reanudar Trabajo"
@@ -44591,8 +44652,8 @@ msgstr "Minorista"
msgid "Retain Sample"
msgstr "Conservar Muestra"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "UTILIDADES RETENIDAS"
@@ -44667,7 +44728,7 @@ msgstr "Devolución contra recibo compra"
msgid "Return Against Subcontracting Receipt"
msgstr "Devolución contra recibo de subcontratación"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Componentes de retorno"
@@ -44703,7 +44764,7 @@ msgstr "Cant. devuelta del Almacén Rechazado"
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44801,8 +44862,8 @@ msgstr "Devoluciones"
msgid "Revaluation Journals"
msgstr "Diarios de Revalorización"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Superávit de revalorización"
@@ -45034,7 +45095,7 @@ msgstr "El tipo de raíz para {0} debe ser uno de los siguientes: Activo, Pasivo
msgid "Root Type is mandatory"
msgstr "tipo de root es obligatorio"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Usuario root no se puede editar."
@@ -45053,8 +45114,8 @@ msgstr "Redondear cantidad gratis"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45234,21 +45295,21 @@ msgstr "Fila #{0}: La tasa no puede ser mayor que la tasa utilizada en {1} {2}"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Fila n.º {0}: el artículo devuelto {1} no existe en {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Fila #{0} (Tabla de pagos): El importe debe ser negativo"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Fila #{0} (Tabla de pagos): El importe debe ser positivo"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Fila #{0}: Ya existe una entrada de reorden para el almacén {1} con el tipo de reorden {2}."
@@ -45269,7 +45330,7 @@ msgstr "Fila #{0}: Almacén Aceptado y Almacén Rechazado no puede ser el mismo"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Fila #{0}: El almacén aceptado es obligatorio para el artículo aceptado {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Fila #{0}: La Cuenta {1} no pertenece a la Empresa {2}"
@@ -45330,31 +45391,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Fila # {0}: no se puede eliminar el elemento {1} que ya se ha facturado."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Fila # {0}: no se puede eliminar el elemento {1} que ya se entregó"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Fila # {0}: no se puede eliminar el elemento {1} que ya se ha recibido"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Fila # {0}: No se puede eliminar el elemento {1} que tiene una orden de trabajo asignada."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Fila #{0}: No se puede transferir más de la cantidad requerida {1} para el artículo {2} contra la tarjeta de trabajo {3}"
@@ -45404,11 +45465,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45416,7 +45477,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45433,7 +45494,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Fila #{0}: No se encontró la lista de materiales predeterminada para el artículo FG {1}"
@@ -45457,22 +45518,22 @@ msgstr "Fila #{0}: Cuenta de gastos no configurada para el artículo {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Fila #{0}: La cantidad de artículos terminados no puede ser cero"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Fila #{0}: No se especifica el artículo acabado para el artículo de servicio {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Fila #{0}: El artículo terminado {1} debe ser un artículo subcontratado"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Fila #{0}: El Artículo terminado debe ser {1}"
@@ -45501,7 +45562,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Fila #{0}: La fecha de inicio no puede ser anterior a la fecha de finalización"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45509,7 +45570,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr "Fila # {0}: Elemento agregado"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45537,7 +45598,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Fila # {0}: el artículo {1} no es un artículo serializado / en lote. No puede tener un No de serie / No de lote en su contra."
@@ -45578,7 +45639,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Fila #{0}: No se permite cambiar de proveedores debido a que la Orden de Compra ya existe"
@@ -45590,10 +45651,6 @@ msgstr "Fila #{0}: Solo {1} disponible para reservar para el artículo {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Fila # {0}: la operación {1} no se completa para {2} cantidad de productos terminados en la orden de trabajo {3}. Actualice el estado de la operación a través de la Tarjeta de trabajo {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45615,11 +45672,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Fila #{0}: Por favor, seleccione el Almacén de Sub-montaje"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Fila #{0}: Configure la cantidad de pedido"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Fila #{0}: Por favor, actualice la cuenta de ingresos/gastos diferidos en la fila de artículos o la cuenta por defecto en el maestro de empresas"
@@ -45641,15 +45698,15 @@ msgstr "Fila #{0}: La cantidad debe ser un número positivo"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Fila #{0}: La cantidad debe ser menor o igual a la cantidad disponible para reservar (cantidad real - cantidad reservada) {1} para Artículo {2} contra el lote {3} en el almacén {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Fila #{0}: Se requiere inspección de calidad para el artículo {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Fila #{0}: La inspección de calidad {1} no se ha validado para el artículo: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Fila #{0}: La inspección de calidad {1} fue rechazada para el artículo {2}"
@@ -45657,7 +45714,7 @@ msgstr "Fila #{0}: La inspección de calidad {1} fue rechazada para el artículo
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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Fila # {0}: La cantidad del artículo {1} no puede ser cero."
@@ -45673,18 +45730,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Fila #{0}: La cantidad a reservar para el artículo {1} debe ser superior a 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Fila #{0}: La tasa debe ser la misma que {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Fila #{0}: Tipo de documento de referencia debe ser uno de la orden de compra, factura de compra o de entrada de diario"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Fila # {0}: el tipo de documento de referencia debe ser pedido de cliente, factura de venta, asiento de diario o reclamación."
@@ -45723,7 +45780,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45743,19 +45800,19 @@ msgstr "Fila #{0}: El número de serie {1} ya está seleccionado."
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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Fila n.º {0}: la fecha de finalización del servicio no puede ser anterior a la fecha de contabilización de facturas"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Fila n.º {0}: la fecha de inicio del servicio no puede ser mayor que la fecha de finalización del servicio"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Fila n.º {0}: se requiere la fecha de inicio y finalización del servicio para la contabilidad diferida"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Fila #{0}: Asignar Proveedor para el elemento {1}"
@@ -45767,19 +45824,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45795,6 +45852,10 @@ msgstr "Fila #{0}: El estado es obligatorio"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Fila # {0}: El estado debe ser {1} para el descuento de facturas {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Fila #{0}: No se puede reservar stock para el artículo {1} contra un lote deshabilitado {2}."
@@ -45811,7 +45872,7 @@ msgstr "Fila #{0}: No se pueden reservar existencias en el almacén de grupo {1}
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Fila #{0}: Ya hay stock reservado para el artículo {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Fila #{0}: Hay stock reservado para el artículo {1} en el almacén {2}."
@@ -45824,7 +45885,7 @@ msgstr "Fila #{0}: Stock no disponible para reservar para el artículo {1} contr
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Fila #{0}: Stock no disponible para reservar para el artículo {1} en el almacén {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45836,7 +45897,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Fila nº {0}: el lote {1} ya ha caducado."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Fila #{0}: El almacén {1} no es un almacén secundario de un almacén de grupo {2}"
@@ -45872,7 +45933,7 @@ msgstr "Fila #{0}: No se puede utilizar la dimensión de inventario '{1}' en la
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Fila #{0}: Debe seleccionar un activo para el artículo {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Fila #{0}: {1} no puede ser negativo para el elemento {2}"
@@ -45888,7 +45949,7 @@ msgstr "Fila # {0}: {1} es obligatorio para crear las {2} facturas de apertura."
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Fila #{0}: {1} de {2} debería ser {3}. Por favor, actualice {1} o seleccione una cuenta diferente."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45989,7 +46050,7 @@ msgstr "Fila #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Fila # {}: {} {} no existe."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Fila #{}: {} {} no pertenece a la empresa {}. Por favor, seleccione una {} válida."
@@ -45997,7 +46058,7 @@ msgstr "Fila #{}: {} {} no pertenece a la empresa {}. Por favor, seleccione una
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Fila n.° {0}: Se requiere almacén. Establezca un almacén predeterminado para el artículo {1} y la empresa {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Fila {0}: se requiere operación contra el artículo de materia prima {1}"
@@ -46005,7 +46066,7 @@ msgstr "Fila {0}: se requiere operación contra el artículo de materia prima {1
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Fila {0} la cantidad recogida es menor a la requerida, se requiere {1} {2} adicional."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Fila {0}# El artículo {1} no se encontró en la tabla 'Materias primas suministradas' en {2} {3}"
@@ -46037,11 +46098,11 @@ msgstr "Fila {0}: El importe asignado {1} debe ser menor o igual al importe pend
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Fila {0}: El importe asignado {1} debe ser menor o igual al importe de pago restante {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Fila {0}: Como {1} está activada, no se pueden añadir materias primas a la entrada {2} . Utilice la entrada {3} para consumir materias primas."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Fila {0}: Lista de materiales no se encuentra para el elemento {1}"
@@ -46058,7 +46119,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Línea {0}: El factor de conversión es obligatorio"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Fila {0}: El centro de costes {1} no pertenece a la empresa {2}"
@@ -46078,7 +46139,7 @@ msgstr "Fila {0}: Divisa de la lista de materiales # {1} debe ser igual a la mon
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Línea {0}: La entrada de débito no puede vincularse con {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Fila {0}: el almacén de entrega ({1}) y el almacén del cliente ({2}) no pueden ser iguales"
@@ -46086,7 +46147,7 @@ msgstr "Fila {0}: el almacén de entrega ({1}) y el almacén del cliente ({2}) n
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Fila {0}: la fecha de vencimiento en la tabla de condiciones de pago no puede ser anterior a la fecha de publicación."
@@ -46131,16 +46192,16 @@ msgstr "Fila {0}: para el proveedor {1}, se requiere la dirección de correo ele
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Fila {0}: Tiempo Desde y Tiempo Hasta es obligatorio."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Fila {0}: Tiempo Desde y Tiempo Hasta de {1} se solapan con {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Fila {0}: Desde el almacén es obligatorio para transferencias internas"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Fila {0}: el tiempo debe ser menor que el tiempo"
@@ -46156,7 +46217,7 @@ msgstr "Fila {0}: Referencia no válida {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Fila {0}: Plantilla de impuesto del artículo actualizada según la validez y la tasa aplicada"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Fila {0}: La tarifa del artículo se ha actualizado según la tarifa de valoración, ya que se trata de una transferencia de stock interna"
@@ -46180,7 +46241,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Fila {0}: La cantidad embalada debe ser igual a la cantidad {1} ."
@@ -46248,7 +46309,7 @@ msgstr "Fila {0}: La factura de compra {1} no tiene impacto en el stock."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Fila {0}: La cantidad no puede ser mayor que {1} para el artículo {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Fila {0}: La UdM de cantidad en stock no puede ser cero."
@@ -46260,10 +46321,6 @@ msgstr "Fila {0}: La cantidad debe ser mayor que 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Fila {0}: Cantidad no disponible para {4} en el almacén {1} al momento de contabilizar la entrada ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46272,11 +46329,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Fila {0}: No se puede cambiar el turno porque ya se ha procesado la amortización"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Fila {0}: el artículo subcontratado es obligatorio para la materia prima {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Fila {0}: El almacén de destino es obligatorio para las transferencias internas"
@@ -46288,11 +46345,11 @@ msgstr "Fila {0}: La tarea {1} no pertenece al proyecto {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Fila {0}: el artículo {1}, la cantidad debe ser un número positivo"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Fila {0}: La cuenta {3} {1} no pertenece a la empresa {2}"
@@ -46300,11 +46357,11 @@ msgstr "Fila {0}: La cuenta {3} {1} no pertenece a la empresa {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Fila {0}: Para establecer la periodicidad {1} , la diferencia entre la fecha de inicio y la de finalización debe ser mayor o igual a {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Línea {0}: El factor de conversión de (UdM) es obligatorio"
@@ -46317,11 +46374,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Fila {0}: La estación de trabajo o el tipo de estación de trabajo son obligatorios para una operación {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Fila {0}: el usuario no ha aplicado la regla {1} en el elemento {2}"
@@ -46333,7 +46390,7 @@ msgstr "Fila {0}: {1} cuenta ya aplicada para la Dimensión Contable {2}"
msgid "Row {0}: {1} must be greater than 0"
msgstr "Fila {0}: {1} debe ser mayor que 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Fila {0}: {1} {2} no puede ser la misma que {3} (Cuenta de la tercera parte) {4}"
@@ -46379,7 +46436,7 @@ msgstr "Filas eliminadas en {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Las líneas con los mismos encabezamientos de cuenta se fusionarán en el Libro Mayor"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Se encontraron filas con fechas de vencimiento duplicadas en otras filas: {0}"
@@ -46387,7 +46444,7 @@ msgstr "Se encontraron filas con fechas de vencimiento duplicadas en otras filas
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Filas: {0} tienen 'Entrada de pago' como reference_type. No debe establecerse manualmente."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Las filas {0} en la sección {1} no son válidas. El nombre de referencia debe apuntar a una entrada de pago o de diario válida."
@@ -46594,8 +46651,8 @@ msgstr "Stock de seguridad"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46617,8 +46674,8 @@ msgstr "Modo de pago"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46632,18 +46689,23 @@ msgstr "Modo de pago"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Ventas"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Cuenta de ventas"
@@ -46667,8 +46729,8 @@ msgstr "Contribuciones e incentivos de ventas"
msgid "Sales Defaults"
msgstr "Valores Predeterminados de Venta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Gastos de venta"
@@ -46837,11 +46899,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "La factura {0} ya ha sido validada"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "La factura de venta {0} debe eliminarse antes de cancelar esta orden de venta"
@@ -47039,25 +47101,25 @@ msgstr "Tendencias de ordenes de ventas"
msgid "Sales Order required for Item {0}"
msgstr "Orden de venta requerida para el producto {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "El Pedido de Venta {0} ya existe contra el Pedido de Compra del Cliente {1}. Para permitir múltiples Pedidos de Venta, habilite {2} en {3}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "La órden de venta {0} no esta validada"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Orden de venta {0} no es válida"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Orden de Venta {0} es {1}"
@@ -47101,6 +47163,7 @@ msgstr "Órdenes de Ventas para Enviar"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47113,7 +47176,7 @@ msgstr "Órdenes de Ventas para Enviar"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47219,7 +47282,7 @@ msgstr "Resumen de Pago de Ventas"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47312,7 +47375,7 @@ msgstr "Registro de ventas"
msgid "Sales Representative"
msgstr "Representante de Ventas"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Devoluciones de ventas"
@@ -47336,7 +47399,7 @@ msgstr "Resumen de ventas"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Plantilla de impuesto sobre ventas"
@@ -47455,7 +47518,7 @@ msgstr "Mismo articulo"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Ya se ha introducido la misma combinación de artículo y almacén."
@@ -47487,12 +47550,12 @@ msgstr "Almacenamiento de Muestras de Retención"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Tamaño de muestra"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "La Cantidad de Muestra {0} no puede ser más que la Cantidad Recibida {1}"
@@ -47736,7 +47799,7 @@ msgstr "Activo de desecho"
msgid "Scrap Warehouse"
msgstr "Almacén de chatarra"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "La fecha de desguace no puede ser anterior a la fecha de compra"
@@ -47855,8 +47918,8 @@ msgstr "Rol secundario"
msgid "Secretary"
msgstr "Secretario/a"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Prestamos en garantía"
@@ -47894,7 +47957,7 @@ msgstr "Seleccionar artículo alternativo"
msgid "Select Alternative Items for Sales Order"
msgstr "Seleccionar ítems alternativos para Orden de Venta"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Seleccionar valores de atributo"
@@ -47936,7 +47999,7 @@ msgstr "Seleccionar Compañia"
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Seleccionar Operación Correctiva"
@@ -47972,7 +48035,7 @@ msgstr "Seleccionar dimensión"
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Seleccione los empleados"
@@ -47997,7 +48060,7 @@ msgstr "Seleccionar articulos"
msgid "Select Items based on Delivery Date"
msgstr "Seleccionar Elementos según la Fecha de Entrega"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Seleccionar artículos para inspección de calidad"
@@ -48035,7 +48098,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Seleccionar Posible Proveedor"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Seleccione cantidad"
@@ -48110,7 +48173,7 @@ msgstr "Seleccione una prioridad predeterminada."
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Seleccione un proveedor"
@@ -48133,7 +48196,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Seleccione un grupo de artículos."
@@ -48149,9 +48212,9 @@ msgstr "Seleccione una factura para cargar datos de resumen"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Seleccione un ítem de cada conjunto para usarlo en la Orden de Venta."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Seleccione al menos un valor de cada uno de los atributos."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48167,7 +48230,7 @@ msgstr "Seleccione primero el nombre de la empresa."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Seleccione el libro de finanzas para el artículo {0} en la fila {1}"
@@ -48199,7 +48262,7 @@ msgstr "Seleccione la cuenta bancaria para conciliar."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Seleccione la estación de trabajo predeterminada donde se realizará la operación. Esta información se obtendrá en las listas de materiales y las órdenes de trabajo."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Seleccione el artículo que desea fabricar."
@@ -48216,7 +48279,7 @@ msgstr "Seleccione el almacén"
msgid "Select the customer or supplier."
msgstr "Seleccione el cliente o proveedor."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Seleccione la fecha"
@@ -48224,6 +48287,12 @@ msgstr "Seleccione la fecha"
msgid "Select the date and your timezone"
msgstr "Seleccione la fecha y su zona horaria"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Seleccione las materias primas (Artículos) necesarias para fabricar el Artículo"
@@ -48252,7 +48321,7 @@ msgstr "Seleccione, para que el usuario pueda buscar con estos campos"
msgid "Selected POS Opening Entry should be open."
msgstr "La entrada de apertura de POS seleccionada debe estar abierta."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "La Lista de Precios seleccionada debe tener los campos de compra y venta marcados."
@@ -48283,30 +48352,30 @@ msgstr "El documento seleccionado debe estar en estado validado"
msgid "Self delivery"
msgstr "Autoentrega"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Vender"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Vender activos"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48559,7 +48628,7 @@ msgstr "Números de serie / lote"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48579,7 +48648,7 @@ msgstr "Números de serie / lote"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48624,7 +48693,7 @@ msgstr "Rango de números de serie"
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48764,7 +48833,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Los números de serie se crearon correctamente"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Los números de serie se reservan en las entradas de reserva de existencias, debe anular su reserva antes de continuar."
@@ -48834,7 +48903,7 @@ msgstr "Serie y lote"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49248,7 +49317,7 @@ msgstr "Establecer avances y asignar (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Establecer tarifa básica manualmente"
@@ -49267,8 +49336,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49435,11 +49504,11 @@ msgstr "Establecer por plantilla de impuestos del artículo"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Seleccionar la cuenta de inventario por defecto para el inventario perpetuo"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Establecer la cuenta predeterminada {0} para artículos que no están en stock"
@@ -49471,7 +49540,7 @@ msgstr "Fijar tipo de posición de submontaje basado en la lista de materiales"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Establecer objetivos en los grupos de productos para este vendedor"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Establezca la fecha de inicio planificada (una fecha estimada en la que desea que comience la producción)"
@@ -49582,7 +49651,7 @@ msgid "Setting up company"
msgstr "Creando compañía"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49602,6 +49671,10 @@ msgstr "Configuración para el Módulo de Venta"
msgid "Settled"
msgstr "Colocado"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49794,7 +49867,7 @@ msgstr "Tipo de Envío"
msgid "Shipment details"
msgstr "Detalles del envío"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Envíos"
@@ -49832,7 +49905,7 @@ msgstr "Nombre de dirección de envío"
msgid "Shipping Address Template"
msgstr "Plantilla de dirección de envío"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49975,8 +50048,8 @@ msgstr "Breve biografía para la página web y otras publicaciones."
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50308,7 +50381,7 @@ msgstr "Simultáneo"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Dado que hay una pérdida de proceso de {0} unidades para el producto terminado {1}, debe reducir la cantidad en {0} unidades para el producto terminado {1} en la Tabla de Artículos."
@@ -50353,7 +50426,7 @@ msgstr "Saltar nota de entrega"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50395,8 +50468,8 @@ msgstr "Constante de suavizado"
msgid "Soap & Detergent"
msgstr "Jabón y detergente"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Software"
@@ -50420,7 +50493,7 @@ msgstr "Vendido por"
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50484,7 +50557,7 @@ msgstr "Nombre del campo de origen"
msgid "Source Location"
msgstr "Ubicación de Origen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50493,11 +50566,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50555,7 +50628,12 @@ msgstr "Enlace de dirección del almacén de origen"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50563,24 +50641,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "La ubicación de origen y destino no puede ser la misma"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Almacenes de origen y destino no pueden ser los mismos, línea {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Almacén de Origen y Destino deben ser diferentes"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Origen de fondos (Pasivo)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "El almacén de origen es obligatorio para la línea {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50621,7 +50698,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50629,7 +50706,7 @@ msgid "Split"
msgstr "División"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Activo dividido"
@@ -50653,7 +50730,7 @@ msgstr "Dividir de"
msgid "Split Issue"
msgstr "Problema de División"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Cantidad dividida"
@@ -50665,6 +50742,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Dividir {0} {1} en {2} filas según las condiciones de pago"
@@ -50737,13 +50819,13 @@ msgstr "Compra estandar"
msgid "Standard Description"
msgstr "Descripción estándar"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Gastos con tasa estándar"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Venta estándar"
@@ -50764,8 +50846,8 @@ msgstr "Plantilla estándar"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Términos y condiciones estándar que pueden añadirse a las ventas y compras. Ejemplos: Validez de la oferta, Condiciones de pago, Seguridad y uso, etc."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Suministros con tasa estándar en {0}"
@@ -50800,7 +50882,7 @@ msgstr "La fecha de inicio no puede ser anterior a la fecha actual"
msgid "Start Date should be lower than End Date"
msgstr "La fecha de inicio debe ser menor a la fecha final"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Iniciar trabajo"
@@ -50929,7 +51011,7 @@ msgstr "Ilustración de estado"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "El estado debe ser cancelado o completado"
@@ -50959,6 +51041,7 @@ msgstr "Información legal u otra información general acerca de su proveedor"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50967,8 +51050,8 @@ msgstr "Almacén"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51068,6 +51151,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51077,10 +51170,6 @@ msgstr ""
msgid "Stock Details"
msgstr "Detalles de almacén"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Entradas de stock ya creadas para la orden de trabajo {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51144,7 +51233,7 @@ msgstr "La entrada de stock ya se ha creado para esta lista de selección"
msgid "Stock Entry {0} created"
msgstr "Entrada de stock {0} creada"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Se ha creado la entrada de stock {0}"
@@ -51152,8 +51241,8 @@ msgstr "Se ha creado la entrada de stock {0}"
msgid "Stock Entry {0} is not submitted"
msgstr "La entrada de stock {0} no esta validada"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Gastos sobre existencias"
@@ -51231,8 +51320,8 @@ msgstr "Niveles de Stock"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Inventarios por pagar"
@@ -51335,8 +51424,8 @@ msgstr "Cantidad de stock vs serie sin recuento"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51348,7 +51437,7 @@ msgstr "Inventario Recibido pero no Facturado"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51360,7 +51449,7 @@ msgstr "Reconciliación de inventarios"
msgid "Stock Reconciliation Item"
msgstr "Elemento de reconciliación de inventarios"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Reconciliaciones de stock"
@@ -51385,9 +51474,9 @@ msgstr "Configuración de ajuste de valoración de stock"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51398,7 +51487,7 @@ msgstr "Configuración de ajuste de valoración de stock"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51423,10 +51512,10 @@ msgstr "Reservas de stock"
msgid "Stock Reservation Entries Cancelled"
msgstr "Entradas de reserva de stock canceladas"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Entradas de reserva de stock creadas"
@@ -51454,7 +51543,7 @@ msgstr "La entrada de reserva de stock no se puede actualizar, ya que ya ha sido
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 "La entrada de reserva de existencias creada en una lista de selección no se puede actualizar. Si necesita realizar cambios, le recomendamos cancelar la entrada existente y crear una nueva."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Desajuste de almacén de reserva de existencias"
@@ -51494,7 +51583,7 @@ msgstr "Cantidad reservada en stock (UdM de stock)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51609,7 +51698,7 @@ msgstr "Configuración de transacciones de stock"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51742,11 +51831,11 @@ msgstr "No se pueden reservar existencias en el almacén del grupo {0}."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "No se pueden reservar existencias en el almacén del grupo {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "El stock no se puede actualizar con las siguientes notas de entrega: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "No se puede actualizar el stock porque la factura contiene un artículo de envío directo. Desactive la opción \"Actualizar stock\" o elimine el artículo de envío directo."
@@ -51801,14 +51890,14 @@ msgstr "Piedra"
msgid "Stop Reason"
msgstr "Detener la razón"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "La Órden de Trabajo detenida no se puede cancelar, desactívela primero para cancelarla"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Sucursales"
@@ -51866,7 +51955,7 @@ msgstr "Almacén de subconjuntos"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52128,7 +52217,7 @@ msgstr "Artículo de servicio de orden de subcontratación"
msgid "Subcontracting Order Supplied Item"
msgstr "Orden de subcontratación Artículo suministrado"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Orden de subcontratación {0} creada."
@@ -52217,7 +52306,7 @@ msgstr ""
msgid "Subdivision"
msgstr "Subdivisión"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Fallo al validar"
@@ -52238,7 +52327,7 @@ msgstr "Validar facturas generadas"
msgid "Submit Journal Entries"
msgstr "Validar entradas de diario"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Valide esta Orden de Trabajo para su posterior procesamiento."
@@ -52392,7 +52481,7 @@ msgstr "Reconciliado exitosamente"
msgid "Successfully Set Supplier"
msgstr "Proveedor establecido con éxito"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "La unidad de medida de stock se modificó correctamente; redefina los factores de conversión para la nueva unidad de medida."
@@ -52416,7 +52505,7 @@ msgstr "Importado correctamente {0} registros."
msgid "Successfully linked to Customer"
msgstr "Vinculado exitosamente al Cliente"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Vinculado exitosamente al Proveedor"
@@ -52576,7 +52665,7 @@ msgstr "Cant. Suministrada"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52674,6 +52763,7 @@ msgstr "Detalles del proveedor"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52683,7 +52773,7 @@ msgstr "Detalles del proveedor"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52698,6 +52788,7 @@ msgstr "Detalles del proveedor"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52782,7 +52873,7 @@ msgstr "Resumen del Libro Mayor de Proveedores"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52817,8 +52908,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52870,7 +52959,7 @@ msgstr "Contacto principal del Proveedor"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52899,7 +52988,7 @@ msgstr "Comparación de cotizaciones de proveedores"
msgid "Supplier Quotation Item"
msgstr "Ítem de Presupuesto de Proveedor"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Cotización de proveedor {0} creada"
@@ -52988,7 +53077,7 @@ msgstr "Tipo de proveedor"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Almacén del proveedor"
@@ -53005,17 +53094,12 @@ msgstr "Proveedor entrega al Cliente"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Proveedor de Bienes o Servicios."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Proveedor {0} no encontrado en {1}"
@@ -53028,8 +53112,8 @@ msgstr "Proveedor(es)"
msgid "Suppliers"
msgstr "Proveedores"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53120,7 +53204,7 @@ msgstr "Sincronización Iniciada"
msgid "Synchronize all accounts every hour"
msgstr "Sincronice todas las cuentas cada hora"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53151,7 +53235,7 @@ msgstr "El sistema hará una conversión implícita utilizando la divisa vincula
msgid "System will fetch all the entries if limit value is zero."
msgstr "El sistema buscará todas las entradas si el valor límite es cero."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "El sistema no verificará la facturación excesiva porque el monto del artículo {0} en {1} es cero"
@@ -53172,10 +53256,16 @@ msgstr "Resumen de Computación TDS"
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53323,7 +53413,7 @@ msgstr "Dirección del Almacén de Destino"
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53331,24 +53421,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "El almacén de destino es obligatorio para la línea {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53465,8 +53554,8 @@ msgstr "Monto de impuestos después del descuento (Divisa por defecto)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "El importe del impuesto se redondeará a nivel de fila (artículos)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Impuestos pagados"
@@ -53498,7 +53587,6 @@ msgstr "Impuestos pagados"
msgid "Tax Breakup"
msgstr "Desglose de impuestos"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53520,7 +53608,6 @@ msgstr "Desglose de impuestos"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53536,6 +53623,7 @@ msgstr "Desglose de impuestos"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53547,8 +53635,8 @@ msgstr "Categoría de impuestos"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Categoría de Impuesto fue cambiada a \"Total\" debido a que todos los Productos son items de no stock"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53622,7 +53710,7 @@ msgstr "Procentaje del impuesto %"
msgid "Tax Rates"
msgstr "Las tasas de impuestos"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Reembolsos de impuestos proporcionados a los turistas bajo el Plan de Reembolso de Impuestos para Turistas"
@@ -53640,7 +53728,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "Regla fiscal"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Conflicto de impuestos con {0}"
@@ -53655,7 +53743,7 @@ msgstr "Configuración de Impuestos"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Plantilla de impuestos es obligatorio."
@@ -53975,7 +54063,7 @@ msgstr "Impuestos y cargos deducidos"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Impuestos y gastos deducibles (Divisa por defecto)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Fila de impuestos #{0}: {1} no puede ser menor que {2}"
@@ -54008,8 +54096,8 @@ msgstr "Tecnología"
msgid "Telecommunications"
msgstr "Telecomunicaciones"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Cuenta telefonica"
@@ -54060,13 +54148,13 @@ msgstr "Temporalmente en espera"
msgid "Temporary"
msgstr "Temporal"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Cuentas temporales"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Apertura temporal"
@@ -54248,7 +54336,7 @@ msgstr "Plantillas de términos y condiciones"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54347,7 +54435,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "El campo 'Desde Paquete Nro' no debe estar vacío ni su valor es menor a 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "El acceso a la solicitud de cotización del portal está deshabilitado. Para permitir el acceso, habilítelo en la configuración del portal."
@@ -54400,7 +54488,8 @@ msgstr "El Término de Pago en la fila {0} es posiblemente un duplicado."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "La lista de selección que tiene entradas de reserva de existencias no se puede actualizar. Si necesita realizar cambios, le recomendamos cancelar las entradas de reserva de existencias existentes antes de actualizar la lista de selección."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54416,7 +54505,7 @@ msgstr "El número de serie en la fila #{0}: {1} no está disponible en el almac
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "El paquete de serie y lote {0} no es válido para esta transacción. El \"Tipo de transacción\" debería ser \"Saliente\" en lugar de \"Entrante\" en el paquete de serie y lote {0}"
@@ -54452,7 +54541,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54460,7 +54549,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54480,7 +54573,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "El sistema obtendrá la lista de materiales predeterminada para ese artículo. También puede cambiar la lista de materiales."
@@ -54513,7 +54606,7 @@ msgstr "El campo Desde accionista no puede estar en blanco"
msgid "The field To Shareholder cannot be blank"
msgstr "El campo Para el accionista no puede estar en blanco"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "El campo {0} en la fila {1} no está configurado"
@@ -54554,11 +54647,11 @@ msgstr "Los siguientes activos no pudieron registrar automáticamente las entrad
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Los siguientes atributos eliminados existen en las variantes pero no en la plantilla. Puede eliminar las variantes o mantener los atributos en la plantilla."
@@ -54579,7 +54672,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Se crearon los siguientes {0}: {1}"
@@ -54606,7 +54699,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Los elementos {0} y {1} están presentes en los siguientes {2} :"
@@ -54664,7 +54757,7 @@ msgstr "La operación {0} no puede ser la suboperación"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "La factura original debe consolidarse antes o junto con la factura de devolución."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54676,6 +54769,12 @@ msgstr "La cuenta principal {0} no existe en la plantilla cargada"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "La cuenta de puerta de enlace de pago en el plan {0} es diferente de la cuenta de puerta de enlace de pago en esta solicitud de pago"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54717,7 +54816,7 @@ msgstr "El stock reservado se liberará cuando actualices los artículos. ¿Est
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "El stock reservado se liberará. ¿Está seguro de que desea continuar?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "La cuenta raíz {0} debe ser un grupo."
@@ -54733,7 +54832,7 @@ msgstr "La cuenta de cambio seleccionada {} no pertenece a la empresa {}."
msgid "The selected item cannot have Batch"
msgstr "El producto seleccionado no puede contener lotes"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54766,7 +54865,7 @@ msgstr "Las acciones no existen con el {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "El stock del artículo {0} en el almacén {1} era negativo el {2}. Debe crear una entrada positiva {3} antes de la fecha {4} y la hora {5} para registrar la tasa de valoración correcta. Para obtener más detalles, lea la documentación ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54788,11 +54887,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "El sistema creará una Factura de Venta o una Factura de PdV desde la interfaz de PdV según esta configuración. Para transacciones de gran volumen, se recomienda usar la Factura de PdV."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "La tarea se ha puesto en cola como un trabajo en segundo plano. En caso de que haya algún problema con el procesamiento en segundo plano, el sistema agregará un comentario sobre el error en esta Reconciliación de inventario y volverá a la etapa Borrador"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54840,15 +54939,15 @@ msgstr "El valor de {0} difiere entre los elementos {1} y {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "El valor {0} ya está asignado a un artículo existente {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "El almacén donde se guardan los artículos terminados antes de enviarlos."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54856,19 +54955,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "El {0} ({1}) debe ser igual a {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "El {0} {1} creado exitosamente"
@@ -54876,7 +54975,7 @@ msgstr "El {0} {1} creado exitosamente"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54892,7 +54991,7 @@ msgstr "Hay mantenimiento activo o reparaciones contra el activo. Debes completa
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Hay inconsistencias entre la tasa, numero de acciones y la cantidad calculada"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54921,7 +55020,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Existen dos opciones para mantener la valoración de las existencias: FIFO (primero en entrar, primero en salir) y media móvil. Para comprender este tema en detalle, visite Valoración de artículos, FIFO y media móvil. "
@@ -54961,7 +55060,7 @@ msgstr "No se ha encontrado ningún lote en {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -55017,11 +55116,11 @@ msgstr "Este elemento es una variante de {0} (plantilla)."
msgid "This Month's Summary"
msgstr "Resumen de este mes"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55055,7 +55154,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Esto cubre todas las tarjetas de puntuación vinculadas a esta configuración"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Este documento está por encima del límite de {0} {1} para el elemento {4}. ¿Estás haciendo otra {3} contra el mismo {2}?"
@@ -55158,11 +55257,11 @@ msgstr "Esto se considera peligroso desde el punto de vista contable."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Esto se hace para manejar la contabilidad de los casos en los que el recibo de compra se crea después de la factura de compra."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Esta opción está habilitada de forma predeterminada. Si desea planificar materiales para los subconjuntos del artículo que está fabricando, deje esta opción habilitada. Si planifica y fabrica los subconjuntos por separado, puede deshabilitar esta casilla de verificación."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Esto es para los artículos de materia prima que se utilizarán para crear productos terminados. Si el artículo es un servicio adicional, como \"lavado\", que se utilizará en la lista de materiales, deje esta casilla sin marcar."
@@ -55231,7 +55330,7 @@ msgstr "Este cronograma se creó cuando el activo {0} se consumió a través de
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Este cronograma se creó cuando el activo {0} fue reparado a través de la reparación del activo {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55239,15 +55338,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Este cronograma se creó cuando el Activo {0} se restauró en la cancelación de la Capitalización del Activo {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Este cronograma se creó cuando se restauró el activo {0} ."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Este cronograma se creó cuando el activo {0} se devolvió a través de la factura de venta {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Este cronograma se creó cuando se descartó el activo {0} ."
@@ -55255,7 +55354,7 @@ msgstr "Este cronograma se creó cuando se descartó el activo {0} ."
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55324,7 +55423,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Esto restringirá el acceso del usuario a otros registros de empleados"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Este {} se tratará como transferencia de material."
@@ -55435,7 +55534,7 @@ msgstr "Tiempo en min"
msgid "Time in mins."
msgstr "Tiempo en minutos."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Se requieren registros de tiempo para {0} {1}"
@@ -55544,7 +55643,7 @@ msgstr "Por facturar"
msgid "To Currency"
msgstr "A moneda"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "La fecha no puede ser anterior a la fecha actual"
@@ -55771,11 +55870,15 @@ msgstr "Para agregar operaciones, marque la casilla de verificación \"Con opera
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Para agregar materias primas de artículos subcontratados si la opción de incluir artículos explotados está deshabilitada."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Para permitir la facturación excesiva, actualice "Asignación de facturación excesiva" en la Configuración de cuentas o el Artículo."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Para permitir sobre recibo / entrega, actualice "Recibo sobre recibo / entrega" en la Configuración de inventario o en el Artículo."
@@ -55818,11 +55921,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Para incluir el impuesto en la línea {0} los impuestos de las lineas {1} tambien deben ser incluidos"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Para fusionar, la siguientes propiedades deben ser las mismas en ambos productos"
@@ -55830,7 +55933,7 @@ msgstr "Para fusionar, la siguientes propiedades deben ser las mismas en ambos p
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Para anular esto, habilite "{0}" en la empresa {1}"
@@ -55855,7 +55958,7 @@ msgstr "Para enviar la factura sin recibo de compra, configure {0} como {1} en {
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Para utilizar un libro de finanzas diferente, desmarque la opción \"Incluir activos de FB predeterminados\""
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56005,7 +56108,7 @@ msgstr "Asignaciones totales"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56112,12 +56215,12 @@ msgstr "Comisión Total"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Cantidad total completada"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56419,7 +56522,7 @@ msgstr "Monto total pendiente"
msgid "Total Paid Amount"
msgstr "Importe total pagado"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "El monto total del pago en el cronograma de pago debe ser igual al total / Total Redondeado"
@@ -56431,7 +56534,7 @@ msgstr "El monto total de la solicitud de pago no puede ser mayor que el monto d
msgid "Total Payments"
msgstr "Pagos totales"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56714,7 +56817,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "Porcentaje del total asignado para el equipo de ventas debe ser de 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "El porcentaje de contribución total debe ser igual a 100"
@@ -56889,7 +56992,7 @@ msgstr "Fecha de Transacción"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56913,11 +57016,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -57022,7 +57125,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transacción no permitida contra orden de trabajo detenida {0}"
@@ -57069,11 +57173,16 @@ msgstr "Historial Anual de Transacciones"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr ""
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57254,8 +57363,8 @@ msgstr "Información de Transportista"
msgid "Transporter Name"
msgstr "Nombre del Transportista"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Gastos de Viaje"
@@ -57519,6 +57628,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57534,7 +57644,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57595,7 +57705,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Factor de Conversión de Unidad de Medida"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Factor de conversión de UOM ({0} -> {1}) no encontrado para el artículo: {2}"
@@ -57608,7 +57718,7 @@ msgstr "El factor de conversión de la (UdM) es requerido en la línea {0}"
msgid "UOM Name"
msgstr "Nombre de la unidad de medida (UdM)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57680,13 +57790,13 @@ msgstr "No se puede encontrar el tipo de cambio para {0} a {1} para la fecha cla
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "No se puede encontrar la puntuación a partir de {0}. Usted necesita tener puntuaciones en pie que cubren 0 a 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "No se puede encontrar la variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57767,7 +57877,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57786,7 +57896,7 @@ msgstr "Unidad"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57803,7 +57913,7 @@ msgstr "Unidad de Medida (UdM)"
msgid "Unit of Measure (UOM)"
msgstr "Unidad de Medida (UdM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Unidad de Medida (UdM) {0} se ha introducido más de una vez en la tabla de factores de conversión"
@@ -57948,7 +58058,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57988,12 +58098,12 @@ msgstr "Irresoluto"
msgid "Unscheduled"
msgstr "Sin programación"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Préstamos sin garantía"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58169,7 +58279,7 @@ msgstr "Actualizar elementos"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Actualización pendiente para mí"
@@ -58248,11 +58358,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Actualizando Variantes ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Actualizando estado de la Orden de Trabajo"
@@ -58454,7 +58564,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Usar el tipo de cambio de fecha de la transacción"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Use un nombre que sea diferente del nombre del proyecto anterior"
@@ -58496,7 +58606,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Foro de usuarios"
@@ -58560,6 +58670,11 @@ msgstr "Los usuarios pueden habilitar la casilla de verificación si desean ajus
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58582,8 +58697,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "El uso de stock negativo deshabilita la valoración FIFO/promedio móvil cuando el inventario es negativo."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Servicios públicos"
@@ -58593,7 +58708,7 @@ msgstr "Servicios públicos"
msgid "VAT Accounts"
msgstr "Cuentas de IVA"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Importe del IVA (AED)"
@@ -58603,12 +58718,12 @@ msgid "VAT Audit Report"
msgstr "Informe de auditoría del IVA"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "Impuestos en gastos y todas las demás entradas"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "Impuestos sobre las ventas y todas las demás salidas"
@@ -58802,7 +58917,6 @@ msgstr "Método de Valoración"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58818,14 +58932,12 @@ msgstr "Método de Valoración"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Tasa de valoración"
@@ -58833,19 +58945,19 @@ msgstr "Tasa de valoración"
msgid "Valuation Rate (In / Out)"
msgstr "Tasa de Valoración (Entrada/Salida)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Falta la tasa de valoración"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Tasa de valoración para el artículo {0}, se requiere para realizar asientos contables para {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Rango de Valoración es obligatorio si se ha ingresado una Apertura de Almacén"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Tasa de valoración requerida para el artículo {0} en la fila {1}"
@@ -58855,7 +58967,7 @@ msgstr "Tasa de valoración requerida para el artículo {0} en la fila {1}"
msgid "Valuation and Total"
msgstr "Valuación y Total"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "La tasa de valoración de los artículos proporcionados por el cliente se ha establecido en cero."
@@ -58869,7 +58981,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Tasa de valoración del artículo según factura de venta (solo para transferencias internas)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Los cargos por tipo de valoración no se pueden marcar como inclusivos"
@@ -58881,7 +58993,7 @@ msgstr "Cargos de tipo de valoración no pueden marcado como Incluido"
msgid "Value (G - D)"
msgstr "Valor (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -59000,12 +59112,12 @@ msgid "Variance ({})"
msgstr "Varianza ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variante"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Error de atributo de variante"
@@ -59024,7 +59136,7 @@ msgstr "Lista de materiales variante"
msgid "Variant Based On"
msgstr "Variante basada en"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "La variante basada en no se puede cambiar"
@@ -59042,7 +59154,7 @@ msgstr "Campo de Variante"
msgid "Variant Item"
msgstr "Elemento variante"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Elementos variantes"
@@ -59053,7 +59165,7 @@ msgstr "Elementos variantes"
msgid "Variant Of"
msgstr "Variante de"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "La creación de variantes se ha puesto en cola."
@@ -59347,7 +59459,7 @@ msgstr "Comprobante"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Comprobante #"
@@ -59419,7 +59531,7 @@ msgstr "Nombre del comprobante"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59493,7 +59605,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59520,7 +59632,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59700,8 +59812,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Almacén no encontrado en la cuenta {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "El almacén es requerido para el stock del producto {0}"
@@ -59726,7 +59838,7 @@ msgstr "El almacén {0} no pertenece a la compañía {1}"
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59863,11 +59975,11 @@ msgstr "Advertencia: Existe otra {0} # {1} para la entrada de inventario {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Advertencia: La requisición de materiales es menor que la orden mínima establecida"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Advertencia: La orden de venta {0} ya existe para la orden de compra {1} del cliente"
@@ -59957,7 +60069,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -60026,7 +60138,7 @@ msgstr "Sitio Web:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Semana {0} {1}"
@@ -60156,7 +60268,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 "Si está marcada, el sistema utilizará la fecha y hora de contabilización del documento para asignarle un nombre en lugar de la fecha y hora de creación del documento."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60166,7 +60278,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60176,11 +60288,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Al crear una cuenta para la empresa secundaria {0}, la cuenta principal {1} se encontró como una cuenta contable."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Al crear la cuenta para la empresa secundaria {0}, no se encontró la cuenta principal {1}. Cree la cuenta principal en el COA correspondiente"
@@ -60325,7 +60437,7 @@ msgstr "Trabajo Realizado"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Trabajo en Proceso"
@@ -60362,7 +60474,7 @@ msgstr "Trabajo en Proceso"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60396,7 +60508,7 @@ msgstr ""
msgid "Work Order Item"
msgstr "Artículo de Órden de Trabajo"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60437,19 +60549,23 @@ msgstr "Resumen de la orden de trabajo"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "No se puede crear una orden de trabajo por el siguiente motivo: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "La Órden de Trabajo no puede levantarse contra una Plantilla de Artículo"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "La orden de trabajo ha sido {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Orden de trabajo no creada"
@@ -60458,16 +60574,16 @@ msgstr "Orden de trabajo no creada"
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Orden de trabajo {0}: Tarjeta de trabajo no encontrada para la operación {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Órdenes de trabajo"
@@ -60492,7 +60608,7 @@ msgstr "Trabajo en proceso"
msgid "Work-in-Progress Warehouse"
msgstr "Almacén de trabajos en proceso"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Se requiere un almacén de trabajos en proceso antes de validar"
@@ -60540,7 +60656,7 @@ msgstr "Horas de Trabajo"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60631,14 +60747,14 @@ msgstr "Estación de trabajo"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Desajuste"
@@ -60743,7 +60859,7 @@ msgstr "Valor Escrito"
msgid "Wrong Company"
msgstr "Compañía incorrecta"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Contraseña incorrecta"
@@ -60799,11 +60915,11 @@ msgstr "Fecha de inicio de año o fecha de finalización de año está traslapa
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "No se le permite actualizar según las condiciones establecidas en {} Flujo de trabajo."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "No tiene permisos para agregar o actualizar las entradas antes de {0}"
@@ -60811,7 +60927,7 @@ msgstr "No tiene permisos para agregar o actualizar las entradas antes de {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Usted no está autorizado para definir el 'valor congelado'"
@@ -60839,7 +60955,7 @@ msgstr "También puede configurar una cuenta CWIP predeterminada en la empresa {
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Puede cambiar la cuenta principal a una cuenta de balance o seleccionar una cuenta diferente."
@@ -60880,11 +60996,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60908,7 +61024,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "No puede crear ni cancelar ningún asiento contable dentro del período contable cerrado {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60969,7 +61085,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "No tienes permisos para {} elementos en un {}."
@@ -60981,19 +61097,19 @@ msgstr "No tienes suficientes puntos de lealtad para canjear"
msgid "You don't have enough points to redeem."
msgstr "No tienes suficientes puntos para canjear."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61005,7 +61121,7 @@ msgstr "Tuvo {} errores al crear facturas de apertura. Consulte {} para obtener
msgid "You have already selected items from {0} {1}"
msgstr "Ya ha seleccionado artículos de {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -61029,7 +61145,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Debe habilitar el reordenamiento automático en la Configuración de inventario para mantener los niveles de reordenamiento."
@@ -61045,7 +61161,7 @@ msgstr "Debe seleccionar un cliente antes de agregar un artículo."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -61092,11 +61208,11 @@ msgstr "Código postal"
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61118,11 +61234,11 @@ msgstr "Archivo zip"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Importante] [ERPNext] Errores de reorden automático"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Permitir precios Negativos para los Productos`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "después"
@@ -61163,7 +61279,7 @@ msgid "cannot be greater than 100"
msgstr "no puede ser mayor que 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61312,7 +61428,7 @@ msgstr ""
msgid "per hour"
msgstr "por hora"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61345,7 +61461,7 @@ msgstr "recibido de"
msgid "reconciled"
msgstr "reconciliado"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "devuelto"
@@ -61380,7 +61496,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "vendido"
@@ -61388,8 +61504,8 @@ msgstr "vendido"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61407,7 +61523,7 @@ msgstr "título"
msgid "to"
msgstr "a"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61434,7 +61550,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "Único, por ejemplo, SAVE20 Para ser utilizado para obtener descuento"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61456,7 +61572,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "debe seleccionar Cuenta Capital Work in Progress en la tabla de cuentas"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' está deshabilitado"
@@ -61464,7 +61580,7 @@ msgstr "{0} '{1}' está deshabilitado"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' no esta en el año fiscal {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) no puede ser mayor que la cantidad planificada ({2}) en la Orden de trabajo {3}"
@@ -61472,7 +61588,7 @@ msgstr "{0} ({1}) no puede ser mayor que la cantidad planificada ({2}) en la Ord
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61505,11 +61621,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Número {1} ya se usa en {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operaciones: {1}"
@@ -61517,7 +61633,7 @@ msgstr "{0} Operaciones: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Solicitud de {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Retener muestra se basa en el lote, marque Tiene número de lote para retener la muestra del artículo."
@@ -61605,11 +61721,11 @@ msgstr "{0} creado"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} tiene actualmente una {1} Tarjeta de Puntuación de Proveedores y las Órdenes de Compra a este Proveedor deben ser emitidas con precaución."
@@ -61621,7 +61737,7 @@ msgstr "{0} tiene actualmente un {1} Calificación de Proveedor en pie y las sol
msgid "{0} does not belong to Company {1}"
msgstr "{0} no pertenece a la Compañía {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61630,7 +61746,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} se ingresó dos veces en impuesto del artículo"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61655,7 +61771,7 @@ msgstr "{0} se ha validado correctamente"
msgid "{0} hours"
msgstr "{0} horas"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} en la fila {1}"
@@ -61677,7 +61793,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr "{0} ya se está ejecutando por {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} está bloqueado por lo que esta transacción no puede continuar"
@@ -61685,12 +61801,12 @@ msgstr "{0} está bloqueado por lo que esta transacción no puede continuar"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} es obligatorio para el artículo {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61698,7 +61814,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} es obligatorio. Quizás no se crea el registro de cambio de moneda para {1} a {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} es obligatorio. Posiblemente el registro de cambio de moneda no ha sido creado para {1} hasta {2}."
@@ -61706,7 +61822,7 @@ msgstr "{0} es obligatorio. Posiblemente el registro de cambio de moneda no ha s
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} no es una cuenta bancaria de la empresa"
@@ -61714,7 +61830,7 @@ msgstr "{0} no es una cuenta bancaria de la empresa"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} no es un nodo de grupo. Seleccione un nodo de grupo como centro de costo primario"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} no es un artículo en existencia"
@@ -61754,27 +61870,27 @@ msgstr "{0} está en espera hasta {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} artículos en curso"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} artículos producidos"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61782,7 +61898,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} debe ser negativo en el documento de devolución"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61798,7 +61914,7 @@ msgstr "El parámetro {0} no es válido"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} entradas de pago no pueden ser filtradas por {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61811,7 +61927,7 @@ msgstr "{0} a {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61827,16 +61943,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} unidades de {1} necesaria en {2} sobre {3} {4} {5} para completar esta transacción."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} unidades de {1} necesaria en {2} para completar esta transacción."
@@ -61848,7 +61964,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} núms. de serie válidos para el artículo {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} variantes creadas"
@@ -61864,7 +61980,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61902,8 +62018,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} ha sido modificado. Por favor actualice."
@@ -62013,7 +62129,7 @@ msgstr "{0} {1}: la cuenta {2} está inactiva"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: La entrada contable para {2} sólo puede hacerse en la moneda: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Centro de Costes es obligatorio para el artículo {2}"
@@ -62062,8 +62178,8 @@ msgstr "{0}% del valor total de la factura se otorgará como descuento."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, complete la operación {1} antes de la operación {2}."
@@ -62083,11 +62199,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62095,11 +62211,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} no existe"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} debe ser menor que {2}"
@@ -62111,7 +62227,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} está cancelado o cerrado."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62123,7 +62239,7 @@ msgstr ""
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} no se puede cancelar ya que se canjearon los puntos de fidelidad ganados. Primero cancele el {} No {}"
diff --git a/erpnext/locale/fa.po b/erpnext/locale/fa.po
index ddb270d4e00..0a67703e7dd 100644
--- a/erpnext/locale/fa.po
+++ b/erpnext/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-19 20:28\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " زیر مونتاژ"
msgid " Summary"
msgstr " خلاصه"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"آیتم تامین شده توسط مشتری\" نمیتواند آیتم خرید هم باشد"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"آیتم تامین شده توسط مشتری\" نمیتواند دارای نرخ ارزشگذاری باشد"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "علامت \"دارایی ثابت است\" را نمیتوان بردارید، زیرا رکورد دارایی در برابر آیتم وجود دارد"
@@ -268,11 +268,11 @@ msgstr "٪ مواد تحویلشده بر اساس این لیست انتخا
msgid "% of materials delivered against this Sales Order"
msgstr "٪ از مواد در برابر این سفارش فروش تحویل شدند"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "حساب در بخش حسابداری مشتری {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "اجازه ایجاد چندین سفارش فروش برای یک سفارش خرید مشتری"
@@ -284,7 +284,7 @@ msgstr "بر اساس و \"گروه بر اساس\" نمیتوانند یکس
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "روزهای پس از آخرین سفارش باید بزرگتر یا مساوی صفر باشد"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "«حساب پیشفرض {0}» در شرکت {1}"
@@ -302,7 +302,7 @@ msgstr "«از تاریخ» مورد نیاز است"
msgid "'From Date' must be after 'To Date'"
msgstr "«از تاریخ» باید پس از «تا امروز» باشد"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "دارای شماره سریال نمیتواند \"بله\" برای کالاهای غیر موجودی باشد"
@@ -314,9 +314,9 @@ msgstr "«بازرسی قبل از تحویل لازم است» برای آیت
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "«بازرسی قبل از خرید لازم است» برای آیتم {0} غیرفعال شده است، نیازی به ایجاد QI نیست"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'افتتاحیه'"
@@ -346,8 +346,8 @@ msgstr "حساب '{0}' قبلاً توسط {1} استفاده شده است. ا
msgid "'{0}' has been already added."
msgstr "'{0}' قبلاً اضافه شده است."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "\"{0}\" باید به ارز شرکت {1} باشد."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 روز"
msgid "90 Above"
msgstr "90 بالا"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -764,7 +764,7 @@ msgstr "تنظیم
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "تاریخ تسویه حساب باید پس از تاریخ چک برای ردیف(ها) باشد: {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "آیتم {0} در ردیف(های) {1} بیش از {2} صورتحساب شده است "
@@ -781,7 +781,7 @@ msgstr ""
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -825,7 +825,7 @@ msgstr "تاریخ ارسال {0} نمیتواند قبل از تاریخ
msgid "
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr "نرخ لیست قیمت در تنظیمات فروش قابل ویرایش تنظیم نشده است. در این حالت، تنظیم بهروزرسانی لیست قیمت بر اساس روی نرخ لیست قیمت از بهروزرسانی خودکار قیمت کالا جلوگیری میکند.
آیا مطمئنید که میخواهید ادامه دهید؟"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -909,11 +909,11 @@ msgstr "میانبرهای شما\n"
msgid "Your Shortcuts "
msgstr "میانبرهای شما "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "جمع کل: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "مبلغ معوق: {0}"
@@ -958,7 +958,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "یک گروه مشتری با همین نام وجود دارد، لطفا نام مشتری را تغییر دهید یا نام گروه مشتری را تغییر دهید"
@@ -1122,11 +1122,11 @@ msgstr "مخفف"
msgid "Abbreviation"
msgstr "مخفف"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "مخفف قبلاً برای شرکت دیگری استفاده شده است"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "علامت اختصاری الزامی است"
@@ -1134,7 +1134,7 @@ msgstr "علامت اختصاری الزامی است"
msgid "Abbreviation: {0} must appear only once"
msgstr "مخفف: {0} باید فقط یک بار ظاهر شود"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "در بالا"
@@ -1188,7 +1188,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "مقدار پذیرفته شده بر حسب واحد اندازهگیری موجودی"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "مقدار پذیرفته شده"
@@ -1224,7 +1224,7 @@ msgstr "کلید دسترسی برای ارائهدهنده خدمات لاز
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "طبق CEFACT/ICG/2010/IC013 یا CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "طبق BOM {0}، آیتم '{1}' در ثبت موجودی وجود ندارد."
@@ -1342,8 +1342,8 @@ msgstr "سرفصل حساب"
msgid "Account Manager"
msgstr "مدیر حساب"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "حساب از دست رفته است"
@@ -1361,7 +1361,7 @@ msgstr "حساب از دست رفته است"
msgid "Account Name"
msgstr "نام کاربری"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "حساب پیدا نشد"
@@ -1374,7 +1374,7 @@ msgstr "حساب پیدا نشد"
msgid "Account Number"
msgstr "شماره حساب"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "شماره حساب {0} قبلاً در حساب {1} استفاده شده است"
@@ -1413,7 +1413,7 @@ msgstr "زیرنوع حساب"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1429,11 +1429,11 @@ msgstr "نوع حساب"
msgid "Account Value"
msgstr "ارزش حساب"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "تراز حساب در حال حاضر بستانکاری است، شما مجاز نیستید \"موجودی باید\" را به عنوان \"بدهکاری\" تنظیم کنید"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "موجودی حساب در حال حاضر در بدهکاری است، شما مجاز به تنظیم \"تراز باید\" به عنوان \"بستانکاری\" نیستید"
@@ -1500,15 +1500,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "حساب دارای گرههای فرزند را نمیتوان به دفتر تبدیل کرد"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "حساب با گرههای فرزند را نمیتوان به عنوان دفتر تنظیم کرد"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "حساب با تراکنش موجود را نمیتوان به گروه تبدیل کرد."
@@ -1516,8 +1516,8 @@ msgstr "حساب با تراکنش موجود را نمیتوان به گرو
msgid "Account with existing transaction can not be deleted"
msgstr "حساب با تراکنش موجود قابل حذف نیست"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "حساب با تراکنش موجود را نمیتوان به دفتر تبدیل کرد"
@@ -1525,11 +1525,11 @@ msgstr "حساب با تراکنش موجود را نمیتوان به دفت
msgid "Account {0} added multiple times"
msgstr "حساب {0} چندین بار اضافه شد"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1537,11 +1537,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr "حساب {0} متعلق به شرکت {1} نیست"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "حساب {0} متعلق به شرکت نیست: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "حساب {0} وجود ندارد"
@@ -1557,15 +1557,15 @@ msgstr "حساب {0} با شرکت {1} در حالت حساب مطابقت ند
msgid "Account {0} doesn't belong to Company {1}"
msgstr "حساب {0} متعلق به شرکت {1} نیست"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "حساب {0} در شرکت والد {1} وجود دارد."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "حساب {0} در شرکت فرزند {1} اضافه شد"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "حساب {0} غیرفعال است."
@@ -1573,7 +1573,7 @@ msgstr "حساب {0} غیرفعال است."
msgid "Account {0} is frozen"
msgstr "حساب {0} مسدود شده است"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "حساب {0} نامعتبر است. ارز حساب باید {1} باشد"
@@ -1581,19 +1581,19 @@ msgstr "حساب {0} نامعتبر است. ارز حساب باید {1} باش
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "حساب {0}: حساب والد {1} نمیتواند دفتر باشد"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "حساب {0}: حساب والد {1} متعلق به شرکت {2} نیست"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "حساب {0}: حساب والد {1} وجود ندارد"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "حساب {0}: شما نمیتوانید خود را به عنوان حساب والد اختصاص دهید"
@@ -1609,7 +1609,7 @@ msgstr "حساب: {0} فقط از طریق تراکنشهای موجودی ق
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "حساب: {0} در قسمت ثبت پرداخت مجاز نیست"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "حساب: {0} با واحد پول: {1} قابل انتخاب نیست"
@@ -1894,8 +1894,8 @@ msgstr "ثبتهای حسابداری"
msgid "Accounting Entry for Asset"
msgstr "ثبت حسابداری برای دارایی"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1919,8 +1919,8 @@ msgstr "ثبت حسابداری برای خدمات"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "ثبت حسابداری برای موجودی"
@@ -1929,7 +1929,7 @@ msgstr "ثبت حسابداری برای موجودی"
msgid "Accounting Entry for {0}"
msgstr "ثبت حسابداری برای {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "ثبت حسابداری برای {0}: {1} فقط به ارز: {2} قابل انجام است"
@@ -1984,7 +1984,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1997,14 +1996,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "حسابها"
@@ -2034,8 +2032,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2135,15 +2133,15 @@ msgstr "جدول حسابها نمیتواند خالی باشد."
msgid "Accounts to Merge"
msgstr "حسابها برای ادغام"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "مخارج انباشته"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "استهلاک انباشته"
@@ -2308,7 +2306,7 @@ msgstr "اقدامات انجام شده"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2432,7 +2430,7 @@ msgstr "تاریخ پایان واقعی"
msgid "Actual End Date (via Timesheet)"
msgstr "تاریخ پایان واقعی (از طریق جدول زمانی)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2554,7 +2552,7 @@ msgstr "زمان واقعی به ساعت (از طریق جدول زمانی)"
msgid "Actual qty in stock"
msgstr "مقدار واقعی موجود در انبار"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "مالیات نوع واقعی را نمیتوان در نرخ آیتم در ردیف {0} لحاظ کرد"
@@ -2563,7 +2561,7 @@ msgstr "مالیات نوع واقعی را نمیتوان در نرخ آیت
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "افزودن / ویرایش قیمت ها"
@@ -3017,7 +3015,7 @@ msgstr "درصد تخفیف اضافی"
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
msgid "Additional Finished Good"
-msgstr ""
+msgstr "کالای تمام شده اضافی"
#. Label of the addtional_info (Section Break) field in DocType 'Journal Entry'
#. Label of the additional_info_section (Section Break) field in DocType
@@ -3062,7 +3060,7 @@ msgstr "اطلاعات تکمیلی"
msgid "Additional Information updated successfully."
msgstr "اطلاعات تکمیلی با موفقیت بهروزرسانی شد."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "انتقال مواد اضافی"
@@ -3085,7 +3083,7 @@ msgstr "هزینه عملیاتی اضافی"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3093,11 +3091,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "اطلاعات تکمیلی در مورد مشتری."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3243,11 +3236,6 @@ msgstr "آدرس باید به یک شرکت مرتبط باشد. لطفاً ی
msgid "Address used to determine Tax Category in transactions"
msgstr "آدرس مورد استفاده برای تعیین دسته مالیات در معاملات"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "تعدیل در مقابل"
@@ -3260,8 +3248,8 @@ msgstr "تعدیل بر اساس نرخ فاکتور خرید"
msgid "Administrative Assistant"
msgstr "معاون اداری"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "هزینه های اداری"
@@ -3329,7 +3317,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "پیشپرداخت"
@@ -3449,7 +3437,7 @@ msgstr "در مقابل حساب"
msgid "Against Blanket Order"
msgstr "در مقابل سفارش کلی"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "در مقابل سفارش مشتری {0}"
@@ -3591,11 +3579,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "سن (بر حسب روز)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "سن ({0})"
@@ -3745,21 +3733,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "همه دپارتمان ها"
@@ -3839,7 +3827,7 @@ msgstr "همه گروههای تامین کننده"
msgid "All Territories"
msgstr "همه مناطق"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "همه انبارها"
@@ -3853,6 +3841,11 @@ msgstr "همه تخصیص ها با موفقیت تطبیق داده شده اس
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "تمام ارتباطات از جمله و بالاتر از این باید به مشکل جدید منتقل شود"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "همه آیتمها قبلا درخواست شده است"
@@ -3861,23 +3854,23 @@ msgstr "همه آیتمها قبلا درخواست شده است"
msgid "All items have already been Invoiced/Returned"
msgstr "همه آیتمها قبلاً صورتحساب/بازگردانده شده اند"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "همه آیتمها قبلاً دریافت شده است"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "همه آیتمها قبلاً برای این دستور کار منتقل شده اند."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "همه آیتمها در این سند قبلاً دارای یک بازرسی کیفیت مرتبط هستند."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3891,11 +3884,11 @@ msgstr "تمام دیدگاهها و ایمیل ها از یک سند به س
msgid "All the items have been already returned."
msgstr "همه آیتمها قبلاً بازگردانده شده اند."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "تمام آیتمهای مورد نیاز (مواد اولیه) از BOM واکشی شده و در این جدول پر میشود. در اینجا شما همچنین میتوانید انبار منبع را برای هر آیتم تغییر دهید. و در حین تولید میتوانید مواد اولیه انتقال یافته را از این جدول ردیابی کنید."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "همه این آیتمها قبلاً صورتحساب/بازگردانده شده اند"
@@ -3914,7 +3907,7 @@ msgstr "تخصیص"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "تخصیص خودکار پیشپرداختها (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "تخصیص مبلغ پرداختی"
@@ -3924,7 +3917,7 @@ msgstr "تخصیص مبلغ پرداختی"
msgid "Allocate Payment Based On Payment Terms"
msgstr "تخصیص پرداخت بر اساس شرایط پرداخت"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "تخصیص درخواست پرداخت"
@@ -3954,7 +3947,7 @@ msgstr "اختصاص داده شده است"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4011,7 +4004,7 @@ msgstr "تعداد اختصاص داده شده"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4075,7 +4068,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "اجازه انتقالات داخلی با قیمت منصفانه"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "اجازه افزودن یک آیتم چندین بار در یک تراکنش"
@@ -4198,16 +4191,6 @@ msgstr "بازنشانی قرارداد سطح سرویس از تنظیمات پ
msgid "Allow Sales"
msgstr "اجازه فروش"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "اجازه ایجاد فاکتور فروش بدون یادداشت تحویل"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "اجازه ایجاد فاکتور فروش بدون سفارش فروش"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4333,6 +4316,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4409,10 +4402,8 @@ msgstr "آیتمهای مجاز"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "مجاز به تراکنش با"
@@ -4424,6 +4415,11 @@ msgstr "نقشهای اصلی مجاز عبارتند از «مشتری» و
msgid "Allowed special characters are '/' and '-'"
msgstr "کاراکترهای ویژه مجاز عبارتند از '/' و '-'"
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4465,8 +4461,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4707,7 +4703,7 @@ msgstr "همیشه بپرس"
msgid "Amount"
msgstr "مبلغ"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "مبلغ (AED)"
@@ -4841,12 +4837,12 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "مبلغ {0} {1} در مقابل {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "مبلغ {0} {1} از {2} کسر شد"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4891,11 +4887,11 @@ msgstr "مبلغ"
msgid "An Item Group is a way to classify items based on types."
msgstr "گروه آیتم راهی برای دستهبندی آیتمها بر اساس انواع است."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "هنگام ارسال مجدد ارزیابی مورد از طریق {0} خطایی ظاهر شد"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "در طول فرآیند بهروزرسانی خطایی رخ داد"
@@ -5435,7 +5431,7 @@ msgstr "از آنجایی که فیلد {0} فعال است، فیلد {1} اج
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "از آنجایی که فیلد {0} فعال است، مقدار فیلد {1} باید بیشتر از 1 باشد."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "از آنجایی که تراکنشهای ارسالی موجود در مقابل آیتم {0} وجود دارد، نمیتوانید مقدار {1} را تغییر دهید."
@@ -5447,7 +5443,7 @@ msgstr "از آنجایی که موجودی رزرو شده وجود دارد،
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "از آنجایی که آیتمهای زیر مونتاژ کافی وجود دارد، برای انبار {0} نیازی به دستور کار نیست."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "از آنجایی که مواد اولیه کافی وجود دارد، درخواست مواد برای انبار {0} لازم نیست."
@@ -5585,7 +5581,7 @@ msgstr "حساب دسته دارایی"
msgid "Asset Category Name"
msgstr "نام دسته دارایی"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "دسته دارایی برای آیتم دارایی ثابت اجباری است"
@@ -5762,8 +5758,8 @@ msgstr "مقدار دارایی"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5863,7 +5859,7 @@ msgstr "دارایی لغو شد"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "دارایی را نمیتوان لغو کرد، زیرا قبلاً {0} است"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "دارایی را نمیتوان قبل از آخرین ثبت استهلاک اسقاط کرد."
@@ -5895,7 +5891,7 @@ msgstr "دارایی از کار افتاده به دلیل تعمیر دارا
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "دارایی در مکان {0} دریافت و برای کارمند {1} حواله شد"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "دارایی بازیابی شد"
@@ -5903,20 +5899,20 @@ msgstr "دارایی بازیابی شد"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "دارایی پس از لغو فرآیند سرمایهای کردن دارایی {0} بازگردانده شد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "دارایی برگردانده شد"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "دارایی اسقاط شده است"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "دارایی از طریق ثبت دفتر روزنامه {0} اسقاط شد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "دارایی فروخته شده"
@@ -5936,7 +5932,7 @@ msgstr "دارایی پس از تقسیم به دارایی {0} به روز شد
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "دارایی {0} قابل اسقاط نیست، زیرا قبلاً {1} است"
@@ -5977,7 +5973,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "دارایی {0} باید ارسال شود"
@@ -6027,7 +6023,7 @@ msgstr "دارایی برای {item_code} ایجاد نشده است. شما ب
msgid "Assets {assets_link} created for {item_code}"
msgstr "داراییهای {assets_link} برای {item_code} ایجاد شد"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "کار را به کارمند واگذار کنید"
@@ -6088,7 +6084,7 @@ msgstr "حداقل یکی از ماژولهای کاربردی باید ان
msgid "At least one of the Selling or Buying must be selected"
msgstr "حداقل یکی از موارد فروش یا خرید باید انتخاب شود"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6096,20 +6092,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr "حداقل یک ردیف برای الگوی گزارش مالی لازم است"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "حداقل یک انبار اجباری است"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "در ردیف #{0}: شناسه توالی {1} نمیتواند کمتر از شناسه توالی ردیف قبلی {2} باشد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6192,11 +6184,11 @@ msgstr "نام ویژگی"
msgid "Attribute Value"
msgstr "مقدار ویژگی"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr "مقدار ویژگی {0} برای ویژگی انتخاب شده {1} معتبر نیست."
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "جدول مشخصات اجباری است"
@@ -6204,19 +6196,19 @@ msgstr "جدول مشخصات اجباری است"
msgid "Attribute value: {0} must appear only once"
msgstr "مقدار مشخصه: {0} باید فقط یک بار ظاهر شود"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr "ویژگی {0} غیرفعال است."
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr "ویژگی {0} برای الگوی انتخاب شده معتبر نیست."
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "ویژگی {0} چندین بار در جدول ویژگیها انتخاب شده است"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "ویژگیهای"
@@ -6428,7 +6420,7 @@ msgstr "مطابقت خودکار و تنظیم طرف در معاملات با
msgid "Auto re-order"
msgstr "سفارش مجدد خودکار"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "سند تکرار خودکار به روز شد"
@@ -6540,7 +6532,7 @@ msgstr "تاریخ استفاده در دسترس است"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "تعداد موجود"
@@ -6629,10 +6621,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "تاریخ در دسترس برای استفاده الزامی است"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "مقدار موجود {0} است، شما به {1} نیاز دارید"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "موجود {0}"
@@ -6641,8 +6629,8 @@ msgstr "موجود {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "تاریخ در دسترس برای استفاده باید پس از تاریخ خرید باشد"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "میانگین سن"
@@ -6666,7 +6654,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "میانگین نرخ"
@@ -6690,7 +6680,7 @@ msgid "Avg Rate"
msgstr "میانگین نرخ"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "میانگین نرخ (تراز موجودی)"
@@ -6748,7 +6738,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6771,7 +6761,7 @@ msgstr "BOM"
msgid "BOM 1"
msgstr "BOM 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} و BOM 2 {1} نباید یکسان باشند"
@@ -6843,11 +6833,6 @@ msgstr "مورد انفجار BOM"
msgid "BOM ID"
msgstr "شناسه BOM"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "اطلاعات BOM"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7001,7 +6986,7 @@ msgstr "مورد وب سایت BOM"
msgid "BOM Website Operation"
msgstr "عملیات وب سایت BOM"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7069,7 +7054,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "کسر خودکار مواد از انبار در جریان تولید"
@@ -7133,7 +7118,7 @@ msgstr "ترازبه ارز پایه"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "مقدار تراز"
@@ -7198,7 +7183,7 @@ msgstr "نوع تراز"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "ارزش تراز"
@@ -7354,8 +7339,8 @@ msgid "Bank Balance"
msgstr "تراز بانک"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "هزینه های بانکی"
@@ -7470,8 +7455,8 @@ msgstr "نوع ضمانت نامه بانکی"
msgid "Bank Name"
msgstr "نام بانک"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "حساب اضافه برداشت بانکی"
@@ -7644,11 +7629,11 @@ msgstr "بانکداری"
msgid "Barcode Type"
msgstr "نوع بارکد"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "بارکد {0} قبلاً در آیتم {1} استفاده شده است"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "بارکد {0} یک کد {1} معتبر نیست"
@@ -7805,7 +7790,7 @@ msgstr "نرخ پایه (بر اساس موجودی UOM)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7880,7 +7865,7 @@ msgstr "وضعیت انقضای آیتم دسته"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7969,13 +7954,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr "مقدار دسته"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7992,7 +7977,7 @@ msgstr "UOM دسته"
msgid "Batch and Serial No"
msgstr "شماره دسته و سریال"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "دسته ای برای آیتم {} ایجاد نشده است زیرا سری دسته ای ندارد."
@@ -8015,12 +8000,12 @@ msgstr "دسته {0} و انبار"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "دسته {0} در انبار {1} موجود نیست"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "دسته {0} مورد {1} منقضی شده است."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "دسته {0} مورد {1} غیرفعال است."
@@ -8075,7 +8060,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8084,7 +8069,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8098,11 +8083,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "صورتحساب مواد"
@@ -8203,7 +8190,7 @@ msgstr "جزئیات آدرس صورتحساب"
msgid "Billing Address Name"
msgstr "نام آدرس صورتحساب"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "آدرس صورتحساب به {0} تعلق ندارد"
@@ -8455,6 +8442,16 @@ msgstr "مسدود کردن فاکتور"
msgid "Block Supplier"
msgstr "بلاک کردن تامین کننده"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8551,7 +8548,7 @@ msgstr "رزرو شده"
msgid "Booked Fixed Asset"
msgstr "دارایی ثابت رزرو شده"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "رزروها تا پایان دوره {0} بسته شدهاند"
@@ -8810,8 +8807,8 @@ msgstr "ساختار درختی را بساز"
msgid "Buildable Qty"
msgstr "مقدار قابل ساخت"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "ساختمان ها"
@@ -8972,16 +8969,16 @@ msgstr "بهطور پیشفرض، نام تامینکننده مطاب
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "دور زدن بررسی محدودیت اعتباری در سفارش فروش"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "دور زدن بررسی اعتبار در سفارش فروش"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9029,8 +9026,8 @@ msgstr "یادداشت CRM"
msgid "CRM Settings"
msgstr "تنظیمات CRM"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "حساب «کارهای سرمایهای در دست اجرا»"
@@ -9285,7 +9282,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr "قابل تأیید توسط {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "نمیتوان دستور کار را بست. از آنجایی که کارت کارهای {0} در حالت در جریان تولید هستند."
@@ -9318,13 +9315,13 @@ msgstr "اگر بر اساس سند مالی گروه بندی شود، نمی
msgid "Can only make payment against unbilled {0}"
msgstr "فقط میتوانید با {0} پرداخت نشده انجام دهید"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "فقط در صورتی میتوان ردیف را ارجاع داد که نوع شارژ «بر مبلغ ردیف قبلی» یا «مجموع ردیف قبلی» باشد"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "نمیتوان روش ارزش گذاری را تغییر داد، زیرا تراکنشهایی در برابر برخی آیتمها وجود دارد که روش ارزش گذاری خاص خود را ندارند"
@@ -9366,7 +9363,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "نمیتوان زمان رسیدن را محاسبه کرد زیرا آدرس راننده جا افتاده است."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9374,9 +9371,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "نمیتوان ادغام کرد"
@@ -9404,7 +9401,7 @@ msgstr "نمیتوان {0} {1} را اصلاح کرد، لطفاً در عو
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "نمیتوان TDS را در یک ثبت در مقابل چندین طرف اعمال کرد"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "نمیتواند یک آیتم دارایی ثابت باشد زیرا دفتر موجودی ایجاد شده است."
@@ -9424,7 +9421,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "نمیتوان لغو کرد زیرا ثبت موجودی ارسال شده {0} وجود دارد"
@@ -9444,15 +9441,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "نمیتوان تراکنش را برای دستور کار تکمیل شده لغو کرد."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "پس از تراکنش موجودی نمیتوان ویژگیها را تغییر داد. یک آیتم جدید بسازید و موجودی را به آیتم جدید منتقل کنید"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "نمیتوان نوع سند مرجع را تغییر داد."
@@ -9460,11 +9457,11 @@ msgstr "نمیتوان نوع سند مرجع را تغییر داد."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "نمیتوان تاریخ توقف سرویس را برای مورد در ردیف {0} تغییر داد"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "نمیتوان ارز پیشفرض شرکت را تغییر داد، زیرا تراکنشهای موجود وجود دارد. برای تغییر واحد پول پیشفرض، تراکنشها باید لغو شوند."
@@ -9480,11 +9477,11 @@ msgstr "نمیتوان مرکز هزینه را به دفتر تبدیل کر
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "نمیتوان تسک را به غیر گروهی تبدیل کرد زیرا تسکها فرزند زیر وجود دارد: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "نمیتوان به گروه تبدیل کرد زیرا نوع حساب انتخاب شده است."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "نمیتوان در گروه پنهان کرد زیرا نوع حساب انتخاب شده است."
@@ -9492,7 +9489,7 @@ msgstr "نمیتوان در گروه پنهان کرد زیرا نوع حسا
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "نمیتوان ورودی های رزرو موجودی را برای رسیدهای خرید با تاریخ آینده ایجاد کرد."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "نمیتوان لیست انتخاب برای سفارش فروش {0} ایجاد کرد زیرا موجودی رزرو کرده است. لطفاً برای ایجاد لیست انتخاب، موجودی را لغو رزرو کنید."
@@ -9518,7 +9515,7 @@ msgstr "نمیتوان به عنوان از دست رفته علام کرد،
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "وقتی دسته برای «ارزشگذاری» یا «ارزشگذاری و کل» است، نمیتوان کسر کرد"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9526,12 +9523,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "نمیتوان شماره سریال {0} را حذف کرد، زیرا در تراکنشهای موجودی استفاده میشود"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "نمیتوان DocType هسته محافظتشده: {0} را حذف کرد"
@@ -9543,7 +9540,7 @@ msgstr "نمیتوان DocType مجازی: {0} را حذف کرد. DocTypeه
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9551,20 +9548,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "نمیتوان بیش از مقدار تولید شده دمونتاژ کرد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "نمیتوان از تحویل با شماره سریال اطمینان حاصل کرد زیرا آیتم {0} با و بدون اطمینان از تحویل با شماره سریال اضافه شده است."
@@ -9580,7 +9577,7 @@ msgstr "نمیتوان آیتم یا انباری را با این بارکد
msgid "Cannot find Item with this Barcode"
msgstr "نمیتوان آیتمی را با این بارکد پیدا کرد"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "نمیتوان یک انبار پیشفرض برای آیتم {0} پیدا کرد. لطفاً یکی را در مدیریت آیتم یا در تنظیمات موجودی تنظیم کنید."
@@ -9588,15 +9585,15 @@ msgstr "نمیتوان یک انبار پیشفرض برای آیتم {0}
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "نمیتوان مورد بیشتری برای {0} تولید کرد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "نمیتوان بیش از {0} مورد برای {1} تولید کرد"
@@ -9604,12 +9601,12 @@ msgstr "نمیتوان بیش از {0} مورد برای {1} تولید کر
msgid "Cannot receive from customer against negative outstanding"
msgstr "نمیتوان از مشتری در برابر معوقات منفی دریافت کرد"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "نمیتوان شماره ردیف را بزرگتر یا مساوی با شماره ردیف فعلی برای این نوع شارژ ارجاع داد"
@@ -9622,14 +9619,14 @@ msgstr "نمیتوان توکن پیوند را برای بهروزرسا
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "توکن پیوند بازیابی نمیشود. برای اطلاعات بیشتر Log خطا را بررسی کنید"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9643,7 +9640,7 @@ msgstr "نمیتوان آن را به عنوان گمشده تنظیم کرد
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "نمیتوان مجوز را بر اساس تخفیف برای {0} تنظیم کرد"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "نمیتوان چندین مورد پیشفرض را برای یک شرکت تنظیم کرد."
@@ -9651,11 +9648,11 @@ msgstr "نمیتوان چندین مورد پیشفرض را برای یک
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "نمیتوان مقدار کمتر از مقدار تحویلی را تنظیم کرد."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "نمیتوان مقدار کمتر از مقدار دریافتی را تنظیم کرد."
@@ -9667,7 +9664,7 @@ msgstr "نمیتوان فیلد {0} را برای کپی در گونه
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "نمیتوان حذف را شروع کرد. حذف دیگری {0} در حال حاضر در صف/در حال اجرا است. لطفاً منتظر بمانید تا کامل شود."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9700,7 +9697,7 @@ msgstr "ظرفیت (واحد اندازهگیری موجودی)"
msgid "Capacity Planning"
msgstr "برنامهریزی ظرفیت"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "خطای برنامهریزی ظرفیت، زمان شروع برنامهریزی شده نمیتواند با زمان پایان یکسان باشد"
@@ -9719,13 +9716,13 @@ msgstr "ظرفیت بر حسب واحد اندازهگیری موجودی"
msgid "Capacity must be greater than 0"
msgstr "ظرفیت باید بیشتر از 0 باشد"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "تجهیزات سرمایه ای"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "موجودی انتشار نیافته شرکت تضامنی"
@@ -9942,7 +9939,7 @@ msgstr "جزئیات دسته"
msgid "Category-wise Asset Value"
msgstr "ارزش دارایی بر حسب دسته"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "احتیاط"
@@ -10047,7 +10044,7 @@ msgstr "تاریخ انتشار را تغییر دهید"
msgid "Change in Stock Value"
msgstr "تغییر در ارزش موجودی"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "نوع حساب را به دریافتنی تغییر دهید یا حساب دیگری را انتخاب کنید."
@@ -10057,7 +10054,7 @@ msgstr "نوع حساب را به دریافتنی تغییر دهید یا حس
msgid "Change this date manually to setup the next synchronization start date"
msgstr "برای تنظیم تاریخ شروع همگام سازی بعدی، این تاریخ را به صورت دستی تغییر دهید"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "نام مشتری به \"{}\" به عنوان \"{}\" تغییر کرده است."
@@ -10065,7 +10062,7 @@ msgstr "نام مشتری به \"{}\" به عنوان \"{}\" تغییر کرده
msgid "Changes in {0}"
msgstr "تغییرات در {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "تغییر گروه مشتری برای مشتری انتخابی مجاز نیست."
@@ -10080,7 +10077,7 @@ msgid "Channel Partner"
msgstr "شریک کانال"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "هزینه از نوع \"واقعی\" در ردیف {0} نمیتواند در نرخ مورد یا مبلغ پرداختی لحاظ شود"
@@ -10134,7 +10131,7 @@ msgstr "درخت نمودار"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10277,7 +10274,7 @@ msgstr "عرض چک"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "تاریخ چک / مرجع"
@@ -10335,7 +10332,7 @@ msgstr "نام سند فرزند"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10387,6 +10384,11 @@ msgstr "طبقهبندی مشتریان بر اساس منطقه"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10529,11 +10531,11 @@ msgstr "سند بسته"
msgid "Closed Documents"
msgstr "اسناد بسته"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "دستور کار بسته را نمیتوان متوقف کرد یا دوباره باز کرد"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "سفارش بسته قابل لغو نیست. برای لغو بسته را باز کنید."
@@ -10785,11 +10787,17 @@ msgstr "نرخ کمیسیون %"
msgid "Commission Rate (%)"
msgstr "نرخ کمیسیون (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "کمیسیون فروش"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10820,7 +10828,7 @@ msgstr "فاصله زمانی متوسط ارتباطی"
msgid "Communication Medium Type"
msgstr "نوع رسانه ارتباطی"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "چاپ آیتم فشرده"
@@ -11219,8 +11227,8 @@ msgstr "شرکت ها"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11273,7 +11281,7 @@ msgstr "شرکت ها"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11362,18 +11370,20 @@ msgstr "نمایش آدرس شرکت"
msgid "Company Address Name"
msgstr "نام آدرس شرکت"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "حساب بانکی شرکت"
@@ -11469,7 +11479,7 @@ msgstr "شرکت و تاریخ ارسال الزامی است"
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "ارزهای شرکت هر دو شرکت باید برای معاملات بین شرکتی مطابقت داشته باشد."
@@ -11504,7 +11514,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "نام شرکت یکسان نیست"
@@ -11543,12 +11553,12 @@ msgstr "شرکتی که تامین کننده داخلی آن را نمایند
msgid "Company {0} added multiple times"
msgstr "شرکت {0} چندین بار اضافه شد"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "شرکت {0} وجود ندارد"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "شرکت {0} بیش از یک بار اضافه شده است"
@@ -11590,7 +11600,7 @@ msgstr "نام رقیب"
msgid "Competitors"
msgstr "رقبا"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "تکمیل کار"
@@ -11637,12 +11647,12 @@ msgstr ""
msgid "Completed Qty"
msgstr "مقدار تکمیل شده"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "تعداد تکمیل شده نمیتواند بیشتر از «تعداد تا تولید» باشد"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "مقدار تکمیل شده"
@@ -11831,7 +11841,7 @@ msgstr "در نظر گرفتن ابعاد حسابداری"
msgid "Consider Minimum Order Qty"
msgstr "در نظر گرفتن حداقل تعداد سفارش"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "در نظر گرفتن اتلاف فرآیند"
@@ -12025,7 +12035,7 @@ msgstr "هزینه آیتمهای مصرفی"
msgid "Consumed Qty"
msgstr "مقدار مصرف شده"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "تعداد مصرف شده نمیتواند بیشتر از مقدار رزرو شده برای آیتم {0} باشد"
@@ -12054,7 +12064,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr "ارزش کل موجودی مصرف شده"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12182,7 +12192,7 @@ msgstr "شماره تماس"
msgid "Contact Person"
msgstr "شخص تماس"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "شخص مخاطب به {0} تعلق ندارد"
@@ -12308,6 +12318,11 @@ msgstr "کنترل تراکنشهای تاریخی موجودی"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12368,7 +12383,7 @@ msgstr "ضریب تبدیل"
msgid "Conversion Rate"
msgstr "نرخ تبدیل"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "ضریب تبدیل برای واحد اندازهگیری پیشفرض باید 1 در ردیف {0} باشد"
@@ -12376,15 +12391,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "نرخ تبدیل نمیتواند 0 باشد"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "اگر واحد پول سند با واحد پول شرکت یکسان باشد، نرخ تبدیل باید 1.00 باشد"
@@ -12461,13 +12476,13 @@ msgstr "اصلاحی"
msgid "Corrective Action"
msgstr "اقدام اصلاحی"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "کارت کار اصلاحی"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "عملیات اصلاحی"
@@ -12634,7 +12649,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12767,7 +12782,7 @@ msgstr "مرکز هزینه {} یک مرکز هزینه گروهی است و م
msgid "Cost Center: {0} does not exist"
msgstr "مرکز هزینه: {0} وجود ندارد"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "مراکز هزینه"
@@ -12810,17 +12825,13 @@ msgstr "هزینه آیتمهای تحویل شده"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "بهای تمام شده کالای فروش رفته"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "حساب بهای تمام شده کالای فروش رفته در جدول آیتمها"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "هزینه آیتمهای حواله شده"
@@ -12900,7 +12911,7 @@ msgstr "دادههای نسخه ی نمایشی حذف نشد"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "به دلیل عدم وجود فیلد(های) الزامی زیر، امکان ایجاد خودکار مشتری وجود ندارد:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "یادداشت بستانکاری بهطور خودکار ایجاد نشد، لطفاً علامت «صدور یادداشت بستانکاری» را بردارید و دوباره ارسال کنید"
@@ -13089,7 +13100,7 @@ msgstr "ایجاد فاکتورها"
msgid "Create Item"
msgstr "ایجاد آیتم"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "ایجاد کارت کار"
@@ -13121,7 +13132,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "ایجاد ثبتهای دفتر برای تغییر مبلغ"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "ایجاد لینک"
@@ -13188,7 +13199,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr "ایجاد درخواست پرداخت"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "ایجاد لیست انتخاب"
@@ -13333,7 +13344,7 @@ msgstr "ایجاد تسک"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "ایجاد الگوی مالیاتی"
@@ -13371,12 +13382,12 @@ msgstr "ایجاد مجوز کاربر"
msgid "Create Users"
msgstr "ایجاد کاربران"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "ایجاد گونه"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "ایجاد گونهها"
@@ -13407,12 +13418,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "ایجاد یک گونه با تصویر الگو."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "یک تراکنش موجودی ورودی برای آیتم ایجاد کنید."
@@ -13446,7 +13457,7 @@ msgstr "{0} {1} ایجاد شود؟"
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "ایجاد {0} کارت امتیازی برای {1} بین:"
@@ -13479,7 +13490,7 @@ msgstr "ایجاد یادداشت تحویل ..."
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "ایجاد ابعاد..."
@@ -13674,7 +13685,7 @@ msgstr "روزهای اعتباری"
msgid "Credit Limit"
msgstr "محدودیت اعتبار"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "از حد اعتبار عبور کرد"
@@ -13684,12 +13695,6 @@ msgstr "از حد اعتبار عبور کرد"
msgid "Credit Limit Settings"
msgstr "تنظیمات محدودیت اعتباری"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "محدودیت اعتبار و شرایط پرداخت"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "محدودیت اعتبار:"
@@ -13721,7 +13726,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13749,7 +13754,7 @@ msgstr "یادداشت بستانکاری صادر شد"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "یادداشت بستانکاری {0} به طور خودکار ایجاد شده است"
@@ -13757,7 +13762,7 @@ msgstr "یادداشت بستانکاری {0} به طور خودکار ایجا
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "بستانکار به"
@@ -13766,20 +13771,20 @@ msgstr "بستانکار به"
msgid "Credit in Company Currency"
msgstr "بستانکار به ارز شرکت"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "محدودیت اعتبار برای مشتری {0} ({1}/{2}) رد شده است"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "محدودیت اعتبار از قبل برای شرکت تعریف شده است {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "به سقف اعتبار مشتری {0} رسیده است"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13787,8 +13792,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "بستانکاران"
@@ -13958,7 +13963,7 @@ msgstr "تبدیل ارز باید برای خرید یا فروش قابل اج
msgid "Currency and Price List"
msgstr "ارز و لیست قیمت"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "پس از ثبت نام با استفاده از ارزهای دیگر، ارز را نمیتوان تغییر داد"
@@ -13968,7 +13973,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "واحد پول برای {0} باید {1} باشد"
@@ -14051,8 +14056,8 @@ msgstr "تاریخ شروع فاکتور فعلی"
msgid "Current Level"
msgstr "سطح فعلی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "بدهی های جاری"
@@ -14119,6 +14124,11 @@ msgstr "موجودی جاری"
msgid "Current Valuation Rate"
msgstr "نرخ ارزشگذاری فعلی"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "منحنی ها"
@@ -14214,7 +14224,6 @@ msgstr "جداکنندههای سفارشی"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14321,7 +14330,6 @@ msgstr "جداکنندههای سفارشی"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14410,8 +14418,8 @@ msgstr "آدرس مشتری"
msgid "Customer Addresses And Contacts"
msgstr "آدرسها و اطلاعات تماس مشتری"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "پیشپرداختهای مشتری"
@@ -14425,7 +14433,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14508,6 +14516,7 @@ msgstr "بازخورد مشتری"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14530,7 +14539,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14547,6 +14556,7 @@ msgstr "بازخورد مشتری"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14590,7 +14600,7 @@ msgstr "آیتم مشتری"
msgid "Customer Items"
msgstr "آیتمهای مشتری"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "LPO مشتری"
@@ -14642,7 +14652,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14748,7 +14758,7 @@ msgstr "تامین شده توسط مشتری"
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "خدمات مشتری"
@@ -14805,9 +14815,9 @@ msgstr "مشتری یا مورد"
msgid "Customer required for 'Customerwise Discount'"
msgstr "مشتری برای \"تخفیف از نظر مشتری\" مورد نیاز است"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "مشتری {0} به پروژه {1} تعلق ندارد"
@@ -14919,7 +14929,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "خلاصه پروژه روزانه برای {0}"
@@ -15010,7 +15020,7 @@ msgstr "تاریخ تولد نمیتواند بزرگتر از امروز ب
msgid "Date of Commencement"
msgstr "تاریخ شروع"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "تاریخ شروع باید بزرگتر از تاریخ ثبت باشد"
@@ -15236,7 +15246,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15264,13 +15274,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "بدهی به"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "بدهی به مورد نیاز است"
@@ -15398,8 +15408,7 @@ msgstr "حساب پیشفرض"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15425,14 +15434,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "پیشفرض پیشفرض حساب دریافت شده"
@@ -15447,19 +15456,19 @@ msgstr ""
msgid "Default BOM"
msgstr "BOM پیشفرض"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "BOM پیشفرض ({0}) باید برای این مورد یا الگوی آن فعال باشد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "BOM پیشفرض برای {0} یافت نشد"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "BOM پیشفرض برای آیتم کالای تمام شده {0} یافت نشد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "BOM پیشفرض برای آیتم {0} و پروژه {1} یافت نشد"
@@ -15512,9 +15521,7 @@ msgid "Default Company"
msgstr "شرکت پیشفرض"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "حساب بانکی پیشفرض شرکت"
@@ -15630,6 +15637,16 @@ msgstr "گروه آیتم پیشفرض"
msgid "Default Item Manufacturer"
msgstr "تولید کننده پیشفرض آیتم"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15665,23 +15682,19 @@ msgid "Default Payment Request Message"
msgstr "پیام درخواست پرداخت پیشفرض"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "الگوی پیشفرض شرایط پرداخت"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15804,15 +15817,15 @@ msgstr "منطقه پیشفرض"
msgid "Default Unit of Measure"
msgstr "واحد اندازهگیری پیشفرض"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "واحد اندازهگیری پیشفرض برای مورد {0} را نمیتوان مستقیماً تغییر داد زیرا قبلاً تراکنش(هایی) را با UOM دیگری انجام داده اید. شما باید اسناد پیوند داده شده را لغو کنید یا یک مورد جدید ایجاد کنید."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "واحد اندازهگیری پیشفرض برای مورد {0} را نمیتوان مستقیماً تغییر داد زیرا قبلاً تراکنش(هایی) را با UOM دیگری انجام داده اید. برای استفاده از یک UOM پیشفرض متفاوت، باید یک آیتم جدید ایجاد کنید."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "واحد اندازهگیری پیشفرض برای گونه «{0}» باید مانند الگوی «{1}» باشد"
@@ -15864,7 +15877,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "تنظیمات پیشفرض برای تراکنشهای مربوط به موجودی شما"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "الگوهای مالیاتی پیشفرض برای فروش، خرید و آیتمها ایجاد میشود."
@@ -15955,6 +15968,12 @@ msgstr "تعریف نوع پروژه"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16037,12 +16056,12 @@ msgstr "سرنخ ها و آدرس ها را حذف کنید"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "حذف تراکنشها"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "تمام معاملات این شرکت را حذف کنید"
@@ -16063,8 +16082,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "حذف در حال انجام است!"
@@ -16175,11 +16194,11 @@ msgstr "مقدار تحویل داده شده"
msgid "Delivered Qty (in Stock UOM)"
msgstr "مقدار تحویل داده شده (بر حسب واحد اندازهگیری موجودی)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16260,7 +16279,7 @@ msgstr "مدیر تحویل"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16320,11 +16339,11 @@ msgstr "کالای بسته بندی شده یادداشت تحویل"
msgid "Delivery Note Trends"
msgstr "روند یادداشت تحویل"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "یادداشت تحویل {0} ارسال نشده است"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "یادداشت های تحویل"
@@ -16410,10 +16429,6 @@ msgstr "انبار تحویل"
msgid "Delivery to"
msgstr "تحویل به"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "انبار تحویل برای آیتم موجودی {0} مورد نیاز است"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16533,8 +16548,8 @@ msgstr "مبلغ مستهلک شده"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16627,7 +16642,7 @@ msgstr "گزینههای استهلاک"
msgid "Depreciation Posting Date"
msgstr "تاریخ ثبت استهلاک"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16785,15 +16800,15 @@ msgstr "تفاوت (Dr - Cr)"
msgid "Difference Account"
msgstr "حساب تفاوت"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "حساب تفاوت باید یک حساب از نوع دارایی/بدهی باشد، زیرا این تطبیق موجودی یک ثبت افتتاحیه است"
@@ -16905,15 +16920,15 @@ msgstr "ابعاد"
msgid "Direct Expense"
msgstr "هزینه مستقیم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "هزینه های مستقیم"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "درآمد مستقیم"
@@ -16994,6 +17009,11 @@ msgstr "غیرفعال کردن کل گرد شده"
msgid "Disable Serial No And Batch Selector"
msgstr "غیرفعال کردن انتخابگر شماره سریال و دسته"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr "غیرفعال کردن «موجودی تحویلشده اما صورتحسابنشده» در برگشت فروش"
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17030,11 +17050,11 @@ msgstr "از انبار غیرفعال شده {0} نمیتوان برای ا
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "قوانین قیمت گذاری غیرفعال شده است زیرا این {} یک انتقال داخلی است"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "مالیات غیرفعال شامل قیمتها میشود زیرا این {} یک انتقال داخلی است"
@@ -17050,7 +17070,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17058,15 +17078,15 @@ msgstr "واکشی خودکار مقدار موجود را غیرفعال می
msgid "Disassemble"
msgstr "دمونتاژ (Disassemble)"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "دستور دمونتاژ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17353,7 +17373,7 @@ msgstr ""
msgid "Dislikes"
msgstr "دوست ندارد"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "ارسال"
@@ -17434,7 +17454,7 @@ msgstr "نام نمایشی"
msgid "Disposal Date"
msgstr "تاریخ دفع"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17548,8 +17568,8 @@ msgstr "نام توزیع"
msgid "Distributor"
msgstr "پخش کننده"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "سود سهام پرداخت شده"
@@ -17611,7 +17631,7 @@ msgstr "هیچ نمادی مانند $ و غیره را در کنار ارزها
msgid "Do not update variants on save"
msgstr "گونهها را در ذخیره به روز نکنید"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "آیا واقعاً میخواهید این دارایی اسقاط شده را بازیابی کنید؟"
@@ -17635,7 +17655,7 @@ msgstr "آیا میخواهید از طریق ایمیل به همه مشتر
msgid "Do you want to submit the material request"
msgstr "آیا میخواهید درخواست مواد را ارسال کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "آیا میخواهید ثبت موجودی را ارسال کنید؟"
@@ -17702,11 +17722,11 @@ msgstr ""
msgid "Document Type "
msgstr "نوع سند "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "نوع سند قبلاً به عنوان بعد استفاده شده است"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "مستندات"
@@ -17869,12 +17889,6 @@ msgstr "دستهبندی گواهینامه رانندگی"
msgid "Driving License Category"
msgstr "دسته گواهینامه رانندگی"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17895,12 +17909,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "تاریخ سررسید نمیتواند پس از {0} باشد"
@@ -18059,8 +18067,8 @@ msgstr "مدت زمان (بر حسب روز)"
msgid "Duration in Days"
msgstr "مدت زمان بر حسب روز"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "عوارض و مالیات"
@@ -18143,7 +18151,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "هر تراکنش"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "اولین"
@@ -18257,6 +18265,10 @@ msgstr "مقدار هدف یا مبلغ هدف اجباری است"
msgid "Either target qty or target amount is mandatory."
msgstr "مقدار هدف یا مبلغ هدف اجباری است."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "زمان سپری شده"
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18276,8 +18288,8 @@ msgstr "برق"
msgid "Electricity down"
msgstr "برق قطع شد"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "تجهیزات الکترونیکی"
@@ -18481,8 +18493,8 @@ msgstr "پیشپرداخت کارمند"
msgid "Employee Advances"
msgstr "پیشپرداخت های کارمند"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "تعهدات مزایای کارکنان"
@@ -18565,7 +18577,7 @@ msgstr "کارمند {0} از قبل یک کاربر لینک شده دارد"
msgid "Employee {0} does not belong to the company {1}"
msgstr "کارمند {0} متعلق به شرکت {1} نیست"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "کارمند {0} در حال حاضر روی ایستگاه کاری دیگری کار میکند. لطفا کارمند دیگری را تعیین کنید."
@@ -18581,7 +18593,7 @@ msgstr "کارمندان"
msgid "Empty"
msgstr "خالی"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18612,7 +18624,7 @@ msgstr "زمانبندی قرار را فعال کنید"
msgid "Enable Auto Email"
msgstr "ایمیل خودکار را فعال کنید"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "سفارش مجدد خودکار را فعال کنید"
@@ -18778,12 +18790,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18912,8 +18918,8 @@ msgstr "تاریخ پایان نمیتواند قبل از تاریخ شرو
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19012,8 +19018,8 @@ msgstr "ورود دستی"
msgid "Enter Serial Nos"
msgstr "شماره های سریال را وارد کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "مقدار را وارد کنید"
@@ -19038,7 +19044,7 @@ msgstr "یک نام برای این لیست تعطیلات وارد کنید."
msgid "Enter amount to be redeemed."
msgstr "مبلغی را برای بازخرید وارد کنید."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "یک کد آیتم را وارد کنید، نام با کلیک کردن در داخل قسمت نام مورد، به طور خودکار مانند کد آیتم پر میشود."
@@ -19050,7 +19056,7 @@ msgstr "ایمیل مشتری را وارد کنید"
msgid "Enter customer's phone number"
msgstr "شماره تلفن مشتری را وارد کنید"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "تاریخ اسقاط دارایی را وارد کنید"
@@ -19093,7 +19099,7 @@ msgstr "قبل از ارسال نام ذینفع را وارد کنید."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "قبل از ارسال نام بانک یا موسسه وام دهنده را وارد کنید."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "واحدهای موجودی افتتاحی را وارد کنید."
@@ -19101,7 +19107,7 @@ msgstr "واحدهای موجودی افتتاحی را وارد کنید."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19113,8 +19119,8 @@ msgstr "مبلغ {0} را وارد کنید."
msgid "Entertainment & Leisure"
msgstr "سرگرمی و تفریح"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "مخارج تفریحات"
@@ -19138,8 +19144,8 @@ msgstr "نوع ثبت"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19200,7 +19206,7 @@ msgstr "خطا هنگام ارسال ثبتهای استهلاک"
msgid "Error while processing deferred accounting for {0}"
msgstr "خطا هنگام پردازش حسابداری معوق برای {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "خطا هنگام ارسال مجدد ارزشگذاری آیتم"
@@ -19210,7 +19216,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "خطا: {0} فیلد اجباری است"
@@ -19256,7 +19262,7 @@ msgstr "از محل کارخانه"
msgid "Example URL"
msgstr "URL مثال"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "نمونه ای از یک سند پیوندی: {0}"
@@ -19275,7 +19281,7 @@ msgstr "مثال: ABCD.#####. اگر سری تنظیم شده باشد و Batch
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "مثال: شماره سریال {0} در {1} رزرو شده است."
@@ -19285,7 +19291,7 @@ msgstr "مثال: شماره سریال {0} در {1} رزرو شده است."
msgid "Exception Budget Approver Role"
msgstr "نقش تصویب کننده بودجه استثنایی"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19293,7 +19299,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "مواد اضافی مصرف شده"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "انتقال مازاد"
@@ -19324,17 +19330,17 @@ msgstr "سود یا ضرر تبدیل"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "سود/زیان تبدیل"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "مبلغ سود/زیان تبدیل از طریق {0} رزرو شده است"
@@ -19473,7 +19479,7 @@ msgstr "دستیار اجرایی"
msgid "Executive Search"
msgstr "جستجوی اجرایی"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "لوازم معاف"
@@ -19560,7 +19566,7 @@ msgstr "تاریخ بسته شدن مورد انتظار"
msgid "Expected Delivery Date"
msgstr "تاریخ تحویل قابل انتظار"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "تاریخ تحویل مورد انتظار باید پس از تاریخ سفارش فروش باشد"
@@ -19644,7 +19650,7 @@ msgstr "ارزش مورد انتظار پس از عمر مفید"
msgid "Expense"
msgstr "هزینه"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "حساب هزینه / تفاوت ({0}) باید یک حساب \"سود یا زیان\" باشد"
@@ -19722,23 +19728,23 @@ msgstr "حساب هزینه برای آیتم {0} اجباری است"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "مخارج"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "هزینههای شامل در ارزیابی دارایی"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "هزینههای شامل در ارزیابی"
@@ -19817,7 +19823,7 @@ msgstr "سابقه کار خارجی"
msgid "Extra Consumed Qty"
msgstr "مقدار مصرف اضافی"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "مقدار کارت کار اضافی"
@@ -19954,7 +19960,7 @@ msgstr "راهاندازی شرکت ناموفق بود"
msgid "Failed to setup defaults"
msgstr "تنظیم پیشفرضها انجام نشد"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "تنظیم پیشفرضهای کشور {0} انجام نشد. لطفا با پشتیبانی تماس بگیرید."
@@ -20072,6 +20078,11 @@ msgstr "واکشی مقدار از"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "واکشی BOM گسترده شده (شامل زیر مونتاژ ها)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "فقط {0} شماره سریال در دسترس واکشی شد."
@@ -20109,21 +20120,29 @@ msgstr "نگاشت فیلد"
msgid "Field in Bank Transaction"
msgstr "فیلد در معاملات بانکی"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "تداخل نام فیلد"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "فیلدها فقط در زمان ایجاد کپی میشوند."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "فایل یافت نشد"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "فایلی در سرور یافت نشد"
@@ -20331,9 +20350,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "پایان"
@@ -20390,15 +20409,15 @@ msgstr "تعداد آیتم کالای تمام شده"
msgid "Finished Good Item Quantity"
msgstr "تعداد آیتم کالای تمام شده"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "آیتم کالای تمام شده برای آیتم سرویس مشخص نشده است {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "مقدار آیتم کالای تمام شده {0} تعداد نمیتواند صفر باشد"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "آیتم کالای تمام شده {0} باید یک آیتم قرارداد فرعی باشد"
@@ -20444,7 +20463,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "کالای تمام شده {0} باید یک آیتم قرارداد فرعی باشد."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "کالاهای تمام شده"
@@ -20485,7 +20504,7 @@ msgstr "انبار کالاهای تمام شده"
msgid "Finished Goods based Operating Cost"
msgstr "هزینه عملیاتی بر اساس کالاهای تمام شده"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "آیتم تمام شده {0} با دستور کار {1} مطابقت ندارد"
@@ -20626,6 +20645,7 @@ msgstr "ثابت"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "دارایی ثابت"
@@ -20644,7 +20664,7 @@ msgstr "حساب دارایی ثابت"
msgid "Fixed Asset Defaults"
msgstr "پیشفرض داراییهای ثابت"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "آیتم دارایی ثابت باید یک آیتم غیر موجودی باشد."
@@ -20663,8 +20683,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "آیتم دارایی ثابت {0} را نمیتوان در BOMها استفاده کرد."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "داراییهای ثابت"
@@ -20737,7 +20757,7 @@ msgstr "ماه های تقویم را دنبال کنید"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "درخواستهای مواد زیر بهطور خودکار براساس سطح سفارش مجدد آیتم مطرح شدهاند"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "فیلدهای زیر برای ایجاد آدرس اجباری هستند:"
@@ -20794,7 +20814,7 @@ msgstr "برای شرکت"
msgid "For Item"
msgstr "برای آیتم"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20804,7 +20824,7 @@ msgid "For Job Card"
msgstr "برای کارت کار"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "برای عملیات"
@@ -20825,17 +20845,13 @@ msgstr "برای لیست قیمت"
msgid "For Production"
msgstr "برای تولید"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "برای مقدار (تعداد تولید شده) اجباری است"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "برای مواد اولیه"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20863,11 +20879,11 @@ msgstr "برای انبار"
msgid "For Work Order"
msgstr "برای دستور کار"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "برای یک آیتم {0}، مقدار باید عدد منفی باشد"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "برای یک آیتم {0}، مقدار باید عدد مثبت باشد"
@@ -20905,7 +20921,7 @@ msgstr "برای تامین کننده فردی"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "برای مورد {0}، نرخ باید یک عدد مثبت باشد. برای مجاز کردن نرخهای منفی، {1} را در {2} فعال کنید"
@@ -20919,7 +20935,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20936,7 +20952,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "برای مقدار {0} نباید بیشتر از مقدار مجاز {1} باشد"
@@ -20945,12 +20961,12 @@ msgstr "برای مقدار {0} نباید بیشتر از مقدار مجاز {
msgid "For reference"
msgstr "برای مرجع"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "برای ردیف {0} در {1}. برای گنجاندن {2} در نرخ آیتم، ردیفهای {3} نیز باید گنجانده شوند"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "برای ردیف {0}: تعداد برنامهریزی شده را وارد کنید"
@@ -20969,7 +20985,7 @@ msgstr "برای شرط «اعمال قانون روی موارد دیگر» ف
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21016,11 +21032,6 @@ msgstr "پیش بینی"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "مقدار پیشبینی"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21066,7 +21077,7 @@ msgstr "پست های انجمن"
msgid "Forum URL"
msgstr "آدرس انجمن"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "مدرسه Frappe"
@@ -21111,8 +21122,8 @@ msgstr "آیتم رایگان در قانون قیمت گذاری تنظیم ن
msgid "Freeze Stocks Older Than (Days)"
msgstr "منجمد کردن موجودی قدیمی تر از (بر حسب روز)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "هزینه حمل و نقل و حمل و نقل"
@@ -21546,8 +21557,8 @@ msgstr "به طور کامل پرداخت شده"
msgid "Furlong"
msgstr "فرلانگ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "مبلمان و وسایل"
@@ -21564,13 +21575,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "مرجع پرداخت آینده"
@@ -21578,7 +21589,7 @@ msgstr "مرجع پرداخت آینده"
msgid "Future Payments"
msgstr "پرداختهای آینده"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "تاریخ آینده مجاز نیست"
@@ -21663,9 +21674,9 @@ msgstr "سود/باخت قبلا رزرو شده است"
msgid "Gain/Loss from Revaluation"
msgstr "سود/زیان ناشی از تجدید ارزیابی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "سود / زیان در دفع دارایی"
@@ -21838,7 +21849,7 @@ msgstr "دریافت تراز"
msgid "Get Current Stock"
msgstr "دریافت موجودی جاری"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "دریافت جزئیات گروه مشتری"
@@ -21896,7 +21907,7 @@ msgstr "دریافت مکان های آیتم"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21935,7 +21946,7 @@ msgstr "دریافت آیتمها از BOM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "دریافت آیتمها از درخواست های مواد در برابر این تامین کننده"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "دریافت آیتمها از باندل محصول"
@@ -22109,7 +22120,7 @@ msgstr "اهداف"
msgid "Goods"
msgstr "کالاها"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "کالاهای در حال حمل و نقل"
@@ -22118,7 +22129,7 @@ msgstr "کالاهای در حال حمل و نقل"
msgid "Goods Transferred"
msgstr "کالاهای منتقل شده"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "کالاها قبلاً در مقابل ثبت خروجی {0} دریافت شده اند"
@@ -22301,7 +22312,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "اعطاء کمیسیون"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "بیشتر از مبلغ"
@@ -22744,7 +22755,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "در اینجا گزارشهای خطا برای ثبتهای استهلاک ناموفق فوق الذکر آمده است: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "در اینجا گزینههایی برای ادامه وجود دارد:"
@@ -22772,7 +22783,7 @@ msgstr "در اینجا، تخفیفهای هفتگی شما بر اساس ا
msgid "Hertz"
msgstr "هرتز"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "سلام،"
@@ -22940,7 +22951,7 @@ msgstr "چند بار؟"
#. Description of the 'Quantity (Output Qty)' (Float) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "How many units of the final product this BOM makes."
-msgstr ""
+msgstr "این BOM چند واحد از کالای تمام شده تولید میکند."
#. Label of the project_update_frequency (Select) field in DocType 'Buying
#. Settings'
@@ -22971,7 +22982,7 @@ msgstr ""
msgid "Hrs"
msgstr "ساعت"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "منابع انسانی"
@@ -23139,6 +23150,12 @@ msgstr "اگر علامت زده شود، مبلغ مالیات به عنوان
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "اگر علامت زده شود، مبلغ مالیات به عنوان قبلاً در نرخ چاپ / مبلغ چاپ در نظر گرفته میشود"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "در صورت علامت زدن، دادههای نمایشی را برای شما ایجاد میکنیم تا سیستم را کاوش کنید. این دادههای نمایشی را میتوان بعداً پاک کرد."
@@ -23357,7 +23374,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "اگر نه، میتوانید این ثبت را لغو / ارسال کنید"
@@ -23383,13 +23400,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "اگر BOM منجر به مواد ضایعات شود، انبار ضایعات باید انتخاب شود."
@@ -23398,7 +23420,7 @@ msgstr "اگر BOM منجر به مواد ضایعات شود، انبار ضا
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "اگر حساب مسدود شود، ورود به کاربران محدود مجاز است."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "اگر آیتم به عنوان یک آیتم نرخ ارزشگذاری صفر در این ثبت تراکنش میشود، لطفاً \"نرخ ارزشگذاری صفر مجاز\" را در جدول آیتم {0} فعال کنید."
@@ -23408,7 +23430,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "اگر BOM انتخاب شده دارای عملیات ذکر شده در آن باشد، سیستم تمام عملیات را از BOM واکشی میکند، این مقادیر را میتوان تغییر داد."
@@ -23485,7 +23507,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "اگر بله، پس از این انبار برای نگهداری مواد رد شده استفاده میشود"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "اگر موجودی این آیتم را نگهداری میکنید، ERPNext برای هر تراکنش این آیتم یک ثبت در دفتر موجودی ایجاد میکند."
@@ -23499,7 +23521,7 @@ msgstr "اگر نیاز به تطبیق معاملات خاصی با یکدیگ
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "اگر همچنان میخواهید ادامه دهید، لطفاً کادر انتخاب «صرف نظر از آیتمهای زیر مونتاژ موجود» را غیرفعال کنید."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "اگر همچنان میخواهید ادامه دهید، لطفاً {0} را فعال کنید."
@@ -23583,7 +23605,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr "نادیده گرفتن مقدار سفارشهای موجود"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "نادیده گرفتن مقدار پیشبینی شده موجود"
@@ -23670,12 +23692,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "اختلال"
@@ -23833,7 +23855,7 @@ msgstr "در تولید"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "مقدار ورودی"
@@ -23957,7 +23979,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "در این بخش میتوانید پیشفرضهای مربوط به تراکنشهای کل شرکت را برای این آیتم تعریف کنید. به عنوان مثال. انبار پیشفرض، لیست قیمت پیشفرض، تامین کننده و غیره"
@@ -24188,8 +24210,8 @@ msgstr "شامل آیتمهای زیر مونتاژ ها"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24260,7 +24282,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24292,7 +24314,7 @@ msgstr "تعداد موجودی نادرست پس از تراکنش"
msgid "Incorrect Batch Consumed"
msgstr "دسته نادرست مصرف شده است"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24300,7 +24322,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr "شرکت نادرست"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24434,15 +24456,15 @@ msgstr "نشان میدهد که بسته بخشی از این تحویل ا
msgid "Indirect Expense"
msgstr "هزینه غیر مستقیم"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "هزینه های غیر مستقیم"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "درآمد غیر مستقیم"
@@ -24510,14 +24532,14 @@ msgstr "آغاز شده"
msgid "Inspected By"
msgstr "بازرسی توسط"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "بازرسی رد شد"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "بازرسی مورد نیاز است"
@@ -24534,8 +24556,8 @@ msgstr "بازرسی قبل از تحویل لازم است"
msgid "Inspection Required before Purchase"
msgstr "بازرسی قبل از خرید الزامی است"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "ارسال بازرسی"
@@ -24565,7 +24587,7 @@ msgstr "یادداشت نصب"
msgid "Installation Note Item"
msgstr "آیتم یادداشت نصب"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "یادداشت نصب {0} قبلا ارسال شده است"
@@ -24604,11 +24626,11 @@ msgstr "دستورالعمل"
msgid "Insufficient Capacity"
msgstr "ظرفیت ناکافی"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "مجوزهای ناکافی"
@@ -24616,13 +24638,12 @@ msgstr "مجوزهای ناکافی"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "موجودی ناکافی"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "موجودی ناکافی برای دسته"
@@ -24742,13 +24763,13 @@ msgstr "مرجع انتقال داخلی"
msgid "Interest"
msgstr "بهره"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24756,8 +24777,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr "بهره و/یا هزینه اخطار بدهی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24777,7 +24798,7 @@ msgstr "داخلی"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "مشتری داخلی برای شرکت {0} از قبل وجود دارد"
@@ -24785,7 +24806,7 @@ msgstr "مشتری داخلی برای شرکت {0} از قبل وجود دار
msgid "Internal Purchase Order"
msgstr "سفارش خرید داخلی"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "مرجع فروش داخلی یا تحویل موجود نیست."
@@ -24793,7 +24814,7 @@ msgstr "مرجع فروش داخلی یا تحویل موجود نیست."
msgid "Internal Sales Order"
msgstr "سفارش فروش داخلی"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "مرجع فروش داخلی وجود ندارد"
@@ -24824,7 +24845,7 @@ msgstr "تامین کننده داخلی برای شرکت {0} از قبل وج
msgid "Internal Transfer"
msgstr "انتقال داخلی"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "مرجع انتقال داخلی وجود ندارد"
@@ -24837,7 +24858,12 @@ msgstr "نقل و انتقالات داخلی"
msgid "Internal Work History"
msgstr "سابقه کار داخلی"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "نقل و انتقالات داخلی فقط با ارز پیشفرض شرکت قابل انجام است"
@@ -24853,12 +24879,12 @@ msgstr "بازه زمانی باید بین 1 تا 59 دقیقه باشد"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "حساب نامعتبر"
@@ -24879,7 +24905,7 @@ msgstr "مبلغ نامعتبر"
msgid "Invalid Attribute"
msgstr "ویژگی نامعتبر است"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "تاریخ تکرار خودکار نامعتبر است"
@@ -24892,7 +24918,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "بارکد نامعتبر هیچ موردی به این بارکد متصل نیست."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "سفارش کلی نامعتبر برای مشتری و آیتم انتخاب شده"
@@ -24908,21 +24934,21 @@ msgstr "رویه فرزند نامعتبر"
msgid "Invalid Company Field"
msgstr "فیلد شرکت نامعتبر"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "شرکت نامعتبر برای معاملات بین شرکتی."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "مرکز هزینه نامعتبر است"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "گروه مشتری نامعتبر"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "تاریخ تحویل نامعتبر است"
@@ -24960,7 +24986,7 @@ msgstr "گروه نامعتبر توسط"
msgid "Invalid Item"
msgstr "آیتم نامعتبر"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "پیشفرضهای آیتم نامعتبر"
@@ -24974,7 +25000,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "مبلغ خالص خرید نامعتبر است"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "ثبت افتتاحیه نامعتبر"
@@ -24982,11 +25008,11 @@ msgstr "ثبت افتتاحیه نامعتبر"
msgid "Invalid POS Invoices"
msgstr "فاکتورهای POS نامعتبر"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "حساب والد نامعتبر"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "شماره قطعه نامعتبر است"
@@ -25016,12 +25042,12 @@ msgstr "پیکربندی هدررفت فرآیند نامعتبر است"
msgid "Invalid Purchase Invoice"
msgstr "فاکتور خرید نامعتبر"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "تعداد نامعتبر است"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "مقدار نامعتبر"
@@ -25046,12 +25072,12 @@ msgstr "زمانبندی نامعتبر است"
msgid "Invalid Selling Price"
msgstr "قیمت فروش نامعتبر"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "باندل سریال و دسته نامعتبر"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "انبار منبع و هدف نامعتبر"
@@ -25076,7 +25102,7 @@ msgstr "مبلغ نامعتبر در ثبتهای حسابداری {} {} بر
msgid "Invalid condition expression"
msgstr "عبارت شرط نامعتبر است"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "URL فایل نامعتبر است"
@@ -25088,7 +25114,7 @@ msgstr "فرمول فیلتر نامعتبر است. لطفاً syntax را بر
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "دلیل از دست رفتن نامعتبر {0}، لطفاً یک دلیل از دست رفتن جدید ایجاد کنید"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "سری نامگذاری نامعتبر (. از دست رفته) برای {0}"
@@ -25114,8 +25140,8 @@ msgstr "پرسمان جستجوی نامعتبر"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "مقدار {0} برای {1} در برابر حساب {2} نامعتبر است"
@@ -25123,7 +25149,7 @@ msgstr "مقدار {0} برای {1} در برابر حساب {2} نامعتبر
msgid "Invalid {0}"
msgstr "{0} نامعتبر است"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} برای تراکنش بین شرکتی نامعتبر است."
@@ -25133,7 +25159,7 @@ msgid "Invalid {0}: {1}"
msgstr "نامعتبر {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "فهرست موجودی"
@@ -25182,8 +25208,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "بانکداری سرمایه گذاری"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "سرمایه گذاری ها"
@@ -25233,7 +25259,7 @@ msgstr "تخفیف فاکتور"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "جمع کل فاکتور"
@@ -25338,7 +25364,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25359,7 +25385,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25455,8 +25481,7 @@ msgstr "جایگزین است"
msgid "Is Billable"
msgstr "قابل پرداخت است"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "تماس صورتحساب است"
@@ -25898,8 +25923,7 @@ msgstr "قالب است"
msgid "Is Transporter"
msgstr "حمل کننده است"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "آدرس شرکت شماست"
@@ -26005,8 +26029,8 @@ msgstr "نوع مشکل"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "در مقابل فاکتور فروش موجود، یک یادداشت بدهکاری با مقدار 0 صادر کنید"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26036,11 +26060,11 @@ msgstr "مشکلات"
msgid "Issuing Date"
msgstr "تاریخ صادر شدن"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "ممکن است چند ساعت طول بکشد تا ارزش موجودی دقیق پس از ادغام اقلام قابل مشاهده باشد."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "برای واکشی جزئیات آیتم نیاز است."
@@ -26164,7 +26188,7 @@ msgstr "متن ایتالیک برای جمعهای جزئی یا یاددا
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26412,7 +26436,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26474,7 +26498,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26673,13 +26697,13 @@ msgstr "جزئیات آیتم"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26896,7 +26920,7 @@ msgstr "تولید کننده آیتم"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26936,10 +26960,10 @@ msgstr "تولید کننده آیتم"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26980,10 +27004,6 @@ msgstr "آیتم موجود نیست"
msgid "Item Price"
msgstr "قیمت آیتم"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26999,19 +27019,20 @@ msgstr "تنظیمات قیمت آیتم"
msgid "Item Price Stock"
msgstr "موجودی قیمت آیتم"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "قیمت آیتم برای {0} در لیست قیمت {1} اضافه شد"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "قیمت آیتم چندین بار بر اساس لیست قیمت، تامین کننده/مشتری، ارز، آیتم، دسته، UOM، مقدار و تاریخها ظاهر میشود."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "قیمت مورد برای {0} در لیست قیمت {1} به روز شد"
@@ -27198,11 +27219,11 @@ msgstr "جزئیات گونه آیتم"
msgid "Item Variant Settings"
msgstr "تنظیمات گونه آیتم"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "گونه آیتم {0} در حال حاضر با همان ویژگیها وجود دارد"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "گونههای آیتم به روز شد"
@@ -27303,11 +27324,11 @@ msgstr "آیتم و انبار"
msgid "Item and Warranty Details"
msgstr "جزئیات مورد و گارانتی"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "مورد ردیف {0} با درخواست مواد مطابقت ندارد"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "آیتم دارای گونه است."
@@ -27333,11 +27354,7 @@ msgstr "نام آیتم"
msgid "Item operation"
msgstr "عملیات آیتم"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "تعداد مورد را نمیتوان به روز کرد زیرا مواد اولیه قبلاً پردازش شده است."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "نرخ آیتم به صفر بهروزرسانی شده است زیرا نرخ ارزشگذاری مجاز صفر برای آیتم صفر {0} بررسی میشود"
@@ -27356,13 +27373,13 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "ارسال مجدد ارزیابی آیتم در حال انجام است. گزارش ممکن است ارزش گذاری اقلام نادرست را نشان دهد."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "گونه آیتم {0} با همان ویژگیها وجود دارد"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
-msgstr ""
+msgstr "آیتم با نام {0} در سفارش خرید یافت نشد"
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:99
msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}"
@@ -27377,7 +27394,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "آیتم {0} را نمیتوان بیش از {1} در مقابل سفارش کلی {2} سفارش داد."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "آیتم {0} وجود ندارد"
@@ -27389,7 +27406,7 @@ msgstr "مورد {0} در سیستم وجود ندارد یا منقضی شده
msgid "Item {0} does not exist."
msgstr "آیتم {0} وجود ندارد."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "آیتم {0} چندین بار وارد شده است."
@@ -27401,15 +27418,15 @@ msgstr "مورد {0} قبلاً برگردانده شده است"
msgid "Item {0} has been disabled"
msgstr "مورد {0} غیرفعال شده است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "مورد {0} در تاریخ {1} به پایان عمر خود رسیده است"
@@ -27421,15 +27438,15 @@ msgstr "مورد {0} نادیده گرفته شد زیرا کالای موجود
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "مورد {0} قبلاً در برابر سفارش فروش {1} رزرو شده/تحویل شده است."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "آیتم {0} لغو شده است"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "آیتم {0} غیرفعال است"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27437,7 +27454,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "آیتم {0} یک آیتم سریالی نیست"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "آیتم {0} یک آیتم موجودی نیست"
@@ -27445,11 +27462,11 @@ msgstr "آیتم {0} یک آیتم موجودی نیست"
msgid "Item {0} is not a subcontracted item"
msgstr "آیتم {0} یک آیتم قرارداد فرعی شده نیست"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr "آیتم {0} یک آیتم الگو نیست."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "آیتم {0} فعال نیست یا به پایان عمر رسیده است"
@@ -27465,7 +27482,7 @@ msgstr "مورد {0} باید یک کالای غیر موجودی باشد"
msgid "Item {0} must be a non-stock item"
msgstr "مورد {0} باید یک کالای غیر موجودی باشد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "مورد {0} در جدول \"مواد اولیه تامین شده\" در {1} {2} یافت نشد"
@@ -27473,7 +27490,7 @@ msgstr "مورد {0} در جدول \"مواد اولیه تامین شده\" د
msgid "Item {0} not found."
msgstr "آیتم {0} یافت نشد."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "مورد {0}: تعداد سفارششده {1} نمیتواند کمتر از حداقل تعداد سفارش {2} (تعریف شده در مورد) باشد."
@@ -27481,7 +27498,7 @@ msgstr "مورد {0}: تعداد سفارششده {1} نمیتواند ک
msgid "Item {0}: {1} qty produced. "
msgstr "آیتم {0}: مقدار {1} تولید شده است. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "آیتم {} وجود ندارد."
@@ -27527,7 +27544,7 @@ msgstr "ثبت فروش بر حسب آیتم"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27551,7 +27568,7 @@ msgstr "کاتالوگ آیتمها"
msgid "Items Filter"
msgstr "فیلتر آیتمها"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "آیتمهای مورد نیاز"
@@ -27575,11 +27592,11 @@ msgstr "آیتمهای مورد درخواست"
msgid "Items and Pricing"
msgstr "آیتمها و قیمت"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "آیتمها را نمیتوان به روز کرد زیرا سفارش پیمانکاری فرعی در برابر سفارش خرید {0} ایجاد شده است."
@@ -27591,7 +27608,7 @@ msgstr "آیتمها برای درخواست مواد اولیه"
msgid "Items not found."
msgstr "آیتمها یافت نشدند."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "نرخ آیتمها به صفر بهروزرسانی شده است زیرا نرخ ارزشگذاری مجاز صفر برای آیتمهای زیر بررسی میشود: {0}"
@@ -27601,7 +27618,7 @@ msgstr "نرخ آیتمها به صفر بهروزرسانی شده است
msgid "Items to Be Repost"
msgstr "مواردی که باید بازنشر شوند"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "آیتم برای تولید برای دریافت مواد اولیه مرتبط با آن مورد نیاز است."
@@ -27666,9 +27683,9 @@ msgstr "ظرفیت کاری"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27730,7 +27747,7 @@ msgstr "لاگ زمان کارت کار"
msgid "Job Card and Capacity Planning"
msgstr "برنامهریزی کارت کار و ظرفیت"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "کارت کار {0} تکمیل شده است"
@@ -27806,7 +27823,7 @@ msgstr "نام پیمانکار"
msgid "Job Worker Warehouse"
msgstr "انبار پیمانکار"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "کارت کار {0} ایجاد شد"
@@ -28026,7 +28043,7 @@ msgstr "کیلووات"
msgid "Kilowatt-Hour"
msgstr "کیلووات-ساعت"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "لطفاً ابتدا ورودیهای تولید را در برابر دستور کار {0} لغو کنید."
@@ -28154,7 +28171,7 @@ msgstr "آخرین تاریخ تکمیل"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28236,7 +28253,7 @@ msgstr "آخرین تاریخ بررسی کربن نمیتواند تاریخ
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "آخرین"
@@ -28486,12 +28503,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "هزینه های قانونی"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "افسانه"
@@ -28502,7 +28519,7 @@ msgstr "افسانه"
msgid "Length (cm)"
msgstr "طول (سانتی متر)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "کمتر از مبلغ"
@@ -28561,7 +28578,7 @@ msgstr "شماره پروانه"
msgid "License Plate"
msgstr "پلاک وسیله نقلیه"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "از حد عبور کرد"
@@ -28622,7 +28639,7 @@ msgstr "پیوند به درخواست های مواد"
msgid "Link with Customer"
msgstr "پیوند با مشتری"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "پیوند با تامین کننده"
@@ -28643,12 +28660,12 @@ msgstr "فاکتورهای مرتبط"
msgid "Linked Location"
msgstr "مکان پیوند داده شده"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "مرتبط با اسناد ارسالی"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "پیوند ناموفق بود"
@@ -28656,7 +28673,7 @@ msgstr "پیوند ناموفق بود"
msgid "Linking to Customer Failed. Please try again."
msgstr "پیوند به مشتری انجام نشد. لطفا دوباره تلاش کنید."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "پیوند به تامین کننده انجام نشد. لطفا دوباره تلاش کنید."
@@ -28714,8 +28731,8 @@ msgstr "تاریخ شروع وام"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "تاریخ شروع وام و دوره وام برای ذخیره در تخفیف فاکتور الزامی است"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "وام (بدهی)"
@@ -28760,8 +28777,8 @@ msgstr ""
msgid "Logo"
msgstr "لوگو"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28962,6 +28979,11 @@ msgstr "ردیف برنامه وفاداری"
msgid "Loyalty Program Type"
msgstr "نوع برنامه وفاداری"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29005,10 +29027,10 @@ msgstr "خرابی ماشین"
msgid "Machine operator errors"
msgstr "خطاهای اپراتور ماشین"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "اصلی"
@@ -29251,9 +29273,9 @@ msgstr "موضوعات اصلی/اختیاری"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "بسازید"
@@ -29273,7 +29295,7 @@ msgstr "ثبت استهلاک"
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29311,12 +29333,12 @@ msgstr "تهیه فاکتور فروش"
msgid "Make Serial No / Batch from Work Order"
msgstr "ساخت شماره سریال / دسته از دستور کار"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "ثبت موجودی"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "ایجاد سفارش خرید پیمانکاری فرعی"
@@ -29332,11 +29354,11 @@ msgstr ""
msgid "Make project from a template."
msgstr "پروژه را از یک الگو بسازید."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "ایجاد {0} گونه"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "ایجاد {0} گونه"
@@ -29344,8 +29366,8 @@ msgstr "ایجاد {0} گونه"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "مدیریت"
@@ -29364,7 +29386,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "سفارشهای خود را مدیریت کنید"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "مدیریت"
@@ -29380,7 +29402,7 @@ msgstr "مدیر عامل"
msgid "Mandatory Accounting Dimension"
msgstr "بعد حسابداری اجباری"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "فیلد اجباری"
@@ -29479,8 +29501,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29559,7 +29581,7 @@ msgstr "تولید کننده"
msgid "Manufacturer Part Number"
msgstr "شماره قطعه تولید کننده"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "شماره قطعه تولید کننده {0} نامعتبر است"
@@ -29584,7 +29606,7 @@ msgstr "تولیدکنندگان مورد استفاده در آیتمها"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29629,10 +29651,6 @@ msgstr "تاریخ تولید"
msgid "Manufacturing Manager"
msgstr "مدیر تولید"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "مقدار تولید الزامی است"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29799,6 +29817,12 @@ msgstr "وضعیت تأهل"
msgid "Mark As Closed"
msgstr "علامت گذاری به عنوان بسته شده"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29813,12 +29837,12 @@ msgstr "علامت گذاری به عنوان بسته شده"
msgid "Market Segment"
msgstr "بخش بازار"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "بازار یابی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "هزینه های بازاریابی"
@@ -29897,7 +29921,7 @@ msgstr ""
msgid "Material"
msgstr "مواد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "مصرف مواد"
@@ -29905,7 +29929,7 @@ msgstr "مصرف مواد"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "مصرف مواد برای تولید"
@@ -29986,7 +30010,7 @@ msgstr "رسید مواد"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30083,11 +30107,11 @@ msgstr "آیتم طرح درخواست مواد"
msgid "Material Request Type"
msgstr "نوع درخواست مواد"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "درخواست مواد از قبل برای مقدار سفارش داده شده ایجاد شده است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "درخواست مواد ایجاد نشد، زیرا مقدار مواد اولیه از قبل موجود است."
@@ -30155,7 +30179,7 @@ msgstr "مواد برگردانده شده از «در جریان تولید»"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30221,12 +30245,12 @@ msgstr "مواد به تامین کننده"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "مواد قبلاً در مقابل {0} {1} دریافت شده است"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "برای کارت کار باید مواد به انبار در جریان تولید انتقال داده شود {0}"
@@ -30297,9 +30321,9 @@ msgstr "حداکثر امتیاز"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "حداکثر تخفیف مجاز برای آیتم: {0} {1}% است"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30331,11 +30355,11 @@ msgstr "حداکثر مبلغ پرداختی"
msgid "Maximum Producible Items"
msgstr "حداکثر آیتمهای قابل تولید"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "حداکثر نمونه - {0} را میتوان برای دسته {1} و مورد {2} حفظ کرد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "حداکثر نمونه - {0} قبلاً برای دسته {1} و مورد {2} در دسته {3} حفظ شده است."
@@ -30396,15 +30420,10 @@ msgstr "مگاژول"
msgid "Megawatt"
msgstr "مگاوات"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "نرخ ارزشگذاری را در آیتم اصلی ذکر کنید."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "در صورت غیر استاندارد بودن حسابهای دریافتنی، ذکر کنید"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30454,7 +30473,7 @@ msgstr "ادغام با حساب موجود"
msgid "Merged"
msgstr "ادغام شد"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "ادغام تنها در صورتی امکان پذیر است که ویژگیهای زیر در هر دو رکورد یکسان باشند. گروه، نوع ریشه، شرکت و ارز حساب است"
@@ -30484,7 +30503,7 @@ msgstr "پیامی برای کاربران ارسال میشود تا وضع
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "پیام های بیشتر از 160 کاراکتر به چند پیام تقسیم میشوند"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30685,7 +30704,7 @@ msgstr "Min Qty نمیتواند بیشتر از Max Qty باشد"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Min Qty باید بیشتر از Recurse Over Qty باشد"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "حداقل مقدار: {0}، حداکثر مقدار: {1}، با گامهای: {2}"
@@ -30774,8 +30793,8 @@ msgstr "دقایق"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "هزینه های متفرقه"
@@ -30783,15 +30802,15 @@ msgstr "هزینه های متفرقه"
msgid "Mismatch"
msgstr "عدم تطابق"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "جا افتاده"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "حساب جا افتاده"
@@ -30821,7 +30840,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr "دفتر مالی جا افتاده"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "از دست رفته به پایان رسید"
@@ -30829,7 +30848,7 @@ msgstr "از دست رفته به پایان رسید"
msgid "Missing Formula"
msgstr "فرمول جا افتاده"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "آیتم جا افتاده"
@@ -30866,7 +30885,7 @@ msgid "Missing required filter: {0}"
msgstr "فیلتر مورد نیاز موجود نیست: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "مقدار از دست رفته"
@@ -31115,11 +31134,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "چندین برنامه وفاداری برای مشتری {} پیدا شد. لطفا به صورت دستی انتخاب کنید"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31141,11 +31160,11 @@ msgstr "چندین گونه"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "چندین سال مالی برای تاریخ {0} وجود دارد. لطفا شرکت را در سال مالی تعیین کنید"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "چند مورد را نمیتوان به عنوان مورد تمام شده علامت گذاری کرد"
@@ -31154,7 +31173,7 @@ msgid "Music"
msgstr "موسیقی"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31241,7 +31260,7 @@ msgstr "گزینههای سری نامگذاری"
msgid "Naming Series updated"
msgstr "سری نامگذاری بهروزرسانی شد"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31285,7 +31304,7 @@ msgstr "نیاز به تحلیل دارد"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "مقدار منفی مجاز نیست"
@@ -31294,7 +31313,7 @@ msgstr "مقدار منفی مجاز نیست"
msgid "Negative Stock Error"
msgstr "خطای موجودی منفی"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "نرخ ارزشگذاری منفی مجاز نیست"
@@ -31600,7 +31619,7 @@ msgstr "وزن خالص"
msgid "Net Weight UOM"
msgstr "وزن خالص UOM"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "خالص از دست دادن دقت محاسبه کل"
@@ -31739,7 +31758,7 @@ msgstr "پیشفاکتورهای جدید"
#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:68
msgid "New Rule"
-msgstr ""
+msgstr "قانون جدید"
#. Label of the sales_invoice (Check) field in DocType 'Email Digest'
#: erpnext/setup/doctype/email_digest/email_digest.json
@@ -31777,7 +31796,7 @@ msgstr "نام انبار جدید"
msgid "New Workplace"
msgstr "محل کار جدید"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "سقف اعتبار جدید کمتر از مبلغ معوقه فعلی برای مشتری است. حد اعتبار باید حداقل {0} باشد"
@@ -31831,7 +31850,7 @@ msgstr "ایمیل بعدی در تاریخ ارسال خواهد شد:"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "هیچ حسابی با این فیلترها مطابقت نداشت: {}"
@@ -31844,7 +31863,7 @@ msgstr "بدون اقدام"
msgid "No Answer"
msgstr "بدون پاسخ"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "هیچ مشتری برای Inter Company Transactions که نماینده شرکت {0} است یافت نشد"
@@ -31857,7 +31876,7 @@ msgstr "هیچ مشتری با گزینههای انتخاب شده یافت
msgid "No Delivery Note selected for Customer {}"
msgstr "هیچ یادداشت تحویلی برای مشتری انتخاب نشده است {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31873,7 +31892,7 @@ msgstr "هیچ موردی با بارکد {0} وجود ندارد"
msgid "No Item with Serial No {0}"
msgstr "آیتمی با شماره سریال {0} وجود ندارد"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "هیچ موردی برای انتقال انتخاب نشده است."
@@ -31908,7 +31927,7 @@ msgstr "هیچ نمایه POS یافت نشد. لطفا ابتدا یک نمای
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "بدون مجوز و اجازه"
@@ -31937,19 +31956,19 @@ msgstr "موجودی در حال حاضر موجود نیست"
msgid "No Summary"
msgstr "بدون خلاصه"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "هیچ تامین کننده ای برای Inter Company Transactions یافت نشد که نماینده شرکت {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "هیچ دادهای از مالیات تکلیفی برای تاریخ ارسال فعلی یافت نشد."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "هیچ حساب مالیات تکلیفی برای شرکت {0} در دسته مالیات تکلیفی {1} تنظیم نشده است."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "بدون شرایط"
@@ -31979,7 +31998,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "هیچ BOM فعالی برای آیتم {0} یافت نشد. تحویل با شماره سریال نمیتواند تضمین شود"
@@ -32173,7 +32192,7 @@ msgstr "تعداد ایستگاههای کاری"
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32197,7 +32216,7 @@ msgstr "هیچ فاکتور معوقی نیاز به تجدید ارزیابی
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "هیچ {0} معوقاتی برای {1} {2} که واجد شرایط فیلترهایی است که شما مشخص کرده اید، یافت نشد."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "هیچ درخواست مواد در انتظاری برای پیوند برای آیتمهای داده شده یافت نشد."
@@ -32268,7 +32287,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "هیچ ثبت در دفتر موجودی ایجاد نشد. لطفاً مقدار یا نرخ ارزشگذاری آیتمها را به درستی تنظیم کرده و دوباره امتحان کنید."
@@ -32301,7 +32320,7 @@ msgstr "بدون ارزش"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "هیچ {0} برای معاملات بین شرکتی یافت نشد."
@@ -32346,8 +32365,8 @@ msgstr "غیر انتفاعی"
msgid "Non stock items"
msgstr "آیتمهای غیر موجودی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32448,7 +32467,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr "اجازه تنظیم آیتم جایگزین برای آیتم {0} داده نشود"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "ایجاد بعد حسابداری برای {0} مجاز نیست"
@@ -32502,7 +32521,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "توجه: مورد {0} چندین بار اضافه شد"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "توجه: ثبت پرداخت ایجاد نخواهد شد زیرا «حساب نقدی یا بانکی» مشخص نشده است"
@@ -32510,7 +32529,7 @@ msgstr "توجه: ثبت پرداخت ایجاد نخواهد شد زیرا «ح
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "توجه: این مرکز هزینه یک گروه است. نمیتوان در مقابل گروهها ثبت حسابداری انجام داد."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "توجه: برای ادغام آیتمها، یک تطبیق موجودی جداگانه برای آیتم قدیمی {0} ایجاد کنید"
@@ -32693,6 +32712,11 @@ msgstr "شماره حساب جدید، به عنوان پیشوند در نام
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "شماره مرکز هزینه جدید، به عنوان پیشوند در نام مرکز هزینه درج خواهد شد"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32752,18 +32776,18 @@ msgstr "مقدار کیلومتر شمار (آخرین)"
msgid "Offer Date"
msgstr "تاریخ پیشنهاد"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "تجهیزات اداری"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "هزینه های نگهداری دفتر"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "اجاره دفتر کار"
@@ -32891,7 +32915,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "پس از تنظیم، این فاکتور تا تاریخ تعیین شده در حالت تعلیق خواهد بود"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "هنگامی که دستور کار بسته شد. نمیتوان آن را از سر گرفت."
@@ -32931,7 +32955,7 @@ msgstr "فقط «ثبتهای پرداخت» انجامشده در برا
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "برای درونبُرد دادهها فقط میتوان از فایل های CSV و Excel استفاده کرد. لطفاً فرمت فایلی را که میخواهید آپلود کنید بررسی کنید"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "فقط فایلهای CSV مجاز هستند"
@@ -32950,7 +32974,7 @@ msgstr "فقط از مبلغ مازاد مالیات کسر کنید "
msgid "Only Include Allocated Payments"
msgstr "فقط شامل پرداختهای اختصاص داده شده است"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "فقط والد میتوانند از نوع {0} باشند"
@@ -32987,7 +33011,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "فقط یک ثبت {0} میتواند در برابر دستور کار {1} ایجاد شود"
@@ -33205,8 +33229,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "جزئیات تراز افتتاحیه"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "حقوق صاحبان سهام افتتاحیه"
@@ -33229,7 +33253,7 @@ msgstr "تاریخ افتتاحیه"
msgid "Opening Entry"
msgstr "ثبت افتتاحیه"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "پس از ایجاد سند مالی اختتامیه دوره، ثبت افتتاحیه نمیتواند ایجاد شود."
@@ -33262,7 +33286,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33298,16 +33322,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "موجودی اولیه"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33325,12 +33349,15 @@ msgstr "ارزش افتتاحیه"
msgid "Opening and Closing"
msgstr "افتتاحیه و اختتامیه"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33362,7 +33389,7 @@ msgstr "هزینه عملیاتی (ارز شرکت)"
msgid "Operating Cost Per BOM Quantity"
msgstr "هزینه عملیاتی به ازای هر مقدار BOM"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "هزینه عملیاتی بر اساس دستور کار / BOM"
@@ -33405,15 +33432,15 @@ msgstr "شرح عملیات"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "شناسه عملیات"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "شناسه عملیات"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33438,7 +33465,7 @@ msgstr "شماره ردیف عملیات"
msgid "Operation Time"
msgstr "زمان عملیات"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "زمان عملیات برای عملیات {0} باید بیشتر از 0 باشد"
@@ -33453,11 +33480,11 @@ msgstr "عملیات برای چند کالای تمام شده تکمیل شد
msgid "Operation time does not depend on quantity to produce"
msgstr "زمان عملیات به مقدار تولید بستگی ندارد"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "عملیات {0} چندین بار در دستور کار اضافه شد {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "عملیات {0} به دستور کار {1} تعلق ندارد"
@@ -33473,9 +33500,9 @@ msgstr "عملیات {0} طولانیتر از هر ساعت کاری موج
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33648,7 +33675,7 @@ msgstr "فرصت {0} ایجاد شد"
msgid "Optimize Route"
msgstr "بهینه سازی مسیر"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33798,7 +33825,7 @@ msgstr "مقدار سفارش داده شده"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "سفارشها"
@@ -33914,7 +33941,7 @@ msgstr "اونس/گالن (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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "مقدار خروجی"
@@ -33952,7 +33979,7 @@ msgstr "خارج از ضمانت"
msgid "Out of stock"
msgstr "موجود نیست"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33971,6 +33998,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "نرخ خروجی"
@@ -34006,7 +34034,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34016,7 +34044,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34076,17 +34104,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "اضافه تحویل/دریافت مجاز (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "اجازه برداشت بیش از حد"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "بیش از رسید"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "بیش از رسید/تحویل {0} {1} برای مورد {2} نادیده گرفته شد زیرا شما نقش {3} را دارید."
@@ -34106,11 +34139,11 @@ msgstr "مجاز به انتقال بیش از حد (%)"
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "اضافه صورتحساب {0} {1} برای مورد {2} نادیده گرفته شد زیرا شما نقش {3} را دارید."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "پرداخت بیش از حد {} نادیده گرفته شد زیرا شما نقش {} را دارید."
@@ -34410,7 +34443,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "ثبت افتتاحیه POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34431,7 +34464,7 @@ msgstr "جزئیات ثبت افتتاحیه POS"
msgid "POS Opening Entry Exists"
msgstr "ثبت افتتاحیه POS وجود دارد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34467,7 +34500,7 @@ msgstr "روش پرداخت POS"
msgid "POS Profile"
msgstr "نمایه POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34485,11 +34518,11 @@ msgstr "کاربر نمایه POS"
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "نمایه POS برای ثبت POS لازم است"
@@ -34595,7 +34628,7 @@ msgstr "آیتم بسته بندی شده"
msgid "Packed Items"
msgstr "آیتمهای بسته بندی شده"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "آیتمهای بسته بندی شده را نمیتوان به صورت داخلی منتقل کرد"
@@ -34632,7 +34665,7 @@ msgstr "برگه بسته بندی"
msgid "Packing Slip Item"
msgstr "آیتم برگه بسته بندی"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "برگه(های) بسته بندی لغو شد"
@@ -34673,7 +34706,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34739,7 +34772,7 @@ msgid "Paid To Account Type"
msgstr "پرداخت به نوع حساب"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "مبلغ پرداخت شده + مبلغ نوشتن خاموش نمیتواند بیشتر از جمع کل باشد"
@@ -34833,7 +34866,7 @@ msgstr "دسته والد"
msgid "Parent Company"
msgstr "شرکت والد"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "شرکت مادر باید یک شرکت گروهی باشد"
@@ -34960,7 +34993,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "مواد جزئی منتقل شد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35173,7 +35206,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35200,7 +35233,7 @@ msgstr "طرف"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "حساب طرف"
@@ -35233,7 +35266,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "شماره حساب طرف (صورتحساب بانکی)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "واحد پول حساب طرف {0} ({1}) و واحد پول سند ({2}) باید یکسان باشند"
@@ -35385,7 +35418,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35494,7 +35527,7 @@ msgstr "رویدادهای گذشته"
msgid "Pause"
msgstr "مکث کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "مکث کار"
@@ -35545,7 +35578,7 @@ msgid "Payable"
msgstr "پرداختنی"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35579,7 +35612,7 @@ msgstr "تنظیمات پرداخت کننده"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35726,7 +35759,7 @@ msgstr "ثبت پرداخت پس از اینکه شما آن را کشیدید
msgid "Payment Entry is already created"
msgstr "ثبت پرداخت قبلا ایجاد شده است"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "ثبت پرداخت {0} با سفارش {1} مرتبط است، بررسی کنید که آیا باید به عنوان پیشپرداخت در این فاکتور آورده شود."
@@ -35951,7 +35984,7 @@ msgstr "مراجع پرداخت"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36016,7 +36049,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36045,7 +36078,7 @@ msgstr "زمانبندیهای پرداخت"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36101,6 +36134,7 @@ msgstr "وضعیت شرایط پرداخت برای سفارش فروش"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36115,6 +36149,7 @@ msgstr "وضعیت شرایط پرداخت برای سفارش فروش"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36172,7 +36207,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "روشهای پرداخت اجباری است. لطفاً حداقل یک روش پرداخت اضافه کنید."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36247,8 +36282,8 @@ msgstr "پرداختها بهروزرسانی شد."
msgid "Payroll Entry"
msgstr "ثبت حقوق و دستمزد"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "حقوق و دستمزد پرداختنی"
@@ -36295,10 +36330,14 @@ msgstr "فعالیت های در انتظار"
msgid "Pending Amount"
msgstr "مبلغ در انتظار"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36307,9 +36346,18 @@ 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:273
msgid "Pending Quantity"
msgstr "مقدار در انتظار"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36339,6 +36387,14 @@ msgstr "فعالیت های در انتظار برای امروز"
msgid "Pending processing"
msgstr "در انتظار پردازش"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "صندوق های بازنشستگی"
@@ -36448,7 +36504,7 @@ msgstr "تجزیه و تحلیل ادراک"
msgid "Period Based On"
msgstr "دوره بر اساس"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "دوره بسته است"
@@ -37012,8 +37068,8 @@ msgstr "داشبورد کارخانه"
msgid "Plant Floor"
msgstr "سالن کارخانه"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "کارخانهها و ماشینآلات"
@@ -37049,7 +37105,7 @@ msgstr "لطفا اولویت را تعیین کنید"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "لطفاً گروه تامین کننده را در تنظیمات خرید تنظیم کنید."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "لطفا حساب را مشخص کنید"
@@ -37097,7 +37153,7 @@ msgstr "لطفا ستون حساب بانکی را اضافه کنید"
msgid "Please add the account to root level Company - {0}"
msgstr "لطفاً حساب را به شرکت سطح ریشه اضافه کنید - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "لطفاً حساب را به شرکت سطح ریشه اضافه کنید - {}"
@@ -37105,7 +37161,7 @@ msgstr "لطفاً حساب را به شرکت سطح ریشه اضافه کنی
msgid "Please add {1} role to user {0}."
msgstr "لطفاً نقش {1} را به کاربر {0} اضافه کنید."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "لطفاً تعداد را تنظیم کنید یا برای ادامه {0} را ویرایش کنید."
@@ -37113,7 +37169,7 @@ msgstr "لطفاً تعداد را تنظیم کنید یا برای ادامه
msgid "Please attach CSV file"
msgstr "لطفا فایل CSV را پیوست کنید"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "لطفاً ثبت پرداخت را لغو و اصلاح کنید"
@@ -37147,7 +37203,7 @@ msgstr "لطفاً با عملیات یا هزینه عملیاتی مبتنی
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "لطفاً پیام خطا را بررسی کنید و اقدامات لازم را برای رفع خطا انجام دهید و سپس ارسال مجدد را مجدداً راهاندازی کنید."
@@ -37172,11 +37228,15 @@ msgstr "لطفاً برای واکشی شماره سریال اضافه شده
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "لطفاً برای دریافت برنامه بر روی \"ایجاد برنامه زمانی\" کلیک کنید"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0} با هر یک از کاربران زیر تماس بگیرید: {1}"
@@ -37184,11 +37244,11 @@ msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0}
msgid "Please contact any of the following users to {} this transaction."
msgstr "لطفاً با هر یک از کاربران زیر برای {} این تراکنش تماس بگیرید."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "لطفاً برای تمدید محدودیت اعتبار برای {0} با ادمین خود تماس بگیرید."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "لطفاً حساب مادر در شرکت فرزند مربوطه را به یک حساب گروهی تبدیل کنید."
@@ -37200,11 +37260,11 @@ msgstr "لطفاً مشتری از سرنخ {0} ایجاد کنید."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "لطفاً در برابر فاکتورهایی که «بهروزرسانی موجودی» را فعال کردهاند، اسناد مالی بهای تمامشده در مقصد ایجاد کنید."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "لطفاً در صورت نیاز یک بعد حسابداری جدید ایجاد کنید."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "لطفا خرید را از فروش داخلی یا سند تحویل خود ایجاد کنید"
@@ -37212,11 +37272,11 @@ msgstr "لطفا خرید را از فروش داخلی یا سند تحویل
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "لطفاً رسید خرید یا فاکتور خرید برای آیتم {0} ایجاد کنید"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "لطفاً قبل از ادغام {1} در {2}، باندل محصول {0} را حذف کنید"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37224,7 +37284,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "لطفا هزینه چند دارایی را در مقابل یک دارایی ثبت نکنید."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "لطفا بیش از 500 آیتم را همزمان ایجاد نکنید"
@@ -37248,7 +37308,7 @@ msgstr "لطفاً فقط در صورتی فعال کنید که تأثیرات
msgid "Please enable {0} in the {1}."
msgstr "لطفاً {0} را در {1} فعال کنید."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "لطفاً {} را در {} فعال کنید تا یک مورد در چندین ردیف مجاز باشد"
@@ -37260,20 +37320,20 @@ msgstr "لطفاً مطمئن شوید که حساب {0} یک حساب تراز
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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "لطفاً مطمئن شوید که حساب {} یک حساب ترازنامه است."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "لطفاً مطمئن شوید که {} حساب {} یک حساب دریافتنی است."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "لطفاً حساب تفاوت را وارد کنید یا حساب تعدیل موجودی پیشفرض را برای شرکت {0} تنظیم کنید"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "لطفاً حساب را برای تغییر مبلغ وارد کنید"
@@ -37281,15 +37341,15 @@ msgstr "لطفاً حساب را برای تغییر مبلغ وارد کنید"
msgid "Please enter Approving Role or Approving User"
msgstr "لطفاً نقش تأیید یا کاربر تأیید را وارد کنید"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "لطفا شماره دسته را وارد کنید"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "لطفا مرکز هزینه را وارد کنید"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "لطفا تاریخ تحویل را وارد کنید"
@@ -37297,7 +37357,7 @@ msgstr "لطفا تاریخ تحویل را وارد کنید"
msgid "Please enter Employee Id of this sales person"
msgstr "لطفا شناسه کارمند این فروشنده را وارد کنید"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "لطفا حساب هزینه را وارد کنید"
@@ -37306,7 +37366,7 @@ msgstr "لطفا حساب هزینه را وارد کنید"
msgid "Please enter Item Code to get Batch Number"
msgstr "لطفا کد آیتم را برای دریافت شماره دسته وارد کنید"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "لطفا کد آیتم را برای دریافت شماره دسته وارد کنید"
@@ -37322,7 +37382,7 @@ msgstr "لطفاً ابتدا جزئیات تعمیر و نگهداری را و
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "لطفاً تعداد برنامهریزی شده را برای مورد {0} در ردیف {1} وارد کنید"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "لطفا ابتدا کالای تولیدی را وارد کنید"
@@ -37342,7 +37402,7 @@ msgstr "لطفا تاریخ مرجع را وارد کنید"
msgid "Please enter Root Type for account- {0}"
msgstr "لطفاً نوع ریشه را برای حساب وارد کنید- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "لطفا شماره سریال را وارد کنید"
@@ -37359,7 +37419,7 @@ msgid "Please enter Warehouse and Date"
msgstr "لطفا انبار و تاریخ را وارد کنید"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "لطفاً حساب نوشتن خاموش را وارد کنید"
@@ -37379,7 +37439,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr "لطفا ابتدا نام شرکت را وارد کنید"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "لطفا ارز پیشفرض را در Company Master وارد کنید"
@@ -37407,7 +37467,7 @@ msgstr "لطفا تاریخ برکناری را وارد کنید."
msgid "Please enter serial nos"
msgstr "لطفا شماره سریال را وارد کنید"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "لطفاً برای تأیید نام شرکت را وارد کنید"
@@ -37475,11 +37535,11 @@ msgstr "لطفاً مطمئن شوید که کارمندان بالا به کا
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "لطفاً مطمئن شوید که فایلی که استفاده میکنید دارای ستون «حساب والد» در سربرگ باشد."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "لطفاً مطمئن شوید که واقعاً میخواهید همه تراکنشهای این شرکت را حذف کنید. دادههای اصلی شما همانطور که هست باقی می ماند. این عمل قابل لغو نیست."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "لطفا \"UOM وزن\" را همراه با وزن ذکر کنید."
@@ -37538,7 +37598,7 @@ msgstr "لطفاً نوع الگو را برای دانلود الگو ا
msgid "Please select Apply Discount On"
msgstr "لطفاً Apply Discount On را انتخاب کنید"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "لطفاً BOM را در مقابل مورد {0} انتخاب کنید"
@@ -37554,7 +37614,7 @@ msgstr "لطفا حساب بانکی را انتخاب کنید"
msgid "Please select Category first"
msgstr "لطفاً ابتدا دسته را انتخاب کنید"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37584,7 +37644,7 @@ msgstr "لطفاً تاریخ تکمیل را برای لاگ تعمیر و نگ
msgid "Please select Customer first"
msgstr "لطفا ابتدا مشتری را انتخاب کنید"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "لطفاً شرکت موجود را برای ایجاد نمودار حساب انتخاب کنید"
@@ -37593,8 +37653,8 @@ msgstr "لطفاً شرکت موجود را برای ایجاد نمودار ح
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "لطفاً آیتم کالای تمام شده را برای آیتم سرویس {0} انتخاب کنید"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "لطفا ابتدا کد آیتم را انتخاب کنید"
@@ -37626,11 +37686,11 @@ msgstr "لطفا ابتدا تاریخ ارسال را انتخاب کنید"
msgid "Please select Price List"
msgstr "لطفا لیست قیمت را انتخاب کنید"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "لطفاً تعداد را در برابر مورد {0} انتخاب کنید"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "لطفاً ابتدا انبار نگهداری نمونه را در تنظیمات انبار انتخاب کنید"
@@ -37646,7 +37706,7 @@ msgstr "لطفاً تاریخ شروع و تاریخ پایان را برای م
msgid "Please select Stock Asset Account"
msgstr "لطفا حساب دارایی موجودی را انتخاب کنید"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "لطفاً حساب سود / زیان تحقق نیافته را انتخاب کنید یا حساب سود / زیان پیشفرض را برای شرکت اضافه کنید {0}"
@@ -37663,7 +37723,7 @@ msgstr "لطفا یک شرکت را انتخاب کنید"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "لطفا ابتدا یک شرکت را انتخاب کنید."
@@ -37687,7 +37747,7 @@ msgstr "لطفا یک تامین کننده انتخاب کنید"
msgid "Please select a Warehouse"
msgstr "لطفاً یک انبار انتخاب کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "لطفاً ابتدا یک دستور کار را انتخاب کنید."
@@ -37760,11 +37820,15 @@ msgstr "لطفاً یک مقدار برای {0} quotation_to {1} انتخاب ک
msgid "Please select an item code before setting the warehouse."
msgstr "لطفاً قبل از تنظیم انبار یک کد آیتم را انتخاب کنید."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37784,7 +37848,7 @@ msgstr "لطفاً حداقل یک زمانبندی را انتخاب کنی
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "لطفا حداقل یک عملیات برای ایجاد کارت کار انتخاب کنید"
@@ -37842,7 +37906,7 @@ msgstr "لطفا شرکت را انتخاب کنید"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "لطفاً نوع برنامه چند لایه را برای بیش از یک قانون مجموعه انتخاب کنید."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37871,7 +37935,7 @@ msgstr "لطفا نوع سند معتبر را انتخاب کنید."
msgid "Please select weekly off day"
msgstr "لطفاً روز تعطیل هفتگی را انتخاب کنید"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "لطفاً ابتدا {0} را انتخاب کنید"
@@ -37880,11 +37944,11 @@ msgstr "لطفاً ابتدا {0} را انتخاب کنید"
msgid "Please set 'Apply Additional Discount On'"
msgstr "لطفاً \"اعمال تخفیف اضافی\" را تنظیم کنید"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "لطفاً \"مرکز هزینه استهلاک دارایی\" را در شرکت {0} تنظیم کنید"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "لطفاً «حساب سود/زیان در دفع دارایی» را در شرکت تنظیم کنید {0}"
@@ -37896,7 +37960,7 @@ msgstr "لطفاً \"{0}\" را در شرکت: {1} تنظیم کنید"
msgid "Please set Account"
msgstr "لطفا حساب را تنظیم کنید"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37926,7 +37990,7 @@ msgstr "لطفا شرکت را تنظیم کنید"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "لطفاً حسابهای مربوط به استهلاک را در دسته دارایی {0} یا شرکت {1} تنظیم کنید."
@@ -37944,7 +38008,7 @@ msgstr "لطفاً کد مالی را برای مشتری \"%s\" تنظیم کن
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37990,7 +38054,7 @@ msgstr "لطفا یک شرکت تعیین کنید"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "لطفاً یک مرکز هزینه برای دارایی یا یک مرکز هزینه استهلاک دارایی برای شرکت تنظیم کنید {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "لطفاً یک فهرست تعطیلات پیشفرض برای شرکت {0} تنظیم کنید"
@@ -38027,23 +38091,23 @@ msgstr "لطفاً حداقل یک ردیف در جدول مالیات ها و
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "لطفاً شناسه مالیاتی و کد مالی شرکت {0} را تنظیم کنید"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "لطفاً حساب پیشفرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "لطفاً حساب پیشفرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "لطفاً حساب پیشفرض نقدی یا بانکی را در حالت پرداخت تنظیم کنید {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "لطفاً حساب سود/زیان تبدیل پیشفرض را در شرکت تنظیم کنید {}"
@@ -38072,7 +38136,7 @@ msgstr "لطفاً {0} پیشفرض را در شرکت {1} تنظیم کنی
msgid "Please set filter based on Item or Warehouse"
msgstr "لطفاً فیلتر را بر اساس کالا یا انبار تنظیم کنید"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "لطفا یکی از موارد زیر را تنظیم کنید:"
@@ -38080,7 +38144,7 @@ msgstr "لطفا یکی از موارد زیر را تنظیم کنید:"
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "لطفاً پس از ذخیره، تکرار شونده را تنظیم کنید"
@@ -38092,15 +38156,15 @@ msgstr "لطفا آدرس مشتری را تنظیم کنید"
msgid "Please set the Default Cost Center in {0} company."
msgstr "لطفاً مرکز هزینه پیشفرض را در شرکت {0} تنظیم کنید."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "لطفا ابتدا کد آیتم را تنظیم کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "لطفاً انبار هدف را در کارت کار تنظیم کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "لطفاً انبار در جریان تولید را در کارت کار تنظیم کنید"
@@ -38139,7 +38203,7 @@ msgstr "لطفاً {0} را در BOM Creator {1} تنظیم کنید"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "لطفاً {0} را در شرکت {1} برای محاسبه سود / زیان تبدیل تنظیم کنید"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38161,7 +38225,7 @@ msgstr "لطفا شرکت را مشخص کنید"
msgid "Please specify Company to proceed"
msgstr "لطفاً شرکت را برای ادامه مشخص کنید"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "لطفاً یک شناسه ردیف معتبر برای ردیف {0} در جدول {1} مشخص کنید"
@@ -38174,7 +38238,7 @@ msgstr "لطفا ابتدا یک {0} را مشخص کنید."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "لطفا حداقل یک ویژگی را در جدول Attributes مشخص کنید"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "لطفاً مقدار یا نرخ ارزشگذاری یا هر دو را مشخص کنید"
@@ -38279,8 +38343,8 @@ msgstr "رشته مسیر ارسال"
msgid "Post Title Key"
msgstr "کلید عنوان پست"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "هزینه های پستی"
@@ -38345,7 +38409,7 @@ msgstr "نوشته شده در"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38363,7 +38427,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38485,10 +38549,6 @@ msgstr ""
msgid "Posting Time"
msgstr "زمان ارسال"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "تاریخ ارسال و زمان ارسال الزامی است"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38562,18 +38622,23 @@ msgstr "به پشتوانه {0}"
msgid "Pre Sales"
msgstr "پیش فروش"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "ترجیح"
@@ -38746,6 +38811,7 @@ msgstr "طبقههای تخفیف قیمت"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38769,6 +38835,7 @@ msgstr "طبقههای تخفیف قیمت"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38820,7 +38887,7 @@ msgstr "لیست قیمت کشور"
msgid "Price List Currency"
msgstr "لیست قیمت ارز"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "لیست قیمت ارز انتخاب نشده است"
@@ -39175,7 +39242,7 @@ msgstr "چاپ رسید"
msgid "Print Receipt on Order Complete"
msgstr "چاپ رسید در صورت کامل شدن سفارش"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "چاپ UOM پس از مقدار"
@@ -39184,8 +39251,8 @@ msgstr "چاپ UOM پس از مقدار"
msgid "Print Without Amount"
msgstr "چاپ بدون مبلغ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "چاپ و لوازم التحریر"
@@ -39193,7 +39260,7 @@ msgstr "چاپ و لوازم التحریر"
msgid "Print settings updated in respective print format"
msgstr "تنظیمات چاپ در قالب چاپ مربوطه به روز شد"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "چاپ مالیات با مبلغ صفر"
@@ -39296,10 +39363,6 @@ msgstr "مشکل"
msgid "Procedure"
msgstr "رویه"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "رویهها کنار گذاشته شدند"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39353,7 +39416,7 @@ msgstr "درصد هدررفت فرآیند نمیتواند بیشتر از 1
msgid "Process Loss Qty"
msgstr "مقدار هدررفت فرآیند"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "مقدار هدررفت فرآیند"
@@ -39434,6 +39497,10 @@ msgstr "فرآیند اشتراک"
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr "مقدار تلفات فرآیند نمیتواند منفی باشد."
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39529,8 +39596,8 @@ msgstr "تولید - محصول"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39595,7 +39662,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "تولید"
@@ -39809,7 +39876,7 @@ msgstr "% پیشرفت برای یک تسک نمیتواند بیشتر از
msgid "Progress (%)"
msgstr "پیشرفت (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "دعوتنامه همکاری پروژه"
@@ -39853,7 +39920,7 @@ msgstr "وضعیت پروژه"
msgid "Project Summary"
msgstr "خلاصه ی پروژه"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "خلاصه پروژه برای {0}"
@@ -39984,7 +40051,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40130,7 +40197,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "مشتری های بالقوه مورد توجه قرار گرفته اما تبدیل نشده"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40145,7 +40212,7 @@ msgstr "آدرس ایمیل ثبت شده در شرکت را ارائه دهید
msgid "Providing"
msgstr "ارائه دهنده"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40217,8 +40284,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40541,7 +40609,7 @@ msgstr "سفارش خرید {0} ایجاد شد"
msgid "Purchase Order {0} is not submitted"
msgstr "سفارش خرید {0} ارسال نشده است"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "سفارشهای خرید"
@@ -40556,7 +40624,7 @@ msgstr "تعداد سفارشهای خرید"
msgid "Purchase Orders Items Overdue"
msgstr "آیتمهای سفارشهای خرید معوقه"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40571,7 +40639,7 @@ msgstr "سفارشهای خرید برای صورتحساب"
msgid "Purchase Orders to Receive"
msgstr "سفارش خرید برای دریافت"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "سفارشهای خرید {0} لغو پیوند هستند"
@@ -40705,7 +40773,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "الگوی مالیات خرید"
@@ -40803,6 +40871,7 @@ msgstr "خرید"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40812,10 +40881,6 @@ msgstr "خرید"
msgid "Purpose"
msgstr "هدف"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "هدف باید یکی از {0} باشد"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40871,6 +40936,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40919,6 +40985,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41027,11 +41094,11 @@ msgstr "تعداد در هر واحد"
msgid "Qty To Manufacture"
msgstr "تعداد برای تولید"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "مقدار برای تولید ({0}) نمیتواند کسری از UOM {2} باشد. برای مجاز کردن این امر، '{1}' را در UOM {2} غیرفعال کنید."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41082,8 +41149,8 @@ msgstr "مقدار مطابق واحد اندازهگیری موجودی"
msgid "Qty for which recursion isn't applicable."
msgstr "تعداد که بازگشت برای آنها قابل اعمال نیست."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "تعداد برای {0}"
@@ -41138,8 +41205,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "تعداد برای واکشی"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "تعداد برای تولید"
@@ -41375,17 +41442,17 @@ msgstr "الگوی بازرسی کیفیت"
msgid "Quality Inspection Template Name"
msgstr "نام الگوی بازرسی کیفیت"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41399,7 +41466,7 @@ msgstr "بازرسی(های) کیفیت"
msgid "Quality Inspections"
msgstr "بازرسیهای کیفیت"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "مدیریت کیفیت"
@@ -41531,7 +41598,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41666,7 +41733,7 @@ msgstr "مقدار باید بزرگتر از صفر باشد"
msgid "Quantity must be less than or equal to {0}"
msgstr "مقدار باید کمتر یا مساوی {0} باشد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "مقدار نباید بیشتر از {0} باشد"
@@ -41676,21 +41743,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "مقدار مورد نیاز برای مورد {0} در ردیف {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "مقدار باید بیشتر از 0 باشد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "مقدار برای تولید"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "مقدار برای تولید نمیتواند برای عملیات صفر باشد {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "مقدار تولید باید بیشتر از 0 باشد."
@@ -41713,7 +41780,7 @@ msgstr "کوارت خشک (ایالات متحده)"
msgid "Quart Liquid (US)"
msgstr "کوارت مایع (ایالات متحده)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "سه ماهه {0} {1}"
@@ -41832,11 +41899,11 @@ msgstr "پیشفاکتور به"
msgid "Quotation Trends"
msgstr "روند پیشفاکتور"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "پیشفاکتور {0} لغو شده است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "پیشفاکتور {0} از نوع {1} نیست"
@@ -42143,7 +42210,7 @@ msgstr "نرخی که ارز تامین کننده به ارز پایه شرکت
msgid "Rate at which this tax is applied"
msgstr "نرخی که این مالیات اعمال میشود"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42309,7 +42376,7 @@ msgstr "مواد اولیه مصرفی"
msgid "Raw Materials Consumption"
msgstr "مصرف مواد اولیه"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42348,12 +42415,6 @@ msgstr "مواد اولیه نمیتواند خالی باشد."
msgid "Raw Materials to Customer"
msgstr "مواد اولیه به مشتری"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "SQL خام"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42362,7 +42423,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42543,7 +42604,7 @@ msgid "Receivable / Payable Account"
msgstr "حساب دریافتنی / پرداختنی"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43004,7 +43065,7 @@ msgstr "مرجع #"
msgid "Reference #{0} dated {1}"
msgstr "مرجع #{0} به تاریخ {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "تاریخ مرجع برای تخفیف پرداخت زودهنگام"
@@ -43168,11 +43229,11 @@ msgstr "مرجع: {0}، کد آیتم: {1} و مشتری: {2}"
msgid "References"
msgstr "منابع"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "ارجاعات به فاکتورهای فروش ناقص است"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "ارجاعات به سفارشهای فروش ناقص است"
@@ -43334,7 +43395,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "موجودی باقی مانده"
@@ -43392,7 +43453,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43456,7 +43517,7 @@ msgstr "تغییر نام مقدار ویژگی در ویژگی آیتم."
msgid "Rename Log"
msgstr "لاگ تغییر نام"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "تغییر نام مجاز نیست"
@@ -43473,7 +43534,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "تغییر نام آن فقط از طریق شرکت مادر {0} مجاز است تا از عدم تطابق جلوگیری شود."
@@ -43596,7 +43657,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "نوع گزارش اجباری است"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "گزارش یک مشکل"
@@ -43841,7 +43902,7 @@ msgstr "درخواست اطلاعات"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44022,7 +44083,7 @@ msgstr "نیاز به تحقق دارد"
msgid "Research"
msgstr "پژوهش"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "تحقیق و توسعه"
@@ -44067,7 +44128,7 @@ msgstr "رزرو"
msgid "Reservation Based On"
msgstr "رزرو بر اساس"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44111,7 +44172,7 @@ msgstr "رزرو برای زیر مونتاژ"
msgid "Reserved"
msgstr "رزرو شده است"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44181,14 +44242,14 @@ msgstr "مقدار رزرو شده"
msgid "Reserved Quantity for Production"
msgstr "مقدار رزرو شده برای تولید"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44197,13 +44258,13 @@ msgstr "شماره سریال رزرو شده"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "موجودی رزرو شده برای دسته"
@@ -44469,7 +44530,7 @@ msgstr "فیلد عنوان نتیجه"
msgid "Resume"
msgstr "از سرگیری"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "از سر گیری کار"
@@ -44494,8 +44555,8 @@ msgstr "خرده فروش"
msgid "Retain Sample"
msgstr "نگهداری نمونه"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "سود انباشته"
@@ -44570,7 +44631,7 @@ msgstr "برگشت در مقابل رسید خرید"
msgid "Return Against Subcontracting Receipt"
msgstr "استرداد در مقابل رسید پیمانکاری فرعی"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "برگرداندن اجزاء"
@@ -44606,7 +44667,7 @@ msgstr "تعداد بازگرداندن از انبار مرجوعی"
msgid "Return Raw Material to Customer"
msgstr "برگشت مواد اولیه به مشتری"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44704,8 +44765,8 @@ msgstr "برمی گرداند"
msgid "Revaluation Journals"
msgstr "دفترهای روزنامه تجدید ارزیابی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "مازاد تجدید ارزیابی"
@@ -44937,7 +44998,7 @@ msgstr "نوع ریشه برای {0} باید یکی از دارایی، بده
msgid "Root Type is mandatory"
msgstr "نوع ریشه اجباری است"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root قابل ویرایش نیست."
@@ -44956,8 +45017,8 @@ msgstr "گرد کردن تعداد رایگان"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45137,21 +45198,21 @@ msgstr "ردیف # {0}: نرخ نمیتواند بیشتر از نرخ است
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "ردیف # {0}: مورد برگشتی {1} در {2} {3} وجود ندارد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "ردیف #۱: شناسه توالی برای عملیات {0} باید ۱ باشد."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "ردیف #{0} (جدول پرداخت): مبلغ باید منفی باشد"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "ردیف #{0} (جدول پرداخت): مبلغ باید مثبت باشد"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "ردیف #{0}: یک ورودی سفارش مجدد از قبل برای انبار {1} با نوع سفارش مجدد {2} وجود دارد."
@@ -45172,7 +45233,7 @@ msgstr "ردیف #{0}: انبار پذیرفته شده و انبار مرجوع
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "ردیف #{0}: انبار پذیرفته شده برای مورد پذیرفته شده اجباری است {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "ردیف #{0}: حساب {1} به شرکت {2} تعلق ندارد"
@@ -45233,31 +45294,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "ردیف #{0}: نمیتوان مورد {1} را که قبلاً صورتحساب شده است حذف کرد."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "ردیف #{0}: نمیتوان مورد {1} را که قبلاً تحویل داده شده حذف کرد"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "ردیف #{0}: نمیتوان مورد {1} را که قبلاً دریافت کرده است حذف کرد"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "ردیف #{0}: نمیتوان مورد {1} را که دستور کار به آن اختصاص داده است حذف کرد."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "ردیف #{0}: نمیتوان بیش از مقدار لازم {1} برای مورد {2} در مقابل کارت کار {3} انتقال داد"
@@ -45307,11 +45368,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45319,7 +45380,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45336,7 +45397,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "ردیف #{0}: BOM پیشفرض برای آیتم کالای تمام شده {1} یافت نشد"
@@ -45360,22 +45421,22 @@ msgstr "ردیف #{0}: حساب هزینه برای مورد {1} تنظیم نش
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "ردیف #{0}: مقدار آیتم کالای تمام شده نمیتواند صفر باشد"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "ردیف #{0}: آیتم کالای تمام شده برای آیتم خدماتی {1} مشخص نشده است"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "ردیف #{0}: آیتم کالای تمام شده {1} باید یک آیتم قرارداد فرعی باشد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "ردیف #{0}: کالای تمام شده باید {1} باشد"
@@ -45404,7 +45465,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "ردیف #{0}: از تاریخ نمیتواند قبل از تا تاریخ باشد"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "ردیف #{0}: فیلدهای «از زمان» و «تا زمان» الزامی هستند"
@@ -45412,7 +45473,7 @@ msgstr "ردیف #{0}: فیلدهای «از زمان» و «تا زمان» ا
msgid "Row #{0}: Item added"
msgstr "ردیف #{0}: مورد اضافه شد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45440,7 +45501,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "ردیف #{0}: آیتم {1} یک آیتم ارائه شده توسط مشتری نیست."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "ردیف #{0}: آیتم {1} یک آیتم سریال/دستهای نیست. نمیتواند یک شماره سریال / شماره دسته در مقابل آن داشته باشد."
@@ -45481,7 +45542,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "ردیف #{0}: به دلیل وجود سفارش خرید، مجاز به تغییر تامین کننده نیست"
@@ -45493,10 +45554,6 @@ msgstr "ردیف #{0}: فقط {1} برای رزرو مورد {2} موجود اس
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "ردیف #{0}: عملیات {1} برای تعداد {2} کالای نهایی در دستور کار {3} تکمیل نشده است. لطفاً وضعیت عملیات را از طریق کارت کار {4} به روز کنید."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45518,11 +45575,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "ردیف #{0}: لطفاً انبار زیر مونتاژ را انتخاب کنید"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "ردیف #{0}: لطفاً مقدار سفارش مجدد را تنظیم کنید"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "ردیف #{0}: لطفاً حساب درآمد/هزینه معوق را در ردیف آیتم یا حساب پیشفرض در اصلی شرکت بهروزرسانی کنید."
@@ -45544,15 +45601,15 @@ msgstr "ردیف #{0}: تعداد باید یک عدد مثبت باشد"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "ردیف #{0}: تعداد باید کمتر یا برابر با تعداد موجود برای رزرو (تعداد واقعی - تعداد رزرو شده) {1} برای Iem {2} در مقابل دسته {3} در انبار {4} باشد."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "ردیف #{0}: بازرسی کیفیت {1} برای آیتم ارسال نشده است: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "ردیف #{0}: بازرسی کیفیت {1} برای آیتم {2} رد شد"
@@ -45560,7 +45617,7 @@ msgstr "ردیف #{0}: بازرسی کیفیت {1} برای آیتم {2} رد ش
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "ردیف #{0}: مقدار نمیتواند عدد غیرمثبت باشد. لطفاً مقدار را افزایش دهید یا آیتم {1} را حذف کنید"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "ردیف #{0}: مقدار آیتم {1} نمیتواند صفر باشد."
@@ -45576,18 +45633,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "ردیف #{0}: مقدار قابل رزرو برای مورد {1} باید بیشتر از 0 باشد."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "ردیف #{0}: نرخ باید مانند {1} باشد: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "ردیف #{0}: نوع سند مرجع باید یکی از سفارش خرید، فاکتور خرید یا ورودی روزنامه باشد."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "ردیف #{0}: نوع سند مرجع باید یکی از سفارشهای فروش، فاکتور فروش، ثبت دفتر روزنامه یا اخطار بدهی باشد"
@@ -45626,7 +45683,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "ردیف #{0}: شناسه توالی برای عملیات {3} باید {1} یا {2} باشد."
@@ -45646,19 +45703,19 @@ msgstr "ردیف #{0}: شماره سریال {1} قبلاً انتخاب شده
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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "ردیف #{0}: تاریخ پایان سرویس نمیتواند قبل از تاریخ ارسال فاکتور باشد"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "ردیف #{0}: تاریخ شروع سرویس نمیتواند بیشتر از تاریخ پایان سرویس باشد"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "ردیف #{0}: تاریخ شروع و پایان سرویس برای حسابداری معوق الزامی است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "ردیف #{0}: تنظیم تامین کننده برای مورد {1}"
@@ -45670,19 +45727,19 @@ msgstr "ردیف #{0}: از آنجایی که «ردیابی کالاهای نی
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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45698,6 +45755,10 @@ msgstr "ردیف #{0}: وضعیت اجباری است"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "ردیف #{0}: وضعیت باید {1} برای تخفیف فاکتور {2} باشد"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "ردیف #{0}: موجودی را نمیتوان برای آیتم {1} در مقابل دسته غیرفعال شده {2} رزرو کرد."
@@ -45714,7 +45775,7 @@ msgstr "ردیف #{0}: موجودی در انبار گروهی {1} قابل رز
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "ردیف #{0}: موجودی قبلاً برای مورد {1} رزرو شده است."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "ردیف #{0}: موجودی برای کالای {1} در انبار {2} رزرو شده است."
@@ -45727,7 +45788,7 @@ msgstr "ردیف #{0}: موجودی برای رزرو مورد {1} در مقاب
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "ردیف #{0}: موجودی برای رزرو مورد {1} در انبار {2} موجود نیست."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45739,7 +45800,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr "ردیف #{0}: دسته {1} قبلاً منقضی شده است."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45775,7 +45836,7 @@ msgstr "ردیف #{0}: نمیتوانید از بعد موجودی «{1}» د
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "ردیف #{0}: باید یک دارایی برای آیتم {1} انتخاب کنید."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "ردیف #{0}: {1} نمیتواند برای مورد {2} منفی باشد"
@@ -45791,7 +45852,7 @@ msgstr "ردیف #{0}: {1} برای ایجاد فاکتورهای افتتاحی
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "ردیف #{0}: {1} از {2} باید {3} باشد. لطفاً {1} را به روز کنید یا حساب دیگری را انتخاب کنید."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "ردیف #{0}: مقدار برای آیتم {1} نمیتواند صفر باشد."
@@ -45892,7 +45953,7 @@ msgstr "ردیف #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "ردیف #{}: {} {} وجود ندارد."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "ردیف #{}: {} {} به شرکت {} تعلق ندارد. لطفاً {} معتبر را انتخاب کنید."
@@ -45900,7 +45961,7 @@ msgstr "ردیف #{}: {} {} به شرکت {} تعلق ندارد. لطفاً {}
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "ردیف شماره {0}: انبار مورد نیاز است. لطفاً یک انبار پیشفرض برای مورد {1} و شرکت {2} تنظیم کنید"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "ردیف {0} : عملیات در برابر مواد اولیه {1} مورد نیاز است"
@@ -45908,7 +45969,7 @@ msgstr "ردیف {0} : عملیات در برابر مواد اولیه {1} مو
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "مقدار انتخابی ردیف {0} کمتر از مقدار مورد نیاز است، {1} {2} اضافی مورد نیاز است."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "ردیف {0}# آیتم {1} در جدول «مواد اولیه تامین شده» در {2} {3} یافت نشد"
@@ -45940,11 +46001,11 @@ msgstr "ردیف {0}: مبلغ تخصیص یافته {1} باید کمتر یا
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "ردیف {0}: مبلغ تخصیص یافته {1} باید کمتر یا مساوی با مبلغ پرداخت باقی مانده باشد {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "ردیف {0}: صورتحساب مواد برای آیتم {1} یافت نشد"
@@ -45961,7 +46022,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "ردیف {0}: ضریب تبدیل اجباری است"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "ردیف {0}: مرکز هزینه {1} به شرکت {2} تعلق ندارد"
@@ -45981,7 +46042,7 @@ msgstr "ردیف {0}: واحد پول BOM #{1} باید برابر با ارز
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "ردیف {0}: ورودی بدهی را نمیتوان با یک {1} پیوند داد"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "ردیف {0}: انبار تحویل ({1}) و انبار مشتری ({2}) نمیتوانند یکسان باشند"
@@ -45989,7 +46050,7 @@ msgstr "ردیف {0}: انبار تحویل ({1}) و انبار مشتری ({2})
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "ردیف {0}: تاریخ سررسید در جدول شرایط پرداخت نمیتواند قبل از تاریخ ارسال باشد"
@@ -46034,16 +46095,16 @@ msgstr "ردیف {0}: برای تامین کننده {1}، آدرس ایمیل
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "ردیف {0}: از زمان و تا زمان اجباری است."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "ردیف {0}: از زمان و تا زمان {1} با {2} همپوشانی دارد"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "ردیف {0}: از انبار برای نقل و انتقالات داخلی اجباری است"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "ردیف {0}: از زمان باید کمتر از زمان باشد"
@@ -46059,7 +46120,7 @@ msgstr "ردیف {0}: مرجع نامعتبر {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "ردیف {0}: الگوی مالیات آیتم بر اساس اعتبار و نرخ اعمال شده به روز شد"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "ردیف {0}: نرخ اقلام براساس نرخ ارزشگذاری بهروزرسانی شده است، زیرا یک انتقال داخلی موجودی است"
@@ -46083,7 +46144,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "ردیف {0}: تعداد بسته بندی شده باید برابر با {1} تعداد باشد."
@@ -46151,7 +46212,7 @@ msgstr "ردیف {0}: فاکتور خرید {1} تأثیری بر موجودی
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "ردیف {0}: تعداد نمیتواند بیشتر از {1} برای مورد {2} باشد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "ردیف {0}: مقدار بر حسب واحد اندازهگیری موجودی نمیتواند صفر باشد."
@@ -46163,10 +46224,6 @@ msgstr "ردیف {0}: تعداد باید بیشتر از 0 باشد."
msgid "Row {0}: Quantity cannot be negative."
msgstr "ردیف {0}: مقدار نمیتواند منفی باشد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "ردیف {0}: مقدار برای {4} در انبار {1} در زمان ارسال ورودی موجود نیست ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46175,11 +46232,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "ردیف {0}: Shift را نمیتوان تغییر داد زیرا استهلاک قبلاً پردازش شده است"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "ردیف {0}: آیتم قرارداد فرعی شده برای مواد اولیه اجباری است {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "ردیف {0}: انبار هدف برای نقل و انتقالات داخلی اجباری است"
@@ -46191,11 +46248,11 @@ msgstr "ردیف {0}: وظیفه {1} متعلق به پروژه {2} نیست"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "ردیف {0}: مورد {1}، مقدار باید عدد مثبت باشد"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46203,11 +46260,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "ردیف {0}: برای تنظیم تناوب {1}، تفاوت بین تاریخ و تاریخ باید بزرگتر یا مساوی با {2} باشد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "ردیف {0}: ضریب تبدیل UOM اجباری است"
@@ -46220,11 +46277,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "ردیف {0}: انبار {1} به شرکت {2} متصل است. لطفاً انباری را انتخاب کنید که متعلق به شرکت {3} باشد."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "ردیف {0}: ایستگاه کاری یا نوع ایستگاه کاری برای عملیات {1} اجباری است"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "ردیف {0}: کاربر قانون {1} را در مورد {2} اعمال نکرده است"
@@ -46236,7 +46293,7 @@ msgstr "ردیف {0}: حساب {1} قبلاً برای بعد حسابداری {
msgid "Row {0}: {1} must be greater than 0"
msgstr "ردیف {0}: {1} باید بزرگتر از 0 باشد"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "ردیف {0}: {1} {2} نمیتواند مانند {3} (حساب طرف) {4}"
@@ -46282,7 +46339,7 @@ msgstr "ردیفها در {0} حذف شدند"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "ردیف هایی با سرهای حساب یکسان در دفتر ادغام میشوند"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "ردیفهایی با تاریخ سررسید تکراری در ردیفهای دیگر یافت شد: {0}"
@@ -46290,7 +46347,7 @@ msgstr "ردیفهایی با تاریخ سررسید تکراری در رد
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "ردیفها: {0} دارای \"ثبت پرداخت\" به عنوان reference_type هستند. این نباید به صورت دستی تنظیم شود."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "ردیفها: {0} در بخش {1} نامعتبر است. نام مرجع باید به یک ثبت پرداخت معتبر یا ثبت دفتر روزنامه اشاره کند."
@@ -46322,11 +46379,11 @@ msgstr "نام قانون"
#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:41
msgid "Rule created successfully"
-msgstr ""
+msgstr "قانون با موفقیت ایجاد شد"
#: banking/src/components/features/Settings/Rules/RuleList.tsx:149
msgid "Rule deleted."
-msgstr ""
+msgstr "قانون حذف شد."
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:661
msgid "Rule matched based on transaction description and other criteria."
@@ -46334,23 +46391,23 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:39
msgid "Rule name is required"
-msgstr ""
+msgstr "نام قانون الزامی است"
#: banking/src/components/features/Settings/Rules/RuleList.tsx:174
msgid "Rule priorities updated"
-msgstr ""
+msgstr "اولویتهای قوانین بهروزرسانی شد"
#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:30
msgid "Rule updated."
-msgstr ""
+msgstr "قانون بهروزرسانی شد."
#: banking/src/components/features/Settings/Rules/RuleList.tsx:56
msgid "Rules evaluation completed"
-msgstr ""
+msgstr "ارزیابی قوانین تکمیل شد"
#: banking/src/components/features/Settings/Rules/RuleList.tsx:56
msgid "Rules evaluation started"
-msgstr ""
+msgstr "ارزیابی قوانین آغاز شد"
#: erpnext/public/js/utils/naming_series.js:54
msgid "Rules for configuring series"
@@ -46497,8 +46554,8 @@ msgstr "موجودی ایمنی"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46520,8 +46577,8 @@ msgstr "حالت حقوق و دستمزد"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46535,18 +46592,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "فروش"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "حساب فروش"
@@ -46570,8 +46632,8 @@ msgstr "مشارکت ها و مشوق های فروش"
msgid "Sales Defaults"
msgstr "پیشفرضهای فروش"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "هزینه های فروش"
@@ -46740,11 +46802,11 @@ msgstr "فاکتور فروش توسط کاربر {} ایجاد نشده است"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "فاکتور فروش {0} قبلا ارسال شده است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "فاکتور فروش {0} باید قبل از لغو این سفارش فروش حذف شود"
@@ -46942,25 +47004,25 @@ msgstr "روند سفارش فروش"
msgid "Sales Order required for Item {0}"
msgstr "سفارش فروش برای آیتم {0} لازم است"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "سفارش فروش {0} در مقابل سفارش خرید مشتری {1} وجود دارد. برای مجاز کردن چندین سفارش فروش، {2} را در {3} فعال کنید"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "سفارش فروش {0} ارسال نشده است"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "سفارش فروش {0} معتبر نیست"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "سفارش فروش {0} {1} است"
@@ -47004,6 +47066,7 @@ msgstr "سفارشهای فروش برای تحویل"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47016,7 +47079,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47122,7 +47185,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47215,7 +47278,7 @@ msgstr "ثبت نام فروش"
msgid "Sales Representative"
msgstr "نماینده فروش"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "بازگشت فروش"
@@ -47239,7 +47302,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "الگوی مالیات بر فروش"
@@ -47358,7 +47421,7 @@ msgstr "آیتم مشابه"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "همان کالا و ترکیب انبار قبلا وارد شده است."
@@ -47390,12 +47453,12 @@ msgstr "انبار نگهداری نمونه"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "اندازهی نمونه"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "مقدار نمونه {0} نمیتواند بیشتر از مقدار دریافتی {1} باشد"
@@ -47637,7 +47700,7 @@ msgstr "اسقاط دارایی"
msgid "Scrap Warehouse"
msgstr "انبار ضایعات"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "تاریخ اسقاط نمیتواند قبل از تاریخ خرید باشد"
@@ -47666,7 +47729,7 @@ msgstr "عبارت جستجو نام Param"
#: banking/src/components/common/AccountsDropdown.tsx:155
msgid "Search account..."
-msgstr ""
+msgstr "جستجوی حساب..."
#: erpnext/selling/page/point_of_sale/pos_item_cart.js:323
msgid "Search by customer name, phone, email."
@@ -47682,12 +47745,12 @@ msgstr "جستجو بر اساس کد آیتم، شماره سریال یا با
#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:64
msgid "Search company..."
-msgstr ""
+msgstr "جستجوی شرکت..."
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:338
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:146
msgid "Search transactions"
-msgstr ""
+msgstr "جستجوی تراکنشها"
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
@@ -47756,8 +47819,8 @@ msgstr "نقش ثانویه"
msgid "Secretary"
msgstr "منشی"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "وام های تضمین شده"
@@ -47781,7 +47844,7 @@ msgstr "مشاهده همه تیکتهای باز"
#: banking/src/components/common/AccountsDropdown.tsx:132
#: banking/src/components/common/AccountsDropdown.tsx:148
msgid "Select Account"
-msgstr ""
+msgstr "انتخاب حساب"
#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:23
msgid "Select Accounting Dimension."
@@ -47795,7 +47858,7 @@ msgstr "انتخاب آیتم جایگزین"
msgid "Select Alternative Items for Sales Order"
msgstr "آیتمهای جایگزین را برای سفارش فروش انتخاب کنید"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Attribute Values را انتخاب کنید"
@@ -47837,7 +47900,7 @@ msgstr "انتخاب شرکت"
msgid "Select Company Address"
msgstr "انتخاب آدرس شرکت"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "انتخاب عملیات اصلاحی"
@@ -47873,7 +47936,7 @@ msgstr "Dimension را انتخاب کنید"
msgid "Select Dispatch Address "
msgstr "انتخاب آدرس اعزام "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "کارکنان را انتخاب کنید"
@@ -47898,7 +47961,7 @@ msgstr "انتخاب آیتمها"
msgid "Select Items based on Delivery Date"
msgstr "آیتمها را بر اساس تاریخ تحویل انتخاب کنید"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "انتخاب آیتمها برای بازرسی کیفیت"
@@ -47936,7 +47999,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "تامین کننده احتمالی را انتخاب کنید"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "انتخاب مقدار"
@@ -48011,13 +48074,13 @@ msgstr "یک اولویت پیشفرض را انتخاب کنید."
msgid "Select a Payment Method."
msgstr "یک روش پرداخت انتخاب کنید."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "یک تامین کننده انتخاب کنید"
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:49
msgid "Select a bank account to reconcile"
-msgstr ""
+msgstr "حساب بانکی را برای تطبیق انتخاب کنید"
#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:161
msgid "Select a company"
@@ -48032,9 +48095,9 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1198
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:588
msgid "Select all"
-msgstr ""
+msgstr "انتخاب همه"
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "یک گروه آیتم را انتخاب کنید."
@@ -48050,9 +48113,9 @@ msgstr "برای بارگیری خلاصه دادهها، فاکتور را
msgid "Select an item from each set to be used in the Sales Order."
msgstr "از هر مجموعه یک آیتم را برای استفاده در سفارش فروش انتخاب کنید."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "حداقل یک مقدار از هر یک از ویژگیها انتخاب کنید."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48066,9 +48129,9 @@ msgstr "ابتدا نام شرکت را انتخاب کنید."
#: banking/src/components/ui/form-elements.tsx:159
msgid "Select date"
-msgstr ""
+msgstr "انتخاب تاریخ"
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "دفتر مالی را برای مورد {0} در ردیف {1} انتخاب کنید"
@@ -48085,7 +48148,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1215
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:632
msgid "Select row {0}"
-msgstr ""
+msgstr "انتخاب سطر {0}"
#: erpnext/manufacturing/doctype/bom/bom.js:473
msgid "Select template item"
@@ -48100,7 +48163,7 @@ msgstr "حساب بانکی را برای تطبیق انتخاب کنید."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "ایستگاه کاری پیشفرض را که در آن عملیات انجام میشود، انتخاب کنید. این در BOM ها و دستور کارها واکشی میشود."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "موردی را که باید تولید شود انتخاب کنید."
@@ -48117,7 +48180,7 @@ msgstr "انبار را انتخاب کنید"
msgid "Select the customer or supplier."
msgstr "مشتری یا تامین کننده را انتخاب کنید."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "انتخاب تاریخ"
@@ -48125,6 +48188,12 @@ msgstr "انتخاب تاریخ"
msgid "Select the date and your timezone"
msgstr "تاریخ و منطقه زمانی خود را انتخاب کنید"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "مواد اولیه (آیتمها) مورد نیاز برای تولید آیتم را انتخاب کنید"
@@ -48153,7 +48222,7 @@ msgstr "انتخاب کنید تا مشتری با این فیلدها قابل
msgid "Selected POS Opening Entry should be open."
msgstr "ثبت افتتاحیه POS انتخاب شده باید باز باشد."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "لیست قیمت انتخاب شده باید دارای فیلدهای خرید و فروش باشد."
@@ -48184,30 +48253,30 @@ msgstr "سند انتخاب شده باید در حالت ارسال شده با
msgid "Self delivery"
msgstr "تحویل توسط خود"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "فروش"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "فروش دارایی"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "مقدار فروش"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48460,7 +48529,7 @@ msgstr "شماره های سریال / دسته ای"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48480,7 +48549,7 @@ msgstr "شماره های سریال / دسته ای"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48525,7 +48594,7 @@ msgstr "محدوده شماره سریال"
msgid "Serial No Reserved"
msgstr "شماره سریال رزرو شده"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48665,7 +48734,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "شماره های سریال با موفقیت ایجاد شد"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "شماره های سریال در ورودی های رزرو موجودی رزرو شده اند، قبل از ادامه باید آنها را لغو رزرو کنید."
@@ -48735,7 +48804,7 @@ msgstr "سریال و دسته"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49149,7 +49218,7 @@ msgstr "تنظیم پیشپرداخت و تخصیص (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "تنظیم نرخ پایه به صورت دستی"
@@ -49168,8 +49237,8 @@ msgstr "تنظیم انبار تحویل"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "تنظیم مقدار کالای تمام شده"
@@ -49336,11 +49405,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "حساب موجودی پیشفرض را برای موجودی دائمی تنظیم کنید"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "تنظیم حساب پیشفرض {0} را برای آیتمهای غیر موجودی"
@@ -49372,7 +49441,7 @@ msgstr "تنظیم نرخ آیتم زیر مونتاژ بر اساس BOM"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "اهداف مورد نظر را از نظر گروهی برای این فروشنده تعیین کنید."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "تاریخ شروع برنامهریزی شده را تنظیم کنید (تاریخ تخمینی که در آن میخواهید تولید شروع شود)"
@@ -49483,7 +49552,7 @@ msgid "Setting up company"
msgstr "راهاندازی شرکت"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "تنظیم {0} الزامی است"
@@ -49503,6 +49572,10 @@ msgstr "تنظیمات ماژول فروش"
msgid "Settled"
msgstr "مستقر شده"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49695,7 +49768,7 @@ msgstr "نوع حمل و نقل"
msgid "Shipment details"
msgstr "جزئیات حمل و نقل"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "محموله ها"
@@ -49733,7 +49806,7 @@ msgstr "نام آدرس حمل و نقل"
msgid "Shipping Address Template"
msgstr "الگوی آدرس حمل و نقل"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "آدرس حمل و نقل به {0} تعلق ندارد"
@@ -49876,8 +49949,8 @@ msgstr "بیوگرافی کوتاه برای وب سایت و سایر نشری
msgid "Short-term Investments"
msgstr "سرمایهگذاریهای کوتاهمدت"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -49887,7 +49960,7 @@ msgstr "تعداد کمبود"
#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:85
msgid "Shortcut"
-msgstr ""
+msgstr "میانبر"
#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:70
#: erpnext/selling/report/sales_analytics/sales_analytics.js:103
@@ -50209,7 +50282,7 @@ msgstr "همزمان"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50254,7 +50327,7 @@ msgstr "از یادداشت تحویل صرف نظر کنید"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50296,8 +50369,8 @@ msgstr "صاف کردن ثابت"
msgid "Soap & Detergent"
msgstr "صابون و مواد شوینده"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "نرمافزار"
@@ -50321,7 +50394,7 @@ msgstr "فروخته شده توسط"
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50385,7 +50458,7 @@ msgstr "نام فیلد منبع"
msgid "Source Location"
msgstr "محل منبع"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50394,11 +50467,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50456,7 +50529,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "انبار منبع برای آیتم {0} اجباری است."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50464,24 +50542,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "منبع و مکان هدف نمیتوانند یکسان باشند"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "منبع و انبار هدف نمیتوانند برای ردیف {0} یکسان باشند"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "انبار منبع و هدف باید متفاوت باشد"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "منبع وجوه (بدهی ها)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "انبار منبع برای ردیف {0} اجباری است"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50522,7 +50599,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50530,7 +50607,7 @@ msgid "Split"
msgstr "شکاف"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "تقسیم دارایی"
@@ -50554,7 +50631,7 @@ msgstr "تقسیم از"
msgid "Split Issue"
msgstr "تقسیم مشکل"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "تقسیم تعداد"
@@ -50566,6 +50643,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "تقسیم {0} {1} به ردیفهای {2} طبق شرایط پرداخت"
@@ -50638,13 +50720,13 @@ msgstr "خرید استاندارد"
msgid "Standard Description"
msgstr "شرح استاندارد"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "هزینه های رتبهبندی استاندارد"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "فروش استاندارد"
@@ -50665,8 +50747,8 @@ msgstr "الگوی استاندارد"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "شرایط و ضوابط استاندارد که میتواند به خرید و فروش اضافه شود. مثال: اعتبار پیشنهاد، شرایط پرداخت، ایمنی و استفاده و غیره."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "منابع دارای رتبه استاندارد در {0}"
@@ -50701,7 +50783,7 @@ msgstr "تاریخ شروع نمیتواند قبل از تاریخ فعلی
msgid "Start Date should be lower than End Date"
msgstr "تاریخ شروع باید کمتر از تاریخ پایان باشد"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "شروع کار"
@@ -50781,19 +50863,19 @@ msgstr "موقعیت شروع از لبه بالا"
#. Description Conditions'
#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
msgid "Starts With"
-msgstr ""
+msgstr "شروع می شود با"
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:201
msgid "Starts with"
-msgstr ""
+msgstr "شروع میشود با"
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:120
msgid "Statement Details"
-msgstr ""
+msgstr "جزئیات صورتحساب"
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:151
msgid "Statement File"
-msgstr ""
+msgstr "فایل صورتحساب"
#. Label of the statement_format_section (Section Break) field in DocType 'Bank
#. Statement Import Log'
@@ -50830,7 +50912,7 @@ msgstr "مصور سازی وضعیت"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "وضعیت باید لغو یا تکمیل شود"
@@ -50860,6 +50942,7 @@ msgstr "اطلاعات قانونی و سایر اطلاعات عمومی در
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50868,8 +50951,8 @@ msgstr "موجودی"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50969,6 +51052,16 @@ msgstr "ثبت اختتامیه موجودی {0} برای پردازش در صف
msgid "Stock Closing Log"
msgstr "لاگ اختتامیه موجودی"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50978,10 +51071,6 @@ msgstr "لاگ اختتامیه موجودی"
msgid "Stock Details"
msgstr "جزئیات موجودی"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "ثبتهای موجودی قبلاً برای دستور کار {0} ایجاد شدهاند: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51045,7 +51134,7 @@ msgstr "ثبت موجودی قبلاً در برابر این لیست انتخ
msgid "Stock Entry {0} created"
msgstr "ثبت موجودی {0} ایجاد شد"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "ثبت موجودی {0} ایجاد شد"
@@ -51053,8 +51142,8 @@ msgstr "ثبت موجودی {0} ایجاد شد"
msgid "Stock Entry {0} is not submitted"
msgstr "ثبت موجودی {0} ارسال نشده است"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "مخارج موجودی"
@@ -51132,8 +51221,8 @@ msgstr "سطوح موجودی"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "بدهی های موجودی"
@@ -51236,8 +51325,8 @@ msgstr "تعداد موجودی در مقابل شمارش شماره سریال
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51249,7 +51338,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51261,7 +51350,7 @@ msgstr "تطبیق موجودی"
msgid "Stock Reconciliation Item"
msgstr "آیتم تطبیق موجودی"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "تطبیقهای موجودی"
@@ -51286,9 +51375,9 @@ msgstr "تنظیمات ارسال مجدد موجودی"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51299,7 +51388,7 @@ msgstr "تنظیمات ارسال مجدد موجودی"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51324,10 +51413,10 @@ msgstr "رزرو موجودی"
msgid "Stock Reservation Entries Cancelled"
msgstr "ثبتهای رزرو موجودی لغو شد"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "نوشته های رزرو موجودی ایجاد شد"
@@ -51355,7 +51444,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "عدم تطابق انبار رزرو انبار"
@@ -51395,7 +51484,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51510,7 +51599,7 @@ msgstr "تنظیمات تراکنشهای موجودی"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51643,11 +51732,11 @@ msgstr "موجودی در انبار گروهی {0} قابل رزرو نیست."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "موجودی در انبار گروهی {0} قابل رزرو نیست."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "موجودی با توجه به یادداشتهای تحویل زیر قابل بهروزرسانی نیست: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51702,14 +51791,14 @@ msgstr "سنگ"
msgid "Stop Reason"
msgstr "دلیل توقف"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "دستور کار متوقف شده را نمیتوان لغو کرد، برای لغو، ابتدا آن را لغو کنید"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "مغازه ها"
@@ -51767,7 +51856,7 @@ msgstr "انبار زیر مونتاژ"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52029,7 +52118,7 @@ msgstr "آیتم خدمات سفارش پیمانکاری فرعی"
msgid "Subcontracting Order Supplied Item"
msgstr "آیتم تامین شده سفارش پیمانکاری فرعی"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "سفارش پیمانکاری فرعی {0} ایجاد شد."
@@ -52118,7 +52207,7 @@ msgstr ""
msgid "Subdivision"
msgstr "زیر مجموعه"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "اقدام ارسال نشد"
@@ -52139,7 +52228,7 @@ msgstr "فاکتورهای تولید شده را ارسال کنید"
msgid "Submit Journal Entries"
msgstr "ارسال ثبتهای دفتر روزنامه"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "این دستور کار را برای پردازش بیشتر ارسال کنید."
@@ -52293,7 +52382,7 @@ msgstr "با موفقیت تطبیق کرد"
msgid "Successfully Set Supplier"
msgstr "تامین کننده با موفقیت تنظیم شد"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "UOM موجودی با موفقیت تغییر کرد، لطفاً فاکتورهای تبدیل را برای UOM جدید دوباره تعریف کنید."
@@ -52317,7 +52406,7 @@ msgstr "{0} رکورد با موفقیت درونبُرد شد."
msgid "Successfully linked to Customer"
msgstr "با موفقیت به مشتری پیوند داده شد"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "با موفقیت به تامین کننده پیوند داده شد"
@@ -52347,7 +52436,7 @@ msgstr "پیشنهاد ایجاد یک"
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:876
msgid "Suggested"
-msgstr ""
+msgstr "پیشنهادی"
#: banking/src/components/features/BankReconciliation/TransferModal.tsx:506
msgid "Suggested Transfer to {0}"
@@ -52477,7 +52566,7 @@ msgstr "مقدار تامین شده"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52575,6 +52664,7 @@ msgstr "جزئیات تامین کننده"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52584,7 +52674,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52599,6 +52689,7 @@ msgstr "جزئیات تامین کننده"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52683,7 +52774,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52718,8 +52809,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "شمارههای تأمینکننده"
@@ -52771,7 +52860,7 @@ msgstr "تماس اصلی تامین کننده"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52800,7 +52889,7 @@ msgstr "مقایسه قیمت عرضه کننده"
msgid "Supplier Quotation Item"
msgstr "آیتم پیشفاکتور تامین کننده"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "پیشفاکتور تامین کننده {0} ایجاد شد"
@@ -52889,7 +52978,7 @@ msgstr "نوع تامین کننده"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "انبار تامین کننده"
@@ -52906,17 +52995,12 @@ msgstr "تامین کننده به مشتری تحویل میدهد"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "تامین کننده کالا یا خدمات."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "تامین کننده {0} در {1} یافت نشد"
@@ -52929,8 +53013,8 @@ msgstr "تامین کننده(های)"
msgid "Suppliers"
msgstr "تامین کنندگان"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "لوازم مشمول ارائه شارژ معکوس"
@@ -53021,7 +53105,7 @@ msgstr "همگام سازی شروع شد"
msgid "Synchronize all accounts every hour"
msgstr "هر ساعت همه حسابها را همگام سازی کنید"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "سیستم در حال استفاده"
@@ -53051,7 +53135,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr "سیستم تمامی ثبتها را واکشی خواهد کرد اگر مقدار حد صفر باشد."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "سیستم صورتحساب را بررسی نمیکند زیرا مبلغ مورد {0} در {1} صفر است"
@@ -53072,10 +53156,16 @@ msgstr "خلاصه محاسبات TDS"
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "TDS پرداختنی"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53223,7 +53313,7 @@ msgstr "آدرس انبار هدف"
msgid "Target Warehouse Address Link"
msgstr "لینک آدرس انبار هدف"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "خطای رزرو انبار هدف"
@@ -53231,24 +53321,23 @@ msgstr "خطای رزرو انبار هدف"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "انبار هدف قبل از ارسال الزامی است"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "انبار هدف برای ردیف {0} اجباری است"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53365,8 +53454,8 @@ msgstr "مبلغ مالیات پس از تخفیف (ارز شرکت)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "مقدار مالیات در سطح ردیف (آیتمها) گرد میشود"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "داراییهای مالیاتی"
@@ -53398,7 +53487,6 @@ msgstr "داراییهای مالیاتی"
msgid "Tax Breakup"
msgstr "تفکیک مالیاتی"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53420,7 +53508,6 @@ msgstr "تفکیک مالیاتی"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53436,6 +53523,7 @@ msgstr "تفکیک مالیاتی"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53447,8 +53535,8 @@ msgstr "دسته مالیاتی"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "دسته مالیات به \"کل\" تغییر یافته است زیرا همه آیتمها، آیتمهای غیر موجودی هستند"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53522,7 +53610,7 @@ msgstr "نرخ مالیات %"
msgid "Tax Rates"
msgstr "نرخ مالیات"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "بازپرداخت مالیات بر اساس طرح بازپرداخت مالیات برای گردشگران به گردشگران ارائه میشود"
@@ -53540,7 +53628,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "قانون مالیات"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "تضاد قوانین مالیاتی با {0}"
@@ -53555,7 +53643,7 @@ msgstr "تنظیمات مالیاتی"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "الگوی مالیاتی اجباری است."
@@ -53874,7 +53962,7 @@ msgstr "مالیات ها و هزینه های کسر شده"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "مالیات ها و هزینه های کسر شده (ارز شرکت)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "ردیف مالیات #{0}: {1} نمیتواند کوچکتر از {2} باشد"
@@ -53907,8 +53995,8 @@ msgstr "تکنولوژی"
msgid "Telecommunications"
msgstr "مخابرات"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "هزینه های تلفن"
@@ -53959,13 +54047,13 @@ msgstr "به طور موقت در حالت تعلیق"
msgid "Temporary"
msgstr "موقت"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "حسابهای موقت"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "افتتاح موقت"
@@ -54147,7 +54235,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54246,7 +54334,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "از بسته شماره. فیلد نه باید خالی باشد و نه مقدار آن کمتر از 1 باشد."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "دسترسی به درخواست پیشفاکتور از پورتال غیرفعال است. برای اجازه دسترسی، آن را در تنظیمات پورتال فعال کنید."
@@ -54299,7 +54387,8 @@ msgstr "مدت پرداخت در ردیف {0} احتمالاً تکراری اس
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "لیست انتخاب دارای ورودی های رزرو موجودی نمیتواند به روز شود. اگر نیاز به ایجاد تغییرات دارید، توصیه میکنیم قبل از بهروزرسانی فهرست انتخاب، ورودیهای رزرو موجودی را لغو کنید."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "مقدار هدررفت فرآیند مطابق با مقدار هدررفت فرآیند کارت کارها بازنشانی شده است"
@@ -54315,7 +54404,7 @@ msgstr "شماره سریال ردیف #{0}: {1} در انبار {2} موجود
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "باندل سریال و دسته {0} برای این تراکنش معتبر نیست. «نوع تراکنش» باید به جای «ورودی» در باندل سریال و دسته {0} «خروجی» باشد"
@@ -54351,7 +54440,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "دسته {0} از قبل در {1} {2} رزرو شده است. بنابراین، نمیتوان با {3} {4} که به ازای {5} {6} ایجاد شده است، ادامه داد."
@@ -54359,7 +54448,11 @@ msgstr "دسته {0} از قبل در {1} {2} رزرو شده است. بنابر
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54377,15 +54470,15 @@ msgstr ""
#: banking/src/pages/BankStatementImporter.tsx:155
msgid "The date of the transaction"
-msgstr ""
+msgstr "تاریخ تراکنش"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "BOM پیشفرض برای آن مورد توسط سیستم واکشی میشود. شما همچنین میتوانید BOM را تغییر دهید."
#: banking/src/pages/BankStatementImporter.tsx:170
msgid "The description of the transaction"
-msgstr ""
+msgstr "توضیحات تراکنش"
#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:67
msgid "The difference between from time and To Time must be a multiple of Appointment"
@@ -54412,7 +54505,7 @@ msgstr "فیلد From Shareholder نمیتواند خالی باشد"
msgid "The field To Shareholder cannot be blank"
msgstr "فیلد To Shareholder نمیتواند خالی باشد"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "فیلد {0} در ردیف {1} تنظیم نشده است"
@@ -54453,11 +54546,11 @@ msgstr "داراییهای زیر به طور خودکار ثبتهای ا
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "ویژگیهای حذف شده زیر در گونهها وجود دارد اما در قالب وجود ندارد. میتوانید گونهها را حذف کنید یا ویژگی(ها) را در قالب نگه دارید."
@@ -54478,7 +54571,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr "ردیفهای زیر تکراری هستند:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "{0} زیر ایجاد شد: {1}"
@@ -54505,7 +54598,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "آیتمهای {0} و {1} در {2} زیر موجود هستند:"
@@ -54563,7 +54656,7 @@ msgstr "عملیات {0} نمیتواند عملیات فرعی باشد"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54575,6 +54668,12 @@ msgstr "حساب والد {0} در الگوی آپلود شده وجود ندا
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "حساب درگاه پرداخت در طرح {0} با حساب درگاه پرداخت در این درخواست پرداخت متفاوت است"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54616,7 +54715,7 @@ msgstr "با بهروزرسانی موارد، موجودی رزرو شده
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "موجودی رزرو شده آزاد خواهد شد. آیا مطمئن هستید که میخواهید ادامه دهید؟"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "حساب ریشه {0} باید یک گروه باشد"
@@ -54632,7 +54731,7 @@ msgstr "حساب تغییر انتخاب شده {} به شرکت {} تعلق ن
msgid "The selected item cannot have Batch"
msgstr "مورد انتخاب شده نمیتواند دسته ای داشته باشد"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54665,7 +54764,7 @@ msgstr "اشتراکگذاریها با {0} وجود ندارند"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "موجودی آیتم {0} در انبار {1} در تاریخ {2} منفی بود. برای ثبت نرخ ارزیابی صحیح، باید یک ثبت مثبت {3} قبل از تاریخ {4} و زمان {5} ایجاد کنید. برای جزئیات بیشتر، لطفاً مستندات را مطالعه کنید."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "موجودی برای اقلام و انبارهای زیر رزرو شده است، همان را در {0} تطبیق موجودی لغو کنید: {1}"
@@ -54687,11 +54786,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "تسک به عنوان یک کار پسزمینه در نوبت قرار گرفته است. در صورت وجود هرگونه مشکل در پردازش در پسزمینه، سیستم نظری در مورد خطا در این تطبیق موجودی اضافه میکند و به مرحله پیشنویس باز میگردد."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "تسک به عنوان یک کار پسزمینه در نوبت قرار گرفته است. در صورت وجود هرگونه مشکل در پردازش در پسزمینه، سیستم نظری در مورد خطا در این تطبیق موجودی اضافه میکند و به مرحله ارسال باز میگردد."
@@ -54739,15 +54838,15 @@ msgstr "مقدار {0} بین موارد {1} و {2} متفاوت است"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "مقدار {0} قبلاً به یک مورد موجود {1} اختصاص داده شده است."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "انباری که آیتمهای تمام شده را قبل از ارسال در آن ذخیره میکنید."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "انباری که هنگام شروع تولید، اقلام شما در آن منتقل میشوند. انبار گروهی همچنین میتواند به عنوان انبار در جریان تولید انتخاب شود."
@@ -54755,19 +54854,19 @@ msgstr "انباری که هنگام شروع تولید، اقلام شما د
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) باید برابر با {2} ({3}) باشد"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} با موفقیت ایجاد شد"
@@ -54775,7 +54874,7 @@ msgstr "{0} {1} با موفقیت ایجاد شد"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} با {0} {2} در {3} {4} مطابقت ندارد"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} برای محاسبه هزینه ارزیابی کالای نهایی {2} استفاده میشود."
@@ -54791,7 +54890,7 @@ msgstr "تعمیر و نگهداری یا تعمیرات فعال در براب
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "بین نرخ، تعداد سهام و مبلغ محاسبه شده ناهماهنگی وجود دارد"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54820,13 +54919,13 @@ 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:1177
+#: erpnext/stock/doctype/item/item.js:1161
msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average. "
msgstr ""
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:922
msgid "There are {0} unreconciled transactions before {1}."
-msgstr ""
+msgstr "{0} تراکنش نطبیقنشده قبل از {1} وجود دارد."
#: erpnext/stock/report/item_variant_details/item_variant_details.py:25
msgid "There aren't any item variants for the selected item"
@@ -54858,9 +54957,9 @@ msgstr "هیچ دسته ای در برابر {0} یافت نشد: {1}"
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:924
msgid "There is one unreconciled transaction before {0}."
-msgstr ""
+msgstr "یک تراکنش تطبیقنشده قبل از {0} وجود دارد."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "باید حداقل 1 کالای تمام شده در این ثبت موجودی وجود داشته باشد"
@@ -54878,12 +54977,12 @@ msgstr "هنگام بهروزرسانی حساب بانکی {} هنگام پ
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81
msgid "There was an error while importing the bank statement."
-msgstr ""
+msgstr "هنگام درونبُرد صورتحساب بانکی خطایی رخ داد."
#: banking/src/components/features/ActionLog/ActionLog.tsx:395
#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:88
msgid "There was an error while performing the action."
-msgstr ""
+msgstr "هنگام انجام اقدام خطایی رخ داد."
#: erpnext/accounts/doctype/bank/bank.js:112
#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:119
@@ -54902,7 +55001,7 @@ msgstr "این حساب دارای موجودی '0' به ارز پایه یا ا
#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:73
msgid "This Fiscal Year"
-msgstr ""
+msgstr "این سال مالی"
#: erpnext/stock/doctype/item/item.js:194
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."
@@ -54916,11 +55015,11 @@ msgstr "این آیتم یک گونه {0} (الگو) است."
msgid "This Month's Summary"
msgstr "خلاصه این ماه"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54954,7 +55053,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "این همه کارت های امتیازی مرتبط با این راهاندازی را پوشش میدهد"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "این سند توسط {0} {1} برای مورد {4} بیش از حد مجاز است. آیا در مقابل همان {2} {3} دیگری می سازید؟"
@@ -55057,23 +55156,23 @@ msgstr "این از نظر حسابداری خطرناک تلقی میشود.
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "این برای آیتمهای مواد اولیه است که برای ایجاد کالاهای نهایی استفاده میشود. اگر آیتم یک سرویس اضافی مانند \"شستن\" است که در BOM استفاده میشود، این مورد را علامت نزنید."
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466
msgid "This is not a valid formula. Check the variable used in the formula."
-msgstr ""
+msgstr "این فرمول معتبر نیست. متغیر استفاده شده در فرمول را بررسی کنید."
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:198
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:266
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:279
msgid "This is required"
-msgstr ""
+msgstr "این الزامی است"
#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:620
msgid "This is the bank account entry. You cannot edit it."
@@ -55130,7 +55229,7 @@ msgstr "این برنامه زمانی ایجاد شد که دارایی {0} ا
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "این برنامه زمانی ایجاد شد که دارایی {0} از طریق تعمیر دارایی {1} تعمیر شد."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55138,15 +55237,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "این برنامه زمانی ایجاد شد که دارایی {0} در لغو دارایی با حروف بزرگ {1} بازیابی شد."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "این برنامه زمانی ایجاد شد که دارایی {0} بازیابی شد."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "این برنامه زمانی ایجاد شد که دارایی {0} از طریق فاکتور فروش {1} برگردانده شد."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "این برنامه زمانی ایجاد شد که دارایی {0} اسقاط شد."
@@ -55154,7 +55253,7 @@ msgstr "این برنامه زمانی ایجاد شد که دارایی {0} ا
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55223,7 +55322,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "این امر دسترسی کاربر به سایر رکوردهای کارمندان را محدود میکند"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "این {} به عنوان انتقال مواد در نظر گرفته میشود."
@@ -55334,7 +55433,7 @@ msgstr "زمان به دقیقه"
msgid "Time in mins."
msgstr "زمان به دقیقه."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "لاگ زمان برای {0} {1} مورد نیاز است"
@@ -55443,7 +55542,7 @@ msgstr "برای صورتحساب"
msgid "To Currency"
msgstr "به ارز"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "تا تاریخ نمیتواند قبل از از تاریخ باشد"
@@ -55670,11 +55769,15 @@ msgstr "برای افزودن عملیات، کادر \"با عملیات\" را
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "افزودن مواد اولیه قرارداد فرعی شده در صورت وجود آیتمهای گسترده شده غیرفعال است."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "برای مجاز کردن اضافه صورتحساب، «اضافه صورتحساب مجاز» را در تنظیمات حسابها یا آیتم بهروزرسانی کنید."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "برای اجازه دادن به اضافه دریافت / تحویل، \"اضافه دریافت / تحویل مجاز\" را در تنظیمات موجودی یا آیتم به روز کنید."
@@ -55717,11 +55820,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "برای گنجاندن مالیات در ردیف {0} در نرخ مورد، مالیاتهای ردیف {1} نیز باید لحاظ شود"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "برای ادغام، ویژگیهای زیر باید برای هر دو مورد یکسان باشد"
@@ -55729,7 +55832,7 @@ msgstr "برای ادغام، ویژگیهای زیر باید برای هر
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "برای لغو این مورد، \"{0}\" را در شرکت {1} فعال کنید"
@@ -55754,7 +55857,7 @@ msgstr "برای ارسال فاکتور بدون رسید خرید، لطفاً
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "برای استفاده از یک دفتر مالی متفاوت، لطفاً علامت «شامل داراییهای پیشفرض FB» را بردارید."
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55904,7 +56007,7 @@ msgstr "مجموع تخصیص ها"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56011,12 +56114,12 @@ msgstr "کمیسیون کل"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "تعداد کل تکمیل شده"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56318,7 +56421,7 @@ msgstr "کل مبلغ معوقه"
msgid "Total Paid Amount"
msgstr "کل مبلغ پرداختی"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "کل مبلغ پرداخت در برنامه پرداخت باید برابر با کل / کل گرد شده باشد"
@@ -56330,7 +56433,7 @@ msgstr "مبلغ کل درخواست پرداخت نمیتواند بیشتر
msgid "Total Payments"
msgstr "کل پرداختها"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "مقدار کل برداشتشده {0} بیشتر از مقدار سفارش دادهشده {1} است. میتوانید حد مجاز برداشت اضافی را در تنظیمات موجودی تعیین کنید."
@@ -56613,7 +56716,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "کل درصد تخصیص داده شده برای تیم فروش باید 100 باشد"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "درصد کل مشارکت باید برابر با 100 باشد"
@@ -56788,7 +56891,7 @@ msgstr "تاریخ تراکنش"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56812,11 +56915,11 @@ msgstr "مورد رکورد حذف تراکنش"
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56921,7 +57024,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "تراکنش در برابر دستور کار متوقف شده مجاز نیست {0}"
@@ -56968,11 +57072,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57153,8 +57262,8 @@ msgstr "اطلاعات حمل کننده"
msgid "Transporter Name"
msgstr "نام حمل کننده"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "مخارج سفر"
@@ -57418,6 +57527,7 @@ msgstr "تنظیمات مالیات بر ارزش افزوده امارات مت
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57433,7 +57543,7 @@ msgstr "تنظیمات مالیات بر ارزش افزوده امارات مت
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57494,7 +57604,7 @@ msgstr "جزئیات تبدیل واحد"
msgid "UOM Conversion Factor"
msgstr "ضریب تبدیل UOM"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "ضریب تبدیل واحد ({0} -> {1}) برای آیتم: {2} یافت نشد"
@@ -57507,7 +57617,7 @@ msgstr "ضریب تبدیل UOM در ردیف {0} لازم است"
msgid "UOM Name"
msgstr "نام UOM"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "ضریب تبدیل UOM مورد نیاز برای UOM: {0} در مورد: {1}"
@@ -57579,13 +57689,13 @@ msgstr "نرخ تبدیل {0} تا {1} برای تاریخ کلیدی {2} یاف
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "نمیتوان امتیازی را که از {0} شروع میشود پیدا کرد. شما باید نمرات ثابتی داشته باشید که از 0 تا 100 را پوشش دهد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "قادر به یافتن متغیر نیست:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57666,7 +57776,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57685,7 +57795,7 @@ msgstr "واحد"
msgid "Unit Of Measure"
msgstr "واحد اندازهگیری"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "قیمت واحد"
@@ -57702,7 +57812,7 @@ msgstr "واحد اندازهگیری"
msgid "Unit of Measure (UOM)"
msgstr "واحد اندازهگیری (UOM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "واحد اندازهگیری {0} بیش از یک بار در جدول ضریب تبدیل وارد شده است"
@@ -57847,7 +57957,7 @@ msgstr "ثبتهای تطبیق نگرفته"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57887,12 +57997,12 @@ msgstr "حل نشده"
msgid "Unscheduled"
msgstr "برنامهریزی نشده"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "وام های بدون وثیقه"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58068,7 +58178,7 @@ msgstr "بهروزرسانی آیتمها"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58147,11 +58257,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "بهروزرسانی گونهها..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "بهروزرسانی وضعیت دستور کار"
@@ -58353,7 +58463,7 @@ msgstr "استفاده از پیشنهاد"
msgid "Use Transaction Date Exchange Rate"
msgstr "استفاده از نرخ تبدیل تاریخ تراکنش"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "از نامی استفاده کنید که با نام پروژه قبلی متفاوت باشد"
@@ -58395,7 +58505,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "انجمن کاربر"
@@ -58459,6 +58569,11 @@ msgstr "اگر کاربران بخواهند نرخ ورودی (تنظیم با
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58481,8 +58596,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "استفاده از موجودی منفی، ارزش گذاری FIFO / میانگین متحرک را زمانی که موجودی کالا منفی است، غیرفعال میکند."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "هزینه های آب و برق"
@@ -58492,7 +58607,7 @@ msgstr "هزینه های آب و برق"
msgid "VAT Accounts"
msgstr "حسابهای مالیات بر ارزش افزوده"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "مبلغ VAT (AED)"
@@ -58502,12 +58617,12 @@ msgid "VAT Audit Report"
msgstr "گزارش حسابرسی مالیات بر ارزش افزوده"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "مالیات بر ارزش افزوده هزینه ها و سایر ورودی ها"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "مالیات بر ارزش افزوده بر فروش و سایر خروجی ها"
@@ -58701,7 +58816,6 @@ msgstr "روش ارزش گذاری"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58717,14 +58831,12 @@ msgstr "روش ارزش گذاری"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "نرخ ارزشگذاری"
@@ -58732,19 +58844,19 @@ msgstr "نرخ ارزشگذاری"
msgid "Valuation Rate (In / Out)"
msgstr "نرخ ارزشگذاری (ورودی/خروجی)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "نرخ ارزشگذاری وجود ندارد"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "نرخ ارزشگذاری برای آیتم {0}، برای انجام ثبتهای حسابداری برای {1} {2} لازم است."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "در صورت ثبت موجودی افتتاحیه، نرخ ارزشگذاری الزامی است"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "نرخ ارزشگذاری الزامی است برای آیتم {0} در ردیف {1}"
@@ -58754,7 +58866,7 @@ msgstr "نرخ ارزشگذاری الزامی است برای آیتم {0}
msgid "Valuation and Total"
msgstr "ارزش گذاری و کل"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "نرخ ارزشگذاری برای آیتمهای ارائه شده توسط مشتری صفر تعیین شده است."
@@ -58768,7 +58880,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "هزینههای نوع ارزیابی را نمیتوان بهعنوان فراگیر علامتگذاری کرد"
@@ -58780,7 +58892,7 @@ msgstr "هزینههای نوع ارزیابی را نمیتوان به
msgid "Value (G - D)"
msgstr "مقدار (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58899,12 +59011,12 @@ msgid "Variance ({})"
msgstr "واریانس ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "گونه"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "خطای ویژگی گونه"
@@ -58923,7 +59035,7 @@ msgstr "BOM گونه"
msgid "Variant Based On"
msgstr "گونه بر اساس"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "گونه بر اساس قابل تغییر نیست"
@@ -58941,7 +59053,7 @@ msgstr "فیلد گونه"
msgid "Variant Item"
msgstr "آیتم گونه"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "آیتمهای گونه"
@@ -58952,7 +59064,7 @@ msgstr "آیتمهای گونه"
msgid "Variant Of"
msgstr "گونهای از"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "ایجاد گونه در صف قرار گرفته است."
@@ -59089,7 +59201,7 @@ msgstr "مشاهده دفترهای روزنامه سود/زیان تبدیل"
#: banking/src/pages/BankStatementImporter.tsx:135
msgid "View Instructions"
-msgstr ""
+msgstr "مشاهده دستورالعملها"
#: erpnext/crm/doctype/campaign/campaign.js:15
msgid "View Leads"
@@ -59168,11 +59280,11 @@ msgstr ""
#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:55
msgid "View all reconciliation actions taken in this session"
-msgstr ""
+msgstr "مشاهده تمام اقدامات تطبیق صورتگرفته در این جلسه"
#: banking/src/components/features/ActionLog/ActionLog.tsx:60
msgid "View all reconciliation actions taken in this session."
-msgstr ""
+msgstr "مشاهدهٔ تمام اقدامات تطبیق صورتگرفته در این جلسه."
#. Label of the view_attachments (Check) field in DocType 'Project User'
#: erpnext/projects/doctype/project_user/project_user.json
@@ -59246,7 +59358,7 @@ msgstr "سند مالی"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "# سند مالی"
@@ -59318,7 +59430,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59392,7 +59504,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59419,7 +59531,7 @@ msgstr "زیرنوع سند مالی"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59599,8 +59711,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "انبار در برابر حساب {0} پیدا نشد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "انبار مورد نیاز برای موجودی مورد {0}"
@@ -59625,7 +59737,7 @@ msgstr "انبار {0} متعلق به شرکت {1} نیست"
msgid "Warehouse {0} does not exist"
msgstr "انبار {0} وجود ندارد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "انبار {0} برای سفارش فروش {1} مجاز نیست، باید {2} باشد"
@@ -59762,11 +59874,11 @@ msgstr "هشدار: یک {0} # {1} دیگر در برابر ثبت موجودی
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "هشدار: تعداد مواد درخواستی کمتر از حداقل تعداد سفارش است"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "هشدار: سفارش فروش {0} در مقابل سفارش خرید مشتری {1} وجود دارد"
@@ -59856,7 +59968,7 @@ msgstr "طول موج بر حسب کیلومتر"
msgid "Wavelength In Megametres"
msgstr "طول موج بر حسب مگا متر"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59925,7 +60037,7 @@ msgstr "وبسایت:"
msgid "Week of the year"
msgstr "هفته سال"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "هفته {0} {1}"
@@ -60055,7 +60167,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "هنگام ایجاد یک آیتم، با وارد کردن یک مقدار برای این فیلد، به طور خودکار قیمت آیتم در قسمت پشتیبان ایجاد میشود."
@@ -60065,7 +60177,7 @@ msgstr "هنگام ایجاد یک آیتم، با وارد کردن یک مقد
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60075,11 +60187,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr "وقتی هزینهای را از قبل پرداخت میکنید (مثل بیمه سالانه)، هزینه در اینجا نگهداری میشود و به تدریج در طول زمان به رسمیت شناخته میشود"
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "هنگام ایجاد حساب برای شرکت فرزند {0}، حساب والد {1} به عنوان یک حساب دفتر یافت شد."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "هنگام ایجاد حساب برای شرکت فرزند {0}، حساب والد {1} یافت نشد. لطفاً حساب والد را در نمودار حسابهای مربوط ایجاد کنید"
@@ -60125,7 +60237,7 @@ msgstr "برای گونهها نیز اعمال خواهد شد مگر این
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:616
#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:621
msgid "Will be auto-populated"
-msgstr ""
+msgstr "بهطور خودکار پر خواهد شد"
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:259
msgid "Wire Transfer"
@@ -60224,7 +60336,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "در جریان تولید"
@@ -60261,7 +60373,7 @@ msgstr "در جریان تولید"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60295,7 +60407,7 @@ msgstr "مواد مصرفی دستور کار"
msgid "Work Order Item"
msgstr "آیتم دستور کار"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "عدم تطابق دستور کار"
@@ -60336,19 +60448,23 @@ msgstr "خلاصه دستور کار"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "دستور کار به دلایل زیر ایجاد نمیشود: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "دستور کار را نمیتوان در برابر یک الگوی آیتم مطرح کرد"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "دستور کار {0} بوده است"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "دستور کار ایجاد نشد"
@@ -60357,16 +60473,16 @@ msgstr "دستور کار ایجاد نشد"
msgid "Work Order {0} created"
msgstr "دستور کار {0} ایجاد شد"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "دستور کار {0}: کارت کار برای عملیات {1} یافت نشد"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "دستور کارها"
@@ -60391,7 +60507,7 @@ msgstr "در جریان تولید"
msgid "Work-in-Progress Warehouse"
msgstr "انبار در جریان تولید"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "قبل از ارسال، انبار در جریان تولید الزامی است"
@@ -60439,7 +60555,7 @@ msgstr "ساعات کاری"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60530,14 +60646,14 @@ msgstr "ایستگاه های کاری"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "نوشتن خاموش"
@@ -60642,7 +60758,7 @@ msgstr "ارزش نوشته شده"
msgid "Wrong Company"
msgstr "شرکت اشتباه"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "گذرواژه اشتباه"
@@ -60698,11 +60814,11 @@ msgstr "تاریخ شروع یا تاریخ پایان سال با {0} همپو
msgid "You are importing data for the code list:"
msgstr "شما در حال درونبرد دادهها برای لیست کد هستید:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "شما مجاز به بهروزرسانی طبق شرایط تنظیم شده در {} گردش کار نیستید."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "شما مجاز به افزودن یا بهروزرسانی ورودیها قبل از {0} نیستید"
@@ -60710,7 +60826,7 @@ msgstr "شما مجاز به افزودن یا بهروزرسانی ورود
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "شما مجاز به انجام/ویرایش تراکنشهای موجودی برای کالای {0} در انبار {1} قبل از این زمان نیستید."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "شما مجاز به تنظیم مقدار منجمد نیستید"
@@ -60738,7 +60854,7 @@ msgstr "همچنین میتوانید حساب پیشفرض «کارهای
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr "همچنین میتوانید با قرار دادن متغیرها بین (.) نقطه، از آنها در نام سری استفاده کنید"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "میتوانید حساب مادر را به حساب ترازنامه تغییر دهید یا حساب دیگری را انتخاب کنید."
@@ -60779,11 +60895,11 @@ msgstr "میتوانید آن را به عنوان نام ماشین یا ن
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "میتوانید از {0} برای تطبیق با {1} بعداً استفاده کنید."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "از آنجایی که دستور کار بسته شده است، نمیتوانید هیچ تغییری در کارت کار ایجاد کنید."
@@ -60807,7 +60923,7 @@ msgstr "شما نمیتوانید یک {0} در دوره حسابداری ب
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "شما نمیتوانید هیچ ورودی حسابداری را در دوره حسابداری بسته شده ایجاد یا لغو کنید {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "تا این تاریخ نمیتوانید هیچ ثبت حسابداری ایجاد/اصلاح کنید."
@@ -60868,7 +60984,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "شما مجوز {} مورد در {} را ندارید."
@@ -60880,19 +60996,19 @@ msgstr "امتیاز وفاداری کافی برای پسخرید نداری
msgid "You don't have enough points to redeem."
msgstr "امتیاز کافی برای بازخرید ندارید."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr "شما اجازه بهروزرسانی فیلد تعداد دریافتی برای آیتم {0} را ندارید"
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60904,7 +61020,7 @@ msgstr "هنگام ایجاد فاکتورهای افتتاحیه {} خطا دا
msgid "You have already selected items from {0} {1}"
msgstr "شما قبلاً مواردی را از {0} {1} انتخاب کرده اید"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "شما برای همکاری در پروژه {0} دعوت شده اید."
@@ -60928,7 +61044,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "برای حفظ سطوح سفارش مجدد، باید سفارش مجدد خودکار را در تنظیمات موجودی فعال کنید."
@@ -60944,7 +61060,7 @@ msgstr "قبل از افزودن یک آیتم باید مشتری را انتخ
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "برای اینکه بتوانید این سند را لغو کنید، باید ثبت اختتامیه POS {} را لغو کنید."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60991,11 +61107,11 @@ msgstr "کد پستی"
msgid "Zero Balance"
msgstr "تراز صفر"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "دارای امتیاز صفر"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "مقدار صفر"
@@ -61017,13 +61133,13 @@ msgstr "فایل فشرده"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[مهم] [ERPNext] خطاهای سفارش مجدد خودکار"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "«نرخ های منفی برای آیتمها مجاز است»"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
-msgstr ""
+msgstr "پس از"
#: erpnext/edi/doctype/code_list/code_list_import.js:58
msgid "as Code"
@@ -61062,7 +61178,7 @@ msgid "cannot be greater than 100"
msgstr "نمیتواند بیشتر از 100 باشد"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61211,7 +61327,7 @@ msgstr "برنامه پرداخت نصب نشده است لطفاً آن را ا
msgid "per hour"
msgstr "در ساعت"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "انجام هر یک از موارد زیر:"
@@ -61244,7 +61360,7 @@ msgstr "دریافت شده از"
msgid "reconciled"
msgstr "تطبیق کرد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "برگردانده شده"
@@ -61279,7 +61395,7 @@ msgstr "rgt"
msgid "sandbox"
msgstr "جعبه شنی"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "فروخته شد"
@@ -61287,8 +61403,8 @@ msgstr "فروخته شد"
msgid "subscription is already cancelled."
msgstr "اشتراک در حال حاضر لغو شده است."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61306,7 +61422,7 @@ msgstr "عنوان"
msgid "to"
msgstr "به"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "برای تخصیص مبلغ این فاکتور برگشتی قبل از لغو آن."
@@ -61333,7 +61449,7 @@ msgstr "تراکنشها انتخاب شدند"
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "منحصر به فرد به عنوان مثال SAVE20 برای استفاده از تخفیف"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr "تعداد تحویل داده شده برای آیتم {0} به {1} بهروزرسانی شد"
@@ -61355,7 +61471,7 @@ msgstr "از طریق BOM ابزار بهروزرسانی"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "باید در جدول حسابها، حساب سرمایه در جریان را انتخاب کنید"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} \"{1}\" غیرفعال است"
@@ -61363,7 +61479,7 @@ msgstr "{0} \"{1}\" غیرفعال است"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} «{1}» در سال مالی {2} نیست"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) نمیتواند بیشتر از مقدار برنامهریزی شده ({2}) در دستور کار {3} باشد"
@@ -61371,7 +61487,7 @@ msgstr "{0} ({1}) نمیتواند بیشتر از مقدار برنامه
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} داراییها را ارسال کرده است. برای ادامه، آیتم {2} را از جدول حذف کنید."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} حساب در مقابل مشتری پیدا نشد {1}."
@@ -61404,11 +61520,11 @@ msgstr "{0} سری نامگذاری"
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} شماره {1} قبلاً در {2} {3} استفاده شده است"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} عملیات: {1}"
@@ -61416,7 +61532,7 @@ msgstr "{0} عملیات: {1}"
msgid "{0} Request for {1}"
msgstr "درخواست {0} برای {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} نگهداری نمونه بر اساس دسته است، لطفاً برای نگهداری نمونه آیتم، شماره دسته را بررسی کنید"
@@ -61504,11 +61620,11 @@ msgstr "{0} ایجاد شد"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "ارز {0} باید با واحد پول پیشفرض شرکت یکسان باشد. لطفا حساب دیگری را انتخاب کنید."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} در حال حاضر دارای {1} کارت امتیازی تامینکننده است و سفارشهای خرید به این تامینکننده باید با احتیاط صادر شوند."
@@ -61520,7 +61636,7 @@ msgstr "{0} در حال حاضر دارای {1} کارت امتیازی تامی
msgid "{0} does not belong to Company {1}"
msgstr "{0} متعلق به شرکت {1} نیست"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} متعلق به شرکت {1} نیست."
@@ -61529,7 +61645,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} دو بار در مالیات آیتم وارد شد"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} دو بار {1} در مالیات آیتم وارد شد"
@@ -61554,7 +61670,7 @@ msgstr "{0} با موفقیت ارسال شد"
msgid "{0} hours"
msgstr "{0} ساعت"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} در ردیف {1}"
@@ -61576,7 +61692,7 @@ msgstr "{0} چندین بار در ردیف ها اضافه میشود: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} در حال حاضر برای {1} در حال اجرا است"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} مسدود شده است بنابراین این تراکنش نمیتواند ادامه یابد"
@@ -61584,12 +61700,12 @@ msgstr "{0} مسدود شده است بنابراین این تراکنش نمی
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} در پیشنویس است. قبل از ایجاد دارایی، آن را ارسال کنید."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} برای آیتم {1} اجباری است"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} برای حساب {1} اجباری است"
@@ -61597,7 +61713,7 @@ msgstr "{0} برای حساب {1} اجباری است"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای {1} تا {2} ایجاد نشده باشد"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای {1} تا {2} ایجاد نشده باشد."
@@ -61605,7 +61721,7 @@ msgstr "{0} اجباری است. شاید رکورد تبدیل ارز برای
msgid "{0} is not a CSV file."
msgstr "{0} یک فایل CSV نیست."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} یک حساب بانکی شرکت نیست"
@@ -61613,7 +61729,7 @@ msgstr "{0} یک حساب بانکی شرکت نیست"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} یک گره گروه نیست. لطفاً یک گره گروه را به عنوان مرکز هزینه والد انتخاب کنید"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} یک آیتم موجودی نیست"
@@ -61653,27 +61769,27 @@ msgstr "{0} تا {1} در انتظار است"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} مورد در حال انجام است"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} آیتم در طول فرآیند گم شده است."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} آیتم تولید شد"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61681,7 +61797,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} باید در سند برگشتی منفی باشد"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} مجاز به معامله با {1} نیست. لطفاً شرکت را تغییر دهید یا شرکت را در بخش \"مجاز برای معامله با\" در رکورد مشتری اضافه کنید."
@@ -61697,7 +61813,7 @@ msgstr "پارامتر {0} نامعتبر است"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} ثبتهای پرداخت را نمیتوان با {1} فیلتر کرد"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} تعداد مورد {1} در انبار {2} با ظرفیت {3} در حال دریافت است."
@@ -61710,7 +61826,7 @@ msgstr "{0} تا {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr "{0} تراکنشها به سیستم درونبُرد خواهند شد. لطفاً جزئیات زیر را بررسی کرده و برای ادامه روی دکمه «درونبُرد» کلیک کنید."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} واحد برای مورد {1} در انبار {2} رزرو شده است، لطفاً همان را در {3} تطبیق موجودی لغو کنید."
@@ -61726,16 +61842,16 @@ msgstr ""
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} واحد از {1} در {2} با ابعاد موجودی: {3} در {4} {5} برای {6} جهت تکمیل تراکنش مورد نیاز است."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} در {3} {4} برای {5} نیاز است."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} در {3} {4} نیاز است."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "برای تکمیل این تراکنش به {0} واحد از {1} در {2} نیاز است."
@@ -61747,7 +61863,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} شماره سریال های معتبر برای آیتم {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} گونه ایجاد شد."
@@ -61763,7 +61879,7 @@ msgstr "{0} به عنوان تخفیف داده میشود."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61801,8 +61917,8 @@ msgstr "{0} {1} قبلاً به طور کامل پرداخت شده است."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} قبلاً تا حدی پرداخت شده است. لطفاً از دکمه «دریافت صورتحساب معوق» یا «دریافت سفارشهای معوق» برای دریافت آخرین مبالغ معوق استفاده کنید."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} اصلاح شده است. لطفا رفرش کنید."
@@ -61912,7 +62028,7 @@ msgstr "{0} {1}: حساب {2} غیرفعال است"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: ورود حسابداری برای {2} فقط به ارز انجام میشود: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: مرکز هزینه برای مورد {2} اجباری است"
@@ -61961,8 +62077,8 @@ msgstr "{0}% از ارزش کل فاکتور به عنوان تخفیف داده
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{1} {0} نمیتواند پس از تاریخ پایان مورد انتظار {2} باشد."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}، عملیات {1} را قبل از عملیات {2} تکمیل کنید."
@@ -61982,11 +62098,11 @@ msgstr "{0}: DocType محافظتشده"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: DocType مجازی (بدون جدول پایگاه داده)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} متعلق به شرکت: {2} نیست"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} وجود ندارد"
@@ -61994,11 +62110,11 @@ msgstr "{0}: {1} وجود ندارد"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} وجود ندارد"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} یک حساب گروه است."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} باید کمتر از {2} باشد"
@@ -62010,7 +62126,7 @@ msgstr "{count} دارایی برای {item_code} ایجاد شد"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} لغو یا بسته شدهه است."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "اندازه نمونه {item_name} ({sample_size}) نمیتواند بیشتر از مقدار مورد قبول ({accepted_quantity}) باشد."
@@ -62022,7 +62138,7 @@ msgstr "{ref_doctype} {ref_name} {status} است."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} را نمیتوان لغو کرد زیرا امتیازهای وفاداری به دست آمده استفاده شده است. ابتدا {} خیر {} را لغو کنید"
diff --git a/erpnext/locale/fr.po b/erpnext/locale/fr.po
index 97b23eb5dd4..c977cd2e41a 100644
--- a/erpnext/locale/fr.po
+++ b/erpnext/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-20 21:03\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Sous-Ruche"
msgid " Summary"
msgstr " Résumé"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "Un \"article fourni par un client\" ne peut pas être également un article d'achat"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "Un \"article fourni par un client\" ne peut pas avoir de taux de valorisation"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "'Est un Actif Immobilisé’ doit être coché car il existe une entrée d’Actif pour cet article"
@@ -268,11 +268,11 @@ msgstr "% d'articles livrés par rapport à cette liste de sélection"
msgid "% of materials delivered against this Sales Order"
msgstr "% de matériaux livrés par rapport à cette commande"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Compte' dans la section comptabilité du client {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "Autoriser les commandes multiples contre un bon de commande du client'"
@@ -284,7 +284,7 @@ msgstr "'Basé sur' et 'Groupé par' ne peuvent pas être identiques"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Jours Depuis La Dernière Commande' doit être supérieur ou égal à zéro"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Compte {0} par défaut' dans la société {1}"
@@ -302,7 +302,7 @@ msgstr "'Date début' est requise"
msgid "'From Date' must be after 'To Date'"
msgstr "La ‘Du (date)’ doit être antérieure à la ‘Au (date) ’"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'A un Numéro de Série' ne peut pas être 'Oui' pour un article non géré en stock"
@@ -314,9 +314,9 @@ msgstr "L'option 'Inspection requise avant la livraison' est désactivée pour l
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "L'option 'Inspection requise avant l'achat' est désactivée pour l'article {0}, il n'est pas nécessaire de créer l'inspection qualité."
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Ouverture'"
@@ -346,8 +346,8 @@ msgstr "Le compte « {0} » est déjà utilisé par {1}. Utilisez un autre com
msgid "'{0}' has been already added."
msgstr "'{0}' a déjà été ajouté."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "« {0} » devrait être dans la devise de l'entreprise {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 jours"
msgid "90 Above"
msgstr "90 et plus"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -787,7 +787,7 @@ msgstr "Paramètres
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "La date de compensation doit être postérieure à la date du chèque pour les lignes : {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -848,7 +848,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -921,11 +921,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr "Vos raccourcis "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -970,7 +970,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A-C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Un Groupe de Clients existe avec le même nom, veuillez changer le nom du Client ou renommer le Groupe de Clients"
@@ -1134,11 +1134,11 @@ msgstr "Abréviation"
msgid "Abbreviation"
msgstr "Abréviation"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Abréviation déjà utilisée pour une autre société"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Abréviation est obligatoire"
@@ -1146,7 +1146,7 @@ msgstr "Abréviation est obligatoire"
msgid "Abbreviation: {0} must appear only once"
msgstr "Abréviation: {0} ne doit apparaître qu'une seule fois"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Au-dessus"
@@ -1200,7 +1200,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Quantité acceptée en UOM de Stock"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Quantité Acceptée"
@@ -1236,7 +1236,7 @@ msgstr "La clé d'accès est requise pour le fournisseur de service : {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Selon CEFACT/ICG/2010/IC013 ou CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1354,8 +1354,8 @@ msgstr "Compte comptable principal"
msgid "Account Manager"
msgstr "Gestionnaire de la comptabilité"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Compte comptable manquant"
@@ -1373,7 +1373,7 @@ msgstr "Compte comptable manquant"
msgid "Account Name"
msgstr "Nom du Compte"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Compte non trouvé"
@@ -1386,7 +1386,7 @@ msgstr "Compte non trouvé"
msgid "Account Number"
msgstr "Numéro de compte"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Numéro de compte {0} déjà utilisé dans le compte {1}"
@@ -1425,7 +1425,7 @@ msgstr "Sous-type de compte"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1441,11 +1441,11 @@ msgstr "Type de compte"
msgid "Account Value"
msgstr "Valeur du compte"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Le solde du compte est déjà Créditeur, vous n'êtes pas autorisé à mettre en 'Solde Doit Être' comme 'Débiteur'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Le solde du compte est déjà débiteur, vous n'êtes pas autorisé à définir 'Solde Doit Être' comme 'Créditeur'"
@@ -1512,15 +1512,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Un compte avec des enfants ne peut pas être converti en grand livre"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Les comptes avec des nœuds enfants ne peuvent pas être défini comme grand livre"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Un compte contenant une transaction ne peut pas être converti en groupe"
@@ -1528,8 +1528,8 @@ msgstr "Un compte contenant une transaction ne peut pas être converti en groupe
msgid "Account with existing transaction can not be deleted"
msgstr "Un compte contenant une transaction ne peut pas être supprimé"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Un compte contenant une transaction ne peut pas être converti en grand livre"
@@ -1537,11 +1537,11 @@ msgstr "Un compte contenant une transaction ne peut pas être converti en grand
msgid "Account {0} added multiple times"
msgstr "Compte {0} ajouté plusieurs fois"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1549,11 +1549,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Le compte {0} n'appartient pas à la société : {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Compte {0} n'existe pas"
@@ -1569,15 +1569,15 @@ msgstr "Le Compte {0} ne correspond pas à la Société {1} dans le Mode de Comp
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Le compte {0} n'appartient pas à la société {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Le compte {0} existe dans la société mère {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Le compte {0} est ajouté dans la société enfant {1}."
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1585,7 +1585,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr "Le compte {0} est gelé"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Le compte {0} est invalide. La Devise du Compte doit être {1}"
@@ -1593,19 +1593,19 @@ msgstr "Le compte {0} est invalide. La Devise du Compte doit être {1}"
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Compte {0}: Le Compte parent {1} ne peut pas être un grand livre"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Compte {0}: Le Compte parent {1} n'appartient pas à l'entreprise: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Compte {0}: Le Compte parent {1} n'existe pas"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Compte {0}: Vous ne pouvez pas assigner un compte comme son propre parent"
@@ -1621,7 +1621,7 @@ msgstr "Compte : {0} peut uniquement être mis à jour via les Mouvements de Sto
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Compte: {0} n'est pas autorisé sous Saisie du paiement."
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Compte : {0} avec la devise : {1} ne peut pas être sélectionné"
@@ -1906,8 +1906,8 @@ msgstr "Écritures Comptables"
msgid "Accounting Entry for Asset"
msgstr "Ecriture comptable pour l'actif"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1931,8 +1931,8 @@ msgstr "Écriture comptable pour le service"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Ecriture comptable pour stock"
@@ -1941,7 +1941,7 @@ msgstr "Ecriture comptable pour stock"
msgid "Accounting Entry for {0}"
msgstr "Entrée comptable pour {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Écriture Comptable pour {0}: {1} ne peut être effectuée qu'en devise: {2}"
@@ -1996,7 +1996,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2009,14 +2008,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Comptes"
@@ -2046,8 +2044,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2147,15 +2145,15 @@ msgstr "Le tableau de comptes ne peut être vide."
msgid "Accounts to Merge"
msgstr "Comptes à fusionner"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Amortissement Cumulé"
@@ -2320,7 +2318,7 @@ msgstr "Actions réalisées"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2444,7 +2442,7 @@ msgstr "Date de Fin Réelle"
msgid "Actual End Date (via Timesheet)"
msgstr "Date de Fin Réelle (via la Feuille de Temps)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2566,7 +2564,7 @@ msgstr "Temps Réel (en Heures)"
msgid "Actual qty in stock"
msgstr "Qté réelle en stock"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Le type de taxe réel ne peut pas être inclus dans le prix de l'Article à la ligne {0}"
@@ -2575,7 +2573,7 @@ msgstr "Le type de taxe réel ne peut pas être inclus dans le prix de l'Article
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Ajouter / Modifier Prix"
@@ -3074,7 +3072,7 @@ msgstr "Information additionnelle"
msgid "Additional Information updated successfully."
msgstr "Informations supplémentaires mises à jour avec succès."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3097,7 +3095,7 @@ msgstr "Coût d'Exploitation Supplémentaires"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3105,11 +3103,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Informations supplémentaires concernant le client."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3255,11 +3248,6 @@ msgstr "L'adresse doit être liée à une entreprise. Veuillez ajouter une ligne
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresse utilisée pour déterminer la catégorie de taxe dans les transactions"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Ajustement pour"
@@ -3272,8 +3260,8 @@ msgstr "Ajustement basé sur le taux de la facture d'achat"
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Charges Administratives"
@@ -3341,7 +3329,7 @@ msgstr "Statut de l'acompte"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Paiements Anticipés"
@@ -3461,7 +3449,7 @@ msgstr "Contrepartie"
msgid "Against Blanket Order"
msgstr "Contre une ordonnance générale"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3603,11 +3591,11 @@ msgstr "Âge"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Age (jours)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Âge ({0})"
@@ -3757,21 +3745,21 @@ msgstr "Tous les Groupes Client"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Tous les départements"
@@ -3851,7 +3839,7 @@ msgstr "Tous les groupes de fournisseurs"
msgid "All Territories"
msgstr "Tous les territoires"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Tous les entrepôts"
@@ -3865,6 +3853,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Toutes les communications, celle-ci et celles au dessus de celle-ci incluses, doivent être transférées dans le nouveau ticket."
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Tous les articles sont déjà demandés"
@@ -3873,23 +3866,23 @@ msgstr "Tous les articles sont déjà demandés"
msgid "All items have already been Invoiced/Returned"
msgstr "Tous les articles ont déjà été facturés / retournés"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Tous les articles ont déjà été transférés pour cet ordre de fabrication."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3903,11 +3896,11 @@ msgstr "Tous les commentaires et les courriels seront copiés d'un document à u
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Tous ces articles ont déjà été facturés / retournés"
@@ -3926,7 +3919,7 @@ msgstr "Allouer"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Allouer automatiquement les avances (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Allouer le montant du paiement"
@@ -3936,7 +3929,7 @@ msgstr "Allouer le montant du paiement"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Attribuer le paiement en fonction des conditions de paiement"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3966,7 +3959,7 @@ msgstr "Alloué"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4023,7 +4016,7 @@ msgstr "Qté allouée"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4087,7 +4080,7 @@ msgstr "Autoriser les retours"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4210,16 +4203,6 @@ msgstr "Autoriser la réinitialisation du contrat de niveau de service à partir
msgid "Allow Sales"
msgstr "Autoriser à la vente"
-#. 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 "Autoriser la création de factures de vente sans bon de livraison"
-
-#. 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 "Autoriser la création de factures de vente sans commande client"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4345,6 +4328,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4421,10 +4414,8 @@ msgstr "Articles autorisés"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Autorisé à faire affaire avec"
@@ -4436,6 +4427,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4477,8 +4473,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4719,7 +4715,7 @@ msgstr "Toujours demander"
msgid "Amount"
msgstr "Montant"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4853,12 +4849,12 @@ msgid "Amount to Bill"
msgstr "Montant à facturer"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Montant {0} {1} pour {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Montant {0} {1} déduit de {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4903,11 +4899,11 @@ msgstr "Nb"
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Une erreur est survenue lors de la comptabilisation de la nouvelle valorisation de l'article via {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Une erreur s'est produite lors du processus de mise à jour"
@@ -5447,7 +5443,7 @@ msgstr "Comme le champ {0} est activé, le champ {1} est obligatoire."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Lorsque le champ {0} est activé, la valeur du champ {1} doit être supérieure à 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5459,7 +5455,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Comme il y a suffisamment d'articles de sous-assemblage, l'ordre de travail n'est pas requis pour l'entrepôt {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Comme il y a suffisamment de matières premières, la demande de matériel n'est pas requise pour l'entrepôt {0}."
@@ -5597,7 +5593,7 @@ msgstr "Compte de Catégorie d'Actif"
msgid "Asset Category Name"
msgstr "Nom de Catégorie d'Actif"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Catégorie d'Actif est obligatoire pour l'article Immobilisé"
@@ -5774,8 +5770,8 @@ msgstr "Quantité de l'actif"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5875,7 +5871,7 @@ msgstr "Actif annulé"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "L'actif ne peut être annulé, car il est déjà {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5907,7 +5903,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5915,20 +5911,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Actif mis au rebut"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Actif mis au rebut via Écriture de Journal {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Actif vendu"
@@ -5948,7 +5944,7 @@ msgstr "Actif mis à jour après avoir été divisé dans l'actif {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "L'actif {0} ne peut pas être mis au rebut, car il est déjà {1}"
@@ -5989,7 +5985,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "L'actif {0} doit être soumis"
@@ -6039,7 +6035,7 @@ msgstr "Éléments non créés pour {item_code}. Vous devrez créer un actif man
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Attribuer un emploi à un salarié"
@@ -6100,7 +6096,7 @@ msgstr "Au moins un des modules applicables doit être sélectionné"
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6108,20 +6104,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "À la ligne #{0}: le compte de différence ne doit pas être un compte de type Actions, veuillez modifier le type de compte pour le compte {1} ou sélectionner un autre compte"
-
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "À la ligne n ° {0}: l'ID de séquence {1} ne peut pas être inférieur à l'ID de séquence de ligne précédent {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6204,11 +6196,11 @@ msgstr "Nom de l'Attribut"
msgid "Attribute Value"
msgstr "Valeur de l'Attribut"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Table d'Attribut est obligatoire"
@@ -6216,19 +6208,19 @@ msgstr "Table d'Attribut est obligatoire"
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Attribut {0} sélectionné à plusieurs reprises dans le Tableau des Attributs"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Attributs"
@@ -6440,7 +6432,7 @@ msgstr ""
msgid "Auto re-order"
msgstr "Re-commande auto"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Document de répétition automatique mis à jour"
@@ -6552,7 +6544,7 @@ msgstr "Date d'utilisation disponible"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Qté disponible"
@@ -6641,10 +6633,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "La date de mise en service est nécessaire"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "La quantité disponible est {0}. Vous avez besoin de {1}."
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Disponible {0}"
@@ -6653,8 +6641,8 @@ msgstr "Disponible {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "La date de disponibilité devrait être postérieure à la date d'achat"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Âge moyen"
@@ -6678,7 +6666,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Prix moyen"
@@ -6702,7 +6692,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Valorisation Moyenne (Livre d'inventaire)"
@@ -6760,7 +6750,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6783,7 +6773,7 @@ msgstr "Nomenclature"
msgid "BOM 1"
msgstr "Nomenclature 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "La nomenclature 1 {0} et la nomenclature 2 {1} ne doivent pas être identiques"
@@ -6855,11 +6845,6 @@ msgstr "Article Eclaté en nomenclature"
msgid "BOM ID"
msgstr "ID de nomenclature"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Informations sur la nomenclature"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7013,7 +6998,7 @@ msgstr "Article de nomenclature du Site Internet"
msgid "BOM Website Operation"
msgstr "Opération de nomenclature du Site Internet"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7081,7 +7066,7 @@ msgstr "Entrée de stock antidatée"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7145,7 +7130,7 @@ msgstr "Solde en devise de base"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Solde de la Qté"
@@ -7210,7 +7195,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Valeur du solde"
@@ -7366,8 +7351,8 @@ msgid "Bank Balance"
msgstr "Solde Bancaire"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Frais bancaires"
@@ -7482,8 +7467,8 @@ msgstr "Type de garantie bancaire"
msgid "Bank Name"
msgstr "Nom de la Banque"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Compte de découvert bancaire"
@@ -7656,11 +7641,11 @@ msgstr "Banque"
msgid "Barcode Type"
msgstr "Type de code-barres"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Le Code Barre {0} est déjà utilisé dans l'article {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Le code-barres {0} n'est pas un code {1} valide"
@@ -7817,7 +7802,7 @@ msgstr "Prix de base (comme l’UdM du Stock)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7892,7 +7877,7 @@ msgstr "Statut d'Expiration d'Article du Lot"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7981,13 +7966,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr "Quantité par lots"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8004,7 +7989,7 @@ msgstr "UdM par lots"
msgid "Batch and Serial No"
msgstr "N° de lot et de série"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8027,12 +8012,12 @@ msgstr "Lot {0} et entrepôt"
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Lot {0} de l'Article {1} a expiré."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Le lot {0} de l'élément {1} est désactivé."
@@ -8087,7 +8072,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8096,7 +8081,7 @@ msgstr "Date de la Facture"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8110,11 +8095,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Nomenclatures"
@@ -8215,7 +8202,7 @@ msgstr "Adresse de facturation (détails)"
msgid "Billing Address Name"
msgstr "Nom de l'Adresse de Facturation"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8467,6 +8454,16 @@ msgstr "Bloquer la facture"
msgid "Block Supplier"
msgstr "Bloquer le fournisseur"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8563,7 +8560,7 @@ msgstr "Réservé"
msgid "Booked Fixed Asset"
msgstr "Actif immobilisé comptabilisé"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8822,8 +8819,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Bâtiments"
@@ -8984,14 +8981,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Éviter le contrôle de limite de crédit à la commande client"
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9041,8 +9038,8 @@ msgstr ""
msgid "CRM Settings"
msgstr "Paramètres CRM"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Compte CWIP"
@@ -9297,7 +9294,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr "Peut être approuvé par {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9330,13 +9327,13 @@ msgstr "Impossible de filtrer sur la base du N° de Coupon, si les lignes sont r
msgid "Can only make payment against unbilled {0}"
msgstr "Le paiement n'est possible qu'avec les {0} non facturés"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Peut se référer à ligne seulement si le type de charge est 'Montant de la ligne précedente' ou 'Total des lignes précedente'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9378,7 +9375,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Impossible de calculer l'heure d'arrivée car l'adresse du conducteur est manquante."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9386,9 +9383,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Impossible de fusionner"
@@ -9416,7 +9413,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Ne peut pas être un article immobilisé car un Journal de Stock a été créé."
@@ -9436,7 +9433,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Impossible d'annuler car l'Écriture de Stock soumise {0} existe"
@@ -9456,15 +9453,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Impossible d'annuler la transaction lorsque l'ordre de fabrication est terminé."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Impossible de modifier les attributs après des mouvements de stock. Faites un nouvel article et transférez la quantité en stock au nouvel article"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9472,11 +9469,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Impossible de modifier la date d'arrêt du service pour l'élément de la ligne {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Impossible de modifier les propriétés de variante après une transaction de stock. Vous devrez créer un nouvel article pour pouvoir le faire."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Impossible de changer la devise par défaut de la société, parce qu'il y a des opérations existantes. Les transactions doivent être annulées pour changer la devise par défaut."
@@ -9492,11 +9489,11 @@ msgstr "Conversion impossible du Centre de Coûts en livre car il possède des n
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Conversion impossible en Groupe car le Type de Compte est sélectionné."
@@ -9504,7 +9501,7 @@ msgstr "Conversion impossible en Groupe car le Type de Compte est sélectionné.
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Impossible de créer une liste de prélèvement pour la Commande client {0} car il y a du stock réservé. Veuillez annuler la réservation de stock pour créer une liste de prélèvement."
@@ -9530,7 +9527,7 @@ msgstr "Impossible de déclarer comme perdu, parce que le Devis a été fait."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Déduction impossible lorsque la catégorie est pour 'Évaluation' ou 'Vaulation et Total'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9538,12 +9535,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Impossible de supprimer les N° de série {0}, s'ils sont dans les mouvements de stock"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9555,7 +9552,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9563,20 +9560,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Impossible de garantir la livraison par numéro de série car l'article {0} est ajouté avec et sans Assurer la livraison par numéro de série"
@@ -9592,7 +9589,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr "Impossible de trouver l'article avec ce code-barres"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9600,15 +9597,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Impossible de produire plus d'articles pour {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9616,12 +9613,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Impossible de se référer au numéro de la ligne supérieure ou égale au numéro de la ligne courante pour ce type de Charge"
@@ -9634,14 +9631,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9655,7 +9652,7 @@ msgstr "Impossible de définir comme perdu alors qu'une Commande client a été
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Impossible de définir l'autorisation sur la base des Prix Réduits pour {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Impossible de définir plusieurs valeurs par défaut pour une entreprise."
@@ -9663,11 +9660,11 @@ msgstr "Impossible de définir plusieurs valeurs par défaut pour une entreprise
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Impossible de définir une quantité inférieure à la quantité livrée."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Impossible de définir une quantité inférieure à la quantité reçue."
@@ -9679,7 +9676,7 @@ msgstr "Impossible de définir le champ {0} pour la copie dans les varian
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9712,7 +9709,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr "Planification de Capacité"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Erreur de planification de capacité, l'heure de début prévue ne peut pas être identique à l'heure de fin"
@@ -9731,13 +9728,13 @@ msgstr "Capacité dans l'unité de stockage"
msgid "Capacity must be greater than 0"
msgstr "Capacité doit être plus grande que 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Capital Social"
@@ -9954,7 +9951,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr "Valeur de l'actif par catégorie"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Mise en garde"
@@ -10059,7 +10056,7 @@ msgstr "Modifier la date de fin de mise en attente"
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Changez le type de compte en recevable ou sélectionnez un autre compte."
@@ -10069,7 +10066,7 @@ msgstr "Changez le type de compte en recevable ou sélectionnez un autre compte.
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Modifiez cette date manuellement pour définir la prochaine date de début de la synchronisation."
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10077,7 +10074,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr "Changements dans {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Le changement de Groupe de Clients n'est pas autorisé pour le Client sélectionné."
@@ -10092,7 +10089,7 @@ msgid "Channel Partner"
msgstr "Partenaire de Canal"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10146,7 +10143,7 @@ msgstr "Arbre à cartes"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10289,7 +10286,7 @@ msgstr "Largeur du Chèque"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Chèque/Date de Référence"
@@ -10347,7 +10344,7 @@ msgstr "Nom de l'enfant"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10399,6 +10396,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10541,11 +10543,11 @@ msgstr "Document fermé"
msgid "Closed Documents"
msgstr "Documents fermés"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Les commandes fermées ne peuvent être annulées. Réouvrir pour annuler."
@@ -10797,11 +10799,17 @@ msgstr "Taux de Commission %"
msgid "Commission Rate (%)"
msgstr "Taux de Commission (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Commission sur les ventes"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10832,7 +10840,7 @@ msgstr "Période de communication moyenne"
msgid "Communication Medium Type"
msgstr "Type de support de communication"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Impression de l'Article Compacté"
@@ -11231,8 +11239,8 @@ msgstr "Sociétés"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11285,7 +11293,7 @@ msgstr "Sociétés"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11374,18 +11382,20 @@ msgstr ""
msgid "Company Address Name"
msgstr "Nom de l'Adresse de la Société"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Compte bancaire de l'entreprise"
@@ -11481,7 +11491,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Les devises des deux sociétés doivent correspondre pour les transactions inter-sociétés."
@@ -11516,7 +11526,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Le nom de la société n'est pas identique"
@@ -11555,12 +11565,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Société {0} n'existe pas"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11602,7 +11612,7 @@ msgstr "Nom du concurrent"
msgid "Competitors"
msgstr "Concurrents"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Terminer la tâche"
@@ -11649,12 +11659,12 @@ msgstr ""
msgid "Completed Qty"
msgstr "Quantité Terminée"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "La quantité terminée ne peut pas être supérieure à la `` quantité à fabriquer ''"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Quantité terminée"
@@ -11843,7 +11853,7 @@ msgstr "Tenez compte des dimensions comptables"
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12037,7 +12047,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr "Qté Consommée"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12066,7 +12076,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12194,7 +12204,7 @@ msgstr "N° du Contact"
msgid "Contact Person"
msgstr "Personne à Contacter"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12320,6 +12330,11 @@ msgstr "Controle de l'historique des stransaction de stock"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12380,7 +12395,7 @@ msgstr "Facteur de Conversion"
msgid "Conversion Rate"
msgstr "Taux de Conversion"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Facteur de conversion de l'Unité de Mesure par défaut doit être 1 dans la ligne {0}"
@@ -12388,15 +12403,15 @@ msgstr "Facteur de conversion de l'Unité de Mesure par défaut doit être 1 dan
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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12473,13 +12488,13 @@ msgstr "Correctif"
msgid "Corrective Action"
msgstr "Action corrective"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Carte de travail corrective"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Opération corrective"
@@ -12646,7 +12661,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12779,7 +12794,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr "Centre de coûts: {0} n'existe pas"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Centres de coûts"
@@ -12822,17 +12837,13 @@ msgstr "Coût des articles livrés"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Coût des marchandises vendues"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Coût des Marchandises Vendues"
@@ -12912,7 +12923,7 @@ msgstr "Impossible de supprimer les données de démonstration"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Impossible de créer automatiquement le client en raison du ou des champs obligatoires manquants suivants:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Impossible de créer une note de crédit automatiquement, décochez la case "Emettre une note de crédit" et soumettez à nouveau"
@@ -13101,7 +13112,7 @@ msgstr "Créer des factures"
msgid "Create Item"
msgstr "Créer un Article"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Créer une carte de travail"
@@ -13133,7 +13144,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Créer des écritures de grand livre pour modifier le montant"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13200,7 +13211,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Créer une liste de prélèvement"
@@ -13345,7 +13356,7 @@ msgstr "Créer une tâche"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Créer un modèle de taxe"
@@ -13383,12 +13394,12 @@ msgstr "Créer une autorisation utilisateur"
msgid "Create Users"
msgstr "Créer des utilisateurs"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Créer une variante"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Créer des variantes"
@@ -13419,12 +13430,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Créez une transaction de stock entrante pour l'article."
@@ -13458,7 +13469,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13491,7 +13502,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Créer des dimensions ..."
@@ -13684,7 +13695,7 @@ msgstr "Nombre de jours"
msgid "Credit Limit"
msgstr "Limite de crédit"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13694,12 +13705,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr "Paramètres de la limite de crédit"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Limite de crédit et conditions de paiement"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Limite de crédit:"
@@ -13731,7 +13736,7 @@ msgstr "Mois de crédit"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13759,7 +13764,7 @@ msgstr "Note de crédit émise"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "La note de crédit {0} a été créée automatiquement"
@@ -13767,7 +13772,7 @@ msgstr "La note de crédit {0} a été créée automatiquement"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "À Créditer"
@@ -13776,20 +13781,20 @@ msgstr "À Créditer"
msgid "Credit in Company Currency"
msgstr "Crédit dans la Devise de la Société"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "La limite de crédit a été dépassée pour le client {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "La limite de crédit est déjà définie pour la société {0}."
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Limite de crédit atteinte pour le client {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13797,8 +13802,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Créditeurs"
@@ -13968,7 +13973,7 @@ msgstr "Le taux de change doit être applicable à l'achat ou la vente."
msgid "Currency and Price List"
msgstr "Devise et liste de prix"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Devise ne peut être modifiée après avoir fait des entrées en utilisant une autre devise"
@@ -13978,7 +13983,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Devise pour {0} doit être {1}"
@@ -14061,8 +14066,8 @@ msgstr "Date de début de la facture en cours"
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Dettes Actuelles"
@@ -14129,6 +14134,11 @@ msgstr "Stock Actuel"
msgid "Current Valuation Rate"
msgstr "Taux de Valorisation Actuel"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Courbes"
@@ -14224,7 +14234,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14331,7 +14340,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14420,8 +14428,8 @@ msgstr "Adresse du Client"
msgid "Customer Addresses And Contacts"
msgstr "Adresses et Contacts des Clients"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14435,7 +14443,7 @@ msgstr "Code Client"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14518,6 +14526,7 @@ msgstr "Retour d'Expérience Client"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14540,7 +14549,7 @@ msgstr "Retour d'Expérience Client"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14557,6 +14566,7 @@ msgstr "Retour d'Expérience Client"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14600,7 +14610,7 @@ msgstr "Article client"
msgid "Customer Items"
msgstr "Articles du clients"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Commande client locale"
@@ -14652,7 +14662,7 @@ msgstr "N° de Portable du Client"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14758,7 +14768,7 @@ msgstr "Client fourni"
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Service Client"
@@ -14815,9 +14825,9 @@ msgstr "Client ou Article"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Client requis pour appliquer une 'Remise en fonction du Client'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Le Client {0} ne fait pas parti du projet {1}"
@@ -14929,7 +14939,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Récapitulatif quotidien du projet pour {0}"
@@ -15020,7 +15030,7 @@ msgstr "Date de Naissance ne peut être après la Date du Jour."
msgid "Date of Commencement"
msgstr "Date de démarrage"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "La date de démarrage doit être postérieure à la date de constitution"
@@ -15246,7 +15256,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15274,13 +15284,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Débit Pour"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Compte de Débit Requis"
@@ -15408,8 +15418,7 @@ msgstr "Compte par Défaut"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15435,14 +15444,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15457,19 +15466,19 @@ msgstr ""
msgid "Default BOM"
msgstr "Nomenclature par Défaut"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Nomenclature par défaut ({0}) doit être actif pour ce produit ou son modèle"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Nomenclature par défaut {0} introuvable"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "La nomenclature par défaut n'a pas été trouvée pour l'Article {0} et le Projet {1}"
@@ -15522,9 +15531,7 @@ msgid "Default Company"
msgstr "Société par Défaut"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Compte bancaire d'entreprise par défaut"
@@ -15640,6 +15647,16 @@ msgstr "Groupe d'Éléments par Défaut"
msgid "Default Item Manufacturer"
msgstr "Fabricant de l'article par défaut"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15675,23 +15692,19 @@ msgid "Default Payment Request Message"
msgstr "Message de Demande de Paiement par Défaut"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Modèle de termes de paiement par défaut"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15814,15 +15827,15 @@ msgstr "Région par Défaut"
msgid "Default Unit of Measure"
msgstr "Unité de Mesure par Défaut"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "L’Unité de Mesure par Défaut pour l’Article {0} ne peut pas être modifiée directement parce que vous avez déjà fait une (des) transaction (s) avec une autre unité de mesure. Vous devez créer un nouvel article pour utiliser une UdM par défaut différente."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "L’Unité de mesure par défaut pour la variante '{0}' doit être la même que dans le Modèle '{1}'"
@@ -15874,7 +15887,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15965,6 +15978,12 @@ msgstr "Définir le type de projet."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16047,12 +16066,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Supprimer les transactions"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Supprimer toutes les transactions pour cette société"
@@ -16073,8 +16092,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Suppression en cours !"
@@ -16185,11 +16204,11 @@ msgstr "Qté Livrée"
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16270,7 +16289,7 @@ msgstr "Gestionnaire des livraisons"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16330,11 +16349,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr "Tendance des Bordereaux de Livraisons"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Bon de Livraison {0} n'est pas soumis"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Bons de livraison"
@@ -16420,10 +16439,6 @@ msgstr "Entrepôt de Livraison"
msgid "Delivery to"
msgstr "Livraison à"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Entrepôt de Livraison requis pour article du stock {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16543,8 +16558,8 @@ msgstr "Montant amorti"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16637,7 +16652,7 @@ msgstr "Options d'amortissement"
msgid "Depreciation Posting Date"
msgstr "Date comptable de l'amortissement"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16795,15 +16810,15 @@ msgstr "Écart (Dr - Cr )"
msgid "Difference Account"
msgstr "Compte d’Écart"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Le Compte d’Écart doit être un compte de type Actif / Passif, puisque cette Réconciliation de Stock est une écriture d'à-nouveau"
@@ -16915,15 +16930,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Charges Directes"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Revenu direct"
@@ -17004,6 +17019,11 @@ msgstr "Désactiver le total arrondi"
msgid "Disable Serial No And Batch Selector"
msgstr "Désactiver le sélecteur de numéro de lot/série"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17040,11 +17060,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Règles de tarification désactivées car {} est un transfert interne"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17060,7 +17080,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17068,15 +17088,15 @@ msgstr ""
msgid "Disassemble"
msgstr "Désassembler"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Ordre de Désassemblage"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17363,7 +17383,7 @@ msgstr ""
msgid "Dislikes"
msgstr "N'aime pas"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Envoi"
@@ -17444,7 +17464,7 @@ msgstr ""
msgid "Disposal Date"
msgstr "Date d’Élimination"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17558,8 +17578,8 @@ msgstr "Nom de Distribution"
msgid "Distributor"
msgstr "Distributeur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Dividendes Payés"
@@ -17621,7 +17641,7 @@ msgstr "Ne plus afficher le symbole (tel que $, €...) à côté des montants."
msgid "Do not update variants on save"
msgstr "Ne pas mettre à jour les variantes lors de la sauvegarde"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Voulez-vous vraiment restaurer cet actif mis au rebut ?"
@@ -17645,7 +17665,7 @@ msgstr "Voulez-vous informer tous les clients par courriel?"
msgid "Do you want to submit the material request"
msgstr "Voulez-vous valider la demande de matériel"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17712,11 +17732,11 @@ msgstr ""
msgid "Document Type "
msgstr "Type de document"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Documentation"
@@ -17879,12 +17899,6 @@ msgstr "Catégories de permis de conduire"
msgid "Driving License Category"
msgstr "Catégorie de permis de conduire"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17905,12 +17919,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18069,8 +18077,8 @@ msgstr "Durée (jours)"
msgid "Duration in Days"
msgstr "Durée en jours"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Droits de Douane et Taxes"
@@ -18153,7 +18161,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "A chaque transaction"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Au plus tôt"
@@ -18267,6 +18275,10 @@ msgstr "Soit la qté cible soit le montant cible est obligatoire"
msgid "Either target qty or target amount is mandatory."
msgstr "Soit la qté cible soit le montant cible est obligatoire."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18286,8 +18298,8 @@ msgstr "Électricité"
msgid "Electricity down"
msgstr "Électricité en baisse"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Équipement électronique"
@@ -18491,8 +18503,8 @@ msgstr "Avance versée aux employés"
msgid "Employee Advances"
msgstr "Avances versées aux employés"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18575,7 +18587,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18591,7 +18603,7 @@ msgstr "Employés"
msgid "Empty"
msgstr "Vide"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18622,7 +18634,7 @@ msgstr "Activer la planification des rendez-vous"
msgid "Enable Auto Email"
msgstr "Activer la messagerie automatique"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Activer la re-commande automatique"
@@ -18788,12 +18800,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18922,8 +18928,8 @@ msgstr "La date de fin ne peut pas être antérieure à la date de début."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19022,8 +19028,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Entrez une Valeur"
@@ -19048,7 +19054,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr "Entrez le montant à utiliser."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19060,7 +19066,7 @@ msgstr "Entrez l'e-mail du client"
msgid "Enter customer's phone number"
msgstr "Entrez le numéro de téléphone du client"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19103,7 +19109,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19111,7 +19117,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19123,8 +19129,8 @@ msgstr "Saisissez le montant de {0}."
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Charges de Représentation"
@@ -19148,8 +19154,8 @@ msgstr "Type d'Écriture"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19210,7 +19216,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr "Erreur lors du traitement de la comptabilité différée pour {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19220,7 +19226,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Erreur: {0} est un champ obligatoire"
@@ -19266,7 +19272,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19285,7 +19291,7 @@ msgstr "Exemple: ABCD. #####. Si le masque est définie et que le numéro de lot
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19295,7 +19301,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr "Rôle d'approbateur de budget exceptionnel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19303,7 +19309,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19334,17 +19340,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Profits / Pertes sur Change"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19483,7 +19489,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19570,7 +19576,7 @@ msgstr "Date de clôture prévue"
msgid "Expected Delivery Date"
msgstr "Date de livraison prévue"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "La Date de Livraison Prévue doit être après la Date indiquée sur la Commande Client"
@@ -19654,7 +19660,7 @@ msgstr "Valeur Attendue Après Utilisation Complète"
msgid "Expense"
msgstr "Charges"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Compte de Charge / d'Écart ({0}) doit être un Compte «de Résultat»"
@@ -19732,23 +19738,23 @@ msgstr "Compte de charge est obligatoire pour l'article {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Charges"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Dépenses incluses dans l'évaluation de l'actif"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Charges Incluses dans la Valorisation"
@@ -19827,7 +19833,7 @@ msgstr "Historique de Travail Externe"
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19964,7 +19970,7 @@ msgstr "Échec de la configuration de la société"
msgid "Failed to setup defaults"
msgstr "Échec de la configuration par défaut"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20082,6 +20088,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Récupérer la nomenclature éclatée (y compris les sous-ensembles)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20119,21 +20130,29 @@ msgstr "Cartographie des champs"
msgid "Field in Bank Transaction"
msgstr "Champ dans la transaction bancaire"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Les champs seront copiés uniquement au moment de la création."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20341,9 +20360,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "terminer"
@@ -20400,15 +20419,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20454,7 +20473,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Produits finis"
@@ -20495,7 +20514,7 @@ msgstr "Entrepôt de produits finis"
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20636,6 +20655,7 @@ msgstr "Fixé"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Actif Immobilisé"
@@ -20654,7 +20674,7 @@ msgstr "Compte d'Actif Immobilisé"
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Un Article Immobilisé doit être un élément non stocké."
@@ -20673,8 +20693,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Actifs Immobilisés"
@@ -20747,7 +20767,7 @@ msgstr "Suivez les mois civils"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Les Demandes de Matériel suivantes ont été créées automatiquement sur la base du niveau de réapprovisionnement de l’Article"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Les champs suivants sont obligatoires pour créer une adresse:"
@@ -20804,7 +20824,7 @@ msgstr "Pour la Société"
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20814,7 +20834,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20835,17 +20855,13 @@ msgstr "Pour la Liste de Prix"
msgid "For Production"
msgstr "Pour la Production"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Pour Quantité (Qté Produite) est obligatoire"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20873,11 +20889,11 @@ msgstr "Pour l’Entrepôt"
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Pour l'article {0}, la quantité doit être un nombre négatif"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Pour un article {0}, la quantité doit être un nombre positif"
@@ -20915,7 +20931,7 @@ msgstr "Pour un fournisseur individuel"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20929,7 +20945,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20946,7 +20962,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20955,12 +20971,12 @@ msgstr ""
msgid "For reference"
msgstr "Pour référence"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Pour la ligne {0} dans {1}. Pour inclure {2} dans le prix de l'article, les lignes {3} doivent également être incluses"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Pour la ligne {0}: entrez la quantité planifiée"
@@ -20979,7 +20995,7 @@ msgstr "Pour la condition "Appliquer la règle à l'autre", le champ {
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21026,11 +21042,6 @@ msgstr "Prévoir"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21076,7 +21087,7 @@ msgstr "Messages du forum"
msgid "Forum URL"
msgstr "URL du forum"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21121,8 +21132,8 @@ msgstr "Article gratuit non défini dans la règle de tarification {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Gel des stocks de plus de (jours)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Frais de Fret et d'Expédition"
@@ -21556,8 +21567,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21574,13 +21585,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Montant du paiement futur"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Paiement futur Ref"
@@ -21588,7 +21599,7 @@ msgstr "Paiement futur Ref"
msgid "Future Payments"
msgstr "Paiements futurs"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21673,9 +21684,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Gain/Perte sur Cessions des Immobilisations"
@@ -21848,7 +21859,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr "Obtenir le Stock Actuel"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Appliquer les informations depuis le Groupe de client"
@@ -21906,7 +21917,7 @@ msgstr "Obtenir les emplacements des articles"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21945,7 +21956,7 @@ msgstr "Obtenir les Articles depuis nomenclature"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Obtenir des articles à partir de demandes d'articles auprès de ce fournisseur"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Obtenir les Articles du Produit Groupé"
@@ -22119,7 +22130,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Les marchandises en transit"
@@ -22128,7 +22139,7 @@ msgstr "Les marchandises en transit"
msgid "Goods Transferred"
msgstr "Marchandises transférées"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Les marchandises sont déjà reçues pour l'entrée sortante {0}"
@@ -22311,7 +22322,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "Eligible aux commissions"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Plus grand que le montant"
@@ -22754,7 +22765,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22782,7 +22793,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22981,7 +22992,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Ressources humaines"
@@ -23149,6 +23160,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Si cochée, le montant de la taxe sera considéré comme déjà inclus dans le Taux / Prix des documents (PDF, impressions)"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23366,7 +23383,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23392,13 +23409,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23407,7 +23429,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Si le compte est gelé, les écritures ne sont autorisés que pour un nombre restreint d'utilisateurs."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Si l'article est traité comme un article à taux de valorisation nul dans cette entrée, veuillez activer "Autoriser le taux de valorisation nul" dans le {0} tableau des articles."
@@ -23417,7 +23439,7 @@ msgstr "Si l'article est traité comme un article à taux de valorisation nul da
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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23494,7 +23516,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23508,7 +23530,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23592,7 +23614,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr "Ignorer la quantité commandée existante"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Ignorer la quantité projetée existante"
@@ -23679,12 +23701,12 @@ msgstr "Ignorer les chevauchements de temps des stations de travail"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23842,7 +23864,7 @@ msgstr "En production"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "En Qté"
@@ -23966,7 +23988,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24197,8 +24219,8 @@ msgstr "Incluant les articles pour des sous-ensembles"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24269,7 +24291,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24301,7 +24323,7 @@ msgstr "Equilibre des quantités aprés une transaction"
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24309,7 +24331,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24443,15 +24465,15 @@ msgstr "Indique que le paquet est une partie de cette livraison (Brouillons Seul
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Charges Indirectes"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Revenu indirect"
@@ -24519,14 +24541,14 @@ msgstr "Initié"
msgid "Inspected By"
msgstr "Inspecté Par"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspection obligatoire"
@@ -24543,8 +24565,8 @@ msgstr "Inspection Requise à l'expedition"
msgid "Inspection Required before Purchase"
msgstr "Inspection Requise à la réception"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24574,7 +24596,7 @@ msgstr "Note d'Installation"
msgid "Installation Note Item"
msgstr "Article Remarque d'Installation"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Note d'Installation {0} à déjà été sousmise"
@@ -24613,11 +24635,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr "Capacité insuffisante"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Permissions insuffisantes"
@@ -24625,13 +24647,12 @@ msgstr "Permissions insuffisantes"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Stock insuffisant"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24751,13 +24772,13 @@ msgstr "Référence de transfert interne"
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24765,8 +24786,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24786,7 +24807,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24794,7 +24815,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24802,7 +24823,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24833,7 +24854,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr "Transfert Interne"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24846,7 +24867,12 @@ msgstr ""
msgid "Internal Work History"
msgstr "Historique de Travail Interne"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24862,12 +24888,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Compte invalide"
@@ -24888,7 +24914,7 @@ msgstr "Montant Invalide"
msgid "Invalid Attribute"
msgstr "Attribut invalide"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24901,7 +24927,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Code à barres invalide. Il n'y a pas d'article attaché à ce code à barres."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Commande avec limites non valide pour le client et l'article sélectionnés"
@@ -24917,21 +24943,21 @@ msgstr "Procédure enfant non valide"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Société non valide pour une transaction inter-sociétés."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24969,7 +24995,7 @@ msgstr ""
msgid "Invalid Item"
msgstr "Élément non valide"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24983,7 +25009,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Entrée d'ouverture non valide"
@@ -24991,11 +25017,11 @@ msgstr "Entrée d'ouverture non valide"
msgid "Invalid POS Invoices"
msgstr "Factures PDV non valides"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Compte parent non valide"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Numéro de pièce non valide"
@@ -25025,12 +25051,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Quantité invalide"
@@ -25055,12 +25081,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr "Prix de vente invalide"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25085,7 +25111,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr "Expression de condition non valide"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25097,7 +25123,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Motif perdu non valide {0}, veuillez créer un nouveau motif perdu"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Masque de numérotation non valide (. Manquante) pour {0}"
@@ -25123,8 +25149,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25132,7 +25158,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr "Invalide {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} non valide pour la transaction inter-société."
@@ -25142,7 +25168,7 @@ msgid "Invalid {0}: {1}"
msgstr "Invalide {0} : {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Inventaire"
@@ -25191,8 +25217,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investissements"
@@ -25242,7 +25268,7 @@ msgstr "Rabais de facture"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Total général de la facture"
@@ -25347,7 +25373,7 @@ msgstr "La facture ne peut pas être faite pour une heure facturée à zéro"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25368,7 +25394,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25464,8 +25490,7 @@ msgstr ""
msgid "Is Billable"
msgstr "Est facturable"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25907,8 +25932,7 @@ msgstr ""
msgid "Is Transporter"
msgstr "Est transporteur"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -26014,8 +26038,8 @@ msgstr "Type de ticket"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Creer une note de débit avec une quatité à O pour la facture"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26045,11 +26069,11 @@ msgstr "Tickets"
msgid "Issuing Date"
msgstr "Date d'émission"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Nécessaire pour aller chercher les Détails de l'Article."
@@ -26173,7 +26197,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26421,7 +26445,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26483,7 +26507,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26682,13 +26706,13 @@ msgstr "Détails d'article"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26905,7 +26929,7 @@ msgstr "Fabricant d'Article"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26945,10 +26969,10 @@ msgstr "Fabricant d'Article"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26989,10 +27013,6 @@ msgstr ""
msgid "Item Price"
msgstr "Prix de l'Article"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27008,19 +27028,20 @@ msgstr "Paramètres du prix de l'article"
msgid "Item Price Stock"
msgstr "Stock et prix de l'article"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Prix de l'Article ajouté pour {0} dans la Liste de Prix {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Prix de l'Article mis à jour pour {0} dans la Liste des Prix {1}"
@@ -27207,11 +27228,11 @@ msgstr "Détails de la variante de l'article"
msgid "Item Variant Settings"
msgstr "Paramètres de Variante d'Article"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "La Variante de l'Article {0} existe déjà avec les mêmes caractéristiques"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Variantes d'article mises à jour"
@@ -27312,11 +27333,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr "Détails de l'Article et de la Garantie"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "L'élément de la ligne {0} ne correspond pas à la demande de matériel"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "L'article a des variantes."
@@ -27342,11 +27363,7 @@ msgstr "Libellé de l'article"
msgid "Item operation"
msgstr "Opération de l'article"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27365,11 +27382,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "La variante de l'article {0} existe avec les mêmes caractéristiques"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27386,7 +27403,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Article {0} n'existe pas"
@@ -27398,7 +27415,7 @@ msgstr "L'article {0} n'existe pas dans le système ou a expiré"
msgid "Item {0} does not exist."
msgstr "Article {0} n'existe pas."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27410,15 +27427,15 @@ msgstr "L'article {0} a déjà été retourné"
msgid "Item {0} has been disabled"
msgstr "L'article {0} a été désactivé"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "L'article {0} a atteint sa fin de vie le {1}"
@@ -27430,15 +27447,15 @@ msgstr "L'article {0} est ignoré puisqu'il n'est pas en stock"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Article {0} est annulé"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Article {0} est désactivé"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27446,7 +27463,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "L'article {0} n'est pas un article avec un numéro de série"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Article {0} n'est pas un article stocké"
@@ -27454,11 +27471,11 @@ msgstr "Article {0} n'est pas un article stocké"
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "L'article {0} n’est pas actif ou sa fin de vie a été atteinte"
@@ -27474,7 +27491,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr "L'article {0} doit être un article hors stock"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27482,7 +27499,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "L'article {0} : Qté commandée {1} ne peut pas être inférieure à la qté de commande minimum {2} (défini dans l'Article)."
@@ -27490,7 +27507,7 @@ msgstr "L'article {0} : Qté commandée {1} ne peut pas être inférieure à la
msgid "Item {0}: {1} qty produced. "
msgstr "Article {0}: {1} quantité produite."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27536,7 +27553,7 @@ msgstr "Registre des Ventes par Article"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27560,7 +27577,7 @@ msgstr ""
msgid "Items Filter"
msgstr "Filtre d'articles"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Articles requis"
@@ -27584,11 +27601,11 @@ msgstr "Articles À Demander"
msgid "Items and Pricing"
msgstr "Articles et prix"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27600,7 +27617,7 @@ msgstr "Articles pour demande de matière première"
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27610,7 +27627,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Les articles à fabriquer doivent extraire les matières premières qui leur sont associées."
@@ -27675,9 +27692,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27739,7 +27756,7 @@ msgstr "Journal de temps de la carte de travail"
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27815,7 +27832,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Job card {0} créée"
@@ -28035,7 +28052,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28163,7 +28180,7 @@ msgstr "Dernière date d'achèvement"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28245,7 +28262,7 @@ msgstr "La date du dernier bilan carbone ne peut pas être une date future"
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Dernier"
@@ -28495,12 +28512,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Frais juridiques"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28511,7 +28528,7 @@ msgstr ""
msgid "Length (cm)"
msgstr "Longueur (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Moins que le montant"
@@ -28570,7 +28587,7 @@ msgstr "Numéro de licence"
msgid "License Plate"
msgstr "Plaque d'Immatriculation"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Limite Dépassée"
@@ -28631,7 +28648,7 @@ msgstr "Lien vers les demandes de matériel"
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28652,12 +28669,12 @@ msgstr "Factures liées"
msgid "Linked Location"
msgstr "Lieu lié"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28665,7 +28682,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28723,8 +28740,8 @@ msgstr "Date de début du prêt"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "La date de début du prêt et la période du prêt sont obligatoires pour sauvegarder le décompte des factures."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Prêts (Passif)"
@@ -28769,8 +28786,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28971,6 +28988,11 @@ msgstr "Echelon de programme de fidélité"
msgid "Loyalty Program Type"
msgstr "Type de programme de fidélité"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29014,10 +29036,10 @@ msgstr "Dysfonctionnement de la machine"
msgid "Machine operator errors"
msgstr "Erreurs de l'opérateur de la machine"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Principal"
@@ -29260,9 +29282,9 @@ msgstr "Sujets Principaux / En Option"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Faire"
@@ -29282,7 +29304,7 @@ msgstr "Créer une Écriture d'Amortissement"
msgid "Make Difference Entry"
msgstr "Créer l'Écriture par Différence"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29320,12 +29342,12 @@ msgstr "Faire des Factures de Vente"
msgid "Make Serial No / Batch from Work Order"
msgstr "Générer des numéros de séries / lots depuis les Ordres de Fabrications"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Faire une entrée de stock"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29341,11 +29363,11 @@ msgstr "Passer un appel"
msgid "Make project from a template."
msgstr "Faire un projet à partir d'un modèle."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29353,8 +29375,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29373,7 +29395,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Gérer vos commandes"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Gestion"
@@ -29389,7 +29411,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29488,8 +29510,8 @@ msgstr "La saisie manuelle ne peut pas être créée! Désactivez la saisie auto
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29568,7 +29590,7 @@ msgstr "Fabricant"
msgid "Manufacturer Part Number"
msgstr "Numéro de Pièce du Fabricant"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Le numéro de pièce du fabricant {0} n'est pas valide"
@@ -29593,7 +29615,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29638,10 +29660,6 @@ msgstr "Date de production"
msgid "Manufacturing Manager"
msgstr "Responsable de Production"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Quantité de production obligatoire"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29808,6 +29826,12 @@ msgstr "État Civil"
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29822,12 +29846,12 @@ msgstr ""
msgid "Market Segment"
msgstr "Part de Marché"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Frais de Marketing"
@@ -29906,7 +29930,7 @@ msgstr ""
msgid "Material"
msgstr "Matériel"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Consommation de matériel"
@@ -29914,7 +29938,7 @@ msgstr "Consommation de matériel"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Consommation de matériaux pour la production"
@@ -29995,7 +30019,7 @@ msgstr "Réception Matériel"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30092,11 +30116,11 @@ msgstr "Article du plan de demande de matériel"
msgid "Material Request Type"
msgstr "Type de Demande de Matériel"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Demande de matériel non créée, car la quantité de matières premières est déjà disponible."
@@ -30164,7 +30188,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30230,12 +30254,12 @@ msgstr "Du Matériel au Fournisseur"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30306,9 +30330,9 @@ msgstr "Score Maximal"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30340,11 +30364,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maximum d'échantillons - {0} peut être conservé pour le lot {1} et l'article {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Nombre maximum d'échantillons - {0} ont déjà été conservés pour le lot {1} et l'article {2} dans le lot {3}."
@@ -30405,15 +30429,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Mentionnez le taux de valorisation dans la fiche article."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30463,7 +30482,7 @@ msgstr "Fusionner avec un compte existant"
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30493,7 +30512,7 @@ msgstr "Un message sera envoyé aux utilisateurs pour obtenir leur statut sur le
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Message de plus de 160 caractères sera découpé en plusieurs messages"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30694,7 +30713,7 @@ msgstr "Qté Min ne peut pas être supérieure à Qté Max"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30783,8 +30802,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Charges Diverses"
@@ -30792,15 +30811,15 @@ msgstr "Charges Diverses"
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Compte manquant"
@@ -30830,7 +30849,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30838,7 +30857,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30875,7 +30894,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31124,11 +31143,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31150,11 +31169,11 @@ msgstr "Variantes multiples"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Plusieurs Exercices existent pour la date {0}. Veuillez définir la société dans l'Exercice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31163,7 +31182,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31250,7 +31269,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31294,7 +31313,7 @@ msgstr "Analyse des besoins"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Quantité Négative n'est pas autorisée"
@@ -31303,7 +31322,7 @@ msgstr "Quantité Négative n'est pas autorisée"
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Taux de Valorisation Négatif n'est pas autorisé"
@@ -31609,7 +31628,7 @@ msgstr "Poids Net"
msgid "Net Weight UOM"
msgstr "UdM Poids Net"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31786,7 +31805,7 @@ msgstr "Nouveau Nom d'Entrepôt"
msgid "New Workplace"
msgstr "Nouveau Lieu de Travail"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Nouvelle limite de crédit est inférieure à l'encours actuel pour le client. Limite de crédit doit être au moins de {0}"
@@ -31840,7 +31859,7 @@ msgstr "Le prochain Email sera envoyé le :"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Aucun compte ne correspond à ces filtres: {}"
@@ -31853,7 +31872,7 @@ msgstr "Pas d'action"
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Aucun client trouvé pour les transactions intersociétés qui représentent l'entreprise {0}"
@@ -31866,7 +31885,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr "Aucun bon de livraison sélectionné pour le client {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31882,7 +31901,7 @@ msgstr "Aucun Article avec le Code Barre {0}"
msgid "No Item with Serial No {0}"
msgstr "Aucun Article avec le N° de Série {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31917,7 +31936,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Aucune autorisation"
@@ -31946,19 +31965,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Aucun fournisseur trouvé pour les transactions intersociétés qui représentent l'entreprise {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31988,7 +32007,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Aucune nomenclature active trouvée pour l'article {0}. La livraison par numéro de série ne peut pas être assurée"
@@ -32182,7 +32201,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32206,7 +32225,7 @@ msgstr "Aucune facture en attente ne nécessite une réévaluation du taux de ch
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Aucune demande de matériel en attente n'a été trouvée pour créer un lien vers les articles donnés."
@@ -32277,7 +32296,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32310,7 +32329,7 @@ msgstr "Pas de valeurs"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Aucun {0} n'a été trouvé pour les transactions inter-sociétés."
@@ -32355,8 +32374,8 @@ msgstr "À But Non Lucratif"
msgid "Non stock items"
msgstr "Articles hors stock"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32457,7 +32476,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr "Ne permet pas de définir un autre article pour l'article {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Non autorisé à créer une dimension comptable pour {0}"
@@ -32511,7 +32530,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Remarque: l'élément {0} a été ajouté plusieurs fois"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Remarque : Écriture de Paiement ne sera pas créée car le compte 'Compte Bancaire ou de Caisse' n'a pas été spécifié"
@@ -32519,7 +32538,7 @@ msgstr "Remarque : Écriture de Paiement ne sera pas créée car le compte 'Comp
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Remarque : Ce Centre de Coûts est un Groupe. Vous ne pouvez pas faire des écritures comptables sur des groupes."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32702,6 +32721,11 @@ msgstr "Numéro du nouveau compte, il sera inclus dans le nom du compte en tant
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Numéro du nouveau centre de coûts, qui sera le préfixe du nom du centre de coûts"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32761,18 +32785,18 @@ msgstr "Valeur Compteur Kilométrique (Dernier)"
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Charges d'Entretien de Bureau"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Loyer du Bureau"
@@ -32900,7 +32924,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Une fois définie, cette facture sera mise en attente jusqu'à la date fixée"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32940,7 +32964,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32959,7 +32983,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr "Inclure uniquement les paiements alloués"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32996,7 +33020,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33213,8 +33237,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "Détails du solde d'ouverture"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Ouverture de la Balance des Capitaux Propres"
@@ -33237,7 +33261,7 @@ msgstr "Date d'Ouverture"
msgid "Opening Entry"
msgstr "Écriture d'Ouverture"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33270,7 +33294,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33306,16 +33330,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Stock d'Ouverture"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33333,12 +33357,15 @@ msgstr "Valeur d'Ouverture"
msgid "Opening and Closing"
msgstr "Ouverture et fermeture"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33370,7 +33397,7 @@ msgstr "Coût d'Exploitation (Devise Société)"
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Coût d'exploitation selon l'ordre de fabrication / nomenclature"
@@ -33413,15 +33440,15 @@ msgstr "Description de l'Opération"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ID d'opération"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ID de l'Opération"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33446,7 +33473,7 @@ msgstr "Numéro de ligne d'opération"
msgid "Operation Time"
msgstr "Durée de l'Opération"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Temps de l'Opération doit être supérieur à 0 pour l'Opération {0}"
@@ -33461,11 +33488,11 @@ msgstr "Opération terminée pour combien de produits finis ?"
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Opération {0} ajoutée plusieurs fois dans l'ordre de fabrication {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "L'opération {0} ne fait pas partie de l'ordre de fabrication {1}"
@@ -33481,9 +33508,9 @@ msgstr "Opération {0} plus longue que toute heure de travail disponible dans la
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33656,7 +33683,7 @@ msgstr "Opportunité {0} créée"
msgid "Optimize Route"
msgstr "Optimiser l'itinéraire"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33806,7 +33833,7 @@ msgstr "Quantité Commandée"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Commandes"
@@ -33922,7 +33949,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Qté Sortante"
@@ -33960,7 +33987,7 @@ msgstr "Hors Garantie"
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33979,6 +34006,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Prix Sortant"
@@ -34014,7 +34042,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34024,7 +34052,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34084,17 +34112,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34114,11 +34147,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34418,7 +34451,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "Entrée d'ouverture de PDV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34439,7 +34472,7 @@ msgstr "Détail de l'entrée d'ouverture du PDV"
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34475,7 +34508,7 @@ msgstr "Mode de paiement POS"
msgid "POS Profile"
msgstr "Profil PDV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34493,11 +34526,11 @@ msgstr "Utilisateur du profil PDV"
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Profil PDV nécessaire pour faire une écriture de PDV"
@@ -34603,7 +34636,7 @@ msgstr "Article Emballé"
msgid "Packed Items"
msgstr "Articles Emballés"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34640,7 +34673,7 @@ msgstr "Bordereau de Colis"
msgid "Packing Slip Item"
msgstr "Article Emballé"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Bordereau(x) de Colis annulé(s)"
@@ -34681,7 +34714,7 @@ msgstr "Payé"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34747,7 +34780,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Le Montant Payé + Montant Repris ne peut pas être supérieur au Total Général"
@@ -34841,7 +34874,7 @@ msgstr "Lot Parent"
msgid "Parent Company"
msgstr "Maison mère"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "La société mère doit être une société du groupe"
@@ -34968,7 +35001,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35181,7 +35214,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35208,7 +35241,7 @@ msgstr "Tiers"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Compte de Tiers"
@@ -35241,7 +35274,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35393,7 +35426,7 @@ msgstr "Restriction d'article disponible"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35502,7 +35535,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35553,7 +35586,7 @@ msgid "Payable"
msgstr "Créditeur"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35587,7 +35620,7 @@ msgstr "Paramètres du Payeur"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35734,7 +35767,7 @@ msgstr "L’Écriture de Paiement a été modifié après que vous l’ayez réc
msgid "Payment Entry is already created"
msgstr "L’Écriture de Paiement est déjà créée"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35959,7 +35992,7 @@ msgstr "Références de Paiement"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36024,7 +36057,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36053,7 +36086,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36109,6 +36142,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36123,6 +36157,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36180,7 +36215,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Les modes de paiement sont obligatoires. Veuillez ajouter au moins un mode de paiement."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36255,8 +36290,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Paie à Payer"
@@ -36303,10 +36338,14 @@ msgstr "Activités en attente"
msgid "Pending Amount"
msgstr "Montant en attente"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36315,9 +36354,18 @@ msgstr "Qté en Attente"
#: 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:273
msgid "Pending Quantity"
msgstr "Quantité en attente"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36347,6 +36395,14 @@ msgstr "Activités en Attente pour aujourd'hui"
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36456,7 +36512,7 @@ msgstr "Analyse de perception"
msgid "Period Based On"
msgstr "Période basée sur"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37020,8 +37076,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Usines et Machines"
@@ -37057,7 +37113,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Veuillez définir un groupe de fournisseurs par défaut dans les paramètres d'achat."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37105,7 +37161,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Veuillez ajouter le compte à la société au niveau racine - {}"
@@ -37113,7 +37169,7 @@ msgstr "Veuillez ajouter le compte à la société au niveau racine - {}"
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37121,7 +37177,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37155,7 +37211,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37180,11 +37236,15 @@ msgstr "Veuillez cliquer sur ‘Générer Calendrier’ pour récupérer le N°
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Veuillez cliquer sur ‘Générer Calendrier’ pour obtenir le calendrier"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37192,11 +37252,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Veuillez convertir le compte parent de l'entreprise enfant correspondante en compte de groupe."
@@ -37208,11 +37268,11 @@ msgstr "Veuillez créer un client à partir du lead {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37220,11 +37280,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Veuillez créer un reçu d'achat ou une facture d'achat pour l'article {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37232,7 +37292,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Ne créez pas plus de 500 objets à la fois."
@@ -37256,7 +37316,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37268,20 +37328,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Veuillez saisir un compte d'écart ou définir un compte d'ajustement de stock par défaut pour la société {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Veuillez entrez un Compte pour le Montant de Change"
@@ -37289,15 +37349,15 @@ msgstr "Veuillez entrez un Compte pour le Montant de Change"
msgid "Please enter Approving Role or Approving User"
msgstr "Veuillez entrer un Rôle Approbateur ou un Rôle Utilisateur"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Veuillez entrer un Centre de Coûts"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Entrez la Date de Livraison"
@@ -37305,7 +37365,7 @@ msgstr "Entrez la Date de Livraison"
msgid "Please enter Employee Id of this sales person"
msgstr "Veuillez entrer l’ID Employé de ce commercial"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Veuillez entrer un Compte de Charges"
@@ -37314,7 +37374,7 @@ msgstr "Veuillez entrer un Compte de Charges"
msgid "Please enter Item Code to get Batch Number"
msgstr "Veuillez entrer le Code d'Article pour obtenir le Numéro de Lot"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Veuillez entrer le Code d'Article pour obtenir n° de lot"
@@ -37330,7 +37390,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Veuillez entrer la Qté Planifiée pour l'Article {0} à la ligne {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Veuillez d’abord entrer l'Article en Production"
@@ -37350,7 +37410,7 @@ msgstr "Veuillez entrer la date de Référence"
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37367,7 +37427,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Veuillez entrer entrepôt et date"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Veuillez entrer un Compte de Reprise"
@@ -37387,7 +37447,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr "Veuillez d’abord entrer le nom de l'entreprise"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Veuillez entrer la devise par défaut dans les Données de Base de la Société"
@@ -37415,7 +37475,7 @@ msgstr "Veuillez entrer la date de relève."
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Veuillez saisir le nom de l'entreprise pour confirmer"
@@ -37483,11 +37543,11 @@ msgstr "Veuillez vous assurer que les employés ci-dessus font rapport à un aut
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Veuillez vous assurer que vous voulez vraiment supprimer tous les transactions de cette société. Vos données de base resteront intactes. Cette action ne peut être annulée."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37546,7 +37606,7 @@ msgstr "Veuillez sélectionner le type de modèle pour télécharger le m
msgid "Please select Apply Discount On"
msgstr "Veuillez sélectionnez Appliquer Remise Sur"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Veuillez sélectionner la nomenclature pour l'article {0}"
@@ -37562,7 +37622,7 @@ msgstr ""
msgid "Please select Category first"
msgstr "Veuillez d’abord sélectionner une Catégorie"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37592,7 +37652,7 @@ msgstr "Veuillez sélectionner la date d'achèvement pour le journal de maintena
msgid "Please select Customer first"
msgstr "S'il vous plaît sélectionnez d'abord le client"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Veuillez sélectionner une Société Existante pour créer un Plan de Compte"
@@ -37601,8 +37661,8 @@ msgstr "Veuillez sélectionner une Société Existante pour créer un Plan de Co
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Veuillez d'abord sélectionner le code d'article"
@@ -37634,11 +37694,11 @@ msgstr "Veuillez d’abord sélectionner la Date de Comptabilisation"
msgid "Please select Price List"
msgstr "Veuillez sélectionner une Liste de Prix"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Veuillez sélectionner Qté par rapport à l'élément {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Veuillez d'abord définir un entrepôt de stockage des échantillons dans les paramètres de stock"
@@ -37654,7 +37714,7 @@ msgstr "Veuillez sélectionner la Date de Début et Date de Fin pour l'Article {
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37671,7 +37731,7 @@ msgstr "Veuillez sélectionner une Société"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Veuillez d'abord sélectionner une entreprise."
@@ -37695,7 +37755,7 @@ msgstr "Veuillez sélectionner un fournisseur"
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37768,11 +37828,15 @@ msgstr "Veuillez sélectionner une valeur pour {0} devis à {1}"
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37792,7 +37856,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37850,7 +37914,7 @@ msgstr "Veuillez sélectionner la société"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Veuillez sélectionner le type de programme à plusieurs niveaux pour plus d'une règle de collecte."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37879,7 +37943,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr "Veuillez sélectionnez les jours de congé hebdomadaires"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Veuillez d’abord sélectionner {0}"
@@ -37888,11 +37952,11 @@ msgstr "Veuillez d’abord sélectionner {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Veuillez définir ‘Appliquer Réduction Supplémentaire Sur ‘"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Veuillez définir 'Centre de Coûts des Amortissements d’Actifs’ de la Société {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Veuillez définir ‘Compte de Gain/Perte sur les Cessions d’Immobilisations’ de la Société {0}"
@@ -37904,7 +37968,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37934,7 +37998,7 @@ msgstr "Veuillez sélectionner une Société"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Veuillez définir le Compte relatif aux Amortissements dans la Catégorie d’Actifs {0} ou la Société {1}"
@@ -37952,7 +38016,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37998,7 +38062,7 @@ msgstr "Veuillez définir une entreprise"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38035,23 +38099,23 @@ msgstr "Veuillez définir au moins une ligne dans le tableau des taxes et des fr
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Veuillez définir un compte de Caisse ou de Banque par défaut pour le Mode de Paiement {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Veuillez définir le compte de trésorerie ou bancaire par défaut dans le mode de paiement {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Veuillez définir le compte par défaut en espèces ou en banque dans Mode de paiement {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38080,7 +38144,7 @@ msgstr "Veuillez définir {0} par défaut dans la Société {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Veuillez définir un filtre basé sur l'Article ou l'Entrepôt"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38088,7 +38152,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Veuillez définir la récurrence après avoir sauvegardé"
@@ -38100,15 +38164,15 @@ msgstr "Veuillez définir l'adresse du client"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Veuillez définir un centre de coûts par défaut pour la société {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Veuillez définir le Code d'Article en premier"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38147,7 +38211,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38169,7 +38233,7 @@ msgstr "Veuillez spécifier la Société"
msgid "Please specify Company to proceed"
msgstr "Veuillez spécifier la Société pour continuer"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Veuillez spécifier un N° de Ligne valide pour la ligne {0} de la table {1}"
@@ -38182,7 +38246,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Veuillez spécifier au moins un attribut dans la table Attributs"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Veuillez spécifier la Quantité, le Taux de Valorisation ou les deux"
@@ -38287,8 +38351,8 @@ msgstr "Chaîne de caractères du lien du message"
msgid "Post Title Key"
msgstr "Clé du titre du message"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Frais postaux"
@@ -38353,7 +38417,7 @@ msgstr "Publié le"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38371,7 +38435,7 @@ msgstr "Publié le"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38493,10 +38557,6 @@ msgstr ""
msgid "Posting Time"
msgstr "Heure de Publication"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "La Date et l’heure de comptabilisation sont obligatoires"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38570,18 +38630,23 @@ msgstr ""
msgid "Pre Sales"
msgstr "Prévente"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Préférence"
@@ -38754,6 +38819,7 @@ msgstr "Dalles à prix réduit"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38777,6 +38843,7 @@ msgstr "Dalles à prix réduit"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38828,7 +38895,7 @@ msgstr "Pays de la Liste des Prix"
msgid "Price List Currency"
msgstr "Devise de la Liste de Prix"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Devise de la Liste de Prix non sélectionnée"
@@ -39183,7 +39250,7 @@ msgstr "Imprimer le reçu"
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Imprimer UdM après la quantité"
@@ -39192,8 +39259,8 @@ msgstr "Imprimer UdM après la quantité"
msgid "Print Without Amount"
msgstr "Imprimer Sans Montant"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Impression et Papeterie"
@@ -39201,7 +39268,7 @@ msgstr "Impression et Papeterie"
msgid "Print settings updated in respective print format"
msgstr "Paramètres d'impression mis à jour avec le format d'impression indiqué"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39304,10 +39371,6 @@ msgstr "Problème"
msgid "Procedure"
msgstr "Procédure"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39361,7 +39424,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Quantité de perte de processus"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39442,6 +39505,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39537,8 +39604,8 @@ msgstr "Produit"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39603,7 +39670,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39817,7 +39884,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Invitation de Collaboration à un Projet"
@@ -39861,7 +39928,7 @@ msgstr "Statut du Projet"
msgid "Project Summary"
msgstr "Résumé du projet"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Résumé du projet pour {0}"
@@ -39992,7 +40059,7 @@ msgstr "Qté Projetée"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40138,7 +40205,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Prospects Contactés mais non Convertis"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40153,7 +40220,7 @@ msgstr "Fournir l'Adresse Email enregistrée dans la société"
msgid "Providing"
msgstr "Fournie"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40225,8 +40292,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40549,7 +40617,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr "La Commande d'Achat {0} n’est pas soumise"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Acheter en ligne"
@@ -40564,7 +40632,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr "Articles de commandes d'achat en retard"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Les Commandes d'Achats ne sont pas autorisés pour {0} en raison d'une note sur la fiche d'évaluation de {1}."
@@ -40579,7 +40647,7 @@ msgstr "Commandes d'achat à facturer"
msgid "Purchase Orders to Receive"
msgstr "Commandes d'achat à recevoir"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40713,7 +40781,7 @@ msgstr "Retour d'Achat"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Modèle de Taxes pour les Achats"
@@ -40811,6 +40879,7 @@ msgstr "Achat"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40820,10 +40889,6 @@ msgstr "Achat"
msgid "Purpose"
msgstr "Objet"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "L'Objet doit être parmi {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40879,6 +40944,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40927,6 +40993,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41035,11 +41102,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr "Quantité À Produire"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41090,8 +41157,8 @@ msgstr "Qté par UdM du Stock"
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Qté pour {0}"
@@ -41146,8 +41213,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Quantité À Produire"
@@ -41383,17 +41450,17 @@ msgstr "Modèle d'inspection de la qualité"
msgid "Quality Inspection Template Name"
msgstr "Nom du modèle d'inspection de la qualité"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41407,7 +41474,7 @@ msgstr "Inspection(s) Qualite"
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Gestion de la qualité"
@@ -41539,7 +41606,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41674,7 +41741,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Quantité ne doit pas être plus de {0}"
@@ -41684,21 +41751,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Quantité requise pour l'Article {0} à la ligne {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Quantité doit être supérieure à 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Quantité à fabriquer"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "La quantité à fabriquer ne peut pas être nulle pour l'opération {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "La quantité à produire doit être supérieur à 0."
@@ -41721,7 +41788,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41840,11 +41907,11 @@ msgstr "Devis Pour"
msgid "Quotation Trends"
msgstr "Tendances des Devis"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Devis {0} est annulée"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Le devis {0} n'est pas du type {1}"
@@ -42151,7 +42218,7 @@ msgstr "Taux auquel la devise du fournisseur est convertie en devise société d
msgid "Rate at which this tax is applied"
msgstr "Taux auquel cette taxe est appliquée"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42317,7 +42384,7 @@ msgstr "Matières premières consommées"
msgid "Raw Materials Consumption"
msgstr "Consommation de matières premières"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42356,12 +42423,6 @@ msgstr "Matières Premières ne peuvent pas être vides."
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42370,7 +42431,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42551,7 +42612,7 @@ msgid "Receivable / Payable Account"
msgstr "Compte Débiteur / Créditeur"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43012,7 +43073,7 @@ msgstr "Référence #"
msgid "Reference #{0} dated {1}"
msgstr "Référence #{0} datée du {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43176,11 +43237,11 @@ msgstr "Référence: {0}, Code de l'article: {1} et Client: {2}"
msgid "References"
msgstr "Références"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43342,7 +43403,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Solde restant"
@@ -43400,7 +43461,7 @@ msgstr "Remarque"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43464,7 +43525,7 @@ msgstr "Renommez la valeur de l'attribut dans l'attribut de l'article."
msgid "Rename Log"
msgstr "Journal des Renommages"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Renommer non autorisé"
@@ -43481,7 +43542,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Le renommer n'est autorisé que via la société mère {0}, pour éviter les incompatibilités."
@@ -43604,7 +43665,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "Le Type de Rapport est nécessaire"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Signaler un problème"
@@ -43849,7 +43910,7 @@ msgstr "Demande de Renseignements"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44030,7 +44091,7 @@ msgstr "Nécessite des conditions"
msgid "Research"
msgstr "Recherche"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Recherche & Développement"
@@ -44075,7 +44136,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44119,7 +44180,7 @@ msgstr ""
msgid "Reserved"
msgstr "Réservé"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44189,14 +44250,14 @@ msgstr "Quantité Réservée"
msgid "Reserved Quantity for Production"
msgstr "Quantité réservée pour la production"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44205,13 +44266,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Stock réservé"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44477,7 +44538,7 @@ msgstr "Champ du titre du résultat"
msgid "Resume"
msgstr "CV"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44502,8 +44563,8 @@ msgstr ""
msgid "Retain Sample"
msgstr "Conserver l'échantillon"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Bénéfices Non Répartis"
@@ -44578,7 +44639,7 @@ msgstr "Retour contre Reçu d'Achat"
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44614,7 +44675,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44712,8 +44773,8 @@ msgstr "Retours"
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44945,7 +45006,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr "Le type de racine est obligatoire"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "La racine ne peut pas être modifiée."
@@ -44964,8 +45025,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45145,21 +45206,21 @@ msgstr "Ligne # {0}: Le prix ne peut pas être supérieur au prix utilisé dans
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Ligne n ° {0}: l'élément renvoyé {1} n'existe pas dans {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Row # {0} (Table de paiement): le montant doit être négatif"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Ligne #{0} (Table de paiement): Le montant doit être positif"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45180,7 +45241,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Ligne # {0}: le compte {1} n'appartient pas à la société {2}"
@@ -45241,31 +45302,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Ligne # {0}: impossible de supprimer l'élément {1} qui a déjà été facturé."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Ligne # {0}: impossible de supprimer l'élément {1} qui a déjà été livré"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Ligne # {0}: impossible de supprimer l'élément {1} qui a déjà été reçu"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Ligne # {0}: impossible de supprimer l'élément {1} auquel un bon de travail est affecté."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45315,11 +45376,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45327,7 +45388,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45344,7 +45405,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45368,22 +45429,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45412,7 +45473,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45420,7 +45481,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr "Ligne n ° {0}: élément ajouté"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45448,7 +45509,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Ligne # {0}: l'article {1} n'est pas un article sérialisé / en lot. Il ne peut pas avoir de numéro de série / de lot contre lui."
@@ -45489,7 +45550,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Ligne #{0} : Changement de Fournisseur non autorisé car une Commande d'Achat existe déjà"
@@ -45501,10 +45562,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Ligne n ° {0}: l'opération {1} n'est pas terminée pour {2} quantité de produits finis dans l'ordre de fabrication {3}. Veuillez mettre à jour le statut de l'opération via la carte de travail {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45526,11 +45583,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Ligne #{0} : Veuillez sélectionner l'entrepôt de sous-assemblage"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Ligne #{0} : Veuillez définir la quantité de réapprovisionnement"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45552,15 +45609,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45568,7 +45625,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Ligne n° {0}: La quantité de l'article {1} ne peut être nulle"
@@ -45584,18 +45641,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Ligne #{0} : Type de Document de Référence doit être une Commande d'Achat, une Facture d'Achat ou une Écriture de Journal"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Ligne n ° {0}: le type de document de référence doit être l'un des suivants: Commande client, facture client, écriture de journal ou relance"
@@ -45634,7 +45691,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45654,19 +45711,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Ligne # {0}: la date de fin du service ne peut pas être antérieure à la date de validation de la facture"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Ligne # {0}: la date de début du service ne peut pas être supérieure à la date de fin du service"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Ligne # {0}: la date de début et de fin du service est requise pour la comptabilité différée"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Ligne #{0} : Définir Fournisseur pour l’article {1}"
@@ -45678,19 +45735,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45706,6 +45763,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Ligne n ° {0}: l'état doit être {1} pour l'actualisation de facture {2}."
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45722,7 +45783,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45735,7 +45796,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45747,7 +45808,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Ligne n ° {0}: le lot {1} a déjà expiré."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45783,7 +45844,7 @@ msgstr "Ligne #{0}: Vous ne pouvez pas utiliser la dimension de stock '{1}' dans
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Ligne #{0} : {1} ne peut pas être négatif pour l’article {2}"
@@ -45799,7 +45860,7 @@ msgstr "Ligne n ° {0}: {1} est requise pour créer les {2} factures d'ouverture
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45900,7 +45961,7 @@ msgstr "Rangée #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Ligne n ° {}: {} {} n'existe pas."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45908,7 +45969,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Ligne {0}: l'opération est requise pour l'article de matière première {1}"
@@ -45916,7 +45977,7 @@ msgstr "Ligne {0}: l'opération est requise pour l'article de matière première
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45948,11 +46009,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Ligne {0} : Nomenclature non trouvée pour l’Article {1}"
@@ -45969,7 +46030,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Ligne {0} : Le Facteur de Conversion est obligatoire"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45989,7 +46050,7 @@ msgstr "Ligne {0} : La devise de la nomenclature #{1} doit être égale à la de
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Ligne {0} : L’Écriture de Débit ne peut pas être lié à un {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Ligne {0}: l'entrepôt de livraison ({1}) et l'entrepôt client ({2}) ne peuvent pas être identiques"
@@ -45997,7 +46058,7 @@ msgstr "Ligne {0}: l'entrepôt de livraison ({1}) et l'entrepôt client ({2}) ne
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Ligne {0}: la date d'échéance dans le tableau des conditions de paiement ne peut pas être antérieure à la date comptable"
@@ -46042,16 +46103,16 @@ msgstr "Ligne {0}: pour le fournisseur {1}, l'adresse e-mail est obligatoire pou
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Ligne {0} : Heure de Début et Heure de Fin obligatoires."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Ligne {0} : Heure de Début et Heure de Fin de {1} sont en conflit avec {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Ligne {0}: le temps doit être inférieur au temps"
@@ -46067,7 +46128,7 @@ msgstr "Ligne {0} : Référence {1} non valide"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Ligne {0}: Modèle de taxe d'article mis à jour selon la validité et le taux appliqué"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46091,7 +46152,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46159,7 +46220,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46171,10 +46232,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Ligne {0}: quantité non disponible pour {4} dans l'entrepôt {1} au moment de la comptabilisation de l'entrée ({2} {3})."
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46183,11 +46240,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Ligne {0}: l'article sous-traité est obligatoire pour la matière première {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46199,11 +46256,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Ligne {0}: l'article {1}, la quantité doit être un nombre positif"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46211,11 +46268,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Ligne {0} : Facteur de Conversion nomenclature est obligatoire"
@@ -46228,11 +46285,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Ligne {0}: l'utilisateur n'a pas appliqué la règle {1} sur l'élément {2}"
@@ -46244,7 +46301,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr "Ligne {0}: {1} doit être supérieure à 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46290,7 +46347,7 @@ msgstr "Lignes supprimées dans {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Les lignes associées aux mêmes codes comptables seront fusionnées dans le grand livre"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Des lignes avec des dates d'échéance en double dans les autres lignes ont été trouvées : {0}"
@@ -46298,7 +46355,7 @@ msgstr "Des lignes avec des dates d'échéance en double dans les autres lignes
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46505,8 +46562,8 @@ msgstr "Stock de Sécurité"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46528,8 +46585,8 @@ msgstr "Mode de Rémunération"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46543,18 +46600,23 @@ msgstr "Mode de Rémunération"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Ventes"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Compte de vente"
@@ -46578,8 +46640,8 @@ msgstr "Contributions et incitations aux ventes"
msgid "Sales Defaults"
msgstr "Valeurs par défaut pour la vente"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Frais de vente"
@@ -46748,11 +46810,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "La Facture Vente {0} a déjà été transmise"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46950,25 +47012,25 @@ msgstr "Tendances des Commandes Client"
msgid "Sales Order required for Item {0}"
msgstr "Commande Client requise pour l'Article {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Commande Client {0} n'a pas été transmise"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Commande Client {0} invalide"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Commande Client {0} est {1}"
@@ -47012,6 +47074,7 @@ msgstr "Commandes de vente à livrer"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47024,7 +47087,7 @@ msgstr "Commandes de vente à livrer"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47130,7 +47193,7 @@ msgstr "Résumé du paiement des ventes"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47223,7 +47286,7 @@ msgstr "Registre des Ventes"
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Retour de Ventes"
@@ -47247,7 +47310,7 @@ msgstr "Récapitulatif des ventes"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Modèle de la Taxe de Vente"
@@ -47366,7 +47429,7 @@ msgstr "Même article"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47398,12 +47461,12 @@ msgstr "Entrepôt de stockage des échantillons"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Taille de l'Échantillon"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "La quantité d'échantillon {0} ne peut pas dépasser la quantité reçue {1}"
@@ -47645,7 +47708,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr "Entrepôt de Rebut"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47764,8 +47827,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Prêts garantis"
@@ -47803,7 +47866,7 @@ msgstr "Sélectionnez un autre élément"
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Sélectionner les valeurs d'attribut"
@@ -47845,7 +47908,7 @@ msgstr "Sélectionnez une entreprise"
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47881,7 +47944,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Sélectionner les Employés"
@@ -47906,7 +47969,7 @@ msgstr "Sélectionner des éléments"
msgid "Select Items based on Delivery Date"
msgstr "Sélectionnez les articles en fonction de la Date de Livraison"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47944,7 +48007,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Sélectionner le Fournisseur Possible"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Sélectionner Quantité"
@@ -48019,7 +48082,7 @@ msgstr "Sélectionnez une priorité par défaut."
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Sélectionnez un fournisseur"
@@ -48042,7 +48105,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48058,8 +48121,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48076,7 +48139,7 @@ msgstr "Sélectionner d'abord le nom de la société."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Sélectionnez le livre de financement pour l'élément {0} à la ligne {1}."
@@ -48108,7 +48171,7 @@ msgstr "Sélectionnez le compte bancaire à rapprocher."
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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48125,7 +48188,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr "Veuillez sélectionner le client ou le fournisseur."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48133,6 +48196,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48160,7 +48229,7 @@ msgstr "Sélectionnez, pour rendre le client recherchable avec ces champs"
msgid "Selected POS Opening Entry should be open."
msgstr "L'entrée d'ouverture de PDV sélectionnée doit être ouverte."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "La liste de prix sélectionnée doit avoir les champs d'achat et de vente cochés."
@@ -48191,30 +48260,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Vendre"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48467,7 +48536,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48487,7 +48556,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48532,7 +48601,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48672,7 +48741,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48742,7 +48811,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49156,7 +49225,7 @@ msgstr "Affecter les encours au réglement"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Définir manuellement le prix de base"
@@ -49175,8 +49244,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49343,11 +49412,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Configurer le compte d'inventaire par défaut pour l'inventaire perpétuel"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49379,7 +49448,7 @@ msgstr "Définir le prix des articles de sous-assemblage en fonction de la nomen
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Définir des objectifs par Groupe d'Articles pour ce Commercial"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49490,7 +49559,7 @@ msgid "Setting up company"
msgstr "Création d'entreprise"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49510,6 +49579,10 @@ msgstr ""
msgid "Settled"
msgstr "Colonisé"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49702,7 +49775,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Livraisons"
@@ -49740,7 +49813,7 @@ msgstr "Nom de l'Adresse de Livraison"
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49883,8 +49956,8 @@ msgstr "Courte biographie pour le site web et d'autres publications."
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50216,7 +50289,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50261,7 +50334,7 @@ msgstr "Ignorer le bon de livraison"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50303,8 +50376,8 @@ msgstr "Constante de lissage"
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50328,7 +50401,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50392,7 +50465,7 @@ msgstr ""
msgid "Source Location"
msgstr "Localisation source"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50401,11 +50474,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50463,7 +50536,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50471,24 +50549,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "Les localisations source et cible ne peuvent pas être identiques"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "L'entrepôt source et destination ne peuvent être similaire dans la ligne {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Entrepôt source et destination doivent être différents"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Source des Fonds (Passif)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Entrepôt source est obligatoire à la ligne {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50529,7 +50606,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50537,7 +50614,7 @@ msgid "Split"
msgstr "Fractionner"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50561,7 +50638,7 @@ msgstr ""
msgid "Split Issue"
msgstr "Diviser le ticket"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50573,6 +50650,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50645,13 +50727,13 @@ msgstr "Achat standard"
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Vente standard"
@@ -50672,8 +50754,8 @@ msgstr "Modèle Standard"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50708,7 +50790,7 @@ msgstr "La date de début ne peut pas être antérieure à la date du jour"
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50837,7 +50919,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Le statut doit être annulé ou complété"
@@ -50867,6 +50949,7 @@ msgstr "Informations légales et autres informations générales au sujet de vot
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50875,8 +50958,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50976,6 +51059,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50985,10 +51078,6 @@ msgstr ""
msgid "Stock Details"
msgstr "Détails du Stock"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51052,7 +51141,7 @@ msgstr "Une entrée de stock a déjà été créée dans cette liste de prélèv
msgid "Stock Entry {0} created"
msgstr "Écriture de Stock {0} créée"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51060,8 +51149,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr "Écriture de Stock {0} n'est pas soumise"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Charges de Stock"
@@ -51139,8 +51228,8 @@ msgstr "Niveaux du Stocks"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Passif du Stock"
@@ -51243,8 +51332,8 @@ msgstr "Quantité de stock vs numéro de série"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51256,7 +51345,7 @@ msgstr "Stock Reçus Mais Non Facturés"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51268,7 +51357,7 @@ msgstr "Réconciliation du Stock"
msgid "Stock Reconciliation Item"
msgstr "Article de Réconciliation du Stock"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Rapprochements des stocks"
@@ -51293,9 +51382,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51306,7 +51395,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51331,10 +51420,10 @@ msgstr "Réservation de stock"
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51362,7 +51451,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 "Une réservation de stock a été créée pour cette liste de prélèvement, il n'est plus possible de mettre à jour la liste de prélèvement. Si vous souhaitez la modifier, nous recommandons de l'annuler et d'en créer une nouvelle."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51402,7 +51491,7 @@ msgstr "Qté de stock réservé (en UdM de stock)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51517,7 +51606,7 @@ msgstr " Paramétre des transactions"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51650,11 +51739,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51709,14 +51798,14 @@ msgstr ""
msgid "Stop Reason"
msgstr "Arrêter la raison"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Un ordre de fabrication arrêté ne peut être annulé, Re-démarrez le pour pouvoir l'annuler"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Magasins"
@@ -51774,7 +51863,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52036,7 +52125,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52125,7 +52214,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52146,7 +52235,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr "Valider les entrées de journal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Valider cet ordre de fabrication pour continuer son traitement."
@@ -52300,7 +52389,7 @@ msgstr "Réconcilié avec succès"
msgid "Successfully Set Supplier"
msgstr "Fournisseur défini avec succès"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52324,7 +52413,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52484,7 +52573,7 @@ msgstr "Qté Fournie"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52582,6 +52671,7 @@ msgstr "Détails du Fournisseur"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52591,7 +52681,7 @@ msgstr "Détails du Fournisseur"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52606,6 +52696,7 @@ msgstr "Détails du Fournisseur"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52690,7 +52781,7 @@ msgstr "Récapitulatif du grand livre des fournisseurs"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52725,8 +52816,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52778,7 +52867,7 @@ msgstr "Contact fournisseur principal"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52807,7 +52896,7 @@ msgstr "Comparaison des devis fournisseurs"
msgid "Supplier Quotation Item"
msgstr "Article Devis Fournisseur"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Devis fournisseur {0} créé"
@@ -52896,7 +52985,7 @@ msgstr "Type de Fournisseur"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Entrepôt Fournisseur"
@@ -52913,17 +53002,12 @@ msgstr "Fournisseur livre au Client"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Fournisseur {0} introuvable dans {1}"
@@ -52936,8 +53020,8 @@ msgstr "Fournisseur(s)"
msgid "Suppliers"
msgstr "Fournisseurs"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53028,7 +53112,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr "Synchroniser tous les comptes toutes les heures"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53058,7 +53142,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr "Le système récupérera toutes les entrées si la valeur limite est zéro."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53079,10 +53163,16 @@ msgstr "Résumé des calculs TDS"
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53230,7 +53320,7 @@ msgstr "Adresse de l'entrepôt cible"
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53238,24 +53328,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "L’Entrepôt cible est obligatoire pour la ligne {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53372,8 +53461,8 @@ msgstr "Montant de la Taxe Après Remise (Devise Société)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Actifs d'Impôts"
@@ -53405,7 +53494,6 @@ msgstr "Actifs d'Impôts"
msgid "Tax Breakup"
msgstr "Répartition des Taxes"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53427,7 +53515,6 @@ msgstr "Répartition des Taxes"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53443,6 +53530,7 @@ msgstr "Répartition des Taxes"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53454,8 +53542,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "La Catégorie de Taxe a été changée à \"Total\" car tous les articles sont des articles hors stock"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53529,7 +53617,7 @@ msgstr "Taux d'Imposition %"
msgid "Tax Rates"
msgstr "Les taux d'imposition"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53547,7 +53635,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "Règle de Taxation"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Règle de Taxation est en Conflit avec {0}"
@@ -53562,7 +53650,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Un Modèle de Taxe est obligatoire."
@@ -53881,7 +53969,7 @@ msgstr "Taxes et Frais Déductibles"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Taxes et Frais Déductibles (Devise Société)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53914,8 +54002,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Frais Téléphoniques"
@@ -53966,13 +54054,13 @@ msgstr "Temporairement en attente"
msgid "Temporary"
msgstr "Temporaire"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Comptes temporaires"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Ouverture temporaire"
@@ -54154,7 +54242,7 @@ msgstr "Modèle des Termes et Conditions"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54253,7 +54341,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Le champ 'N° de Paquet' ne doit pas être vide ni sa valeur être inférieure à 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "L'accès à la demande de devis du portail est désactivé. Pour autoriser l'accès, activez-le dans les paramètres du portail."
@@ -54306,7 +54394,8 @@ msgstr "Le délai de paiement à la ligne {0} est probablement un doublon."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Une liste de prélèvement avec une écriture de réservation de stock ne peut être modifié. Si vous souhaitez la modifier, nous recommandons d'annuler l'écriture de réservation de stock et avant de modifier la liste de prélèvement."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54322,7 +54411,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54358,7 +54447,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54366,7 +54455,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54386,7 +54479,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54419,7 +54512,7 @@ msgstr "Le champ 'De l'actionnaire' ne peut pas être vide"
msgid "The field To Shareholder cannot be blank"
msgstr "Le champ 'A l'actionnaire' ne peut pas être vide"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54460,11 +54553,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Les attributs supprimés suivants existent dans les variantes mais pas dans le modèle. Vous pouvez supprimer les variantes ou conserver le ou les attributs dans le modèle."
@@ -54485,7 +54578,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Les {0} suivants ont été créés: {1}"
@@ -54512,7 +54605,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54570,7 +54663,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54582,6 +54675,12 @@ msgstr "Le compte parent {0} n'existe pas dans le modèle téléchargé"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Le compte passerelle de paiement dans le plan {0} est différent du compte passerelle de paiement dans cette requête de paiement."
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54623,7 +54722,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Le compte racine {0} doit être un groupe"
@@ -54639,7 +54738,7 @@ msgstr "Le compte de modification sélectionné {} n'appartient pas à l'entrepr
msgid "The selected item cannot have Batch"
msgstr "L’article sélectionné ne peut pas avoir de Lot"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54672,7 +54771,7 @@ msgstr "Les actions n'existent pas pour {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Le stock a été réservé pour les articles et entrepôts suivants, annulez-le pour {0} l'inventaire: {1}"
@@ -54694,11 +54793,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "La tâche a été mise en file d'attente en tant que tâche en arrière-plan. En cas de problème de traitement en arrière-plan, le système ajoute un commentaire concernant l'erreur sur ce rapprochement des stocks et revient au stade de brouillon."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54746,15 +54845,15 @@ msgstr "La valeur de {0} diffère entre les éléments {1} et {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "La valeur {0} est déjà attribuée à un élément existant {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "L'entrepôt où vous stockez les articles finis avant qu'ils soient expédiés."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "L'entrepôt dans lequel vous stockez vos matières premières. Chaque article requis peut avoir un entrepôt source distinct. Un entrepôt de groupe peut également être sélectionné comme entrepôt source. Lors de la validation de l'ordre de fabrication, les matières premières seront réservées dans ces entrepôts pour la production."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54762,19 +54861,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "Le {0} ({1}) doit être égal à {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54782,7 +54881,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54798,7 +54897,7 @@ msgstr "Il y a une maintenance active ou des réparations sur l'actif. Vous deve
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Il existe des incohérences entre le prix unitaire, le nombre d'actions et le montant calculé"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54827,7 +54926,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Il existe deux options pour gérer la valorisation du stock. FIFO (premier entré - premier sorti) et la moyenne mobile. Pour comprendre ce sujet en détail, veuillez consulter Valorisation des articles, FIFO et moyenne mobile. "
@@ -54867,7 +54966,7 @@ msgstr "Aucun lot trouvé pour {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54923,11 +55022,11 @@ msgstr "Cet article est une Variante de {0} (Modèle)."
msgid "This Month's Summary"
msgstr "Résumé Mensuel"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54961,7 +55060,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Cela couvre toutes les fiches d'Évaluation liées à cette Configuration"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ce document excède la limite de {0} {1} pour l’article {4}. Faites-vous un autre {3} contre le même {2} ?"
@@ -55064,11 +55163,11 @@ msgstr ""
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Ceci est fait pour gérer la comptabilité des cas où le reçu d'achat est créé après la facture d'achat"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55137,7 +55236,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55145,15 +55244,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55161,7 +55260,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55230,7 +55329,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Cela limitera l'accès des utilisateurs aux données des autres employés"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55341,7 +55440,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Des journaux horaires sont requis pour {0} {1}"
@@ -55450,7 +55549,7 @@ msgstr "À Facturer"
msgid "To Currency"
msgstr "Devise Finale"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "La date de fin ne peut être antérieure à la date de début"
@@ -55677,11 +55776,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Pour autoriser la facturation excédentaire, mettez à jour "Provision de facturation excédentaire" dans les paramètres de compte ou le poste."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Pour autoriser le dépassement de réception / livraison, mettez à jour "Limite de dépassement de réception / livraison" dans les paramètres de stock ou le poste."
@@ -55724,11 +55827,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Pour inclure la taxe de la ligne {0} dans le prix de l'Article, les taxes des lignes {1} doivent également être incluses"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Pour fusionner, les propriétés suivantes doivent être les mêmes pour les deux articles"
@@ -55736,7 +55839,7 @@ msgstr "Pour fusionner, les propriétés suivantes doivent être les mêmes pour
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Pour contourner ce problème, activez «{0}» dans l'entreprise {1}"
@@ -55761,7 +55864,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55911,7 +56014,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56018,12 +56121,12 @@ msgstr "Total de la Commission"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Total terminé Quantité"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56325,7 +56428,7 @@ msgstr "Encours total"
msgid "Total Paid Amount"
msgstr "Montant total payé"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Le montant total du paiement dans l'échéancier doit être égal au Total Général / Total Arrondi"
@@ -56337,7 +56440,7 @@ msgstr "Le montant total de la demande de paiement ne peut être supérieur à {
msgid "Total Payments"
msgstr "Total des paiements"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56620,7 +56723,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "Pourcentage total attribué à l'équipe commerciale devrait être de 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Le pourcentage total de contribution devrait être égal à 100"
@@ -56795,7 +56898,7 @@ msgstr "Date de la transaction"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56819,11 +56922,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56928,7 +57031,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "La transaction n'est pas autorisée pour l'ordre de fabrication arrêté {0}"
@@ -56975,11 +57079,16 @@ msgstr "Historique annuel des transactions"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr ""
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57160,8 +57269,8 @@ msgstr "Infos Transporteur"
msgid "Transporter Name"
msgstr "Nom du transporteur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Frais de Déplacement"
@@ -57425,6 +57534,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57440,7 +57550,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57501,7 +57611,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Facteur de Conversion de l'UdM"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Facteur de conversion UdM ({0} -> {1}) introuvable pour l'article: {2}"
@@ -57514,7 +57624,7 @@ msgstr "Facteur de conversion de l'UdM est obligatoire dans la ligne {0}"
msgid "UOM Name"
msgstr "Nom UdM"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57586,12 +57696,12 @@ msgstr "Impossible de trouver le taux de change pour {0} à {1} pour la date cl
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Impossible de trouver un score démarrant à {0}. Vous devez avoir des scores couvrant 0 à 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57673,7 +57783,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57692,7 +57802,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57709,7 +57819,7 @@ msgstr "Unité de mesure"
msgid "Unit of Measure (UOM)"
msgstr "Unité de mesure (UdM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Unité de Mesure {0} a été saisie plus d'une fois dans la Table de Facteur de Conversion"
@@ -57854,7 +57964,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57894,12 +58004,12 @@ msgstr "Non résolu"
msgid "Unscheduled"
msgstr "Non programmé"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Prêts non garantis"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58075,7 +58185,7 @@ msgstr "Mise à jour des articles"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58154,11 +58264,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Mise à jour des variantes ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58360,7 +58470,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Utilisez un nom différent du nom du projet précédent"
@@ -58402,7 +58512,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58466,6 +58576,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58488,8 +58603,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Frais de Services d'Utilité Publique"
@@ -58499,7 +58614,7 @@ msgstr "Frais de Services d'Utilité Publique"
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58509,12 +58624,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58708,7 +58823,6 @@ msgstr "Méthode de Valorisation"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58724,14 +58838,12 @@ msgstr "Méthode de Valorisation"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Taux de Valorisation"
@@ -58739,19 +58851,19 @@ msgstr "Taux de Valorisation"
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Taux de valorisation manquant"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Le taux de valorisation de l'article {0} est requis pour effectuer des écritures comptables pour {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Le Taux de Valorisation est obligatoire si un Stock Initial est entré"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Taux de valorisation requis pour le poste {0} à la ligne {1}"
@@ -58761,7 +58873,7 @@ msgstr "Taux de valorisation requis pour le poste {0} à la ligne {1}"
msgid "Valuation and Total"
msgstr "Valorisation et Total"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58775,7 +58887,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Les frais de type d'évaluation ne peuvent pas être marqués comme inclusifs"
@@ -58787,7 +58899,7 @@ msgstr "Frais de type valorisation ne peuvent pas être marqués comme inclus"
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58906,12 +59018,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variante"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Erreur d'attribut de variante"
@@ -58930,7 +59042,7 @@ msgstr "Variante de nomenclature"
msgid "Variant Based On"
msgstr "Variante Basée Sur"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Les variantes basées sur ne peuvent pas être modifiées"
@@ -58948,7 +59060,7 @@ msgstr "Champ de Variante"
msgid "Variant Item"
msgstr "Élément de variante"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Articles de variante"
@@ -58959,7 +59071,7 @@ msgstr "Articles de variante"
msgid "Variant Of"
msgstr "Variante de"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "La création de variantes a été placée en file d'attente."
@@ -59253,7 +59365,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Référence #"
@@ -59325,7 +59437,7 @@ msgstr "Nom du bon"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59399,7 +59511,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59426,7 +59538,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59606,8 +59718,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Entrepôt introuvable sur le compte {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Magasin requis pour l'article en stock {0}"
@@ -59632,7 +59744,7 @@ msgstr "L'entrepôt {0} n'appartient pas à la société {1}"
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59769,11 +59881,11 @@ msgstr "Attention : Un autre {0} {1} # existe pour l'écriture de stock {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Attention : La Quantité de Matériel Commandé est inférieure à la Qté Minimum de Commande"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Attention : La Commande Client {0} existe déjà pour la Commande d'Achat du Client {1}"
@@ -59863,7 +59975,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59932,7 +60044,7 @@ msgstr "Site Web:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60062,7 +60174,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60072,7 +60184,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60082,11 +60194,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Lors de la création du compte pour l'entreprise enfant {0}, le compte parent {1} a été trouvé en tant que compte du grand livre."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Lors de la création du compte pour l'entreprise enfant {0}, le compte parent {1} est introuvable. Veuillez créer le compte parent dans le COA correspondant"
@@ -60231,7 +60343,7 @@ msgstr "Travaux Effectués"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Travaux en cours"
@@ -60268,7 +60380,7 @@ msgstr "Travaux en cours"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60302,7 +60414,7 @@ msgstr ""
msgid "Work Order Item"
msgstr "Article d'ordre de fabrication"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60343,19 +60455,23 @@ msgstr "Résumé de l'ordre de fabrication"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "L'ordre de fabrication ne peut pas être créé pour la raison suivante: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Un ordre de fabrication ne peut pas être créé pour un modèle d'article"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "L'ordre de fabrication a été {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Ordre de fabrication non créé"
@@ -60364,16 +60480,16 @@ msgstr "Ordre de fabrication non créé"
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Bon de travail {0}: carte de travail non trouvée pour l'opération {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Bons de travail"
@@ -60398,7 +60514,7 @@ msgstr "Travaux En Cours"
msgid "Work-in-Progress Warehouse"
msgstr "Entrepôt des Travaux en Cours"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "L'entrepôt des Travaux en Cours est nécessaire avant de Valider"
@@ -60446,7 +60562,7 @@ msgstr "Heures de travail"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60537,14 +60653,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Reprise"
@@ -60649,7 +60765,7 @@ msgstr "Valeur comptable nette"
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Mauvais mot de passe"
@@ -60705,11 +60821,11 @@ msgstr "Année de début ou de fin chevauche avec {0}. Pour l'éviter veuillez d
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Vous n'êtes pas autorisé à effectuer la mise à jour selon les conditions définies dans {} Workflow."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Vous n'êtes pas autorisé à ajouter ou faire une mise à jour des écritures avant le {0}"
@@ -60717,7 +60833,7 @@ msgstr "Vous n'êtes pas autorisé à ajouter ou faire une mise à jour des écr
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Vous n'êtes pas autorisé à définir des valeurs gelées"
@@ -60745,7 +60861,7 @@ msgstr "Vous pouvez également définir le compte CWIP par défaut dans Entrepri
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Vous pouvez changer le compte parent en compte de bilan ou sélectionner un autre compte."
@@ -60786,11 +60902,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60814,7 +60930,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Vous ne pouvez pas créer ou annuler des écritures comptables dans la période comptable clôturée {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60875,7 +60991,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Vous ne disposez pas des autorisations nécessaires pour {} éléments dans un {}."
@@ -60887,19 +61003,19 @@ msgstr "Vous n'avez pas assez de points de fidélité à échanger"
msgid "You don't have enough points to redeem."
msgstr "Vous n'avez pas assez de points à échanger."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60911,7 +61027,7 @@ msgstr "Vous avez rencontré {} erreurs lors de la création des factures d'ouve
msgid "You have already selected items from {0} {1}"
msgstr "Vous avez déjà choisi des articles de {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60935,7 +61051,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Vous devez activer la re-commande automatique dans les paramètres de stock pour maintenir les niveaux de ré-commande."
@@ -60951,7 +61067,7 @@ msgstr "Vous devez sélectionner un client avant d'ajouter un article."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60998,11 +61114,11 @@ msgstr "Code postal"
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61024,11 +61140,11 @@ msgstr "Fichier zip"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Important] [ERPNext] Erreurs de réorganisation automatique"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61069,7 +61185,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61218,7 +61334,7 @@ msgstr ""
msgid "per hour"
msgstr "par heure"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61251,7 +61367,7 @@ msgstr "reçu de"
msgid "reconciled"
msgstr "réconcilié"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "retourné"
@@ -61286,7 +61402,7 @@ msgstr ""
msgid "sandbox"
msgstr "bac à sable"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "vendu"
@@ -61294,8 +61410,8 @@ msgstr "vendu"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61313,7 +61429,7 @@ msgstr "Titre"
msgid "to"
msgstr "à"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61340,7 +61456,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "unique, par exemple SAVE20 À utiliser pour obtenir une remise"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61362,7 +61478,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "vous devez sélectionner le compte des travaux d'immobilisations en cours dans le tableau des comptes"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' est désactivé(e)"
@@ -61370,7 +61486,7 @@ msgstr "{0} '{1}' est désactivé(e)"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' n'est pas dans l’Exercice {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) ne peut pas être supérieur à la quantité planifiée ({2}) dans l'ordre de fabrication {3}"
@@ -61378,7 +61494,7 @@ msgstr "{0} ({1}) ne peut pas être supérieur à la quantité planifiée ({2})
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61411,11 +61527,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "Le {0} numéro {1} est déjà utilisé dans {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Opérations: {1}"
@@ -61423,7 +61539,7 @@ msgstr "{0} Opérations: {1}"
msgid "{0} Request for {1}"
msgstr "{0} demande de {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Conserver l'échantillon est basé sur le lot, veuillez cocher A un numéro de lot pour conserver l'échantillon d'article"
@@ -61511,11 +61627,11 @@ msgstr "{0} créé"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} est actuellement associé avec une fiche d'évaluation fournisseur {1}. Les bons de commande pour ce fournisseur doivent être édités avec précaution."
@@ -61527,7 +61643,7 @@ msgstr "{0} est actuellement associée avec une fiche d'évaluation fournisseur
msgid "{0} does not belong to Company {1}"
msgstr "{0} n'appartient pas à la Société {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61536,7 +61652,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} est entré deux fois dans la Taxe de l'Article"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61561,7 +61677,7 @@ msgstr "{0} a été envoyé avec succès"
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} dans la ligne {1}"
@@ -61583,7 +61699,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} est bloqué donc cette transaction ne peut pas continuer"
@@ -61591,12 +61707,12 @@ msgstr "{0} est bloqué donc cette transaction ne peut pas continuer"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} est obligatoire pour l’Article {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61604,7 +61720,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} est obligatoire. L'enregistrement de change de devises n'est peut-être pas créé pour le {1} au {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} est obligatoire. Peut-être qu’un enregistrement de Taux de Change n'est pas créé pour {1} et {2}."
@@ -61612,7 +61728,7 @@ msgstr "{0} est obligatoire. Peut-être qu’un enregistrement de Taux de Change
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} n'est pas un compte bancaire d'entreprise"
@@ -61620,7 +61736,7 @@ msgstr "{0} n'est pas un compte bancaire d'entreprise"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} n'est pas un nœud de groupe. Veuillez sélectionner un nœud de groupe comme centre de coûts parent"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} n'est pas un Article de stock"
@@ -61660,27 +61776,27 @@ msgstr "{0} est en attente jusqu'à {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} articles en cours"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} articles produits"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61688,7 +61804,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} doit être négatif dans le document de retour"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61704,7 +61820,7 @@ msgstr "Le paramètre {0} n'est pas valide"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} écritures de paiement ne peuvent pas être filtrées par {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61717,7 +61833,7 @@ msgstr "{0} à {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61733,16 +61849,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} unités de {1} nécessaires dans {2} sur {3} {4} pour {5} pour compléter cette transaction."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} unités de {1} nécessaires dans {2} pour compléter cette transaction."
@@ -61754,7 +61870,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} numéro de série valide pour l'objet {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} variantes créées."
@@ -61770,7 +61886,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61808,8 +61924,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} a été modifié. Veuillez actualiser."
@@ -61919,7 +62035,7 @@ msgstr "{0} {1} : Compte {2} inactif"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1} : L’Écriture Comptable pour {2} peut seulement être faite en devise: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Centre de Coûts est obligatoire pour l’Article {2}"
@@ -61968,8 +62084,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, terminez l'opération {1} avant l'opération {2}."
@@ -61989,11 +62105,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0} : {1} n'existe pas"
@@ -62001,11 +62117,11 @@ msgstr "{0} : {1} n'existe pas"
msgid "{0}: {1} does not exists"
msgstr "{0} : {1} n’existe pas"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} doit être inférieur à {2}"
@@ -62017,7 +62133,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} est annulé ou fermé."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62029,7 +62145,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} ne peut pas être annulé car les points de fidélité gagnés ont été utilisés. Annulez d'abord le {} Non {}"
diff --git a/erpnext/locale/hr.po b/erpnext/locale/hr.po
index 740a77fd507..71034650ec7 100644
--- a/erpnext/locale/hr.po
+++ b/erpnext/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Podsklop"
msgid " Summary"
msgstr " Sažetak"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Klijent Dostavljeni Artikal\" ne može biti Nabavni Artikal"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Klijent Dostavljen Artikal\" ne može imati Stopu Vrednovanja"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "Ne može se poništiti izbor opcije \"Fiksna Imovina\", jer postoji zapis imovine naspram artikla"
@@ -273,11 +273,11 @@ msgstr "% materijala isporučenih prema ovom Popisu Odabira"
msgid "% of materials delivered against this Sales Order"
msgstr "% materijala dostavljenog naspram ovog Prodajnog Naloga"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Račun' u sekciji Knjigovodstvo Klijenta {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Dozvoli višestruke Prodajne Naloge naspram Nabavnog Naloga Klijenta'"
@@ -289,7 +289,7 @@ msgstr "'Na Osnovu' i 'Grupiraj Po' ne mogu biti isti"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Dana od posljednje narudžbe' mora biti veći ili jednako nuli"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standard {0} račun' u Tvrtki {1}"
@@ -307,7 +307,7 @@ msgstr "'Od datuma' je obavezan"
msgid "'From Date' must be after 'To Date'"
msgstr "'Od datuma' mora biti nakon 'Do datuma'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Ima Serijski Broj' ne može biti 'Da' za artikal koji nije na zalihama"
@@ -319,9 +319,9 @@ msgstr "'Kontrola Obavezna prije Dostave' je onemogućena za artikal {0}, nema p
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Kontrola Obavezna prije Nabave' je onemogućena za artikal {0}, nema potrebe za izradom Kontrole Kvaliteta"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Početno'"
@@ -351,8 +351,8 @@ msgstr "Račun '{0}' već koristi {1}. Koristite drugi račun."
msgid "'{0}' has been already added."
msgstr "'{0}' je već dodan."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' bi trebao biti u valuti tvrtke {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 dana"
msgid "90 Above"
msgstr "Preko 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Postavke Da
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Datum odobrenja mora biti nakon datuma čeka za redak(e): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikal {0} u redu(ovima) {1} fakturisan je više od {2} "
@@ -825,7 +825,7 @@ msgstr "Potreban dokument o plaćanju za redak(e): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Ne možese fakturisati više od predviđenog iznosa za sljedeće artikle:
"
@@ -888,7 +888,7 @@ msgstr "Datum knjiženja {0} ne može biti prije datuma Nabavnog Naloga za sl
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 "Cijena Cjenovnika nije postavljena za uređivanje u Postavkama Prodaje. U ovom scenariju, postavljanje Ažuriraj Cjenovnik na Osnovu na Cijena Cjenovnika spriječit će automatsko ažuriranje cijene artikla.
Jeste li sigurni da želite nastaviti?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Da biste omogućili prekomjerno fakturisanje, postavite dopuštenje u Postavkama Knjigovodstva.
"
@@ -970,11 +970,11 @@ msgstr "Prečice "
msgid "Your Shortcuts "
msgstr "Prečice "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Ukupno: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Nepodmireni iznos: {0}"
@@ -1044,7 +1044,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Grupa Klijenta postoji sa istim imenom, molimo promijenite naziv klijenta ili preimenujte Grupu Klijenta"
@@ -1208,11 +1208,11 @@ msgstr "Skr"
msgid "Abbreviation"
msgstr "Skraćenica"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Skraćenica se već koristi za drugu tvrtke"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Skraćenica je obavezna"
@@ -1220,7 +1220,7 @@ msgstr "Skraćenica je obavezna"
msgid "Abbreviation: {0} must appear only once"
msgstr "Skraćenica: {0} se mora pojaviti samo jednom"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Iznad"
@@ -1274,7 +1274,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Prihvaćena Količina u Jedinici Zaliha"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Prihvaćena količina"
@@ -1310,7 +1310,7 @@ msgstr "Pristupni ključ je potreban za davaoca usluga: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Prema CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Prema Sastavnici {0}, artikal '{1}' nedostaje u unosu zaliha."
@@ -1428,8 +1428,8 @@ msgstr "Račun"
msgid "Account Manager"
msgstr "Upravitelj Računovodstva"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Račun Nedostaje"
@@ -1447,7 +1447,7 @@ msgstr "Račun Nedostaje"
msgid "Account Name"
msgstr "Naziv Računa"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Račun nije pronađen"
@@ -1460,7 +1460,7 @@ msgstr "Račun nije pronađen"
msgid "Account Number"
msgstr "Broj Računa"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Broj Računa {0} već se koristi na računu {1}"
@@ -1499,7 +1499,7 @@ msgstr "Podtip Računa"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1515,11 +1515,11 @@ msgstr "Vrsta Računa"
msgid "Account Value"
msgstr "Stanje Računa"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Stanje na računu je već u Kreditu, nije vam dozvoljeno postaviti 'Stanje mora biti' kao 'Debit'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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'"
@@ -1586,15 +1586,15 @@ msgstr "Račun na koji će se uplatiti prihod od prodaje ovog artikla"
msgid "Account where the cost of this item will be debited on purchase"
msgstr "Račun na koji će se prilikom nabave terećiti trošak ovog artikla"
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Račun sa podređenim članovima ne može se pretvoriti u Registar"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Račun sa podređenim članovima ne može se postaviti kao Registar"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u grupu."
@@ -1602,8 +1602,8 @@ msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u grupu."
msgid "Account with existing transaction can not be deleted"
msgstr "Račun sa postojećom transakcijom ne može se izbrisati"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u Registar"
@@ -1611,11 +1611,11 @@ msgstr "Račun sa postojećom transakcijom ne može se pretvoriti u Registar"
msgid "Account {0} added multiple times"
msgstr "Račun {0} dodan više puta"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Račun {0} se ne može pretvoriti u Grupu jer je već postavljen kao {1} za {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Račun {0} ne može se onemogućiti jer je već postavljen kao {1} za {2}."
@@ -1623,11 +1623,11 @@ msgstr "Račun {0} ne može se onemogućiti jer je već postavljen kao {1} za {2
msgid "Account {0} does not belong to company {1}"
msgstr "Račun {0} ne pripada tvrtki {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Račun {0} ne pripada tvrtki: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Račun {0} ne postoji"
@@ -1643,15 +1643,15 @@ msgstr "Račun {0} nije usklađen sa {1} u Kontnom Planu: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Račun {0} ne pripada tvrtki {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Račun {0} postoji u matičnoj tvrtki {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Račun {0} je dodan u podređenu tvrtku {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Račun {0} je onemogućen."
@@ -1659,7 +1659,7 @@ msgstr "Račun {0} je onemogućen."
msgid "Account {0} is frozen"
msgstr "Račun {0} je zamrznut"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Račun {0} je nevažeći. Valuta Računa mora biti {1}"
@@ -1667,19 +1667,19 @@ msgstr "Račun {0} je nevažeći. Valuta Računa mora biti {1}"
msgid "Account {0} should be of type Expense"
msgstr "Račun {0} treba biti tipa Trošak"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Račun {0}: Matični račun {1} ne može biti glavna knjiga"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Račun {0}: Matični račun {1} ne pripada tvrtki: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Račun {0}: Matični račun {1} ne postoji"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Račun {0}: Ne možete se dodijeliti kao matični račun"
@@ -1695,7 +1695,7 @@ msgstr "Račun: {0} se može ažurirati samo putem Transakcija Zaliha"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Račun: {0} nije dozvoljen pod Unos plaćanja"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Račun: {0} sa valutom: {1} se ne može odabrati"
@@ -1980,8 +1980,8 @@ msgstr "Knjigovodstveni Unosi"
msgid "Accounting Entry for Asset"
msgstr "Knjigovodstveni Unos za Imovinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Knjigovodstveni Unos za Verifikat Obračunatih Troškova u Unosu Zaliha {0}"
@@ -2005,8 +2005,8 @@ msgstr "Knjigovodstveni Unos za Servis"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Knjigovodstveni Unos za Zalihe"
@@ -2015,7 +2015,7 @@ msgstr "Knjigovodstveni Unos za Zalihe"
msgid "Accounting Entry for {0}"
msgstr "Knjigovodstveni Unos za {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
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}"
@@ -2070,7 +2070,6 @@ msgstr "Knjigovodstveni unosi su zamrznuti do ovog datuma. Samo korisnici sa nav
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2083,14 +2082,13 @@ 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/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Knjigovodstvo"
@@ -2120,8 +2118,8 @@ msgstr "Računi Nedostaju u Izvješću"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2221,15 +2219,15 @@ msgstr "Tabela računa ne može biti prazna."
msgid "Accounts to Merge"
msgstr "Računi za Spajanje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Nagomilani Troškovi"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Akumulirana Amortizacija"
@@ -2394,7 +2392,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:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "Omogući Serijski / Šaržni broj za Artikal"
@@ -2518,7 +2516,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:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Stvarni datum završetka ne može biti prije stvarnog datuma početka"
@@ -2640,7 +2638,7 @@ msgstr "Stvarno vrijeme u satima (preko rasporeda vremena)"
msgid "Actual qty in stock"
msgstr "Stvarna Količina na Zalihama"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}"
@@ -2649,7 +2647,7 @@ msgstr "Stvarni tip PDV-a ne može se uključiti u cijenu Artikla u redu {0}"
msgid "Ad-hoc Qty"
msgstr "Namjenska Količina"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Dodaj / Uredi cijene"
@@ -3148,7 +3146,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:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Dodatni Prijenos Materijala"
@@ -3171,7 +3169,7 @@ msgstr "Dodatni operativni troškovi"
msgid "Additional Transferred Qty"
msgstr "Dodatna Prenesena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3183,11 +3181,6 @@ msgstr "Dodatna Prenesena Količina {0}\n"
"\t\t\t\t\tpolja 'Prenesi Dodatne Sirovine u Nedovršenu Proizvodnju'\n"
"\t\t\t\t\tu Postavkama Proizvodnje."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Dodatne informacije o klijentu."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Dodatnih {0} {1} stavke {2} potrebno je prema Sastavnici za dovršetak ove transakcije"
@@ -3333,11 +3326,6 @@ msgstr "Adresa mora biti povezana s firmom. Dodajte red za firmu u tabeli Veze."
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresa koja se koristi za određivanje PDV Kategorije u transakcijama"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Prilagodi Količinu"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Usaglašavanje Naspram"
@@ -3350,8 +3338,8 @@ msgstr "Usklađivanje na osnovu stope fakture nabavke"
msgid "Administrative Assistant"
msgstr "Administrativni Asistent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administrativni Troškovi"
@@ -3419,7 +3407,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Plaćanja Predujma"
@@ -3539,7 +3527,7 @@ msgstr "Naspram Računa"
msgid "Against Blanket Order"
msgstr "Naspram Ugovornog Naloga"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Naspram Naloga Klijenta {0}"
@@ -3681,11 +3669,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Dob (Dana)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Dob ({0})"
@@ -3835,21 +3823,21 @@ 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Svi odjeli"
@@ -3929,7 +3917,7 @@ msgstr "Sve grupe dobavljača"
msgid "All Territories"
msgstr "Sve teritorije"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Sva skladišta"
@@ -3943,6 +3931,11 @@ msgstr "Sve dodjele su uspješno usaglašene"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Sva komunikacija uključujući i iznad ovoga bit će premještena u novi Problem"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr "Sve fakture i narudžbe za ovog klijenta bit će izrađene u ovoj valuti."
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Svi artikli su već traženi"
@@ -3951,23 +3944,23 @@ msgstr "Svi artikli su već traženi"
msgid "All items have already been Invoiced/Returned"
msgstr "Svi Artikli su već Fakturisani/Vraćeni"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Svi Artikli su već primljeni"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Svi Artikli su već prenesen za ovaj Radni Nalog."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
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:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Svi povezani Prodajni Nalozi moraju biti podizvođački."
@@ -3981,11 +3974,11 @@ msgstr "Svi komentari i e-pošta kopirat će se iz jednog dokumenta u drugi novo
msgid "All the items have been already returned."
msgstr "Svi artikli su već vraćeni."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Svi obavezni Artikli (sirovine) bit će preuzeti iz Sastavnice i popunjene u ovoj tabeli. Ovdje također možete promijeniti izvorno skladište za bilo koji artikal. A tokom proizvodnje možete pratiti prenesene sirovine iz ove tabele."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Svi ovi Artikli su već Fakturisani/Vraćeni"
@@ -4004,7 +3997,7 @@ msgstr "Dodijeli"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Automatski Dodjeli Predujam (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Alociraj iznos uplate"
@@ -4014,7 +4007,7 @@ msgstr "Alociraj iznos uplate"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Dodjeli Plaćanje na osnovu Uslova Plaćanja"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Dodijeli zahtjev za plaćanje"
@@ -4044,7 +4037,7 @@ msgstr "Dodjeljeno"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4101,7 +4094,7 @@ msgstr "Alocirana količina"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4165,9 +4158,9 @@ msgstr "Dozvoli u Povratima"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Dozvoli interne transfere po tržišnoj cijeni"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
-msgstr "Dozvolite da se artikal doda više puta u transakciji"
+msgstr "dopusti da se artikal doda više puta u transakciji"
#. Label of the allow_multiple_items (Check) field in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -4178,7 +4171,7 @@ msgstr "Dopusti dodavanje artikla više puta u transakciji"
#. 'CRM Settings'
#: erpnext/crm/doctype/crm_settings/crm_settings.json
msgid "Allow Lead Duplication based on Emails"
-msgstr "Dozvolite dupliciranje Potencijalnih Klijenata na osnovu e-pošte"
+msgstr "dopusti dupliciranje Potencijalnih Klijenata na osnovu e-pošte"
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:9
msgid "Allow Multiple Material Consumption"
@@ -4288,16 +4281,6 @@ msgstr "Dozvoli ponovno postavljanje ugovora o nivou usluge iz postavki podrške
msgid "Allow Sales"
msgstr "Dozvoli Prodaju"
-#. 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 "Dozvoli Kreiranje Prodajnih Faktura 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 "Dozvoli Kreiranje Prodajne Fakture bez Prodajnog Naloga"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4423,6 +4406,16 @@ msgstr "Dopusti više Prodajnih Nalogs naspram Nabavnog Naloga Klijenta"
msgid "Allow negative rates for Items"
msgstr "Dopusti negativne cijene za Artikle"
+#. 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"
+
+#. 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"
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4499,10 +4492,8 @@ msgstr "Dozvoljeni Artikli"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Dozvoljena Transakcija sa"
@@ -4514,6 +4505,11 @@ msgstr "Dozvoljene primarne uloge su 'Klijent' i 'Dobavljač'. Molimo odaberite
msgid "Allowed special characters are '/' and '-'"
msgstr "Dopušteni posebni znakovi su '/' i '-'"
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr "Dopušteno je obavljati transakcije s"
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4555,8 +4551,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Također se ne možete vratiti na FIFO nakon što ste za ovu stavku postavili metodu vrednovanja na MA."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4797,7 +4793,7 @@ msgstr "Uvijek Pitaj"
msgid "Amount"
msgstr "Iznos"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Iznos (AED)"
@@ -4931,12 +4927,12 @@ msgid "Amount to Bill"
msgstr "Iznos za Fakturisanje"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Iznos {0} {1} naspram {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr "Iznos {0} {1} prilagođen u odnosu na {2} {3}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Iznos {0} {1} odbijen naspram {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr "Iznos {0} {1} kao prilagodba na {2}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4981,11 +4977,11 @@ msgstr "Iznos"
msgid "An Item Group is a way to classify items based on types."
msgstr "Grupa Artikla je način za klasifikaciju Artikala na osnovu tipa."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
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:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Došlo je do greške tokom obrade ažuriranja"
@@ -5525,7 +5521,7 @@ msgstr "Pošto je polje {0} omogućeno, polje {1} je obavezno."
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
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}."
@@ -5537,7 +5533,7 @@ msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}."
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/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
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}."
@@ -5675,7 +5671,7 @@ msgstr "Račun kategorije imovine"
msgid "Asset Category Name"
msgstr "Naziv kategorije imovine"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Kategorija Imovine je obavezna za Artikal Fiksne Imovine"
@@ -5852,8 +5848,8 @@ msgstr "Količina Imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5953,7 +5949,7 @@ msgstr "Imovina otkazana"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Imovina se ne može otkazati, jer je već {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Imovina se ne može rashodovati prije posljednjeg unosa amortizacije."
@@ -5985,7 +5981,7 @@ msgstr "Imovina nije u funkciji zbog popravke imovine {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Imovina primljena u {0} i izdata {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Imovina vraćena"
@@ -5993,20 +5989,20 @@ msgstr "Imovina vraćena"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Imovina vraćena nakon što je kapitalizacija imovine {0} otkazana"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Imovina vraćena"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Imovina rashodovana"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Imovina rashodovana putem Naloga Knjiženja {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Imovina prodata"
@@ -6026,7 +6022,7 @@ msgstr "Imovina je ažurirana nakon što je podijeljena na Imovinu {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Imovina ažurirana zbog Popravke Imovine {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Imovina {0} se nemože rashodovati, jer je već {1}"
@@ -6067,7 +6063,7 @@ msgstr "Imovina {0} nije postavljena za izračun amortizacije."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Imovina {0} nije podnešena. Podnesi imovinu prije nego što nastavite."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Imovina {0} mora biti podnešena"
@@ -6117,7 +6113,7 @@ msgstr "Imovina nije kreirana za {item_code}. Morat ćete kreirati Imovinu ručn
msgid "Assets {assets_link} created for {item_code}"
msgstr "Sredstva {assets_link} stvorena za {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Dodijeli Posao Personalu"
@@ -6178,7 +6174,7 @@ msgstr "Najmanje jedan od primjenjivih modula treba odabrati"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Najmanje jedno od Prodaje ili Nabave mora biti odabrano"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "U zalihi tipa {0} mora biti prisutna barem jedna sirovina"
@@ -6186,21 +6182,17 @@ msgstr "U zalihi tipa {0} mora biti prisutna barem jedna sirovina"
msgid "At least one row is required for a financial report template"
msgstr "Za predložak financijskog izvješća potreban je barem jedan redak"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Najmanje jedno skladište je obavezno"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "U retku #{0}: Račun razlike ne smije biti račun tipa stavki, promijenite vrstu računa za račun {1} ili odaberite drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr "U redu #{0}: račun razlike ne smije biti račun tipa zaliha..."
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "U redu #{0}: id sekvence {1} ne može biti manji od id-a sekvence prethodnog reda {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "U retku #{0}: odabrali ste Račun Razlike {1}, koji je tip računa Troškovi Prodane Robe. Odaberi drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr "U redu #{0}: odabrali ste Račun Razlike {1}..."
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6282,11 +6274,11 @@ msgstr "Naziv Atributa"
msgid "Attribute Value"
msgstr "Vrijednost Atributa"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr "Vrijednost atributa {0} nije valjana za odabrani atribut {1}."
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabela Atributa je obavezna"
@@ -6294,19 +6286,19 @@ msgstr "Tabela Atributa je obavezna"
msgid "Attribute value: {0} must appear only once"
msgstr "Vrijednost Atributa: {0} se mora pojaviti samo jednom"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr "Atribut {0} je onemogućen."
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr "Atribut {0} nije valjan za odabrani predložak."
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
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:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributi"
@@ -6518,7 +6510,7 @@ msgstr "Automatsko poravnanje i postavljanje Stranke u Bankovnim Transakcijama"
msgid "Auto re-order"
msgstr "Automatsko ponovno naručivanje"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Automatsko ponavljanje dokumenta je ažurirano"
@@ -6630,7 +6622,7 @@ msgstr "Datum Dostupnosti za Upotrebu"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Dostupna Količina"
@@ -6719,10 +6711,6 @@ msgstr "Datum Dostupnosti za Upotrebu"
msgid "Available for use date is required"
msgstr "Datum dostupnosti za upotrebu je obavezan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Dostupna količina je {0}, potrebno vam je {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Dostupno {0}"
@@ -6731,8 +6719,8 @@ msgstr "Dostupno {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Datum dostupnosti za upotrebu bi trebao biti nakon datuma nabave"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Prosječna dob"
@@ -6756,7 +6744,9 @@ msgstr "Prosječne Vrijednosti Naloga"
msgid "Average Order Values"
msgstr "Prosječne Vrijednosti Naloga"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Prosječna Cijena"
@@ -6780,7 +6770,7 @@ msgid "Avg Rate"
msgstr "Prosječna Cijena"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Prosječna Cijena (Stanje Zaliha)"
@@ -6838,7 +6828,7 @@ msgstr "Spremnička Količina"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6861,7 +6851,7 @@ msgstr "Sastavnica"
msgid "BOM 1"
msgstr "Sastavnica 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Sastavnica 1 {0} i Sastavnica 2 {1} ne bi trebali biti isti"
@@ -6933,11 +6923,6 @@ msgstr "Nestavljeni Artikli Sastavnice"
msgid "BOM ID"
msgstr "Sastavnica"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Informacija Sastavnice"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7091,7 +7076,7 @@ msgstr "Artikal Web Stranice Sastavnice"
msgid "BOM Website Operation"
msgstr "Operacija Web Stranice Sastavnice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Sastavnica i Količina Gotovog Proizvoda su obavezni za Rastavljanje"
@@ -7159,7 +7144,7 @@ msgstr "Unos Zaliha Unazad"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Povrat Materijala iz Skladišta za Posao u Toku"
@@ -7223,7 +7208,7 @@ msgstr "Stanje u Osnovnoj Valuti"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Količinsko Stanje"
@@ -7288,7 +7273,7 @@ msgstr "Vrsta 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/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Vrijednost Stanja"
@@ -7444,8 +7429,8 @@ msgid "Bank Balance"
msgstr "Bankovno Stanje"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bankarske Naknade"
@@ -7560,8 +7545,8 @@ msgstr "Tip Bankarske Garancije"
msgid "Bank Name"
msgstr "Naziv Banke"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Bankovni Račun Prekoračenja"
@@ -7734,11 +7719,11 @@ msgstr "Bankarstvo"
msgid "Barcode Type"
msgstr "Barkod Tip"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Barkod {0} se već koristi za artikal {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Barkod {0} nije važeći {1} kod"
@@ -7895,7 +7880,7 @@ msgstr "Osnovna Cijena (prema Jedinici Zaliha)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7970,7 +7955,7 @@ msgstr "Status isteka roka Artikla Šarže"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8059,13 +8044,13 @@ msgstr "Količina Šarće ažurirana je na {0}"
msgid "Batch Quantity"
msgstr "Količina Šarže"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8082,7 +8067,7 @@ msgstr "Jedinica Šarže"
msgid "Batch and Serial No"
msgstr "Šarža i Serijski Broj"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Šarža nije kreirana za artikal {} jer nema Šaržu."
@@ -8105,12 +8090,12 @@ msgstr "Šarža {0} i Skladište"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Šarža {0} nije dostupna u skladištu {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Šarža {0} artikla {1} je istekla."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Šarža {0} artikla {1} je onemogućena."
@@ -8165,7 +8150,7 @@ msgstr "Ispod je popis svih unosa knjiženih na bankovni račun {0} koji nisu pr
#. 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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8174,7 +8159,7 @@ msgstr "Datum Fakture"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8188,11 +8173,13 @@ msgstr "Račun za odbijenu količinu u 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Sastavnica"
@@ -8293,7 +8280,7 @@ msgstr "Detalji Adrese za Fakturu"
msgid "Billing Address Name"
msgstr "Naziv Adrese za Fakturu"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Faktura Adresa ne pripada {0}"
@@ -8545,6 +8532,16 @@ msgstr "Blokiraj Fakturu"
msgid "Block Supplier"
msgstr "Blokiraj Dostavljača"
+#. 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 knjigonovodstvene unose na računu ovog klijenta. Samo korisnici s ulogom zamrznutih unosa mogu to poništiti.\n"
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr "Blokira korištenje ovog klijenta za bilo koju novu transakciju."
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8641,7 +8638,7 @@ msgstr "Rezervisano"
msgid "Booked Fixed Asset"
msgstr "Proknjižena Osnovna Imovina"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Knjigovodstvo je zatvoreno do perioda koji se završava {0}"
@@ -8900,8 +8897,8 @@ msgstr "Ažuriraj Stablo"
msgid "Buildable Qty"
msgstr "Količina za Proizvodnju"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Zgrade"
@@ -9062,16 +9059,16 @@ msgstr "Prema standard postavkama, Ime dobavljača je postavljeno prema unesenom
msgid "By-Product"
msgstr "Nusproizvod"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Zaobiđi provjeru kreditne sposobnosti kod Prodajnog Naloga"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Zaobiđite provjeru kreditne sposobnosti kod Prodajnog Naloga"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr "Zaobiđi provjeru kreditnog ograničenja na prodajnom nalogu"
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9119,8 +9116,8 @@ msgstr "Napomena Prodajne Podrške"
msgid "CRM Settings"
msgstr "Postavke Prodajne Podrške"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Račun Kapitalnog Posla u Toku"
@@ -9375,7 +9372,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:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
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."
@@ -9408,13 +9405,13 @@ msgstr "Ne može se filtrirati na osnovu broja verifikata, ako je grupiran prema
msgid "Can only make payment against unbilled {0}"
msgstr "Plaćanje se može izvršiti samo protiv nefakturisanog(e) {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "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:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
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"
@@ -9456,7 +9453,7 @@ msgstr "Ne može se dodijeliti Blagajnik/ca"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Nije moguće izračunati vrijeme dolaska jer nedostaje adresa vozača."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Nije moguće promijeniti Postavke Računa Zaliha"
@@ -9464,9 +9461,9 @@ msgstr "Nije moguće promijeniti Postavke Računa Zaliha"
msgid "Cannot Create Return"
msgstr "Nije moguće stvoriti Povrat"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Nije moguće spojiti"
@@ -9494,7 +9491,7 @@ msgstr "Nije moguće izmijeniti {0} {1}, umjesto toga kreirajte novi."
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:379
+#: erpnext/stock/doctype/item/item.py:378
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."
@@ -9514,7 +9511,7 @@ msgstr "Ne može se otkazati unos rezervacije zaliha {0} jer je korišten u radn
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:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Nije moguće otkazati jer postoji podnešeni Unos Zaliha {0}"
@@ -9534,15 +9531,15 @@ msgstr "Ne može se poništiti ovaj dokument jer je povezan s podnesenim Usklađ
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Nije moguće poništiti ovaj dokument jer je povezan s poslanim materijalom {asset_link}. Za nastavak otkažite sredstvo."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
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:994
+#: erpnext/stock/doctype/item/item.py:998
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/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Nije moguće promijeniti tip referentnog dokumenta."
@@ -9550,11 +9547,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:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
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 tvrtke, jer postoje postojeće transakcije. Transakcije se moraju otkazati da bi se promijenila zadana valuta."
@@ -9570,11 +9567,11 @@ msgstr "Nije moguće pretvoriti Centar Troškova u Registar jer ima podređene
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}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
@@ -9582,7 +9579,7 @@ msgstr "Nije moguće pretvoriti u Grupu jer je odabran Tip Računa."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Nije moguće kreirati Unose Rezervisanja Zaliha za buduće datume Nabavnih Računa."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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."
@@ -9608,7 +9605,7 @@ msgstr "Ne može se proglasiti izgubljenim, jer je Ponuda napravljena."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i Ukupno'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa"
@@ -9616,12 +9613,12 @@ msgstr "Nije moguće izbrisati red Dobitka/Gubitka Deviznog Kursa"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Ne može se izbrisati serijski broj {0}, jer se koristi u transakcijama zaliha"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Ne možete izbrisati naručeni artikal"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Nije moguće izbrisati zaštićenu osnovni tip dokumenta: {0}"
@@ -9633,7 +9630,7 @@ msgstr "Nije moguće izbrisati virtualni DocType: {0}. Virtualni DocTypeovi nema
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:560
+#: erpnext/setup/doctype/company/company.py:564
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 tvrtku {0}. Prvo otkažite transakcije zaliha i pokušajte ponovno."
@@ -9641,20 +9638,20 @@ msgstr "Ne može se onemogućiti trajna inventura jer postoje postojeći unosi u
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "Nije moguće onemogućiti {0} jer to može dovesti do netočne procjene vrijednosti zaliha."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Ne može se demontirati više od proizvedene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr "Ne može se demontirati {0} količine u odnosu na unos zaliha {1}. Samo je {2} količina dostupna za rastavljanje."
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Nije moguće omogućiti račun zaliha po stavkama jer postoje postojeći unosi u glavnu knjigu zaliha za tvrtku {0} s računom zaliha po skladištu. Prvo otkažite transakcije zaliha i pokušajte ponovno."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Nije moguće osigurati dostavu serijskim brojem jer je artikal {0} dodan sa i bez Osiguraj Dostavu Serijskim Brojem."
@@ -9670,7 +9667,7 @@ msgstr "Ne mogu pronaći Artikal ili Skladište s ovim Barkodom"
msgid "Cannot find Item with this Barcode"
msgstr "Ne mogu pronaći artikal s ovim Barkodom"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
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."
@@ -9678,15 +9675,15 @@ msgstr "Ne može se pronaći zadano skladište za artikal {0}. Molimo vas da pos
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće knjigovodstvene unose u različitim valutama za '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
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:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
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:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Ne može se proizvesti više od {0} artikla za {1}"
@@ -9694,12 +9691,12 @@ msgstr "Ne može se proizvesti više od {0} artikla za {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Ne može se primiti od klijenta naspram negativnog nepodmirenog"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Ne može se smanjiti količina naručene ili nabavljene količine"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Ne može se upućivati na broj reda veći ili jednak trenutnom broju reda za ovaj tip naknade"
@@ -9712,14 +9709,14 @@ msgstr "Nije moguće preuzeti oznaku veze za ažuriranje. Provjerite zapisnik gr
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Nije moguće preuzeti oznaku veze. Provjerite zapisnik grešaka za više informacija"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Nije moguće odabrati tip grupe \"Klijent Grupa\". Odaberi klijent grupu koja nije grupa."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9733,7 +9730,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:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Nije moguće postaviti više Standard Artikal Postavki za tvrtku."
@@ -9741,11 +9738,11 @@ msgstr "Nije moguće postaviti više Standard Artikal Postavki za tvrtku."
msgid "Cannot set multiple account rows for the same company"
msgstr "Nije moguće postaviti više redaka računa za istu tvrtku"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Nije moguće postaviti količinu manju od dostavne količine."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Nije moguće postaviti količinu manju od primljene količine."
@@ -9757,7 +9754,7 @@ msgstr "Nije moguće postaviti polje {0} za kopiranje u varijantama"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Brisanje nije moguće. Drugo brisanje {0} je već u redu čekanja/pokreće se. Pričekajte da se dovrši."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
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 prema ovoj ponudi"
@@ -9790,7 +9787,7 @@ msgstr "Kapacitet (Jedinica Zaliha)"
msgid "Capacity Planning"
msgstr "Planiranje Kapaciteta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Greška Planiranja Kapaciteta, planirano vrijeme početka ne može biti isto kao vrijeme završetka"
@@ -9809,13 +9806,13 @@ msgstr "Kapacitet u Jedinici Zaliha"
msgid "Capacity must be greater than 0"
msgstr "Kapacitet mora biti veći od 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Kapitalna Oprema"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Akcionarski Kapital"
@@ -10032,7 +10029,7 @@ msgstr "Detalji o Kategoriji"
msgid "Category-wise Asset Value"
msgstr "Vrijednost Imovine po Kategorijama"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Oprez"
@@ -10137,7 +10134,7 @@ msgstr "Promijeni Datum Izdanja"
msgid "Change in Stock Value"
msgstr "Promjena Vrijednosti Zaliha"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
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."
@@ -10147,7 +10144,7 @@ msgstr "Promijenite vrstu računa u Potraživanje ili odaberite drugi račun."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ručno promijenite ovaj datum da postavite sljedeći datum početka sinhronizacije"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji."
@@ -10155,7 +10152,7 @@ msgstr "Ime klijenta je promijenjeno u '{}' jer '{}' već postoji."
msgid "Changes in {0}"
msgstr "Promjene u {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Promjena Grupe Klijenta za odabranog Klijenta nije dozvoljena."
@@ -10170,7 +10167,7 @@ msgid "Channel Partner"
msgstr "Partner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
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"
@@ -10224,7 +10221,7 @@ msgstr "Stablo Kontnog Plana"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10367,7 +10364,7 @@ msgstr "Širina Čeka"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Referentni Datum"
@@ -10425,7 +10422,7 @@ msgstr "Podređeni DocType"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referenca za Podređeni Red"
@@ -10477,6 +10474,11 @@ msgstr "Klasifikacija Klijenata po Regionima"
msgid "Classify As"
msgstr "Klasificiraj kao"
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr "Klasificiraj vrstu tržišta kojem ovaj klijent pripada, koristi se za analizu prodaje i ciljanje."
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10619,11 +10621,11 @@ msgstr "Zatvoreni Dokument"
msgid "Closed Documents"
msgstr "Zatvoreni Dokumenti"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Zatvoreni Radni Nalog se ne može zaustaviti ili ponovo otvoriti"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Zatvoreni Nalog se ne može otkazati. Otvori ga da se otkaže."
@@ -10875,11 +10877,17 @@ msgstr "Stopa Provizije %"
msgid "Commission Rate (%)"
msgstr "Stopa Provizije (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provizija na Prodaju"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr "Provizija isplaćena Prodajnom Partneru za transakcije s ovim klijentom."
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10910,7 +10918,7 @@ msgstr "Vremenski Termin Komunikacijskog Medija"
msgid "Communication Medium Type"
msgstr "Tip Medija Konverzacije"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Sažet Ispis Arikla"
@@ -11309,8 +11317,8 @@ msgstr "Tvrtke"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11363,7 +11371,7 @@ msgstr "Tvrtke"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11452,18 +11460,20 @@ msgstr "Prikaz Adrese Tvrtke"
msgid "Company Address Name"
msgstr "Naziv Adrese Tvrtke"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager."
msgstr "Nedostaje adresa tvrtke. Nemate dopuštenje za stvaranje adrese. Obratite se Upravitelju Sustava."
-#: erpnext/controllers/accounts_controller.py:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Nedostaje adresa tvrtke. Nemate dopuštenje za njezino ažuriranje. Obratite se upravitelju sustava."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Bankovni Račun Tvrtke"
@@ -11559,7 +11569,7 @@ msgstr "Tvrtka i Datum Knjiženja su obavezni"
msgid "Company and account filters not set!"
msgstr "Filtri tvrtke i računa nisu postavljeni!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Valute obje tvrtke trebaju biti usklađne sa transakcijama između tvrtki."
@@ -11594,7 +11604,7 @@ msgstr "Tvrtka je obavezna"
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Naziv polja poveznice tvrtke koje se koristi za filtriranje (neobavezno - ostavite prazno za brisanje svih zapisa)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Naziv Tvrtke nije isti"
@@ -11633,12 +11643,12 @@ msgstr "Tvrtka koju predstavlja interni Dobavljač"
msgid "Company {0} added multiple times"
msgstr "Tvrtka {0} dodana više puta"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Tvrtka {0} ne postoji"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Tvrtka {0} je dodana više puta"
@@ -11680,7 +11690,7 @@ msgstr "Ime Konkurenta"
msgid "Competitors"
msgstr "Konkurenti"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Završi Posao"
@@ -11727,12 +11737,12 @@ msgstr "Završeni Projekti"
msgid "Completed Qty"
msgstr "Proizvedena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
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:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Proizvedena Količina"
@@ -11921,7 +11931,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:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Uračunaj Gubitak Procesa"
@@ -12115,7 +12125,7 @@ msgstr "Trošak Potrošenih Artikala"
msgid "Consumed Qty"
msgstr "Potrošena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Potrošena količina ne može biti veća od rezervisane količine za artikal {0}"
@@ -12144,7 +12154,7 @@ msgstr "Potrošeni Artikli Zalihe, Potrošene Artikli Imovine ili Potrošeni Ser
msgid "Consumed Stock Total Value"
msgstr "Ukupna Vrijednost Potrošenih Zaliha"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Potrošena količina artikla {0} premašuje prenesenu količinu."
@@ -12272,7 +12282,7 @@ msgstr "Broj Kontakta"
msgid "Contact Person"
msgstr "Kontakt Osoba"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Kontakt Osoba ne pripada {0}"
@@ -12398,6 +12408,11 @@ msgstr "Kontroliši Prijašnje Transakcije Zaliha"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr "Kontrolira kako se sirovine troše tijekom 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 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
#. Item Supplied'
@@ -12458,7 +12473,7 @@ msgstr "Faktor Pretvaranja"
msgid "Conversion Rate"
msgstr "Stopa Pretvaranja"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
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}"
@@ -12466,15 +12481,15 @@ msgstr "Faktor pretvaranja za standard jedinicu mora biti 1 u redu {0}"
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}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Stopa konverzije ne može biti 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Stopa konverzije je 1,00, ali valuta dokumenta razlikuje se od valute tvrtke"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
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 tvrtke"
@@ -12551,13 +12566,13 @@ msgstr "Korektivni"
msgid "Corrective Action"
msgstr "Korektivna Radnja"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Kartica za Korektivni Posao"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Korektivna Operacija"
@@ -12724,7 +12739,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12857,7 +12872,7 @@ msgstr "Centar Troškova {} je grupni centar troškova a grupni centri troškova
msgid "Cost Center: {0} does not exist"
msgstr "Centar Troškova: {0} ne postoji"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Troškovni Centri"
@@ -12900,17 +12915,13 @@ msgstr "Trošak Isporučenih Artikala"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Trošak Prodatih Proizvoda"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Račun Troškova Prodate Robe u Postavkama Artikla"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Trošak Izdatih Artikala"
@@ -12990,7 +13001,7 @@ msgstr "Nije moguće izbrisati demo podatke"
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:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
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"
@@ -13179,7 +13190,7 @@ msgstr "Kreiraj Fakture"
msgid "Create Item"
msgstr "Kreiraj Artikal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Kreiraj Radni Nalog"
@@ -13211,7 +13222,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Kreiraj Unose u Registar za Kusur"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Kreiraj vezu"
@@ -13278,7 +13289,7 @@ msgstr "Kreiraj Unos Plaćanja za Konsolidovane Fakture Blagajne."
msgid "Create Payment Request"
msgstr "Kreiraj Zahtjev Plaćanja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Kreiraj Listu Odabira"
@@ -13423,7 +13434,7 @@ msgstr "Stvori Zadatak"
msgid "Create Tasks"
msgstr "Kreiraj Zadatke"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Kreiraj PDV Šablon"
@@ -13461,12 +13472,12 @@ msgstr "Kreiraj Korisničku Dozvolu"
msgid "Create Users"
msgstr "Kreiraj Korisnike"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Kreiraj Varijantu"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Kreiraj Varijante"
@@ -13497,12 +13508,12 @@ msgstr "Stvori novi unos na temelju pravila"
msgid "Create a new rule to automatically classify transactions."
msgstr "Stvorite novo pravilo za automatsku klasifikaciju transakcija."
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Kreiraj Varijantu sa slikom šablona."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Kreirajte dolaznu transakciju zaliha za artikal."
@@ -13536,7 +13547,7 @@ msgstr "Kreiraj {0} {1}?"
msgid "Created By Migration"
msgstr "Izrađeno Migracijom"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Kreirano {0} tablica bodova za {1} između:"
@@ -13569,7 +13580,7 @@ msgstr "Kreiranje Otpremnice u toku..."
msgid "Creating Delivery Schedule..."
msgstr "Izrada Rasporeda Dostave..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Kreiranje Dimenzija u toku..."
@@ -13764,7 +13775,7 @@ msgstr "Kreditni Dani"
msgid "Credit Limit"
msgstr "Kreditno Ograničenje"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Kreditno Ograničenje je probijeno"
@@ -13774,12 +13785,6 @@ msgstr "Kreditno Ograničenje je probijeno"
msgid "Credit Limit Settings"
msgstr "Postavke Kreditnog Ograničenja"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Kreditno Ograničenje i Uslovi Plaćanja"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Kreditno Ograničenje:"
@@ -13811,7 +13816,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13839,7 +13844,7 @@ msgstr "Kreditna Faktura Izdata"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Kreditna Faktura će ažurirati svoj nepodmireni iznos, čak i ako je navedeno 'Povrat Naspram'."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Kreditna Faktura {0} je kreirana automatski"
@@ -13847,7 +13852,7 @@ msgstr "Kreditna Faktura {0} je kreirana automatski"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Kredit Za"
@@ -13856,20 +13861,20 @@ msgstr "Kredit Za"
msgid "Credit in Company Currency"
msgstr "Kredit u Valuti Tvrtke"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Kreditno ograničenje je premašeno za klijenta {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Kreditno ograničenje je već definisano za Tvrtku {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Kreditno Ograničenje je dostignuto za Klijenta {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr "Upozorenje o kreditnom ograničenju — slanje bi moglo biti blokirano: {0}"
@@ -13877,8 +13882,8 @@ msgstr "Upozorenje o kreditnom ograničenju — slanje bi moglo biti blokirano:
msgid "Creditor Turnover Ratio"
msgstr "Omjer Obrta Kreditora"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Povjerioci"
@@ -14048,7 +14053,7 @@ msgstr "Devizni Tečaj mora biti primjenjiv za Nabavu ili Prodaju."
msgid "Currency and Price List"
msgstr "Valuta i Cijenovnik"
-#: erpnext/accounts/doctype/account/account.py:346
+#: 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"
@@ -14058,7 +14063,7 @@ msgstr "Filtri valuta trenutno nisu podržani u Prilagođenom Financijskom Izvje
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Valuta za {0} mora biti {1}"
@@ -14141,8 +14146,8 @@ msgstr "Trenutna Faktura Poćetni Datum"
msgid "Current Level"
msgstr "Trenutni Nivo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Trenutne Obaveze"
@@ -14209,6 +14214,11 @@ msgstr "Trenutne Zalihe"
msgid "Current Valuation Rate"
msgstr "Trenutna Stopa Vrednovanja"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr "Trenutna razina temelji se na akumuliranim bodovima. Automatski se ažurira na svakoj fakturi."
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Krivulje"
@@ -14304,7 +14314,6 @@ msgstr "Prilagođeni Razdjelnici"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14411,7 +14420,6 @@ msgstr "Prilagođeni Razdjelnici"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14500,8 +14508,8 @@ msgstr "Adresa Klijenta"
msgid "Customer Addresses And Contacts"
msgstr "Adrese i Kontakti Klijenta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Klijent Predujmovi"
@@ -14515,7 +14523,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14598,6 +14606,7 @@ msgstr "Povratne informacije Klijenta"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14620,7 +14629,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14637,6 +14646,7 @@ msgstr "Povratne informacije Klijenta"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14680,7 +14690,7 @@ msgstr "Artikal Klijenta"
msgid "Customer Items"
msgstr "Artikli Klijenta"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Lokalni Nalog Nabave Klijenta"
@@ -14732,7 +14742,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14838,7 +14848,7 @@ msgstr "Klijent Dostavljen Artikal"
msgid "Customer Provided Item Cost"
msgstr "Trošak Klijent Dostavljenog Artikala "
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Podrška Klijenta"
@@ -14895,9 +14905,9 @@ 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:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Klijent {0} ne pripada projektu {1}"
@@ -15009,7 +15019,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Dnevni sažetak projekta za {0}"
@@ -15100,7 +15110,7 @@ msgstr "Datum rođenja ne može biti kasnije od današnjeg."
msgid "Date of Commencement"
msgstr "Datum Početka"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Datum Početka bi trebao biti kasnije od Datuma Osnivanja"
@@ -15326,7 +15336,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15354,13 +15364,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debit prema"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Debit prema je obavezan"
@@ -15488,8 +15498,7 @@ msgstr "Standard Račun"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15515,14 +15524,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Standard Račun za Predujam Plaćanje"
@@ -15537,19 +15546,19 @@ msgstr "Zadani Raspon Starenja"
msgid "Default BOM"
msgstr "Standard Sastavnica"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
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"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Standard Sastavnica {0} nije pronađena"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Standard Sastavnica nije pronađena za Artikal Gotovog Proizvoda {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Standard Sastavnica nije pronađena za Artikal {0} i Projekat {1}"
@@ -15602,9 +15611,7 @@ msgid "Default Company"
msgstr "Standard Tvrtka"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Standard Bankovni Račun Tvrtke"
@@ -15720,6 +15727,16 @@ msgstr "Standard Artikal Grupa"
msgid "Default Item Manufacturer"
msgstr "Standard Proizvođač Artikla"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr "Zadano Zaglavlje (Dokument Tip)"
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr "Zadano Zaglavlje (izvješće)"
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15755,23 +15772,19 @@ msgid "Default Payment Request Message"
msgstr "Standard poruka Zahtjeva za Plaćanje"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Standard Šablon Uslova Plaćanja"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15894,15 +15907,15 @@ msgstr "Standard Distrikt"
msgid "Default Unit of Measure"
msgstr "Standard Jedinica"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
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}'"
@@ -15954,7 +15967,7 @@ msgstr "Zadani cjenik za nabavu ili prodaju ovog artikla"
msgid "Default settings for your stock-related transactions"
msgstr "Standard postavke za vaše transakcije vezane za zalihe"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Standard Predlošci PDV-a za prodaju, nabavu i artikle su kreirani."
@@ -16045,6 +16058,12 @@ msgstr "Definiraj Tip Projekta."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Definira datum nakon kojeg se artikal više ne može koristiti u transakcijama ili proizvodnji"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr "Definira kada je plaćanje dospjelo (npr. Neto 30, 50% avansa). Automatski se primjenjuje na fakture za ovog klijenta."
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16127,12 +16146,12 @@ msgstr "Obriši Potencijalne Klijente i Adrese"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Izbriši Transakcije"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Izbriši sve transakcije za ovu tvrtku"
@@ -16153,8 +16172,8 @@ msgstr "Brisanje pravila..."
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Brisanje {0} u toku i svih povezanih dokumenata Zajedničkog Koda..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Brisanje u toku!"
@@ -16265,11 +16284,11 @@ msgstr "Dostavljena Količina"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Isporučena količina (u Jedinici Zaliha)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr "Dostavna količina se ne može povećati za više od {0} za artikal {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr "Dostavna količina ne može se smanjiti za više od {0} za artikal {1}"
@@ -16350,7 +16369,7 @@ msgstr "Upravitelj Dostave"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16410,11 +16429,11 @@ msgstr "Paket Artikal Dostavnice"
msgid "Delivery Note Trends"
msgstr "Trendovi Dostave"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Dostavnica {0} nije podnešena"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Dostavnice"
@@ -16500,10 +16519,6 @@ msgstr "Dostavno Skladište"
msgid "Delivery to"
msgstr "Dostava do"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Za artikle na zalihama potrebno je skladište za isporuku {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16623,8 +16638,8 @@ msgstr "Iznos Amortizacije"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16717,7 +16732,7 @@ msgstr "Opcije Amortizacije"
msgid "Depreciation Posting Date"
msgstr "Datum Knjiženja Amortizacije"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
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"
@@ -16875,15 +16890,15 @@ msgstr "Razlika (Dr - Cr)"
msgid "Difference Account"
msgstr "Račun Razlike"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Razlika u kontu stavki u tablici"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Razlika u računu mora biti račun tipa Imovina/Obveza (Privremeno otvaranje), budući da je ovaj unos zaliha početni unos"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Račun razlike mora biti račun tipa Imovina/Obaveze, budući da je ovo usaglašavanje Zaliha Početni Unos"
@@ -16995,15 +17010,15 @@ msgstr "Dimenzije"
msgid "Direct Expense"
msgstr "Direktni Troškak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Direktni Troškovi"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Direktni Prihod"
@@ -17084,6 +17099,11 @@ msgstr "Onemogući zaokruženi Ukupni Iznos"
msgid "Disable Serial No And Batch Selector"
msgstr "Onemogući Serijski i Šaržni Odabirač"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr "Onemogući Zalihe Dostavljene ali ne Fakturisane u Povratu Prodaje"
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17120,11 +17140,11 @@ msgstr "Onemogućeno Skladište {0} se ne može koristiti za ovu transakciju."
msgid "Disabled items cannot be selected in any transaction."
msgstr "Onemogućeni artikli se ne mogu odabrati ni u jednoj transakciji."
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Onemogućena pravila određivanja cijena jer je ovo {} interni prijenos"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Cijene bez PDV budući da je ovo {} interni prijenos"
@@ -17140,7 +17160,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17148,15 +17168,15 @@ msgstr "Onemogućuje automatsko preuzimanje postojeće količine"
msgid "Disassemble"
msgstr "Rastavi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Nalog Rastavljanja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Količina rastavljenih dijelova ne može biti manja ili jednaka 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Količina rastavljenih dijelova ne može biti manja ili jednaka 0 ."
@@ -17443,7 +17463,7 @@ msgstr "Diskrecijski Razlog"
msgid "Dislikes"
msgstr "Ne sviđa mi se"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Otpremanje"
@@ -17524,7 +17544,7 @@ msgstr "Prikazno Ime"
msgid "Disposal Date"
msgstr "Datum Odlaganja"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Datum otuđenja {0} ne može biti prije {1} datuma {2} imovine."
@@ -17638,8 +17658,8 @@ msgstr "Naziv Raspodjele"
msgid "Distributor"
msgstr "Distributer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Isplaćene Dividende"
@@ -17701,7 +17721,7 @@ msgstr "Ne prikazuj nijedan simbol poput $ itd. pored valuta."
msgid "Do not update variants on save"
msgstr "Ne ažuriraj varijante prilikom spremanja"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Da li zaista želite vratiti ovu rashodovan imovinu?"
@@ -17725,7 +17745,7 @@ msgstr "Želite li obavijestiti sve Kliente putem e-pošte?"
msgid "Do you want to submit the material request"
msgstr "Želiš li podnijeti Materijalni Nalog"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Želiš li podnijeti unos zaliha?"
@@ -17792,11 +17812,11 @@ msgstr "Broj Dokumenta"
msgid "Document Type "
msgstr "Tip Dokumenta "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Tip dokumenta se već koristi kao dimenzija"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentacija"
@@ -17959,12 +17979,6 @@ msgstr "Kategorije Vozačke Dozvole"
msgid "Driving License Category"
msgstr "Kategorija Vozačke Dozvole"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Briši Procedure"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17985,12 +17999,6 @@ msgstr "Ispustite datoteku ovdje ili kliknite za odabir datoteke"
msgid "Drop some files here, or click to select files"
msgstr "Ispustite neke datoteke ovdje ili kliknite za odabir datoteka"
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Briše postojeće SQL procedure i postavke funkcija prema izvješću o potraživanjima"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Datum Dospijeća ne može biti nakon {0}"
@@ -18149,8 +18157,8 @@ msgstr "Trajanje (dana)"
msgid "Duration in Days"
msgstr "Trajanje u Danima"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Carine Porezi i PDV"
@@ -18233,7 +18241,7 @@ msgstr "Sustav će napraviti unos u registar zaliha za svaku transakciju ovog ar
msgid "Each Transaction"
msgstr "Svaka Transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Najranije"
@@ -18347,6 +18355,10 @@ msgstr "Ciljana količina ili ciljni iznos su obavezni"
msgid "Either target qty or target amount is mandatory."
msgstr "Ciljana količina ili ciljni iznos su obavezni."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "Proteklo Vrijeme"
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18366,8 +18378,8 @@ msgstr "Električna energija"
msgid "Electricity down"
msgstr "Nestalo struje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronska Oprema"
@@ -18571,8 +18583,8 @@ msgstr "Predujam Personala"
msgid "Employee Advances"
msgstr "Predujam Personala"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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"
@@ -18655,7 +18667,7 @@ msgstr "Osoblje {0} već ima povezanog korisnika"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Personal {0} ne pripada {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "{0} trenutno radi na drugoj radnoj stanici. Dodijeli drugi personal."
@@ -18671,7 +18683,7 @@ msgstr "Personal"
msgid "Empty"
msgstr "Prazno"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Isprazni za brisanje popisa"
@@ -18702,7 +18714,7 @@ msgstr "Omogući Zakazivanje Termina"
msgid "Enable Auto Email"
msgstr "Omogući Automatsku e-poštu"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Omogući Automatsku Ponovnu Naložbu"
@@ -18868,12 +18880,6 @@ msgstr "Omogući krajnji rok za izradu skupnih Otpremnica"
msgid "Enable discount accounting for selling"
msgstr "Omogući knjigovodstvo prodajnog popusta"
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr "Omogući direktnu isporuku – dobavljač isporučuje izravno klijentu bez prolaska kroz vaše skladište."
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19007,8 +19013,8 @@ msgstr "Datum završetka ne može biti prije datuma početka."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19107,8 +19113,8 @@ msgstr "Unesi Ručno"
msgid "Enter Serial Nos"
msgstr "Unesi Serijske Brojeve"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Unesi Vrijednost"
@@ -19133,7 +19139,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:1146
+#: erpnext/stock/doctype/item/item.js:1130
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."
@@ -19145,7 +19151,7 @@ msgstr "Unesite E-poštu Klijenta"
msgid "Enter customer's phone number"
msgstr "Unesi broj telefona Klijenta"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Unesi datum za rashodovanje Imovine"
@@ -19189,7 +19195,7 @@ 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:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Unesi početne jedinice zaliha."
@@ -19197,7 +19203,7 @@ msgstr "Unesi početne jedinice zaliha."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
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."
@@ -19209,8 +19215,8 @@ msgstr "Unesi {0} iznos."
msgid "Entertainment & Leisure"
msgstr "Zabava i Slobodno vrijeme"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Troškovi Zabave"
@@ -19234,8 +19240,8 @@ msgstr "Tip Unosa"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19296,7 +19302,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:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Greška prilikom ponovnog knjiženja vrijednosti artikla"
@@ -19308,7 +19314,7 @@ msgstr "Greška: Ova imovina već ima {0} periode amortizacije.\n"
"\t\t\t\t\tDatum `početka amortizacije` mora biti najmanje {1} perioda nakon datuma `dostupno za upotrebu`.\n"
"\t\t\t\t\tMolimo ispravite datume u skladu s tim."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Greška: {0} je obavezno polje"
@@ -19354,7 +19360,7 @@ msgstr "Iz Fabrike"
msgid "Example URL"
msgstr "Primjer URL-a"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Primjer povezanog dokumenta: {0}"
@@ -19374,7 +19380,7 @@ msgstr "Primjer: ABCD.#####. Ako je serija postavljena, a broj šarže nije post
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr "Primjer: Ako je iznos transakcije 200, tada će se to izračunati kao {} = {}"
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}."
@@ -19384,7 +19390,7 @@ msgstr "Primjer: Serijski Broj {0} je rezervisan u {1}."
msgid "Exception Budget Approver Role"
msgstr "Uloga Odobravatelja Izuzetka Proračuna"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "Prekomjerna Demontaža"
@@ -19392,7 +19398,7 @@ msgstr "Prekomjerna Demontaža"
msgid "Excess Materials Consumed"
msgstr "Višak Potrošenog Materijala"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Prenos Viška"
@@ -19423,17 +19429,17 @@ msgstr "Rezultat Deviznog Kursa"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Rezultat Deviznog Kursa"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Iznos Rezultata Deviznog Kursa je knjižen preko {0}"
@@ -19572,7 +19578,7 @@ msgstr "Izvršni Asistent"
msgid "Executive Search"
msgstr "Izvršno Pretraživanje"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Izuzete Zalihe"
@@ -19659,7 +19665,7 @@ msgstr "Očekivani Datum Zatvaranja"
msgid "Expected Delivery Date"
msgstr "Očekivani Datum Dostave"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Očekivani Datum Dostave trebao bi biti nakon datuma Prodajnog Naloga"
@@ -19743,7 +19749,7 @@ msgstr "Očekivana vrijednost nakon korisnog vijeka trajanja"
msgid "Expense"
msgstr "Troškovi"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
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'"
@@ -19821,23 +19827,23 @@ msgstr "Račun troškova je obavezan za artikal {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr "Trošak za ovaj artikal bit će priznat tijekom razdoblja od nekoliko mjeseci. Npr.: unaprijed plaćeno osiguranje ili godišnja softverska licenca"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Troškovi"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Troškovi uključeni u Procjenu Imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Troškovi uključeni u Procjenu"
@@ -19916,7 +19922,7 @@ msgstr "Eksterna Radna Istorija"
msgid "Extra Consumed Qty"
msgstr "Dodatno Potrošena Količina"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Dodatna Količina Radnog Naloga"
@@ -20053,7 +20059,7 @@ msgstr "Postavljanje tvrtke nije uspjelo"
msgid "Failed to setup defaults"
msgstr "Neuspješno postavljanje standard postavki"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Neuspješno postavljanje standard postavki za zemlju {0}. Kontaktiraj podršku."
@@ -20171,6 +20177,11 @@ msgstr "Preuzmi Vrijednost od"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Pruzmi Neastavljenu Sastavnicu (uključujući podsklopove)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr "Automatski se preuzima na prodajnim nalozima i fakturama za ovog klijenta."
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Preuzeto samo {0} dostupnih serijskih brojeva."
@@ -20208,21 +20219,29 @@ msgstr "Mapiranje Polja"
msgid "Field in Bank Transaction"
msgstr "Polje u Bankovnoj Transakciji"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "Sukob Naziva Polja"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr "Naziv polja {0} već postoji u sljedećim tipovima dokumenata: {1}. Zasebno polje za dimenziju neće biti dodano ovim tipovima dokumenata. Knjigovodstveni unosi će koristiti vrijednost postojećeg polja kao vrijednost dimenzije."
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Polja će se kopirati samo u vrijeme kreiranja."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Datoteka ne pripada ovom zapisu o brisanju transakcije"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Datoteka nije pronađena"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Datoteka nije pronađena na serveru"
@@ -20430,9 +20449,9 @@ msgstr "Finansijska Godina počinje"
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) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Gotovo"
@@ -20489,15 +20508,15 @@ msgstr "Količina Artikla Gotovog Proizvoda"
msgid "Finished Good Item Quantity"
msgstr "Količina Artikla Gotovog Proizvoda"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Artikal Gotovog Proizvoda nije naveden za servisni artikal {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Količina Artikla Gotovog Proizvoda {0} ne može biti nula"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Artikal Gotovog Proizvoda {0} mora biti podugovoreni artikal"
@@ -20543,7 +20562,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Gotov Proizvod"
@@ -20584,7 +20603,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:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Gotov Proizvod {0} ne odgovara Radnom Nalogu {1}"
@@ -20725,6 +20744,7 @@ msgstr "Fiksna Cijena"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Fiksna Imovina"
@@ -20743,7 +20763,7 @@ msgstr "Račun Fiksne Imovine"
msgid "Fixed Asset Defaults"
msgstr "Standard Postavke Fiksne Imovine"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Artikal Fiksne Imovine mora biti artikal koja nije na zalihama."
@@ -20762,8 +20782,8 @@ msgstr "Omjer Obrta Fiksne Imovine"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Osnovno Sredstvo {0} se ne može koristiti u Sastavnicama."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Fiksna Imovina"
@@ -20836,7 +20856,7 @@ msgstr "Prati Kalendarske Mjesece"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Sljedeći Materijalni Materijalni Nalozi su automatski zatraženi na osnovu nivoa ponovne narudžbine artikla"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Sljedeća polja su obavezna za kreiranje adrese:"
@@ -20893,7 +20913,7 @@ msgstr "Za Tvrtku"
msgid "For Item"
msgstr "Za Artikal"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Za Artikal {0} ne može se primiti više od {1} količine naspram {2} {3}"
@@ -20903,7 +20923,7 @@ msgid "For Job Card"
msgstr "Za Radnu Karticu"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Za Operaciju"
@@ -20924,17 +20944,13 @@ msgstr "Za Cijenovnik"
msgid "For Production"
msgstr "Za Proizvodnju"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Za Količinu (Proizvedena Količina) je obavezna"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Sirovine"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
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}"
@@ -20962,11 +20978,11 @@ msgstr "Za Skladište"
msgid "For Work Order"
msgstr "Za Radni Nalog"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Za Artikal {0}, količina mora biti negativan broj"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Za Artikal {0}, količina mora biti pozitivan broj"
@@ -21004,7 +21020,7 @@ msgstr "Za individualnog Dobavljača"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Za stavku {0} , samo {1} elemenata je kreirano ili povezano s {2} . Molimo kreirajte ili povežite još {3} elemenata s odgovarajućim dokumentom."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
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}"
@@ -21018,7 +21034,7 @@ msgstr "Za stare serijske brojeve, nemojte preuzimati nabvnu cijenu iz serijskog
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Za operaciju {0} u redu {1}, molimo dodajte sirovine ili postavite Sastavnicu naspram nje."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
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})"
@@ -21035,7 +21051,7 @@ msgstr "Za projekat - {0}, ažuriraj vaš status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Za projicirane i prognozirane količine, sustav će uzeti u obzir sva podređena skladišta unutar odabranog nadređenog skladišta."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}"
@@ -21044,12 +21060,12 @@ msgstr "Za količinu {0} ne bi trebalo da bude veća od dozvoljene količine {1}
msgid "For reference"
msgstr "Za Referencu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Za red {0} u {1}. Da biste uključili {2} u cijenu artikla, redovi {3} također moraju biti uključeni"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Za red {0}: Unesi Planiranu Količinu"
@@ -21068,7 +21084,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/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Za artikal {0}, potrošena količina bi trebala biti {1} prema Sastavnici {2}."
@@ -21115,11 +21131,6 @@ msgstr "Prognoza"
msgid "Forecast Demand"
msgstr "Prognoza Potražnje"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Prognoza količine"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21165,7 +21176,7 @@ msgstr "Forum Postovi"
msgid "Forum URL"
msgstr "URL Foruma"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe Škola"
@@ -21210,8 +21221,8 @@ msgstr "Besplatni artikal nije postavljen u pravilu cijene {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Zamrzni Zalihe starije od (dana)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Troškovi Transporta i Špedicije"
@@ -21645,8 +21656,8 @@ msgstr "Potpuno Plaćeno"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Namještaj i Oprema"
@@ -21663,13 +21674,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Dalji članovi se mogu kreirati 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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Referensa Buduće Isplate"
@@ -21677,7 +21688,7 @@ msgstr "Referensa Buduće Isplate"
msgid "Future Payments"
msgstr "Buduće Isplate"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Budući datum nije dozvoljen"
@@ -21762,9 +21773,9 @@ msgstr "Rezultat je već uknjižen"
msgid "Gain/Loss from Revaluation"
msgstr "Rezultat od Revalorizacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Rezultat pri Odlaganju Imovine"
@@ -21937,7 +21948,7 @@ msgstr "Preuzmi Stanje"
msgid "Get Current Stock"
msgstr "Preuzmi Trenutne Zalihe"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Preuzmi Detalje o Grupi Klijenta"
@@ -21995,7 +22006,7 @@ msgstr "Preuzmi Lokacije Artikla"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22034,7 +22045,7 @@ msgstr "Preuzmi Artikle iz Sastavnice"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Preuzmi Artikle iz Materijalnog Naloga naspram ovog Dobavljača"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Preuzmi Artikle iz Paketa Artikala"
@@ -22208,7 +22219,7 @@ msgstr "Ciljevi"
msgid "Goods"
msgstr "Proizvod"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Proizvod u Tranzitu"
@@ -22217,7 +22228,7 @@ msgstr "Proizvod u Tranzitu"
msgid "Goods Transferred"
msgstr "Proizvod je Prenesen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Proizvod je već primljen naspram unosa izlaza {0}"
@@ -22400,7 +22411,7 @@ msgstr "Ukupni iznos mora odgovarati zbroju referenci plaćanja"
msgid "Grant Commission"
msgstr "Odobri Proviziju"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Veće od Iznosa"
@@ -22843,7 +22854,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:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Ovdje su opcije za nastavak:"
@@ -22871,7 +22882,7 @@ msgstr "Ovdje su vaši sedmični neradni dani unaprijed popunjeni na osnovu pret
msgid "Hertz"
msgstr "Herc"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Zdravo,"
@@ -23070,7 +23081,7 @@ msgstr "Kako formatirati i prikazati vrijednosti u financijskom izvješću (samo
msgid "Hrs"
msgstr "Sati"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Ljudski Resursi"
@@ -23239,6 +23250,12 @@ msgstr "Ako je označeno, iznos PDV-a će se smatrati već uključenim u Uplaće
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"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr "Ako je odbrano, ovaj artikal se tretira kao direktna dostava u Prodajnim Nalozima, Prodajnim Fakturama i Nalozima Nabave prema standard postavkama. Može se poništiti u svakom redu transakcije."
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Ako je označeno, kreirat ćemo demo podatke za vas da istražite sustav. Ovi demo podaci mogu se kasnije izbrisati."
@@ -23459,7 +23476,7 @@ msgstr "Ako se za artikl u cjeniku postavljenom u transakciji ne pronađe cijena
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Ako PDV nije postavljen i Predložak PDV i Naknada je odabran, sustav će automatski primijeniti PDV iz odabranog predloška."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Ako ne, možete Otkazati / Podnijeti ovaj unos"
@@ -23485,13 +23502,18 @@ msgstr "Ako je pravilo usklađeno, onda:"
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 postavljeno za 'Cijenu', ono će zamjenuti 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'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr "Ako je postavljeno, knjigovodstveni unosi za ovog klijenta knjižit će se na ove račune umjesto na zadane račune tvrtke."
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Ako je postavljeno, sustav ne koristi korisnikovu e-poštu ili standardni odlazni račun e-pošte za slanje zahtjeva za ponudama."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
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."
@@ -23500,7 +23522,7 @@ msgstr "Ako Sastavnica rezultira otpadnim materijalom, potrebno je odabrati Skla
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Ako je račun zamrznut, unosi su dozvoljeni ograničenim korisnicima."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Ako se transakcije artikla vrši kao artikal nulte stope vrijednosti u ovom unosu, omogućite 'Dozvoli Nultu Stopu Vrednovanja' u {0} Postavkama Artikla."
@@ -23510,7 +23532,7 @@ 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 razini grupnog skladišta, dostupna količina postaje zbroj projiciranih količina svih njegovih podređenih skladišta."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
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, sustav će preuzeti sve operacije iz nje, i te vrijednosti se mogu promijeniti."
@@ -23587,7 +23609,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:1158
+#: erpnext/stock/doctype/item/item.js:1142
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, sustav će napraviti unos u registar zaliha za svaku transakciju ovog artikla."
@@ -23601,7 +23623,7 @@ msgstr "Ako trebate usaglasiti određene transakcije jedne s drugima, odaberite
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Ako i dalje želite da nastavite, onemogući polje za potvrdu 'Preskoči Dostupne Artikle Podsklopa'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Ako i dalje želite da nastavite, omogućite {0}."
@@ -23685,7 +23707,7 @@ msgstr "Zanemari dnevnike revalorizacije deviynog tečaja i rezultata"
msgid "Ignore Existing Ordered Qty"
msgstr "Zanemari Postojeće Količine Prodajnog Naloga"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Zanemari Postojeću Planiranu Količinu"
@@ -23772,12 +23794,12 @@ msgstr "Zanemari preklapanje vremena Radne Stanice"
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"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
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 odabir \"{0}\" u {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Otpisi"
@@ -23935,7 +23957,7 @@ 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/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "U Količini"
@@ -24059,7 +24081,7 @@ 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 se izračunati kao 25% iznosa transakcije. Ako je iznos transakcije 200, tada će se to izračunati kao 200 * 0,25 = 50."
-#: erpnext/stock/doctype/item/item.js:1191
+#: erpnext/stock/doctype/item/item.js:1175
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 cijelu tvrtku za ovaj artikal. Npr. Standard Skladište, Standard Cijenovnik, Dobavljač itd."
@@ -24290,8 +24312,8 @@ msgstr "Uključujući artikle za podsklopove"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24362,7 +24384,7 @@ msgstr "Dolazna Plaćanja"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24394,7 +24416,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:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu"
@@ -24402,7 +24424,7 @@ msgstr "Netačno prijavljivanje (grupno) skladište za ponovnu narudžbu"
msgid "Incorrect Company"
msgstr "Netočna Tvrtka"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Netačna Količina Komponenti"
@@ -24536,15 +24558,15 @@ msgstr "Označava da je paket dio ove dostave (samo nacrt)"
msgid "Indirect Expense"
msgstr "Indirektni Troškak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirektni Troškovi"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirektni Prihod"
@@ -24612,14 +24634,14 @@ msgstr "Pokrenut"
msgid "Inspected By"
msgstr "Inspektor"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspekcija Odbijena"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspekcija Obavezna"
@@ -24636,8 +24658,8 @@ msgstr "Inspekcija Obavezna prije Dostave"
msgid "Inspection Required before Purchase"
msgstr "Inspekcija Obavezna prije Nabave"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Podnošenje Kontrole"
@@ -24667,7 +24689,7 @@ msgstr "Napomena Instalacije"
msgid "Installation Note Item"
msgstr "Stavka Napomene Instalacije "
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Napomena Instalacije {0} je već poslana"
@@ -24706,11 +24728,11 @@ msgstr "Uputstvo"
msgid "Insufficient Capacity"
msgstr "Nedovoljan Kapacitet"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Nedovoljne Dozvole"
@@ -24718,13 +24740,12 @@ msgstr "Nedovoljne Dozvole"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Nedovoljne Zalihe"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Nedovoljne Zalihe Šarže"
@@ -24844,13 +24865,13 @@ msgstr "Referenca Prenosa Inter Tvrtke"
msgid "Interest"
msgstr "Kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Troškovi Kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Prihod od Kamata"
@@ -24858,8 +24879,8 @@ msgstr "Prihod od Kamata"
msgid "Interest and/or dunning fee"
msgstr "Kamata i/ili Naknada Opomene"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Kamata na Oročene Depozite"
@@ -24879,7 +24900,7 @@ msgstr "Interni"
msgid "Internal Customer Accounting"
msgstr "Knjigovodstvo Internog Klijenta"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Interni Klijent za tvrtku {0} već postoji"
@@ -24887,7 +24908,7 @@ msgstr "Interni Klijent za tvrtku {0} već postoji"
msgid "Internal Purchase Order"
msgstr "Interni Nalog Nabave"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Nedostaje referenca za Internu Prodaju ili Dostavu."
@@ -24895,7 +24916,7 @@ msgstr "Nedostaje referenca za Internu Prodaju ili Dostavu."
msgid "Internal Sales Order"
msgstr "Interni Prodajni Nalog"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Nedostaje Interna Prodajna Referenca"
@@ -24926,7 +24947,7 @@ msgstr "Interni Dobavljač za tvrtku {0} već postoji"
msgid "Internal Transfer"
msgstr "Interni Prijenos"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Nedostaje Referenca Internog Prijenosa"
@@ -24939,7 +24960,12 @@ msgstr "Interni Prenosi"
msgid "Internal Work History"
msgstr "Interna Radna Istorija"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr "Interne bilješke o ovom klijentu. Nisu vidljive u transakcijama ili na portalu."
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interni prenosi se mogu vršiti samo u standard valuti tvrtke"
@@ -24955,12 +24981,12 @@ msgstr "Interval bi trebao biti između 1 i 59 minuta"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Nevažeći Račun"
@@ -24981,7 +25007,7 @@ msgstr "Nevažeći Iznos"
msgid "Invalid Attribute"
msgstr "Nevažeći Atribut"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Nevažeći Datum Automatskog Ponavljanja"
@@ -24994,7 +25020,7 @@ msgstr "Nevažeći bankovni račun"
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Nevažeći Barkod. Nema artikla priloženog ovom barkodu."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Nevažeća narudžba za odabranog Klijenta i Artikal"
@@ -25010,21 +25036,21 @@ msgstr "Nevažeća Podređena Procedura"
msgid "Invalid Company Field"
msgstr "Nevažeće polje tvrtke"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Nevažeća Tvrtka za transakcije između tvrtki."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Nevažeći Centar Troškova"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Nevažeća Klijent Grupa"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Nevažeći Datum Dostave"
@@ -25062,7 +25088,7 @@ msgstr "Nevažeća Grupa po"
msgid "Invalid Item"
msgstr "Nevažeći Artikal"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Nevažeće Standard Postavke Artikla"
@@ -25076,7 +25102,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Nevažeći Neto Iznos Nabave"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Nevažeći Početni Unos"
@@ -25084,11 +25110,11 @@ msgstr "Nevažeći Početni Unos"
msgid "Invalid POS Invoices"
msgstr "Nevažeće Fakture Blagajne"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Nevažeći Nadređeni Račun"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Nevažeći Broj Artikla"
@@ -25118,12 +25144,12 @@ msgstr "Nevažeća Konfiguracija Gubitka Procesa"
msgid "Invalid Purchase Invoice"
msgstr "Nevažeća Nabavna Faktura"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Nevažeća Količina"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Nevažeća Količina"
@@ -25148,12 +25174,12 @@ msgstr "Nevažeći Raspored"
msgid "Invalid Selling Price"
msgstr "Nevažeća Prodajna Cijena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Nevažeći Serijski i Šaržni Paket"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Nevažeće izvorno i ciljno skladište"
@@ -25178,7 +25204,7 @@ msgstr "Nevažeći iznos u knjigovodstvenim unosima od {} {} za Račun {}: {}"
msgid "Invalid condition expression"
msgstr "Nevažeći Izraz Uvjeta"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Nevažeći URL datoteke"
@@ -25190,7 +25216,7 @@ msgstr "Nevažeća formula filtra. Molimo provjerite sintaksu."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Nevažeći izgubljeni razlog {0}, kreiraj novi izgubljeni razlog"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Nevažeća serija imenovanja (. nedostaje) za {0}"
@@ -25216,8 +25242,8 @@ msgstr "Nevažeći upit pretraživanja"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Nevažeća vrijednost {0} za {1} naspram računa {2}"
@@ -25225,7 +25251,7 @@ msgstr "Nevažeća vrijednost {0} za {1} naspram računa {2}"
msgid "Invalid {0}"
msgstr "Nevažeći {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Nevažeći {0} za transakciju izmedu tvrtki."
@@ -25235,7 +25261,7 @@ msgid "Invalid {0}: {1}"
msgstr "Nevažeći {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Zalihe"
@@ -25284,8 +25310,8 @@ msgstr "Procjena Zaliha"
msgid "Investment Banking"
msgstr "Investiciono Bankarstvo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investicije"
@@ -25335,7 +25361,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:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Ukupni Iznos Fakture"
@@ -25440,7 +25466,7 @@ msgstr "Faktura se ne može kreirati 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25461,7 +25487,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25557,8 +25583,7 @@ msgstr "Alternativa"
msgid "Is Billable"
msgstr "Fakturisati"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Faktura Kontakt"
@@ -26000,8 +26025,7 @@ msgstr "Šablon"
msgid "Is Transporter"
msgstr "Dobavljač"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Adresa Vaše Tvrtke"
@@ -26107,8 +26131,8 @@ msgstr "Tip Slučaja"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Izdaj Zadužnicu sa 0 količinom na postojeću Prodajnu Fakturu"
+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 ostati ista kao u izvornoj fakturi."
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26138,11 +26162,11 @@ msgstr "Slučajevi"
msgid "Issuing Date"
msgstr "Datum Izdavanja"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Može potrajati i do nekoliko sati da tačne vrijednosti zaliha budu vidljive nakon spajanja artikala."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Potreban je za preuzimanje Detalja Artikla."
@@ -26266,7 +26290,7 @@ msgstr "Kurzivni tekst za međuzbrojeve ili bilješke"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26514,7 +26538,7 @@ msgstr "Artikal Korpe"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26576,7 +26600,7 @@ msgstr "Artikal Korpe"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26775,13 +26799,13 @@ msgstr "Detalji Artikla"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26998,7 +27022,7 @@ msgstr "Proizvođač Artikla"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27038,10 +27062,10 @@ msgstr "Proizvođač Artikla"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27082,10 +27106,6 @@ msgstr "Artikal nije na zalihi"
msgid "Item Price"
msgstr "Cijena Artikla"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Cijena Artikla dodana za {0} u Cjeniku {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27101,19 +27121,20 @@ msgstr "Postavke Cijene Artikla"
msgid "Item Price Stock"
msgstr "Cijena Artikla na Zalihama"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Cijena Artikla je dodana za {0} u Cijenovnik {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr "Cijena artikla dodana za {0} u Cjeniku - {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 Cijenika, 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:182
msgid "Item Price created at rate {0}"
msgstr "Cijena Artikla stvorena po stopi {0}"
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Cijena Artikla je ažurirana za {0} u Cjenovniku {1}"
@@ -27300,11 +27321,11 @@ msgstr "Detalji Varijante Artikla"
msgid "Item Variant Settings"
msgstr "Postavke Varijante Artikla"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Varijanta Artikla {0} već postoji sa istim atributima"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Varijante Artikla Ažurirane"
@@ -27405,11 +27426,11 @@ msgstr "Artikal i Skladište"
msgid "Item and Warranty Details"
msgstr "Detalji Artikla i Garancija"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
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:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Artikal ima Varijante."
@@ -27435,11 +27456,7 @@ msgstr "Naziv Artikla"
msgid "Item operation"
msgstr "Artikal Operacija"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Količina artikla se ne može ažurirati jer su sirovine već obrađene."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
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}"
@@ -27458,11 +27475,11 @@ 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:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Varijanta Artikla {0} postoji sa istim atributima"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr "Artikal s nazivom {0} nije pronađena u Nalogu Nabave"
@@ -27479,7 +27496,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikal {0} se nemože naručiti više od {1} u odnosu na Ugovorni Nalog {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Artikal {0} ne postoji"
@@ -27491,7 +27508,7 @@ msgstr "Artikal {0} ne postoji u sustavu ili je istekao"
msgid "Item {0} does not exist."
msgstr "Artikal {0} ne postoji."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Artikal {0} unesen više puta."
@@ -27503,15 +27520,15 @@ msgstr "Artikal {0} je već vraćen"
msgid "Item {0} has been disabled"
msgstr "Artikal {0} je onemogućen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Artikal {0} nema serijski broj. Samo serijski artikli mogu imati dostavu na osnovu serijskog broja"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Artikal {0} je dosego kraj svog vijeka trajanja {1}"
@@ -27523,15 +27540,15 @@ msgstr "Artikal {0} zanemaren jer nije artikal na zalihama"
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:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Artikal {0} je otkazan"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Artikal {0} je onemogućen"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr "Artikal {0} nije artikl za direktno slanje. Samo artikli za direktno slanje mogu imati ažuriranu dostavnu količinu."
@@ -27539,7 +27556,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:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Artikal {0} nije artikal na zalihama"
@@ -27547,11 +27564,11 @@ msgstr "Artikal {0} nije artikal na zalihama"
msgid "Item {0} is not a subcontracted item"
msgstr "Artikal {0} nije podugovoreni artikal"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr "Artikal {0} nije predložak artikla."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Artikal {0} nije aktivan ili je dostignut kraj životnog vijeka"
@@ -27567,7 +27584,7 @@ msgstr "Artikal {0} mora biti artikal koji nije na zalihama"
msgid "Item {0} must be a non-stock item"
msgstr "Artikal {0} mora biti artikal koji nije na zalihama"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Artikal {0} nije pronađen u tabeli 'Dostavljene Sirovine' u {1} {2}"
@@ -27575,7 +27592,7 @@ 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:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
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)."
@@ -27583,7 +27600,7 @@ msgstr "Artikal {0}: Količina Naloga {1} ne može biti manja od minimalne koli
msgid "Item {0}: {1} qty produced. "
msgstr "Artikal {0}: {1} količina proizvedena. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Atikal {} ne postoji."
@@ -27629,7 +27646,7 @@ msgstr "Prodajni Registar po Artiklu"
msgid "Item-wise sales Register"
msgstr "Registar Prodaje po Artiklima"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Artikal/Artikal Šifra je obavezan pri preuzimanju PDV Predloška Artikla."
@@ -27653,7 +27670,7 @@ msgstr "Katalog Artikala"
msgid "Items Filter"
msgstr "Filter Artikala"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Artikli Obavezni"
@@ -27677,11 +27694,11 @@ msgstr "Artikli Nabave"
msgid "Items and Pricing"
msgstr "Artikli & Cijene"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
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."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
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 Podugovorni Nalog kreiran naspram Nabavnog Naloga {0}."
@@ -27693,7 +27710,7 @@ msgstr "Artikli Materijalnog Naloga Sirovina"
msgid "Items not found."
msgstr "Artikli nisu pronađeni."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
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}"
@@ -27703,7 +27720,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/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
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."
@@ -27768,9 +27785,9 @@ msgstr "Radni Kapacitet"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27832,7 +27849,7 @@ msgstr "Zapisnik Vremana Radnog Naloga"
msgid "Job Card and Capacity Planning"
msgstr "Radne Kartice i Planiranje Kapaciteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Radne Kartice {0} je završen"
@@ -27908,7 +27925,7 @@ msgstr "Naziv Podizvođača"
msgid "Job Worker Warehouse"
msgstr "Skladište Podizvođača"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Radna Kartica {0} kreirana"
@@ -28128,7 +28145,7 @@ msgstr "Kilovat"
msgid "Kilowatt-Hour"
msgstr "Kilovat-Sat"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Otkaži Unose Proizvodnje naspram Radnog Naloga {0}."
@@ -28256,7 +28273,7 @@ msgstr "Poslednji Datum Završetka"
msgid "Last Fiscal Year"
msgstr "Prošla Fiskalna Godina"
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Posljednje ažuriranje Knjigovodstvenog Registra je obavljeno {}. Ova operacija nije dopuštena dok se sustav aktivno koristi. Pričekaj 5 minuta prije ponovnog pokušaja."
@@ -28338,7 +28355,7 @@ msgstr "Datum posljednje kontrole Co2 ne može biti datum u budućnosti"
msgid "Last transacted"
msgstr "Zadnja Transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Najnovije"
@@ -28588,12 +28605,12 @@ msgstr "Starija Polja"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Pravno Lice / Podružnica sa posebnim Kontnim Planom koji pripada Tvrtki."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Pravni Troškovi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legenda"
@@ -28604,7 +28621,7 @@ msgstr "Legenda"
msgid "Length (cm)"
msgstr "Dužina (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Manje od Iznosa"
@@ -28663,7 +28680,7 @@ msgstr "Broj Vozačke Dozvole"
msgid "License Plate"
msgstr "Registarski Broj"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Prekoračeno Ograničenje"
@@ -28724,7 +28741,7 @@ msgstr "Veza za Materijalne Naloge"
msgid "Link with Customer"
msgstr "Veza sa Klijentom"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Veza sa Dobavljačem"
@@ -28745,12 +28762,12 @@ msgstr "Povezane Fakture"
msgid "Linked Location"
msgstr "Povezana Lokacija"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Povezano sa podnešenim dokumentima"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Povezivanje nije uspjelo"
@@ -28758,7 +28775,7 @@ msgstr "Povezivanje nije uspjelo"
msgid "Linking to Customer Failed. Please try again."
msgstr "Povezivanje s klijentom nije uspjelo. Molimo pokušajte ponovo."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Povezivanje sa dobavljačem nije uspjelo. Molimo pokušajte ponovo."
@@ -28816,8 +28833,8 @@ msgstr "Datum Početka Kredita"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Datum Početka Kredita i Period Kredita su obavezni za spremanje Popusta na Fakturi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Krediti (Obaveze)"
@@ -28862,8 +28879,8 @@ msgstr "Zabilježi prodajnu i nabavnu cijenu artikla"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Dugoročne Rezerve"
@@ -29064,6 +29081,11 @@ msgstr "Nivo Programa Lojalnosti"
msgid "Loyalty Program Type"
msgstr "Tip Programa Loojalnosti"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr "Program vjernosti u okviru kojeg ovaj klijent zarađuje bodove. Automatski se dodjeljuje ako postoji odgovarajući program."
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29107,10 +29129,10 @@ msgstr "Mašina Neispravna"
msgid "Machine operator errors"
msgstr "Greške Operatera Mašine"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Standard Centar Troškova"
@@ -29353,9 +29375,9 @@ msgstr "Glavni/Izborni Predmeti"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Marka"
@@ -29375,7 +29397,7 @@ msgstr "Kreiraj Unos Amortizacije"
msgid "Make Difference Entry"
msgstr "Kreiraj Unos Razlike"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Napravi Vrijeme Isporuke"
@@ -29413,12 +29435,12 @@ msgstr "Napravi Prodajnu Fakturu"
msgid "Make Serial No / Batch from Work Order"
msgstr "Napravi Serijski Broj / Šaržu iz Radnog Naloga"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Napravi Unos Zaliha"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Napravi Podugovorni Nalog Nabave"
@@ -29434,11 +29456,11 @@ msgstr "Pozovi"
msgid "Make project from a template."
msgstr "Napravi Projekt iz Šablona."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Napravi {0} Varijantu"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Napravi {0} Varijante"
@@ -29446,8 +29468,8 @@ msgstr "Napravi {0} Varijante"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Kreiranje Naloga Knjiženja naspram računa predujma: {0} se ne preporučuje. Ovi Nalozi Knjiženja neće biti dostupni za Usaglašavanje."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Upravljaj"
@@ -29466,7 +29488,7 @@ msgstr "Upravljajte provizijama prodajnih partnera i prodajnog tima"
msgid "Manage your orders"
msgstr "Upravljaj Nalozima"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Uprava"
@@ -29482,7 +29504,7 @@ msgstr "Generalni Direktor"
msgid "Mandatory Accounting Dimension"
msgstr "Obavezna Knjigovodstvena Dimenzija"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Obavezno Polje"
@@ -29581,8 +29603,8 @@ msgstr "Ručni unos se ne može kreirati! Onemogući automatski unos za odgođen
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29661,7 +29683,7 @@ msgstr "Proizvođač"
msgid "Manufacturer Part Number"
msgstr "Broj Artikla Proizvođača"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Broj Artikla Proizvođača {0} je nevažeći"
@@ -29686,7 +29708,7 @@ msgstr "Proizvođači koji se koriste u Artiklima"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29731,10 +29753,6 @@ msgstr "Datum Proizvodnje"
msgid "Manufacturing Manager"
msgstr "Upravitelj Proizvodnje"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Proizvodna Količina je obavezna"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29901,6 +29919,12 @@ msgstr "Bračno Stanje"
msgid "Mark As Closed"
msgstr "Označi kao Zatvoreno"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr "Odaberi ako ovaj klijent predstavlja internu tvrtku. Omogućuje transakcije između tvrtki."
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29915,12 +29939,12 @@ msgstr "Označi kao Zatvoreno"
msgid "Market Segment"
msgstr "Tržišni Segment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Marketinški Troškovi"
@@ -29999,7 +30023,7 @@ msgstr "Pravila Usklađivanja"
msgid "Material"
msgstr "Materijal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Potrošnja Materijala"
@@ -30007,7 +30031,7 @@ msgstr "Potrošnja Materijala"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Potrošnja Materijala za Proizvodnju"
@@ -30088,7 +30112,7 @@ msgstr "Priznanica Materijala"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30185,11 +30209,11 @@ msgstr "Artikal Plana Materijalnog Zahtjeva"
msgid "Material Request Type"
msgstr "Tip Materijalnog Naloga"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Zahtjev za materijal već je kreiran za naručenu količinu"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Materijalni Nalog nije kreiran, jer je količina Sirovine već dostupna."
@@ -30257,7 +30281,7 @@ msgstr "Materijal vraćen iz Posla u Toku"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30323,12 +30347,12 @@ msgstr "Materijal Dobavljaču"
msgid "Materials To Be Transferred"
msgstr "Materijali koji će se Prenijeti"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Materijali su već primljeni naspram {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Materijale je potrebno prebaciti u Skladište u Toku za Radnu Karticu {0}"
@@ -30399,9 +30423,9 @@ msgstr "Makimalni Rezultat"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Maksimalni dozvoljeni popust za artikal: {0} je {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30433,11 +30457,11 @@ msgstr "Maksimalni Iznos Uplate"
msgid "Maximum Producible Items"
msgstr "Maksimalni broj Proizvodnih Artikala"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maksimalni broj Uzoraka - {0} može se zadržati za Šaržu {1} i Artikal {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maksimalni broj Uzoraka - {0} su već zadržani za Šaržu {1} i Artikal {2} u Šarži {3}."
@@ -30498,15 +30522,10 @@ msgstr "Megadžul"
msgid "Megawatt"
msgstr "Megavat"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Navedi Stopu Vrednovanja u Postavkama Artikla."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Navedite ako Račun Potraživanja nije standard"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30556,7 +30575,7 @@ msgstr "Spoji s Postojećim Računom"
msgid "Merged"
msgstr "Spojeno"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Spajanje je moguće samo ako su sljedeća svojstva ista u oba zapisa. Grupa, Tip Klase, Tvrtka i Valuta Računa"
@@ -30586,7 +30605,7 @@ msgstr "Poruka će biti poslana korisnicima da preuzme njihov status u Projektu"
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Poruke duže od 160 karaktera bit će podijeljene na više poruka"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "Poruke Kampanje Prodajne Podrške"
@@ -30787,7 +30806,7 @@ msgstr "Minimalni Količina ne može biti veći od Maksimalnog Količine"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimalna Količina bi trebao biti veći od Povratne Količina"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Min. Vrijednost: {0}, Maks. Vrijednost: {1}, u stopama od: {2}"
@@ -30876,8 +30895,8 @@ msgstr "Minuta"
msgid "Miscellaneous"
msgstr "Razno"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Razni Troškovi"
@@ -30885,15 +30904,15 @@ msgstr "Razni Troškovi"
msgid "Mismatch"
msgstr "Neusklađeno"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Nedostaje"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Nedostaje Račun"
@@ -30923,7 +30942,7 @@ msgstr "Nedostajući Filteri"
msgid "Missing Finance Book"
msgstr "Nedostaje Finansijski Registar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Nedostaje Gotov Proizvod"
@@ -30931,7 +30950,7 @@ msgstr "Nedostaje Gotov Proizvod"
msgid "Missing Formula"
msgstr "Nedostaje Formula"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Nedostaje Artikal"
@@ -30968,7 +30987,7 @@ msgid "Missing required filter: {0}"
msgstr "Nedostaje obavezni filter: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Nedostaje vrijednost"
@@ -31217,11 +31236,11 @@ msgstr "Više Računa"
msgid "Multiple Accounts (Journal Template)"
msgstr "Više Računa (Predložak Naloga Knjiženja)"
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Višestruki Programi Lojalnosti pronađeni za Klijenta {}. Odaberi ručno."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Višestruki Unos Otvaranja Blagajne"
@@ -31243,11 +31262,11 @@ msgstr "Više Varijanti"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Dostupno je više polja tvrtke: {0}. Molimo odaberite ručno."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Za datum {0} postoji više fiskalnih godina. Postavi Tvrtku u Fiskalnoj Godini"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Više artikala se ne mogu označiti kao gotov proizvod"
@@ -31256,7 +31275,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:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31343,7 +31362,7 @@ msgstr "Opcije Imenovanja Serije"
msgid "Naming Series updated"
msgstr "Serija Imenovanja ažurirana"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Imenovanje serije '{0}' za DocType '{1}' ne sadrži standardni razdjelnik '.' ili '{{'. Koristi se rezervna ekstrakcija."
@@ -31387,7 +31406,7 @@ msgstr "Treba Analiza"
msgid "Negative Batch Report"
msgstr "Izvještaj Negativne Šarže"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negativna Količina nije dozvoljena"
@@ -31396,7 +31415,7 @@ msgstr "Negativna Količina nije dozvoljena"
msgid "Negative Stock Error"
msgstr "Pogreška Negativne Zalihe"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negativna Stopa Vrednovanja nije dozvoljena"
@@ -31702,7 +31721,7 @@ msgstr "Neto Težina"
msgid "Net Weight UOM"
msgstr "Jedinica Neto Težine"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Ukupni neto gubitak preciznosti proračuna"
@@ -31879,7 +31898,7 @@ msgstr "Nov Naziv Skladišta"
msgid "New Workplace"
msgstr "Novi Radni Prostor"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Novo kreditno ograničenje je niže od trenutnog iznosa klijenta. Kreditno ograničenjemora biti najmanje {0}"
@@ -31933,7 +31952,7 @@ msgstr "Sljedeća e-pošta će biti poslana:"
msgid "No Account Data row found"
msgstr "Nije pronađen redak Podaci Računa "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Nijedan Račun ne odgovara ovim filterima: {}"
@@ -31946,7 +31965,7 @@ msgstr "Bez Akcije"
msgid "No Answer"
msgstr "Bez Odgovora"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Nije pronađen Klijent za Transakcije Inter Tvrtke koji predstavlja Tvrtku {0}"
@@ -31959,7 +31978,7 @@ msgstr "Nisu pronađeni Klijenti sa odabranim opcijama."
msgid "No Delivery Note selected for Customer {}"
msgstr "Nije odabrana Dostavnica za Klijenta {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Nema DocTypes na popisu za brisanje. Molimo generirajte ili uvezite popis prije podnošenja."
@@ -31975,7 +31994,7 @@ msgstr "Nema Artikla sa Barkodom {0}"
msgid "No Item with Serial No {0}"
msgstr "Nema Artikla sa Serijskim Brojem {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Nema odabranih artikala za prijenos."
@@ -32010,7 +32029,7 @@ msgstr "Nije pronađen profil Blagajne. Kreiraj novi Profil Blagajne"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Bez Dozvole"
@@ -32039,19 +32058,19 @@ msgstr "Trenutno nema Dostupnih Zaliha"
msgid "No Summary"
msgstr "Nema Sažetak"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Nije pronađen Dobavljač za Transakcije Inter Tvrtke koji predstavlja tvrtku {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Nisu pronađeni podaci o PDV-u po odbitku za trenutni datum knjiženja."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Nije postavljen račun Odbitka PDV-a za {0} u Kategoriji Odbitka PDV-a {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Nema Uslova"
@@ -32081,7 +32100,7 @@ msgstr "Nema konfiguriranih računa"
msgid "No accounts found."
msgstr "Nisu pronađeni računi."
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Nije pronađena aktivna Sastavnica za artikal {0}. Ne može se osigurati isporuka na osnovu serijskog broja"
@@ -32275,7 +32294,7 @@ msgstr "Broj Radnih Stanica"
msgid "No open Material Requests found for the given criteria."
msgstr "Nisu pronađeni otvoreni materijalni nalozi za zadane kriterije."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Nije pronađen Unos Otvaranja Blagajne za Profil Blagajne {0}."
@@ -32299,7 +32318,7 @@ msgstr "Nijedna neplaćena faktura ne zahtijeva revalorizaciju kursa"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Nema neplaćenih {0} pronađenih za {1} {2} koji ispunjavaju filtre koje ste naveli."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
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."
@@ -32370,7 +32389,7 @@ msgstr "Još nema postavljenih pravila"
msgid "No stock available for this batch."
msgstr "Nema dostupnih zaliha za ovu šaržu."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Nisu kreirani unosi u glavnu knjigu zaliha. Molimo Vas da ispravno postavite količinu ili stopu vrednovanja za stavke i pokušate ponovno."
@@ -32403,7 +32422,7 @@ msgstr "Bez Vrijednosti"
msgid "No vouchers found for this transaction"
msgstr "Nisu pronađeni vaučeri za ovu transakciju"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Nije pronađen {0} za Transakcije među Tvrtkama."
@@ -32448,8 +32467,8 @@ msgstr "Neprofitna"
msgid "Non stock items"
msgstr "Artikli koji nisu na Zalihama"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Dugoročne Obveze"
@@ -32550,7 +32569,7 @@ msgstr "Nije moguće pronaći najraniju Fiskalnu Godinu za zadanu tvrtku."
msgid "Not allow to set alternative item for the item {0}"
msgstr "Nije dozvoljeno postavljanje alternativnog artikla za artikal {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: 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}"
@@ -32604,7 +32623,7 @@ msgstr "Napomena: Ako želite koristiti gotov proizvod {0} kao sirovinu, označi
msgid "Note: Item {0} added multiple times"
msgstr "Napomena: Artikal {0} je dodan više puta"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
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"
@@ -32612,7 +32631,7 @@ msgstr "Napomena: Unos plaćanja neće biti kreiran jer 'Gotovina ili Bankovni R
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:695
+#: erpnext/stock/doctype/item/item.py:694
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}"
@@ -32795,6 +32814,11 @@ msgstr "Broj novog Računa, biće uključen u naziv računa kao prefiks"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Broj novog Centra Troškova, biće uključen u naziv Centra Troškova kao prefiks"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr "Brojevi koje ovaj klijent koristi za identifikaciju vaše tvrtke u vlastitom sustavu."
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32854,18 +32878,18 @@ msgstr "Kilometraža (Posljednja)"
msgid "Offer Date"
msgstr "Datum Ponude"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Uredska Oprema"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Troškovi Održavanja Ureda"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Iznajmljivanje Ureda"
@@ -32993,7 +33017,7 @@ msgstr "Uvođenje u Zalihe!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Nakon postavljanja, ova faktura će biti na čekanju do postavljenog datuma"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Nakon što je Radni Nalog Yatvoren. Ne može se ponovo otvoriti."
@@ -33033,7 +33057,7 @@ msgstr "Podržani su samo 'Unosi Plaćanja' naspram ovog predujam računa."
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Za uvoz podataka mogu se koristiti samo CSV i Excel datoteke. Provjeri format datoteke koji pokušavate učitati"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Dopuštene su samo CSV datoteke"
@@ -33052,7 +33076,7 @@ msgstr "Odbij porez samo na višak Iznosa"
msgid "Only Include Allocated Payments"
msgstr "Uzmi u obzir samo Dodijeljena Plaćanja"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Jedino Nadređeni može biti tipa {0}"
@@ -33089,7 +33113,7 @@ msgstr "Prilikom primjene isključene naknade, samo jedan od iznosa Uplata ili I
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'."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
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}"
@@ -33307,8 +33331,8 @@ msgstr "Početno Stanje = Početak Razdoblja, Završno Stanje = Kraj Razdoblja,
msgid "Opening Balance Details"
msgstr "Detalji Početnog Stanja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Početno Stanje Kapitala"
@@ -33331,7 +33355,7 @@ msgstr "Datum Otvaranja"
msgid "Opening Entry"
msgstr "Početni Unos"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Početni Unos ne može se kreirati nakon kreiranja Verifikata Zatvaranje Perioda."
@@ -33364,7 +33388,7 @@ msgid "Opening Invoice Tool"
msgstr "Alat Početne Fakture"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Početna Faktura ima podešavanje zaokruživanja od {0}. '{1}' račun je potreban za postavljanje ovih vrijednosti. Molimo postavite ga u kompaniji: {2}. Ili, '{3}' se može omogućiti da se ne objavljuje nikakvo podešavanje zaokruživanja."
@@ -33400,16 +33424,16 @@ msgstr "Početne Fakture Prodaje su kreirane."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Početna Zaliha"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr "Unos početnih zaliha stvoren s nultom stopom vrednovanja: {0}"
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr "Početni Unos Zalha stvoren: {0}"
@@ -33427,12 +33451,15 @@ msgstr "Početna Vrijednosti"
msgid "Opening and Closing"
msgstr "Otvaranje & Zatvaranje"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Početno kreiranje zaliha je stavljeno u red čekanja i bit će kreirano u pozadini. Molimo provjerite unos 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
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Operativna komponenta"
@@ -33464,7 +33491,7 @@ msgstr "Operativni Trošak (Valuta Tvrtke)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Operativni trošak po količini Sastavnice"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Operativni Trošak prema Radnom Nalogu / Sastavnici"
@@ -33507,15 +33534,15 @@ msgstr "Opis Operacije"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Operacija"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Operacija"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33540,7 +33567,7 @@ msgstr "Broj Reda Operacije"
msgid "Operation Time"
msgstr "Operativno Vrijeme"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Vrijeme Operacije mora biti veće od 0 za operaciju {0}"
@@ -33555,11 +33582,11 @@ msgstr "Operacija je okončana za koliko gotove robe?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Vrijeme Operacije ne ovisi o količini za proizvodnju"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operacija {0} dodata je više puta u radni nalog {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Operacija {0} ne pripada radnom nalogu {1}"
@@ -33575,9 +33602,9 @@ msgstr "Operacija {0} traje duže od bilo kojeg raspoloživog radnog vremena na
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33750,7 +33777,7 @@ msgstr "Prilika {0} je kreirana"
msgid "Optimize Route"
msgstr "Optimiziraj Rutu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "Neobavezno. Odaberi određeni unos proizvodnje za poništavanje."
@@ -33900,7 +33927,7 @@ msgstr "Naručena Količina"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Nalozi"
@@ -34016,7 +34043,7 @@ 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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Odlazna Količina"
@@ -34054,7 +34081,7 @@ msgstr "Van Garancije"
msgid "Out of stock"
msgstr "Nema u Zalihana"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Zastarjeli Unos Otvaranja Blagajne"
@@ -34073,6 +34100,7 @@ msgstr "Odlazno Plaćanje"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Odlazna Cijena"
@@ -34108,7 +34136,7 @@ msgstr "Nepodmireno (Valuta Tvrtke)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34118,7 +34146,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34178,17 +34206,22 @@ msgstr "Prekoračenje dopuštenog iznosa za artikal računa premašeno je za {0}
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Dozvola za prekomjernu Dostavu/Primanje (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr "Dopušteno Prekoračenje Naloga (%)"
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Dozvola za prekomjernu Odabir"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Preko Dostavnice"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekmjerni Prijema/Dostava {0} {1} zanemareno za artikal {2} jer imate {3} ulogu."
@@ -34208,11 +34241,11 @@ msgstr "Dozvola za prekomjerni Prenos (%)"
msgid "Over Withheld"
msgstr "Preko Odbitka"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekomjerno Fakturisanje {0} {1} zanemareno za artikal {2} jer imate {3} ulogu."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Prekomjerno Fakturisanje {} zanemareno jer imate {} ulogu."
@@ -34512,7 +34545,7 @@ msgstr "Odabir Kasa Artikla"
msgid "POS Opening Entry"
msgstr "Otvaranje Kase"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Unos Otvaranja Blagajne - {0} je zastario. Zatvori Blagajnu i kreiraj novi Unos Otvaranja Blagajne."
@@ -34533,7 +34566,7 @@ msgstr "Detalji Početnog Unosa Kase"
msgid "POS Opening Entry Exists"
msgstr "Unos Otvaranje Blagajne Postoji"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Početni Unos Kase Nedostaje"
@@ -34569,7 +34602,7 @@ msgstr "Način Plaćanja Kase"
msgid "POS Profile"
msgstr "Profil Blagajne"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Profil Blagajne - {0} ima više otvorenih Unosa Otvaranje Blagajne. Zatvori ili otkaži postojeće unose prije nego što nastavite."
@@ -34587,11 +34620,11 @@ msgstr "Korisnik Profila Blagajne"
msgid "POS Profile doesn't match {}"
msgstr "Profil Blagajne ne poklapa se s {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Profil Blagajne je obavezan za označavanje ove fakture kao transakcije blagajne."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Profil Blagajne je obavezan za unos u Blagajnu"
@@ -34697,7 +34730,7 @@ msgstr "Upakovani Artikal"
msgid "Packed Items"
msgstr "Upakovani Artikli"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Upakovani Artikli se ne mogu interno prenositi"
@@ -34734,7 +34767,7 @@ msgstr "Otpremnica"
msgid "Packing Slip Item"
msgstr "Artikal Otpremnice"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Otpremnica otkazana"
@@ -34775,7 +34808,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34841,7 +34874,7 @@ msgid "Paid To Account Type"
msgstr "Plaćeno na Tip Računa"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Uplaćeni iznos + iznos otpisa ne može biti veći od ukupnog iznosa"
@@ -34935,7 +34968,7 @@ msgstr "Nadređena Šarža"
msgid "Parent Company"
msgstr "Matična Tvrtka"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Matična Tvrtka mora biti tvrtka grupe"
@@ -35062,7 +35095,7 @@ msgstr "Djelomično Usklađivanje"
msgid "Partial Material Transferred"
msgstr "Djelomični Prenesen Materijal"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Djelomično plaćanje u Transakcijama Blagajne nije dozvoljeno."
@@ -35275,7 +35308,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35302,7 +35335,7 @@ msgstr "Stranka"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Račun Stranke"
@@ -35335,7 +35368,7 @@ msgstr "Broj računa Stranke."
msgid "Party Account No. (Bank Statement)"
msgstr "Broj Računa Stranke (Izvod iz Banke)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Valuta Računa Stranke {0} ({1}) i valuta dokumenta ({2}) trebaju biti iste"
@@ -35487,7 +35520,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35596,7 +35629,7 @@ msgstr "Prošli događaji"
msgid "Pause"
msgstr "Pauza"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Pauziraj Posao"
@@ -35647,7 +35680,7 @@ msgid "Payable"
msgstr "Plaća se"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35681,7 +35714,7 @@ msgstr "Postavke Platitelja"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35828,7 +35861,7 @@ msgstr "Unos plaćanja je izmijenjen nakon što ste ga povukli. Molim te povuci
msgid "Payment Entry is already created"
msgstr "Unos plaćanja je već kreiran"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
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."
@@ -36053,7 +36086,7 @@ msgstr "Reference Uplate"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36118,7 +36151,7 @@ msgstr "Zahtjevi Plaćanja napravljeni iz Prodajne / Nabavne Fakture bit će eks
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36147,7 +36180,7 @@ msgstr "Rasporedi Plaćanja"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36203,6 +36236,7 @@ msgstr "Status Uslova Plaćanja Prodajnog Naloga"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36217,6 +36251,7 @@ msgstr "Status Uslova Plaćanja Prodajnog Naloga"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36274,7 +36309,7 @@ msgstr "Platni sustav {0} nije uspio stvoriti sesiju plaćanja"
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Načini plaćanja su obavezni. Postavi barem jedan način plaćanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Načini plaćanja su osvježeni. Molimo vas da ih pregledate prije nego što nastavite."
@@ -36349,8 +36384,8 @@ msgstr "Plaćanja ažurirana."
msgid "Payroll Entry"
msgstr "Unos Plaća"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Isplata Plaća"
@@ -36397,10 +36432,14 @@ msgstr "Aktivnosti na Čekanju"
msgid "Pending Amount"
msgstr "Iznos na Čekanju"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36409,9 +36448,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Količina na Čekanju"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr "Količina na čekanju ne može biti veća od {0}"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr "Količina na čekanju ne može biti manja od 0"
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36441,6 +36489,14 @@ msgstr "Današnje Aktivnosti na Čekanju"
msgid "Pending processing"
msgstr "Obrada na Čekanju"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr "Količina na čekanju ne može biti veća od tražene količine."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr "Količina na čekanju ne može biti negativna."
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Penzioni Fondovi"
@@ -36551,7 +36607,7 @@ msgstr "Analiza Percepcije"
msgid "Period Based On"
msgstr "Period na Osnovu"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Period Zatvoren"
@@ -37115,8 +37171,8 @@ msgstr "Nadzorna Ploča Postrojenja"
msgid "Plant Floor"
msgstr "Proizvodna Površina"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Postrojenja i Mašinerije"
@@ -37152,7 +37208,7 @@ msgstr "Postavi Prioritet"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Podstavi Grupu Dobavljača u Postavkama Nabave."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Navedi Račun"
@@ -37200,7 +37256,7 @@ msgstr "Dodaj kolonu Bankovni Račun"
msgid "Please add the account to root level Company - {0}"
msgstr "Dodaj Račun Matičnoj Tvrtki - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Dodaj Račun Matičnoj Tvrtki - {}"
@@ -37208,7 +37264,7 @@ msgstr "Dodaj Račun Matičnoj Tvrtki - {}"
msgid "Please add {1} role to user {0}."
msgstr "Dodaj {1} ulogu korisniku {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Podesi količinu ili uredi {0} da nastavite."
@@ -37216,7 +37272,7 @@ 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:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Poništi i Izmijeni Unos Plaćanja"
@@ -37236,7 +37292,7 @@ msgstr "Aktiviraj imovinu prije podnošenja."
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:974
msgid "Please check Multi Currency option to allow accounts with other currency"
-msgstr "Odaberi opciju Više Valuta da dozvolite račune u drugoj valuti"
+msgstr "Odaberi opciju Više Valuta da dopusti račune u drugoj valuti"
#: erpnext/accounts/deferred_revenue.py:542
msgid "Please check Process Deferred Accounting {0} and submit manually after resolving errors."
@@ -37250,7 +37306,7 @@ msgstr "Odaberi ili s operacijama ili operativnim troškovima zasnovanim na Goto
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "Odaberi 'Omogući Serijski i Šaržni broj za Artikal' u {0} kako biste kreirali Paket Serijskih i Šaržnih brojeva za artikal."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
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."
@@ -37275,11 +37331,15 @@ msgstr "Klikni na 'Generiraj Raspored' da preuzmeš serijski broj dodan za Artik
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Klikni na 'Generiraj Raspored' da generišeš raspored"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr "Molimo vas da prvo završite posao prije unosa količine na čekanju"
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr "Konfiguriraj račune za pravilo bankovnog unosa."
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
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}"
@@ -37287,11 +37347,11 @@ msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da produžite kreditna og
msgid "Please contact any of the following users to {} this transaction."
msgstr "Kontaktiraj bilo kojeg od sljedećih korisnika da {} ovu transakciju."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Kontaktiraj administratora da produži kreditna ograničenja za {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Pretvori nadređeni račun u odgovarajućoj podređenoj tvrtki u grupni račun."
@@ -37303,11 +37363,11 @@ msgstr "Kreiraj Klijenta od Potencijalnog Klijenta {0}."
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“."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: 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."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave"
@@ -37315,11 +37375,11 @@ msgstr "Kreiraj nabavu iz interne prodaje ili samog dokumenta dostave"
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Kreiraj Račun Nabave ili Fakturu Nabave za artikal {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Izbriši Artikal Paket {0}, prije spajanja {1} u {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Molimo vas da privremeno onemogućite tijek rada za Nalog Knjiženja {0}"
@@ -37327,7 +37387,7 @@ msgstr "Molimo vas da privremeno onemogućite tijek 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:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Ne Kreiraj više od 500 artikala odjednom"
@@ -37351,9 +37411,9 @@ msgstr "Omogući samo ako razumijete efekte omogućavanja."
msgid "Please enable {0} in the {1}."
msgstr "Omogući {0} u {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
-msgstr "Omogući {} u {} da dozvolite isti artikal u više redova"
+msgstr "Omogući {} u {} da dopusti isti artikal u više redova"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:374
msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account."
@@ -37363,20 +37423,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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Potvrdi je li {} račun račun Bilansa Stanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Potvrdi da je {} račun {} račun Potraživanja."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
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 kompaniju {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Unesi Račun za Kusur"
@@ -37384,15 +37444,15 @@ msgstr "Unesi Račun za Kusur"
msgid "Please enter Approving Role or Approving User"
msgstr "Unesi Odobravajuća Uloga ili Odobravajućeg Korisnika"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Molimo unesite broj Šarže"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Unesite Centar Troškova"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Unesi Datum Dostave"
@@ -37400,7 +37460,7 @@ msgstr "Unesi Datum Dostave"
msgid "Please enter Employee Id of this sales person"
msgstr "Unesi Personal Id ovog Prodavača"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Unesi Račun Troškova"
@@ -37409,7 +37469,7 @@ msgstr "Unesi Račun Troškova"
msgid "Please enter Item Code to get Batch Number"
msgstr "Unesi Kod Artikla da preuzmete Broj Šarže"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Unesi Kod Artikla da preuzmete Broj Šarže"
@@ -37425,7 +37485,7 @@ msgstr "Unesi Detalje Održavanju"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Unesi Planiranu Količinu za artikal {0} za red {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Unesi Artikal Proizvodnje"
@@ -37445,7 +37505,7 @@ msgstr "Unesi Referentni Datum"
msgid "Please enter Root Type for account- {0}"
msgstr "Unesi Kontnu Klasu za račun- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Molimo unesite Serijski Broj"
@@ -37462,7 +37522,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Unesi Skladište i Datum"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Unesi Otpisni Račun"
@@ -37482,7 +37542,7 @@ msgstr "Unesi barem jedan datum dostave i količinu"
msgid "Please enter company name first"
msgstr "Unesi naziv tvrtke"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Unesi Standard Valutu u Postavkama Tvrtke"
@@ -37510,7 +37570,7 @@ msgstr "Unesi Datum Otpusta."
msgid "Please enter serial nos"
msgstr "Unesi Serijski Broj"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Unesi Naziv Tvrtke za potvrdu"
@@ -37578,11 +37638,11 @@ msgstr "Provjerite da gore navedeni personal podneseni izvještaju drugom aktivn
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."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Da li zaista želiš izbrisati sve transakcije za ovu tvrtku. Vaši glavni podaci će ostati onakvi kakvi jesu. Ova radnja se ne može poništiti."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Navedi 'Jedinicu Težine' zajedno s Težinom."
@@ -37641,7 +37701,7 @@ msgstr "Odaberi Tip Šablona za preuzimanje šablona"
msgid "Please select Apply Discount On"
msgstr "Odaberi Primijeni Popust na"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Odaberi Sastavnicu naspram Artikla {0}"
@@ -37657,7 +37717,7 @@ msgstr "Odaberi Bankovni Račun"
msgid "Please select Category first"
msgstr "Odaberi Kategoriju"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37687,7 +37747,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:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Odaberi Postojeću Tvrtku za izradu Kontnog Plana"
@@ -37696,8 +37756,8 @@ msgstr "Odaberi Postojeću Tvrtku 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:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Odaberi Kod Artikla"
@@ -37729,11 +37789,11 @@ msgstr "Odaberi Datum Knjiženja"
msgid "Please select Price List"
msgstr "Odaberi Cjenovnik"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Odaberi Količina naspram Artikla {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Odaberi Skladište za Zadržavanje Uzoraka u Postavkama Zaliha"
@@ -37749,7 +37809,7 @@ 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/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Odaberi Račun Nerealiziranog Rezultata ili postavi Standard Račun Nerealiziranog Rezultata za tvrtku {0}"
@@ -37766,7 +37826,7 @@ msgstr "Odaberi Tvrtku"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Odaberi Tvrtku."
@@ -37790,7 +37850,7 @@ msgstr "Odaberi Dobavljača"
msgid "Please select a Warehouse"
msgstr "Odaberi Skladište"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Odaberi Radni Nalog."
@@ -37863,11 +37923,15 @@ msgstr "Odaberi Vrijednost za {0} Ponuda za {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Odaberite kod artikla prije postavljanja skladišta."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr "Molimo odaberite 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."
msgstr "Molimo odaberite barem jedan filter: Šifra Artikla, Šarža ili Serijski Broj."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr "Molimo odaberite barem jedan artikal za ažuriranje dostavljene količine."
@@ -37887,7 +37951,7 @@ msgstr "Odaberi barem jedan raspored."
msgid "Please select atleast one item to continue"
msgstr "Odaberi jedan artikal za nastavak"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Odaberi barem jednu operaciju za izradu kartice posla"
@@ -37945,7 +38009,7 @@ msgstr "Odaberi Tvrtku"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Odaberi Tip Višeslojnog Programa za više od jednog pravila prikupljanja."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Prvo odaberi skladište"
@@ -37974,7 +38038,7 @@ msgstr "Odaberi važeći tip dokumenta."
msgid "Please select weekly off day"
msgstr "Odaberi sedmične neradne dane"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Odaberi {0}"
@@ -37983,11 +38047,11 @@ msgstr "Odaberi {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Postavi 'Primijeni Dodatni Popust Na'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Postavi 'Centar Troškova Amortizacije Imovine' u tvrtki {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Postavi 'Račun Rezultata Prilikom Odlaganja Imovine' u Tvrtki {0}"
@@ -37999,7 +38063,7 @@ msgstr "Postavi '{0}' u Tvrtki: {1}"
msgid "Please set Account"
msgstr "Postavi Račun"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Postavi Račun za Kusur"
@@ -38029,7 +38093,7 @@ msgstr "Postavi Tvrtku"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Postavi Adresu Klijenta kako biste utvrdili da li je transakcija izvoz."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Postavi račune koji se odnose na Amortizaciju u Kategoriji Imovine {0} ili Tvrtke {1}"
@@ -38047,7 +38111,7 @@ msgstr "Postavi Fiskalni Kod za Klijenta '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Postavi Fiskalni Kod za Javnu Upravu '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Postavi Račun Osnovne Imovine u Kategoriju Imovine {0}"
@@ -38093,7 +38157,7 @@ msgstr "Postavi Tvrtku"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Postavi Centar Troškova za Imovinu ili postavite Centar Troškova Amortizacije za tvrtku {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Postavi standard Listu Praznika za Tvrtku {0}"
@@ -38130,23 +38194,23 @@ msgstr "Postavi barem jedan red u Tabeli PDV-a i Naknada"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Postavi Porezni i Fiskalni Broj za {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Način Plaćanja {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Postavi Standard Gotovinski ili Bankovni Račun za Načine Plaćanja {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Postavi Standard Račun Rezultata u Tvrtki {}"
@@ -38175,7 +38239,7 @@ msgstr "Postavi Standard {0} u Tvrtki {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Postavi filter na osnovu Artikla ili Skladišta"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Postavi jedno od sljedećeg:"
@@ -38183,7 +38247,7 @@ msgstr "Postavi jedno od sljedećeg:"
msgid "Please set opening number of booked depreciations"
msgstr "Postavi početni broj knjižene amortizacije"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Postavi ponavljanje nakon spremanja"
@@ -38195,15 +38259,15 @@ msgstr "Postavi Adresu Klienta"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Postavi Standard Centar Troškova u {0} tvrtki."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Postavi Kod Artikla"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Postavi Ciljno Skladište na Radnoj Kartici"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Postavi Skladište Obade na Radnoj Kartici"
@@ -38242,7 +38306,7 @@ msgstr "Postavi {0} u Konstruktoru Sastavnice {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Postavi {0} u Tvrtku {1} kako biste knjižili rezultat tečaja"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
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}."
@@ -38264,7 +38328,7 @@ msgstr "Navedi Tvrtku"
msgid "Please specify Company to proceed"
msgstr "Navedi Tvrtku za nastavak"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Navedi važeći ID reda za red {0} u tabeli {1}"
@@ -38277,7 +38341,7 @@ msgstr "Navedi {0}."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Navedi barem jedan atribut u tabeli Atributa"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Navedi ili Količinu ili Stopu Vrednovanja ili oboje"
@@ -38382,8 +38446,8 @@ msgstr "Postavi Niz Rute"
msgid "Post Title Key"
msgstr "Postavi Naziv Ključa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Poštanski Troškovi"
@@ -38448,7 +38512,7 @@ msgstr "Objavljeno"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38466,7 +38530,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38588,10 +38652,6 @@ msgstr "Datum i vrijeme Knjiženja"
msgid "Posting Time"
msgstr "Vrijeme Knjiženja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Datum i vrijeme knjiženja su obavezni"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr "Datum knjiženja ne odgovara odabranoj transakciji"
@@ -38665,18 +38725,23 @@ msgstr "Pokreće {0}"
msgid "Pre Sales"
msgstr "Pretprodaja"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr "Upozorenje prije podnošenja"
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr "Upozorenje prije podnošenja: Kreditno Ograničenje"
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr "Upozorenje prije podnošenja: Pakirana Količina"
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr "Unaprijed popunjeni unosi plaćanja za ovog klijenta. Mora biti račun tvrtke."
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Prednost"
@@ -38849,6 +38914,7 @@ msgstr "Tabele Popusta Cijena"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38872,6 +38938,7 @@ msgstr "Tabele Popusta Cijena"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38923,7 +38990,7 @@ msgstr "Cijenovnik Zemlje"
msgid "Price List Currency"
msgstr "Valuta Cijenovnika"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Valuta Cijenovnika nije odabrana"
@@ -39278,7 +39345,7 @@ msgstr "Ispiši"
msgid "Print Receipt on Order Complete"
msgstr "Ispiši Račun pri dovršenju Naloga"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Ispiši Jedinicu nakon Količine"
@@ -39287,8 +39354,8 @@ msgstr "Ispiši Jedinicu nakon Količine"
msgid "Print Without Amount"
msgstr "Ispiši bez Iznosa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Štampa i Kancelarijski Materijal"
@@ -39296,7 +39363,7 @@ msgstr "Štampa i Kancelarijski Materijal"
msgid "Print settings updated in respective print format"
msgstr "Postavke Ispisivanja su ažurirane u odgovarajućem formatu ispisa"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Ispiši PDV sa nultim iznosom"
@@ -39399,10 +39466,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Procedura"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Postupci odbačeni"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39456,7 +39519,7 @@ msgstr "Procentualni Gubitka Procesa ne može biti veći od 100"
msgid "Process Loss Qty"
msgstr "Količinski Gubitak Procesa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Količinski Gubitak Procesa"
@@ -39537,6 +39600,10 @@ msgstr "Obradi Pretplatu"
msgid "Process in Single Transaction"
msgstr "Obrada u Jednoj Transakciji"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr "Količina gubitaka u procesu ne može biti negativna."
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39632,8 +39699,8 @@ msgstr "Proizvod"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39698,7 +39765,7 @@ msgstr "ID Cijene Proizvoda"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Proizvodnja"
@@ -39912,7 +39979,7 @@ msgstr "% napretka za zadatak ne može biti veći od 100."
msgid "Progress (%)"
msgstr "Napredak (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Poziv na Projektnu Saradnju"
@@ -39956,7 +40023,7 @@ msgstr "Status Projekta"
msgid "Project Summary"
msgstr "Sažetak Projekta"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Sažetak Projekta za {0}"
@@ -40087,7 +40154,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40233,7 +40300,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Prospekti Angažovani, ali ne i Preobraćeni"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Zaštićeni DocType"
@@ -40248,7 +40315,7 @@ msgstr "Navedi adresu e-pošte registriranu u tvrtki"
msgid "Providing"
msgstr "Odredbe"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Privremeni Račun"
@@ -40320,8 +40387,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40644,7 +40712,7 @@ msgstr "Nalog Nabave {0} je izrađen"
msgid "Purchase Order {0} is not submitted"
msgstr "Nalog Nabave {0} nije podnešen"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Nalozi Nabave"
@@ -40659,7 +40727,7 @@ msgstr "Broj Naloga Nabave"
msgid "Purchase Orders Items Overdue"
msgstr "Nalozi Nabave Kasne"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Nalozi Nabave nisu dozvoljeni za {0} zbog bodovne tablice {1}."
@@ -40674,7 +40742,7 @@ msgstr "Nalozi Nabave za Fakturisanje"
msgid "Purchase Orders to Receive"
msgstr "Nalozi Nabave za Primitak"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Nalozi Nabave {0} nisu povezani"
@@ -40808,7 +40876,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Predložak Nabavnog PDV-a"
@@ -40906,6 +40974,7 @@ msgstr "Nabava"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40915,10 +40984,6 @@ msgstr "Nabava"
msgid "Purpose"
msgstr "Namjena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Namjena mora biti jedna od {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40974,6 +41039,7 @@ msgstr "K4"
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41022,6 +41088,7 @@ msgstr "K4"
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41130,11 +41197,11 @@ msgstr "Količina po Jedinici"
msgid "Qty To Manufacture"
msgstr "Količina za Proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
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:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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čina za proizvodnju u radnom nalogu za operaciju {0}. Rješenje: Možete smanjiti količinu za proizvodnju u radnom nalogu ili postaviti 'Postotak prekomjerne proizvodnje za radni nalog' u {1}."
@@ -41185,8 +41252,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:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Količina za {0}"
@@ -41241,8 +41308,8 @@ msgstr "Količina za Demontažu"
msgid "Qty to Fetch"
msgstr "Količina za Preuzeti"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Količina za Proizvodnju"
@@ -41478,17 +41545,17 @@ msgstr "Šablon Inspekciju Kvaliteta"
msgid "Quality Inspection Template Name"
msgstr "Naziv Šablona Kontrole Kvaliteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Kontrola kvaliteta je obavezna za artikal {0} prije dovršetka radne kartice {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Kontrola kvalitete {0} nije podnesena za artikal: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Kontrola kvalitete {0} je odbijena za artikal: {1}"
@@ -41502,7 +41569,7 @@ msgstr "Kontrola Kvaliteta"
msgid "Quality Inspections"
msgstr "Kontrola Kvalitete"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Upravljanje Kvalitetom"
@@ -41634,7 +41701,7 @@ msgstr "Količine su uspješno ažurirane."
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41769,7 +41836,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:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Količina ne smije biti veća od {0}"
@@ -41779,21 +41846,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Obavezna Količina za Artikal {0} u redu {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Količina bi trebala biti veća od 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Količina za Proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Količina za Proizvodnju mora biti veća od 0."
@@ -41816,7 +41883,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Četvrtina {0} {1}"
@@ -41935,11 +42002,11 @@ msgstr "Ponuda Za"
msgid "Quotation Trends"
msgstr "Trendovi Ponuda"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Ponuda {0} je otkazana"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Ponuda {0} nije tipa {1}"
@@ -42246,7 +42313,7 @@ msgstr "Stopa po kojoj se Valuta Dobavljača pretvara u osnovnu valutu tvrtke"
msgid "Rate at which this tax is applied"
msgstr "PDV Stopa"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Cijena artikala '{}' ne može se promijeniti"
@@ -42412,7 +42479,7 @@ msgstr "Potrošene Sirovine"
msgid "Raw Materials Consumption"
msgstr "Potrošnja Sirovina"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Nedostaju Sirovine"
@@ -42451,12 +42518,6 @@ msgstr "Polje za Sirovine ne može biti prazno."
msgid "Raw Materials to Customer"
msgstr "Sirovine za Klijenta"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Sirovi SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42465,7 +42526,7 @@ msgstr "Količina potrošenih sirovina bit će validirana na temelju potrebne ko
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42646,7 +42707,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:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43107,7 +43168,7 @@ msgstr "Referenca #"
msgid "Reference #{0} dated {1}"
msgstr "Referenca #{0} datirana {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Referentni Datum za popust pri ranijem plaćanju"
@@ -43271,11 +43332,11 @@ msgstr "Referenca: {0}, Artikal Kod: {1} i Klijent: {2}"
msgid "References"
msgstr "Reference"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Reference na Prodajne Fakture su Nepotpune"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Reference na Prodajne Naloge su Nepotpune"
@@ -43437,7 +43498,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Preostalo Stanje"
@@ -43495,7 +43556,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43559,7 +43620,7 @@ msgstr "Preimenuj Vrijednost Atributa u Atributu Artikla."
msgid "Rename Log"
msgstr "Preimenuj Zapisnik"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Preimenovanje Nije Dozvoljeno"
@@ -43576,7 +43637,7 @@ msgstr "Poslovi preimenovanja za {0} su stavljeni u red čekanja."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Poslovi preimenovanja za tip dokumenta {0} nisu stavljeni u red čekanja."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Preimenovanje je dozvoljeno samo preko nadređene tvrtke {0}, kako bi se izbjegla neusklađenost."
@@ -43700,7 +43761,7 @@ msgstr "Predložak Izvješća"
msgid "Report Type is mandatory"
msgstr "Tip Izvještaja je obavezan"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Prijavi Slučaj"
@@ -43945,7 +44006,7 @@ msgstr "Zahtjev za Informacijama"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44126,7 +44187,7 @@ msgstr "Zahteva Ispunjenje"
msgid "Research"
msgstr "Istraživanja"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Istraživanje & Razvoj"
@@ -44171,7 +44232,7 @@ msgstr "Rezervacija"
msgid "Reservation Based On"
msgstr "Rezervacija Na Osnovu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44215,7 +44276,7 @@ msgstr "Rezerviši za Podsklop"
msgid "Reserved"
msgstr "Rezervisano"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Konflikt Rezervirane Šarže"
@@ -44285,14 +44346,14 @@ msgstr "Rezervisana Količina"
msgid "Reserved Quantity for Production"
msgstr "Rezervisana Količina za Proizvodnju"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44301,13 +44362,13 @@ msgstr "Rezervisani Serijski Broj"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Rezervisane Zalihe za Šaržu"
@@ -44573,7 +44634,7 @@ msgstr "Polje Naziva Rezultata"
msgid "Resume"
msgstr "Nastavi"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Nastavi Posao"
@@ -44598,8 +44659,8 @@ msgstr "Maloprodaja"
msgid "Retain Sample"
msgstr "Zadrži Uzorak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Zadržana Dobit"
@@ -44674,7 +44735,7 @@ msgstr "Povrat naspram Nabavnog Računa"
msgid "Return Against Subcontracting Receipt"
msgstr "Povrat naspram Podizvođačkog Računa "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Povrat Komponenti"
@@ -44710,7 +44771,7 @@ msgstr "Povratna Količina iz Odbijenog Skladišta"
msgid "Return Raw Material to Customer"
msgstr "Vrati Sirovinu Klijentu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Povratna faktura za otkazanu imovinu"
@@ -44808,8 +44869,8 @@ msgstr "Povrati"
msgid "Revaluation Journals"
msgstr "Revaloracijski Žurnali"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Revalorizacioni Višak"
@@ -45041,7 +45102,7 @@ msgstr "Kontna Klasa za {0} mora biti jedna od imovine, obaveza, prihoda, rashod
msgid "Root Type is mandatory"
msgstr "Root Tip je obavezan"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root se ne može uređivati."
@@ -45060,8 +45121,8 @@ msgstr "Zaoktuži Besplatnu Kolićinu"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45241,21 +45302,21 @@ msgstr "Red # {0}: Cijena ne može biti veća od cijene korištene u {1} {2}"
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:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Red #1: ID Sekvence mora biti 1 za Operaciju {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Red #{0} (Tabela Plaćanja): Iznos mora da je negativan"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
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:582
+#: erpnext/stock/doctype/item/item.py:581
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}."
@@ -45276,7 +45337,7 @@ msgstr "Red #{0}: Prihvaćeno Skladište i Odbijeno Skladište ne mogu biti isto
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Red #{0}: Prihvaćeno Skladište je obavezno za Prihvaćeni Artikal {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Red #{0}: Račun {1} ne pripada tvrtki {2}"
@@ -45337,31 +45398,31 @@ msgstr "Red #{0}: Ne može se otkazati ovaj Unos Zaliha jer vraćena količina n
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."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koja je već fakturisana."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koji je već dostavljen"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} koji je već preuzet"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Red #{0}: Ne mogu izbrisati artikal {1} kojem je dodijeljen radni nalog."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Red #{0}: Ne može se izbrisati artikal {1} koja je već u ovom Prodajnom Nalogu."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Redak #{0}: Ne može se postaviti cijena ako je fakturirani iznos veći od iznosa za stavku {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Red #{0}: Ne može se prenijeti više od potrebne količine {1} za artikal {2} naspram Radne Kartice {3}"
@@ -45411,11 +45472,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
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:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} ne postoji u tabeli Obaveznih Artikala povezanih s Interim Podizvođačkim Nalogom."
@@ -45423,7 +45484,7 @@ msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} ne postoji u tabeli Obaveznih
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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Red #{0}: Klijent Dostavljeni Artikal {1} nema dovoljnu količinu u Internom Podizvođačkom Nalogu. Dostupna količina je {2}."
@@ -45440,7 +45501,7 @@ msgstr "Red #{0}: Klijent Dostavljen Artikal {1} nije u Radnom Nalogu {2}"
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Red #{0}: Datumi se preklapaju s drugim redom u grupi {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Red #{0}: Standard Sastavnica nije pronađena za gotov proizvod artikla {1}"
@@ -45464,22 +45525,22 @@ msgstr "Red #{0}: Račun Troškova nije postavljen za artikal {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Red #{0}: Račun troškova {1} nije važeći za Fakturu Nabave {2}. Dopušteni su samo računi troškova za artikle koji nisu na zalihama."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Red #{0}: Količina gotovog proizvoda artikla ne može biti nula"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Red #{0}: Gotov Proizvod artikla nije navedena zaservisni artikal {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Red #{0}: Gotov Proizvod Artikla {1} mora biti podugovorni artikal"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Red #{0}: Gotov Proizvod mora biti {1}"
@@ -45508,7 +45569,7 @@ msgstr "Redak #{0}: Učestalost amortizacije mora biti veća od nule"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Red #{0}: Od datuma ne može biti prije Do datuma"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Red #{0}: Polja Od i Do su obavezna"
@@ -45516,7 +45577,7 @@ msgstr "Red #{0}: Polja Od i Do su obavezna"
msgid "Row #{0}: Item added"
msgstr "Red #{0}: Artikel je dodan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Red #{0}: Artikal {1} se ne može prenijeti više od {2} u odnosu na {3} {4}"
@@ -45544,7 +45605,7 @@ msgstr "Red #{0}: Artikal {1} u skladištu {2}: Dostupno {3}, Potrebno {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Red #{0}: Artikal {1} nije Klijent Dostavljen Artikal."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Red #{0}: Artikal {1} nije Serijalizirani/Šaržirani Artikal. Ne može imati Serijski Broj / Broj Šarže naspram sebe."
@@ -45585,7 +45646,7 @@ msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma raspol
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Red #{0}: Sljedeći datum amortizacije ne može biti prije datuma nabave"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Red #{0}: Nije dozvoljeno mijenjati dobavljača jer Nalog Nabave već postoji"
@@ -45597,10 +45658,6 @@ msgstr "Red #{0}: Samo {1} je dostupno za rezervisanje za artikal {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja ili jednaka {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Red #{0}: Operacija {1} nije završena za {2} količinu gotovog proizvoda u Radnom Nalogu {3}. Ažuriraj status rada putem Radne Kartice {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45622,11 +45679,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:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Red #{0}: Postavite količinu za ponovnu narudžbu"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Red #{0}: Ažuriraj račun odloženih prihoda/troškova u redu artikla ili sttandard račun u postavkama tvrtke"
@@ -45648,15 +45705,15 @@ msgstr "Red #{0}: Količina mora biti pozitivan broj"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Red #{0}: Količina bi trebala biti manja ili jednaka Dostupnoj Količini za Rezervaciju (stvarna količina - rezervisana količina) {1} za artikal {2} naspram Šarže {3} u Skladištu {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Red #{0}: Kontrola Kvaliteta je obavezna za artikal {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Red #{0}: Kontrola kKvaliteta {1} nije dostavljena za artikal: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Red #{0}: Kontrola Kvaliteta {1} je odbijena za artikal {2}"
@@ -45664,7 +45721,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 "Redak #{0}: Količina ne može biti negativan broj. Povećaj količinu ili ukloni artikal {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za artikal {1} ne može biti nula."
@@ -45680,18 +45737,18 @@ msgstr "Red #{0}: Količina treba biti veća od 0 za {1} Artikal {2}"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Red #{0}: Količina koju treba rezervisati za artikal {1} treba biti veća od 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Red #{0}: Cijena mora biti ista kao {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Nalog Nabave, Faktura Nabave ili Nalog Knjiženja"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Red #{0}: Tip referentnog dokumenta mora biti jedan od Prodajni Nalog, Prodajna Faktura, Nalog Knjiženja ili Opomena"
@@ -45733,7 +45790,7 @@ msgstr "Red #{0}: Prodajna cijena za artikal {1} je niža od njegove {2}.\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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
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}."
@@ -45753,19 +45810,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
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:639
+#: erpnext/controllers/accounts_controller.py:640
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:633
+#: erpnext/controllers/accounts_controller.py:634
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"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Red #{0}: Postavi Dobavljača za artikal {1}"
@@ -45777,19 +45834,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
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:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Redak #{0}: Izvorno i ciljno skladište ne mogu biti isti za prijenos materijala"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Redak #{0}: Izvorne, Ciljne i Dimenzije zaliha ne mogu biti potpuno iste za prijenos materijala"
@@ -45805,6 +45862,10 @@ 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:485
+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"
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Red #{0}: Zaliha se ne može rezervisati za artikal {1} naspram onemogućene Šarže {2}."
@@ -45821,7 +45882,7 @@ msgstr "Red #{0}: Zalihe se ne mogu rezervisati u grupnom skladištu {1}."
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:598
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}."
@@ -45834,7 +45895,7 @@ msgstr "Red #{0}: Zaliha nije dostupna za rezervisanje za artikal {1} naspram Š
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:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
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}"
@@ -45846,7 +45907,7 @@ msgstr "Red #{0}: Ciljano skladište mora biti isto kao i skladište klijenta {1
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Red #{0}: Šarža {1} je već istekla."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
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}"
@@ -45882,7 +45943,7 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju zaliha '{1}' u usaglašavanju z
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Red #{0}: Odaberi Imovinu za Artikal {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Red #{0}: {1} ne može biti negativan za artikal {2}"
@@ -45898,7 +45959,7 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje Početne Fakture {2}"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Red #{0}: {1} od {2} bi trebao biti {3}. Ažuriraj {1} ili odaberi drugi račun."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za artikal {1} ne može biti nula."
@@ -45999,7 +46060,7 @@ msgstr "Red #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Red #{}: {} {} ne postoji."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Red #{}: {} {} ne pripada tvrtki {}. Odaberi važeći {}."
@@ -46007,7 +46068,7 @@ msgstr "Red #{}: {} {} ne pripada tvrtki {}. Odaberi važeći {}."
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Red br {0}: Skladište je obezno. Postavite standard skladište za artikal {1} i tvrtku {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}"
@@ -46015,7 +46076,7 @@ msgstr "Red {0} : Operacija je obavezna naspram artikla sirovine {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Red {0} odabrana količina je manja od potrebne količine, potrebno je dodatno {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Red {0}# Artikal {1} nije pronađen u tabeli 'Isporučene Sirovine' u {2} {3}"
@@ -46047,11 +46108,11 @@ msgstr "Red {0}: Dodijeljeni iznos {1} mora biti manji ili jednak nepodmirenom i
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Red {0}: Sastavnica nije pronađena za Artikal {1}"
@@ -46069,7 +46130,7 @@ msgstr "Red {0}: Potrošena količina {1} {2} mora biti manja ili jednaka Raspol
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Red {0}: Faktor konverzije je obavezan"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Red {0}: Centar Troškova {1} ne pripada tvrtki {2}"
@@ -46089,7 +46150,7 @@ msgstr "Red {0}: Valuta Sastavnice #{1} bi trebala biti jednaka odabranoj valuti
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Red {0}: Unos debita ne može se povezati sa {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Red {0}: Skladište za Dostavu ({1}) i Skladište za Klijente ({2}) ne mogu biti isto"
@@ -46097,7 +46158,7 @@ msgstr "Red {0}: Skladište za Dostavu ({1}) i Skladište za Klijente ({2}) ne m
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Red {0}: Skladište isporuke ne može biti isto kao skladište klijenta za artikal {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Red {0}: Datum roka plaćanja u tabeli Uslovi Plaćanja ne može biti prije datuma knjiženja"
@@ -46142,16 +46203,16 @@ msgstr "Red {0}: Za Dobavljača {1}, adresa e-pošte je obavezna za slanje e-po
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Red {0}: Od vremena i do vremena je obavezano."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Red {0}: Od vremena i do vremena {1} se preklapa sa {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Iz skladišta je obavezano za interne prijenose"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Red {0}: Od vremena mora biti prije do vremena"
@@ -46167,7 +46228,7 @@ msgstr "Red {0}: Nevažeća referenca {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Red {0}: Šablon PDV-a za Artikal ažuriran je prema valjanosti i primijenjenoj cijeni"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
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"
@@ -46191,7 +46252,7 @@ msgstr "Red {0}: Količina Artikla {1} ne može biti veća od raspoložive koli
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Redak {0}: Vrijeme operacije treba biti veće od 0 za operaciju {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Red {0}: Pakovana Količina mora biti jednaka {1} Količini."
@@ -46259,7 +46320,7 @@ msgstr "Red {0}: Nabavna Faktura {1} nema utjecaja na zalihe."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Red {0}: Količina ne može biti veća od {1} za artikal {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Red {0}: Količina u Jedinici Zaliha ne može biti nula."
@@ -46271,10 +46332,6 @@ msgstr "Red {0}: Količina mora biti veća od 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Red {0}: Količina ne može biti negativna."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Red {0}: Količina nije dostupna za {4} u skladištu {1} u vrijeme knjiženja unosa ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}"
@@ -46283,11 +46340,11 @@ msgstr "Red {0}: Prodajna Faktura {1} je već kreirana za {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Red {0}: Smjena se ne može promijeniti jer je amortizacija već obrađena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Red {0}: Podugovorni Artikal je obavezan za sirovinu {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Ciljno Skladište je obavezno za interne transfere"
@@ -46299,11 +46356,11 @@ msgstr "Red {0}: Zadatak {1} ne pripada Projektu {2}"
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Red {0}: Artikal {1}, količina mora biti pozitivan broj"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Red {0}: {3} Račun {1} ne pripada tvrtki {2}"
@@ -46311,11 +46368,11 @@ msgstr "Red {0}: {3} Račun {1} ne pripada tvrtki {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Red {0}: Za postavljanje {1} periodičnosti, razlika između od i do datuma mora biti veća ili jednaka {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Redak {0}: Prenesena količina ne može biti veća od tražene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Red {0}: Jedinični Faktor Konverzije je obavezan"
@@ -46328,11 +46385,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Redak {0}: Skladište {1} povezano je s tvrtkom {2}. Molimo odaberite skladište koje pripada tvrtki {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
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}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
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}"
@@ -46344,7 +46401,7 @@ msgstr "Red {0}: {1} račun je već primijenjen za Knjigovodstvenu Dimenziju {2}
msgid "Row {0}: {1} must be greater than 0"
msgstr "Red {0}: {1} mora biti veći od 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun Stranke) {4}"
@@ -46390,7 +46447,7 @@ msgstr "Redovi uklonjeni u {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Redovi sa unosom istog računa će se spojiti u Registru"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Pronađeni su redovi sa dupliranim rokovima u drugim redovima: {0}"
@@ -46398,7 +46455,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:283
+#: erpnext/controllers/accounts_controller.py:284
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."
@@ -46605,8 +46662,8 @@ msgstr "Sigurnosna Zaliha"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46628,8 +46685,8 @@ msgstr "Način Plate"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46643,18 +46700,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Prodaja"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr "Prodaja & Nabava"
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Prodajni Račun"
@@ -46678,8 +46740,8 @@ msgstr "Prodajni Doprinosi i Poticaji"
msgid "Sales Defaults"
msgstr "Standard Postavke Prodaje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Troškovi Prodaje"
@@ -46848,11 +46910,11 @@ msgstr "Prodajna Faktura nije izrađena od {}"
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."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Prodajna Faktura {0} je već podnešena"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Prodajna Faktura {0} mora se izbrisati prije otkazivanja ovog Prodajnog Naloga"
@@ -47050,25 +47112,25 @@ msgstr "Trendovi Prodajnih Naloga"
msgid "Sales Order required for Item {0}"
msgstr "Prodajni Nalog je obavezan za Artikal {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
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}"
+msgstr "Prodajni Nalog {0} već postoji naspram Nabavnog Naloga Klijenta {1}. Da dopusti višestruke Prodajne Naloge, omogući {2} u {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
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:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Prodajni Nalog {0} nije podnešen"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Prodajni Nalog {0} ne važi"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Prodajni Nalog {0} je {1}"
@@ -47112,6 +47174,7 @@ msgstr "Prodajni Nalozi za Dostavu"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47124,7 +47187,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47230,7 +47293,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47323,7 +47386,7 @@ msgstr "Registar Prodaje"
msgid "Sales Representative"
msgstr "Predstavnik Prodaje"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Prodajni Povrat"
@@ -47347,7 +47410,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Šablon Prodajnog PDV-a"
@@ -47466,7 +47529,7 @@ msgstr "Isti Artikal"
msgid "Same day"
msgstr "Isti dan"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Ista kombinacija artikla i skladišta je već unesena."
@@ -47498,12 +47561,12 @@ msgstr "Skladište Zadržavanja Uzoraka"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Veličina Uzorka"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Količina uzorka {0} ne može biti veća od primljene količine {1}"
@@ -47747,7 +47810,7 @@ msgstr "Rashodovana Imovina"
msgid "Scrap Warehouse"
msgstr "Otpadno Skladište"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Datum Rashodovanja ne može biti prije Datuma Nabave"
@@ -47866,8 +47929,8 @@ msgstr "Sekundarna Uloga"
msgid "Secretary"
msgstr "Sekretar(ica)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Osigurani Krediti"
@@ -47905,7 +47968,7 @@ msgstr "Odaberi Alternativni Artikal"
msgid "Select Alternative Items for Sales Order"
msgstr "Odaberite Alternativni Artikal za Prodajni Nalog"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Odaberite Vrijednosti Atributa"
@@ -47947,7 +48010,7 @@ msgstr "Odaberi Tvrtku"
msgid "Select Company Address"
msgstr "Odaberite Adresu Tvrtke"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Odaberi Popravnu Operaciju"
@@ -47983,7 +48046,7 @@ msgstr "Odaberi Dimenziju"
msgid "Select Dispatch Address "
msgstr "Odaberi Otpremnu Adresu "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Navedi Personal"
@@ -48008,7 +48071,7 @@ msgstr "Odaberi Artikle"
msgid "Select Items based on Delivery Date"
msgstr "OdaberiArtikal na osnovu Datuma Dostave"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Odaberi Artikle za Inspekciju Kvaliteta"
@@ -48046,7 +48109,7 @@ msgstr "Odaberi Raspored Plaćanja"
msgid "Select Possible Supplier"
msgstr "Odaberi Mogućeg Dobavljača"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Odaberi Količinu"
@@ -48121,7 +48184,7 @@ msgstr "Odaberi Standard Prioritet."
msgid "Select a Payment Method."
msgstr "Odaberi način plaćanja."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Odaberi Dobavljača"
@@ -48144,7 +48207,7 @@ msgstr "Odaberite transakciju za usklađivanje i usklađivanje s vaučerima"
msgid "Select all"
msgstr "Odaberi sve"
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Odaberi Grupu Artikla."
@@ -48160,9 +48223,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:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Odaberi najmanje jednu vrijednost iz svakog od atributa."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr "Odaberite barem jednu vrijednost atributa."
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48178,7 +48241,7 @@ msgstr "Odaberi Naziv Tvrtke."
msgid "Select date"
msgstr "Odaberite datum"
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Odaberi Finansijski Registar za artikal {0} u redu {1}"
@@ -48210,7 +48273,7 @@ msgstr "Odaberi Bankovni Račun za usaglašavanje."
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."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Odaberi Artikal za Proizvodnju."
@@ -48227,7 +48290,7 @@ msgstr "Odaberi Skladište"
msgid "Select the customer or supplier."
msgstr "Odaberite Klijenta ili Dobavljača."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Odaberi datum"
@@ -48235,6 +48298,12 @@ msgstr "Odaberi datum"
msgid "Select the date and your timezone"
msgstr "Odaberi Datum i Vremensku Zonu"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr "Prvo odaberite grupu kako biste filtrirali primjenjive kategorije obustave u nastavku."
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Odaberite Sirovine (Artikle) obavezne za proizvodnju artikla"
@@ -48263,7 +48332,7 @@ msgstr "Odaberi, kako bi mogao pretraživati klijenta pomoću ovih polja"
msgid "Selected POS Opening Entry should be open."
msgstr "Odabrani Početni Unos Kase bi trebao biti otvoren."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Odabrani Cijenik treba da ima označena polja za Nabavu i Prodaju."
@@ -48294,30 +48363,30 @@ msgstr "Odabrani dokument mora biti u podnešenom stanju"
msgid "Self delivery"
msgstr "Samostalna Dostava"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Prodaja"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Prodaj Imovinu"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Prodajna Količina"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Prodajna Količina ne može premašiti količinu imovine"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
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:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Prodajna Količina mora biti veća od nule"
@@ -48570,7 +48639,7 @@ msgstr "Serijski / Šaržni Broj"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48590,7 +48659,7 @@ msgstr "Serijski / Šaržni Broj"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48635,7 +48704,7 @@ msgstr "Serijski Broj Raspon"
msgid "Serial No Reserved"
msgstr "Rezervisan Serijski Broj"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Preklapa se Serijski broj Šarže"
@@ -48775,7 +48844,7 @@ msgstr "Serijski Brojevi / Šarže"
msgid "Serial Nos are created successfully"
msgstr "Serijski Brojevi su uspješno kreirani"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
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."
@@ -48845,7 +48914,7 @@ msgstr "Serijski i Šarža"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49259,7 +49328,7 @@ msgstr "Postavi Predujam i Dodijeli (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Postavi osnovnu cijenu ručno"
@@ -49278,8 +49347,8 @@ msgstr "Postavi Dostavno Skladište"
msgid "Set Dropship Items Delivered Quantity"
msgstr "Postavi dostavljenu količinu Dropship artikala"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Postavi Količinu Gotovog Proizvoda"
@@ -49446,11 +49515,11 @@ msgstr "Postavljeno prema Šablonu PDV-a za Artikal"
msgid "Set closing balance as per bank statement"
msgstr "Postavite završno stanje prema bankovnom izvodu"
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Postavi Standard Račun Zaliha za Stalno Upravljanje Zalihama"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Postavi Standard Račun {0} za artikle koji nisu na zalihama"
@@ -49482,7 +49551,7 @@ 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:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
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)"
@@ -49593,7 +49662,7 @@ msgid "Setting up company"
msgstr "Postavljanje Tvrtke"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Postavka {0} je obavezna"
@@ -49613,6 +49682,10 @@ msgstr "Postavke Prodajnog Modula"
msgid "Settled"
msgstr "Usaglašeno"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr "Usaglašeno Kreditnom Notom"
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49805,7 +49878,7 @@ msgstr "Tip Pošiljke"
msgid "Shipment details"
msgstr "Detalji Pošiljke"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Pošiljke"
@@ -49843,7 +49916,7 @@ msgstr "Naziv Adrese Pošiljke"
msgid "Shipping Address Template"
msgstr "Šablon Adrese Pošiljke"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Adresa Dostave ne pripada {0}"
@@ -49986,8 +50059,8 @@ msgstr "Kratka biografija za web stranicu i druge publikacije."
msgid "Short-term Investments"
msgstr "Kratkoročna Ulaganja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kratkoročne Rezerve"
@@ -50321,7 +50394,7 @@ msgstr "Istovremeno"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Budući da u ovoj kategoriji postoji aktivna imovina koja se amortizira, potrebni su sljedeći računi. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Budući da postoji gubitak u procesu od {0} jedinica za gotov proizvod {1}, trebali biste smanjiti količinu za {0} jedinica za gotov proizvod {1} u Tabeli Artikala."
@@ -50366,7 +50439,7 @@ msgstr "Preskoči Dostavnicu"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50408,8 +50481,8 @@ msgstr "Konstanta Zaglađivanja"
msgid "Soap & Detergent"
msgstr "Sapun i Deterdžent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Softver"
@@ -50433,7 +50506,7 @@ msgstr "Prodato od"
msgid "Solvency Ratios"
msgstr "Omjer Solventnosti"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
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 tvrtki. Nemate dopuštenje za njihovo ažuriranje. Obratite se upravitelju sustava."
@@ -50497,7 +50570,7 @@ msgstr "Naziv Izvornog Polja"
msgid "Source Location"
msgstr "Izvorna Lokacija"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "Izvor Unosa Proizvodnje"
@@ -50506,11 +50579,11 @@ msgstr "Izvor Unosa Proizvodnje"
msgid "Source Stock Entry (Manufacture)"
msgstr "Izvor Unosa Zaliha (Proizvodnja)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "Izvor Unos Zaliha {0} pripada radnom nalogu {1}, a ne {2}. Koristi unos proizvodnje iz istog radnog naloga."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "Izvor Unosa Zaliha {0} nema količinu gotovih proizvoda"
@@ -50568,7 +50641,12 @@ msgstr "Veza Adrese Izvornog Skladišta"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Izvorno Skladište je obavezno za Artikal {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+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:305
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."
@@ -50576,24 +50654,23 @@ msgstr "Izvorno skladište {0} mora biti isto kao i skladište klijenta {1} u Po
msgid "Source and Target Location cannot be same"
msgstr "Izvorna i Ciljna lokacija ne mogu biti iste"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Izvorno i ciljno skladište ne mogu biti isto za red {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Izvorno i ciljno skladište moraju se razlikovati"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Izvor Sredstava (Obaveze)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Izvorno skladište je obavezno za red {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr "Izvorno ili Ciljano Skladište je obavezno za artikal {0}"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr "Izvorno Skladište je obavezno za artikal na zalihi {0}"
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50634,7 +50711,7 @@ msgstr "Potrošnja za račun {0} ({1}) između {2} i {3} već je premašila novi
msgid "Spent"
msgstr "Potrošeno"
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50642,7 +50719,7 @@ msgid "Split"
msgstr "Razdjeli"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Podjeljena Imovina"
@@ -50666,7 +50743,7 @@ msgstr "Podjeli od"
msgid "Split Issue"
msgstr "Razdjeli Slučaj"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Podjeljena Količina"
@@ -50678,6 +50755,11 @@ msgstr "Količina podijeljene imovine mora biti manja od količine imovine"
msgid "Split across {} accounts"
msgstr "Raspodijeli na {} račune"
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr "Raspodijeli proviziju među više prodavača."
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Podjela {0} {1} na {2} redove prema Uslovima Plaćanja"
@@ -50750,13 +50832,13 @@ msgstr "Standard Nabava"
msgid "Standard Description"
msgstr "Standard Opis"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
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:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standard Prodaja"
@@ -50777,8 +50859,8 @@ msgstr "Standard Šablon"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standard Uslovi i Odredbe koji se mogu navesti u Prodaju i Nabavu. Primjeri: Valjanost Ponude, Uslovi Plaćanja, Sigurnost i Korištenje itd."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Standardno ocijenjeno zalihe u {0}"
@@ -50813,7 +50895,7 @@ msgstr "Datum početka ne može biti prije tekućeg datuma"
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:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Počni Rad"
@@ -50942,7 +51024,7 @@ msgstr "Prikaz Statusa"
msgid "Status and Reference"
msgstr "Status i Referenca"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status mora biti Poništen ili Dovršen"
@@ -50972,6 +51054,7 @@ msgstr "Zakonske informacije i druge opšte informacije o vašem Dobavljaču"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50980,8 +51063,8 @@ msgstr "Zalihe"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51081,6 +51164,16 @@ msgstr "Unos Zaključanih Zaliha {0} je stavljen na čekanje za obradu, sustavu
msgid "Stock Closing Log"
msgstr "Zapisnik Zaključavanja Zaliha"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr "Zalihe Isporučene ali nisu Fakturisane"
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51090,10 +51183,6 @@ msgstr "Zapisnik Zaključavanja Zaliha"
msgid "Stock Details"
msgstr "Detalji Zaliha"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Unosi Zaliha su već kreirani za Radni Nalog {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51157,7 +51246,7 @@ msgstr "Unos Zaliha je već kreiran naspram ove Liste Odabira"
msgid "Stock Entry {0} created"
msgstr "Unos Zaliha {0} je kreiran"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Unos Zaliha {0} je kreiran"
@@ -51165,8 +51254,8 @@ msgstr "Unos Zaliha {0} je kreiran"
msgid "Stock Entry {0} is not submitted"
msgstr "Unos Zaliha {0} nije podnešen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Troškovi Zaliha"
@@ -51244,8 +51333,8 @@ msgstr "Količina Zaliha"
msgid "Stock Levels HTML"
msgstr "HTML Razine Zaliha"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Obaveze Zaliha"
@@ -51348,8 +51437,8 @@ msgstr "Količina Zaliha u odnosu na Serijski Broj"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51361,7 +51450,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51373,7 +51462,7 @@ msgstr "Popis Zaliha"
msgid "Stock Reconciliation Item"
msgstr "Artikal Popisa Zaliha"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Popisi Zaliha"
@@ -51398,9 +51487,9 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51411,7 +51500,7 @@ msgstr "Postavke Ponovnog Knjiženja Zaliha"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51436,10 +51525,10 @@ msgstr "Rezervacija Zaliha"
msgid "Stock Reservation Entries Cancelled"
msgstr "Otkazani Unosi Rezervacije Zaliha"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Kreirani Unosi Rezervacija Zaliha"
@@ -51467,7 +51556,7 @@ msgstr "Unos Rezervacije Zaliha ne može se ažurirati pošto je već dostavljen
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."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr " Neusklađeno Skladišta Rezervacije Zaliha"
@@ -51507,7 +51596,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51622,7 +51711,7 @@ msgstr "Postavke Transakcija Zaliha"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51755,11 +51844,11 @@ msgstr "Zalihe se ne mogu rezervisati u grupnom skladištu {0}."
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:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
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:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
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."
@@ -51814,14 +51903,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Razlog Zastoja"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
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:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Prodavnice"
@@ -51879,7 +51968,7 @@ msgstr "Skladište Podsklopa"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52141,7 +52230,7 @@ msgstr "Servisni Artikal Podizvođačkog Naloga"
msgid "Subcontracting Order Supplied Item"
msgstr "Dostavljeni Artikal Podizvođačkog Naloga"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Podizvođački Nalog {0} je kreiran."
@@ -52230,7 +52319,7 @@ msgstr "Postavljanje Podugovaranja"
msgid "Subdivision"
msgstr "Pododjeljenje"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Radnja Podnošenja Neuspješna"
@@ -52251,7 +52340,7 @@ msgstr "Podnesi Generirane Fakture"
msgid "Submit Journal Entries"
msgstr "Podnesi Naloge Knjiženja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Podnesi ovaj Radni Nalog za dalju obradu."
@@ -52405,7 +52494,7 @@ msgstr "Uspješno Usaglašeno"
msgid "Successfully Set Supplier"
msgstr "Uspješno Postavljen Dobavljač"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Uspješno promijenjena Jedinica Zaliha, redefinirajte faktore konverzije za novu Jedinicu."
@@ -52429,7 +52518,7 @@ msgstr "Uspješno uveženo {0} zapisa."
msgid "Successfully linked to Customer"
msgstr "Uspješno povezan s Klijentom"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Uspješno povezan s Dobavljačem"
@@ -52589,7 +52678,7 @@ msgstr "Dostavljena Količina"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52687,6 +52776,7 @@ msgstr "Detalji Dobavljača"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52696,7 +52786,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52711,6 +52801,7 @@ msgstr "Detalji Dobavljača"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52795,7 +52886,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52830,8 +52921,6 @@ msgid "Supplier Number At Customer"
msgstr "Broj Dobavljača kod Klijenta"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Brojevi Dobavljača"
@@ -52883,7 +52972,7 @@ msgstr "Primarni Kontakt Dobavljača"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52912,7 +53001,7 @@ msgstr "Poređenje Ponuda Dobavljača"
msgid "Supplier Quotation Item"
msgstr "Artikal Ponude Dobavljača"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Ponuda Dobavljača {0} Kreirana"
@@ -53001,7 +53090,7 @@ msgstr "Tip Dobavljača"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Skladište Dobavljača"
@@ -53018,17 +53107,12 @@ msgstr "Dobavljač isporučuje Klijentu"
msgid "Supplier is required for all selected Items"
msgstr "Dobavljač je obavezan za sve odabrane artikle"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Brojevi dobavljača koje dodjeljuje klijent"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Dobavljač Proizvoda ili Usluga."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Dobavljač {0} nije pronađen u {1}"
@@ -53041,8 +53125,8 @@ msgstr "Dobavljač(i)"
msgid "Suppliers"
msgstr "Dobavljači"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Zalihe podliježu odredbi o povratnoj naplati"
@@ -53133,7 +53217,7 @@ msgstr "Sinhronizacija Pokrenuta"
msgid "Synchronize all accounts every hour"
msgstr "Sinhronizuj sve račune svakih sat vremena"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Sustav u Upotrebi"
@@ -53164,7 +53248,7 @@ msgstr "Sustav će izvršiti implicitnu konverziju koristeći fiksni tečaj AED-
msgid "System will fetch all the entries if limit value is zero."
msgstr "Sustav će preuzeti sve unose ako je granična vrijednost nula."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Sustav neće provjeravati prekomjerno fakturisanje jer je iznos za Artikal {0} u {1} nula"
@@ -53185,10 +53269,16 @@ msgstr "Pregled izračuna poreza po odbitku (TDS)."
msgid "TDS Deducted"
msgstr "Odbijen porez po odbitku (TDS)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Dospjeli porez po odbitku (TDS)."
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr "TDS/TCS se obračunava po stopi navedenoj ovdje na svakoj uplati od ovog klijenta."
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53336,7 +53426,7 @@ msgstr "Adresa Skladišta"
msgid "Target Warehouse Address Link"
msgstr "Veza Adrese Skladišta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Greška pri Rezervaciji Skladišta"
@@ -53344,24 +53434,23 @@ msgstr "Greška pri Rezervaciji Skladišta"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Skladište za Gotov Proizvod mora biti isto kao i Skladište Gotovog Proizvoda {1} u Radnom Nalogu {2} povezanom s Internim Podizvođačkim Nalogom."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Skladište je obavezno prije Podnošenja"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr "Ciljno Skladište je obevezno za artikal {0}"
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
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."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Skladište je obavezno za red {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53478,8 +53567,8 @@ msgstr "Iznos Pdv-a nakon Iznosa Popusta (Valuta Tvrtke)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Iznos PDV-a će biti zaokružen na nivou reda (artikala)."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Poreska Imovina"
@@ -53511,7 +53600,6 @@ msgstr "Poreska Imovina"
msgid "Tax Breakup"
msgstr "PDV Raspodjela"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53533,7 +53621,6 @@ msgstr "PDV Raspodjela"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53549,6 +53636,7 @@ msgstr "PDV Raspodjela"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53560,8 +53648,8 @@ msgstr "Kategorija PDV-a"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "PDV Kategorija je promijenjena u \"Ukupno\" jer svi artikli nisu na zalihama"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Porezni Trošak"
@@ -53635,7 +53723,7 @@ msgstr "PDV %"
msgid "Tax Rates"
msgstr "PDV Stope"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Povrat PDV koji se pruža turistima u okviru šeme povrata poreza za turiste"
@@ -53653,7 +53741,7 @@ msgstr "PDV Red"
msgid "Tax Rule"
msgstr "Pravila PDV-a"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "PDV Pravila u konfliktu sa {0}"
@@ -53668,7 +53756,7 @@ msgstr "PDV Postavke"
msgid "Tax Template"
msgstr "PDV Predložak"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "PDV Šablon je obavezan."
@@ -53988,7 +54076,7 @@ msgstr "Odbijeni PDV i Naknade"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Odbijeni PDV i Naknade (Valuta Tvrtke)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "PDV red #{0}: {1} ne može biti manji od {2}"
@@ -54021,8 +54109,8 @@ msgstr "Tehnologija"
msgid "Telecommunications"
msgstr "Telekomunikacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefonski Troškovi"
@@ -54073,13 +54161,13 @@ msgstr "Privremeno na Čekanju"
msgid "Temporary"
msgstr "Privremeno"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Privremeni Računi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Privremeni Početni Račun"
@@ -54261,7 +54349,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54360,7 +54448,7 @@ msgstr "Tekst prikazan u financijskom izvješću (npr. 'Ukupni Prihod', 'Gotovin
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "\"Od Paketa Broj.\" polje ne smije biti prazno niti njegova vrijednost manja od 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Pristup zahtjevu za ponudu sa portala je onemogućen. Da biste omogućili pristup, omogućite ga u Postavkama Portala."
@@ -54413,7 +54501,8 @@ msgstr "Uslov Plaćanja u redu {0} je možda duplikat."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Lista Odabira koja ima Unose Rezervacije Zaliha ne može se ažurirati. Ako trebate unijeti promjene, preporučujemo da otkažete postojeće Unose Rezervacije Zaliha prije ažuriranja Liste Odabira."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Količinski Gubitak Procesa je poništen prema Radnim Karticama Količinskog Gubitka Procesa"
@@ -54429,7 +54518,7 @@ msgstr "Serijski Broj u redu #{0}: {1} nije dostupan u skladištu {2}."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Serijski Broj {0} je rezervisan naspram {1} {2} i ne može se koristiti za bilo koju drugu transakciju."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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}"
@@ -54465,7 +54554,7 @@ msgstr "Bankovni račun je onemogućen. Molimo omogućite ga"
msgid "The bank account is not a company account. Please select a company account"
msgstr "Bankovni račun nije račun tvrtke. Molimo odaberite račun tvrtke"
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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ć rezervirana u {1} {2}. Stoga se ne može nastaviti s {3} {4}, koja je kreirana prema {5} {6}."
@@ -54473,7 +54562,11 @@ msgstr "Šarža {0} je već rezervirana u {1} {2}. Stoga se ne može nastaviti s
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr "Tvrtka {0} nije registrirana u Južnoj Africi. Izvješće o PDV reviziji dostupno je samo za tvrtke registrirane u Južnoj Africi."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr "Tvrtka {0} nije u Ujedinjenim Arapskim Emiratima. Izvješće UAE PDV 201 dostupno je samo za tvrtke u Ujedinjenim Arapskim Emiratima."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
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}."
@@ -54493,7 +54586,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:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Sustav će preuzeti standard Sastavnicu za Artikal. Također možete promijeniti Sastavnicu."
@@ -54526,7 +54619,7 @@ msgstr "Polje Od Dioničara ne može biti prazno"
msgid "The field To Shareholder cannot be blank"
msgstr "Polje Za Dioničara ne može biti prazno"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Polje {0} u redu {1} nije postavljeno"
@@ -54567,11 +54660,11 @@ 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:427
+#: erpnext/controllers/accounts_controller.py:428
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:961
+#: erpnext/stock/doctype/item/item.py:965
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."
@@ -54593,7 +54686,7 @@ msgstr "Sljedeći raspored(i) plaćanja već postoje:\n"
msgid "The following rows are duplicates:"
msgstr "Sljedeći redovi su duplikati:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Sljedeći {0} su kreirani: {1}"
@@ -54620,7 +54713,7 @@ msgstr "Faktura nije u potpunosti dodijeljena jer postoji razlika od {0}."
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Stavka {item} nije označena kao {type_of} stavka. Možete ga omogućiti kao {type_of} stavku iz glavnog predmeta."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Artikli {0} i {1} se nalaze u sljedećem {2} :"
@@ -54678,7 +54771,7 @@ msgstr "Operacija {0} ne može biti podoperacija"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Originalnu fakturu treba objediniti prije ili zajedno sa povratnom fakturom."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
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."
@@ -54690,6 +54783,12 @@ msgstr "Nadređeni Rađun {0} ne postoji u otpremljenom šablonu"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Račun pristupa plaćanja u planu {0} razlikuje se od računa pristupa plaćanja u ovom Zahtjevu Plaćanja"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr "Postotak za koji vam je dopušteno naručiti više na Nabavnom Nalogu od količine tražene u izvornom zahtjevu za materijal. Na primjer, ako zahtjev za materijal ima 100 jedinica, a dopuštena količina je 10%, možete naručiti do 110 jedinica"
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54731,7 +54830,7 @@ msgstr "Rezervisane Zalihe će biti puštene kada ažurirate artikle. Jeste li s
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Rezervisane Zalihe će biti puštene. Jeste li sigurni da želite nastaviti?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Kontna Klasa {0} mora biti grupa"
@@ -54747,7 +54846,7 @@ msgstr "Odabrani Račun Kusura {} ne pripada Tvrtki {}."
msgid "The selected item cannot have Batch"
msgstr "Odabrani artikal ne može imati Šaržu"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "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? "
@@ -54780,7 +54879,7 @@ msgstr "Dionice ne postoje sa {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Zaliha za artikal {0} u {1} skladištu je bila negativna na {2}. Trebali biste kreirati pozitivan unos {3} prije datuma {4} i vremena {5} da biste knjižili ispravnu Stopu Vrednovanja. Za više detalja, molimo pročitaj dokumentaciju ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Zalihe su rezervirane za sljedeće artikle i skladišta, poništite ih za {0} Usglašavanje Zaliha: {1}"
@@ -54802,11 +54901,11 @@ msgstr "Sustav će pokušati automatski spojiti stranku s bankovnom transakcijom
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Sustav će kreirati Prodajnu Fakturu ili Fakturu Blagajne iz Blagajne na temelju ove postavke. Za transakcije velikog obujma preporučuje se korištenje Fakture Blagajne."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem u obradi u pozadini, sustav će dodati komentar o grešci na ovom usaglašavanja zaliha i vratiti se u stanje nacrta"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Zadatak je stavljen u red kao pozadinski posao. U slučaju da postoji bilo kakav problem sa obradom u pozadini, sustav će dodati komentar o grešci na ovom usklađivanju zaliha i vratiti se na fazu Poslano"
@@ -54854,15 +54953,15 @@ msgstr "Vrijednost {0} se razlikuje između artikala {1} i {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Vrijednost {0} je već dodijeljena postojećem artiklu {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
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:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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."
@@ -54870,19 +54969,19 @@ msgstr "Skladište u koje će vaši artikli biti prebačeni kada započnete proi
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr "Iznosi isplate ili uplate - potrebni su samo ako nema stupca s iznosom."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) mora biti jednako {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} sadrži stavke s jediničnom cijenom."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "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:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} je uspješno kreiran"
@@ -54890,7 +54989,7 @@ msgstr "{0} {1} je uspješno kreiran"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} se ne poklapa s {0} {2} u {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} se koristi za izračunavanje troška vrednovanja za gotov proizvod {2}."
@@ -54906,7 +55005,7 @@ msgstr "Postoji aktivno održavanje ili popravke imovine naspram imovine. Morate
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"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Na ovom računu postoje unosi u registar. Promjena {0} u ne-{1} u sustavu će uzrokovati netačan izlaz u izvještaju 'Računi {2}'"
@@ -54935,7 +55034,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 sustavu nema transakcija za odabrani bankovni račun i datume koji odgovaraju filterima."
-#: erpnext/stock/doctype/item/item.js:1177
+#: erpnext/stock/doctype/item/item.js:1161
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. "
@@ -54975,7 +55074,7 @@ 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:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "U ovom Unosu Zaliha mora biti najmanje jedan gotov proizvod"
@@ -55031,11 +55130,11 @@ msgstr "Artikal je Varijanta {0} (Šablon)."
msgid "This Month's Summary"
msgstr "Sažetak ovog Mjeseca"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Ovaj Nalog Nabave je u potpunosti podugovoren."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Ovaj Prodajnii Nalog je u potpunosti podugovoren."
@@ -55069,7 +55168,7 @@ msgstr "Ovo može sadržavati \"CR\"/\"DR\" vrijednosti ili pozitivne/negativne
msgid "This covers all scorecards tied to this Setup"
msgstr "Ovo pokriva sve bodovne kartice vezane za ovu postavku"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ovaj dokument je preko ograničenja za {0} {1} za artikal {4}. Da li pravite još jedan {3} naspram istog {2}?"
@@ -55172,11 +55271,11 @@ msgstr "Ovo se smatra opasnim knjigovodstvene tačke gledišta."
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 Knigovodstvo za slučajeve kada se Račun Nabave kreira nakon Fakture Nabave"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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."
@@ -55245,7 +55344,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} potrošena kroz kapitalizac
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}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
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 zbog otkazivanja prodajne fakture {1}."
@@ -55253,15 +55352,15 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena zbog otkazivanja p
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}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Ovaj raspored je kreiran kada je Imovina {0} vraćena."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
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}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana."
@@ -55269,7 +55368,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} rashodovana."
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}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
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}."
@@ -55338,7 +55437,7 @@ msgstr "Ovo će samo predložiti stvaranje novog unosa, a neće ga automatski st
msgid "This will restrict user access to other employee records"
msgstr "Ovo će ograničiti pristup korisnika drugim zapisima zaposlenih"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Ovaj {} će se tretirati kao prijenos materijala."
@@ -55449,7 +55548,7 @@ msgstr "Vrijeme u minutama"
msgid "Time in mins."
msgstr "Vrijeme u minutama."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Zapisnici Vremena su obavezni za {0} {1}"
@@ -55558,7 +55657,7 @@ msgstr "Za Fakturisati"
msgid "To Currency"
msgstr "Za Valutu"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: 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"
@@ -55785,11 +55884,15 @@ msgstr "Da biste dodali Operacije, označite polje 'S Operacijama'."
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Da se doda podizvođačka sirovina artikala ako je Uključi Rastavljene Artikle onemogućeno."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
-msgstr "Da dozvolite prekomjerno fakturisanje, ažuriraj \"Dozvola prekomjernog Fakturisanja\" u Postavkama Knjigovodstva ili Artikla."
+msgstr "Da dopusti prekomjerno fakturisanje, ažuriraj \"Dozvola prekomjernog Fakturisanja\" u Postavkama Knjigovodstva ili Artikla."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr "Da biste dopustili prekomjerno naručivanje, ažurirajte \"Dopušteno Prekoračenja Naloga\" u Postavkama Nabave."
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Da biste dozvolili prekomjerno primanje/isporuku, ažuriraj \"Dozvoli prekomjerni Prijema/Dostavu\" u Postavkama Zaliha ili Artikla."
@@ -55832,11 +55935,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Za uključivanje troškova podsklopova i sekundarnih artikala u gotove proizvode na radnom nalogu bez korištenja radne kartice, kada je omogućena opcija 'Koristi Višeslojnu Sastavnicu'."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Za spajanje, sljedeća svojstva moraju biti ista za obje stavke"
@@ -55844,7 +55947,7 @@ msgstr "Za spajanje, sljedeća svojstva moraju biti ista za obje stavke"
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."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Da poništite ovo, omogućite '{0}' u tvrtki {1}"
@@ -55869,7 +55972,7 @@ msgstr "Da biste podnijeli Fakturu bez Nabavnog Računa, postavite {0} kao {1} u
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Da biste koristili drugi Finansijski Registar, poništi 'Uključi Standard Imovinu Finansijskog Registra'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56019,7 +56122,7 @@ msgstr "Ukupno Dodjeljeno"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56126,12 +56229,12 @@ msgstr "Ukupna Provizija"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Ukupno Završeno Količinski"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Ukupna dovršena količina je obavezna za karticu posla {0}, molimo vas da započnete i dovršite karticu posla prije podnošenja"
@@ -56433,7 +56536,7 @@ msgstr "Ukupni Neplaćeni Iznos"
msgid "Total Paid Amount"
msgstr "Ukupan Plaćeni Iznos"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Ukupan Iznos Plaćanja u Planu Plaćanja mora biti jednak Ukupnom / Zaokruženom Ukupnom Iznosu"
@@ -56445,7 +56548,7 @@ msgstr "Ukupni iznos zahtjeva za plaćanje ne može biti veći od {0} iznosa"
msgid "Total Payments"
msgstr "Ukupno za Platiti"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Ukupna Odabrana Količina {0} je veća od naručene količine {1}. Dozvolu za prekoračenje možete postaviti u Postavkama Zaliha."
@@ -56728,7 +56831,7 @@ msgstr "Ukupno vrijeme rada na Radnoj Stanici (u Satima)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Ukupna procentualna dodjela za prodajni tim treba biti 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Ukupan procenat doprinosa treba da bude jednak 100"
@@ -56903,7 +57006,7 @@ msgstr "Datum Transakcije"
msgid "Transaction Dates"
msgstr "Datumi Transakcija"
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Dokument Brisanju Transakcije {0} je pokrenut za {1}"
@@ -56927,11 +57030,11 @@ msgstr "Artikal Zapisa Brisanja Transakcije"
msgid "Transaction Deletion Record To Delete"
msgstr "Zapis Brisanju Transakcije za brisanje"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Zapis Brisanja Transakcije {0} se već izvršava. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Zapis Brisanja Transakcije {0} trenutno briše {1}. Nije moguće spremiti dokumente dok se brisanje ne dovrši."
@@ -57036,7 +57139,8 @@ msgstr "Transakcija za koju se odbija PDV"
msgid "Transaction from which tax is withheld"
msgstr "Transakcija od koje se odbija PDV"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transakcija nije dozvoljena naspram zaustavljenog Radnog Naloga {0}"
@@ -57083,11 +57187,16 @@ msgstr "Godišnja Istorija Transakcije"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Transakcije naspram Tvrtke već postoje! Kontni Plan se može uvesti samo za kompaniju bez transakcija."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr "Transakcije se blokiraju ili upozoravaju kada nepodmireni saldo premaši ovaj iznos."
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr "Transakcije koje će se uvesti u sustav"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transakcije koje koriste Prodajnu Fakturu Kase su onemogućene."
@@ -57268,8 +57377,8 @@ msgstr "Info Dobavljača"
msgid "Transporter Name"
msgstr "Ime Dobavljača"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Putni Troškovi"
@@ -57533,6 +57642,7 @@ msgstr "Postavke PDV-a UAE"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57548,7 +57658,7 @@ msgstr "Postavke PDV-a UAE"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57609,7 +57719,7 @@ msgstr "Detalji Jedinice Konverzije"
msgid "UOM Conversion Factor"
msgstr "Faktor Konverzije Jedinice"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Faktor Konverzije Jedinice({0} -> {1}) nije pronađen za artikal: {2}"
@@ -57622,7 +57732,7 @@ msgstr "Faktor Konverzije Jedinice je obavezan u redu {0}"
msgid "UOM Name"
msgstr "Naziv Jedinice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Faktor Konverzije je obavezan za Jedinicu: {0} za Artikal: {1}"
@@ -57694,13 +57804,13 @@ msgstr "Nije moguće pronaći devizni kurs za {0} do {1} za ključni datum {2}.
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Nije moguće pronaći rezultat koji počinje od {0}. Morate imati stalne rezultate koji pokrivaju od 0 do 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
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}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Nije moguće pronaći varijablu:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr "Nije moguće pronaći varijablu: {0}"
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57781,7 +57891,7 @@ msgstr "Poništi usklađivanje transakcija"
msgid "Undo {}?"
msgstr "Poništi {}?"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Neočekivani Uzorak Imenovanja Serije"
@@ -57800,7 +57910,7 @@ msgstr "Jedinica"
msgid "Unit Of Measure"
msgstr "Jedinica"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Jedinična Cijena"
@@ -57817,7 +57927,7 @@ msgstr "Jedinica Mjere"
msgid "Unit of Measure (UOM)"
msgstr "Jedinica Mjere"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
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"
@@ -57962,7 +58072,7 @@ msgstr "Neusaglašeni Unosi"
msgid "Unreconciled Transactions"
msgstr "Neusklađene Transakcije"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58002,12 +58112,12 @@ msgstr "Neriješeno"
msgid "Unscheduled"
msgstr "Neplanirano"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Neosigurani Krediti"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "OtkažiI Usklađeni Zahtjev Plaćanje"
@@ -58183,7 +58293,7 @@ msgstr "Ažuriraj Artikle"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Ažuriraj neplaćeni iznos za ovaj dokument"
@@ -58262,11 +58372,11 @@ msgstr "Ažurirani {0} retci financijskog izvješća s novim nazivom kategorije"
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Ažuriranje Troškova i Fakturisanje za Projekat..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Ažuriranje Varijanti u toku..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Ažuriranje statusa radnog naloga u toku"
@@ -58468,7 +58578,7 @@ msgstr "Koristi Prijedlog"
msgid "Use Transaction Date Exchange Rate"
msgstr "Koristi Devizni Kurs Datuma Transakcije"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Koristite naziv koji se razlikuje od naziva prethodnog projekta"
@@ -58510,7 +58620,7 @@ msgstr "Koristi se za izradu početnog unosa zaliha s vrednosnom stopom prilikom
msgid "Used with Financial Report Template"
msgstr "Koristi se s Predloškom Financijskog Izvješća"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Forum Korisnika"
@@ -58574,6 +58684,11 @@ msgstr "Korisnici mogu omogućiti potvrdni okvir Ako žele prilagoditi nabavnu c
msgid "Users can make manufacture entry against Job Cards"
msgstr "Korisnici mogu unositi podatke o proizvodnji putem radnih kartica"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr "Korisnici navedeni ovdje mogu se prijaviti na korisnički portal kako bi pregledali svoje naloge, fakture i dostave."
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58596,8 +58711,8 @@ msgstr "Korisnici s ovom ulogom bit će obaviješteni ako amortizacija imovine n
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/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Penzioni Troškovi"
@@ -58607,7 +58722,7 @@ msgstr "Penzioni Troškovi"
msgid "VAT Accounts"
msgstr "PDV Računi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Iznos PDV-a (AED)"
@@ -58617,12 +58732,12 @@ msgid "VAT Audit Report"
msgstr "Izvještaj revizije PDV-a"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "PDV na rashode i sve ostale ulaze"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "PDV na Prodaju i sve ostale izlaze"
@@ -58816,7 +58931,6 @@ msgstr "Metoda Vrijednovanja"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58832,14 +58946,12 @@ msgstr "Metoda Vrijednovanja"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Procijenjena Vrijednost"
@@ -58847,19 +58959,19 @@ msgstr "Procijenjena Vrijednost"
msgid "Valuation Rate (In / Out)"
msgstr "Stopa Vrednovnja (Ulaz / Izlaz)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Nedostaje Stopa Vrednovanja"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
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:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Procijenjano Vrijednovanje je obavezno ako se unese Početna Zaliha"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}"
@@ -58869,7 +58981,7 @@ msgstr "Stopa Vrednovanja je obavezna za artikal {0} u redu {1}"
msgid "Valuation and Total"
msgstr "Vrednovanje i Ukupno"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Stopa Vrednovanja za Klijent Dostavljene Artikle postavljena je na nulu."
@@ -58883,7 +58995,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Stopa Vrednovanja artikla prema Prodajnoj Fakturi (samo za interne transfere)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Naknade za tip vrijednovanja ne mogu biti označene kao Inkluzivne"
@@ -58895,7 +59007,7 @@ msgstr "Naknade za vrstu vrijednovanja ne mogu biti označene kao Inkluzivne"
msgid "Value (G - D)"
msgstr "Vrijednost (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Vrijednost ({0})"
@@ -59014,12 +59126,12 @@ msgid "Variance ({})"
msgstr "Odstupanje ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Varijanta"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Greška Atributa Varijante"
@@ -59038,7 +59150,7 @@ msgstr "Varijanta Sastavnice"
msgid "Variant Based On"
msgstr "Varijanta zasnovana na"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Varijanta zasnovana na nemože se promijeniti"
@@ -59056,7 +59168,7 @@ msgstr "Polje Varijante"
msgid "Variant Item"
msgstr "Varijanta Artikla"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Varijanta Artikli"
@@ -59067,7 +59179,7 @@ msgstr "Varijanta Artikli"
msgid "Variant Of"
msgstr "Varijanta od"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Kreiranje varijante je stavljeno u red čekanja."
@@ -59361,7 +59473,7 @@ msgstr "Verifikat"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Verifikat #"
@@ -59433,7 +59545,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59507,7 +59619,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59534,7 +59646,7 @@ msgstr "Podtip Verifikata"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59714,8 +59826,8 @@ 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:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Skladište je obavezno za artikal zaliha {0}"
@@ -59740,7 +59852,7 @@ msgstr "Skladište {0} ne pripada Tvrtki {1}"
msgid "Warehouse {0} does not exist"
msgstr "Skladište {0} ne postoji"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
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}"
@@ -59877,11 +59989,11 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji naspram unosa zaliha {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Upozorenje: Količina Materijalnog Naloga je manja od Minimalne Količine Nabavnog Naloga"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Upozorenje: Količina prelazi maksimalnu proizvodnu količinu na temelju količine sirovina primljenih putem Podizvođačkog Naloga {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Upozorenje: Prodajni Nalog {0} već postoji naspram Nabavnog Naloga {1}"
@@ -59971,7 +60083,7 @@ msgstr "Talasna dužina u Kilometrima"
msgid "Wavelength In Megametres"
msgstr "Talasna dužina u Megametrima"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Vidimo da je {0} napravljen protiv {1}. Ako želite da se ažuriraju preostali {1}, poništite oznaku u potvrdnom okviru '{2}'."
@@ -60040,7 +60152,7 @@ msgstr "Web Stranica:"
msgid "Week of the year"
msgstr "Tjedan Godine"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Tjedan {0} {1}"
@@ -60170,7 +60282,7 @@ msgstr "Kada je odabrano, prag transakcije će se primjenjivati samo za pojedina
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, sustav će za imenovanje dokumenta koristiti datum i vrijeme registracije umjesto datuma i vremena kreiranja dokumenta."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
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."
@@ -60180,7 +60292,7 @@ msgstr "Kada kreirate artikal, unosom vrijednosti za ovo polje automatski će se
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 izrađenim skupno iz prodajnih naloga. To vam omogućuje obradu naloga s datumom transakcije do navedenog krajnjeg datuma, što je korisno za obradu na kraju razdoblja i ispunjavanje Šarži."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Kada u unosu zaliha za ponovno pakiranje postoji više gotovih proizvoda ({0}), osnovna cijena za sve gotove proizvode mora se postaviti ručno. Za ručno postavljanje cijene, aktiviraj potvrdni okvir 'Ručno postavi osnovnu cijenu' u odgovarajućem redu gotovih proizvoda."
@@ -60190,11 +60302,11 @@ msgstr "Kada u unosu zaliha za ponovno pakiranje postoji više gotovih proizvoda
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr "Kada nešto platite unaprijed (poput godišnjeg osiguranja), trošak se ovdje evidentira i postupno se priznaje tijekom vremena"
-#: erpnext/accounts/doctype/account/account.py:380
+#: 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đenu tvrtku {0}, nadređeni račun {1} pronađen je kao Kjigovodstveni Račun."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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đenu tvrtku {0}, nadređeni račun {1} nije pronađen. Kreiraj nadređeni račun u odgovarajućem Kontnom Planu"
@@ -60339,7 +60451,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Radovi u Toku"
@@ -60376,7 +60488,7 @@ msgstr "Radovi u Toku"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60410,7 +60522,7 @@ msgstr "Potrošeni Materijali Radnog Naloga"
msgid "Work Order Item"
msgstr "Artikal Radnog Naloga"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "Neusklađenost Radnog Naloga"
@@ -60451,19 +60563,23 @@ msgstr "Sažetak Radnog Naloga"
msgid "Work Order Summary Report"
msgstr "Sažetka Izvješća Radnog Naloga"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Radni Nalog se ne može kreirati iz sljedećeg razloga: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Radni Nalog se nemože pokrenuti naspram Šablona Artikla"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Radni Nalog je {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr "Radni Nalog je obavezan"
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Radni Nalog nije kreiran"
@@ -60472,16 +60588,16 @@ msgstr "Radni Nalog nije kreiran"
msgid "Work Order {0} created"
msgstr "Radni nalog {0} izrađen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "Radni nalog {0} nema proizvedene količine"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Radni Nalog {0}: Radna Kartica nije pronađena za operaciju {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+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:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Radni Nalozi"
@@ -60506,7 +60622,7 @@ msgstr "Radovi u Toku"
msgid "Work-in-Progress Warehouse"
msgstr "Skladište Posla u Toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Skladište u Toku je obavezno prije Podnošenja"
@@ -60554,7 +60670,7 @@ msgstr "Radno Vrijeme"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60645,14 +60761,14 @@ msgstr "Radne Stanice"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Otpis"
@@ -60757,7 +60873,7 @@ msgstr "Otpisana Vrijednost"
msgid "Wrong Company"
msgstr "Pogrešna Tvrtka"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Pogrešna Lozinka"
@@ -60813,11 +60929,11 @@ msgstr "Datum početka ili datum završetka godine se preklapa sa {0}. Da biste
msgid "You are importing data for the code list:"
msgstr "Uvoziš podatke za Listu Koda:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Nije vam dozvoljeno ažuriranje prema uslovima postavljenim u {} Radnom Toku."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Niste ovlašteni da dodajete ili ažurirate unose prije {0}"
@@ -60825,7 +60941,7 @@ msgstr "Niste ovlašteni da dodajete ili ažurirate unose prije {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Niste ovlašteni da vršite/uredite transakcije zaliha za artikal {0} u skladištu {1} prije ovog vremena."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Niste ovlašteni za postavljanje Zamrznute vrijednosti"
@@ -60853,7 +60969,7 @@ msgstr "Također možete postaviti standard Račun Kapitalnog Posla u Toku u tvr
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr "Također možete koristiti varijable u nazivu serije tako da ih stavite između točaka (.)"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
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."
@@ -60894,11 +61010,11 @@ msgstr "Možete ga postaviti kao naziv mašine ili tip operacije. Na primjer, ma
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr "Možete postaviti pravilo za podjelu transakcije na više računa."
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Kasnije možete upotrijebiti {0} za usklađivanje s {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Ne možete napraviti nikakve promjene na Radnoj Kartici jer je Radni Nalog zatvoren."
@@ -60922,7 +61038,7 @@ msgstr "Ne možete kreirati {0} unutar zatvorenog Knjigovodstvenog Perioda {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Ne možete kreirati ili poništiti bilo koje knjigovodstvene unose u zatvorenom knjigovodstvenom periodu {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Ne možete kreirati/izmijeniti bilo koje knjigovodstvene unose do ovog datuma."
@@ -60983,7 +61099,7 @@ msgstr "Nemate dopuštenje za uvoz i podnošenje bankovnih transakcija"
msgid "You do not have permission to import bank transactions"
msgstr "Nemate dopuštenje za uvoz bankovnih transakcija"
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Nemate dozvole za {} artikala u {}."
@@ -60995,19 +61111,19 @@ 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:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "Nemate dopuštenje za stvaranje adrese tvrtke. Kontaktiraj Upravitelja Sustava."
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr "Nemate dopuštenje za ažuriranje podataka o tvrtki. Kontaktiraj Upravitelja Sustava."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr "Nemate dopuštenje za ažuriranje dokumenta Primljena količina za artikal {0}"
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr "Nemate dopuštenje za ažuriranje ovog dokumenta. Obratite se Upravitelju Sustava."
@@ -61019,7 +61135,7 @@ msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Provjerite {
msgid "You have already selected items from {0} {1}"
msgstr "Već ste odabrali artikle iz {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Pozvani ste da sarađujete na projektu {0}."
@@ -61043,7 +61159,7 @@ msgstr "Niste dodali nijedan bankovni račun tvrtki."
msgid "You have not performed any reconciliations in this session yet."
msgstr "U ovoj sesiji još niste izvršili nikakva usklađivanja."
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
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."
@@ -61059,7 +61175,7 @@ msgstr "Morate odabrati Klijenta prije dodavanja Artikla."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Morate otkazati Unos Zatvaranje Kase {} da biste mogli otkazati ovaj dokument."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Odabrali ste grupni račun {1} kao {2} Račun u redu {0}. Odaberi jedan račun."
@@ -61106,11 +61222,11 @@ msgstr "Poštanski Broj"
msgid "Zero Balance"
msgstr "Nulto Stanje"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Nulta Stopa"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Nulta Količina"
@@ -61132,11 +61248,11 @@ msgstr "Zip Datoteka"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Važno] [ERPNext] Greške Automatskog Preuređenja"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Dozvoli negativne cijene za Artikle`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "poslije"
@@ -61177,7 +61293,7 @@ msgid "cannot be greater than 100"
msgstr "ne može biti veći od 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "datirano {0}"
@@ -61326,7 +61442,7 @@ msgstr "aplikacija za plaćanja nije instalirana. Instaliraj s {} ili {}"
msgid "per hour"
msgstr "po satu"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "izvodi bilo koje dolje:"
@@ -61359,7 +61475,7 @@ msgstr "primljeno od"
msgid "reconciled"
msgstr "usaglašeno"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "vraćeno"
@@ -61394,7 +61510,7 @@ msgstr "desno"
msgid "sandbox"
msgstr "Pješčanik"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "prodano"
@@ -61402,8 +61518,8 @@ msgstr "prodano"
msgid "subscription is already cancelled."
msgstr "pretplata je već otkazana."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61421,7 +61537,7 @@ msgstr "naziv"
msgid "to"
msgstr "do"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
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."
@@ -61448,7 +61564,7 @@ msgstr "odabrane transakcije"
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "jedinstveni npr. SAVE20 Koristi se za popust"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr "ažurirana dostavljena količina za artikal {0} na {1}"
@@ -61470,7 +61586,7 @@ msgstr "putem Alata Ažuriranje Sastavnice"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "morate odabrati Račun Kapitalnih Radova u Toku u Tabeli Računa"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' je onemogućen"
@@ -61478,7 +61594,7 @@ msgstr "{0} '{1}' je onemogućen"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' nije u Fiskalnoj Godini {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
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}"
@@ -61486,7 +61602,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:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Račun nije pronađen prema Klijentu {1}."
@@ -61519,11 +61635,11 @@ msgstr "{0} Serija Imenovanja"
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Broj {1} se već koristi u {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "Operativni trošak {0} za operaciju {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operacije: {1}"
@@ -61531,7 +61647,7 @@ msgstr "{0} Operacije: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Zahtjev za {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Zadržani Uzorak se zasniva na Šarži, provjeri Ima Broj Šarže da zadržite uzorak artikla"
@@ -61619,11 +61735,11 @@ msgstr "{0} kreirano"
msgid "{0} creation for the following records will be skipped."
msgstr "Izrada {0} za sljedeće zapise bit će preskočena."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} valuta mora biti ista kao standard valuta tvrtke. Odaberi drugi račun."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
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 Naloge Nabave ovom dobavljaču treba izdavati s oprezom."
@@ -61635,7 +61751,7 @@ msgstr "{0} trenutno ima {1} Dobavljačko Bodovno stanje, i Ponude Nabave ovom d
msgid "{0} does not belong to Company {1}"
msgstr "{0} ne pripada tvrtki {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} ne pripada {1}."
@@ -61644,7 +61760,7 @@ 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:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} uneseno dvaput {1} u PDV Artikla"
@@ -61669,7 +61785,7 @@ msgstr "{0} je uspješno podnešen"
msgid "{0} hours"
msgstr "{0} sati"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} u redu {1}"
@@ -61691,7 +61807,7 @@ msgstr "{0} je dodata više puta u redove: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} već radi za {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti"
@@ -61699,12 +61815,12 @@ msgstr "{0} je blokiran tako da se ova transakcija ne može nastaviti"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} je u Nacrtu. Podnesi prije kreiranja Imovine."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} je obavezan za artikal {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} je obavezan za račun {1}"
@@ -61712,7 +61828,7 @@ msgstr "{0} je obavezan za račun {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
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}."
@@ -61720,7 +61836,7 @@ msgstr "{0} je obavezan. Možda zapis o razmjeni valuta nije kreiran za {1} do {
msgid "{0} is not a CSV file."
msgstr "{0} nije CSV datoteka."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} nije bankovni račun tvrtke"
@@ -61728,7 +61844,7 @@ msgstr "{0} nije bankovni račun tvrtke"
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"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} nije artikal na zalihama"
@@ -61768,27 +61884,27 @@ msgstr "{0} je na čekanju do {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} je otvoreno. Zatvori Blagajnu ili poništite postojeći Unos Otvaranja Blagajne kako biste stvorili novi Unos Otvaranja Blagajne."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} rastavljenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} artikala u toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} artikala izgubljenih tokom procesa."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} proizvedenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} vraćenih artikala"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} artikala za povrat"
@@ -61796,7 +61912,7 @@ msgstr "{0} artikala za povrat"
msgid "{0} must be negative in return document"
msgstr "{0} mora biti negativan u povratnom dokumentu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} nije dozvoljeno obavljati transakcije sa {1}. Promijeni tvrtku ili dodaj tvrtku u sekciju 'Dozvoljena Transakcija s' u zapisu o klijentima."
@@ -61812,7 +61928,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/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} količina artikla {1} se prima u Skladište {2} kapaciteta {3}."
@@ -61825,7 +61941,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr "{0} transakcija bit će uvezeno u sustav. Molimo pregledajte dolje navedene podatke i kliknite gumb 'Uvezi' za nastavak."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
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."
@@ -61841,16 +61957,16 @@ msgstr "{0} jedinica artikla {1} nije dostupno ni u jednom skladištu. Za ovaj a
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} jedinica od {1} potrebno je u {2} s dimenzijom zaliha: {3} na {4} {5} za {6} za dovršetak transakcije."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
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:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
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:1714
+#: erpnext/stock/stock_ledger.py:1680
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."
@@ -61862,7 +61978,7 @@ 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:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varijante kreirane."
@@ -61878,7 +61994,7 @@ msgstr "{0} će biti dato kao popust."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} će biti postavljeno kao {1} u naredno skeniranim artiklima"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61916,8 +62032,8 @@ msgstr "{0} {1} je već u potpunosti plaćeno."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} je već djelimično plaćena. Koristi dugme 'Preuzmi Nepodmirene Fakture' ili 'Preuzmi Nepodmirene Naloge' da preuzmete najnovije nepodmirene iznose."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} je izmijenjeno. Osvježite."
@@ -62027,7 +62143,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/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Centar Troškova je obavezan za Artikal {2}"
@@ -62076,8 +62192,8 @@ msgstr "{0}% ukupne vrijednosti fakture će se dati kao popust."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0} {1} ne može biti nakon {2}očekivanog datuma završetka."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, završi operaciju {1} prije operacije {2}."
@@ -62097,11 +62213,11 @@ msgstr "{0}: Zaštićeni DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtualni DocType (bez tablice baze podataka)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} ne pripada Tvrtki: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} ne postoji"
@@ -62109,11 +62225,11 @@ msgstr "{0}: {1} ne postoji"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} ne postoji"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} je grupni račun."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} mora biti manje od {2}"
@@ -62125,7 +62241,7 @@ msgstr "{count} Sredstva stvorena za {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} je otkazan ili zatvoren."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
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})"
@@ -62137,7 +62253,7 @@ msgstr "{ref_doctype} {ref_name} je {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} se ne može otkazati jer su zarađeni Poeni Lojalnosti iskorišteni. Prvo otkažite {} Broj {}"
diff --git a/erpnext/locale/hu.po b/erpnext/locale/hu.po
index 0fff032fd91..5a504ad78f6 100644
--- a/erpnext/locale/hu.po
+++ b/erpnext/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -346,8 +346,8 @@ msgstr "A '{0}' fiókot már használja {1}. Használjon másik fiókot."
msgid "'{0}' has been already added."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -484,7 +484,7 @@ msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Video Settings'
#: erpnext/utilities/doctype/video_settings/video_settings.json
msgid "1 hr"
-msgstr ""
+msgstr "1 óra"
#: banking/src/components/features/ActionLog/ActionLog.tsx:280
msgid "1 invoice"
@@ -517,8 +517,8 @@ msgstr ""
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr ""
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "90-nél több"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -762,7 +762,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -779,7 +779,7 @@ msgstr ""
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -896,11 +896,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr "Hivatkozásai "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -945,7 +945,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1109,11 +1109,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1121,7 +1121,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "Rövidítés: {0} csak egyszer szerepelhet"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1175,7 +1175,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1211,7 +1211,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "A CEFACT/ICG/2010/IC013 vagy a CEFACT/ICG/2010/IC010 szerint"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1329,8 +1329,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1348,7 +1348,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1361,7 +1361,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1400,7 +1400,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1416,11 +1416,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1487,15 +1487,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1503,8 +1503,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1512,11 +1512,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1524,11 +1524,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1544,15 +1544,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1560,7 +1560,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1568,19 +1568,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1596,7 +1596,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1881,8 +1881,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1906,8 +1906,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1916,7 +1916,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1971,7 +1971,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1984,14 +1983,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr ""
@@ -2021,8 +2019,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2122,15 +2120,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2295,7 +2293,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2419,7 +2417,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2541,7 +2539,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2550,7 +2548,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3049,7 +3047,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3072,7 +3070,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3080,11 +3078,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3230,11 +3223,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3247,8 +3235,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3316,7 +3304,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3436,7 +3424,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3578,11 +3566,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3732,21 +3720,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3826,7 +3814,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3840,6 +3828,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3848,23 +3841,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3878,11 +3871,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3901,7 +3894,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3911,7 +3904,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3941,7 +3934,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3998,7 +3991,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4062,7 +4055,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4185,16 +4178,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4320,6 +4303,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4396,10 +4389,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4411,6 +4402,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4452,8 +4448,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4694,7 +4690,7 @@ msgstr ""
msgid "Amount"
msgstr "Összeg"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4828,11 +4824,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4878,11 +4874,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5422,7 +5418,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5434,7 +5430,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Mivel elegendő részösszeállítási tétel van, a {0} raktárhoz nem szükséges munkamegrendelés."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5572,7 +5568,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5749,8 +5745,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5850,7 +5846,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5882,7 +5878,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5890,20 +5886,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5923,7 +5919,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5964,7 +5960,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6014,7 +6010,7 @@ msgstr "A (z) {item_code} domainhez nem létrehozott eszközök Az eszközt manu
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6075,7 +6071,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6083,20 +6079,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6179,11 +6171,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6191,19 +6183,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6415,7 +6407,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6527,7 +6519,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6616,10 +6608,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6628,8 +6616,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6653,7 +6641,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6677,7 +6667,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6735,7 +6725,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6758,7 +6748,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6830,11 +6820,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6988,7 +6973,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7056,7 +7041,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7120,7 +7105,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7185,7 +7170,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7341,8 +7326,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7457,8 +7442,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7631,11 +7616,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7792,7 +7777,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7867,7 +7852,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7956,13 +7941,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7979,7 +7964,7 @@ msgstr "Kötegelt MEE"
msgid "Batch and Serial No"
msgstr "Köteg- és sorozatszám"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8002,12 +7987,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8062,7 +8047,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8071,7 +8056,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8085,11 +8070,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8190,7 +8177,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8442,6 +8429,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8538,7 +8535,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8797,8 +8794,8 @@ msgstr "Építési fa"
msgid "Buildable Qty"
msgstr "Építhető Mennyiség"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8959,16 +8956,16 @@ msgstr ""
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Hitelkeret ellenőrzés kihagyása a Vevő Rendelésnél"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9016,8 +9013,8 @@ msgstr "CRM Jegyzet"
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9272,7 +9269,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9305,13 +9302,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9353,7 +9350,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9361,9 +9358,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9391,7 +9388,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9411,7 +9408,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9431,15 +9428,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9447,11 +9444,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9467,11 +9464,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9479,7 +9476,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9505,7 +9502,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Nem lehet törölni az árfolyamnyereség/veszteség sort"
@@ -9513,12 +9510,12 @@ msgstr "Nem lehet törölni az árfolyamnyereség/veszteség sort"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Nem lehet törölni egy megrendelt tételt"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9530,7 +9527,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9538,20 +9535,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Nem lehet a gyártott mennyiségnél többet szétszerelni."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9567,7 +9564,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9575,15 +9572,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9591,12 +9588,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9609,14 +9606,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9630,7 +9627,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9638,11 +9635,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Nem lehet a szállított mennyiségnél kisebb mennyiséget beállítani."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "A fogadott mennyiségnél kisebb mennyiséget nem lehet beállítani."
@@ -9654,7 +9651,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9687,7 +9684,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9706,13 +9703,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9929,7 +9926,7 @@ msgstr "Kategória Részletek"
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10034,7 +10031,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr "A készletérték változása"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10044,7 +10041,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Az ügyfél neve '{}'-re változott, mivel '{}' már létezik."
@@ -10052,7 +10049,7 @@ msgstr "Az ügyfél neve '{}'-re változott, mivel '{}' már létezik."
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10067,7 +10064,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10121,7 +10118,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10264,7 +10261,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10322,7 +10319,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10374,6 +10371,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10516,11 +10518,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "A lezárt munkarend nem állítható le vagy nyitható meg újra"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10772,11 +10774,17 @@ msgstr "Jutalék mértéke %"
msgid "Commission Rate (%)"
msgstr "Jutalék mértéke (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10807,7 +10815,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11206,8 +11214,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11260,7 +11268,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11349,18 +11357,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "A cég címe hiányzik. Nincs jogosultsága a frissítéshez. Kérjük, lépjen kapcsolatba a rendszergazdával."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11456,7 +11466,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11491,7 +11501,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11530,12 +11540,12 @@ msgstr "Cég, amelyet a belső szállító képvisel"
msgid "Company {0} added multiple times"
msgstr "Cég {0} többször hozzáadva"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Cég {0} többször hozzáadva"
@@ -11577,7 +11587,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11624,12 +11634,12 @@ msgstr "Befejezett Projektek"
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11818,7 +11828,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr "Vegye figyelembe a minimális rendelési mennyiséget"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Vegye figyelembe a folyamat veszteségét"
@@ -12012,7 +12022,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12041,7 +12051,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12169,7 +12179,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "A kapcsolattartó személy nem tartozik ide: {0}"
@@ -12295,6 +12305,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12355,7 +12370,7 @@ msgstr "Átváltási Tényező"
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12363,15 +12378,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12448,13 +12463,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Korrekciós Munka Kártya"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Korrekciós Művelet"
@@ -12485,13 +12500,13 @@ msgstr ""
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "Költség felosztás"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "Költség felosztás %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12621,7 +12636,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12754,7 +12769,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12797,17 +12812,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12887,7 +12898,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13076,7 +13087,7 @@ msgstr ""
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13108,7 +13119,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13175,7 +13186,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13320,7 +13331,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13358,12 +13369,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13394,12 +13405,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13433,7 +13444,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13466,7 +13477,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13659,7 +13670,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13669,12 +13680,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13706,7 +13711,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13734,7 +13739,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13742,7 +13747,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13751,20 +13756,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13772,8 +13777,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13943,7 +13948,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13953,7 +13958,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14036,8 +14041,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14104,6 +14109,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14199,7 +14209,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14306,7 +14315,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14395,8 +14403,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14410,7 +14418,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14493,6 +14501,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14515,7 +14524,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14532,6 +14541,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14575,7 +14585,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14627,7 +14637,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14733,7 +14743,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14790,9 +14800,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14904,7 +14914,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -14955,7 +14965,7 @@ msgstr ""
#. Label of the data_source (Select) field in DocType 'Financial Report Row'
#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
msgid "Data Source"
-msgstr ""
+msgstr "Adatforrás"
#. Label of the date (Date) field in DocType 'Bulk Transaction Log Detail'
#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
@@ -14995,7 +15005,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15221,7 +15231,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15249,13 +15259,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15383,8 +15393,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15410,14 +15419,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15432,19 +15441,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15497,9 +15506,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15615,6 +15622,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15650,23 +15667,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15789,15 +15802,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr "Alapértelmezett mértékegység"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15849,7 +15862,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15940,6 +15953,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16022,12 +16041,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16048,8 +16067,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16160,11 +16179,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16245,7 +16264,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16305,11 +16324,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16395,10 +16414,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16518,8 +16533,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16612,7 +16627,7 @@ msgstr "Értékcsökkenési lehetőségek"
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16770,15 +16785,15 @@ msgstr ""
msgid "Difference Account"
msgstr "Különbség főkönyvi számla"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16890,15 +16905,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16979,6 +16994,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17015,11 +17035,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17035,7 +17055,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17043,15 +17063,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17338,7 +17358,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17419,7 +17439,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17533,8 +17553,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17596,7 +17616,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17620,7 +17640,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17687,13 +17707,13 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
-msgstr ""
+msgstr "Dokumentáció"
#. Description of the 'Reconciliation Queue Size' (Int) field in DocType
#. 'Accounts Settings'
@@ -17854,12 +17874,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17880,12 +17894,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18044,8 +18052,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18098,7 +18106,7 @@ msgstr ""
#. Label of a Desktop Icon
#: erpnext/desktop_icon/erpnext.json
msgid "ERPNext"
-msgstr ""
+msgstr "ERPNext"
#. Label of a Desktop Icon
#. Name of a Workspace
@@ -18128,7 +18136,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18242,6 +18250,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18261,8 +18273,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18466,8 +18478,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18550,7 +18562,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18566,7 +18578,7 @@ msgstr ""
msgid "Empty"
msgstr "Üres"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18597,7 +18609,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18763,12 +18775,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18897,8 +18903,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18997,8 +19003,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19023,7 +19029,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19035,7 +19041,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19078,7 +19084,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19086,7 +19092,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19098,8 +19104,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19123,8 +19129,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19185,7 +19191,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19195,7 +19201,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19241,7 +19247,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19260,7 +19266,7 @@ msgstr "Példa: ABCD. #####. Ha sorozatot állít be, és a tétel nem szerepel
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19270,7 +19276,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19278,7 +19284,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19309,17 +19315,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19458,7 +19464,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19545,7 +19551,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19629,7 +19635,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19707,23 +19713,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19802,7 +19808,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19939,7 +19945,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20057,6 +20063,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20094,21 +20105,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20316,9 +20335,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20375,15 +20394,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20429,7 +20448,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20470,7 +20489,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20611,6 +20630,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20629,7 +20649,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20648,8 +20668,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20722,7 +20742,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20779,7 +20799,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20789,7 +20809,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20810,17 +20830,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20848,11 +20864,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20890,7 +20906,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20904,7 +20920,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20921,7 +20937,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20930,12 +20946,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20954,7 +20970,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21001,11 +21017,6 @@ msgstr "Előrejelzés"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21051,7 +21062,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21096,8 +21107,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21531,8 +21542,8 @@ msgstr ""
msgid "Furlong"
msgstr "Távolságmérték"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21549,13 +21560,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21563,7 +21574,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21648,9 +21659,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21823,7 +21834,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21881,7 +21892,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21920,7 +21931,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22094,7 +22105,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22103,7 +22114,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22286,7 +22297,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22729,7 +22740,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22757,7 +22768,7 @@ msgstr ""
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22956,7 +22967,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23124,6 +23135,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23341,7 +23358,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23367,13 +23384,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23382,7 +23404,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23392,7 +23414,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23469,7 +23491,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23483,7 +23505,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23567,7 +23589,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23654,12 +23676,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23817,7 +23839,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23941,7 +23963,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24172,8 +24194,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24244,7 +24266,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24276,7 +24298,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24284,7 +24306,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24418,15 +24440,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24494,14 +24516,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24518,8 +24540,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24549,7 +24571,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24588,11 +24610,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24600,13 +24622,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24726,13 +24747,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24740,8 +24761,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24761,7 +24782,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24769,7 +24790,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24777,7 +24798,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24808,7 +24829,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24821,7 +24842,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24837,12 +24863,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24863,7 +24889,7 @@ msgstr ""
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24876,7 +24902,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24892,21 +24918,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24944,7 +24970,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24958,7 +24984,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24966,11 +24992,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25000,12 +25026,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25030,12 +25056,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25060,7 +25086,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25072,7 +25098,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25098,8 +25124,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25107,7 +25133,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25117,7 +25143,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25166,8 +25192,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25175,7 +25201,7 @@ msgstr ""
#. Label of an action in the Onboarding Step 'Invite Users'
#: erpnext/setup/onboarding_step/invite_users/invite_users.json
msgid "Invite Users"
-msgstr ""
+msgstr "Felhasználók meghívása"
#. Option for the 'Posting Date Inheritance for Exchange Gain / Loss' (Select)
#. field in DocType 'Accounts Settings'
@@ -25217,7 +25243,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25322,7 +25348,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25343,7 +25369,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25439,8 +25465,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25882,8 +25907,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25989,7 +26013,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26020,11 +26044,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26148,7 +26172,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26396,7 +26420,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26458,7 +26482,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26657,13 +26681,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26880,7 +26904,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26920,10 +26944,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26964,10 +26988,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26983,19 +27003,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27182,11 +27203,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27287,11 +27308,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27317,11 +27338,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27340,11 +27357,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27361,7 +27378,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27373,7 +27390,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr "Tétel: {0}, nem létezik."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27385,15 +27402,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "Tétel {0} ,le lett tiltva"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27405,15 +27422,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27421,7 +27438,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27429,11 +27446,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27449,7 +27466,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27457,7 +27474,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27465,7 +27482,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27511,7 +27528,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27535,7 +27552,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27559,11 +27576,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27575,7 +27592,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27585,7 +27602,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27650,9 +27667,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27714,7 +27731,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27790,7 +27807,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28010,7 +28027,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowattóra"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28138,7 +28155,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28220,7 +28237,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28470,12 +28487,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28486,7 +28503,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28545,7 +28562,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28606,7 +28623,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28627,12 +28644,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28640,7 +28657,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28698,8 +28715,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28744,8 +28761,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28946,6 +28963,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28989,10 +29011,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29235,9 +29257,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29257,7 +29279,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29295,12 +29317,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29316,11 +29338,11 @@ msgstr "Hívásindítás"
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29328,8 +29350,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29348,7 +29370,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29364,7 +29386,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29463,8 +29485,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29543,7 +29565,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29568,7 +29590,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29613,10 +29635,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29783,6 +29801,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29797,12 +29821,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29881,7 +29905,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29889,7 +29913,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29970,7 +29994,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30067,11 +30091,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30139,7 +30163,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30205,12 +30229,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30281,9 +30305,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30315,11 +30339,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30380,15 +30404,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30438,7 +30457,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30468,7 +30487,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30669,7 +30688,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30758,8 +30777,8 @@ msgstr "Percek"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30767,15 +30786,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30805,7 +30824,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30813,7 +30832,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30850,7 +30869,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31099,11 +31118,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31125,11 +31144,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31138,7 +31157,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31225,7 +31244,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31269,7 +31288,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31278,7 +31297,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31584,7 +31603,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31761,7 +31780,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Új munkahely"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31815,7 +31834,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31828,7 +31847,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31841,7 +31860,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31857,7 +31876,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31892,7 +31911,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31921,19 +31940,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31963,7 +31982,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32157,7 +32176,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32181,7 +32200,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32233,7 +32252,7 @@ msgstr ""
#: banking/src/components/common/LinkFieldCombobox.tsx:268
msgid "No results found."
-msgstr ""
+msgstr "Nincs találat."
#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:225
#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:208
@@ -32252,7 +32271,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32285,7 +32304,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32330,8 +32349,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32432,7 +32451,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32486,7 +32505,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32494,7 +32513,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32677,6 +32696,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32736,18 +32760,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32875,7 +32899,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32915,7 +32939,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32934,7 +32958,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32971,7 +32995,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33188,8 +33212,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33212,7 +33236,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33245,7 +33269,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33281,16 +33305,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33308,12 +33332,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33345,7 +33372,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33388,15 +33415,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33421,7 +33448,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33436,11 +33463,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33456,9 +33483,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33631,7 +33658,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33781,7 +33808,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33897,7 +33924,7 @@ msgstr "Uncia/gallon (USA)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33935,7 +33962,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33954,6 +33981,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33989,7 +34017,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33999,7 +34027,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34059,17 +34087,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34089,11 +34122,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34393,7 +34426,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34414,7 +34447,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34450,7 +34483,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34468,11 +34501,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34578,7 +34611,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34615,7 +34648,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34656,7 +34689,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34722,7 +34755,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34816,7 +34849,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34943,7 +34976,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35156,7 +35189,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35183,7 +35216,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35216,7 +35249,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35368,7 +35401,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35477,7 +35510,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35528,7 +35561,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35562,7 +35595,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35709,7 +35742,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35934,7 +35967,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35999,7 +36032,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36028,7 +36061,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36084,6 +36117,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36098,6 +36132,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36155,7 +36190,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36230,8 +36265,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36278,10 +36313,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36290,9 +36329,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36322,6 +36370,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36431,7 +36487,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36995,8 +37051,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37032,7 +37088,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37080,7 +37136,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37088,7 +37144,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37096,7 +37152,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37130,7 +37186,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37155,11 +37211,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37167,11 +37227,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37183,11 +37243,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37195,11 +37255,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37207,7 +37267,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37231,7 +37291,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37243,20 +37303,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37264,15 +37324,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37280,7 +37340,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37289,7 +37349,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37305,7 +37365,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37325,7 +37385,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37342,7 +37402,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37362,7 +37422,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37390,7 +37450,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37458,11 +37518,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37521,7 +37581,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37537,7 +37597,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37567,7 +37627,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37576,8 +37636,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37609,11 +37669,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37629,7 +37689,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37646,7 +37706,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37670,7 +37730,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37743,11 +37803,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37767,7 +37831,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37825,7 +37889,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37854,7 +37918,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37863,11 +37927,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37879,7 +37943,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37909,7 +37973,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37927,7 +37991,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37973,7 +38037,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38010,23 +38074,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38055,7 +38119,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38063,7 +38127,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38075,15 +38139,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38122,7 +38186,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38144,7 +38208,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38157,7 +38221,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38262,8 +38326,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38328,7 +38392,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38346,7 +38410,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38468,10 +38532,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38545,18 +38605,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38729,6 +38794,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38752,6 +38818,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38803,7 +38870,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39158,7 +39225,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39167,8 +39234,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39176,7 +39243,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39279,10 +39346,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39336,7 +39399,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39417,6 +39480,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39512,8 +39579,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39578,7 +39645,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39792,7 +39859,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39836,7 +39903,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39967,7 +40034,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40113,7 +40180,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40128,7 +40195,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40200,8 +40267,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40524,7 +40592,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40539,7 +40607,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40554,7 +40622,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40688,7 +40756,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40786,6 +40854,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40795,10 +40864,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40854,6 +40919,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40902,6 +40968,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41010,11 +41077,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41065,8 +41132,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41121,8 +41188,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Lekérendő mennyiség"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41358,17 +41425,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41382,7 +41449,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41514,7 +41581,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41649,7 +41716,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41659,21 +41726,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Mennyiség nagyobbnak kell lennie, mint 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41696,7 +41763,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41815,11 +41882,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42126,7 +42193,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42292,7 +42359,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42331,12 +42398,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42345,7 +42406,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42526,7 +42587,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42987,7 +43048,7 @@ msgstr "Hivatkozás #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43151,11 +43212,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43317,7 +43378,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43375,7 +43436,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43439,7 +43500,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43456,7 +43517,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43579,7 +43640,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43824,7 +43885,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44005,7 +44066,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44050,7 +44111,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44094,7 +44155,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44164,14 +44225,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44180,13 +44241,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44452,7 +44513,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44477,8 +44538,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44553,7 +44614,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44589,7 +44650,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44687,8 +44748,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44920,7 +44981,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44939,8 +45000,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45120,21 +45181,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45155,7 +45216,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45216,31 +45277,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45290,11 +45351,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45302,7 +45363,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45319,7 +45380,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45343,22 +45404,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45387,7 +45448,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45395,7 +45456,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45423,7 +45484,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45464,7 +45525,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45476,10 +45537,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45501,11 +45558,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45527,15 +45584,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45543,7 +45600,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45559,18 +45616,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45609,7 +45666,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45629,19 +45686,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45653,19 +45710,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45681,6 +45738,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "{0} sor: Az állapotnak {1} kell lennie, ha a számlát diszkontáljuk. {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45697,7 +45758,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45710,7 +45771,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45722,7 +45783,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45758,7 +45819,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45774,7 +45835,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45875,7 +45936,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45883,7 +45944,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45891,7 +45952,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45923,11 +45984,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45944,7 +46005,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45964,7 +46025,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45972,7 +46033,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46017,16 +46078,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46042,7 +46103,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46066,7 +46127,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46134,7 +46195,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46146,10 +46207,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46158,11 +46215,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46174,11 +46231,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46186,11 +46243,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46203,11 +46260,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46219,7 +46276,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46265,7 +46322,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46273,7 +46330,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46480,8 +46537,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46503,8 +46560,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46518,18 +46575,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46553,8 +46615,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46723,11 +46785,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46925,25 +46987,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46987,6 +47049,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46999,7 +47062,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47105,7 +47168,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47198,7 +47261,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47222,7 +47285,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47341,7 +47404,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47373,12 +47436,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47620,7 +47683,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47739,8 +47802,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47778,7 +47841,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47820,7 +47883,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47856,7 +47919,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47881,7 +47944,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47919,7 +47982,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -47994,7 +48057,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48017,7 +48080,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48033,8 +48096,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48051,7 +48114,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48083,7 +48146,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48100,7 +48163,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48108,6 +48171,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48135,7 +48204,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48166,30 +48235,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48442,7 +48511,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48462,7 +48531,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48507,7 +48576,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48647,7 +48716,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48717,7 +48786,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49131,7 +49200,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49150,8 +49219,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49318,11 +49387,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49354,7 +49423,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49465,7 +49534,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49485,6 +49554,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49677,7 +49750,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49715,7 +49788,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49858,8 +49931,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50191,7 +50264,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50236,7 +50309,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50278,8 +50351,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50303,7 +50376,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50367,7 +50440,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50376,11 +50449,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50438,7 +50511,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50446,23 +50524,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50504,7 +50581,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50512,7 +50589,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50536,7 +50613,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50548,6 +50625,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50620,13 +50702,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50647,8 +50729,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50683,7 +50765,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50812,7 +50894,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50842,6 +50924,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50850,8 +50933,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50951,6 +51034,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50960,10 +51053,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51027,7 +51116,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51035,8 +51124,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51114,8 +51203,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51218,8 +51307,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51231,7 +51320,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51243,7 +51332,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51268,9 +51357,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51281,7 +51370,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51306,10 +51395,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51337,7 +51426,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51377,7 +51466,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51492,7 +51581,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51625,11 +51714,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51684,14 +51773,14 @@ msgstr "Kő"
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51749,7 +51838,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52011,7 +52100,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52100,7 +52189,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52121,7 +52210,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52275,7 +52364,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52299,7 +52388,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52459,7 +52548,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52557,6 +52646,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52566,7 +52656,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52581,6 +52671,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52665,7 +52756,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52700,8 +52791,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52753,7 +52842,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52782,7 +52871,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52871,7 +52960,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52888,17 +52977,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52911,8 +52995,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53003,7 +53087,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53033,7 +53117,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53054,10 +53138,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53205,7 +53295,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53213,24 +53303,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53347,8 +53436,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53380,7 +53469,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53402,7 +53490,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53418,6 +53505,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53429,8 +53517,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53504,7 +53592,7 @@ msgstr "Adó kulcsa %"
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53522,7 +53610,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53537,7 +53625,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53856,7 +53944,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53889,8 +53977,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53941,13 +54029,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54129,7 +54217,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54228,7 +54316,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "A 'Csomagból száma' mezőnek sem üres, sem kisebb mint 1 érték nem lehet."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54281,7 +54369,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54297,7 +54386,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54333,7 +54422,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54341,7 +54430,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54361,7 +54454,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54394,7 +54487,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54435,11 +54528,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54460,7 +54553,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54487,7 +54580,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54545,7 +54638,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54557,6 +54650,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54598,7 +54697,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54614,7 +54713,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54647,7 +54746,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54669,11 +54768,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54721,15 +54820,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54737,19 +54836,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54757,7 +54856,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54773,7 +54872,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54802,7 +54901,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54842,7 +54941,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54898,11 +54997,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54936,7 +55035,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ez a dokumentum túlcsordult ennyivel {0} {1} erre a tételre {4}. Létrehoz egy másik {3} ugyanazon {2} helyett?"
@@ -55039,11 +55138,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55112,7 +55211,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55120,15 +55219,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55136,7 +55235,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55205,7 +55304,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55316,7 +55415,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55425,7 +55524,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55652,11 +55751,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55699,11 +55802,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55711,7 +55814,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55736,7 +55839,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55886,7 +55989,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55993,12 +56096,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56300,7 +56403,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56312,7 +56415,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56595,7 +56698,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56770,7 +56873,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56794,11 +56897,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56903,7 +57006,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56950,11 +57054,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57135,8 +57244,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57400,6 +57509,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57415,7 +57525,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57476,7 +57586,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57489,7 +57599,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57561,12 +57671,12 @@ msgstr "Nem található árfolyam erre {0}eddig {1} a kulcs dátum: {2}. Kérjü
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57648,7 +57758,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57667,7 +57777,7 @@ msgstr "Egység"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57684,7 +57794,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57829,7 +57939,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57869,12 +57979,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58050,7 +58160,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58129,11 +58239,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58335,7 +58445,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58377,7 +58487,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58441,6 +58551,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58463,8 +58578,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58474,7 +58589,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58484,12 +58599,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58683,7 +58798,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58699,14 +58813,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58714,19 +58826,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58736,7 +58848,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58750,7 +58862,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58762,7 +58874,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58881,12 +58993,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58905,7 +59017,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58923,7 +59035,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58934,7 +59046,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59228,7 +59340,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59300,7 +59412,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59374,7 +59486,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59401,7 +59513,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59581,8 +59693,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59607,7 +59719,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59744,11 +59856,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59838,7 +59950,7 @@ msgstr "Hullámhossz kilométerben"
msgid "Wavelength In Megametres"
msgstr "Hullámhossz megaméterben"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59907,7 +60019,7 @@ msgstr "Weboldal:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60037,7 +60149,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60047,7 +60159,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60057,11 +60169,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60206,7 +60318,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60243,7 +60355,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60277,7 +60389,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60318,19 +60430,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60339,16 +60455,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60373,14 +60489,14 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
#. Label of the workday (Select) field in DocType 'Service Day'
#: erpnext/support/doctype/service_day/service_day.json
msgid "Workday"
-msgstr ""
+msgstr "Munkanap"
#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:137
msgid "Workday {0} has been repeated."
@@ -60421,7 +60537,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60512,14 +60628,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60624,7 +60740,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60680,11 +60796,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60692,7 +60808,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60720,7 +60836,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60761,11 +60877,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60789,7 +60905,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60850,7 +60966,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60862,19 +60978,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60886,7 +61002,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60910,7 +61026,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60926,7 +61042,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60973,11 +61089,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60999,11 +61115,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61044,7 +61160,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61193,7 +61309,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61226,7 +61342,7 @@ msgstr ""
msgid "reconciled"
msgstr "egyeztetett"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "visszaküldött"
@@ -61261,7 +61377,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "eladott"
@@ -61269,8 +61385,8 @@ msgstr "eladott"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61288,7 +61404,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61315,7 +61431,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61337,7 +61453,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61345,7 +61461,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61353,7 +61469,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61386,11 +61502,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61398,7 +61514,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61486,11 +61602,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61502,7 +61618,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61511,7 +61627,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61536,7 +61652,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61558,7 +61674,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61566,12 +61682,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61579,7 +61695,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61587,7 +61703,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61595,7 +61711,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61635,27 +61751,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61663,7 +61779,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61679,7 +61795,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61692,7 +61808,7 @@ msgstr "{0}-tól {1}-ig"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61708,16 +61824,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61729,7 +61845,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61745,7 +61861,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61783,8 +61899,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61894,7 +62010,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61943,8 +62059,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61964,11 +62080,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61976,11 +62092,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61992,7 +62108,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} törlik vagy zárva."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62004,7 +62120,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/id.po b/erpnext/locale/id.po
index 6e236ccc991..eb2689c4ec5 100644
--- a/erpnext/locale/id.po
+++ b/erpnext/locale/id.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Sub Rakitan"
msgid " Summary"
msgstr " Ringkasan"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Item Dari Pelanggan\" tidak boleh sekaligus menjadi Item yang Dibeli"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Item Dari Pelanggan\" tidak boleh memiliki Tarif Valuasi"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Aset Tetap\" tidak dapat dibatalkan centangnya, karena sudah ada catatan Aset untuk item ini"
@@ -268,11 +268,11 @@ msgstr "% Material yang Dikirim pada Pick List ini"
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Akun' di bagian Akuntansi Pelanggan {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Izinkan Beberapa Pesanan Penjualan terhadap Pesanan Pembelian Pelanggan'"
@@ -284,7 +284,7 @@ msgstr "'Berdasarkan' dan 'Kelompokkan Menurut' tidak boleh sama"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Hari Sejak Pesanan Terakhir' harus lebih besar dari atau sama dengan nol"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Akun Default {0}' di Perusahaan {1}"
@@ -302,7 +302,7 @@ msgstr "'Tanggal Awal' wajib diisi"
msgid "'From Date' must be after 'To Date'"
msgstr "'Tanggal Awal harus sebelum 'Tanggal Akhir'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Memiliki No. Seri' tidak bisa 'Ya' untuk barang non-stok"
@@ -314,9 +314,9 @@ msgstr "'Inspeksi Wajib sebelum Pengiriman' telah dinonaktifkan untuk item {0},
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Inspeksi Wajib sebelum Pembelian' telah dinonaktifkan untuk item {0}, tidak perlu membuat QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Saldo Awal'"
@@ -346,8 +346,8 @@ msgstr "Akun '{0}' sudah digunakan oleh {1}. Gunakan akun lain."
msgid "'{0}' has been already added."
msgstr "'{0}' sudah ditambahkan."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' harus dalam mata uang perusahaan {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 Hari"
msgid "90 Above"
msgstr "90 ke Atas"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Pengaturan
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -820,7 +820,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -883,7 +883,7 @@ msgstr ""
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 "Tingkat Daftar Harga belum diatur sebagai dapat diedit di Pengaturan Penjualan. Dalam skenario ini, mengatur Perbarui Daftar Harga Berdasarkan ke Tingkat Daftar Harga akan mencegah pembaruan otomatis Harga Barang.
Apakah Anda yakin ingin melanjutkan?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -966,11 +966,11 @@ msgstr "Pintasan Anda\n"
msgid "Your Shortcuts "
msgstr "Pintasan Anda "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Total Keseluruhan: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Jumlah Terutang: {0}"
@@ -1040,7 +1040,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Grup Pelanggan dengan nama yang sama sudah ada, silakan ubah Nama Pelanggan atau ganti nama Grup Pelanggan"
@@ -1204,11 +1204,11 @@ msgstr "Singkatan"
msgid "Abbreviation"
msgstr "Singkatan"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Singkatan sudah digunakan untuk perusahaan lain"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Singkatan wajib diisi"
@@ -1216,7 +1216,7 @@ msgstr "Singkatan wajib diisi"
msgid "Abbreviation: {0} must appear only once"
msgstr "Singkatan: {0} hanya boleh muncul sekali"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Kuantitas Diterima dalam UOM Stok"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Jumlah Diterima"
@@ -1306,7 +1306,7 @@ msgstr "Kunci Akses diperlukan untuk Penyedia Layanan: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Menurut CEFACT/ICG/2010/IC013 atau CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Menurut BOM {0}, Item '{1}' tidak ada dalam entri stok."
@@ -1424,8 +1424,8 @@ msgstr "Kepala Akun"
msgid "Account Manager"
msgstr "Manajer Akun"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Akun Tidak Ada"
@@ -1443,7 +1443,7 @@ msgstr "Akun Tidak Ada"
msgid "Account Name"
msgstr "Nama Akun"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Akun tidak ditemukan"
@@ -1456,7 +1456,7 @@ msgstr "Akun tidak ditemukan"
msgid "Account Number"
msgstr "Nomor Akun"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Nomor Akun {0} sudah digunakan di akun {1}"
@@ -1495,7 +1495,7 @@ msgstr "Subtipe Akun"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1511,11 +1511,11 @@ msgstr "Tipe Akun"
msgid "Account Value"
msgstr "Nilai Akun"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Saldo akun sudah Kredit, Anda tidak diizinkan mengatur 'Saldo Wajib' menjadi 'Debit'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Saldo akun sudah Debit, Anda tidak diizinkan mengatur 'Saldo Wajib' menjadi 'Kredit'"
@@ -1582,15 +1582,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Akun dengan sub-akun tidak dapat dikonversi menjadi buku besar"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Akun dengan sub-akun tidak dapat ditetapkan sebagai buku besar"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Akun yang telah mengandung transaksi tidak dapat dikonversi menjadi grup."
@@ -1598,8 +1598,8 @@ msgstr "Akun yang telah mengandung transaksi tidak dapat dikonversi menjadi grup
msgid "Account with existing transaction can not be deleted"
msgstr "Akun yang telah mengandung transaksi tidak dapat dihapus"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Akun yang telah mengandung transaksi tidak dapat dikonversi menjadi buku besar"
@@ -1607,11 +1607,11 @@ msgstr "Akun yang telah mengandung transaksi tidak dapat dikonversi menjadi buku
msgid "Account {0} added multiple times"
msgstr "Akun {0} ditambahkan beberapa kali"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1619,11 +1619,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Akun {0} bukan milik perusahaan: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Akun {0} tidak ada"
@@ -1639,15 +1639,15 @@ msgstr "Akun {0} tidak cocok dengan Perusahaan {1} dalam Mode Akun: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Akun {0} bukan milik Perusahaan: {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Akun {0} ada di perusahaan induk {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Akun {0} ditambahkan di perusahaan anak {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1655,7 +1655,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr "Akun {0} dibekukan"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Akun {0} tidak valid. Mata Uang Akun harus {1}"
@@ -1663,19 +1663,19 @@ msgstr "Akun {0} tidak valid. Mata Uang Akun harus {1}"
msgid "Account {0} should be of type Expense"
msgstr "Akun {0} harus bertipe Beban"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Akun {0}: Akun Induk {1} tidak bisa menjadi buku besar"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Akun {0}: Akun induk {1} bukan milik perusahaan: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Akun {0}: Akun induk {1} tidak ada"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Akun {0}: Anda tidak dapat menetapkannya sebagai Akun Induk"
@@ -1691,7 +1691,7 @@ msgstr "Akun: {0} hanya dapat diperbarui melalui Transaksi Persediaan"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Akun: {0} tidak diizinkan di bawah Entri Pembayaran"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Account: {0} dengan mata uang: {1} tidak dapat dipilih"
@@ -1976,8 +1976,8 @@ msgstr "Entri Akuntansi"
msgid "Accounting Entry for Asset"
msgstr "Entri Akuntansi untuk Aset"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Entri Akuntansi untuk LCV dalam Entri Stok {0}"
@@ -2001,8 +2001,8 @@ msgstr "Entri Akuntansi untuk Layanan"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Entri Akuntansi untuk Persediaan"
@@ -2011,7 +2011,7 @@ msgstr "Entri Akuntansi untuk Persediaan"
msgid "Accounting Entry for {0}"
msgstr "Entri Akuntansi untuk {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Entri Akuntansi untuk {0}: {1} hanya dapat dibuat dalam mata uang: {2}"
@@ -2066,7 +2066,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2079,14 +2078,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Akun"
@@ -2116,8 +2114,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2217,15 +2215,15 @@ msgstr "Tabel Akun tidak boleh kosong."
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Akumulasi Penyusutan"
@@ -2390,7 +2388,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2514,7 +2512,7 @@ msgstr "Tanggal Selesai Aktual"
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2636,7 +2634,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr "Kuantitas aktual di stok"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Pajak tipe Aktual tidak dapat dimasukkan dalam tarif Item di baris {0}"
@@ -2645,7 +2643,7 @@ msgstr "Pajak tipe Aktual tidak dapat dimasukkan dalam tarif Item di baris {0}"
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Tambah / Edit Harga"
@@ -3144,7 +3142,7 @@ msgstr "Informasi Tambahan"
msgid "Additional Information updated successfully."
msgstr "Informasi Tambahan berhasil diperbarui."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3167,7 +3165,7 @@ msgstr "Biaya Operasional Tambahan"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3175,11 +3173,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Informasi tambahan mengenai pelanggan."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3325,11 +3318,6 @@ msgstr "Alamat harus ditautkan ke Perusahaan. Harap tambahkan baris untuk Perusa
msgid "Address used to determine Tax Category in transactions"
msgstr "Alamat yang digunakan untuk menentukan Kategori Pajak dalam transaksi"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3342,8 +3330,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Beban Administrasi"
@@ -3411,7 +3399,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Pembayaran Uang Muka"
@@ -3531,7 +3519,7 @@ msgstr "Akun Lawan"
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3673,11 +3661,11 @@ msgstr "Umur"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Umur (Hari)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3827,21 +3815,21 @@ msgstr "Semua Grup Pelanggan"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Semua Departemen"
@@ -3921,7 +3909,7 @@ msgstr "Semua Grup Pemasok"
msgid "All Territories"
msgstr "Semua Wilayah"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Semua Gudang"
@@ -3935,6 +3923,11 @@ msgstr "Semua alokasi telah berhasil direkonsiliasi"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Semua komunikasi termasuk dan di atas ini akan dipindahkan ke Isu baru"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Semua barang sudah diminta"
@@ -3943,23 +3936,23 @@ msgstr "Semua barang sudah diminta"
msgid "All items have already been Invoiced/Returned"
msgstr "Semua item sudah Ditagih/Dikembalikan"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Semua barang sudah diterima"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Semua item telah ditransfer untuk Perintah Kerja ini."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3973,11 +3966,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr "Semua barang sudah dikembalikan."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Semua item ini telah Ditagih/Dikembalikan"
@@ -3996,7 +3989,7 @@ msgstr "Alokasi"
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Alokasikan Jumlah Pembayaran"
@@ -4006,7 +3999,7 @@ msgstr "Alokasikan Jumlah Pembayaran"
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -4036,7 +4029,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4093,7 +4086,7 @@ msgstr "Jml Dialokasikan"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4157,7 +4150,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4280,16 +4273,6 @@ msgstr "Izinkan Mengatur Ulang Perjanjian Tingkat Layanan dari Pengaturan Dukung
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4415,6 +4398,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4491,10 +4484,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Diizinkan Untuk Bertransaksi Dengan"
@@ -4506,6 +4497,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4547,8 +4543,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4789,7 +4785,7 @@ msgstr ""
msgid "Amount"
msgstr "Jumlah"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4923,12 +4919,12 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Jumlah {0} {1} terhadap {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Jumlah {0} {1} dipotong terhadap {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4973,11 +4969,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Terjadi kesalahan selama proses pembaruan"
@@ -5517,7 +5513,7 @@ msgstr "Karena bidang {0} diaktifkan, bidang {1} wajib diisi."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Karena bidang {0} diaktifkan, nilai bidang {1} harus lebih dari 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5529,7 +5525,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Karena Item Sub Rakitan mencukupi, Perintah Kerja tidak diperlukan untuk Gudang {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Karena bahan baku mencukupi, Permintaan Material tidak diperlukan untuk Gudang {0}."
@@ -5667,7 +5663,7 @@ msgstr "Akun Kategori Aset"
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Kategori Aset wajib diisi untuk item Aset Tetap"
@@ -5844,8 +5840,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5945,7 +5941,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Aset tidak dapat dibatalkan, karena sudah {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5977,7 +5973,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5985,20 +5981,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Aset dihapusbukukan melalui Entri Jurnal {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -6018,7 +6014,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Aset {0} tidak dapat dihapusbukukan, karena sudah {1}"
@@ -6059,7 +6055,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Aset {0} harus disubmit"
@@ -6109,7 +6105,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6170,7 +6166,7 @@ msgstr "Setidaknya satu dari Modul yang Berlaku harus dipilih"
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6178,20 +6174,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "Pada baris #{0}: ID urutan {1} tidak boleh kurang dari ID urutan baris sebelumnya {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6274,11 +6266,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabel atribut wajib diisi"
@@ -6286,19 +6278,19 @@ msgstr "Tabel atribut wajib diisi"
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Atribut {0} dipilih beberapa kali dalam Tabel Atribut"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atribut"
@@ -6510,7 +6502,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Dokumen ulang otomatis diperbarui"
@@ -6622,7 +6614,7 @@ msgstr "Tanggal Siap Digunakan"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Jml Tersedia"
@@ -6711,10 +6703,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "Tanggal siap digunakan wajib diisi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Jumlah tersedia adalah {0}, Anda memerlukan {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Tersedia {0}"
@@ -6723,8 +6711,8 @@ msgstr "Tersedia {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Tanggal Siap Digunakan harus setelah Tanggal Pembelian"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Usia Rata-rata"
@@ -6748,7 +6736,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Tarif Rata-rata"
@@ -6772,7 +6762,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6830,7 +6820,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6853,7 +6843,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} dan BOM 2 {1} tidak boleh sama"
@@ -6925,11 +6915,6 @@ msgstr "Item Rincian BOM"
msgid "BOM ID"
msgstr "ID BOM"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7083,7 +7068,7 @@ msgstr "Item Website BOM"
msgid "BOM Website Operation"
msgstr "Operasi Website BOM"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7151,7 +7136,7 @@ msgstr "Entri Stok Bertanggal Mundur"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7215,7 +7200,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Jml Saldo"
@@ -7280,7 +7265,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Nilai Saldo"
@@ -7436,8 +7421,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7552,8 +7537,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Akun Bank Overdraft"
@@ -7726,11 +7711,11 @@ msgstr "Perbankan"
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Kode Batang {0} sudah digunakan pada Item {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Kode Batang {0} bukan kode {1} yang valid"
@@ -7887,7 +7872,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7962,7 +7947,7 @@ msgstr "Status Kadaluarsa Item Batch"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8051,13 +8036,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8074,7 +8059,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8097,12 +8082,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Batch {0} dari Barang {1} telah kedaluwarsa."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Batch {0} dari Barang {1} dinonaktifkan."
@@ -8157,7 +8142,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8166,7 +8151,7 @@ msgstr "Tanggal Tagihan"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8180,11 +8165,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Bill of Material"
@@ -8285,7 +8272,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8537,6 +8524,16 @@ msgstr "Blokir Faktur"
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8633,7 +8630,7 @@ msgstr "Dipesan"
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8892,8 +8889,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Bangunan"
@@ -9054,14 +9051,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9111,8 +9108,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Akun CWIP"
@@ -9367,7 +9364,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr "Dapat disetujui oleh {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9400,13 +9397,13 @@ msgstr "Tidak dapat memfilter berdasarkan No. Voucher, jika dikelompokkan berdas
msgid "Can only make payment against unbilled {0}"
msgstr "Hanya dapat melakukan pembayaran terhadap {0} yang belum ditagih"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Dapat merujuk baris hanya jika jenis biaya adalah 'Pada Jumlah Baris Sebelumnya' atau 'Total Baris Sebelumnya'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9448,7 +9445,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Tidak Dapat Menghitung Waktu Kedatangan karena Alamat Pengemudi Tidak Ada."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9456,9 +9453,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9486,7 +9483,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Tidak dapat menjadi item aset tetap karena Buku Besar Persediaan telah dibuat."
@@ -9506,7 +9503,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Tidak dapat membatalkan karena Entri Stok {0} yang telah disubmit sudah ada."
@@ -9526,15 +9523,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Tidak dapat membatalkan transaksi untuk Perintah Kerja yang Sudah Selesai."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Tidak dapat mengubah Atribut setelah transaksi stok. Buat Item baru dan transfer stok ke Item baru."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9542,11 +9539,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Tidak dapat mengubah Tanggal Berhenti Layanan untuk item di baris {0}."
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Tidak dapat mengubah properti Varian setelah transaksi stok. Anda harus membuat Item baru untuk melakukan ini."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Tidak dapat mengubah mata uang default perusahaan, karena sudah ada transaksi. Transaksi harus dibatalkan untuk mengubah mata uang default."
@@ -9562,11 +9559,11 @@ msgstr "Tidak dapat mengonversi Pusat Biaya menjadi buku besar karena memiliki n
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Tidak dapat mengkonversi ke Grup karena Tipe Akun dipilih."
@@ -9574,7 +9571,7 @@ msgstr "Tidak dapat mengkonversi ke Grup karena Tipe Akun dipilih."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9600,7 +9597,7 @@ msgstr "Tidak dapat mendeklarasikan sebagai hilang, karena Quotation telah dibua
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Tidak bisa mengurangi ketika kategori adalah untuk 'Penilaian' atau 'Penilaian dan Total'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9608,12 +9605,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Tidak dapat menghapus No. Seri {0}, karena digunakan dalam transaksi persediaan"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9625,7 +9622,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9633,20 +9630,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Tidak dapat memastikan pengiriman dengan Serial No karena Item {0} ditambahkan dengan dan tanpa Pastikan Pengiriman dengan Serial No."
@@ -9662,7 +9659,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr "Tidak dapat menemukan Item dengan Barcode ini"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9670,15 +9667,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9686,12 +9683,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Tidak dapat merujuk nomor baris yang lebih besar dari atau sama dengan nomor baris saat ini untuk jenis Biaya ini"
@@ -9704,14 +9701,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9725,7 +9722,7 @@ msgstr "Tidak dapat ditetapkan sebagai Hilang sebagai Sales Order dibuat."
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Tidak dapat mengatur otorisasi atas dasar Diskon untuk {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Tidak dapat menetapkan beberapa Default Item untuk sebuah perusahaan."
@@ -9733,11 +9730,11 @@ msgstr "Tidak dapat menetapkan beberapa Default Item untuk sebuah perusahaan."
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Tidak dapat menetapkan jumlah kurang dari jumlah yang dikirim."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Tidak dapat menetapkan jumlah kurang dari jumlah yang diterima."
@@ -9749,7 +9746,7 @@ msgstr "Tidak dapat mengatur bidang {0} untuk menyalin dalam varian"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9782,7 +9779,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Perencanaan Kapasitas Kesalahan, waktu mulai yang direncanakan tidak dapat sama dengan waktu akhir"
@@ -9801,13 +9798,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Modal / Saham"
@@ -10024,7 +10021,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr "Nilai Aset berdasarkan kategori"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Peringatan"
@@ -10129,7 +10126,7 @@ msgstr "Ubah Tanggal Rilis"
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Ubah jenis akun menjadi Piutang atau pilih akun lain."
@@ -10139,7 +10136,7 @@ msgstr "Ubah jenis akun menjadi Piutang atau pilih akun lain."
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10147,7 +10144,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Mengubah Grup Pelanggan untuk Pelanggan yang dipilih tidak diizinkan."
@@ -10162,7 +10159,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10216,7 +10213,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10359,7 +10356,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Cek / Tanggal Referensi"
@@ -10417,7 +10414,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10469,6 +10466,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10611,11 +10613,11 @@ msgstr "Dokumen Tertutup"
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Agar tertutup tidak dapat dibatalkan. Unclose untuk membatalkan."
@@ -10867,11 +10869,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Komisi Penjualan"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10902,7 +10910,7 @@ msgstr "Slot Waktu Media Komunikasi"
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Cetak Item Ringkas"
@@ -11301,8 +11309,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11355,7 +11363,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11444,18 +11452,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11551,7 +11561,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Mata uang perusahaan dari kedua perusahaan harus sesuai untuk Transaksi Antar Perusahaan."
@@ -11586,7 +11596,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Nama perusahaan tidak sama"
@@ -11625,12 +11635,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Perusahaan {0} tidak ada"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11672,7 +11682,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11719,12 +11729,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Jml Produksi Selesai tidak boleh lebih besar dari Jml yang Akan Diproduksi"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Jumlah Produksi Selesai"
@@ -11913,7 +11923,7 @@ msgstr "Pertimbangkan Dimensi Akuntansi"
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12107,7 +12117,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr "Qty Dikonsumsi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12136,7 +12146,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12264,7 +12274,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12390,6 +12400,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12450,7 +12465,7 @@ msgstr "Faktor konversi"
msgid "Conversion Rate"
msgstr "Tingkat konversi"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Faktor konversi untuk Unit default Ukur harus 1 berturut-turut {0}"
@@ -12458,15 +12473,15 @@ msgstr "Faktor konversi untuk Unit default Ukur harus 1 berturut-turut {0}"
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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12543,13 +12558,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12580,13 +12595,13 @@ msgstr ""
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "Alokasi Biaya"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "Alokasi Biaya %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12716,7 +12731,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12849,7 +12864,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr "Pusat Biaya: {0} tidak ada"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Pusat Biaya"
@@ -12892,17 +12907,13 @@ msgstr "Biaya Item Terkirim"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Harga Pokok Penjualan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Biaya Item Dikeluarkan"
@@ -12982,7 +12993,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Tidak dapat membuat Pelanggan secara otomatis karena bidang wajib berikut kosong:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Tidak dapat membuat Nota Kredit secara otomatis, harap batalkan centang 'Terbitkan Nota Kredit' dan kirim ulang"
@@ -13171,7 +13182,7 @@ msgstr "Buat Faktur"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Buat Kartu Kerja"
@@ -13203,7 +13214,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13270,7 +13281,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Buat Daftar Ambil"
@@ -13415,7 +13426,7 @@ msgstr "Buat Tugas"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Buat Template Pajak"
@@ -13453,12 +13464,12 @@ msgstr ""
msgid "Create Users"
msgstr "Buat Pengguna"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Buat Varian"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Buat Varian"
@@ -13489,12 +13500,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Buat transaksi stok masuk untuk Barang tersebut."
@@ -13528,7 +13539,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13561,7 +13572,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Membuat Dimensi..."
@@ -13754,7 +13765,7 @@ msgstr ""
msgid "Credit Limit"
msgstr "Batas Kredit"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13764,12 +13775,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13801,7 +13806,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13829,7 +13834,7 @@ msgstr "Nota Kredit Diterbitkan"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Nota Kredit {0} telah dibuat secara otomatis"
@@ -13837,7 +13842,7 @@ msgstr "Nota Kredit {0} telah dibuat secara otomatis"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13846,20 +13851,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Batas kredit telah terlampaui untuk pelanggan {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Batas kredit sudah ditentukan untuk Perusahaan {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Batas kredit tercapai untuk pelanggan {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13867,8 +13872,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Kreditur"
@@ -14038,7 +14043,7 @@ msgstr "Kurs Mata Uang harus berlaku untuk Pembelian atau Penjualan."
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Mata Uang tidak dapat diubah setelah membuat entri menggunakan mata uang lain"
@@ -14048,7 +14053,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Mata Uang untuk {0} harus {1}"
@@ -14131,8 +14136,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Piutang Lancar"
@@ -14199,6 +14204,11 @@ msgstr "Persediaan saat ini"
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14294,7 +14304,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14401,7 +14410,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14490,8 +14498,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr "Alamat dan Kontak Pelanggan"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14505,7 +14513,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14588,6 +14596,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14610,7 +14619,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14627,6 +14636,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14670,7 +14680,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "LPO pelanggan"
@@ -14722,7 +14732,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14828,7 +14838,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Layanan Pelanggan"
@@ -14885,9 +14895,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr "Pelanggan diperlukan untuk 'Diskon Berdasarkan Pelanggan'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Pelanggan {0} bukan bagian dari proyek {1}"
@@ -14999,7 +15009,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Ringkasan Proyek Harian untuk {0}"
@@ -15090,7 +15100,7 @@ msgstr "Tanggal Lahir tidak boleh melewati hari ini."
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Tanggal Mulai harus setelah Tanggal Pendirian"
@@ -15316,7 +15326,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15344,13 +15354,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Debit Ke wajib diisi"
@@ -15478,8 +15488,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15505,14 +15514,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15527,19 +15536,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "BOM Default ({0}) harus aktif untuk item ini atau templatenya"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "BOM default untuk {0} tidak ditemukan"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "BOM Default tidak ditemukan untuk Item {0} dan Proyek {1}"
@@ -15592,9 +15601,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15710,6 +15717,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15745,23 +15762,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15884,15 +15897,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Satuan Ukur Default untuk Barang {0} tidak dapat diubah secara langsung karena Anda telah melakukan transaksi dengan UOM lain. Anda perlu membuat Barang baru untuk menggunakan UOM Default yang berbeda."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Satuan Ukur Default untuk Varian '{0}' harus sama seperti di Template '{1}'."
@@ -15944,7 +15957,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -16035,6 +16048,12 @@ msgstr "Tentukan tipe Proyek."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16117,12 +16136,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Hapus semua Transaksi untuk Perusahaan ini"
@@ -16143,8 +16162,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16255,11 +16274,11 @@ msgstr "Qty Terkirim"
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16340,7 +16359,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16400,11 +16419,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr "Tren pengiriman Note"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Nota pengiriman {0} tidak Terkirim"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Catatan pengiriman"
@@ -16490,10 +16509,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Gudang pengiriman diperlukan untuk persediaan barang {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16613,8 +16628,8 @@ msgstr "Jumlah yang Disusutkan"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16707,7 +16722,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16865,15 +16880,15 @@ msgstr ""
msgid "Difference Account"
msgstr "Akun Selisih"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Akun Selisih harus merupakan akun jenis Aset/Kewajiban, karena Rekonsiliasi Stok ini adalah Entri Pembuka"
@@ -16985,15 +17000,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Beban Langsung"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Pendapatan Langsung"
@@ -17074,6 +17089,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17110,11 +17130,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Aturan harga dinonaktifkan karena {} ini adalah transfer internal"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17130,7 +17150,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17138,15 +17158,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17433,7 +17453,7 @@ msgstr ""
msgid "Dislikes"
msgstr "Tidak Suka"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Pengiriman"
@@ -17514,7 +17534,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17628,8 +17648,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Dividen Dibayarkan"
@@ -17691,7 +17711,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Apakah Anda yakin ingin memulihkan aset yang telah dihapus ini?"
@@ -17715,7 +17735,7 @@ msgstr "Apakah Anda ingin memberi tahu semua pelanggan melalui email?"
msgid "Do you want to submit the material request"
msgstr "Apakah Anda ingin mengirimkan permintaan material?"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17782,11 +17802,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentasi"
@@ -17949,12 +17969,6 @@ msgstr ""
msgid "Driving License Category"
msgstr "Kategori SIM"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17975,12 +17989,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18139,8 +18147,8 @@ msgstr ""
msgid "Duration in Days"
msgstr "Durasi dalam Hari"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Tarif dan Pajak"
@@ -18223,7 +18231,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Paling awal"
@@ -18337,6 +18345,10 @@ msgstr "Entah sasaran qty atau jumlah target adalah wajib"
msgid "Either target qty or target amount is mandatory."
msgstr "Entah Target qty atau jumlah target adalah wajib."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18356,8 +18368,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18561,8 +18573,8 @@ msgstr ""
msgid "Employee Advances"
msgstr "Uang Muka Karyawan"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18645,7 +18657,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18661,7 +18673,7 @@ msgstr ""
msgid "Empty"
msgstr "Kosong"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18692,7 +18704,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Aktifkan Pemesanan Ulang Otomatis"
@@ -18858,12 +18870,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18992,8 +18998,8 @@ msgstr "Tanggal Akhir tidak boleh sebelum Tanggal Mulai."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19092,8 +19098,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Masukkan Nilai"
@@ -19118,7 +19124,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr "Masukkan jumlah yang akan ditukarkan."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19130,7 +19136,7 @@ msgstr "Masukkan email pelanggan"
msgid "Enter customer's phone number"
msgstr "Masukkan nomor telepon pelanggan"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19173,7 +19179,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19181,7 +19187,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19193,8 +19199,8 @@ msgstr "Masukkan jumlah {0}."
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Beban Hiburan"
@@ -19218,8 +19224,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19280,7 +19286,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19290,7 +19296,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Kesalahan: {0} adalah bidang wajib"
@@ -19336,7 +19342,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19355,7 +19361,7 @@ msgstr "Contoh: ABCD.#####. Jika seri diatur dan No. Batch tidak disebutkan dala
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19365,7 +19371,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19373,7 +19379,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19404,17 +19410,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Laba/Rugi Kurs"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19553,7 +19559,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19640,7 +19646,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr "Tanggal Target Pengiriman"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Tanggal Target Pengiriman harus setelah Tanggal Pesanan Penjualan"
@@ -19724,7 +19730,7 @@ msgstr ""
msgid "Expense"
msgstr "Biaya"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Beban akun / Difference ({0}) harus akun 'Laba atau Rugi'"
@@ -19802,23 +19808,23 @@ msgstr "Rekening pengeluaran adalah wajib untuk item {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Biaya / Beban"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Beban Yang Termasuk Dalam Penilaian Aset"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Biaya Termasuk di Dalam Penilaian Barang"
@@ -19897,7 +19903,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -20034,7 +20040,7 @@ msgstr "Gagal menata perusahaan"
msgid "Failed to setup defaults"
msgstr "Gagal mengatur default"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20152,6 +20158,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Fetch meledak BOM (termasuk sub-rakitan)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20189,21 +20200,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20411,9 +20430,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Selesai"
@@ -20470,15 +20489,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20524,7 +20543,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Stok Barang Jadi"
@@ -20565,7 +20584,7 @@ msgstr "Gudang Barang Jadi"
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20706,6 +20725,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Asset Tetap"
@@ -20724,7 +20744,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Fixed Asset Item harus barang non-persediaan."
@@ -20743,8 +20763,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Aktiva Tetap"
@@ -20817,7 +20837,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Berikut Permintaan Bahan telah dibesarkan secara otomatis berdasarkan tingkat re-order Item"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Bidang-bidang berikut wajib untuk membuat alamat:"
@@ -20874,7 +20894,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20884,7 +20904,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20905,17 +20925,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Untuk Quantity (Diproduksi Qty) adalah wajib"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20943,11 +20959,11 @@ msgstr "Untuk Gudang"
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Untuk item {0}, kuantitas harus berupa angka negatif"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Untuk item {0}, kuantitas harus berupa bilangan positif"
@@ -20985,7 +21001,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20999,7 +21015,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -21016,7 +21032,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -21025,12 +21041,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Untuk baris {0} di {1}. Untuk menyertakan {2} di tingkat Item, baris {3} juga harus disertakan"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Untuk baris {0}: Masuki rencana qty"
@@ -21049,7 +21065,7 @@ msgstr "Untuk ketentuan 'Terapkan Aturan Pada Lainnya', bidang {0} wajib
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21096,11 +21112,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21146,7 +21157,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21191,8 +21202,8 @@ msgstr "Item gratis tidak diatur dalam aturan harga {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Pengangkutan dan Forwarding Biaya"
@@ -21626,8 +21637,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21644,13 +21655,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Jumlah Pembayaran Masa Depan"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Ref Pembayaran di Masa Depan"
@@ -21658,7 +21669,7 @@ msgstr "Ref Pembayaran di Masa Depan"
msgid "Future Payments"
msgstr "Pembayaran di masa depan"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21743,9 +21754,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Laba / Rugi Asset Disposal"
@@ -21918,7 +21929,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21976,7 +21987,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22015,7 +22026,7 @@ msgstr "Dapatkan item dari BOM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Dapatkan Item dari Permintaan Material terhadap Pemasok ini"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Dapatkan Barang-barang dari Bundel Produk"
@@ -22189,7 +22200,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Barang dalam Transit"
@@ -22198,7 +22209,7 @@ msgstr "Barang dalam Transit"
msgid "Goods Transferred"
msgstr "Barang Ditransfer"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Barang sudah diterima dengan entri keluar {0}"
@@ -22381,7 +22392,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Lebih Besar Dari Jumlah"
@@ -22824,7 +22835,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22852,7 +22863,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -23051,7 +23062,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Sumber daya manusia"
@@ -23219,6 +23230,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23436,7 +23453,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23462,13 +23479,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23477,7 +23499,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Jika item bertransaksi sebagai item dengan Nilai Penilaian Nol di entri ini, harap aktifkan 'Izinkan Tingkat Penilaian Nol' di {0} tabel Item."
@@ -23487,7 +23509,7 @@ msgstr "Jika item bertransaksi sebagai item dengan Nilai Penilaian Nol di entri
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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23564,7 +23586,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23578,7 +23600,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23662,7 +23684,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr "Abaikan Jumlah Pesanan yang Ada"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Abaikan Kuantitas Proyeksi yang Ada"
@@ -23749,12 +23771,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23912,7 +23934,7 @@ msgstr "Dalam produksi"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "Dalam Qty"
@@ -24036,7 +24058,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24267,8 +24289,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24339,7 +24361,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24371,7 +24393,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24379,7 +24401,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24513,15 +24535,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Biaya Tidak Langsung"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Pendapatan Tidak Langsung"
@@ -24589,14 +24611,14 @@ msgstr "Diprakarsai"
msgid "Inspected By"
msgstr "Diperiksa Oleh"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspeksi Diperlukan"
@@ -24613,8 +24635,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24644,7 +24666,7 @@ msgstr "Nota Installasi"
msgid "Installation Note Item"
msgstr "Laporan Instalasi Stok Barang"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Instalasi Catatan {0} telah Terkirim"
@@ -24683,11 +24705,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Izin Tidak Cukup"
@@ -24695,13 +24717,12 @@ msgstr "Izin Tidak Cukup"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Persediaan tidak cukup"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24821,13 +24842,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24835,8 +24856,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24856,7 +24877,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24864,7 +24885,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24872,7 +24893,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24903,7 +24924,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr "internal transfer"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24916,7 +24937,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24932,12 +24958,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Akun tidak berlaku"
@@ -24958,7 +24984,7 @@ msgstr "Jumlah Tidak Valid"
msgid "Invalid Attribute"
msgstr "Atribut yang tidak valid"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24971,7 +24997,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Kode Batang Tidak Valid. Tidak ada Barang yang terlampir pada barcode ini."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Pesanan Selimut Tidak Valid untuk Pelanggan dan Item yang dipilih"
@@ -24987,21 +25013,21 @@ msgstr "Prosedur Anak Tidak Valid"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Perusahaan Tidak Valid untuk Transaksi Antar Perusahaan."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -25039,7 +25065,7 @@ msgstr ""
msgid "Invalid Item"
msgstr "Item Tidak Valid"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -25053,7 +25079,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Entri Pembukaan Tidak Valid"
@@ -25061,11 +25087,11 @@ msgstr "Entri Pembukaan Tidak Valid"
msgid "Invalid POS Invoices"
msgstr "Faktur POS tidak valid"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Akun Induk Tidak Valid"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Nomor Bagian Tidak Valid"
@@ -25095,12 +25121,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Kuantitas Tidak Valid"
@@ -25125,12 +25151,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr "Harga Jual Tidak Valid"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25155,7 +25181,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr "Ekspresi kondisi tidak valid"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25167,7 +25193,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Alasan hilang yang tidak valid {0}, harap buat alasan hilang yang baru"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Seri penamaan tidak valid (. Hilang) untuk {0}"
@@ -25193,8 +25219,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25202,7 +25228,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr "Valid {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} tidak valid untuk Transaksi Antar Perusahaan."
@@ -25212,7 +25238,7 @@ msgid "Invalid {0}: {1}"
msgstr "Valid {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25261,8 +25287,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investasi"
@@ -25312,7 +25338,7 @@ msgstr "Diskon Faktur"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Faktur Jumlah Total"
@@ -25417,7 +25443,7 @@ msgstr "Faktur tidak dapat dilakukan selama nol jam penagihan"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25438,7 +25464,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25534,8 +25560,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25977,8 +26002,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -26084,7 +26108,7 @@ msgstr "Jenis Isu"
#. 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 with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26115,11 +26139,11 @@ msgstr "Isu"
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Hal ini diperlukan untuk mengambil Item detail."
@@ -26243,7 +26267,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26491,7 +26515,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26553,7 +26577,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26752,13 +26776,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26975,7 +26999,7 @@ msgstr "Item Produsen"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27015,10 +27039,10 @@ msgstr "Item Produsen"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27059,10 +27083,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27078,19 +27098,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr "Stok Harga Barang"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Item Harga ditambahkan untuk {0} di Daftar Harga {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Harga Barang diperbarui untuk {0} di Daftar Harga {1}"
@@ -27277,11 +27298,11 @@ msgstr "Rincian Item Variant"
msgid "Item Variant Settings"
msgstr "Pengaturan Variasi Item"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Item Varian {0} sudah ada dengan atribut yang sama"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Varian Item diperbarui"
@@ -27382,11 +27403,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Item untuk baris {0} tidak cocok dengan Permintaan Material"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Item memiliki varian."
@@ -27412,11 +27433,7 @@ msgstr "Nama Item"
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27435,11 +27452,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Item varian {0} ada dengan atribut yang sama"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27456,7 +27473,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Item {0} tidak ada"
@@ -27468,7 +27485,7 @@ msgstr "Item {0} tidak ada dalam sistem atau telah berakhir"
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27480,15 +27497,15 @@ msgstr "Item {0} telah dikembalikan"
msgid "Item {0} has been disabled"
msgstr "Item {0} telah dinonaktifkan"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Item {0} telah mencapai akhir hidupnya pada {1}"
@@ -27500,15 +27517,15 @@ msgstr "Barang {0} diabaikan karena bukan barang persediaan"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Item {0} dibatalkan"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Item {0} dinonaktifkan"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27516,7 +27533,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Item {0} bukan merupakan Stok Barang serial"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Barang {0} bukan merupakan Barang persediaan"
@@ -27524,11 +27541,11 @@ msgstr "Barang {0} bukan merupakan Barang persediaan"
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Item {0} tidak aktif atau akhir hidup telah tercapai"
@@ -27544,7 +27561,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr "Barang {0} harus barang non-persediaan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27552,7 +27569,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Item {0}: qty Memerintahkan {1} tidak bisa kurang dari qty minimum order {2} (didefinisikan dalam Butir)."
@@ -27560,7 +27577,7 @@ msgstr "Item {0}: qty Memerintahkan {1} tidak bisa kurang dari qty minimum order
msgid "Item {0}: {1} qty produced. "
msgstr "Item {0}: {1} jumlah diproduksi."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27606,7 +27623,7 @@ msgstr "Item-wise Daftar Penjualan"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27630,7 +27647,7 @@ msgstr ""
msgid "Items Filter"
msgstr "Filter Item"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Item yang Diperlukan"
@@ -27654,11 +27671,11 @@ msgstr "Items Akan Diminta"
msgid "Items and Pricing"
msgstr "Item dan Harga"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27670,7 +27687,7 @@ msgstr "Item untuk Permintaan Bahan Baku"
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27680,7 +27697,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Item untuk Pembuatan diminta untuk menarik Bahan Baku yang terkait dengannya."
@@ -27745,9 +27762,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27809,7 +27826,7 @@ msgstr "Log Waktu Kartu Pekerjaan"
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27885,7 +27902,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Kartu kerja {0} dibuat"
@@ -28105,7 +28122,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28233,7 +28250,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28315,7 +28332,7 @@ msgstr "Tanggal pemeriksaan karbon terakhir tidak bisa menjadi tanggal di masa d
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Terbaru"
@@ -28565,12 +28582,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Beban Legal"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28581,7 +28598,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Jumlah Kurang Dari"
@@ -28640,7 +28657,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "batas Dilalui"
@@ -28701,7 +28718,7 @@ msgstr "Tautan ke Permintaan Material"
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28722,12 +28739,12 @@ msgstr ""
msgid "Linked Location"
msgstr "Lokasi Terhubung"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28735,7 +28752,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28793,8 +28810,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Tanggal Mulai Pinjaman dan Periode Pinjaman wajib untuk menyimpan Diskon Faktur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Kredit (Kewajiban)"
@@ -28839,8 +28856,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29041,6 +29058,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29084,10 +29106,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Utama"
@@ -29330,9 +29352,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Membuat"
@@ -29352,7 +29374,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29390,12 +29412,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Masuk Stock"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29411,11 +29433,11 @@ msgstr "Lakukan panggilan"
msgid "Make project from a template."
msgstr "Buat proyek dari templat."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29423,8 +29445,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29443,7 +29465,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Mengelola pesanan Anda"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Manajemen"
@@ -29459,7 +29481,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29558,8 +29580,8 @@ msgstr "Entri manual tidak dapat dibuat! Nonaktifkan entri otomatis untuk akunta
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29638,7 +29660,7 @@ msgstr "Pabrikasi"
msgid "Manufacturer Part Number"
msgstr "Produsen Part Number"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Nomor Suku Cadang Produsen {0} tidak valid"
@@ -29663,7 +29685,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29708,10 +29730,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr "Manajer Manufaktur"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Qty Manufaktur wajib diisi"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29878,6 +29896,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29892,12 +29916,12 @@ msgstr ""
msgid "Market Segment"
msgstr "Segmen Pasar"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Beban Pemasaran"
@@ -29976,7 +30000,7 @@ msgstr ""
msgid "Material"
msgstr "Bahan"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Bahan konsumsi"
@@ -29984,7 +30008,7 @@ msgstr "Bahan konsumsi"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -30065,7 +30089,7 @@ msgstr "Nota Penerimaan Barang"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30162,11 +30186,11 @@ msgstr "Item Rencana Permintaan Material"
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Permintaan Bahan tidak dibuat, karena kuantitas untuk Bahan Baku sudah tersedia."
@@ -30234,7 +30258,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30300,12 +30324,12 @@ msgstr "Bahan untuk Supplier"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30376,9 +30400,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30410,11 +30434,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Sampel Maksimum - {0} dapat disimpan untuk Batch {1} dan Item {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Sampel Maksimum - {0} telah disimpan untuk Batch {1} dan Item {2} di Batch {3}."
@@ -30475,15 +30499,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Sebutkan Nilai Penilaian di master Item."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30533,7 +30552,7 @@ msgstr "Bergabung dengan Akun yang Ada"
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30563,7 +30582,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30764,7 +30783,7 @@ msgstr "Min Qty tidak dapat lebih besar dari Max Qty"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30853,8 +30872,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Beban lain-lain"
@@ -30862,15 +30881,15 @@ msgstr "Beban lain-lain"
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Akun Hilang"
@@ -30900,7 +30919,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30908,7 +30927,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30945,7 +30964,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31194,11 +31213,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31220,11 +31239,11 @@ msgstr "Beberapa varian"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Beberapa tahun fiskal ada untuk tanggal {0}. Silakan set perusahaan di Tahun Anggaran"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31233,7 +31252,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31320,7 +31339,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31364,7 +31383,7 @@ msgstr "Butuh analisa"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Jumlah negatif tidak diperbolehkan"
@@ -31373,7 +31392,7 @@ msgstr "Jumlah negatif tidak diperbolehkan"
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Tingkat Penilaian Negatif tidak diperbolehkan"
@@ -31679,7 +31698,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31856,7 +31875,7 @@ msgstr "Gudang baru Nama"
msgid "New Workplace"
msgstr "Tempat Kerja Baru"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "batas kredit baru kurang dari jumlah yang luar biasa saat ini bagi pelanggan. batas kredit harus minimal {0}"
@@ -31910,7 +31929,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Tidak ada Akun yang cocok dengan filter ini: {}"
@@ -31923,7 +31942,7 @@ msgstr "Tidak ada tindakan"
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Tidak ada Pelanggan yang ditemukan untuk Transaksi Antar Perusahaan yang mewakili perusahaan {0}"
@@ -31936,7 +31955,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr "Tidak ada Catatan Pengiriman yang dipilih untuk Pelanggan {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31952,7 +31971,7 @@ msgstr "Ada Stok Barang dengan Barcode {0}"
msgid "No Item with Serial No {0}"
msgstr "Tidak ada Stok Barang dengan Serial No {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31987,7 +32006,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Tidak ada izin"
@@ -32016,19 +32035,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Tidak ada Pemasok yang ditemukan untuk Transaksi Antar Perusahaan yang mewakili perusahaan {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -32058,7 +32077,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Tidak ada BOM aktif yang ditemukan untuk item {0}. Pengiriman dengan Serial No tidak dapat dipastikan"
@@ -32252,7 +32271,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32276,7 +32295,7 @@ msgstr "Tidak ada faktur terutang yang membutuhkan revaluasi kurs"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Tidak ada Permintaan Material yang tertunda ditemukan untuk menautkan untuk item yang diberikan."
@@ -32347,7 +32366,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32380,7 +32399,7 @@ msgstr "Tidak ada nilai"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Tidak ada {0} ditemukan untuk Transaksi Perusahaan Inter."
@@ -32425,8 +32444,8 @@ msgstr ""
msgid "Non stock items"
msgstr "Item bukan stok"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32527,7 +32546,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr "Tidak memungkinkan untuk mengatur item alternatif untuk item {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Tidak diperbolehkan membuat dimensi akuntansi untuk {0}"
@@ -32581,7 +32600,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Catatan: Item {0} ditambahkan beberapa kali"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Catatan: Entry Pembayaran tidak akan dibuat karena 'Cash atau Rekening Bank tidak ditentukan"
@@ -32589,7 +32608,7 @@ msgstr "Catatan: Entry Pembayaran tidak akan dibuat karena 'Cash atau Rekening B
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Catatan: Biaya Pusat ini adalah Group. Tidak bisa membuat entri akuntansi terhadap kelompok-kelompok."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32772,6 +32791,11 @@ msgstr "Jumlah Akun baru, akan disertakan dalam nama akun sebagai awalan"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Jumlah Pusat Biaya baru, itu akan dimasukkan dalam nama pusat biaya sebagai awalan"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32831,18 +32855,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Beban Pemeliharaan Kantor"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Sewa kantor"
@@ -32970,7 +32994,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -33010,7 +33034,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33029,7 +33053,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -33066,7 +33090,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33283,8 +33307,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Saldo Pembukaan Ekuitas"
@@ -33307,7 +33331,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33340,7 +33364,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33376,16 +33400,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Persediaan pembukaan"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33403,12 +33427,15 @@ msgstr "Nilai pembukaan"
msgid "Opening and Closing"
msgstr "Membuka dan menutup"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33440,7 +33467,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Biaya Operasi sesuai Perintah Kerja / BOM"
@@ -33483,15 +33510,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Id Operasi"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33516,7 +33543,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Operasi Waktu harus lebih besar dari 0 untuk operasi {0}"
@@ -33531,11 +33558,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operasi {0} ditambahkan beberapa kali dalam perintah kerja {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Operasi {0} bukan milik perintah kerja {1}"
@@ -33551,9 +33578,9 @@ msgstr "Operasi {0} lebih lama daripada jam kerja yang tersedia di workstation {
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33726,7 +33753,7 @@ msgstr "Peluang {0} dibuat"
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33876,7 +33903,7 @@ msgstr "Qty Terpesan/Terorder"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Order"
@@ -33992,7 +34019,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -34030,7 +34057,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34049,6 +34076,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -34084,7 +34112,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34094,7 +34122,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34154,17 +34182,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34184,11 +34217,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34488,7 +34521,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "Entri Pembukaan POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34509,7 +34542,7 @@ msgstr "Detail Entri Pembukaan POS"
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34545,7 +34578,7 @@ msgstr "Metode Pembayaran POS"
msgid "POS Profile"
msgstr "POS Profil"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34563,11 +34596,11 @@ msgstr "Profil Pengguna POS"
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "POS Profil diperlukan untuk membuat POS Entri"
@@ -34673,7 +34706,7 @@ msgstr "Stok Barang Kemasan"
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34710,7 +34743,7 @@ msgstr "Slip Packing"
msgid "Packing Slip Item"
msgstr "Packing Slip Stok Barang"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Packing slip (s) dibatalkan"
@@ -34751,7 +34784,7 @@ msgstr "Dibayar"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34817,7 +34850,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Jumlah yang dibayarkan + Write Off Jumlah tidak bisa lebih besar dari Grand Total"
@@ -34911,7 +34944,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Induk Perusahaan harus merupakan perusahaan grup"
@@ -35038,7 +35071,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35251,7 +35284,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35278,7 +35311,7 @@ msgstr "Pihak"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Akun Party"
@@ -35311,7 +35344,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35463,7 +35496,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35572,7 +35605,7 @@ msgstr ""
msgid "Pause"
msgstr "berhenti sebentar"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35623,7 +35656,7 @@ msgid "Payable"
msgstr "Hutang"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35657,7 +35690,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35804,7 +35837,7 @@ msgstr "Entri pembayaran telah dimodifikasi setelah Anda menariknya. Silakan men
msgid "Payment Entry is already created"
msgstr "Entri Pembayaran sudah dibuat"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -36029,7 +36062,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36094,7 +36127,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36123,7 +36156,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36179,6 +36212,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36193,6 +36227,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36250,7 +36285,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Metode pembayaran wajib diisi. Harap tambahkan setidaknya satu metode pembayaran."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36325,8 +36360,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Payroll Hutang"
@@ -36373,10 +36408,14 @@ msgstr "Kegiatan Tertunda"
msgid "Pending Amount"
msgstr "Jumlah Pending"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36385,9 +36424,18 @@ msgstr "Qty Tertunda"
#: 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:273
msgid "Pending Quantity"
msgstr "Kuantitas yang Tertunda"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36417,6 +36465,14 @@ msgstr "Kegiatan tertunda untuk hari ini"
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36526,7 +36582,7 @@ msgstr "Analisis Persepsi"
msgid "Period Based On"
msgstr "Berdasarkan Periode"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37090,8 +37146,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Tanaman dan Mesin"
@@ -37127,7 +37183,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Harap Setel Grup Pemasok di Setelan Beli."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37175,7 +37231,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Harap tambahkan akun ke Perusahaan tingkat akar - {}"
@@ -37183,7 +37239,7 @@ msgstr "Harap tambahkan akun ke Perusahaan tingkat akar - {}"
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37191,7 +37247,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37225,7 +37281,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37250,11 +37306,15 @@ msgstr "Silahkan klik 'Menghasilkan Jadwal' untuk mengambil Serial yang ditambah
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Silahkan klik 'Menghasilkan Jadwal' untuk mendapatkan jadwal"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37262,11 +37322,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Harap ubah akun induk di perusahaan anak yang sesuai menjadi akun grup."
@@ -37278,11 +37338,11 @@ msgstr "Harap buat Pelanggan dari Prospek {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37290,11 +37350,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Harap buat tanda terima pembelian atau beli faktur untuk item {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37302,7 +37362,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Tolong jangan membuat lebih dari 500 item sekaligus"
@@ -37326,7 +37386,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37338,20 +37398,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Silakan masukkan Akun Perbedaan atau setel Akun Penyesuaian Stok default untuk perusahaan {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Silahkan masukkan account untuk Perubahan Jumlah"
@@ -37359,15 +37419,15 @@ msgstr "Silahkan masukkan account untuk Perubahan Jumlah"
msgid "Please enter Approving Role or Approving User"
msgstr "Entrikan Menyetujui Peran atau Menyetujui Pengguna"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Harap Masukan Jenis Biaya Pusat"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Harap masukkan Tanggal Pengiriman"
@@ -37375,7 +37435,7 @@ msgstr "Harap masukkan Tanggal Pengiriman"
msgid "Please enter Employee Id of this sales person"
msgstr "Cukup masukkan Id Karyawan Sales Person ini"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Masukan Entrikan Beban Akun"
@@ -37384,7 +37444,7 @@ msgstr "Masukan Entrikan Beban Akun"
msgid "Please enter Item Code to get Batch Number"
msgstr "Masukkan Item Code untuk mendapatkan Nomor Batch"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Entrikan Item Code untuk mendapatkan bets tidak"
@@ -37400,7 +37460,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Entrikan Planned Qty untuk Item {0} pada baris {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Entrikan Produksi Stok Barang terlebih dahulu"
@@ -37420,7 +37480,7 @@ msgstr "Harap masukkan tanggal Referensi"
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37437,7 +37497,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Silakan masukkan Gudang dan Tanggal"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Cukup masukkan Write Off Akun"
@@ -37457,7 +37517,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr "Silahkan masukkan nama perusahaan terlebih dahulu"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Entrikan mata uang default di Perusahaan Guru"
@@ -37485,7 +37545,7 @@ msgstr "Silahkan masukkan menghilangkan date."
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Silakan masukkan nama perusahaan untuk konfirmasi"
@@ -37553,11 +37613,11 @@ msgstr "Harap pastikan karyawan di atas melapor kepada karyawan Aktif lainnya."
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Pastikan Anda benar-benar ingin menghapus semua transaksi untuk perusahaan ini. Data master Anda akan tetap seperti itu. Tindakan ini tidak bisa dibatalkan."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37616,7 +37676,7 @@ msgstr "Silakan pilih Jenis Templat untuk mengunduh templat"
msgid "Please select Apply Discount On"
msgstr "Silakan pilih Terapkan Diskon Pada"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Silahkan pilih BOM terhadap item {0}"
@@ -37632,7 +37692,7 @@ msgstr ""
msgid "Please select Category first"
msgstr "Silahkan pilih Kategori terlebih dahulu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37662,7 +37722,7 @@ msgstr "Silakan pilih Tanggal Penyelesaian untuk Pemeriksaan Pemeliharaan Aset S
msgid "Please select Customer first"
msgstr "Silakan pilih Pelanggan terlebih dahulu"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Silakan pilih Perusahaan yang ada untuk menciptakan Bagan Akun"
@@ -37671,8 +37731,8 @@ msgstr "Silakan pilih Perusahaan yang ada untuk menciptakan Bagan Akun"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Silakan pilih Kode Barang terlebih dahulu"
@@ -37704,11 +37764,11 @@ msgstr "Silakan pilih Posting Tanggal terlebih dahulu"
msgid "Please select Price List"
msgstr "Silakan pilih Daftar Harga"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Silakan pilih Qty terhadap item {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Silahkan pilih Sampel Retention Warehouse di Stock Settings terlebih dahulu"
@@ -37724,7 +37784,7 @@ msgstr "Silakan pilih Tanggal Mulai dan Tanggal Akhir untuk Item {0}"
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37741,7 +37801,7 @@ msgstr "Silakan pilih sebuah Perusahaan"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Pilih Perusahaan terlebih dahulu."
@@ -37765,7 +37825,7 @@ msgstr "Silakan pilih a Pemasok"
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37838,11 +37898,15 @@ msgstr "Silakan pilih nilai untuk {0} quotation_to {1}"
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37862,7 +37926,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37920,7 +37984,7 @@ msgstr "Silahkan pilih Perusahaan"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Silakan pilih tipe Program Multi Tier untuk lebih dari satu aturan koleksi."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37949,7 +38013,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr "Silakan pilih dari hari mingguan"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Silahkan pilih {0} terlebih dahulu"
@@ -37958,11 +38022,11 @@ msgstr "Silahkan pilih {0} terlebih dahulu"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Silahkan mengatur 'Terapkan Diskon tambahan On'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Silahkan mengatur 'Biaya Penyusutan Asset Center di Perusahaan {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Silahkan mengatur 'Gain / Loss Account pada Asset Disposal' di Perusahaan {0}"
@@ -37974,7 +38038,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -38004,7 +38068,7 @@ msgstr "Harap set Perusahaan"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Silahkan mengatur Penyusutan Akun terkait Aset Kategori {0} atau Perusahaan {1}"
@@ -38022,7 +38086,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38068,7 +38132,7 @@ msgstr "Harap tetapkan Perusahaan"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38105,23 +38169,23 @@ msgstr "Harap setel setidaknya satu baris di Tabel Pajak dan Biaya"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Silakan set Cash standar atau rekening Bank Mode Pembayaran {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Harap setel Rekening Tunai atau Bank default dalam Cara Pembayaran {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Harap setel rekening Tunai atau Bank default dalam Mode Pembayaran {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38150,7 +38214,7 @@ msgstr "Silahkan mengatur default {0} di Perusahaan {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Silahkan mengatur filter berdasarkan Barang atau Gudang"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38158,7 +38222,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Silahkan mengatur berulang setelah menyimpan"
@@ -38170,15 +38234,15 @@ msgstr "Silakan atur Alamat Pelanggan"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Harap atur Default Cost Center di {0} perusahaan."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Harap set Kode Item terlebih dahulu"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38217,7 +38281,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38239,7 +38303,7 @@ msgstr "Silakan tentukan Perusahaan"
msgid "Please specify Company to proceed"
msgstr "Silahkan tentukan Perusahaan untuk melanjutkan"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Tentukan Row ID berlaku untuk baris {0} dalam tabel {1}"
@@ -38252,7 +38316,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Silakan tentukan setidaknya satu atribut dalam tabel Atribut"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Silakan tentukan baik Quantity atau Tingkat Penilaian atau keduanya"
@@ -38357,8 +38421,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Beban pos"
@@ -38423,7 +38487,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38441,7 +38505,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38563,10 +38627,6 @@ msgstr ""
msgid "Posting Time"
msgstr "Posting Waktu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Tanggal posting dan posting waktu adalah wajib"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38640,18 +38700,23 @@ msgstr ""
msgid "Pre Sales"
msgstr "Pra penjualan"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Pilihan"
@@ -38824,6 +38889,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38847,6 +38913,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38898,7 +38965,7 @@ msgstr "Negara Daftar Harga"
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Daftar Harga Mata uang tidak dipilih"
@@ -39253,7 +39320,7 @@ msgstr "Cetak Kwitansi"
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Cetak UOM setelah Kuantitas"
@@ -39262,8 +39329,8 @@ msgstr "Cetak UOM setelah Kuantitas"
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Cetak dan Alat Tulis"
@@ -39271,7 +39338,7 @@ msgstr "Cetak dan Alat Tulis"
msgid "Print settings updated in respective print format"
msgstr "Pengaturan cetak diperbarui dalam format cetak terkait"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Cetak pajak dengan jumlah nol"
@@ -39374,10 +39441,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39431,7 +39494,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Kuantitas Susut Proses"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39512,6 +39575,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39607,8 +39674,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39673,7 +39740,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Produksi"
@@ -39887,7 +39954,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Proyek Kolaborasi Undangan"
@@ -39931,7 +39998,7 @@ msgstr "Status proyek"
msgid "Project Summary"
msgstr "Ringkasan proyek"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Ringkasan Proyek untuk {0}"
@@ -40062,7 +40129,7 @@ msgstr "Proyeksi qty"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40208,7 +40275,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Prospek Terlibat Tapi Tidak Dikonversi"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40223,7 +40290,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40295,8 +40362,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40619,7 +40687,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr "Order Pembelian {0} tidak terkirim"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Order pembelian"
@@ -40634,7 +40702,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Pesanan Pembelian tidak diizinkan untuk {0} karena kartu skor berdiri {1}."
@@ -40649,7 +40717,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40783,7 +40851,7 @@ msgstr "Pembelian Kembali"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Pembelian Template Pajak"
@@ -40881,6 +40949,7 @@ msgstr "pembelian"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40890,10 +40959,6 @@ msgstr "pembelian"
msgid "Purpose"
msgstr "Tujuan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Tujuan harus menjadi salah satu {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40949,6 +41014,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40997,6 +41063,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41105,11 +41172,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr "Kuantitas untuk diproduksi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41160,8 +41227,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Kuantitas untuk {0}"
@@ -41216,8 +41283,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Kuantitas untuk diproduksi"
@@ -41453,17 +41520,17 @@ msgstr "Template Inspeksi Kualitas"
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41477,7 +41544,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Manajemen mutu"
@@ -41609,7 +41676,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41744,7 +41811,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Kuantitas tidak boleh lebih dari {0}"
@@ -41754,21 +41821,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Kuantitas yang dibutuhkan untuk Item {0} di baris {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Kuantitas harus lebih besar dari 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Kuantitas untuk Memproduksi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Kuantitas untuk Pembuatan tidak boleh nol untuk operasi {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Kuantitas untuk Produksi harus lebih besar dari 0."
@@ -41791,7 +41858,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41910,11 +41977,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr "Trend Penawaran"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Quotation {0} dibatalkan"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Penawaran {0} bukan jenis {1}"
@@ -42221,7 +42288,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42387,7 +42454,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42426,12 +42493,6 @@ msgstr "Bahan Baku tidak boleh kosong."
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42440,7 +42501,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42621,7 +42682,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43082,7 +43143,7 @@ msgstr "Referensi #"
msgid "Reference #{0} dated {1}"
msgstr "Referensi # {0} tanggal {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43246,11 +43307,11 @@ msgstr "Referensi: {0}, Kode Item: {1} dan Pelanggan: {2}"
msgid "References"
msgstr "Referensi"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43412,7 +43473,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Saldo yang tersisa"
@@ -43470,7 +43531,7 @@ msgstr "Komentar"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43534,7 +43595,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Ganti nama Tidak Diizinkan"
@@ -43551,7 +43612,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Mengganti nama hanya diperbolehkan melalui perusahaan induk {0}, untuk menghindari ketidakcocokan."
@@ -43674,7 +43735,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "Jenis Laporan adalah wajib"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43919,7 +43980,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44100,7 +44161,7 @@ msgstr ""
msgid "Research"
msgstr "Penelitian"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Penelitian & Pengembangan"
@@ -44145,7 +44206,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44189,7 +44250,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44259,14 +44320,14 @@ msgstr "Reserved Kuantitas"
msgid "Reserved Quantity for Production"
msgstr "Kuantitas yang Dicadangkan untuk Produksi"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44275,13 +44336,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44547,7 +44608,7 @@ msgstr ""
msgid "Resume"
msgstr "Lanjut"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44572,8 +44633,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Laba Ditahan"
@@ -44648,7 +44709,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44684,7 +44745,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44782,8 +44843,8 @@ msgstr "Retur"
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -45015,7 +45076,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr "Tipe Dasar adalah wajib"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root tidak dapat diedit."
@@ -45034,8 +45095,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45215,21 +45276,21 @@ msgstr "Baris # {0}: Tarif tidak boleh lebih besar dari tarif yang digunakan di
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Baris # {0}: Item yang Dikembalikan {1} tidak ada di {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Baris # {0} (Tabel Pembayaran): Jumlah harus negatif"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Baris # {0} (Tabel Pembayaran): Jumlah harus positif"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45250,7 +45311,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Baris # {0}: Akun {1} bukan milik perusahaan {2}"
@@ -45311,31 +45372,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Baris # {0}: Tidak dapat menghapus item {1} yang sudah ditagih."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Baris # {0}: Tidak dapat menghapus item {1} yang sudah dikirim"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Baris # {0}: Tidak dapat menghapus item {1} yang telah diterima"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Baris # {0}: Tidak dapat menghapus item {1} yang memiliki perintah kerja yang ditetapkan untuknya."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45385,11 +45446,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45397,7 +45458,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45414,7 +45475,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45438,22 +45499,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45482,7 +45543,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45490,7 +45551,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr "Baris # {0}: Item ditambahkan"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45518,7 +45579,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Baris # {0}: Item {1} bukan Item Serialized / Batched. Itu tidak dapat memiliki Serial No / Batch No terhadapnya."
@@ -45559,7 +45620,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Row # {0}: Tidak diperbolehkan untuk mengubah Supplier sebagai Purchase Order sudah ada"
@@ -45571,10 +45632,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Baris # {0}: Operasi {1} tidak selesai untuk {2} jumlah barang jadi dalam Perintah Kerja {3}. Harap perbarui status operasi melalui Kartu Pekerjaan {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45596,11 +45653,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Baris #{0}: Silakan pilih Gudang Sub Perakitan"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Row # {0}: Silakan mengatur kuantitas menyusun ulang"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45622,15 +45679,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45638,7 +45695,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Baris # {0}: Kuantitas barang {1} tidak boleh nol."
@@ -45654,18 +45711,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Row # {0}: Dokumen Referensi Type harus menjadi salah satu Purchase Order, Faktur Pembelian atau Journal Entri"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Baris # {0}: Jenis Dokumen Referensi harus salah satu dari Pesanan Penjualan, Faktur Penjualan, Entri Jurnal atau Dunning"
@@ -45704,7 +45761,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45724,19 +45781,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Baris # {0}: Tanggal Berakhir Layanan tidak boleh sebelum Tanggal Posting Faktur"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Baris # {0}: Tanggal Mulai Layanan tidak boleh lebih besar dari Tanggal Akhir Layanan"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Baris # {0}: Layanan Mulai dan Tanggal Berakhir diperlukan untuk akuntansi yang ditangguhkan"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Row # {0}: Set Supplier untuk item {1}"
@@ -45748,19 +45805,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45776,6 +45833,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Baris # {0}: Status harus {1} untuk Diskon Faktur {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45792,7 +45853,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45805,7 +45866,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45817,7 +45878,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Baris # {0}: Kelompok {1} telah kedaluwarsa."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45853,7 +45914,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Row # {0}: {1} tidak bisa menjadi negatif untuk item {2}"
@@ -45869,7 +45930,7 @@ msgstr "Baris # {0}: {1} diperlukan untuk membuat Faktur {2} Pembukaan"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45970,7 +46031,7 @@ msgstr "Baris # {}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Baris # {}: {} {} tidak ada."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45978,7 +46039,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Baris {0}: Operasi diperlukan terhadap item bahan baku {1}"
@@ -45986,7 +46047,7 @@ msgstr "Baris {0}: Operasi diperlukan terhadap item bahan baku {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -46018,11 +46079,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Row {0}: Bill of Material tidak ditemukan Item {1}"
@@ -46039,7 +46100,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Row {0}: Faktor Konversi adalah wajib"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -46059,7 +46120,7 @@ msgstr "Row {0}: Mata dari BOM # {1} harus sama dengan mata uang yang dipilih {2
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Baris {0}: Debit masuk tidak dapat dihubungkan dengan {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Baris {0}: Gudang Pengiriman ({1}) dan Gudang Pelanggan ({2}) tidak boleh sama"
@@ -46067,7 +46128,7 @@ msgstr "Baris {0}: Gudang Pengiriman ({1}) dan Gudang Pelanggan ({2}) tidak bole
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Baris {0}: Tanggal Jatuh Tempo di tabel Ketentuan Pembayaran tidak boleh sebelum Tanggal Pengiriman"
@@ -46112,16 +46173,16 @@ msgstr "Baris {0}: Untuk Pemasok {1}, Alamat Email Diperlukan untuk mengirim ema
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Row {0}: Dari Waktu dan To Waktu adalah wajib."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Row {0}: Dari Waktu dan Untuk Waktu {1} adalah tumpang tindih dengan {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Baris {0}: Dari waktu ke waktu harus kurang dari ke waktu"
@@ -46137,7 +46198,7 @@ msgstr "Row {0}: referensi tidak valid {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46161,7 +46222,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46229,7 +46290,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46241,10 +46302,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Baris {0}: Jumlah tidak tersedia untuk {4} di gudang {1} pada saat posting entri ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46253,11 +46310,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Baris {0}: Item Subkontrak wajib untuk bahan mentah {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46269,11 +46326,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Baris {0}: Item {1}, kuantitas harus bilangan positif"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46281,11 +46338,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Row {0}: UOM Faktor Konversi adalah wajib"
@@ -46298,11 +46355,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Baris {0}: pengguna belum menerapkan aturan {1} pada item {2}"
@@ -46314,7 +46371,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr "Baris {0}: {1} harus lebih besar dari 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46360,7 +46417,7 @@ msgstr "Baris Dihapus dalam {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Baris dengan tanggal jatuh tempo ganda di baris lain ditemukan: {0}"
@@ -46368,7 +46425,7 @@ msgstr "Baris dengan tanggal jatuh tempo ganda di baris lain ditemukan: {0}"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46575,8 +46632,8 @@ msgstr "Persediaan Aman"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46598,8 +46655,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46613,18 +46670,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Penjualan"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Akun penjualan"
@@ -46648,8 +46710,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Beban Penjualan"
@@ -46818,11 +46880,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Faktur Penjualan {0} telah terkirim"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -47020,25 +47082,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr "Sales Order yang diperlukan untuk Item {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Order Penjualan {0} tidak Terkirim"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Order Penjualan {0} tidak valid"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Sales Order {0} adalah {1}"
@@ -47082,6 +47144,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47094,7 +47157,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47200,7 +47263,7 @@ msgstr "Ringkasan Pembayaran Penjualan"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47293,7 +47356,7 @@ msgstr "Daftar Penjualan"
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Retur Penjualan"
@@ -47317,7 +47380,7 @@ msgstr "Ringkasan Penjualan"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Template Pajak Penjualan"
@@ -47436,7 +47499,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47468,12 +47531,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Ukuran Sampel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Kuantitas sampel {0} tidak boleh lebih dari jumlah yang diterima {1}"
@@ -47715,7 +47778,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47834,8 +47897,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Pinjaman Aman"
@@ -47873,7 +47936,7 @@ msgstr "Pilih Item Alternatif"
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Pilih Nilai Atribut"
@@ -47915,7 +47978,7 @@ msgstr "Pilih Perusahaan"
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47951,7 +48014,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Pilih Karyawan"
@@ -47976,7 +48039,7 @@ msgstr "Pilih Item"
msgid "Select Items based on Delivery Date"
msgstr "Pilih Item berdasarkan Tanggal Pengiriman"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -48014,7 +48077,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Pilih Kemungkinan Pemasok"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Pilih Kuantitas"
@@ -48089,7 +48152,7 @@ msgstr "Pilih Prioritas Default."
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Pilih Pemasok"
@@ -48112,7 +48175,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48128,8 +48191,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48146,7 +48209,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Pilih buku keuangan untuk item {0} di baris {1}"
@@ -48178,7 +48241,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48195,7 +48258,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr "Pilih pelanggan atau pemasok."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48203,6 +48266,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48230,7 +48299,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr "Entri Pembukaan POS yang dipilih harus terbuka."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Daftar Harga yang Dipilih harus memiliki bidang penjualan dan pembelian yang dicentang."
@@ -48261,30 +48330,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Menjual"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48537,7 +48606,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48557,7 +48626,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48602,7 +48671,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48742,7 +48811,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48812,7 +48881,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49226,7 +49295,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49245,8 +49314,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49413,11 +49482,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Tetapkan akun inventaris default untuk persediaan perpetual"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49449,7 +49518,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49560,7 +49629,7 @@ msgid "Setting up company"
msgstr "Mendirikan perusahaan"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49580,6 +49649,10 @@ msgstr ""
msgid "Settled"
msgstr "Diselesaikan"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49772,7 +49845,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Pengiriman"
@@ -49810,7 +49883,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49953,8 +50026,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50286,7 +50359,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50331,7 +50404,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50373,8 +50446,8 @@ msgstr "Menghaluskan Konstan"
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50398,7 +50471,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50462,7 +50535,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50471,11 +50544,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50533,7 +50606,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50541,24 +50619,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "Lokasi Sumber dan Target tidak boleh sama"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Sumber dan target gudang tidak bisa sama untuk baris {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Sumber dan gudang target harus berbeda"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Sumber Dana (Kewajiban)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Sumber gudang adalah wajib untuk baris {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50599,7 +50676,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50607,7 +50684,7 @@ msgid "Split"
msgstr "Membagi"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50631,7 +50708,7 @@ msgstr ""
msgid "Split Issue"
msgstr "Terbagi Masalah"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50643,6 +50720,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50715,13 +50797,13 @@ msgstr "Standar Pembelian"
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standard Jual"
@@ -50742,8 +50824,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50778,7 +50860,7 @@ msgstr "Tanggal Mulai tidak boleh sebelum tanggal saat ini"
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50907,7 +50989,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status harus Dibatalkan atau Diselesaikan"
@@ -50937,6 +51019,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50945,8 +51028,8 @@ msgstr "persediaan"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51046,6 +51129,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51055,10 +51148,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51122,7 +51211,7 @@ msgstr "Entri Stok telah dibuat terhadap Daftar Pick ini"
msgid "Stock Entry {0} created"
msgstr "Entri Persediaan {0} dibuat"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51130,8 +51219,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr "Entri Persediaan {0} tidak terkirim"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Beban Persediaan"
@@ -51209,8 +51298,8 @@ msgstr "Tingkat Persediaan"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Hutang Persediaan"
@@ -51313,8 +51402,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51326,7 +51415,7 @@ msgstr "Persediaan Diterima Tapi Tidak Ditagih"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51338,7 +51427,7 @@ msgstr "Rekonsiliasi Persediaan"
msgid "Stock Reconciliation Item"
msgstr "Barang Rekonsiliasi Persediaan"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Rekonsiliasi Stok"
@@ -51363,9 +51452,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51376,7 +51465,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51401,10 +51490,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51432,7 +51521,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51472,7 +51561,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51587,7 +51676,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51720,11 +51809,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51779,14 +51868,14 @@ msgstr ""
msgid "Stop Reason"
msgstr "Hentikan Alasan"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Pesanan Kerja yang Berhenti tidak dapat dibatalkan, Hapus terlebih dahulu untuk membatalkan"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Toko"
@@ -51844,7 +51933,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52106,7 +52195,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52195,7 +52284,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52216,7 +52305,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Kirimkan Pesanan Kerja ini untuk diproses lebih lanjut."
@@ -52370,7 +52459,7 @@ msgstr "Berhasil direkonsiliasi"
msgid "Successfully Set Supplier"
msgstr "Berhasil Set Supplier"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52394,7 +52483,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52554,7 +52643,7 @@ msgstr "Qty Disupply"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52652,6 +52741,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52661,7 +52751,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52676,6 +52766,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52760,7 +52851,7 @@ msgstr "Ringkasan Buku Besar Pemasok"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52795,8 +52886,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52848,7 +52937,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52877,7 +52966,7 @@ msgstr "Perbandingan Penawaran Pemasok"
msgid "Supplier Quotation Item"
msgstr "Quotation Stok Barang Supplier"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Penawaran Pemasok {0} Dibuat"
@@ -52966,7 +53055,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52983,17 +53072,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Pemasok {0} tidak ditemukan di {1}"
@@ -53006,8 +53090,8 @@ msgstr "Supplier (s)"
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53098,7 +53182,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53128,7 +53212,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53149,10 +53233,16 @@ msgstr "Ringkasan Perhitungan TDS"
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53300,7 +53390,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53308,24 +53398,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Target gudang adalah wajib untuk baris {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53442,8 +53531,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Aset Pajak"
@@ -53475,7 +53564,6 @@ msgstr "Aset Pajak"
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53497,7 +53585,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53513,6 +53600,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53524,8 +53612,8 @@ msgstr "Kategori Pajak"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Kategori Pajak telah diubah menjadi \"Total\" karena semua barang adalah barang non-persediaan"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53599,7 +53687,7 @@ msgstr "Tarif Pajak %"
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53617,7 +53705,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "Aturan pajak"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Aturan pajak Konflik dengan {0}"
@@ -53632,7 +53720,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Template pajak adalah wajib."
@@ -53951,7 +54039,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53984,8 +54072,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Beban Telepon"
@@ -54036,13 +54124,13 @@ msgstr "Sementara di Tahan"
msgid "Temporary"
msgstr "Sementara"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Akun Sementara"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Akun Pembukaan Sementara"
@@ -54224,7 +54312,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54323,7 +54411,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "'Dari Paket No.' lapangan tidak boleh kosong atau nilainya kurang dari 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Akses ke Permintaan Penawaran Dari Portal Dinonaktifkan. Untuk Mengizinkan Akses, Aktifkan di Pengaturan Portal."
@@ -54376,7 +54464,8 @@ msgstr "Syarat Pembayaran di baris {0} mungkin merupakan duplikat."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54392,7 +54481,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54428,7 +54517,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54436,7 +54525,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54456,7 +54549,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54489,7 +54582,7 @@ msgstr "Bidang Dari Pemegang Saham tidak boleh kosong"
msgid "The field To Shareholder cannot be blank"
msgstr "Bidang Ke Pemegang Saham tidak boleh kosong"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54530,11 +54623,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Atribut yang dihapus berikut ini ada di Varian tetapi tidak ada di Template. Anda dapat menghapus Varian atau mempertahankan atribut di template."
@@ -54555,7 +54648,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Berikut ini {0} telah dibuat: {1}"
@@ -54582,7 +54675,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54640,7 +54733,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54652,6 +54745,12 @@ msgstr "Akun induk {0} tidak ada dalam templat yang diunggah"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Akun gateway pembayaran dalam rencana {0} berbeda dari akun gateway pembayaran dalam permintaan pembayaran ini"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54693,7 +54792,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Akun root {0} haruslah sebuah grup"
@@ -54709,7 +54808,7 @@ msgstr "Akun perubahan yang dipilih {} bukan milik Perusahaan {}."
msgid "The selected item cannot have Batch"
msgstr "Item yang dipilih tidak dapat memiliki Batch"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54742,7 +54841,7 @@ msgstr "Saham tidak ada dengan {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54764,11 +54863,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Tugas telah ditetapkan sebagai pekerjaan latar belakang. Jika ada masalah pada pemrosesan di latar belakang, sistem akan menambahkan komentar tentang kesalahan Rekonsiliasi Saham ini dan kembali ke tahap Konsep"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54816,15 +54915,15 @@ msgstr "Nilai {0} berbeda antara Item {1} dan {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Nilai {0} sudah ditetapkan ke Item yang ada {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Gudang tempat Anda menyimpan Item jadi sebelum dikirim."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54832,19 +54931,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) harus sama dengan {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54852,7 +54951,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54868,7 +54967,7 @@ msgstr "Ada pemeliharaan atau perbaikan aktif terhadap aset. Anda harus menyeles
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Ada ketidakkonsistenan antara tingkat, tidak ada saham dan jumlah yang dihitung"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54897,7 +54996,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Ada dua opsi untuk menjaga valuasi stok: FIFO (masuk pertama - keluar pertama) dan Rata-Rata Bergerak (Moving Average). Untuk memahami topik ini secara detail, silakan kunjungi Valuasi Item, FIFO, dan Rata-Rata Bergerak. "
@@ -54937,7 +55036,7 @@ msgstr "Tidak ada kelompok yang ditemukan terhadap {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54993,11 +55092,11 @@ msgstr "Item ini adalah Variant dari {0} (Template)."
msgid "This Month's Summary"
msgstr "Ringkasan ini Bulan ini"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55031,7 +55130,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Ini mencakup semua scorecard yang terkait dengan Setup ini"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Dokumen ini adalah lebih dari batas oleh {0} {1} untuk item {4}. Apakah Anda membuat yang lain {3} terhadap yang sama {2}?"
@@ -55134,11 +55233,11 @@ msgstr ""
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Ini dilakukan untuk menangani akuntansi untuk kasus-kasus ketika Tanda Terima Pembelian dibuat setelah Faktur Pembelian"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55207,7 +55306,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55215,15 +55314,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55231,7 +55330,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55300,7 +55399,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55411,7 +55510,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Log waktu diperlukan untuk {0} {1}"
@@ -55520,7 +55619,7 @@ msgstr "Bill"
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Sampai saat ini tidak dapat sebelumnya dari tanggal"
@@ -55747,11 +55846,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Untuk memungkinkan tagihan berlebih, perbarui "Kelebihan Tagihan Penagihan" di Pengaturan Akun atau Item."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Untuk memungkinkan penerimaan / pengiriman berlebih, perbarui "Penerimaan Lebih / Tunjangan Pengiriman" di Pengaturan Stok atau Item."
@@ -55794,11 +55897,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Untuk mencakup pajak berturut-turut {0} di tingkat Stok Barang, pajak dalam baris {1} juga harus disertakan"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Untuk bergabung, sifat berikut harus sama untuk kedua item"
@@ -55806,7 +55909,7 @@ msgstr "Untuk bergabung, sifat berikut harus sama untuk kedua item"
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Untuk mengesampingkan ini, aktifkan '{0}' di perusahaan {1}"
@@ -55831,7 +55934,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55981,7 +56084,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56088,12 +56191,12 @@ msgstr "Jumlah Nilai Komisi"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Total Qty yang Diselesaikan"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56395,7 +56498,7 @@ msgstr "Jumlah Total Outstanding"
msgid "Total Paid Amount"
msgstr "Jumlah Total Dibayar"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Jumlah Pembayaran Total dalam Jadwal Pembayaran harus sama dengan Grand / Rounded Total"
@@ -56407,7 +56510,7 @@ msgstr "Jumlah total Permintaan Pembayaran tidak boleh lebih dari jumlah {0}"
msgid "Total Payments"
msgstr "Total Pembayaran"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56690,7 +56793,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "Persentase total yang dialokasikan untuk tim penjualan harus 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Total persentase kontribusi harus sama dengan 100"
@@ -56865,7 +56968,7 @@ msgstr "Transaction Tanggal"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56889,11 +56992,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56998,7 +57101,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transaksi tidak diizinkan melawan Stop Work Order {0}"
@@ -57045,11 +57149,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57230,8 +57339,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Biaya perjalanan"
@@ -57495,6 +57604,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57510,7 +57620,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57571,7 +57681,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Faktor Konversi UOM"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Faktor Konversi UOM ({0} -> {1}) tidak ditemukan untuk item: {2}"
@@ -57584,7 +57694,7 @@ msgstr "Faktor UOM Konversi diperlukan berturut-turut {0}"
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57656,12 +57766,12 @@ msgstr "Tidak dapat menemukan nilai tukar untuk {0} sampai {1} untuk tanggal kun
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Tidak dapat menemukan skor mulai dari {0}. Anda harus memiliki nilai berdiri yang mencakup 0 sampai 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57743,7 +57853,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57762,7 +57872,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57779,7 +57889,7 @@ msgstr "Satuan Ukur"
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Satuan Ukur {0} telah dimasukkan lebih dari sekali dalam Faktor Konversi Tabel"
@@ -57924,7 +58034,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57964,12 +58074,12 @@ msgstr "Belum terselesaikan"
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Pinjaman Tanpa Jaminan"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58145,7 +58255,7 @@ msgstr "Perbarui Item"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58224,11 +58334,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Memperbarui Varian ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58430,7 +58540,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Gunakan nama yang berbeda dari nama proyek sebelumnya"
@@ -58472,7 +58582,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58536,6 +58646,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58558,8 +58673,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Beban Utilitas"
@@ -58569,7 +58684,7 @@ msgstr "Beban Utilitas"
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58579,12 +58694,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58778,7 +58893,6 @@ msgstr "Metode Perhitungan"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58794,14 +58908,12 @@ msgstr "Metode Perhitungan"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Tingkat Penilaian"
@@ -58809,19 +58921,19 @@ msgstr "Tingkat Penilaian"
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Tingkat Penilaian Tidak Ada"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Nilai Penilaian untuk Item {0}, diperlukan untuk melakukan entri akuntansi untuk {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Tingkat Valuasi adalah wajib jika menggunakan Persediaan Pembukaan"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Diperlukan Tingkat Penilaian untuk Item {0} di baris {1}"
@@ -58831,7 +58943,7 @@ msgstr "Diperlukan Tingkat Penilaian untuk Item {0} di baris {1}"
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58845,7 +58957,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Biaya jenis penilaian tidak dapat ditandai sebagai Inklusif"
@@ -58857,7 +58969,7 @@ msgstr "Jenis penilaian biaya tidak dapat ditandai sebagai Inklusif"
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58976,12 +59088,12 @@ msgid "Variance ({})"
msgstr "Varians ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Varian"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Kesalahan Atribut Varian"
@@ -59000,7 +59112,7 @@ msgstr "Varian BOM"
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Varian Berdasarkan Pada tidak dapat diubah"
@@ -59018,7 +59130,7 @@ msgstr "Bidang Varian"
msgid "Variant Item"
msgstr "Item Varian"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Item Varian"
@@ -59029,7 +59141,7 @@ msgstr "Item Varian"
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Pembuatan varian telah antri."
@@ -59323,7 +59435,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59395,7 +59507,7 @@ msgstr "Nama Voucher"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59469,7 +59581,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59496,7 +59608,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59676,8 +59788,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Gudang tidak ditemukan melawan akun {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Gudang diperlukan untuk Barang Persediaan{0}"
@@ -59702,7 +59814,7 @@ msgstr "Gudang {0} bukan milik perusahaan {1}"
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59839,11 +59951,11 @@ msgstr "Peringatan: Ada {0} # {1} lain terhadap entri persediaan {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Peringatan: Material Diminta Qty kurang dari Minimum Order Qty"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Peringatan: Order Penjualan {0} sudah ada untuk Order Pembelian Pelanggan {1}"
@@ -59933,7 +60045,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -60002,7 +60114,7 @@ msgstr "Situs Web:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60132,7 +60244,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60142,7 +60254,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60152,11 +60264,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Saat membuat akun untuk Perusahaan Anak {0}, akun induk {1} ditemukan sebagai akun buku besar."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Saat membuat akun untuk Perusahaan Anak {0}, akun induk {1} tidak ditemukan. Harap buat akun induk dengan COA yang sesuai"
@@ -60301,7 +60413,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Pekerjaan dalam proses"
@@ -60338,7 +60450,7 @@ msgstr "Pekerjaan dalam proses"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60372,7 +60484,7 @@ msgstr ""
msgid "Work Order Item"
msgstr "Item Pesanan Kerja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60413,19 +60525,23 @@ msgstr "Ringkasan Perintah Kerja"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Perintah Kerja tidak dapat dibuat karena alasan berikut: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Work Order tidak dapat dimunculkan dengan Template Item"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Perintah Kerja telah {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Perintah Kerja tidak dibuat"
@@ -60434,16 +60550,16 @@ msgstr "Perintah Kerja tidak dibuat"
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Perintah Kerja {0}: Kartu Kerja tidak ditemukan untuk operasi {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Perintah Kerja"
@@ -60468,7 +60584,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Kerja-in-Progress Gudang diperlukan sebelum Submit"
@@ -60516,7 +60632,7 @@ msgstr "Jam kerja"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60607,14 +60723,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Mencoret"
@@ -60719,7 +60835,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Kata sandi salah"
@@ -60775,11 +60891,11 @@ msgstr "Tahun tanggal mulai atau tanggal akhir ini tumpang tindih dengan {0}. Un
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Anda tidak diperbolehkan memperbarui sesuai kondisi yang ditetapkan dalam {} Alur Kerja."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Anda tidak diizinkan menambah atau memperbarui entri sebelum {0}"
@@ -60787,7 +60903,7 @@ msgstr "Anda tidak diizinkan menambah atau memperbarui entri sebelum {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Anda tidak diizinkan menetapkan nilai yg sedang dibekukan"
@@ -60815,7 +60931,7 @@ msgstr "Anda juga dapat menyetel akun CWIP default di Perusahaan {}"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Anda dapat mengubah akun induk menjadi akun Neraca atau memilih akun lain."
@@ -60856,11 +60972,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60884,7 +61000,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Anda tidak dapat membuat atau membatalkan entri akuntansi apa pun dengan dalam Periode Akuntansi tertutup {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60945,7 +61061,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Anda tidak memiliki izin untuk {} item dalam {}."
@@ -60957,19 +61073,19 @@ msgstr "Anda tidak memiliki Poin Loyalitas yang cukup untuk ditukarkan"
msgid "You don't have enough points to redeem."
msgstr "Anda tidak memiliki cukup poin untuk ditukarkan."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60981,7 +61097,7 @@ msgstr "Anda mengalami {} kesalahan saat membuat faktur pembuka. Periksa {} untu
msgid "You have already selected items from {0} {1}"
msgstr "Anda sudah memilih item dari {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -61005,7 +61121,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Anda harus mengaktifkan pemesanan ulang otomatis di Pengaturan Saham untuk mempertahankan tingkat pemesanan ulang."
@@ -61021,7 +61137,7 @@ msgstr "Anda harus memilih pelanggan sebelum menambahkan item."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -61068,11 +61184,11 @@ msgstr "Kode Pos"
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61094,11 +61210,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Penting] [ERPNext] Kesalahan Penyusunan Ulang Otomatis"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61139,7 +61255,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61288,7 +61404,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61321,7 +61437,7 @@ msgstr "diterima dari"
msgid "reconciled"
msgstr "berdamai"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61356,7 +61472,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61364,8 +61480,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61383,7 +61499,7 @@ msgstr ""
msgid "to"
msgstr "untuk"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61410,7 +61526,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61432,7 +61548,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "Anda harus memilih Capital Work in Progress Account di tabel akun"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' dinonaktifkan"
@@ -61440,7 +61556,7 @@ msgstr "{0} '{1}' dinonaktifkan"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' tidak dalam Tahun Anggaran {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) tidak boleh lebih besar dari kuantitas yang direncanakan ({2}) dalam Perintah Kerja {3}"
@@ -61448,7 +61564,7 @@ msgstr "{0} ({1}) tidak boleh lebih besar dari kuantitas yang direncanakan ({2})
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61481,11 +61597,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Nomor {1} sudah digunakan di {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operasi: {1}"
@@ -61493,7 +61609,7 @@ msgstr "{0} Operasi: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Permintaan {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Mempertahankan Sampel berdasarkan kelompok, harap centang Memiliki Nomor Kelompok untuk menyimpan sampel item"
@@ -61581,11 +61697,11 @@ msgstr "{0} dibuat"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} saat ini memiliki posisi Penilaian Pemasok {1}, Faktur Pembelian untuk pemasok ini harus dikeluarkan dengan hati-hati."
@@ -61597,7 +61713,7 @@ msgstr "{0} saat ini memiliki {1} posisi Supplier Scorecard, dan RFQs ke pemasok
msgid "{0} does not belong to Company {1}"
msgstr "{0} bukan milik Perusahaan {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61606,7 +61722,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} dimasukan dua kali dalam Pajak Barang"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61631,7 +61747,7 @@ msgstr "{0} telah berhasil dikirim"
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} di baris {1}"
@@ -61653,7 +61769,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} diblokir sehingga transaksi ini tidak dapat dilanjutkan"
@@ -61661,12 +61777,12 @@ msgstr "{0} diblokir sehingga transaksi ini tidak dapat dilanjutkan"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} adalah wajib untuk Item {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61674,7 +61790,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} adalah wajib. Mungkin catatan Penukaran Mata Uang tidak dibuat untuk {1} hingga {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} adalah wajib. Mungkin data Kurs Mata Uang tidak dibuat untuk {1} sampai {2}."
@@ -61682,7 +61798,7 @@ msgstr "{0} adalah wajib. Mungkin data Kurs Mata Uang tidak dibuat untuk {1} sam
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} bukan rekening bank perusahaan"
@@ -61690,7 +61806,7 @@ msgstr "{0} bukan rekening bank perusahaan"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} bukan simpul grup. Silakan pilih simpul grup sebagai pusat biaya induk"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} bukan Barang persediaan"
@@ -61730,27 +61846,27 @@ msgstr "{0} ditahan sampai {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} item berlangsung"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} item diproduksi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61758,7 +61874,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} harus negatif dalam dokumen retur"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61774,7 +61890,7 @@ msgstr "{0} parameter tidak valid"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} entri pembayaran tidak dapat disaring oleh {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61787,7 +61903,7 @@ msgstr "{0} sampai {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61803,16 +61919,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} unit {1} dibutuhkan dalam {2} pada {3} {4} untuk {5} untuk menyelesaikan transaksi ini."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} unit {1} dibutuhkan dalam {2} untuk menyelesaikan transaksi ini."
@@ -61824,7 +61940,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} nomor seri berlaku untuk Item {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varian dibuat."
@@ -61840,7 +61956,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61878,8 +61994,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} telah diubah. Silahkan refresh."
@@ -61989,7 +62105,7 @@ msgstr "{0} {1}: Akun {2} tidak aktif"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Entri Akuntansi untuk {2} hanya dapat dilakukan dalam bentuk mata uang: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: \"Pusat Biaya\" adalah wajib untuk Item {2}"
@@ -62038,8 +62154,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, selesaikan operasi {1} sebelum operasi {2}."
@@ -62059,11 +62175,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62071,11 +62187,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} tidak ada"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} harus kurang dari {2}"
@@ -62087,7 +62203,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62099,7 +62215,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} tidak dapat dibatalkan karena Poin Loyalitas yang diperoleh telah ditukarkan. Pertama batalkan {} Tidak {}"
diff --git a/erpnext/locale/it.po b/erpnext/locale/it.po
index 30fcce3890d..5c49f72770f 100644
--- a/erpnext/locale/it.po
+++ b/erpnext/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Sottogruppo"
msgid " Summary"
msgstr " Riepilogo"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "L'\"Articolo fornito dal cliente\" non può essere anche Articolo d'acquisto"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "Account predefinito {0} nella società {1}"
@@ -302,7 +302,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -346,8 +346,8 @@ msgstr "'{0}' il conto è già stato usato da {1}. Usa un altro conto."
msgid "'{0}' has been already added."
msgstr "'{0}' è già stato aggiunto."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' dovrebbe essere nella valuta aziendale {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 Giorni"
msgid "90 Above"
msgstr "90 Oltre"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -767,7 +767,7 @@ msgstr "Impostazion
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -784,7 +784,7 @@ msgstr ""
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -828,7 +828,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -901,11 +901,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Importo in sospeso: {0}"
@@ -950,7 +950,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - B"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1114,11 +1114,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1126,7 +1126,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "Abbreviazione: {0} deve apparire solo una volta"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Oltre"
@@ -1180,7 +1180,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1216,7 +1216,7 @@ msgstr "La chiave di accesso è richiesta per il fornitore di servizi: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1334,8 +1334,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1353,7 +1353,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1366,7 +1366,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1405,7 +1405,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1421,11 +1421,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1492,15 +1492,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1508,8 +1508,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1517,11 +1517,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "L'account {0} non può essere convertito in gruppo perché è già impostato come {1} per {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "L'account {0} non può essere disattivato, poiché è già impostato come {1} per {2}."
@@ -1529,11 +1529,11 @@ msgstr "L'account {0} non può essere disattivato, poiché è già impostato com
msgid "Account {0} does not belong to company {1}"
msgstr "L'account {0} non appartiene alla società: {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1549,15 +1549,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "L'account {0} è disabilitato."
@@ -1565,7 +1565,7 @@ msgstr "L'account {0} è disabilitato."
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1573,19 +1573,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1601,7 +1601,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1886,8 +1886,8 @@ msgstr "Registrazioni Contabili"
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1911,8 +1911,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1921,7 +1921,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1976,7 +1976,6 @@ msgstr "Le registrazioni contabili sono congelate fino a questa data. Solo gli u
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1989,14 +1988,13 @@ msgstr "Le registrazioni contabili sono congelate fino a questa data. Solo gli u
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Contabilità"
@@ -2026,8 +2024,8 @@ msgstr "Account mancanti dal report"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2127,15 +2125,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Ratei passivi"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2300,7 +2298,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2424,7 +2422,7 @@ msgstr "Data di fine effettiva"
msgid "Actual End Date (via Timesheet)"
msgstr "Data di fine effettiva (tramite foglio presenze)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2546,7 +2544,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2555,7 +2553,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr "Qtà ad hoc"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3054,7 +3052,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Trasferimento Materiale Aggiuntivo"
@@ -3077,7 +3075,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr "Qtà aggiuntiva trasferita"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3089,11 +3087,6 @@ msgstr "La quantità aggiuntiva trasferita {0}\n"
"\t\t\t\t\tdel campo 'Trasferisci materie prime extra a WIP'\n"
"\t\t\t\t\tnelle Impostazioni di produzione."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Ulteriori {0} {1} dell'articolo {2} richiesti secondo la distinta base per completare questa transazione"
@@ -3239,11 +3232,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Regola Qtà"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3256,8 +3244,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3325,7 +3313,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3445,7 +3433,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3587,11 +3575,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3741,21 +3729,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3835,7 +3823,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3849,6 +3837,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3857,23 +3850,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Tutti gli articoli devono essere collegati a un Ordine di vendita o a un Ordine di subappalto per questa Fattura di vendita."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Tutti gli Ordini di Vendita collegati devono essere subappaltati."
@@ -3887,11 +3880,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3910,7 +3903,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3920,7 +3913,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3950,7 +3943,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4007,7 +4000,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4071,7 +4064,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4194,16 +4187,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "Consenti la creazione di Fatture di Vendita senza Bolla di Consegna"
-
-#. 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 "Consenti la creazione di Fatture di Vendita senza Ordine di Vendita"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4329,6 +4312,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4405,10 +4398,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4420,6 +4411,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4461,8 +4457,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4703,7 +4699,7 @@ msgstr ""
msgid "Amount"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4837,11 +4833,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4887,11 +4883,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5431,7 +5427,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Poiché sono presenti transazioni inviate per l'elemento {0}, non è possibile modificare il valore di {1}."
@@ -5443,7 +5439,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Poiché sono presenti sufficienti articoli di sottoassemblaggio, non è richiesto un ordine di lavoro per il magazzino {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5581,7 +5577,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5758,8 +5754,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5859,7 +5855,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5891,7 +5887,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5899,20 +5895,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5932,7 +5928,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5973,7 +5969,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6023,7 +6019,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6084,7 +6080,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6092,20 +6088,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr "È richiesta almeno una riga per il modello di bilancio"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6188,11 +6180,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6200,19 +6192,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6424,7 +6416,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6536,7 +6528,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6625,10 +6617,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6637,8 +6625,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6662,7 +6650,9 @@ msgstr "Valore Medio Ordine"
msgid "Average Order Values"
msgstr "Valore Medio Ordini"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6686,7 +6676,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6744,7 +6734,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6767,7 +6757,7 @@ msgstr "Lista dei Materiali (BOM)"
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6839,11 +6829,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6997,7 +6982,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "La distinta base e la quantità di prodotti finiti sono obbligatorie per il disassemblaggio"
@@ -7065,7 +7050,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7129,7 +7114,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7194,7 +7179,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7350,8 +7335,8 @@ msgid "Bank Balance"
msgstr "Saldo Bancario"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7466,8 +7451,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7640,11 +7625,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7801,7 +7786,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7876,7 +7861,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7965,13 +7950,13 @@ msgstr "Quantità del lotto aggiornata a {0}"
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7988,7 +7973,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8011,12 +7996,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8071,7 +8056,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8080,7 +8065,7 @@ msgstr "Data di Fatturazione"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8094,11 +8079,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8199,7 +8186,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8451,6 +8438,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8547,7 +8544,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8806,8 +8803,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8968,14 +8965,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9025,8 +9022,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9281,7 +9278,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9314,13 +9311,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9362,7 +9359,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Impossibile modificare le impostazioni dell'account inventario"
@@ -9370,9 +9367,9 @@ msgstr "Impossibile modificare le impostazioni dell'account inventario"
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9400,7 +9397,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9420,7 +9417,7 @@ msgstr "Non è possibile annullare l'inserimento della prenotazione dello stock
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9440,15 +9437,15 @@ msgstr "Impossibile annullare questo documento in quanto è collegato con l'Aggi
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9456,11 +9453,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9476,11 +9473,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9488,7 +9485,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9514,7 +9511,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9522,12 +9519,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Non è possibile eliminare un articolo che è stato ordinato"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9539,7 +9536,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9547,20 +9544,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9576,7 +9573,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9584,15 +9581,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9600,12 +9597,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9618,14 +9615,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9639,7 +9636,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9647,11 +9644,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Non è possibile impostare una quantità inferiore a quella consegnata."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Impossibile impostare una quantità inferiore a quella ricevuta."
@@ -9663,7 +9660,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9696,7 +9693,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9715,13 +9712,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9938,7 +9935,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10043,7 +10040,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10053,7 +10050,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10061,7 +10058,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10076,7 +10073,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10130,7 +10127,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10273,7 +10270,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10331,7 +10328,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10383,6 +10380,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10525,11 +10527,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10781,11 +10783,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr "Tasso di Commissione (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10816,7 +10824,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11215,8 +11223,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11269,7 +11277,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11358,18 +11366,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11465,7 +11475,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11500,7 +11510,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11539,12 +11549,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11586,7 +11596,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11633,12 +11643,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11827,7 +11837,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12021,7 +12031,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12050,7 +12060,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12178,7 +12188,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12304,6 +12314,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12364,7 +12379,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12372,15 +12387,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12457,13 +12472,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12494,13 +12509,13 @@ msgstr "Costo"
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "Ottieni allocazioni"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "Ottieni allocazioni %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12630,7 +12645,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12763,7 +12778,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12806,17 +12821,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12896,7 +12907,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13085,7 +13096,7 @@ msgstr ""
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13117,7 +13128,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13184,7 +13195,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13329,7 +13340,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13367,12 +13378,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13403,12 +13414,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13442,7 +13453,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13475,7 +13486,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13668,7 +13679,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13678,12 +13689,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13715,7 +13720,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13743,7 +13748,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13751,7 +13756,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13760,20 +13765,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13781,8 +13786,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13952,7 +13957,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13962,7 +13967,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14045,8 +14050,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14113,6 +14118,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Curve"
@@ -14208,7 +14218,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14315,7 +14324,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14404,8 +14412,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14419,7 +14427,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14502,6 +14510,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14524,7 +14533,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14541,6 +14550,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14584,7 +14594,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14636,7 +14646,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14742,7 +14752,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14799,9 +14809,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14913,7 +14923,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -15004,7 +15014,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15230,7 +15240,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15258,13 +15268,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15392,8 +15402,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15419,14 +15428,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15441,19 +15450,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15506,9 +15515,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15624,6 +15631,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15659,23 +15676,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15798,15 +15811,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr "Unità di misura predefinita"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15858,7 +15871,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15949,6 +15962,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16031,12 +16050,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16057,8 +16076,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16169,11 +16188,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16254,7 +16273,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16314,11 +16333,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16404,10 +16423,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16527,8 +16542,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16621,7 +16636,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16779,15 +16794,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16899,15 +16914,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16988,6 +17003,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17024,11 +17044,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Regole di prezzo disabilitate poiché questo {} è un trasferimento interno"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17044,7 +17064,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17052,15 +17072,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "La quantità di smontaggio non può essere inferiore o uguale a 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17347,7 +17367,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17428,7 +17448,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17542,8 +17562,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17605,7 +17625,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17629,7 +17649,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17696,11 +17716,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17863,12 +17883,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17889,12 +17903,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18053,8 +18061,8 @@ msgstr "Durata (giorni)"
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18137,7 +18145,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18251,6 +18259,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18270,8 +18282,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18475,8 +18487,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18559,7 +18571,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18575,7 +18587,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18606,7 +18618,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18772,12 +18784,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18906,8 +18912,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19006,8 +19012,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19032,7 +19038,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19044,7 +19050,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19087,7 +19093,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19095,7 +19101,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19107,8 +19113,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19132,8 +19138,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19194,7 +19200,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19204,7 +19210,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19250,7 +19256,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19269,7 +19275,7 @@ msgstr "Esempio: ABCD.#####. Se la serie è impostata e il numero di lotto non
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19279,7 +19285,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19287,7 +19293,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19318,17 +19324,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19467,7 +19473,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19554,7 +19560,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19638,7 +19644,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19716,23 +19722,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Note spese"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19811,7 +19817,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19948,7 +19954,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20066,6 +20072,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20103,21 +20114,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20325,9 +20344,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20384,15 +20403,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20438,7 +20457,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20479,7 +20498,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20620,6 +20639,7 @@ msgstr "Fisso"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20638,7 +20658,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20657,8 +20677,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20731,7 +20751,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20788,7 +20808,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20798,7 +20818,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20819,17 +20839,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20857,11 +20873,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20899,7 +20915,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20913,7 +20929,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20930,7 +20946,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20939,12 +20955,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20963,7 +20979,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21010,11 +21026,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21060,7 +21071,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21105,8 +21116,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21540,8 +21551,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21558,13 +21569,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21572,7 +21583,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21657,9 +21668,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21832,7 +21843,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21890,7 +21901,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21929,7 +21940,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22103,7 +22114,7 @@ msgstr ""
msgid "Goods"
msgstr "Merce"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22112,7 +22123,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22295,7 +22306,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22738,7 +22749,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22766,7 +22777,7 @@ msgstr ""
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Salve,"
@@ -22965,7 +22976,7 @@ msgstr ""
msgid "Hrs"
msgstr "Ore"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23133,6 +23144,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23350,7 +23367,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23376,13 +23393,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23391,7 +23413,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23401,7 +23423,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23478,7 +23500,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23492,7 +23514,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23576,7 +23598,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23663,12 +23685,12 @@ msgstr "Ignora sovrapposizione oraria postazione di lavoro"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23826,7 +23848,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23950,7 +23972,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24181,8 +24203,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24253,7 +24275,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24285,7 +24307,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24293,7 +24315,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24427,15 +24449,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24503,14 +24525,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24527,8 +24549,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24558,7 +24580,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24597,11 +24619,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24609,13 +24631,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24735,13 +24756,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24749,8 +24770,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24770,7 +24791,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24778,7 +24799,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24786,7 +24807,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24817,7 +24838,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24830,7 +24851,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24846,12 +24872,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24872,7 +24898,7 @@ msgstr "Importo non valido"
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24885,7 +24911,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24901,21 +24927,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24953,7 +24979,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24967,7 +24993,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24975,11 +25001,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25009,12 +25035,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25039,12 +25065,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25069,7 +25095,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25081,7 +25107,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25107,8 +25133,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25116,7 +25142,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25126,7 +25152,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Magazzino"
@@ -25175,8 +25201,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25226,7 +25252,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25331,7 +25357,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25352,7 +25378,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25448,8 +25474,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25891,8 +25916,7 @@ msgstr "È un modello"
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25998,7 +26022,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26029,11 +26053,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26157,7 +26181,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26405,7 +26429,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26467,7 +26491,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26666,13 +26690,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26889,7 +26913,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26929,10 +26953,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26973,10 +26997,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26992,19 +27012,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27191,11 +27212,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27296,11 +27317,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27326,11 +27347,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27349,11 +27366,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27370,7 +27387,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27382,7 +27399,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27394,15 +27411,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "L'elemento {0} è stato disabilitato"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27414,15 +27431,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27430,7 +27447,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27438,11 +27455,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27458,7 +27475,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27466,7 +27483,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27474,7 +27491,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27520,7 +27537,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27544,7 +27561,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27568,11 +27585,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27584,7 +27601,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27594,7 +27611,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27659,9 +27676,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27723,7 +27740,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27799,7 +27816,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28019,7 +28036,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28147,7 +28164,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28229,7 +28246,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28479,12 +28496,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legenda"
@@ -28495,7 +28512,7 @@ msgstr "Legenda"
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28554,7 +28571,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28615,7 +28632,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28636,12 +28653,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28649,7 +28666,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28707,8 +28724,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28753,8 +28770,8 @@ msgstr ""
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28955,6 +28972,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28998,10 +29020,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29244,9 +29266,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29266,7 +29288,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29304,12 +29326,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29325,11 +29347,11 @@ msgstr "Effettuare una chiamata"
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29337,8 +29359,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Gestisci"
@@ -29357,7 +29379,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29373,7 +29395,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29472,8 +29494,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29552,7 +29574,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29577,7 +29599,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29622,10 +29644,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr "Responsabile Produzione"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29792,6 +29810,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29806,12 +29830,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29890,7 +29914,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29898,7 +29922,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29979,7 +30003,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30076,11 +30100,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30148,7 +30172,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30214,12 +30238,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30290,9 +30314,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30324,11 +30348,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30389,15 +30413,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30447,7 +30466,7 @@ msgstr ""
msgid "Merged"
msgstr "Unito"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30477,7 +30496,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30678,7 +30697,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30767,8 +30786,8 @@ msgstr "Minuti"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30776,15 +30795,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Mancante"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30814,7 +30833,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30822,7 +30841,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30859,7 +30878,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31108,11 +31127,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31134,11 +31153,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31147,7 +31166,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31234,7 +31253,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31278,7 +31297,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31287,7 +31306,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31593,7 +31612,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31770,7 +31789,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Nuovo posto di lavoro"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31824,7 +31843,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31837,7 +31856,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31850,7 +31869,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31866,7 +31885,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31901,7 +31920,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31930,19 +31949,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31972,7 +31991,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32166,7 +32185,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32190,7 +32209,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32261,7 +32280,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32294,7 +32313,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32339,8 +32358,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32441,7 +32460,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32495,7 +32514,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32503,7 +32522,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32686,6 +32705,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32745,18 +32769,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32884,7 +32908,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32924,7 +32948,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32943,7 +32967,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32980,7 +33004,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33197,8 +33221,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33221,7 +33245,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33254,7 +33278,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33290,16 +33314,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Scorte iniziali"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33317,12 +33341,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33354,7 +33381,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33397,15 +33424,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ID Operazione"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33430,7 +33457,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33445,11 +33472,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33465,9 +33492,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33640,7 +33667,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33790,7 +33817,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33906,7 +33933,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33944,7 +33971,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33963,6 +33990,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33998,7 +34026,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34008,7 +34036,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34068,17 +34096,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34098,11 +34131,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34402,7 +34435,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34423,7 +34456,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34459,7 +34492,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34477,11 +34510,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34587,7 +34620,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34624,7 +34657,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34665,7 +34698,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34731,7 +34764,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34825,7 +34858,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34952,7 +34985,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35165,7 +35198,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35192,7 +35225,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35225,7 +35258,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35377,7 +35410,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35486,7 +35519,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35537,7 +35570,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35571,7 +35604,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35718,7 +35751,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35943,7 +35976,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36008,7 +36041,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36037,7 +36070,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36093,6 +36126,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36107,6 +36141,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36164,7 +36199,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36239,8 +36274,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36287,10 +36322,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36299,9 +36338,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36331,6 +36379,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36440,7 +36496,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37004,8 +37060,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37041,7 +37097,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37089,7 +37145,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37097,7 +37153,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37105,7 +37161,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37139,7 +37195,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37164,11 +37220,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37176,11 +37236,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37192,11 +37252,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37204,11 +37264,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37216,7 +37276,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37240,7 +37300,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37252,20 +37312,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37273,15 +37333,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37289,7 +37349,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37298,7 +37358,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37314,7 +37374,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37334,7 +37394,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37351,7 +37411,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37371,7 +37431,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37399,7 +37459,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37467,11 +37527,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37530,7 +37590,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37546,7 +37606,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37576,7 +37636,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37585,8 +37645,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37618,11 +37678,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37638,7 +37698,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37655,7 +37715,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37679,7 +37739,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Prego selezionare prima un Ordine di Lavoro."
@@ -37752,11 +37812,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37776,7 +37840,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37834,7 +37898,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37863,7 +37927,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37872,11 +37936,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37888,7 +37952,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37918,7 +37982,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37936,7 +38000,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37982,7 +38046,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38019,23 +38083,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38064,7 +38128,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38072,7 +38136,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38084,15 +38148,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38131,7 +38195,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38153,7 +38217,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38166,7 +38230,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38271,8 +38335,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38337,7 +38401,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38355,7 +38419,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38477,10 +38541,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38554,18 +38614,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38738,6 +38803,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38761,6 +38827,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38812,7 +38879,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39167,7 +39234,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39176,8 +39243,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39185,7 +39252,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39288,10 +39355,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39345,7 +39408,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Perdita di processo Quantità"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39426,6 +39489,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39521,8 +39588,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39587,7 +39654,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39801,7 +39868,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39845,7 +39912,7 @@ msgstr ""
msgid "Project Summary"
msgstr "Riepilogo progetti"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39976,7 +40043,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40122,7 +40189,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40137,7 +40204,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40209,8 +40276,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40533,7 +40601,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40548,7 +40616,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40563,7 +40631,7 @@ msgstr "Ordini di Acquisto da Fatturare"
msgid "Purchase Orders to Receive"
msgstr "Ordini di Acquisto da Ricevere"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40697,7 +40765,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40795,6 +40863,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40804,10 +40873,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40863,6 +40928,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40911,6 +40977,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41019,11 +41086,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41074,8 +41141,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41130,8 +41197,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41367,17 +41434,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41391,7 +41458,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41523,7 +41590,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41658,7 +41725,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41668,21 +41735,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "La quantità deve essere maggiore di 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41705,7 +41772,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41824,11 +41891,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42135,7 +42202,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42301,7 +42368,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42340,12 +42407,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42354,7 +42415,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42535,7 +42596,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42996,7 +43057,7 @@ msgstr "Riferimento #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43160,11 +43221,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43326,7 +43387,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43384,7 +43445,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43448,7 +43509,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43465,7 +43526,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43588,7 +43649,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43833,7 +43894,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44014,7 +44075,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44059,7 +44120,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44103,7 +44164,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44173,14 +44234,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44189,13 +44250,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44461,7 +44522,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44486,8 +44547,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44562,7 +44623,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44598,7 +44659,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44696,8 +44757,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44929,7 +44990,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44948,8 +45009,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45129,21 +45190,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45164,7 +45225,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45225,31 +45286,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45299,11 +45360,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45311,7 +45372,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45328,7 +45389,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45352,22 +45413,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45396,7 +45457,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45404,7 +45465,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45432,7 +45493,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45473,7 +45534,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45485,10 +45546,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45510,11 +45567,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Riga #{0}: Selezionare il magazzino dei sottoassiemi"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45536,15 +45593,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45552,7 +45609,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45568,18 +45625,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45618,7 +45675,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45638,19 +45695,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45662,19 +45719,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45690,6 +45747,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Riga #{0}: lo stato deve essere {1} per lo sconto fattura {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45706,7 +45767,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45719,7 +45780,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45731,7 +45792,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45767,7 +45828,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45783,7 +45844,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45884,7 +45945,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45892,7 +45953,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45900,7 +45961,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45932,11 +45993,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45953,7 +46014,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45973,7 +46034,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45981,7 +46042,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46026,16 +46087,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46051,7 +46112,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46075,7 +46136,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46143,7 +46204,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46155,10 +46216,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46167,11 +46224,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46183,11 +46240,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46195,11 +46252,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46212,11 +46269,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46228,7 +46285,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46274,7 +46331,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46282,7 +46339,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46489,8 +46546,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46512,8 +46569,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46527,18 +46584,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Vendite"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46562,8 +46624,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46732,11 +46794,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46934,25 +46996,25 @@ msgstr "Tendenze degli Ordini di Vendita"
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46996,6 +47058,7 @@ msgstr "Ordini di Vendita da Consegnare"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47008,7 +47071,7 @@ msgstr "Ordini di Vendita da Consegnare"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47114,7 +47177,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47207,7 +47270,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47231,7 +47294,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47350,7 +47413,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47382,12 +47445,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47629,7 +47692,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47748,8 +47811,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47787,7 +47850,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47829,7 +47892,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47865,7 +47928,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47890,7 +47953,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47928,7 +47991,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -48003,7 +48066,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48026,7 +48089,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48042,8 +48105,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48060,7 +48123,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48092,7 +48155,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48109,7 +48172,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48117,6 +48180,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48144,7 +48213,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48175,30 +48244,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48451,7 +48520,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48471,7 +48540,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48516,7 +48585,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48656,7 +48725,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48726,7 +48795,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49140,7 +49209,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49159,8 +49228,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49327,11 +49396,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49363,7 +49432,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49474,7 +49543,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49494,6 +49563,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49686,7 +49759,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49724,7 +49797,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49867,8 +49940,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50200,7 +50273,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50245,7 +50318,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50287,8 +50360,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50312,7 +50385,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50376,7 +50449,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50385,11 +50458,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50447,7 +50520,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50455,23 +50533,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50513,7 +50590,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50521,7 +50598,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50545,7 +50622,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50557,6 +50634,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50629,13 +50711,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50656,8 +50738,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50692,7 +50774,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50821,7 +50903,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50851,6 +50933,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50859,8 +50942,8 @@ msgstr "Magazzino"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50960,6 +51043,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50969,10 +51062,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51036,7 +51125,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51044,8 +51133,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51123,8 +51212,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51227,8 +51316,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51240,7 +51329,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51252,7 +51341,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51277,9 +51366,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51290,7 +51379,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51315,10 +51404,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51346,7 +51435,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51386,7 +51475,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51501,7 +51590,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51634,11 +51723,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51693,14 +51782,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51758,7 +51847,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52020,7 +52109,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52109,7 +52198,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52130,7 +52219,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52284,7 +52373,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52308,7 +52397,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52468,7 +52557,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52566,6 +52655,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52575,7 +52665,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52590,6 +52680,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52674,7 +52765,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52709,8 +52800,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52762,7 +52851,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52791,7 +52880,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52880,7 +52969,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52897,17 +52986,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52920,8 +53004,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53012,7 +53096,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53042,7 +53126,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53063,10 +53147,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53214,7 +53304,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53222,24 +53312,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53356,8 +53445,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53389,7 +53478,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53411,7 +53499,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53427,6 +53514,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53438,8 +53526,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53513,7 +53601,7 @@ msgstr "Aliquota %"
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53531,7 +53619,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53546,7 +53634,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53865,7 +53953,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53898,8 +53986,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53950,13 +54038,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54138,7 +54226,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54237,7 +54325,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Il campo \"Da n. pacco\" non deve essere vuoto né avere un valore inferiore a 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54290,7 +54378,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54306,7 +54395,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54342,7 +54431,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54350,7 +54439,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54370,7 +54463,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54403,7 +54496,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54444,11 +54537,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54469,7 +54562,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54496,7 +54589,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54554,7 +54647,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54566,6 +54659,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54607,7 +54706,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54623,7 +54722,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54656,7 +54755,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54678,11 +54777,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54730,15 +54829,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Il magazzino in cui vengono conservati gli articoli finiti prima che vengano spediti."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54746,19 +54845,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54766,7 +54865,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54782,7 +54881,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54811,7 +54910,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Esistono due opzioni per mantenere la valutazione delle azioni: FIFO (first in - first out) e Media Mobile. Per approfondire questo argomento, visita Valutazione degli articoli, FIFO e Media Mobile. "
@@ -54851,7 +54950,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54907,11 +55006,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54945,7 +55044,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Questo documento supera il limite di {0} {1} per l'elemento {4}. Stai creando un altro {3} per lo stesso {2}?"
@@ -55048,11 +55147,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55121,7 +55220,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55129,15 +55228,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55145,7 +55244,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55214,7 +55313,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55325,7 +55424,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55434,7 +55533,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55661,11 +55760,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55708,11 +55811,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55720,7 +55823,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55745,7 +55848,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55895,7 +55998,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56002,12 +56105,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56309,7 +56412,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56321,7 +56424,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56604,7 +56707,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56779,7 +56882,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56803,11 +56906,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56912,7 +57015,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56959,11 +57063,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57144,8 +57253,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57409,6 +57518,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57424,7 +57534,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57485,7 +57595,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57498,7 +57608,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57570,12 +57680,12 @@ msgstr "Impossibile trovare il tasso di cambio per {0} a {1} per la data chiave
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57657,7 +57767,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57676,7 +57786,7 @@ msgstr "Unità"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57693,7 +57803,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57838,7 +57948,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57878,12 +57988,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58059,7 +58169,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58138,11 +58248,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58344,7 +58454,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58386,7 +58496,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58450,6 +58560,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58472,8 +58587,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58483,7 +58598,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58493,12 +58608,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58692,7 +58807,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58708,14 +58822,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58723,19 +58835,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58745,7 +58857,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58759,7 +58871,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58771,7 +58883,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58890,12 +59002,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58914,7 +59026,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58932,7 +59044,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58943,7 +59055,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59237,7 +59349,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59309,7 +59421,7 @@ msgstr "Nome del Voucher"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59383,7 +59495,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59410,7 +59522,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59590,8 +59702,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59616,7 +59728,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59753,11 +59865,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59847,7 +59959,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59916,7 +60028,7 @@ msgstr "Sito web:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60046,7 +60158,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60056,7 +60168,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60066,11 +60178,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60215,7 +60327,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60252,7 +60364,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60286,7 +60398,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60327,19 +60439,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60348,16 +60464,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60382,7 +60498,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60430,7 +60546,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60521,14 +60637,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60633,7 +60749,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60689,11 +60805,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60701,7 +60817,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60729,7 +60845,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60770,11 +60886,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60798,7 +60914,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60859,7 +60975,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60871,19 +60987,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60895,7 +61011,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60919,7 +61035,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60935,7 +61051,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60982,11 +61098,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61008,11 +61124,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61034,7 +61150,7 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589
msgid "as of {0}"
-msgstr ""
+msgstr "a partire da {0}"
#: erpnext/www/book_appointment/index.html:43
msgid "at"
@@ -61053,7 +61169,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61202,7 +61318,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61235,7 +61351,7 @@ msgstr ""
msgid "reconciled"
msgstr "riconciliato"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61270,7 +61386,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "venduto"
@@ -61278,8 +61394,8 @@ msgstr "venduto"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61297,7 +61413,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61324,7 +61440,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61346,7 +61462,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61354,7 +61470,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61362,7 +61478,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61395,11 +61511,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61407,7 +61523,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61495,11 +61611,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61511,7 +61627,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61520,7 +61636,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61545,7 +61661,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61567,7 +61683,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61575,12 +61691,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61588,7 +61704,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61596,7 +61712,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61604,7 +61720,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61644,27 +61760,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61672,7 +61788,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61688,7 +61804,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61701,7 +61817,7 @@ msgstr "{0} a {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61717,16 +61833,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61738,7 +61854,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61754,7 +61870,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61792,8 +61908,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61903,7 +62019,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61952,8 +62068,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61973,11 +62089,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61985,11 +62101,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -62001,7 +62117,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62013,7 +62129,7 @@ msgstr ""
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/ko.po b/erpnext/locale/ko.po
new file mode 100644
index 00000000000..7965e9d4685
--- /dev/null
+++ b/erpnext/locale/ko.po
@@ -0,0 +1,62182 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: frappe\n"
+"Report-Msgid-Bugs-To: hello@frappe.io\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
+"Last-Translator: hello@frappe.io\n"
+"Language-Team: Korean\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: ko\n"
+"X-Crowdin-File: /[frappe.erpnext] develop/erpnext/locale/main.pot\n"
+"X-Crowdin-File-ID: 46\n"
+"Language: ko_KR\n"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1591
+msgid "\n"
+"\t\t\tThe Batch {0} of an item {1} has negative stock in the warehouse {2}{3}.\n"
+"\t\t\tPlease add a stock quantity of {4} to proceed with this entry.\n"
+"\t\t\tIf it is not possible to make an adjustment entry, please enable 'Allow Negative Stock for Batch' in Stock Settings to proceed.\n"
+"\t\t\tHowever, enabling this setting may lead to negative stock in the system.\n"
+"\t\t\tSo please ensure the stock levels are adjusted as soon as possible to maintain the correct valuation rate."
+msgstr ""
+
+#. Label of the column_break_32 (Column Break) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid " "
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.js:82
+msgid " Address"
+msgstr " 주소"
+
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:611
+msgid " Amount"
+msgstr " 양"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:114
+msgid " BOM"
+msgstr " 봄"
+
+#. Label of the default_wip_warehouse (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid " Default Work In Progress Warehouse "
+msgstr " 기본 작업 진행 중 창고 "
+
+#. Label of the istable (Check) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid " Is Child Table"
+msgstr " 아이 테이블인가요"
+
+#. Label of the is_subcontracted (Check) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid " Is Subcontracted"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:196
+msgid " Item"
+msgstr " 목"
+
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:151
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:128
+msgid " Name"
+msgstr " 이름"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:144
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:185
+msgid " Phantom Item"
+msgstr ""
+
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:602
+msgid " Rate"
+msgstr " 비율"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:122
+msgid " Raw Material"
+msgstr " 원료"
+
+#. Label of the skip_material_transfer (Check) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid " Skip Material Transfer"
+msgstr " 재료 이송 건너뛰기"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:133
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:174
+msgid " Sub Assembly"
+msgstr ""
+
+#: erpnext/projects/doctype/project_update/project_update.py:104
+msgid " Summary"
+msgstr " 요약"
+
+#: erpnext/stock/doctype/item/item.py:278
+msgid "\"Customer Provided Item\" cannot be Purchase Item also"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:280
+msgid "\"Customer Provided Item\" cannot have Valuation Rate"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:383
+msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:274
+msgid "\"SN-01::10\" for \"SN-01\" to \"SN-10\""
+msgstr ""
+
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:148
+msgid "# In Stock"
+msgstr "# 재고 있음"
+
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:141
+msgid "# Req'd Items"
+msgstr "# 필수 항목"
+
+#. Label of the per_delivered (Percent) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "% Delivered"
+msgstr ""
+
+#. Label of the per_billed (Percent) field in DocType 'Timesheet'
+#. Label of the per_billed (Percent) field in DocType 'Sales Order'
+#. Label of the per_billed (Percent) field in DocType 'Delivery Note'
+#. Label of the per_billed (Percent) field in DocType 'Purchase Receipt'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "% Amount Billed"
+msgstr "청구 금액 비율"
+
+#. Label of the per_billed (Percent) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "% Billed"
+msgstr "청구 비율"
+
+#. Label of the percent_complete_method (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "% Complete Method"
+msgstr "% 완료 방법"
+
+#. Label of the percent_complete (Percent) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "% Completed"
+msgstr "% 완전한"
+
+#. Label of the cost_allocation_per (Percent) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "% Cost Allocation"
+msgstr "비용 배분 비율"
+
+#. Label of the per_delivered (Percent) field in DocType 'Pick List'
+#. Label of the per_delivered (Percent) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "% Delivered"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:1019
+#, python-format
+msgid "% Finished Item Quantity"
+msgstr "완제품 수량 %"
+
+#. Label of the per_installed (Percent) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "% Installed"
+msgstr "설치됨 %"
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:70
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:16
+msgid "% Occupied"
+msgstr ""
+
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:283
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:337
+msgid "% Of Grand Total"
+msgstr ""
+
+#. Label of the per_ordered (Percent) field in DocType 'Material Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "% Ordered"
+msgstr ""
+
+#. Label of the per_picked (Percent) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "% Picked"
+msgstr "선택된 비율"
+
+#. Label of the process_loss_percentage (Percent) field in DocType 'BOM'
+#. Label of the process_loss_percentage (Percent) field in DocType 'Stock
+#. Entry'
+#. Label of the per_process_loss (Percent) field in DocType 'Subcontracting
+#. Inward Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "% Process Loss"
+msgstr ""
+
+#. Label of the per_produced (Percent) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "% Produced"
+msgstr ""
+
+#. Label of the progress (Percent) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "% Progress"
+msgstr "% 진전"
+
+#. Label of the per_raw_material_received (Percent) field in DocType
+#. 'Subcontracting Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "% Raw Material Received"
+msgstr ""
+
+#. Label of the per_raw_material_returned (Percent) field in DocType
+#. 'Subcontracting Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "% Raw Material Returned"
+msgstr ""
+
+#. Label of the per_received (Percent) field in DocType 'Purchase Order'
+#. Label of the per_received (Percent) field in DocType 'Material Request'
+#. Label of the per_received (Percent) field in DocType 'Subcontracting Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "% Received"
+msgstr "% 받았다"
+
+#. Label of the per_returned (Percent) field in DocType 'Delivery Note'
+#. Label of the per_returned (Percent) field in DocType 'Purchase Receipt'
+#. Label of the per_returned (Percent) field in DocType 'Subcontracting Inward
+#. Order'
+#. Label of the per_returned (Percent) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "% Returned"
+msgstr ""
+
+#. Description of the '% Amount Billed' (Percent) field in DocType 'Sales
+#. Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#, python-format
+msgid "% of materials billed against this Sales Order"
+msgstr "이 판매 주문에 대해 청구된 자재 비율"
+
+#. Description of the '% Delivered' (Percent) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#, python-format
+msgid "% of materials delivered against this Pick List"
+msgstr ""
+
+#. Description of the '% Delivered' (Percent) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#, python-format
+msgid "% of materials delivered against this Sales Order"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2388
+msgid "'Account' in the Accounting section of Customer {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
+msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
+msgstr ""
+
+#: erpnext/controllers/trends.py:62
+msgid "'Based On' and 'Group By' can not be same"
+msgstr ""
+
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:18
+msgid "'Days Since Last Order' must be greater than or equal to zero"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2393
+msgid "'Default {0} Account' in Company {1}"
+msgstr "회사 {1}의 '기본 {0} 계정'"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1231
+msgid "'Entries' cannot be empty"
+msgstr ""
+
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:24
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:127
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:322
+msgid "'From Date' is required"
+msgstr ""
+
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:18
+msgid "'From Date' must be after 'To Date'"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:466
+msgid "'Has Serial No' can not be 'Yes' for non-stock item"
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:145
+msgid "'Inspection Required before Delivery' has disabled for the item {0}, no need to create the QI"
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:136
+msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
+msgid "'Opening'"
+msgstr "'열기'"
+
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:27
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:129
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:328
+msgid "'To Date' is required"
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:95
+msgid "'To Package No.' cannot be less than 'From Package No.'"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:80
+msgid "'Update Stock' can not be checked because items are not delivered via {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:415
+msgid "'Update Stock' cannot be checked for fixed asset sale"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_account/bank_account.py:78
+msgid "'{0}' account is already used by {1}. Use another account."
+msgstr "'{0}' 계정은 이미 {1}님이 사용 중입니다. 다른 계정을 사용하세요."
+
+#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44
+msgid "'{0}' has been already added."
+msgstr "'{0}'가 이미 추가되었습니다."
+
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
+msgid "'{0}' should be in company currency {1}."
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:174
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:203
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:106
+msgid "(A) Qty After Transaction"
+msgstr "(A) 거래 후 수량"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:208
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:111
+msgid "(B) Expected Qty After Transaction"
+msgstr "(B) 거래 후 예상 수량"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:223
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:126
+msgid "(C) Total Qty in Queue"
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:184
+msgid "(C) Total qty in queue"
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:194
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:233
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:136
+msgid "(D) Balance Stock Value"
+msgstr ""
+
+#. Description of the 'Capacity' (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "(Daily Yield * No of Units Produced) / 100"
+msgstr "(일일 생산량 * 생산된 제품 수) / 100"
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:199
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:238
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:141
+msgid "(E) Balance Stock Value in Queue"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:248
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:151
+msgid "(F) Change in Stock Value"
+msgstr "(F) 주식 가치 변동"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:192
+msgid "(Forecast)"
+msgstr "(예측)"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:253
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:156
+msgid "(G) Sum of Change in Stock Value"
+msgstr "(G) 주식 가치 변동 합계"
+
+#. Description of the 'Daily Yield (%)' (Percent) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "(Good Units Produced / Total Units Produced) × 100"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:263
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:166
+msgid "(H) Change in Stock Value (FIFO Queue)"
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:209
+msgid "(H) Valuation Rate"
+msgstr ""
+
+#. Description of the 'Actual Operating Cost' (Currency) field in DocType 'Work
+#. Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "(Hour Rate / 60) * Actual Operation Time"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:273
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:176
+msgid "(I) Valuation Rate"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:278
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:181
+msgid "(J) Valuation Rate as per FIFO"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:288
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:191
+msgid "(K) Valuation = Value (D) ÷ Qty (A)"
+msgstr "(K) 평가액 = 가치(D) ÷ 수량(A)"
+
+#. Description of the 'Applicable on Cumulative Expense' (Check) field in
+#. DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "(Purchase Order + Material Request + Actual Expense)"
+msgstr "(구매 주문서 + 자재 요청 + 실제 비용)"
+
+#. Description of the 'No of Units Produced' (Int) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "(Total Workstation Time / Manufacturing Time) * 60"
+msgstr ""
+
+#. Description of the 'From No' (Int) field in DocType 'Share Transfer'
+#. Description of the 'To No' (Int) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "(including)"
+msgstr "(포함)"
+
+#. Description of the 'Sales Taxes and Charges' (Table) field in DocType 'Sales
+#. Taxes and Charges Template'
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+msgid "* Will be calculated in the transaction."
+msgstr "* 거래 시 계산됩니다."
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:112
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:360
+msgid "0 - 30 Days"
+msgstr "0~30일"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:114
+msgid "0-30"
+msgstr "0-30"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110
+msgid "0-30 Days"
+msgstr "0-30일"
+
+#. Description of the 'Conversion Factor' (Float) field in DocType 'Loyalty
+#. Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "1 Loyalty Points = How much base currency?"
+msgstr "1 로열티 포인트 = 기본 화폐 얼마입니까?"
+
+#. Option for the 'Frequency' (Select) field in DocType 'Video Settings'
+#: erpnext/utilities/doctype/video_settings/video_settings.json
+msgid "1 hr"
+msgstr "1시간"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:280
+msgid "1 invoice"
+msgstr "송장 1개"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "1-10"
+msgstr "1-10"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "1000+"
+msgstr "1000개 이상"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "11-50"
+msgstr "11-50"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
+msgid "1{0}"
+msgstr "1{0}"
+
+#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance
+#. Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "2 Yearly"
+msgstr "2년"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "201-500"
+msgstr "201-500"
+
+#. Option for the 'Periodicity' (Select) field in DocType 'Asset Maintenance
+#. Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "3 Yearly"
+msgstr "3년"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:113
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:361
+msgid "30 - 60 Days"
+msgstr "30~60일"
+
+#. Option for the 'Frequency' (Select) field in DocType 'Video Settings'
+#: erpnext/utilities/doctype/video_settings/video_settings.json
+msgid "30 mins"
+msgstr "30분"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:115
+msgid "30-60"
+msgstr "30-60"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110
+msgid "30-60 Days"
+msgstr "30~60일"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "501-1000"
+msgstr "501-1000"
+
+#. Option for the 'No of Employees' (Select) field in DocType 'Lead'
+#. Option for the 'No of Employees' (Select) field in DocType 'Opportunity'
+#. Option for the 'No. of Employees' (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "51-200"
+msgstr "51-200"
+
+#. Option for the 'Frequency' (Select) field in DocType 'Video Settings'
+#: erpnext/utilities/doctype/video_settings/video_settings.json
+msgid "6 hrs"
+msgstr "6시간"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:114
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:362
+msgid "60 - 90 Days"
+msgstr "60~90일"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:116
+msgid "60-90"
+msgstr "60-90"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110
+msgid "60-90 Days"
+msgstr "60-90일"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:115
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:363
+msgid "90 - 120 Days"
+msgstr "90~120일"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:117
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:110
+msgid "90 Above"
+msgstr "90 이상"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
+msgid "<0"
+msgstr "<0"
+
+#: erpnext/assets/doctype/asset/asset.py:545
+msgid "Cannot create asset. You're trying to create {0} asset(s) from {2} {3}. However, only {1} item(s) were purchased and {4} asset(s) already exist against {5}."
+msgstr ""
+
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:59
+msgid "From Time cannot be later than To Time for {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:434
+msgid "Row #{0}: Bundle {1} in warehouse {2} has insufficient packed items: "
+msgstr "행 #{0}: 창고 {2} 의 묶음 {1} 에 포장된 품목이 부족합니다: "
+
+#. Content of the 'Help Text' (HTML) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#, python-format
+msgid " \n"
+"Note \n"
+"\n"
+"\n"
+"You can use Jinja tags in Subject and Body fields for dynamic values.\n"
+" \n"
+" All fields in this doctype are available under the doc object and all fields for the customer to whom the mail will go to is available under the customer object.\n"
+" \n"
+" Examples \n"
+"\n"
+"\n"
+" Subject :Statement Of Accounts for {{ customer.customer_name }} \n"
+" Body : \n"
+"Hello {{ customer.customer_name }}, PFA your Statement Of Accounts from {{ doc.from_date }} to {{ doc.to_date }}. \n"
+" \n"
+""
+msgstr ""
+
+#. Content of the 'Other Details' (HTML) field in DocType 'Purchase Receipt'
+#. Content of the 'Other Details' (HTML) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Other Details
"
+msgstr "기타 세부 정보
"
+
+#. Content of the 'no_bank_transactions' (HTML) field in DocType 'Bank
+#. Reconciliation Tool'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+msgid "No Matching Bank Transactions Found
"
+msgstr "일치하는 은행 거래 내역을 찾을 수 없습니다
"
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:262
+msgid "{0}
"
+msgstr "{0}
"
+
+#. Content of the 'Stock Levels HTML' (HTML) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "
"
+msgstr "
"
+
+#. Content of the 'uom_help_html' (HTML) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Define alternate units for this item. Eg: 1 Box = 12 Nos, set conversion factor as 12. (Will also apply for variants)
Learn more → "
+msgstr ""
+
+#. Content of the 'settings' (HTML) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "\n"
+"
All dimensions in centimeter only \n"
+"
"
+msgstr "\n"
+"
모든 치수는 센티미터 단위입니다. \n"
+""
+
+#. Content of the 'about' (HTML) field in DocType 'Product Bundle'
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+msgid "About Product Bundle \n\n"
+"Aggregate group of Items into another Item . This is useful if you are bundling a certain Items into a package and you maintain stock of the packed Items and not the aggregate Item .
\n"
+"The package Item will have Is Stock Item as No and Is Sales Item as Yes .
\n"
+"Example: \n"
+"If you are selling Laptops and Backpacks separately and have a special price if the customer buys both, then the Laptop + Backpack will be a new Product Bundle Item.
"
+msgstr ""
+
+#. Content of the 'Help' (HTML) field in DocType 'Currency Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Currency Exchange Settings Help \n"
+"There are 3 variables that could be used within the endpoint, result key and in values of the parameter.
\n"
+"Exchange rate between {from_currency} and {to_currency} on {transaction_date} is fetched by the API.
\n"
+"Example: If your endpoint is exchange.com/2021-08-01, then, you will have to input exchange.com/{transaction_date}
"
+msgstr ""
+
+#. Content of the 'Body and Closing Text Help' (HTML) field in DocType 'Dunning
+#. Letter Text'
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Body Text and Closing Text Example \n\n"
+"We have noticed that you have not yet paid invoice {{sales_invoice}} for {{frappe.db.get_value(\"Currency\", currency, \"symbol\")}} {{outstanding_amount}}. This is a friendly reminder that the invoice was due on {{due_date}}. Please pay the amount due immediately to avoid any further dunning cost.
\n\n"
+"How to get fieldnames \n\n"
+"The fieldnames you can use in your template are the fields in the document. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating \n\n"
+"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
"
+msgstr ""
+
+#. Content of the 'Contract Template Help' (HTML) field in DocType 'Contract
+#. Template'
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Contract Template Example \n\n"
+"Contract for Customer {{ party_name }}\n\n"
+"-Valid From : {{ start_date }} \n"
+"-Valid To : {{ end_date }}\n"
+" \n\n"
+"How to get fieldnames \n\n"
+"The field names you can use in your Contract Template are the fields in the Contract for which you are creating the template. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Contract)
\n\n"
+"Templating \n\n"
+"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
"
+msgstr ""
+
+#. Content of the 'Terms and Conditions Help' (HTML) field in DocType 'Terms
+#. and Conditions'
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+msgid "Standard Terms and Conditions Example \n\n"
+"Delivery Terms for Order number {{ name }}\n\n"
+"-Order Date : {{ transaction_date }} \n"
+"-Expected Delivery Date : {{ delivery_date }}\n"
+" \n\n"
+"How to get fieldnames \n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating \n\n"
+"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
"
+msgstr ""
+
+#. Content of the 'account_no_settings' (HTML) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Account Number Settings "
+msgstr "계좌번호 설정 "
+
+#. Content of the 'html_19' (HTML) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Amount In Words "
+msgstr "금액을 글자로 표현 "
+
+#. Content of the 'Date Settings' (HTML) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Date Settings "
+msgstr "날짜 설정 "
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:125
+msgid "Clearance date must be after cheque date for row(s): {0} "
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2271
+msgid "Item {0} in row(s) {1} billed more than {2} "
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:425
+msgid "Packed Item {0}: Required {1}, Available {2} "
+msgstr "포장된 품목 {0}: 필수 {1}, 사용 가능 {2} "
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:120
+msgid "Payment document required for row(s): {0} "
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:163
+#: erpnext/utilities/bulk_transaction.py:37
+msgid "{} "
+msgstr "{} "
+
+#: erpnext/controllers/accounts_controller.py:2268
+msgid "Cannot overbill for the following Items:
"
+msgstr "다음 항목에 대해서는 과다 청구할 수 없습니다:
"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:157
+msgid "Following {0}s doesn't belong to Company {1} :
"
+msgstr "다음 {0}은 회사 {1} 에 속하지 않습니다:
"
+
+#. Content of the 'html_llwp' (HTML) field in DocType 'Request for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "In your Email Template , you can use the following special variables:\n"
+"
\n"
+"\n"
+" \n"
+" {{ update_password_link }}: A link where your supplier can set a new password to log into your portal.\n"
+" \n"
+" \n"
+" {{ portal_link }}: A link to this RFQ in your supplier portal.\n"
+" \n"
+" \n"
+" {{ supplier_name }}: The company name of your supplier.\n"
+" \n"
+" \n"
+" {{ contact.salutation }} {{ contact.last_name }}: The contact person of your supplier.\n"
+" \n"
+" {{ user_fullname }}: Your full name.\n"
+" \n"
+" \n"
+"
\n"
+"Apart from these, you can access all values in this RFQ, like {{ message_for_supplier }} or {{ terms }}.
"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:118
+msgid "Please correct the following row(s):
"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:120
+msgid "Posting Date {0} cannot be before Purchase Order date for the following:
"
+msgstr "게시일 {0} 은 다음 구매 주문일 이전일 수 없습니다:
"
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:75
+msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2280
+msgid "To allow over-billing, please set allowance in Accounts Settings.
"
+msgstr ""
+
+#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Gateway
+#. Account'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+msgid " Message Example \n\n"
+"<p> Thank You for being a part of {{ doc.company }}! We hope you are enjoying the service.</p>\n\n"
+"<p> Please find enclosed the E Bill statement. The outstanding amount is {{ doc.grand_total }}.</p>\n\n"
+"<p> We don't want you to be spending time running around in order to pay for your Bill. After all, life is beautiful and the time you have in hand should be spent to enjoy it! So here are our little ways to help you get more time for life! </p>\n\n"
+"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n"
+" \n"
+msgstr ""
+
+#. Content of the 'Message Examples' (HTML) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Message Example \n\n"
+"<p>Dear {{ doc.contact_person }},</p>\n\n"
+"<p>Requesting payment for {{ doc.doctype }}, {{ doc.name }} for {{ doc.grand_total }}.</p>\n\n"
+"<a href=\"{{ payment_url }}\"> click here to pay </a>\n\n"
+" \n"
+msgstr ""
+
+#. Header text in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Masters & Reports "
+msgstr "석사 & 보고서 "
+
+#. Header text in the Invoicing Workspace
+#. Header text in the Assets Workspace
+#. Header text in the Buying Workspace
+#. Header text in the Manufacturing Workspace
+#. Header text in the Projects Workspace
+#. Header text in the Quality Workspace
+#. Header text in the Selling Workspace
+#. Header text in the Home Workspace
+#. Header text in the Support Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/support/workspace/support/support.json
+msgid "Reports & Masters "
+msgstr "보고서 & 석사 "
+
+#. Header text in the Subcontracting Workspace
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracting Inward and Outward "
+msgstr "내부 및 외부 하도급 "
+
+#. Header text in the ERPNext Settings Workspace
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+msgid "Your Shortcuts\n"
+"\t\t\t\n"
+"\t\t\n"
+"\t\t\t\n"
+"\t\t\n"
+"\t\t\t\n"
+"\t\t "
+msgstr ""
+
+#. Header text in the Manufacturing Workspace
+#. Header text in the Home Workspace
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/setup/workspace/home/home.json
+msgid "Your Shortcuts "
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
+msgid "Grand Total: {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
+msgid "Outstanding Amount: {0}"
+msgstr "미지급 금액: {0}"
+
+#. Content of the 'html_19' (HTML) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "\n"
+"\n"
+" \n"
+" Child Document \n"
+" Non Child Document \n"
+" \n"
+" \n"
+"\n"
+"\n"
+" \n"
+" To access parent document field use parent.fieldname and to access child table document field use doc.fieldname
\n\n"
+" \n"
+" \n"
+" To access document field use doc.fieldname
\n"
+" \n"
+" \n"
+"\n"
+" \n"
+" Example: parent.doctype == \"Stock Entry\" and doc.item_code == \"Test\"
\n\n"
+" \n"
+" \n"
+" Example: doc.doctype == \"Stock Entry\" and doc.purpose == \"Manufacture\"
\n"
+" \n"
+" \n\n"
+" \n"
+"
\n\n\n\n\n\n\n"
+msgstr "\n"
+"\n"
+" \n"
+" 자식 문서 \n"
+" 자식 문서 아님 \n"
+" \n"
+" \n"
+"\n"
+"\n"
+" \n"
+" 상위 문서 필드에 접근하려면 parent.fieldname을 사용하고, 하위 테이블 문서 필드에 접근하려면 doc.fieldname을 사용하세요.
\n\n"
+" \n"
+" \n"
+" 문서 필드에 접근하려면 doc.fieldname을 사용하세요.
\n"
+" \n"
+" \n"
+"\n"
+" \n"
+" 예시: parent.doctype == \"재고 입력\" 및 doc.item_code == \"테스트\"
\n\n"
+" \n"
+" \n"
+" 예시: doc.doctype == \"재고 입력\" 및 doc.purpose == \"제조\"
\n"
+" \n"
+" \n\n"
+" \n"
+"
\n\n\n\n\n\n\n"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:213
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:116
+msgid "A - B"
+msgstr "에이 - 비"
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:189
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:228
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:131
+msgid "A - C"
+msgstr "A - C"
+
+#: erpnext/selling/doctype/customer/customer.py:345
+msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:73
+msgid "A Holiday List can be added to exclude counting these days for the Workstation."
+msgstr ""
+
+#: erpnext/crm/doctype/lead/lead.py:144
+msgid "A Lead requires either a person's name or an organization's name"
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:84
+msgid "A Packing Slip can only be created for Draft Delivery Note."
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/price_list/price_list.json
+msgid "A Price List is a collection of Item Prices either Selling, Buying, or both"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/item/item.json
+msgid "A Product or a Service that is bought, sold or kept in stock."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:572
+msgid "A Reconciliation Job {0} is running for the same filters. Cannot reconcile now"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1794
+msgid "A Reverse Journal Entry {0} already exists for this Journal Entry."
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json
+msgid "A condition for a Shipping Rule"
+msgstr "운송 규칙의 조건"
+
+#. Description of the 'Send To Primary Contact' (Check) field in DocType
+#. 'Process Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "A customer must have primary contact email."
+msgstr "고객은 주요 연락 이메일 주소를 보유해야 합니다."
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:59
+msgid "A driver must be set to submit."
+msgstr "운전자는 제출할 수 있도록 설정해야 합니다."
+
+#. Description of a DocType
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "A logical Warehouse against which stock entries are made."
+msgstr "재고 입력이 이루어지는 논리적 창고."
+
+#: erpnext/stock/serial_batch_bundle.py:1480
+msgid "A naming series conflict occurred while creating serial numbers. Please change the naming series for the item {0}."
+msgstr ""
+
+#: erpnext/templates/emails/confirm_appointment.html:2
+msgid "A new appointment has been created for you with {0}"
+msgstr ""
+
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:3
+msgid "A new fiscal year has been automatically created."
+msgstr "새로운 회계연도가 자동으로 생성되었습니다."
+
+#. Description of the 'Inspection Required before Delivery' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "A quality inspection must be completed before generating a Delivery Note for this item."
+msgstr ""
+
+#. Description of the 'Inspection Required before Purchase' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "A quality inspection must be completed before generating a Purchase Receipt for this item."
+msgstr "해당 품목에 대한 구매 영수증을 발행하기 전에 품질 검사를 완료해야 합니다."
+
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:96
+msgid "A template with tax category {0} already exists. Only one template is allowed with each tax category"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "A third party distributor / dealer / commission agent / affiliate / reseller who sells the companies products for a commission."
+msgstr ""
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "A+"
+msgstr "A+"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "A-"
+msgstr "에이-"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "AB+"
+msgstr "AB+"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "AB-"
+msgstr "AB-"
+
+#. Option for the 'Invoice Series' (Select) field in DocType 'Import Supplier
+#. Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "ACC-PINV-.YYYY.-"
+msgstr "ACC-PINV-.YYYY.-"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88
+msgid "ALL records will be deleted (entire DocType cleared)"
+msgstr ""
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:552
+msgid "AMC Expiry (Serial)"
+msgstr "AMC 만료일(일련번호)"
+
+#. Label of the amc_expiry_date (Date) field in DocType 'Serial No'
+#. Label of the amc_expiry_date (Date) field in DocType 'Warranty Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "AMC Expiry Date"
+msgstr "AMC 만료일"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "AP Summary"
+msgstr "AP 요약"
+
+#. Label of the api_details_section (Section Break) field in DocType 'Currency
+#. Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "API Details"
+msgstr "API 세부 정보"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "AR Summary"
+msgstr "AR 요약"
+
+#. Label of the awb_number (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "AWB Number"
+msgstr "AWB 번호"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Abampere"
+msgstr ""
+
+#. Label of the abbr (Data) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Abbr"
+msgstr "약어"
+
+#. Label of the abbr (Data) field in DocType 'Item Attribute Value'
+#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json
+msgid "Abbreviation"
+msgstr "약어"
+
+#: erpnext/setup/doctype/company/company.py:241
+msgid "Abbreviation already used for another company"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:238
+msgid "Abbreviation is mandatory"
+msgstr ""
+
+#: erpnext/stock/doctype/item_attribute/item_attribute.py:112
+msgid "Abbreviation: {0} must appear only once"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+msgid "Above"
+msgstr "위에"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:116
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:364
+msgid "Above 120 Days"
+msgstr "120일 이상"
+
+#. Name of a role
+#: erpnext/setup/doctype/department/department.json
+msgid "Academics User"
+msgstr "학술 사용자"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:38
+msgid "Accept Matching Rule"
+msgstr "일치 규칙 수락"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:39
+msgid "Accept the rule for the selected transaction"
+msgstr "선택한 거래에 대한 규칙을 수락하세요"
+
+#. Label of the acceptance_formula (Code) field in DocType 'Item Quality
+#. Inspection Parameter'
+#. Label of the acceptance_formula (Code) field in DocType 'Quality Inspection
+#. Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Acceptance Criteria Formula"
+msgstr "수용 기준 공식"
+
+#. Label of the value (Data) field in DocType 'Item Quality Inspection
+#. Parameter'
+#. Label of the value (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Acceptance Criteria Value"
+msgstr "수용 기준 값"
+
+#. Label of the qty (Float) field in DocType 'Purchase Invoice Item'
+#. Label of the qty (Float) field in DocType 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Accepted Qty"
+msgstr "승인된 수량"
+
+#. Label of the stock_qty (Float) field in DocType 'Purchase Invoice Item'
+#. Label of the stock_qty (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Accepted Qty in Stock UOM"
+msgstr ""
+
+#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/public/js/controllers/transaction.js:2841
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Accepted Quantity"
+msgstr "승인된 수량"
+
+#. Label of the warehouse (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the set_warehouse (Link) field in DocType 'Purchase Receipt'
+#. Label of the warehouse (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Receipt'
+#. Label of the warehouse (Link) field in DocType 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Accepted Warehouse"
+msgstr "승인된 창고"
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:510
+msgid "Accepting the suggestion will reconcile both transactions."
+msgstr "제안을 수락하면 두 거래가 일치하게 됩니다."
+
+#. Label of the access_key (Data) field in DocType 'Currency Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Access Key"
+msgstr "액세스 키"
+
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:48
+msgid "Access Key is required for Service Provider: {0}"
+msgstr ""
+
+#. Description of the 'Common Code' (Data) field in DocType 'UOM'
+#: erpnext/setup/doctype/uom/uom.json
+msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
+msgstr "CEFACT/ICG/2010/IC013 또는 CEFACT/ICG/2010/IC010에 따르면"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
+msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
+msgstr "BOM {0}에 따르면 재고 항목에 품목 '{1}'이 누락되었습니다."
+
+#. Name of a report
+#: erpnext/accounts/report/account_balance/account_balance.json
+msgid "Account Balance"
+msgstr "계좌 잔액"
+
+#. Label of the account_category (Link) field in DocType 'Account'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account_tree.js:162
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Account Category"
+msgstr "계정 카테고리"
+
+#. Label of the account_category_name (Data) field in DocType 'Account
+#. Category'
+#: erpnext/accounts/doctype/account_category/account_category.json
+msgid "Account Category Name"
+msgstr "계정 카테고리 이름"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+msgid "Account Closing Balance"
+msgstr "계좌 마감 잔액"
+
+#. Label of the account_currency (Link) field in DocType 'Account Closing
+#. Balance'
+#. Label of the currency (Link) field in DocType 'Advance Taxes and Charges'
+#. Label of the account_currency (Link) field in DocType 'Bank Clearance'
+#. Label of the account_currency (Link) field in DocType 'Bank Reconciliation
+#. Tool'
+#. Label of the account_currency (Link) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#. Label of the account_currency (Link) field in DocType 'GL Entry'
+#. Label of the account_currency (Link) field in DocType 'Journal Entry
+#. Account'
+#. Label of the account_currency (Link) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the account_currency (Link) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the account_currency (Link) field in DocType 'Unreconcile Payment
+#. Entries'
+#. Label of the account_currency (Link) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Account Currency"
+msgstr "계좌 통화"
+
+#. Label of the paid_from_account_currency (Link) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Account Currency (From)"
+msgstr "계좌 통화 (출발 통화)"
+
+#. Label of the paid_to_account_currency (Link) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Account Currency (To)"
+msgstr "계좌 통화 (입금)"
+
+#. Option for the 'Data Source' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Account Data"
+msgstr "계정 데이터"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:20
+#: erpnext/accounts/report/cash_flow/cash_flow.js:29
+#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:21
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:20
+msgid "Account Detail Level"
+msgstr ""
+
+#. Label of the account_details_section (Section Break) field in DocType 'Bank
+#. Account'
+#. Label of the account_details_section (Section Break) field in DocType 'GL
+#. Entry'
+#. Label of the section_break_7 (Section Break) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Account Details"
+msgstr "계정 정보"
+
+#. Label of the account_head (Link) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the account_head (Link) field in DocType 'POS Closing Entry Taxes'
+#. Label of the account_head (Link) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the account_head (Link) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Account Head"
+msgstr "계정 책임자"
+
+#. Label of the account_manager (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Account Manager"
+msgstr "계정 관리자"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
+msgid "Account Missing"
+msgstr "계정이 없습니다"
+
+#. Label of the account_name (Data) field in DocType 'Account'
+#. Label of the account_name (Data) field in DocType 'Bank Account'
+#. Label of the account_name (Data) field in DocType 'Ledger Merge'
+#. Label of the account_name (Data) field in DocType 'Ledger Merge Accounts'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:389
+#: erpnext/accounts/report/financial_statements.py:678
+#: erpnext/accounts/report/trial_balance/trial_balance.py:488
+msgid "Account Name"
+msgstr "계정 이름"
+
+#: erpnext/accounts/doctype/account/account.py:377
+msgid "Account Not Found"
+msgstr "계정을 찾을 수 없습니다"
+
+#. Label of the account_number (Data) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account_tree.js:128
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:396
+#: erpnext/accounts/report/financial_statements.py:685
+#: erpnext/accounts/report/trial_balance/trial_balance.py:495
+msgid "Account Number"
+msgstr "계좌번호"
+
+#: erpnext/accounts/doctype/account/account.py:363
+msgid "Account Number {0} already used in account {1}"
+msgstr ""
+
+#. Label of the account_opening_balance (Currency) field in DocType 'Bank
+#. Reconciliation Tool'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+msgid "Account Opening Balance"
+msgstr "계좌 개설 잔액"
+
+#. Label of the paid_from (Link) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Account Paid From"
+msgstr "계좌에서 결제됨"
+
+#. Label of the paid_to (Link) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Account Paid To"
+msgstr ""
+
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.py:118
+msgid "Account Pay Only"
+msgstr ""
+
+#. Label of the account_subtype (Link) field in DocType 'Bank Account'
+#. Label of the account_subtype (Data) field in DocType 'Bank Account Subtype'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json
+msgid "Account Subtype"
+msgstr "계정 하위 유형"
+
+#. Label of the account_type (Select) field in DocType 'Account'
+#. Label of the account_type (Link) field in DocType 'Bank Account'
+#. Label of the account_type (Data) field in DocType 'Bank Account Type'
+#. Label of the account_type (Data) field in DocType 'Journal Entry Account'
+#. Label of the account_type (Data) field in DocType 'Payment Entry Reference'
+#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
+#. Label of the account_type (Select) field in DocType 'Party Type'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account.py:210
+#: erpnext/accounts/doctype/account/account_tree.js:154
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/account_balance/account_balance.js:34
+#: erpnext/setup/doctype/party_type/party_type.json
+msgid "Account Type"
+msgstr "계정 유형"
+
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:162
+msgid "Account Value"
+msgstr "계정 가치"
+
+#: erpnext/accounts/doctype/account/account.py:332
+msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:326
+msgid "Account balance already in Debit, you are not allowed to set 'Balance Must Be' as 'Credit'"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:101
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:107
+msgid "Account company does not match with the rule company."
+msgstr "계정 회사가 규칙 회사와 일치하지 않습니다."
+
+#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:47
+msgid "Account filter not set!"
+msgstr "계정 필터가 설정되지 않았습니다!"
+
+#. Label of the account_for_change_amount (Link) field in DocType 'POS Invoice'
+#. Label of the account_for_change_amount (Link) field in DocType 'POS Profile'
+#. Label of the account_for_change_amount (Link) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Account for Change Amount"
+msgstr "잔돈을 설명하세요"
+
+#: erpnext/accounts/doctype/budget/budget.py:148
+msgid "Account is mandatory"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:48
+msgid "Account is mandatory to get payment entries"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:656
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:236
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1224
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:315
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:659
+msgid "Account is required"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:906
+msgid "Account not Found"
+msgstr "계정을 찾을 수 없습니다"
+
+#. Description of the 'Purchase Expense Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Account to record additional purchase expenses like freight or customs for this item"
+msgstr ""
+
+#. Description of the 'Default COGS Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Account where cost of goods sold will be posted when this item is sold"
+msgstr ""
+
+#. Description of the 'Default Income Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Account where revenue from selling this item will be credited"
+msgstr ""
+
+#. Description of the 'Default Expense Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Account where the cost of this item will be debited on purchase"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:431
+msgid "Account with child nodes cannot be converted to ledger"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:283
+msgid "Account with child nodes cannot be set as ledger"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:442
+msgid "Account with existing transaction can not be converted to group."
+msgstr "기존 거래 내역이 있는 계정은 그룹으로 전환할 수 없습니다."
+
+#: erpnext/accounts/doctype/account/account.py:467
+msgid "Account with existing transaction can not be deleted"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
+msgid "Account with existing transaction cannot be converted to ledger"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:79
+msgid "Account {0} added multiple times"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:295
+msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:292
+msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:157
+msgid "Account {0} does not belong to company {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:289
+msgid "Account {0} does not belong to company: {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:599
+msgid "Account {0} does not exist"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:70
+msgid "Account {0} does not exists"
+msgstr ""
+
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:48
+msgid "Account {0} does not match with Company {1} in Mode of Account: {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:138
+msgid "Account {0} doesn't belong to Company {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:556
+msgid "Account {0} exists in parent company {1}."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:415
+msgid "Account {0} is added in the child company {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:278
+msgid "Account {0} is disabled."
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:428
+msgid "Account {0} is frozen"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1472
+msgid "Account {0} is invalid. Account Currency must be {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:355
+msgid "Account {0} should be of type Expense"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:153
+msgid "Account {0}: Parent account {1} can not be a ledger"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:159
+msgid "Account {0}: Parent account {1} does not belong to company: {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:147
+msgid "Account {0}: Parent account {1} does not exist"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:150
+msgid "Account {0}: You can not assign itself as parent account"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:466
+msgid "Account: {0} is capital Work in progress and can not be updated by Journal Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:373
+msgid "Account: {0} can only be updated via Stock Transactions"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2721
+msgid "Account: {0} is not permitted under Payment Entry"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3281
+msgid "Account: {0} with currency: {1} can not be selected"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:1
+msgid "Accountant"
+msgstr "회계사"
+
+#. Group in Bank Account's connections
+#. Label of the accounting_tab (Tab Break) field in DocType 'POS Profile'
+#. Label of the accounting (Section Break) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the section_break_10 (Section Break) field in DocType 'Shipping
+#. Rule'
+#. Label of the accounting_tab (Tab Break) field in DocType 'Supplier'
+#. Label of a Desktop Icon
+#. Label of the accounting_tab (Tab Break) field in DocType 'Customer'
+#. Label of a Card Break in the Home Workspace
+#. Label of the accounting (Tab Break) field in DocType 'Item'
+#. Label of the accounting (Section Break) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/desktop_icon/accounting.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/setup_wizard/data/industry_type.txt:1
+#: erpnext/setup/workspace/home/home.json erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Accounting"
+msgstr "회계"
+
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Dunning'
+#. Label of the section_break_9 (Section Break) field in DocType 'Dunning Type'
+#. Label of the more_info (Section Break) field in DocType 'POS Invoice'
+#. Label of the accounting (Section Break) field in DocType 'POS Invoice Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the more_info (Section Break) field in DocType 'Sales Invoice'
+#. Label of the accounting (Section Break) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the accounting_details (Section Break) field in DocType 'Purchase
+#. Order Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Delivery Note Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Material Request Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#. Label of the accounting_details_section (Section Break) field in DocType
+#. 'Subcontracting Receipt Supplied Item'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Accounting Details"
+msgstr "회계 세부 정보"
+
+#. Name of a DocType
+#. Label of the accounting_dimension (Select) field in DocType 'Accounting
+#. Dimension Filter'
+#. Label of the accounting_dimension (Link) field in DocType 'Allowed
+#. Dimension'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Repair'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:32
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/budget.json
+msgid "Accounting Dimension"
+msgstr "회계 차원"
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:213
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:150
+msgid "Accounting Dimension {0} is required for 'Balance Sheet' account {1}."
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:200
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:138
+msgid "Accounting Dimension {0} is required for 'Profit and Loss' account {1}."
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Accounting Dimension Detail"
+msgstr "회계 차원 세부 정보"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Accounting Dimension Filter"
+msgstr "회계 차원 필터"
+
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Advance Taxes and Charges'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Journal Entry Account'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Journal Entry Template Account'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Loyalty Program'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Opening Invoice Creation Tool'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Opening Invoice Creation Tool Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Payment Entry'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Payment Reconciliation Allocation'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Payment Request'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'POS Invoice'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'POS Invoice Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'POS Profile'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Invoice Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Taxes and Charges'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Sales Invoice'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Sales Invoice Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Sales Taxes and Charges'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Shipping Rule'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subscription'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subscription Plan'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Capitalization'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Capitalization Asset Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Capitalization Service Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Capitalization Stock Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Asset Value Adjustment'
+#. Label of the section_break_24 (Section Break) field in DocType 'Request for
+#. Quotation Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Supplier Quotation'
+#. Label of the ad_sec_break (Section Break) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Sales Order'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Sales Order Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Delivery Note'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Delivery Note Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Landed Cost Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Material Request Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Receipt'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the accounting_dimensions_section (Tab Break) field in DocType
+#. 'Stock Entry'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Stock Entry Detail'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Stock Reconciliation'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subcontracting Receipt Supplied Item'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/material_request/material_request_dashboard.py:20
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Accounting Dimensions"
+msgstr "회계 차원"
+
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Order'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Purchase Order Item'
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Accounting Dimensions "
+msgstr "회계 차원 "
+
+#. Label of the accounting_dimensions_section (Section Break) field in DocType
+#. 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Accounting Dimensions Filter"
+msgstr "회계 차원 필터"
+
+#. Label of the accounts (Table) field in DocType 'Journal Entry'
+#. Label of the accounts (Table) field in DocType 'Journal Entry Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Accounting Entries"
+msgstr "회계 항목"
+
+#: erpnext/assets/doctype/asset/asset.py:940
+#: erpnext/assets/doctype/asset/asset.py:955
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:542
+msgid "Accounting Entry for Asset"
+msgstr "자산에 대한 회계 처리"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
+msgid "Accounting Entry for LCV in Stock Entry {0}"
+msgstr "재고 입력에서 LCV에 대한 회계 입력 {0}"
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:943
+msgid "Accounting Entry for Landed Cost Voucher for SCR {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:848
+msgid "Accounting Entry for Service"
+msgstr "서비스 제공에 대한 회계 처리"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1015
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1036
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1054
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1075
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1096
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1124
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1236
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1472
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1494
+#: erpnext/controllers/stock_controller.py:733
+#: erpnext/controllers/stock_controller.py:750
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
+msgid "Accounting Entry for Stock"
+msgstr "주식에 대한 회계 처리"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:745
+msgid "Accounting Entry for {0}"
+msgstr "{0}에 대한 회계 전표"
+
+#: erpnext/controllers/accounts_controller.py:2438
+msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:193
+#: erpnext/assets/doctype/asset/asset.js:185
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:92
+#: erpnext/buying/doctype/supplier/supplier.js:98
+#: erpnext/public/js/controllers/stock_controller.js:88
+#: erpnext/public/js/utils/ledger_preview.js:8
+#: erpnext/selling/doctype/customer/customer.js:173
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:51
+msgid "Accounting Ledger"
+msgstr "회계 원장"
+
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Accounting Masters"
+msgstr ""
+
+#. Title of the Module Onboarding 'Accounting Onboarding'
+#: erpnext/accounts/module_onboarding/accounting_onboarding/accounting_onboarding.json
+msgid "Accounting Onboarding"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Accounting Period"
+msgstr "회계 기간"
+
+#: erpnext/accounts/doctype/accounting_period/accounting_period.py:68
+msgid "Accounting Period overlaps with {0}"
+msgstr ""
+
+#. Description of the 'Accounts Frozen Till Date' (Date) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Accounting entries are frozen up to this date. Only users with the specified role can create or modify entries before this date."
+msgstr ""
+
+#. Label of the applicable_on_account (Link) field in DocType 'Applicable On
+#. Account'
+#. Label of the accounts (Table) field in DocType 'Bank Transaction Rule'
+#. Label of the accounts (Table) field in DocType 'Mode of Payment'
+#. Label of the payment_accounts_section (Section Break) field in DocType
+#. 'Payment Entry'
+#. Label of the accounts (Table) field in DocType 'Tax Withholding Category'
+#. Label of the section_break_2 (Section Break) field in DocType 'Asset
+#. Category'
+#. Label of the accounts (Table) field in DocType 'Asset Category'
+#. Label of the accounts (Table) field in DocType 'Supplier'
+#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
+#. Label of the accounts (Table) field in DocType 'Customer Group'
+#. Label of the accounts (Section Break) field in DocType 'Email Digest'
+#. Group in Incoterm's connections
+#. Label of the accounts (Table) field in DocType 'Supplier Group'
+#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+#: erpnext/assets/doctype/asset_category/asset_category.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/company/company.py:448
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/setup/install.py:427
+msgid "Accounts"
+msgstr "계정"
+
+#. Label of the closing_settings_tab (Tab Break) field in DocType 'Accounts
+#. Settings'
+#. Label of the accounts_closing_tab (Tab Break) field in DocType 'Company'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Accounts Closing"
+msgstr "계정 마감"
+
+#. Label of the accounts_frozen_till_date (Date) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Accounts Frozen Till Date"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:186
+msgid "Accounts Included in Report"
+msgstr "보고서에 포함된 계정"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:160
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:185
+msgid "Accounts Missing from Report"
+msgstr "보고서에서 누락된 계정"
+
+#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal
+#. Entry'
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.json
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
+#: erpnext/buying/doctype/supplier/supplier.js:110
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Accounts Payable"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:177
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.json
+msgid "Accounts Payable Summary"
+msgstr ""
+
+#. Option for the 'Write Off Based On' (Select) field in DocType 'Journal
+#. Entry'
+#. Option for the 'Report' (Select) field in DocType 'Process Statement Of
+#. Accounts'
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:12
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:12
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.json
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:149
+#: erpnext/selling/doctype/customer/customer.js:162
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Accounts Receivable"
+msgstr ""
+
+#. Label of the accounts_receivable_payable_tuning_section (Section Break)
+#. field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Accounts Receivable / Payable Tuning"
+msgstr "매출채권/매입채무 조정"
+
+#. Label of the accounts_receivable_credit (Link) field in DocType 'Invoice
+#. Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Accounts Receivable Credit Account"
+msgstr ""
+
+#. Label of the accounts_receivable_discounted (Link) field in DocType 'Invoice
+#. Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Accounts Receivable Discounted Account"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:204
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.json
+msgid "Accounts Receivable Summary"
+msgstr ""
+
+#. Label of the accounts_receivable_unpaid (Link) field in DocType 'Invoice
+#. Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Accounts Receivable Unpaid Account"
+msgstr ""
+
+#. Label of the receivable_payable_remarks_length (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Accounts Receivable/Payable"
+msgstr "매출채권/매입채무"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a shortcut in the ERPNext Settings Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Accounts Settings"
+msgstr "계정 설정"
+
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: erpnext/desktop_icon/accounts_setup.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Accounts Setup"
+msgstr "계정 설정"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1330
+msgid "Accounts table cannot be blank."
+msgstr "계정 테이블은 비워둘 수 없습니다."
+
+#. Label of the merge_accounts (Table) field in DocType 'Ledger Merge'
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+msgid "Accounts to Merge"
+msgstr "계정 병합"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
+msgid "Accrued Expenses"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/report/account_balance/account_balance.js:37
+msgid "Accumulated Depreciation"
+msgstr ""
+
+#. Label of the accumulated_depreciation_account (Link) field in DocType 'Asset
+#. Category Account'
+#. Label of the accumulated_depreciation_account (Link) field in DocType
+#. 'Company'
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Accumulated Depreciation Account"
+msgstr ""
+
+#. Label of the accumulated_depreciation_amount (Currency) field in DocType
+#. 'Depreciation Schedule'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:178
+#: erpnext/assets/doctype/asset/asset.js:380
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+msgid "Accumulated Depreciation Amount"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:876
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:894
+msgid "Accumulated Depreciation as on"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:519
+msgid "Accumulated Monthly"
+msgstr ""
+
+#: erpnext/controllers/budget_controller.py:425
+msgid "Accumulated Monthly Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}"
+msgstr ""
+
+#: erpnext/controllers/budget_controller.py:327
+msgid "Accumulated Monthly Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}"
+msgstr ""
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:39
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.js:8
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:40
+msgid "Accumulated Values"
+msgstr "누적 값"
+
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:125
+msgid "Accumulated Values in Group Company"
+msgstr "그룹 회사 누적 가치"
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:111
+msgid "Achieved ({})"
+msgstr ""
+
+#. Label of the acquisition_date (Date) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Acquisition Date"
+msgstr "취득일"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Acre"
+msgstr "에이커"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Acre (US)"
+msgstr "에이커(미국)"
+
+#. Label of the action_if_quality_inspection_is_not_submitted (Select) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Action If Quality Inspection Is Not Submitted"
+msgstr "품질 검사 보고서가 제출되지 않을 경우 조치 사항"
+
+#. Label of the action_if_quality_inspection_is_rejected (Select) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Action If Quality Inspection Is Rejected"
+msgstr "품질 검사 결과가 불합격일 경우 조치 사항"
+
+#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:7
+msgid "Action Initialised"
+msgstr "작업 초기화됨"
+
+#. Label of the action_if_accumulated_monthly_budget_exceeded (Select) field in
+#. DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Accumulated Monthly Budget Exceeded on Actual"
+msgstr ""
+
+#. Label of the action_if_accumulated_monthly_budget_exceeded_on_mr (Select)
+#. field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Accumulated Monthly Budget Exceeded on MR"
+msgstr ""
+
+#. Label of the action_if_accumulated_monthly_budget_exceeded_on_po (Select)
+#. field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Accumulated Monthly Budget Exceeded on PO"
+msgstr ""
+
+#. Label of the action_if_accumulated_monthly_exceeded_on_cumulative_expense
+#. (Select) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Accumulative Monthly Budget Exceeded on Cumulative Expense"
+msgstr ""
+
+#. Label of the action_if_annual_budget_exceeded (Select) field in DocType
+#. 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Annual Budget Exceeded on Actual"
+msgstr "실제 지출이 연간 예산을 초과할 경우 조치 사항"
+
+#. Label of the action_if_annual_budget_exceeded_on_mr (Select) field in
+#. DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Annual Budget Exceeded on MR"
+msgstr "MR에서 연간 예산 초과 시 조치 사항"
+
+#. Label of the action_if_annual_budget_exceeded_on_po (Select) field in
+#. DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Annual Budget Exceeded on PO"
+msgstr ""
+
+#. Label of the action_if_annual_exceeded_on_cumulative_expense (Select) field
+#. in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Action if Anual Budget Exceeded on Cumulative Expense"
+msgstr "누적 지출액이 연간 예산을 초과할 경우 조치 사항"
+
+#. Label of the maintain_same_rate_action (Select) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Action if Same Rate is Not Maintained Throughout Internal Transaction"
+msgstr "내부 거래 전반에 걸쳐 동일한 환율이 유지되지 않을 경우 조치 사항"
+
+#. Label of the maintain_same_rate_action (Select) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Action if same rate is not maintained"
+msgstr "동일한 요금이 유지되지 않을 경우 조치 사항"
+
+#. Label of the maintain_same_rate_action (Select) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Action if same rate is not maintained throughout sales cycle"
+msgstr "판매 주기 전반에 걸쳐 동일한 가격이 유지되지 않을 경우 조치 사항"
+
+#. Label of the action_on_new_invoice (Select) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Action on New Invoice"
+msgstr "새 송장에 대한 조치"
+
+#. Label of the actions_performed (Text Editor) field in DocType 'Asset
+#. Maintenance Log'
+#. Label of the actions_performed (Long Text) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Actions performed"
+msgstr "수행된 조치"
+
+#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/item/item.js:407
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Activate Serial / Batch No for Item"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:55
+msgid "Active Leads"
+msgstr ""
+
+#. Label of the on_status_image (Attach Image) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Active Status"
+msgstr "활성 상태"
+
+#. Label of a number card in the Subcontracting Workspace
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Active Subcontracted Items"
+msgstr "활성 하청 품목"
+
+#. Label of the activities_tab (Tab Break) field in DocType 'Lead'
+#. Label of the activities_tab (Tab Break) field in DocType 'Opportunity'
+#. Label of the activities_tab (Tab Break) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Activities"
+msgstr "활동"
+
+#. Name of a DocType
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Activity Cost"
+msgstr "활동 비용"
+
+#: erpnext/projects/doctype/activity_cost/activity_cost.py:51
+msgid "Activity Cost exists for Employee {0} against Activity Type - {1}"
+msgstr ""
+
+#: erpnext/projects/doctype/activity_type/activity_type.js:10
+msgid "Activity Cost per Employee"
+msgstr ""
+
+#. Label of the activity_type (Link) field in DocType 'Sales Invoice Timesheet'
+#. Label of the activity_type (Link) field in DocType 'Activity Cost'
+#. Name of a DocType
+#. Label of the activity_type (Data) field in DocType 'Activity Type'
+#. Label of the activity_type (Link) field in DocType 'Timesheet Detail'
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/activity_type/activity_type.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:32
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/public/js/projects/timer.js:9
+#: erpnext/templates/pages/timelog_info.html:25
+#: erpnext/workspace_sidebar/projects.json
+msgid "Activity Type"
+msgstr "활동 유형"
+
+#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:246
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:250
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:332
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:342
+msgid "Actual"
+msgstr "실제"
+
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:125
+msgid "Actual Balance Qty"
+msgstr "실제 잔액 수량"
+
+#. Label of the actual_batch_qty (Float) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Actual Batch Quantity"
+msgstr "실제 배치 수량"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:101
+msgid "Actual Cost"
+msgstr "실제 비용"
+
+#. Label of the actual_date (Date) field in DocType 'Maintenance Schedule
+#. Detail'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+msgid "Actual Date"
+msgstr "실제 날짜"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:121
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:141
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:66
+msgid "Actual Delivery Date"
+msgstr "실제 배송일"
+
+#. Label of the section_break_cmgo (Section Break) field in DocType 'Master
+#. Production Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+msgid "Actual Demand"
+msgstr "실수"
+
+#. Label of the actual_end_date (Datetime) field in DocType 'Job Card'
+#. Label of the actual_end_date (Datetime) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:254
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:129
+msgid "Actual End Date"
+msgstr "실제 종료일"
+
+#. Label of the actual_end_date (Date) field in DocType 'Project'
+#. Label of the act_end_date (Date) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Actual End Date (via Timesheet)"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
+msgid "Actual End Date cannot be before Actual Start Date"
+msgstr ""
+
+#. Label of the actual_end_time (Datetime) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Actual End Time"
+msgstr "실제 종료 시간"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:471
+msgid "Actual Expense"
+msgstr "실제 비용"
+
+#: erpnext/accounts/doctype/budget/budget.py:599
+msgid "Actual Expenses"
+msgstr "실제 비용"
+
+#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order'
+#. Label of the actual_operating_cost (Currency) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Actual Operating Cost"
+msgstr "실제 운영 비용"
+
+#. Label of the actual_operation_time (Float) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Actual Operation Time"
+msgstr "실제 작동 시간"
+
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:456
+msgid "Actual Posting"
+msgstr "실제 게시"
+
+#. Label of the actual_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the actual_qty (Float) field in DocType 'Bin'
+#. Label of the actual_qty (Float) field in DocType 'Material Request Item'
+#. Label of the actual_qty (Float) field in DocType 'Packed Item'
+#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:21
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:95
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:143
+msgid "Actual Qty"
+msgstr "실제 수량"
+
+#. Label of the actual_qty (Float) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Actual Qty (at source/target)"
+msgstr "실제 수량 (출발지/목표지 기준)"
+
+#. Label of the actual_qty (Float) field in DocType 'Asset Capitalization Stock
+#. Item'
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+msgid "Actual Qty in Warehouse"
+msgstr "창고 실제 수량"
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:201
+msgid "Actual Qty is mandatory"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:37
+#: erpnext/stock/dashboard/item_dashboard_list.html:28
+msgid "Actual Qty {0} / Waiting Qty {1}"
+msgstr "실제 수량 {0} / 대기 수량 {1}"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:196
+msgid "Actual Qty: Quantity available in the warehouse."
+msgstr "실제 수량: 창고에 재고가 있는 수량입니다."
+
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:95
+msgid "Actual Quantity"
+msgstr "실제 수량"
+
+#. Label of the actual_start_date (Datetime) field in DocType 'Job Card'
+#. Label of the actual_start_date (Datetime) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:248
+msgid "Actual Start Date"
+msgstr "실제 시작일"
+
+#. Label of the actual_start_date (Date) field in DocType 'Project'
+#. Label of the act_start_date (Date) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Actual Start Date (via Timesheet)"
+msgstr "실제 시작일 (근무 시간표 기준)"
+
+#. Label of the actual_start_time (Datetime) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Actual Start Time"
+msgstr "실제 시작 시간"
+
+#. Label of the timing_detail (Tab Break) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Actual Time"
+msgstr "실제 시간"
+
+#. Label of the section_break_9 (Section Break) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Actual Time and Cost"
+msgstr "실제 소요 시간 및 비용"
+
+#. Label of the actual_time (Float) field in DocType 'Project'
+#. Label of the actual_time (Float) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Actual Time in Hours (via Timesheet)"
+msgstr ""
+
+#: erpnext/stock/page/stock_balance/stock_balance.js:55
+msgid "Actual qty in stock"
+msgstr "실제 재고 수량"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
+#: erpnext/public/js/controllers/accounts.js:197
+msgid "Actual type tax cannot be included in Item rate in row {0}"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1022
+msgid "Ad-hoc Qty"
+msgstr "임시 수량"
+
+#: erpnext/stock/doctype/item/item.js:670
+#: erpnext/stock/doctype/price_list/price_list.js:8
+msgid "Add / Edit Prices"
+msgstr "가격 추가/수정"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:214
+msgid "Add Columns in Transaction Currency"
+msgstr "거래 통화에 열 추가"
+
+#: erpnext/templates/pages/task_info.html:94
+#: erpnext/templates/pages/task_info.html:96
+msgid "Add Comment"
+msgstr "댓글 추가"
+
+#. Label of the add_corrective_operation_cost_in_finished_good_valuation
+#. (Check) field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Add Corrective Operation Cost in Finished Good Valuation"
+msgstr ""
+
+#: erpnext/public/js/event.js:24
+msgid "Add Customers"
+msgstr "고객 추가"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:93
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:442
+msgid "Add Discount"
+msgstr "할인 추가"
+
+#: erpnext/public/js/event.js:40
+msgid "Add Employees"
+msgstr "직원 추가"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:256
+#: erpnext/selling/doctype/sales_order/sales_order.js:278
+#: erpnext/stock/dashboard/item_dashboard.js:216
+msgid "Add Item"
+msgstr "항목 추가"
+
+#: erpnext/public/js/utils/item_selector.js:20
+#: erpnext/public/js/utils/item_selector.js:35
+msgid "Add Items"
+msgstr "항목 추가"
+
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56
+msgid "Add Items in the Purpose Table"
+msgstr ""
+
+#: erpnext/crm/doctype/lead/lead.js:84
+msgid "Add Lead to Prospect"
+msgstr ""
+
+#: erpnext/public/js/event.js:16
+msgid "Add Leads"
+msgstr ""
+
+#. Label of the add_local_holidays (Section Break) field in DocType 'Holiday
+#. List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Add Local Holidays"
+msgstr "지역 공휴일 추가"
+
+#. Label of the add_manually (Check) field in DocType 'Repost Payment Ledger'
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+msgid "Add Manually"
+msgstr "수동으로 추가"
+
+#: erpnext/projects/doctype/task/task_tree.js:42
+msgid "Add Multiple"
+msgstr "여러 개를 추가하세요"
+
+#: erpnext/projects/doctype/task/task_tree.js:49
+msgid "Add Multiple Tasks"
+msgstr "여러 작업을 추가하세요"
+
+#. Label of the add_deduct_tax (Select) field in DocType 'Advance Taxes and
+#. Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+msgid "Add Or Deduct"
+msgstr "더하기 또는 빼기"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:280
+msgid "Add Order Discount"
+msgstr "주문 추가 할인"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416
+msgid "Add Phantom Item"
+msgstr ""
+
+#. Label of the add_quote (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Add Quote"
+msgstr "견적 추가"
+
+#. Label of the add_raw_materials (Button) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom/bom.js:1047
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Add Raw Materials"
+msgstr "원자재를 추가하세요"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:732
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1283
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:728
+msgid "Add Row"
+msgstr "행 추가"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:227
+#: banking/src/components/features/Settings/MatchingRules.tsx:30
+msgid "Add Rule"
+msgstr "규칙 추가"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:82
+msgid "Add Safety Stock"
+msgstr "안전 재고 추가"
+
+#: erpnext/public/js/event.js:48
+msgid "Add Sales Partners"
+msgstr "판매 파트너 추가"
+
+#. Label of the add_schedule (Button) field in DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order/sales_order.js:687
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Add Schedule"
+msgstr "일정 추가"
+
+#. Label of the add_serial_batch_bundle (Button) field in DocType
+#. 'Subcontracting Receipt Item'
+#. Label of the add_serial_batch_bundle (Button) field in DocType
+#. 'Subcontracting Receipt Supplied Item'
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Add Serial / Batch Bundle"
+msgstr ""
+
+#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the add_serial_batch_bundle (Button) field in DocType 'Purchase
+#. Receipt Item'
+#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the add_serial_batch_bundle (Button) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Add Serial / Batch No"
+msgstr ""
+
+#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the add_serial_batch_for_rejected_qty (Button) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Add Serial / Batch No (Rejected Qty)"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:26
+msgid "Add Series Prefix"
+msgstr "시리즈 접두사 추가"
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:200
+msgid "Add Stock"
+msgstr "재고 추가"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:281
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:416
+msgid "Add Sub Assembly"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:517
+#: erpnext/public/js/event.js:32
+msgid "Add Suppliers"
+msgstr ""
+
+#: erpnext/utilities/activation.py:124
+msgid "Add Timesheets"
+msgstr "근무 시간표 추가"
+
+#. Label of the add_weekly_holidays (Section Break) field in DocType 'Holiday
+#. List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Add Weekly Holidays"
+msgstr "주간 휴일 추가"
+
+#: erpnext/public/js/utils/crm_activities.js:144
+msgid "Add a Note"
+msgstr "메모를 추가하세요"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:902
+msgid "Add a charge to the payment entry with the difference amount"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:886
+msgid "Add a charge to the payment entry with the unallocated amount"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:821
+msgid "Add a row with the difference amount"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:579
+msgid "Add all accounts that you want to split the transaction into."
+msgstr "거래를 분할할 모든 계정을 추가하세요."
+
+#: erpnext/www/book_appointment/index.html:42
+msgid "Add details"
+msgstr "세부 정보 추가"
+
+#: erpnext/stock/doctype/pick_list/pick_list.js:89
+#: erpnext/stock/doctype/pick_list/pick_list.py:936
+msgid "Add items in the Item Locations table"
+msgstr ""
+
+#. Label of the add_deduct_tax (Select) field in DocType 'Purchase Taxes and
+#. Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+msgid "Add or Deduct"
+msgstr "더하기 또는 빼기"
+
+#: erpnext/utilities/activation.py:114
+msgid "Add the rest of your organization as your users. You can also add invite Customers to your portal by adding them from Contacts"
+msgstr ""
+
+#. Label of the get_weekly_off_dates (Button) field in DocType 'Holiday List'
+#. Label of the get_local_holidays (Button) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Add to Holidays"
+msgstr "휴일에 추가"
+
+#: erpnext/crm/doctype/lead/lead.js:38
+msgid "Add to Prospect"
+msgstr ""
+
+#. Label of the add_to_transit (Check) field in DocType 'Stock Entry'
+#. Label of the add_to_transit (Check) field in DocType 'Stock Entry Type'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Add to Transit"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:117
+msgid "Add vouchers to generate preview."
+msgstr ""
+
+#: erpnext/accounts/doctype/coupon_code/coupon_code.js:36
+msgid "Add/Edit Coupon Conditions"
+msgstr "쿠폰 조건 추가/수정"
+
+#. Label of the added_by (Link) field in DocType 'CRM Note'
+#: erpnext/crm/doctype/crm_note/crm_note.json
+msgid "Added By"
+msgstr "추가함"
+
+#. Label of the added_on (Datetime) field in DocType 'CRM Note'
+#: erpnext/crm/doctype/crm_note/crm_note.json
+msgid "Added On"
+msgstr "추가됨"
+
+#: erpnext/buying/doctype/supplier/supplier.py:135
+msgid "Added Supplier Role to User {0}."
+msgstr "사용자 {0}에 공급자 역할을 추가했습니다."
+
+#: erpnext/controllers/website_list_for_contact.py:304
+msgid "Added {1} Role to User {0}."
+msgstr "사용자 {0}에 {1} 역할을 추가했습니다."
+
+#: erpnext/crm/doctype/lead/lead.js:81
+msgid "Adding Lead to Prospect..."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451
+msgid "Additional"
+msgstr "추가의"
+
+#. Label of the additional_asset_cost (Currency) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Additional Asset Cost"
+msgstr "추가 자산 비용"
+
+#. Label of the additional_cost (Currency) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Additional Cost"
+msgstr "추가 비용"
+
+#. Label of the additional_cost_per_qty (Currency) field in DocType
+#. 'Subcontracting Order Item'
+#. Label of the additional_cost_per_qty (Currency) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Additional Cost Per Qty"
+msgstr ""
+
+#. Label of the additional_costs_section (Tab Break) field in DocType 'Stock
+#. Entry'
+#. Label of the additional_costs (Table) field in DocType 'Stock Entry'
+#. Label of the tab_additional_costs (Tab Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the additional_costs (Table) field in DocType 'Subcontracting
+#. Order'
+#. Label of the tab_additional_costs (Tab Break) field in DocType
+#. 'Subcontracting Receipt'
+#. Label of the additional_costs (Table) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Additional Costs"
+msgstr "추가 비용"
+
+#. Label of the additional_data (Code) field in DocType 'Common Code'
+#: erpnext/edi/doctype/common_code/common_code.json
+msgid "Additional Data"
+msgstr "추가 데이터"
+
+#. Label of the additional_details (Section Break) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Additional Details"
+msgstr "추가 정보"
+
+#. Label of the section_break_49 (Section Break) field in DocType 'POS Invoice'
+#. Label of the section_break_44 (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the additional_discount_section (Section Break) field in DocType
+#. 'Sales Invoice'
+#. Label of the discount_section (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the section_break_41 (Section Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the additional_discount_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the additional_discount_section (Section Break) field in DocType
+#. 'Sales Order'
+#. Label of the section_break_49 (Section Break) field in DocType 'Delivery
+#. Note'
+#. Label of the section_break_42 (Section Break) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Additional Discount"
+msgstr "추가 할인"
+
+#. Label of the discount_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice'
+#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice'
+#. Label of the additional_discount_amount (Currency) field in DocType
+#. 'Subscription'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Order'
+#. Label of the discount_amount (Currency) field in DocType 'Supplier
+#. Quotation'
+#. Label of the discount_amount (Currency) field in DocType 'Quotation'
+#. Label of the base_discount_amount (Currency) field in DocType 'Sales Order'
+#. Label of the discount_amount (Currency) field in DocType 'Sales Order'
+#. Label of the discount_amount (Currency) field in DocType 'Delivery Note'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Additional Discount Amount"
+msgstr "추가 할인 금액"
+
+#. Label of the base_discount_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the base_discount_amount (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the base_discount_amount (Currency) field in DocType 'Sales
+#. Invoice'
+#. Label of the base_discount_amount (Currency) field in DocType 'Purchase
+#. Order'
+#. Label of the base_discount_amount (Currency) field in DocType 'Supplier
+#. Quotation'
+#. Label of the base_discount_amount (Currency) field in DocType 'Quotation'
+#. Label of the base_discount_amount (Currency) field in DocType 'Delivery
+#. Note'
+#. Label of the base_discount_amount (Currency) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Additional Discount Amount (Company Currency)"
+msgstr "추가 할인 금액 (회사 통화)"
+
+#: erpnext/controllers/taxes_and_totals.py:833
+msgid "Additional Discount Amount ({discount_amount}) cannot exceed the total before such discount ({total_before_discount})"
+msgstr ""
+
+#. Label of the additional_discount_percentage (Float) field in DocType 'POS
+#. Invoice'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Purchase Invoice'
+#. Label of the additional_discount_percentage (Float) field in DocType 'Sales
+#. Invoice'
+#. Label of the additional_discount_percentage (Percent) field in DocType
+#. 'Subscription'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Purchase Order'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Supplier Quotation'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Quotation'
+#. Label of the additional_discount_percentage (Float) field in DocType 'Sales
+#. Order'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Delivery Note'
+#. Label of the additional_discount_percentage (Float) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Additional Discount Percentage"
+msgstr "추가 할인율"
+
+#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Additional Finished Good"
+msgstr "추가 완제품"
+
+#. Label of the addtional_info (Section Break) field in DocType 'Journal Entry'
+#. Label of the additional_info_section (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the more_information (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the section_break_jtou (Section Break) field in DocType 'Asset'
+#. Label of the additional_info_section (Section Break) field in DocType
+#. 'Purchase Order'
+#. Label of the more_info (Section Break) field in DocType 'Supplier Quotation'
+#. Label of the sb_more_info (Section Break) field in DocType 'Task'
+#. Label of the additional_info_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the additional_info_section (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the more_info (Section Break) field in DocType 'Delivery Note'
+#. Label of the additional_info_section (Section Break) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Additional Info"
+msgstr "추가 정보"
+
+#. Label of the other_info_tab (Section Break) field in DocType 'Lead'
+#. Label of the additional_information (Text) field in DocType 'Quality Review'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/selling/page/point_of_sale/pos_payment.js:59
+msgid "Additional Information"
+msgstr "추가 정보"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:85
+msgid "Additional Information updated successfully."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+msgid "Additional Material Transfer"
+msgstr "추가 물질 이송"
+
+#. Label of the additional_notes (Text) field in DocType 'Quotation Item'
+#. Label of the additional_notes (Text) field in DocType 'Sales Order Item'
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Additional Notes"
+msgstr "추가 참고 사항"
+
+#. Label of the additional_operating_cost (Currency) field in DocType 'Work
+#. Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Additional Operating Cost"
+msgstr "추가 운영 비용"
+
+#. Label of the additional_transferred_qty (Float) field in DocType 'Work
+#. Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Additional Transferred Qty"
+msgstr "추가 이체 수량"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
+msgid "Additional Transferred Qty {0}\n"
+"\t\t\t\t\tcannot be greater than {1}.\n"
+"\t\t\t\t\tTo fix this, increase the percentage value\n"
+"\t\t\t\t\tof the field 'Transfer Extra Raw Materials to WIP'\n"
+"\t\t\t\t\tin Manufacturing Settings."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
+msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
+msgstr ""
+
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Dunning'
+#. Label of the contact_and_address_tab (Tab Break) field in DocType 'POS
+#. Invoice'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase
+#. Order'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Request
+#. for Quotation'
+#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Supplier'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the address_contact_section (Section Break) field in DocType
+#. 'Opportunity'
+#. Label of the contacts_tab (Tab Break) field in DocType 'Prospect'
+#. Label of the contact_and_address_tab (Tab Break) field in DocType 'Customer'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType
+#. 'Quotation'
+#. Label of the contact_info (Tab Break) field in DocType 'Sales Order'
+#. Label of the company_info (Section Break) field in DocType 'Company'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Delivery
+#. Note'
+#. Label of the address_and_contact_tab (Tab Break) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Address & Contact"
+msgstr "주소 및 연락처"
+
+#. Label of the address_section (Section Break) field in DocType 'Lead'
+#. Label of the contact_details (Tab Break) field in DocType 'Employee'
+#. Label of the address_contacts (Section Break) field in DocType 'Sales
+#. Partner'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Address & Contacts"
+msgstr "주소 및 연락처"
+
+#. Label of a Link in the Financial Reports Workspace
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/selling/report/address_and_contacts/address_and_contacts.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Address And Contacts"
+msgstr "주소 및 연락처"
+
+#. Label of the address_desc (HTML) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Address Desc"
+msgstr "주소 설명"
+
+#. Label of the address_html (HTML) field in DocType 'Bank'
+#. Label of the address_html (HTML) field in DocType 'Bank Account'
+#. Label of the address_html (HTML) field in DocType 'Shareholder'
+#. Label of the address_html (HTML) field in DocType 'Supplier'
+#. Label of the address_html (HTML) field in DocType 'Lead'
+#. Label of the address_html (HTML) field in DocType 'Opportunity'
+#. Label of the address_html (HTML) field in DocType 'Prospect'
+#. Label of the address_html (HTML) field in DocType 'Customer'
+#. Label of the address_html (HTML) field in DocType 'Sales Partner'
+#. Label of the address_html (HTML) field in DocType 'Manufacturer'
+#. Label of the address_html (HTML) field in DocType 'Warehouse'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Address HTML"
+msgstr "주소 HTML"
+
+#. Label of the address (Link) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Address Name"
+msgstr ""
+
+#. Label of the address_and_contact (Section Break) field in DocType 'Bank'
+#. Label of the address_and_contact (Section Break) field in DocType 'Bank
+#. Account'
+#. Label of the address_and_contact (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the address_contacts (Section Break) field in DocType 'Customer'
+#. Label of the address_and_contact (Section Break) field in DocType
+#. 'Warehouse'
+#. Label of the tab_address_and_contact (Tab Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the tab_addresses (Tab Break) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Address and Contact"
+msgstr "주소 및 연락처"
+
+#. Label of the address_contacts (Section Break) field in DocType 'Shareholder'
+#. Label of the address_contacts (Section Break) field in DocType 'Supplier'
+#. Label of the address_contacts (Section Break) field in DocType
+#. 'Manufacturer'
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+msgid "Address and Contacts"
+msgstr "주소 및 연락처"
+
+#: erpnext/accounts/custom/address.py:33
+msgid "Address needs to be linked to a Company. Please add a row for Company in the Links table."
+msgstr "주소는 회사와 연결되어야 합니다. 링크 테이블에 회사 항목을 추가해 주세요."
+
+#. Description of the 'Determine Address Tax Category From' (Select) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Address used to determine Tax Category in transactions"
+msgstr "거래에서 세금 분류를 결정하는 데 사용되는 주소"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
+msgid "Adjustment Against"
+msgstr "조정"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:670
+msgid "Adjustment based on Purchase Invoice rate"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:2
+msgid "Administrative Assistant"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
+msgid "Administrative Expenses"
+msgstr "관리비"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:3
+msgid "Administrative Officer"
+msgstr "행정 담당자"
+
+#. Label of the advance_account (Link) field in DocType 'Party Account'
+#: erpnext/accounts/doctype/party_account/party_account.json
+msgid "Advance Account"
+msgstr "선불 계좌"
+
+#: erpnext/utilities/transaction_base.py:273
+msgid "Advance Account: {0} must be in either customer billing currency: {1} or Company default currency: {2}"
+msgstr ""
+
+#. Label of the advance_amount (Currency) field in DocType 'Purchase Invoice
+#. Advance'
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:165
+msgid "Advance Amount"
+msgstr ""
+
+#. Label of the advance_paid (Currency) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Advance Paid"
+msgstr "선불"
+
+#. Label of the advance_paid (Currency) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Advance Paid (Company Currency)"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:75
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:122
+msgid "Advance Payment"
+msgstr "선불"
+
+#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Advance Payment Date"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+msgid "Advance Payment Ledger Entry"
+msgstr ""
+
+#. Label of the advance_payment_status (Select) field in DocType 'Purchase
+#. Order'
+#. Label of the advance_payment_status (Select) field in DocType 'Sales Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Advance Payment Status"
+msgstr ""
+
+#. Label of the advances_section (Section Break) field in DocType 'POS Invoice'
+#. Label of the advances_section (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the advances_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the advance_payments_section (Section Break) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/controllers/accounts_controller.py:288
+#: erpnext/setup/doctype/company/company.json
+msgid "Advance Payments"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the taxes (Table) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Advance Taxes and Charges"
+msgstr ""
+
+#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Journal
+#. Entry Account'
+#. Label of the advance_voucher_no (Dynamic Link) field in DocType 'Payment
+#. Entry Reference'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Advance Voucher No"
+msgstr ""
+
+#. Label of the advance_voucher_type (Link) field in DocType 'Journal Entry
+#. Account'
+#. Label of the advance_voucher_type (Link) field in DocType 'Payment Entry
+#. Reference'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Advance Voucher Type"
+msgstr ""
+
+#. Label of the advance_amount (Currency) field in DocType 'Sales Invoice
+#. Advance'
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Advance amount"
+msgstr ""
+
+#: erpnext/controllers/taxes_and_totals.py:970
+msgid "Advance amount cannot be greater than {0} {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:878
+msgid "Advance paid against {0} {1} cannot be greater than Grand Total {2}"
+msgstr ""
+
+#. Description of the 'Only Include Allocated Payments' (Check) field in
+#. DocType 'Purchase Invoice'
+#. Description of the 'Only Include Allocated Payments' (Check) field in
+#. DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Advance payments allocated against orders will only be fetched"
+msgstr ""
+
+#. Label of the advanced_features_tab (Tab Break) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Advanced Features"
+msgstr "고급 기능"
+
+#. Label of the advanced_filtering (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Advanced Filtering"
+msgstr "고급 필터링"
+
+#. Label of the advances (Table) field in DocType 'POS Invoice'
+#. Label of the advances (Table) field in DocType 'Purchase Invoice'
+#. Label of the advances (Table) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Advances"
+msgstr "발전"
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:3
+msgid "Advertisement"
+msgstr "광고"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:2
+msgid "Advertising"
+msgstr "광고"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:3
+msgid "Aerospace"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:20
+msgid "After save, please refresh the page to apply the changes."
+msgstr ""
+
+#. Label of the against (Text) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:20
+msgid "Against"
+msgstr "에 맞서"
+
+#. Label of the against_account (Data) field in DocType 'Bank Clearance Detail'
+#. Label of the against_account (Text) field in DocType 'Journal Entry Account'
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:164
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:331
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:140
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:42
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:95
+#: erpnext/accounts/report/general_ledger/general_ledger.py:774
+msgid "Against Account"
+msgstr "계좌에 대해"
+
+#. Label of the against_blanket_order (Check) field in DocType 'Purchase Order
+#. Item'
+#. Label of the against_blanket_order (Check) field in DocType 'Quotation Item'
+#. Label of the against_blanket_order (Check) field in DocType 'Sales Order
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Against Blanket Order"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
+msgid "Against Customer Order {0}"
+msgstr "고객 주문에 대해 {0}"
+
+#. Label of the dn_detail (Data) field in DocType 'Delivery Note Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Delivery Note Item"
+msgstr ""
+
+#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Quotation
+#. Item'
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+msgid "Against Docname"
+msgstr "문서 이름에 대해"
+
+#. Label of the prevdoc_doctype (Link) field in DocType 'Quotation Item'
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+msgid "Against Doctype"
+msgstr "Doctype에 반대합니다"
+
+#. Label of the prevdoc_detail_docname (Data) field in DocType 'Installation
+#. Note Item'
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+msgid "Against Document Detail No"
+msgstr ""
+
+#. Label of the prevdoc_docname (Dynamic Link) field in DocType 'Maintenance
+#. Visit Purpose'
+#. Label of the prevdoc_docname (Data) field in DocType 'Installation Note
+#. Item'
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+msgid "Against Document No"
+msgstr "문서 번호에 대한 반대"
+
+#. Label of the against_expense_account (Small Text) field in DocType 'Purchase
+#. Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Against Expense Account"
+msgstr "경비 계정에 대한 반박"
+
+#. Label of the against_fg (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Against Finished Good"
+msgstr "완성된 것에 반대합니다"
+
+#. Label of the against_income_account (Small Text) field in DocType 'POS
+#. Invoice'
+#. Label of the against_income_account (Small Text) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Against Income Account"
+msgstr "소득 계정에 대한"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:740
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:777
+msgid "Against Journal Entry {0} does not have any unmatched {1} entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:393
+msgid "Against Journal Entry {0} is already adjusted against some other voucher"
+msgstr ""
+
+#. Label of the against_pick_list (Link) field in DocType 'Delivery Note Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Pick List"
+msgstr ""
+
+#. Label of the against_sales_invoice (Link) field in DocType 'Delivery Note
+#. Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Sales Invoice"
+msgstr "매출 송장 대비"
+
+#. Label of the si_detail (Data) field in DocType 'Delivery Note Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Sales Invoice Item"
+msgstr "판매 송장 항목 대비"
+
+#. Label of the against_sales_order (Link) field in DocType 'Delivery Note
+#. Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Sales Order"
+msgstr "판매 주문에 대해"
+
+#. Label of the so_detail (Data) field in DocType 'Delivery Note Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Against Sales Order Item"
+msgstr "판매 주문 품목에 대해"
+
+#. Label of the against_stock_entry (Link) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Against Stock Entry"
+msgstr "주식 입력에 대한 반대"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:332
+msgid "Against Supplier Invoice {0}"
+msgstr ""
+
+#. Label of the against_voucher (Dynamic Link) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/report/general_ledger/general_ledger.py:807
+msgid "Against Voucher"
+msgstr ""
+
+#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Advance
+#. Payment Ledger Entry'
+#. Label of the against_voucher_no (Dynamic Link) field in DocType 'Payment
+#. Ledger Entry'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:57
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:71
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:192
+msgid "Against Voucher No"
+msgstr ""
+
+#. Label of the against_voucher_type (Link) field in DocType 'Advance Payment
+#. Ledger Entry'
+#. Label of the against_voucher_type (Link) field in DocType 'GL Entry'
+#. Label of the against_voucher_type (Link) field in DocType 'Payment Ledger
+#. Entry'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/general_ledger/general_ledger.py:805
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:183
+msgid "Against Voucher Type"
+msgstr ""
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:113
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:60
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:259
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:102
+msgid "Age"
+msgstr "나이"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:154
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:138
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:139
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
+msgid "Age (Days)"
+msgstr ""
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
+msgid "Age ({0})"
+msgstr "나이 ({0})"
+
+#. Label of the ageing_based_on (Select) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:66
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:119
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:21
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:95
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:119
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:21
+msgid "Ageing Based On"
+msgstr "노화 기준"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:80
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:35
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:109
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:35
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:58
+msgid "Ageing Range"
+msgstr "노화 범위"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:104
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:352
+msgid "Ageing Report based on {0} up to {1}"
+msgstr ""
+
+#. Label of the agenda (Table) field in DocType 'Quality Meeting'
+#. Label of the agenda (Text Editor) field in DocType 'Quality Meeting Agenda'
+#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json
+#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json
+msgid "Agenda"
+msgstr "의제"
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:4
+msgid "Agent"
+msgstr "대리인"
+
+#. Label of the agent_busy_message (Data) field in DocType 'Incoming Call
+#. Settings'
+#. Label of the agent_busy_message (Data) field in DocType 'Voice Call
+#. Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Agent Busy Message"
+msgstr "상담원 통화 중입니다. 메시지"
+
+#. Label of the agent_detail_section (Section Break) field in DocType
+#. 'Appointment Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Agent Details"
+msgstr ""
+
+#. Label of the agent_group (Link) field in DocType 'Incoming Call Handling
+#. Schedule'
+#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json
+msgid "Agent Group"
+msgstr ""
+
+#. Label of the agent_unavailable_message (Data) field in DocType 'Incoming
+#. Call Settings'
+#. Label of the agent_unavailable_message (Data) field in DocType 'Voice Call
+#. Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Agent Unavailable Message"
+msgstr ""
+
+#. Label of the agent_list (Table MultiSelect) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Agents"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+msgid "Aggregate a group of Items into another Item. This is useful if you are maintaining the stock of the packed items and not the bundled item"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:4
+msgid "Agriculture"
+msgstr "농업"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:5
+msgid "Airline"
+msgstr "공기 호스"
+
+#. Label of the algorithm (Select) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "Algorithm"
+msgstr "연산"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:165
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:185
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:168
+#: erpnext/accounts/utils.py:1643 erpnext/public/js/setup_wizard.js:184
+msgid "All Accounts"
+msgstr "모든 계정"
+
+#. Label of the all_activities_section (Section Break) field in DocType 'Lead'
+#. Label of the all_activities_section (Section Break) field in DocType
+#. 'Opportunity'
+#. Label of the all_activities_section (Section Break) field in DocType
+#. 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "All Activities"
+msgstr "모든 활동"
+
+#. Label of the all_activities_html (HTML) field in DocType 'Lead'
+#. Label of the all_activities_html (HTML) field in DocType 'Opportunity'
+#. Label of the all_activities_html (HTML) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "All Activities HTML"
+msgstr "모든 활동 HTML"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:392
+msgid "All BOMs"
+msgstr "모든 BOM"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Contact"
+msgstr "모든 연락처"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Customer Contact"
+msgstr "모든 고객 연락처"
+
+#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:9
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:165
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:167
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:174
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:180
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:186
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:192
+msgid "All Customer Groups"
+msgstr "모든 고객 그룹"
+
+#: erpnext/patches/v11_0/create_department_records_for_each_company.py:23
+#: erpnext/patches/v11_0/update_department_lft_rgt.py:9
+#: erpnext/patches/v11_0/update_department_lft_rgt.py:11
+#: erpnext/patches/v11_0/update_department_lft_rgt.py:16
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
+msgid "All Departments"
+msgstr "모든 부서"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Employee (Active)"
+msgstr "모든 직원(재직 중)"
+
+#: erpnext/setup/doctype/item_group/item_group.py:35
+#: erpnext/setup/doctype/item_group/item_group.py:36
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:33
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:41
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:48
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:54
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:60
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:66
+msgid "All Item Groups"
+msgstr "모든 품목 그룹"
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:29
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:247
+msgid "All Items"
+msgstr "모든 품목"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Lead (Open)"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:114
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:113
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:115
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:113
+msgid "All Parties"
+msgstr "모든 당사자"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Sales Partner Contact"
+msgstr "모든 판매 파트너 연락처"
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Sales Person"
+msgstr "모든 판매원"
+
+#. Description of a DocType
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "All Sales Transactions can be tagged against multiple Sales Persons so that you can set and monitor targets."
+msgstr ""
+
+#. Option for the 'Send To' (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "All Supplier Contact"
+msgstr ""
+
+#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:29
+#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:32
+#: erpnext/patches/v11_0/rename_supplier_type_to_supplier_group.py:36
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:197
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:199
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:206
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:212
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:218
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:224
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:230
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:236
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:242
+msgid "All Supplier Groups"
+msgstr ""
+
+#: erpnext/patches/v13_0/remove_bad_selling_defaults.py:12
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:145
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:147
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:154
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:160
+msgid "All Territories"
+msgstr "모든 지역"
+
+#: erpnext/setup/doctype/company/company.py:386
+msgid "All Warehouses"
+msgstr "모든 창고"
+
+#. Description of the 'Reconciled' (Check) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "All allocations have been successfully reconciled"
+msgstr ""
+
+#: erpnext/support/doctype/issue/issue.js:109
+msgid "All communications including and above this shall be moved into the new Issue"
+msgstr ""
+
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
+msgid "All items are already requested"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:1494
+msgid "All items have already been Invoiced/Returned"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
+msgid "All items have already been received"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
+msgid "All items have already been transferred for this Work Order."
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:2950
+msgid "All items in this document already have a linked Quality Inspection."
+msgstr "이 문서에 있는 모든 항목에는 이미 품질 검사 링크가 연결되어 있습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
+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:1254
+msgid "All linked Sales Orders must be subcontracted."
+msgstr ""
+
+#. Description of the 'Carry Forward Communication and Comments' (Check) field
+#. in DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "All the Comments and Emails will be copied from one document to another newly created document(Lead -> Opportunity -> Quotation) throughout the CRM documents."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:200
+msgid "All the items have been already returned."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
+msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
+msgid "All these items have already been Invoiced/Returned"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:100
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:101
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:108
+msgid "Allocate"
+msgstr "할당하다"
+
+#. Label of the allocate_advances_automatically (Check) field in DocType 'POS
+#. Invoice'
+#. Label of the allocate_advances_automatically (Check) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Allocate Advances Automatically (FIFO)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
+msgid "Allocate Payment Amount"
+msgstr "지불 금액 할당"
+
+#. Label of the allocate_payment_based_on_payment_terms (Check) field in
+#. DocType 'Payment Terms Template'
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
+msgid "Allocate Payment Based On Payment Terms"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
+msgid "Allocate Payment Request"
+msgstr "할당 지급 요청"
+
+#. Label of the allocated_amount (Currency) field in DocType 'Payment Entry
+#. Reference'
+#. Label of the allocated (Check) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:293
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:710
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:747
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:873
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Allocated"
+msgstr "할당됨"
+
+#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction'
+#. Label of the allocated_amount (Currency) field in DocType 'Bank Transaction
+#. Payments'
+#. Label of the allocated_amount (Currency) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the allocated_amount (Currency) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the allocated_amount (Currency) field in DocType 'Purchase Invoice
+#. Advance'
+#. Label of the allocated_amount (Currency) field in DocType 'Unreconcile
+#. Payment Entries'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+#: erpnext/accounts/report/gross_profit/gross_profit.py:409
+#: erpnext/public/js/utils/unreconcile.js:87
+msgid "Allocated Amount"
+msgstr "할당된 금액"
+
+#. Label of the sec_break2 (Section Break) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Allocated Entries"
+msgstr "할당된 항목"
+
+#: erpnext/public/js/templates/crm_activities.html:49
+msgid "Allocated To:"
+msgstr "할당 대상:"
+
+#. Label of the allocated_amount (Currency) field in DocType 'Sales Invoice
+#. Advance'
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Allocated amount"
+msgstr "할당된 금액"
+
+#: erpnext/accounts/utils.py:659
+msgid "Allocated amount cannot be greater than unadjusted amount"
+msgstr ""
+
+#: erpnext/accounts/utils.py:657
+msgid "Allocated amount cannot be negative"
+msgstr ""
+
+#. Label of the allocation (Table) field in DocType 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:282
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Allocation"
+msgstr "배당"
+
+#. Label of the allocations (Table) field in DocType 'Process Payment
+#. Reconciliation Log'
+#. Label of the allocations_section (Section Break) field in DocType 'Process
+#. Payment Reconciliation Log'
+#. Label of the allocations (Table) field in DocType 'Unreconcile Payment'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+#: erpnext/public/js/utils/unreconcile.js:104
+msgid "Allocations"
+msgstr "할당"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:427
+msgid "Allotted Qty"
+msgstr "할당 수량"
+
+#. Label of the allow_account_creation_against_child_company (Check) field in
+#. DocType 'Company'
+#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
+#: erpnext/setup/doctype/company/company.json
+msgid "Allow Account Creation Against Child Company"
+msgstr "자회사에 대한 계정 생성 허용"
+
+#. Label of the allow_alternative_item (Check) field in DocType 'BOM'
+#. Label of the allow_alternative_item (Check) field in DocType 'BOM Item'
+#. Label of the allow_alternative_item (Check) field in DocType 'Job Card Item'
+#. Label of the allow_alternative_item (Check) field in DocType 'Work Order'
+#. Label of the allow_alternative_item (Check) field in DocType 'Work Order
+#. Item'
+#. Label of the allow_alternative_item (Check) field in DocType 'Item'
+#. Label of the allow_alternative_item (Check) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Allow Alternative Item"
+msgstr "대체 항목 허용"
+
+#: erpnext/stock/doctype/item_alternative/item_alternative.py:67
+msgid "Allow Alternative Item must be checked on Item {}"
+msgstr ""
+
+#. Label of the material_consumption (Check) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow Continuous Material Consumption"
+msgstr ""
+
+#. Label of the allow_editing_of_items_and_quantities_in_work_order (Check)
+#. field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow Editing of Items and Quantities in Work Order"
+msgstr ""
+
+#. Label of the job_card_excess_transfer (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow Excess Material Transfer"
+msgstr "과잉 자재 이송을 허용합니다"
+
+#. Label of the allow_pegged_currencies_exchange_rates (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Allow Implicit Pegged Currency Conversion"
+msgstr "암묵적 고정 통화 변환 허용"
+
+#. Label of the allow_in_returns (Check) field in DocType 'POS Payment Method'
+#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json
+msgid "Allow In Returns"
+msgstr "반품 허용"
+
+#. Label of the allow_internal_transfer_at_arms_length_price (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow Internal Transfers at Arm's Length Price"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:859
+msgid "Allow Item to Be Added Multiple Times in a Transaction"
+msgstr "거래 시 상품을 여러 번 추가할 수 있도록 허용"
+
+#. Label of the allow_multiple_items (Check) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allow Item to be added multiple times in a transaction"
+msgstr ""
+
+#. Label of the allow_lead_duplication_based_on_emails (Check) field in DocType
+#. 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Allow Lead Duplication based on Emails"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:9
+msgid "Allow Multiple Material Consumption"
+msgstr "여러 재료 소비를 허용합니다"
+
+#. Label of the allow_negative_stock (Check) field in DocType 'Item'
+#. Label of the allow_negative_stock (Check) field in DocType 'Repost Item
+#. Valuation'
+#. Label of the allow_negative_stock (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:215
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:227
+msgid "Allow Negative Stock"
+msgstr "마이너스 주식 허용"
+
+#. Label of the allow_negative_stock_for_batch (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow Negative Stock for Batch"
+msgstr "배치에 대해 마이너스 재고를 허용합니다"
+
+#. Label of the allow_or_restrict (Select) field in DocType 'Accounting
+#. Dimension Filter'
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Allow Or Restrict Dimension"
+msgstr "치수 허용 또는 제한"
+
+#. Label of the allow_overtime (Check) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow Overtime"
+msgstr "초과 근무 허용"
+
+#. Label of the allow_partial_payment (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Allow Partial Payment"
+msgstr "부분 결제 허용"
+
+#. Label of the allow_partial_reservation (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow Partial Reservation"
+msgstr "부분 예약 허용"
+
+#. Label of the allow_production_on_holidays (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow Production on Holidays"
+msgstr "공휴일에도 생산을 허용합니다"
+
+#. Label of the is_purchase_item (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow Purchase"
+msgstr "구매 허용"
+
+#. Label of the allow_purchase_invoice_creation_without_purchase_order (Check)
+#. field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Allow Purchase Invoice Creation Without Purchase Order"
+msgstr ""
+
+#. Label of the allow_purchase_invoice_creation_without_purchase_receipt
+#. (Check) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Allow Purchase Invoice Creation Without Purchase Receipt"
+msgstr ""
+
+#. Label of the allow_zero_qty_in_purchase_order (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allow Purchase Order with Zero Quantity"
+msgstr ""
+
+#. Label of the allow_zero_qty_in_quotation (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow Quotation with zero quantity"
+msgstr ""
+
+#. Label of the allow_rename_attribute_value (Check) field in DocType 'Item
+#. Variant Settings'
+#: erpnext/controllers/item_variant.py:159
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Allow Rename Attribute Value"
+msgstr "속성 값 이름 변경 허용"
+
+#. Label of the allow_zero_qty_in_request_for_quotation (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allow Request for Quotation with Zero Quantity"
+msgstr ""
+
+#. Label of the allow_resetting_service_level_agreement (Check) field in
+#. DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Allow Resetting Service Level Agreement"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:785
+msgid "Allow Resetting Service Level Agreement from Support Settings."
+msgstr ""
+
+#. Label of the is_sales_item (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow Sales"
+msgstr "판매 허용"
+
+#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
+#. in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow Sales Order creation for expired Quotation"
+msgstr ""
+
+#. Label of the allow_zero_qty_in_sales_order (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow Sales Order with zero quantity"
+msgstr ""
+
+#. Label of the allow_stale (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Allow Stale Exchange Rates"
+msgstr "오래된 환율을 허용합니다"
+
+#. Label of the allow_zero_qty_in_supplier_quotation (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allow Supplier Quotation with Zero Quantity"
+msgstr ""
+
+#. Label of the allow_uom_with_conversion_rate_defined_in_item (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow UOM with Conversion Rate Defined in Item"
+msgstr ""
+
+#. Label of the allow_discount_change (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Allow User to Edit Discount"
+msgstr "사용자가 할인 내용을 수정할 수 있도록 허용"
+
+#. Label of the allow_rate_change (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Allow User to Edit Rate"
+msgstr "사용자가 요금을 수정할 수 있도록 허용"
+
+#. Label of the allow_warehouse_change (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Allow User to Edit Warehouse"
+msgstr "사용자가 창고 정보를 편집할 수 있도록 허용"
+
+#. Label of the allow_different_uom (Check) field in DocType 'Item Variant
+#. Settings'
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Allow Variant UOM to be different from Template UOM"
+msgstr ""
+
+#. Label of the allow_zero_rate (Check) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Allow Zero Rate"
+msgstr "제로 금리 허용"
+
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'POS Invoice
+#. Item'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Sales
+#. Invoice Item'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Delivery
+#. Note Item'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Purchase
+#. Receipt Item'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the allow_zero_valuation_rate (Check) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Allow Zero Valuation Rate"
+msgstr ""
+
+#. Label of the allow_delivery_of_overproduced_qty (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow delivery of overproduced quantity"
+msgstr ""
+
+#. Label of the editable_price_list_rate (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow editing Price List rate in transactions"
+msgstr ""
+
+#. Label of the allow_existing_serial_no (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow existing Serial No to be Manufactured/Received again"
+msgstr ""
+
+#. Description of the 'Allow Continuous Material Consumption' (Check) field in
+#. DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow material consumptions without immediately manufacturing finished goods against a Work Order"
+msgstr ""
+
+#. Label of the allow_multi_currency_invoices_against_single_party_account
+#. (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Allow multi-currency invoices against single party account "
+msgstr "단일 거래처 계정에 대해 여러 통화로 된 송장을 허용합니다. "
+
+#. Label of the allow_against_multiple_purchase_orders (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow multiple Sales Orders against a customer's Purchase Order"
+msgstr ""
+
+#. Label of the allow_negative_rates_for_items (Check) field in DocType 'Buying
+#. Settings'
+#. Label of the allow_negative_rates_for_items (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow negative rates for Items"
+msgstr ""
+
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
+#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
+#. DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow sales transactions with zero quantities if the rate is fixed but the quantities are not. e.g. Rate Contracts"
+msgstr ""
+
+#. Label of the allow_multiple_items (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Allow same Item to be added multiple times in a transaction"
+msgstr ""
+
+#. Description of the 'Allow Negative Stock' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow stock to go below zero for this item, even if negative stock is disabled in Stock Settings."
+msgstr ""
+
+#. Description of the 'Allow Alternative Item' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow substituting this item with an alternative from the Item Alternative list when stock is unavailable."
+msgstr "재고가 없을 경우, 해당 품목을 대체 품목 목록에서 선택하여 대체할 수 있도록 허용합니다."
+
+#. Description of the 'Allow Purchase' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow this item to be used in purchase transactions."
+msgstr "이 항목을 구매 거래에 사용할 수 있도록 허용하십시오."
+
+#. Description of the 'Allow Sales' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Allow this item to be used in sales transactions."
+msgstr "이 품목을 판매 거래에 사용할 수 있도록 허용하십시오."
+
+#. Label of the allow_to_edit_stock_uom_qty_for_purchase (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow to Edit Stock UOM Qty for Purchase Documents"
+msgstr "구매 문서의 재고 단위 수량 편집 허용"
+
+#. Label of the allow_to_edit_stock_uom_qty_for_sales (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow to Edit Stock UOM Qty for Sales Documents"
+msgstr "판매 문서의 재고 단위 수량 편집 허용"
+
+#. Label of the allow_to_make_quality_inspection_after_purchase_or_delivery
+#. (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allow to Make Quality Inspection after Purchase / Delivery"
+msgstr ""
+
+#. Description of the 'Allow Excess Material Transfer' (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Allow transferring raw materials even after the Required Quantity is fulfilled"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/allowed_dimension/allowed_dimension.json
+msgid "Allowed Dimension"
+msgstr "허용 치수"
+
+#. Label of the repost_allowed_types (Table) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Allowed Doctypes"
+msgstr "허용된 문서 유형"
+
+#. Group in Supplier's connections
+#. Group in Customer's connections
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed Items"
+msgstr "허용 품목"
+
+#. Name of a DocType
+#. Label of the companies (Table) field in DocType 'Supplier'
+#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Allowed To Transact With"
+msgstr "거래 허용 대상"
+
+#: erpnext/accounts/doctype/party_link/party_link.py:27
+msgid "Allowed primary roles are 'Customer' and 'Supplier'. Please select one of these roles only."
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:81
+msgid "Allowed special characters are '/' and '-'"
+msgstr ""
+
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
+#. Description of the 'Enable Stock Reservation' (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Allows to keep aside a specific quantity of inventory for a particular order."
+msgstr "특정 주문에 대해 특정 수량의 재고를 따로 확보해 둘 수 있도록 합니다."
+
+#. Description of the 'Allow Purchase Order with Zero Quantity' (Check) field
+#. in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allows users to submit Purchase Orders with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts."
+msgstr ""
+
+#. Description of the 'Allow Request for Quotation with Zero Quantity' (Check)
+#. field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allows users to submit Request for Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts."
+msgstr ""
+
+#. Description of the 'Allow Supplier Quotation with Zero Quantity' (Check)
+#. field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Allows users to submit Supplier Quotations with zero quantity. Useful when rates are fixed but the quantities are not. Eg. Rate Contracts."
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:1085
+msgid "Already Picked"
+msgstr "이미 선택됨"
+
+#: erpnext/stock/doctype/item_alternative/item_alternative.py:83
+msgid "Already record exists for the item {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:133
+msgid "Already set default in pos profile {0} for user {1}, kindly disabled default"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:20
+msgid "Also you can't switch back to FIFO after setting the valuation method to Moving Average for this item."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
+#: erpnext/public/js/utils.js:587
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
+msgid "Alternate Item"
+msgstr "대체 품목"
+
+#. Label of the alternative_item_code (Link) field in DocType 'Item
+#. Alternative'
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+msgid "Alternative Item Code"
+msgstr "대체 품목 코드"
+
+#. Label of the alternative_item_name (Read Only) field in DocType 'Item
+#. Alternative'
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+msgid "Alternative Item Name"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.js:379
+msgid "Alternative Items"
+msgstr "대체 품목"
+
+#: erpnext/stock/doctype/item_alternative/item_alternative.py:39
+msgid "Alternative item must not be same as item code"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:380
+msgid "Alternatively, you can download the template and fill your data in."
+msgstr ""
+
+#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Always Ask"
+msgstr "항상 질문하세요"
+
+#. Label of the amount (Currency) field in DocType 'Advance Payment Ledger
+#. Entry'
+#. Label of the tax_amount (Currency) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the amount (Data) field in DocType 'Bank Clearance Detail'
+#. Label of the amount (Currency) field in DocType 'Bank Guarantee'
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the amount (Currency) field in DocType 'Budget Distribution'
+#. Label of the amount (Float) field in DocType 'Cashier Closing Payments'
+#. Label of the sec_break1 (Section Break) field in DocType 'Journal Entry
+#. Account'
+#. Label of the payment_amounts_section (Section Break) field in DocType
+#. 'Payment Entry'
+#. Label of the amount (Currency) field in DocType 'Payment Ledger Entry'
+#. Label of the amount (Currency) field in DocType 'Payment Order Reference'
+#. Label of the amount (Currency) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the amount (Currency) field in DocType 'Payment Reconciliation
+#. Invoice'
+#. Label of the amount (Currency) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the amount (Currency) field in DocType 'Payment Reference'
+#. Label of the grand_total (Currency) field in DocType 'Payment Request'
+#. Option for the 'Discount Type' (Select) field in DocType 'Payment Schedule'
+#. Option for the 'Discount Type' (Select) field in DocType 'Payment Term'
+#. Option for the 'Discount Type' (Select) field in DocType 'Payment Terms
+#. Template Detail'
+#. Label of the amount (Currency) field in DocType 'POS Closing Entry Taxes'
+#. Option for the 'Margin Type' (Select) field in DocType 'POS Invoice Item'
+#. Label of the amount (Currency) field in DocType 'POS Invoice Item'
+#. Label of the grand_total (Currency) field in DocType 'POS Invoice Reference'
+#. Option for the 'Margin Type' (Select) field in DocType 'Pricing Rule'
+#. Label of the amount (Currency) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the amount (Currency) field in DocType 'Purchase Invoice Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the tax_amount (Currency) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Option for the 'Margin Type' (Select) field in DocType 'Sales Invoice Item'
+#. Label of the amount (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the amount (Currency) field in DocType 'Sales Invoice Payment'
+#. Label of the grand_total (Currency) field in DocType 'Sales Invoice
+#. Reference'
+#. Label of the tax_amount (Currency) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the amount (Currency) field in DocType 'Share Balance'
+#. Label of the amount (Currency) field in DocType 'Share Transfer'
+#. Label of the amount (Currency) field in DocType 'Asset Capitalization
+#. Service Item'
+#. Label of the amount (Currency) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the amount (Currency) field in DocType 'Purchase Order Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Order Item'
+#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the amount (Currency) field in DocType 'Supplier Quotation Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the amount (Currency) field in DocType 'Opportunity Item'
+#. Label of the amount (Currency) field in DocType 'Prospect Opportunity'
+#. Label of the amount_section (Section Break) field in DocType 'BOM Creator
+#. Item'
+#. Label of the amount (Currency) field in DocType 'BOM Creator Item'
+#. Label of the amount (Currency) field in DocType 'BOM Explosion Item'
+#. Label of the amount (Currency) field in DocType 'BOM Item'
+#. Label of the amount (Currency) field in DocType 'Work Order Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Quotation Item'
+#. Label of the amount (Currency) field in DocType 'Quotation Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Sales Order Item'
+#. Label of the amount (Currency) field in DocType 'Sales Order Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Delivery Note Item'
+#. Label of the amount (Currency) field in DocType 'Delivery Note Item'
+#. Label of the amount (Currency) field in DocType 'Landed Cost Item'
+#. Label of the amount (Currency) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#. Option for the 'Distribute Charges Based On' (Select) field in DocType
+#. 'Landed Cost Voucher'
+#. Label of the amount (Currency) field in DocType 'Material Request Item'
+#. Label of the amount (Currency) field in DocType 'Purchase Receipt Item'
+#. Option for the 'Margin Type' (Select) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the amount (Currency) field in DocType 'Stock Entry Detail'
+#. Label of the amount (Currency) field in DocType 'Stock Reconciliation Item'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Option for the 'Distribute Additional Costs Based On ' (Select) field in
+#. DocType 'Subcontracting Order'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Order Item'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Order
+#. Service Item'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Option for the 'Distribute Additional Costs Based On ' (Select) field in
+#. DocType 'Subcontracting Receipt'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt
+#. Item'
+#. Label of the amount (Currency) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:169
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:327
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:83
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:835
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1204
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1265
+#: banking/src/components/features/BankReconciliation/SelectedTransactionsTable.tsx:25
+#: banking/src/pages/BankStatementImporter.tsx:159
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json
+#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:627
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/payment_reference/payment_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:41
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:67
+#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:252
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:10
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:48
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:79
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:411
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:44
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:273
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:327
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:201
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:111
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:44
+#: erpnext/accounts/report/share_balance/share_balance.py:61
+#: erpnext/accounts/report/share_ledger/share_ledger.py:57
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:74
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:275
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/public/js/controllers/transaction.js:512
+#: erpnext/selling/doctype/quotation/quotation.js:315
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:52
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:53
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:290
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:164
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:43
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:66
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:109
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:156
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:71
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/templates/form_grid/bank_reconciliation_grid.html:4
+#: erpnext/templates/form_grid/item_grid.html:9
+#: erpnext/templates/form_grid/stock_entry_grid.html:11
+#: erpnext/templates/pages/order.html:103 erpnext/templates/pages/rfq.html:46
+msgid "Amount"
+msgstr "양"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
+msgid "Amount (AED)"
+msgstr "금액 (AED)"
+
+#. Label of the base_amount (Currency) field in DocType 'Advance Payment Ledger
+#. Entry'
+#. Label of the base_tax_amount (Currency) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the amount (Currency) field in DocType 'Payment Entry Deduction'
+#. Label of the base_amount (Currency) field in DocType 'POS Invoice Item'
+#. Label of the base_amount (Currency) field in DocType 'Purchase Invoice Item'
+#. Label of the base_tax_amount (Currency) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the base_tax_amount (Currency) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the base_amount (Currency) field in DocType 'Purchase Order Item'
+#. Label of the base_amount (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the base_amount (Currency) field in DocType 'Opportunity Item'
+#. Label of the base_amount (Currency) field in DocType 'BOM Item'
+#. Label of the base_amount (Currency) field in DocType 'Quotation Item'
+#. Label of the base_amount (Currency) field in DocType 'Sales Order Item'
+#. Label of the base_amount (Currency) field in DocType 'Delivery Note Item'
+#. Label of the base_amount (Currency) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#. Label of the amount (Currency) field in DocType 'Landed Cost Vendor Invoice'
+#. Label of the base_amount (Currency) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Amount (Company Currency)"
+msgstr "금액 (회사 통화)"
+
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:314
+msgid "Amount Delivered"
+msgstr "전달된 금액"
+
+#. Label of the amount_difference (Currency) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Amount Difference"
+msgstr "금액 차이"
+
+#. Label of the amount_difference_with_purchase_invoice (Currency) field in
+#. DocType 'Purchase Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Amount Difference with Purchase Invoice"
+msgstr "구매 송장과의 금액 차이"
+
+#. Label of the amount_eligible_for_commission (Currency) field in DocType 'POS
+#. Invoice'
+#. Label of the amount_eligible_for_commission (Currency) field in DocType
+#. 'Sales Invoice'
+#. Label of the amount_eligible_for_commission (Currency) field in DocType
+#. 'Sales Order'
+#. Label of the amount_eligible_for_commission (Currency) field in DocType
+#. 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Amount Eligible for Commission"
+msgstr "수수료 지급 대상 금액"
+
+#. Label of the amount_in_figure (Column Break) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Amount In Figure"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Amount column has \"CR\"/\"DR\" values"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Amount column has positive/negative values"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:836
+msgid "Amount does not match the selected transaction"
+msgstr ""
+
+#. Label of the amount_in_account_currency (Currency) field in DocType 'Payment
+#. Ledger Entry'
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:212
+msgid "Amount in Account Currency"
+msgstr "계좌 통화 금액"
+
+#. Description of the 'Outstanding Amount' (Currency) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Amount in party's bank account currency"
+msgstr "상대방 은행 계좌 통화 금액"
+
+#. Description of the 'Amount' (Currency) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Amount in transaction currency"
+msgstr "거래 통화 금액"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:74
+msgid "Amount in {0}"
+msgstr "{0} 단위 금액"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:836
+msgid "Amount matches the selected transaction"
+msgstr ""
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:189
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:209
+msgid "Amount to Bill"
+msgstr "청구 금액"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
+msgid "Amount {0} {1} transferred from {2} to {3}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1240
+msgid "Amount {0} {1} {2} {3}"
+msgstr "금액 {0} {1} {2} {3}"
+
+#. Label of the amounts_section (Section Break) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Amounts"
+msgstr "금액"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ampere"
+msgstr "암페어"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ampere-Hour"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ampere-Minute"
+msgstr "암페어-분"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ampere-Second"
+msgstr "암페어-초"
+
+#: erpnext/controllers/trends.py:283 erpnext/controllers/trends.py:295
+#: erpnext/controllers/trends.py:304
+msgid "Amt"
+msgstr "금액"
+
+#. Description of a DocType
+#: erpnext/setup/doctype/item_group/item_group.json
+msgid "An Item Group is a way to classify items based on types."
+msgstr "품목 그룹은 품목의 종류에 따라 분류하는 방법입니다."
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
+msgid "An error has been appeared while reposting item valuation via {0}"
+msgstr ""
+
+#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/utils/sales_common.js:489
+msgid "An error occurred during the update process"
+msgstr ""
+
+#: erpnext/stock/reorder_item.py:377
+msgid "An error occurred for certain Items while creating Material Requests based on Re-order level. Please rectify these issues :"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:124
+msgid "Analysis Chart"
+msgstr "분석 차트"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:4
+msgid "Analyst"
+msgstr ""
+
+#. Label of the analytics_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Analytical Accounting"
+msgstr "분석 회계"
+
+#: erpnext/public/js/utils.js:184
+msgid "Annual Billing: {0}"
+msgstr ""
+
+#: erpnext/controllers/budget_controller.py:449
+msgid "Annual Budget for Account {0} against {1} {2} is {3}. It will be collectively ({4}) exceeded by {5}"
+msgstr ""
+
+#: erpnext/controllers/budget_controller.py:314
+msgid "Annual Budget for Account {0} against {1}: {2} is {3}. It will be exceeded by {4}"
+msgstr ""
+
+#. Label of the expense_year_to_date (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Annual Expenses"
+msgstr "연간 비용"
+
+#. Label of the income_year_to_date (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Annual Income"
+msgstr "연수"
+
+#. Label of the annual_revenue (Currency) field in DocType 'Lead'
+#. Label of the annual_revenue (Currency) field in DocType 'Opportunity'
+#. Label of the annual_revenue (Currency) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Annual Revenue"
+msgstr "세입"
+
+#: erpnext/accounts/doctype/budget/budget.py:140
+msgid "Another Budget record '{0}' already exists against {1} '{2}' and account '{3}' with overlapping fiscal years."
+msgstr "중복되는 회계연도를 가진 또 다른 예산 기록 '{0}'이 이미 ' {1} ', '{2}' 및 계정 '{3}'에 존재합니다."
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:107
+msgid "Another Cost Center Allocation record {0} applicable from {1}, hence this allocation will be applicable upto {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1045
+msgid "Another Payment Request is already processed"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.py:123
+msgid "Another Sales Person {0} exists with the same Employee id"
+msgstr ""
+
+#. Option for the 'Transaction Type' (Select) field in DocType 'Bank
+#. Transaction Rule'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Any"
+msgstr "어느"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:49
+msgid "Any debit transaction with the keyword 'Bank Fee'."
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:37
+msgid "Any one of following filters required: warehouse, Item Code, Item Group"
+msgstr "다음 필터 중 하나 이상을 선택해야 합니다: 창고, 품목 코드, 품목 그룹"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:6
+msgid "Apparel & Accessories"
+msgstr "의류 및 액세서리"
+
+#. Label of the applicable_charges (Currency) field in DocType 'Landed Cost
+#. Item'
+#. Label of the sec_break1 (Section Break) field in DocType 'Landed Cost
+#. Voucher'
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Applicable Charges"
+msgstr "적용되는 요금"
+
+#. Label of the dimensions (Table) field in DocType 'Accounting Dimension
+#. Filter'
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Applicable Dimension"
+msgstr "적용 가능한 치수"
+
+#. Description of the 'Holiday List' (Link) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Applicable Holiday List"
+msgstr "해당 공휴일 목록"
+
+#. Label of the applicable_modules_section (Section Break) field in DocType
+#. 'Terms and Conditions'
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+msgid "Applicable Modules"
+msgstr "적용 가능한 모듈"
+
+#. Label of the accounts (Table) field in DocType 'Accounting Dimension Filter'
+#. Name of a DocType
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json
+msgid "Applicable On Account"
+msgstr "계정에 적용 가능"
+
+#. Label of the to_designation (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Applicable To (Designation)"
+msgstr "적용 대상 (지정)"
+
+#. Label of the to_emp (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Applicable To (Employee)"
+msgstr "적용 대상 (직원)"
+
+#. Label of the system_role (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Applicable To (Role)"
+msgstr "적용 대상 (역할)"
+
+#. Label of the system_user (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Applicable To (User)"
+msgstr "적용 대상 (사용자)"
+
+#. Label of the countries (Table) field in DocType 'Price List'
+#: erpnext/stock/doctype/price_list/price_list.json
+msgid "Applicable for Countries"
+msgstr "적용 대상 국가"
+
+#. Label of the section_break_15 (Section Break) field in DocType 'POS Profile'
+#. Label of the applicable_for_users (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Applicable for Users"
+msgstr "사용자에게 적용 가능"
+
+#. Description of the 'Transporter' (Link) field in DocType 'Driver'
+#: erpnext/setup/doctype/driver/driver.json
+msgid "Applicable for external driver"
+msgstr "외부 드라이버에 적용 가능"
+
+#: erpnext/regional/italy/setup.py:162
+msgid "Applicable if the company is SpA, SApA or SRL"
+msgstr ""
+
+#: erpnext/regional/italy/setup.py:171
+msgid "Applicable if the company is a limited liability company"
+msgstr ""
+
+#: erpnext/regional/italy/setup.py:122
+msgid "Applicable if the company is an Individual or a Proprietorship"
+msgstr ""
+
+#. Label of the applicable_on_cumulative_expense (Check) field in DocType
+#. 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Applicable on Cumulative Expense"
+msgstr "누적 비용에 적용 가능"
+
+#. Label of the applicable_on_material_request (Check) field in DocType
+#. 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Applicable on Material Request"
+msgstr "자재 요청 시 적용 가능"
+
+#. Label of the applicable_on_purchase_order (Check) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Applicable on Purchase Order"
+msgstr ""
+
+#. Label of the applicable_on_booking_actual_expenses (Check) field in DocType
+#. 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Applicable on booking actual expenses"
+msgstr "실제 지출 내역 예약 시 적용 가능"
+
+#. Description of the 'Allow Partial Payment' (Check) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Applicable only on Transactions made using POS"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:10
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:10
+msgid "Application of Funds (Assets)"
+msgstr "자금(자산)의 사용"
+
+#: erpnext/templates/includes/order/order_taxes.html:70
+msgid "Applied Coupon Code"
+msgstr "적용된 쿠폰 코드"
+
+#. Description of the 'Minimum Value' (Float) field in DocType 'Quality
+#. Inspection Reading'
+#. Description of the 'Maximum Value' (Float) field in DocType 'Quality
+#. Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Applied on each reading."
+msgstr "측정할 때마다 적용됩니다."
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:198
+msgid "Applied putaway rules."
+msgstr "보관 규칙을 적용했습니다."
+
+#. Label of the applies_to (Table) field in DocType 'Common Code'
+#: erpnext/edi/doctype/common_code/common_code.json
+msgid "Applies To"
+msgstr "적용 대상"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:284
+msgid "Applies to deposits"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:284
+msgid "Applies to withdrawals"
+msgstr "인출에 적용됩니다"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:284
+msgid "Applies to withdrawals and deposits"
+msgstr ""
+
+#. Label of the apply_discount_on (Select) field in DocType 'POS Invoice'
+#. Label of the apply_discount_on (Select) field in DocType 'Purchase Invoice'
+#. Label of the apply_discount_on (Select) field in DocType 'Sales Invoice'
+#. Label of the apply_additional_discount (Select) field in DocType
+#. 'Subscription'
+#. Label of the apply_discount_on (Select) field in DocType 'Purchase Order'
+#. Label of the apply_discount_on (Select) field in DocType 'Supplier
+#. Quotation'
+#. Label of the apply_discount_on (Select) field in DocType 'Quotation'
+#. Label of the apply_discount_on (Select) field in DocType 'Sales Order'
+#. Label of the apply_discount_on (Select) field in DocType 'Delivery Note'
+#. Label of the apply_discount_on (Select) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Apply Additional Discount On"
+msgstr "추가 할인 적용"
+
+#. Label of the apply_discount_on (Select) field in DocType 'POS Profile'
+#. Label of the apply_discount_on (Select) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Apply Discount On"
+msgstr "할인 적용"
+
+#. Label of the apply_discount_on_rate (Check) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:190
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:199
+msgid "Apply Discount on Discounted Rate"
+msgstr "할인된 가격에 추가 할인을 적용하세요"
+
+#. Label of the apply_discount_on_rate (Check) field in DocType 'Promotional
+#. Scheme Price Discount'
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "Apply Discount on Rate"
+msgstr "요금에 할인 적용"
+
+#. Label of the apply_multiple_pricing_rules (Check) field in DocType 'Pricing
+#. Rule'
+#. Label of the apply_multiple_pricing_rules (Check) field in DocType
+#. 'Promotional Scheme Price Discount'
+#. Label of the apply_multiple_pricing_rules (Check) field in DocType
+#. 'Promotional Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Apply Multiple Pricing Rules"
+msgstr "여러 가격 책정 규칙 적용"
+
+#. Label of the apply_on (Select) field in DocType 'Pricing Rule'
+#. Label of the apply_on (Select) field in DocType 'Promotional Scheme'
+#. Label of the document_type (Link) field in DocType 'Service Level Agreement'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Apply On"
+msgstr "지원하세요"
+
+#. Label of the apply_putaway_rule (Check) field in DocType 'Purchase Receipt'
+#. Label of the apply_putaway_rule (Check) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Apply Putaway Rule"
+msgstr "보관 규칙을 적용하세요"
+
+#. Label of the apply_recursion_over (Float) field in DocType 'Pricing Rule'
+#. Label of the apply_recursion_over (Float) field in DocType 'Promotional
+#. Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Apply Recursion Over (As Per Transaction UOM)"
+msgstr ""
+
+#. Label of the brands (Table) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Apply Rule On Brand"
+msgstr "브랜드에 규칙 적용하기"
+
+#. Label of the items (Table) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Apply Rule On Item Code"
+msgstr "품목 코드에 규칙 적용"
+
+#. Label of the item_groups (Table) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Apply Rule On Item Group"
+msgstr "항목 그룹에 규칙 적용"
+
+#. Label of the apply_rule_on_other (Select) field in DocType 'Pricing Rule'
+#. Label of the apply_rule_on_other (Select) field in DocType 'Promotional
+#. Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Apply Rule On Other"
+msgstr "다른 항목에 규칙 적용"
+
+#. Label of the apply_sla_for_resolution (Check) field in DocType 'Service
+#. Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Apply SLA for Resolution Time"
+msgstr ""
+
+#. Description of the 'Enable Discounts and Margin' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Apply discounts and margins on products"
+msgstr "제품에 할인 및 마진을 적용하세요"
+
+#. Label of the apply_restriction_on_values (Check) field in DocType
+#. 'Accounting Dimension Filter'
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Apply restriction on dimension values"
+msgstr ""
+
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Apply to All Inventory Documents"
+msgstr "모든 재고 문서에 적용"
+
+#. Label of the document_type (Link) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Apply to Document"
+msgstr "문서에 적용"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "Appointment"
+msgstr "약속"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Appointment Booking Settings"
+msgstr "예약 설정"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json
+msgid "Appointment Booking Slots"
+msgstr "예약 가능 시간"
+
+#: erpnext/crm/doctype/appointment/appointment.py:95
+msgid "Appointment Confirmation"
+msgstr "예약 확인"
+
+#: erpnext/www/book_appointment/index.js:237
+msgid "Appointment Created Successfully"
+msgstr ""
+
+#. Label of the appointment_details_section (Section Break) field in DocType
+#. 'Appointment Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Appointment Details"
+msgstr "예약 세부 정보"
+
+#. Label of the appointment_duration (Int) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Appointment Duration (In Minutes)"
+msgstr "진료 시간 (분)"
+
+#: erpnext/www/book_appointment/index.py:20
+msgid "Appointment Scheduling Disabled"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.py:21
+msgid "Appointment Scheduling has been disabled for this site"
+msgstr ""
+
+#. Label of the appointment_with (Link) field in DocType 'Appointment'
+#: erpnext/crm/doctype/appointment/appointment.json
+msgid "Appointment With"
+msgstr "약속"
+
+#: erpnext/crm/doctype/appointment/appointment.py:101
+msgid "Appointment was created. But no lead was found. Please check the email to confirm"
+msgstr ""
+
+#. Label of the approving_role (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Approving Role (above authorized value)"
+msgstr "승인 역할 (승인된 값 이상)"
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:79
+msgid "Approving Role cannot be same as role the rule is Applicable To"
+msgstr ""
+
+#. Label of the approving_user (Link) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Approving User (above authorized value)"
+msgstr "승인 사용자 (허용된 값 초과)"
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:77
+msgid "Approving User cannot be same as user the rule is Applicable To"
+msgstr ""
+
+#. Description of the 'Enable Fuzzy Matching' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Approximately match the description/party name against parties"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Are"
+msgstr "~이다"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:423
+msgid "Are you sure you want to cancel this {} {}?"
+msgstr ""
+
+#: erpnext/public/js/utils/demo.js:17
+msgid "Are you sure you want to clear all demo data?"
+msgstr "데모 데이터를 모두 삭제하시겠습니까?"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:480
+msgid "Are you sure you want to delete this Item?"
+msgstr "이 항목을 정말로 삭제하시겠습니까?"
+
+#: erpnext/edi/doctype/code_list/code_list.js:18
+msgid "Are you sure you want to delete {0}?This action will also delete all associated Common Code documents.
"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.js:75
+msgid "Are you sure you want to restart this subscription?"
+msgstr "이 구독을 다시 시작하시겠습니까?"
+
+#: erpnext/accounts/doctype/budget/budget.js:82
+msgid "Are you sure you want to revise this budget? The current budget will be cancelled and a new draft will be created."
+msgstr "이 예산을 수정하시겠습니까? 현재 예산은 취소되고 새로운 예산안이 작성될 것입니다."
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:423
+msgid "Are you sure you want to unmatch the voucher from this transaction?"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:32
+msgid "Are you sure you want to unreconcile this transaction?"
+msgstr "이 거래를 취소하시겠습니까?"
+
+#. Label of the area (Float) field in DocType 'Location'
+#. Name of a UOM
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Area"
+msgstr "영역"
+
+#. Label of the area_uom (Link) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Area UOM"
+msgstr "면적 UOM"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:435
+msgid "Arrival Quantity"
+msgstr "도착 수량"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Arshin"
+msgstr ""
+
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:57
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:16
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:30
+msgid "As On Date"
+msgstr "현재 날짜 기준"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:198
+msgctxt "Do MMM YYYY"
+msgid "As of {0}"
+msgstr "{0} 기준"
+
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:123
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:123
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:15
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:15
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:15
+msgid "As on Date"
+msgstr "현재 날짜 기준"
+
+#. Description of the 'Finished Good Quantity ' (Float) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "As per Stock UOM"
+msgstr "재고 단위에 따라"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:189
+msgid "As the field {0} is enabled, the field {1} is mandatory."
+msgstr "필드 {0} 가 활성화되었으므로 필드 {1} 는 필수 입력 사항입니다."
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:197
+msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
+msgstr "필드 {0} 가 활성화되어 있으므로 필드 {1} 의 값은 1보다 커야 합니다."
+
+#: erpnext/stock/doctype/item/item.py:1110
+msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
+msgstr "항목 {0}에 대해 이미 제출된 거래가 있으므로 {1}의 값을 변경할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:240
+msgid "As there are reserved stock, you cannot disable {0}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1091
+msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
+msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
+msgstr "원자재가 충분하므로 창고 {0}에 대한 자재 요청은 필요하지 않습니다."
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:214
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:226
+msgid "As {0} is enabled, you can not enable {1}."
+msgstr ""
+
+#. Label of the po_items (Table) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Assembly Items"
+msgstr "조립 품목"
+
+#. Option for the 'Root Type' (Select) field in DocType 'Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
+#. Label of the asset (Link) field in DocType 'POS Invoice Item'
+#. Label of the asset (Link) field in DocType 'Sales Invoice Item'
+#. Name of a DocType
+#. Label of the asset (Link) field in DocType 'Asset Activity'
+#. Label of the asset (Link) field in DocType 'Asset Capitalization Asset Item'
+#. Label of the asset (Link) field in DocType 'Asset Depreciation Schedule'
+#. Label of the asset (Link) field in DocType 'Asset Movement Item'
+#. Label of the asset (Link) field in DocType 'Asset Repair'
+#. Label of the asset (Link) field in DocType 'Asset Shift Allocation'
+#. Label of the asset (Link) field in DocType 'Asset Value Adjustment'
+#. Label of a Link in the Assets Workspace
+#. Label of the asset (Link) field in DocType 'Serial No'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/account_balance/account_balance.js:25
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:30
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:141
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:44
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:822
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_activity/asset_activity.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:192
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset"
+msgstr "유산"
+
+#. Label of the asset_account (Link) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "Asset Account"
+msgstr "자산 계정"
+
+#. Name of a DocType
+#. Name of a report
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset_activity/asset_activity.json
+#: erpnext/assets/report/asset_activity/asset_activity.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Activity"
+msgstr "자산 활동"
+
+#. Group in Asset's connections
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Capitalization"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+msgid "Asset Capitalization Asset Item"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+msgid "Asset Capitalization Service Item"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+msgid "Asset Capitalization Stock Item"
+msgstr ""
+
+#. Label of the asset_category (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the asset_category (Link) field in DocType 'Asset'
+#. Name of a DocType
+#. Label of the asset_category (Read Only) field in DocType 'Asset Maintenance'
+#. Label of the asset_category (Read Only) field in DocType 'Asset Value
+#. Adjustment'
+#. Label of a Link in the Assets Workspace
+#. Label of the asset_category (Link) field in DocType 'Item'
+#. Label of the asset_category (Link) field in DocType 'Purchase Receipt Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:36
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:197
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:37
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:812
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_category/asset_category.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:23
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:484
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Category"
+msgstr "자산 범주"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+msgid "Asset Category Account"
+msgstr "자산 범주 계정"
+
+#. Label of the asset_category_name (Data) field in DocType 'Asset Category'
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Asset Category Name"
+msgstr "자산 카테고리 이름"
+
+#: erpnext/stock/doctype/item/item.py:375
+msgid "Asset Category is mandatory for Fixed Asset item"
+msgstr ""
+
+#. Label of the depreciation_cost_center (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Asset Depreciation Cost Center"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Depreciation Ledger"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "Asset Depreciation Schedule"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:178
+msgid "Asset Depreciation Schedule for Asset {0} and Finance Book {1} is not using shift based depreciation"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:249
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:184
+msgid "Asset Depreciation Schedule not found for Asset {0} and Finance Book {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:82
+msgid "Asset Depreciation Schedule {0} for Asset {1} already exists."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:76
+msgid "Asset Depreciation Schedule {0} for Asset {1} and Finance Book {2} already exists."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:236
+msgid "Asset Depreciation Schedules created/updated: {0} Please check, edit if needed, and submit the Asset."
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Depreciations and Balances"
+msgstr ""
+
+#. Label of the asset_details (Section Break) field in DocType 'Serial No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Asset Details"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Asset Disposal"
+msgstr "자산 처분"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Asset Finance Book"
+msgstr ""
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:476
+msgid "Asset ID"
+msgstr "자산 ID"
+
+#. Label of the asset_location (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the asset_location (Link) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Asset Location"
+msgstr "자산 위치"
+
+#. Name of a DocType
+#. Label of the asset_maintenance (Link) field in DocType 'Asset Maintenance
+#. Log'
+#. Name of a report
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log_calendar.js:18
+#: erpnext/assets/report/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Maintenance"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Maintenance Log"
+msgstr "자산 유지 관리 로그"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Asset Maintenance Task"
+msgstr "자산 유지 관리 작업"
+
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Maintenance Team"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:203
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Movement"
+msgstr "자산 이동"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+msgid "Asset Movement Item"
+msgstr "자산 이동 항목"
+
+#. Label of the asset_name (Data) field in DocType 'Asset'
+#. Label of the target_asset_name (Data) field in DocType 'Asset
+#. Capitalization'
+#. Label of the asset_name (Data) field in DocType 'Asset Capitalization Asset
+#. Item'
+#. Label of the asset_name (Link) field in DocType 'Asset Maintenance'
+#. Label of the asset_name (Read Only) field in DocType 'Asset Maintenance Log'
+#. Label of the asset_name (Data) field in DocType 'Asset Movement Item'
+#. Label of the asset_name (Read Only) field in DocType 'Asset Repair'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:148
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:831
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:482
+msgid "Asset Name"
+msgstr ""
+
+#. Label of the asset_naming_series (Select) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Asset Naming Series"
+msgstr ""
+
+#. Label of the asset_owner (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Asset Owner"
+msgstr "자산 소유자"
+
+#. Label of the asset_owner_company (Link) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Asset Owner Company"
+msgstr "자산 소유 회사"
+
+#. Label of the asset_quantity (Int) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Asset Quantity"
+msgstr "자산 수량"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
+#: erpnext/accounts/report/account_balance/account_balance.js:38
+#: erpnext/setup/doctype/company/company.json
+msgid "Asset Received But Not Billed"
+msgstr "자산 수령했으나 청구되지 않음"
+
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and
+#. Batch Bundle'
+#. Label of the asset_repair (Link) field in DocType 'Stock Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset/asset.js:108
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Repair"
+msgstr "자산 수리"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+msgid "Asset Repair Consumed Item"
+msgstr "자산 수리 소모 항목"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json
+msgid "Asset Repair Purchase Invoice"
+msgstr "자산 수리 구매 송장"
+
+#. Label of the asset_settings_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Asset Settings"
+msgstr "자산 설정"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json
+msgid "Asset Shift Allocation"
+msgstr "자산 이전 배분"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json
+msgid "Asset Shift Factor"
+msgstr "자산 이전 요인"
+
+#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.py:32
+msgid "Asset Shift Factor {0} is set as default currently. Please change it first."
+msgstr ""
+
+#. Label of the asset_status (Select) field in DocType 'Serial No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Asset Status"
+msgstr "자산 현황"
+
+#. Label of the asset_type (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Asset Type"
+msgstr "자산 유형"
+
+#. Label of the asset_value (Currency) field in DocType 'Asset Capitalization
+#. Asset Item'
+#: erpnext/assets/dashboard_fixtures.py:180
+#: erpnext/assets/doctype/asset/asset.js:512
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:208
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:459
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:506
+msgid "Asset Value"
+msgstr "자산 가치"
+
+#. Name of a DocType
+#. Label of a Link in the Assets Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset/asset.js:100
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Asset Value Adjustment"
+msgstr "자산 가치 조정"
+
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:53
+msgid "Asset Value Adjustment cannot be posted before Asset's purchase date {0} ."
+msgstr "자산 가치 조정은 자산 구매일 이전에 게시할 수 없습니다. {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 "자산 가치 분석"
+
+#: erpnext/assets/doctype/asset/asset.py:278
+msgid "Asset cancelled"
+msgstr "자산 취소됨"
+
+#: erpnext/assets/doctype/asset/asset.py:736
+msgid "Asset cannot be cancelled, as it is already {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:398
+msgid "Asset cannot be scrapped before the last depreciation entry."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:597
+msgid "Asset capitalized after Asset Capitalization {0} was submitted"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:287
+msgid "Asset created"
+msgstr "자산 생성됨"
+
+#: erpnext/assets/doctype/asset/asset.py:1439
+msgid "Asset created after being split from Asset {0}"
+msgstr "Asset {0}에서 분리된 후 생성된 Asset"
+
+#: erpnext/assets/doctype/asset/asset.py:290
+msgid "Asset deleted"
+msgstr "자산 삭제됨"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:181
+msgid "Asset issued to Employee {0}"
+msgstr "직원에게 지급된 자산 {0}"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:179
+msgid "Asset out of order due to Asset Repair {0}"
+msgstr "자산 수리로 인해 자산이 작동 중지되었습니다 {0}"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:168
+msgid "Asset received at Location {0} and issued to Employee {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:460
+msgid "Asset restored"
+msgstr "자산 복원됨"
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:605
+msgid "Asset restored after Asset Capitalization {0} was cancelled"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+msgid "Asset returned"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:446
+msgid "Asset scrapped"
+msgstr "자산 폐기됨"
+
+#: erpnext/assets/doctype/asset/depreciation.py:448
+msgid "Asset scrapped via Journal Entry {0}"
+msgstr "자산이 회계 전표를 통해 폐기되었습니다 {0}"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
+msgid "Asset sold"
+msgstr "자산 매각"
+
+#: erpnext/assets/doctype/asset/asset.py:265
+msgid "Asset submitted"
+msgstr "자산 제출됨"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:176
+msgid "Asset transferred to Location {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:1448
+msgid "Asset updated after being split into Asset {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:442
+msgid "Asset updated due to Asset Repair {0} {1}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:380
+msgid "Asset {0} cannot be scrapped, as it is already {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:195
+msgid "Asset {0} does not belong to Item {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:45
+msgid "Asset {0} does not belong to company {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:105
+msgid "Asset {0} does not belong to the custodian {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:77
+msgid "Asset {0} does not belong to the location {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:646
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:737
+msgid "Asset {0} does not exist"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:572
+msgid "Asset {0} has been updated. Please set the depreciation details if any and submit it."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:75
+msgid "Asset {0} is in {1} status and cannot be repaired."
+msgstr "자산 {0} 은 {1} 상태이며 수리할 수 없습니다."
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:95
+msgid "Asset {0} is not set to calculate depreciation."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:101
+msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
+msgstr "자산 {0} 이 제출되지 않았습니다. 진행하기 전에 자산을 제출해 주세요."
+
+#: erpnext/assets/doctype/asset/depreciation.py:378
+msgid "Asset {0} must be submitted"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:992
+msgid "Asset {assets_link} created for {item_code}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:222
+msgid "Asset's depreciation schedule updated after Asset Shift Allocation {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:81
+msgid "Asset's value adjusted after cancellation of Asset Value Adjustment {0}"
+msgstr "자산 가치 조정 취소 후 자산 가치가 조정되었습니다 {0}"
+
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:71
+msgid "Asset's value adjusted after submission of Asset Value Adjustment {0}"
+msgstr "자산 가치 조정 제출 후 자산 가치가 조정되었습니다 {0}"
+
+#. Label of the assets_tab (Tab Break) field in DocType 'Accounts Settings'
+#. Label of the asset_items (Table) field in DocType 'Asset Capitalization'
+#. Label of the assets (Table) field in DocType 'Asset Movement'
+#. Name of a Workspace
+#. Label of a Card Break in the Assets Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/finance_book/finance_book_dashboard.py:9
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:251
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/assets/workspace/assets/assets.json erpnext/desktop_icon/assets.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Assets"
+msgstr "자산"
+
+#. Title of the Module Onboarding 'Asset Onboarding'
+#: erpnext/assets/module_onboarding/asset_onboarding/asset_onboarding.json
+msgid "Assets Setup"
+msgstr "자산 설정"
+
+#: erpnext/controllers/buying_controller.py:1010
+msgid "Assets not created for {item_code}. You will have to create asset manually."
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:997
+msgid "Assets {assets_link} created for {item_code}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
+msgid "Assign Job to Employee"
+msgstr "직원에게 업무 배정"
+
+#. Label of the assign_to_name (Read Only) field in DocType 'Asset Maintenance
+#. Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Assign to Name"
+msgstr "이름 지정"
+
+#. Label of the filters_section (Section Break) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Assignment Conditions"
+msgstr "배정 조건"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:5
+msgid "Associate"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:137
+msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} for the batch {4} in the warehouse {5}. Please restock the item."
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:162
+msgid "At Row #{0}: The picked quantity {1} for the item {2} is greater than available stock {3} in the warehouse {4}."
+msgstr "행 #{0}에서 품목 {2} 에 대해 선택된 수량 {1} 이 창고 {4}의 사용 가능한 재고 {3} 보다 많습니다."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1436
+msgid "At Row {0}: In Serial and Batch Bundle {1} must have docstatus as 1 and not 0"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:85
+msgid "At least one account with exchange gain or loss is required"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:1297
+msgid "At least one asset has to be selected."
+msgstr "최소한 하나의 자산을 선택해야 합니다."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:1044
+msgid "At least one invoice has to be selected."
+msgstr "최소한 하나의 송장을 선택해야 합니다."
+
+#: erpnext/controllers/sales_and_purchase_return.py:168
+msgid "At least one item should be entered with negative quantity in return document"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:532
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:547
+msgid "At least one mode of payment is required for POS invoice."
+msgstr "POS 송장 발행에는 최소 한 가지 결제 수단이 필요합니다."
+
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.py:35
+msgid "At least one of the Applicable Modules should be selected"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:204
+msgid "At least one of the Selling or Buying must be selected"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
+msgid "At least one raw material item must be present in the stock entry for the type {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:27
+msgid "At least one row is required for a financial report template"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/routing/routing.py:50
+msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
+msgid "At row {0}: Batch No is mandatory for Item {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:129
+msgid "At row {0}: Parent Row No cannot be set for item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1169
+msgid "At row {0}: Qty is mandatory for the batch {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1176
+msgid "At row {0}: Serial No is mandatory for Item {1}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:681
+msgid "At row {0}: Serial and Batch Bundle {1} has already created. Please remove the values from the serial no or batch no fields."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:123
+msgid "At row {0}: set Parent Row No for item {1}"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:226
+msgid "Atleast one raw material for Finished Good Item {0} should be customer provided."
+msgstr "완제품 {0} 에 필요한 원자재 중 최소 하나는 고객이 제공해야 합니다."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Atmosphere"
+msgstr "대기"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:256
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:73
+msgid "Attach CSV File"
+msgstr ""
+
+#. Description of the 'File to Rename' (Attach) field in DocType 'Rename Tool'
+#: erpnext/utilities/doctype/rename_tool/rename_tool.json
+msgid "Attach a comma separated .csv file with two columns, one for the old name and one for the new name."
+msgstr "이전 이름과 새 이름, 두 개의 열로 구성된 쉼표로 구분된 .csv 파일을 첨부해 주세요."
+
+#. Label of the import_file (Attach) field in DocType 'Chart of Accounts
+#. Importer'
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+msgid "Attach custom Chart of Accounts file"
+msgstr ""
+
+#. Label of the attendance_and_leave_details (Tab Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Attendance & Leaves"
+msgstr "출석 및 휴가"
+
+#. Label of the attendance_device_id (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Attendance Device ID (Biometric/RF tag ID)"
+msgstr "출석 장치 ID(생체 인식/RF 태그 ID)"
+
+#. Label of the attribute (Link) field in DocType 'Website Attribute'
+#. Label of the attribute (Link) field in DocType 'Item Variant Attribute'
+#: erpnext/portal/doctype/website_attribute/website_attribute.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Attribute"
+msgstr "기인하다"
+
+#. Label of the attribute_name (Data) field in DocType 'Item Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+msgid "Attribute Name"
+msgstr "속성 이름"
+
+#. Label of the attribute_value (Data) field in DocType 'Item Attribute Value'
+#. Label of the attribute_value (Data) field in DocType 'Item Variant
+#. Attribute'
+#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Attribute Value"
+msgstr "속성 값"
+
+#: erpnext/stock/doctype/item/item.py:900
+msgid "Attribute Value {0} is not valid for the selected attribute {1}."
+msgstr "속성 값 {0} 은 선택된 속성 {1}에 대해 유효하지 않습니다."
+
+#: erpnext/stock/doctype/item/item.py:1046
+msgid "Attribute table is mandatory"
+msgstr ""
+
+#: erpnext/stock/doctype/item_attribute/item_attribute.py:107
+msgid "Attribute value: {0} must appear only once"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:889
+msgid "Attribute {0} is disabled."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:877
+msgid "Attribute {0} is not valid for the selected template."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1050
+msgid "Attribute {0} selected multiple times in Attributes Table"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:978
+msgid "Attributes"
+msgstr "속성"
+
+#. Name of a role
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/finance_book/finance_book.json
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Auditor"
+msgstr "감사"
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:67
+msgid "Authentication Failed"
+msgstr "인증 실패"
+
+#. Label of the authorised_by_section (Section Break) field in DocType
+#. 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Authorised By"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/authorization_control/authorization_control.json
+msgid "Authorization Control"
+msgstr "권한 관리"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Authorization Rule"
+msgstr "권한 부여 규칙"
+
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:27
+msgid "Authorized Signatory"
+msgstr ""
+
+#. Label of the value (Float) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Authorized Value"
+msgstr "승인된 값"
+
+#. Label of the auto_exchange_rate_revaluation (Check) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Auto Create Exchange Rate Revaluation"
+msgstr "환율 재평가 자동 생성"
+
+#. Label of the auto_create_serial_and_batch_bundle_for_outward (Check) field
+#. in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Create Serial and Batch Bundle For Outward"
+msgstr ""
+
+#. Label of the auto_created (Check) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "Auto Created"
+msgstr "자동 생성됨"
+
+#. Label of the auto_created_via_reorder (Check) field in DocType 'Material
+#. Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Auto Created (Reorder)"
+msgstr ""
+
+#. Label of the auto_created_serial_and_batch_bundle (Check) field in DocType
+#. 'Stock Ledger Entry'
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Auto Created Serial and Batch Bundle"
+msgstr ""
+
+#. Label of the auto_creation_of_contact (Check) field in DocType 'CRM
+#. Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Auto Creation of Contact"
+msgstr "연락처 자동 생성"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:380
+msgid "Auto Fetch"
+msgstr "자동 가져오기"
+
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:226
+msgid "Auto Fetch Serial Numbers"
+msgstr ""
+
+#. Label of the auto_insert_price_list_rate_if_missing (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Insert Item Price If Missing"
+msgstr ""
+
+#. Label of the auto_material_request (Section Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Material Request"
+msgstr "자동 자재 요청"
+
+#: erpnext/stock/reorder_item.py:328
+msgid "Auto Material Requests Generated"
+msgstr "자동 자재 요청 생성됨"
+
+#. Label of the auto_opt_in (Check) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Auto Opt In (For all customers)"
+msgstr "자동 참여 (모든 고객 대상)"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:66
+msgid "Auto Reconcile"
+msgstr "자동 조정"
+
+#. Label of the auto_reconcile_payments (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Auto Reconcile Payments"
+msgstr "자동 결제 조정"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1034
+msgid "Auto Reconciliation"
+msgstr "자동 조정"
+
+#. Label of the auto_reconciliation_job_trigger (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Auto Reconciliation Job Trigger"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:982
+msgid "Auto Reconciliation has started in the background"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:150
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:198
+msgid "Auto Reconciliation of Payments has been disabled. Enable it through {0}"
+msgstr ""
+
+#. Label of the subscription_detail (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Auto Repeat Detail"
+msgstr ""
+
+#. Label of the auto_reserve_serial_and_batch (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Reserve Serial and Batch Nos"
+msgstr "자동 예약 일련 번호 및 배치 번호"
+
+#. Label of the auto_reserve_stock (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Reserve Stock"
+msgstr "자동 예비 재고"
+
+#. Label of the auto_reserve_stock_for_sales_order_on_purchase (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Auto Reserve Stock for Sales Order on Purchase"
+msgstr "구매 시 판매 주문에 대한 재고 자동 예약"
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:201
+msgid "Auto Tax Settings Error"
+msgstr "자동 세금 설정 오류"
+
+#: erpnext/setup/doctype/employee/employee.py:170
+msgid "Auto User Creation Error"
+msgstr "자동 사용자 생성 오류"
+
+#. Description of the 'Close Replied Opportunity After Days' (Int) field in
+#. DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Auto close Opportunity Replied after the no. of days mentioned above"
+msgstr ""
+
+#. Label of the auto_create_purchase_receipt (Check) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Auto create Purchase Receipt"
+msgstr "구매 영수증 자동 생성"
+
+#. Label of the auto_create_subcontracting_order (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Auto create Subcontracting Order"
+msgstr "하도급 주문 자동 생성"
+
+#. Label of the auto_create_assets (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Auto create assets on purchase"
+msgstr "구매 시 자산 자동 생성"
+
+#. Description of the 'Enable Automatic Party Matching' (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Auto match and set the Party in Bank Transactions"
+msgstr ""
+
+#. Label of the reorder_section (Section Break) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Auto re-order"
+msgstr ""
+
+#: erpnext/public/js/controllers/buying.js:373
+#: erpnext/public/js/utils/sales_common.js:484
+msgid "Auto repeat document updated"
+msgstr ""
+
+#. Description of the 'Write Off Limit' (Currency) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Auto write off precision loss while consolidation"
+msgstr ""
+
+#. Label of the auto_add_item_to_cart (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Automatically Add Filtered Item To Cart"
+msgstr ""
+
+#. Label of the add_taxes_from_item_tax_template (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Automatically Add Taxes and Charges from Item Tax Template"
+msgstr ""
+
+#. Label of the add_taxes_from_taxes_and_charges_template (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Automatically Add Taxes from Taxes and Charges Template"
+msgstr ""
+
+#. Label of the create_new_batch (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Automatically Create New Batch"
+msgstr "새 배치를 자동으로 생성합니다"
+
+#. Label of the automatically_fetch_payment_terms (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Automatically Fetch Payment Terms from Order/Quotation"
+msgstr ""
+
+#. Label of the automatically_process_deferred_accounting_entry (Check) field
+#. in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Automatically Process Deferred Accounting Entry"
+msgstr "지연 회계 입력 자동 처리"
+
+#. Label of the automatically_post_balancing_accounting_entry (Check) field in
+#. DocType 'Accounting Dimension Detail'
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Automatically post balancing accounting entry"
+msgstr ""
+
+#. Label of the automatically_run_rules_on_unreconciled_transactions (Check)
+#. field in DocType 'Accounts Settings'
+#: banking/src/components/features/Settings/Preferences.tsx:84
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Automatically run rules on unreconciled transactions"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:7
+msgid "Automotive"
+msgstr "자동차"
+
+#. Label of the availability_of_slots (Table) field in DocType 'Appointment
+#. Booking Settings'
+#. Name of a DocType
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json
+msgid "Availability Of Slots"
+msgstr "슬롯 이용 가능 여부"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:513
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:384
+msgid "Available"
+msgstr "사용 가능"
+
+#. Label of the available__future_inventory_section (Section Break) field in
+#. DocType 'Bin'
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Available / Future Inventory"
+msgstr "현재 재고 / 향후 재고"
+
+#. Label of the actual_batch_qty (Float) field in DocType 'Delivery Note Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Available Batch Qty at From Warehouse"
+msgstr "창고에서 구매 가능한 배치 수량"
+
+#. Label of the actual_batch_qty (Float) field in DocType 'POS Invoice Item'
+#. Label of the actual_batch_qty (Float) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Available Batch Qty at Warehouse"
+msgstr "창고 재고 수량"
+
+#. Name of a report
+#: erpnext/stock/report/available_batch_report/available_batch_report.json
+msgid "Available Batch Report"
+msgstr "사용 가능한 배치 보고서"
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:493
+msgid "Available For Use Date"
+msgstr "사용 가능 날짜"
+
+#. Label of the available_qty_section (Section Break) field in DocType
+#. 'Delivery Note Item'
+#. Label of the available_quantity_section (Section Break) field in DocType
+#. 'Pick List Item'
+#: erpnext/manufacturing/doctype/workstation/workstation.js:505
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:118
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:175
+#: erpnext/public/js/utils.js:647
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
+msgid "Available Qty"
+msgstr "재고 수량"
+
+#. Label of the required_qty (Float) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the available_qty_for_consumption (Float) field in DocType
+#. 'Subcontracting Receipt Supplied Item'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Available Qty For Consumption"
+msgstr "소비 가능 수량"
+
+#. Label of the company_total_stock (Float) field in DocType 'Purchase Order
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "Available Qty at Company"
+msgstr "회사 보유 수량"
+
+#. Label of the available_qty_at_source_warehouse (Float) field in DocType
+#. 'Work Order Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Available Qty at Source Warehouse"
+msgstr "원천 창고 재고 수량"
+
+#. Label of the actual_qty (Float) field in DocType 'Purchase Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "Available Qty at Target Warehouse"
+msgstr ""
+
+#. Label of the available_qty_at_wip_warehouse (Float) field in DocType 'Work
+#. Order Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Available Qty at WIP Warehouse"
+msgstr "WIP 창고 재고 수량"
+
+#. Label of the actual_qty (Float) field in DocType 'POS Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+msgid "Available Qty at Warehouse"
+msgstr "창고 재고 수량"
+
+#. Label of the available_qty (Float) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:138
+msgid "Available Qty to Reserve"
+msgstr "예약 가능 수량"
+
+#. Label of the available_quantity_section (Section Break) field in DocType
+#. 'Sales Invoice Item'
+#. Label of the available_quantity_section (Section Break) field in DocType
+#. 'Quotation Item'
+#. Label of the available_quantity_section (Section Break) field in DocType
+#. 'Sales Order Item'
+#. Label of the qty (Float) field in DocType 'Quick Stock Balance'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+msgid "Available Quantity"
+msgstr "재고 수량"
+
+#. Name of a report
+#: erpnext/stock/report/available_serial_no/available_serial_no.json
+msgid "Available Serial No"
+msgstr ""
+
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:38
+msgid "Available Stock"
+msgstr "재고 있음"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/available_stock_for_packing_items/available_stock_for_packing_items.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Available Stock for Packing Items"
+msgstr "포장 품목 재고 현황"
+
+#. Label of the available_for_use_date (Date) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Available for Use Date"
+msgstr "사용 가능 날짜"
+
+#: erpnext/assets/doctype/asset/asset.py:383
+msgid "Available for use date is required"
+msgstr ""
+
+#: erpnext/stock/dashboard/item_dashboard.js:251
+msgid "Available {0}"
+msgstr "사용 가능 {0}"
+
+#: erpnext/assets/doctype/asset/asset.py:492
+msgid "Available-for-use Date should be after purchase date"
+msgstr ""
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
+#: erpnext/stock/report/stock_balance/stock_balance.py:594
+msgid "Average Age"
+msgstr "평균 연령"
+
+#: erpnext/projects/report/project_summary/project_summary.py:124
+msgid "Average Completion"
+msgstr ""
+
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Average Discount"
+msgstr "평균 할인"
+
+#. Label of a number card in the Selling Workspace
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Average Order Value"
+msgstr "평균 주문 금액"
+
+#. Label of a number card in the Buying Workspace
+#: erpnext/buying/workspace/buying/buying.json
+msgid "Average Order Values"
+msgstr "평균 주문 금액"
+
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
+#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Average Rate"
+msgstr "평균 요금"
+
+#. Label of the avg_response_time (Duration) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Average Response Time"
+msgstr "평균 응답 시간"
+
+#. Description of the 'Lead Time in days' (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Average time taken by the supplier to deliver"
+msgstr ""
+
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:63
+msgid "Avg Daily Outgoing"
+msgstr "일일 평균 지출액"
+
+#. Label of the avg_rate (Float) field in DocType 'Serial and Batch Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Avg Rate"
+msgstr "평균 비율"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
+msgid "Avg Rate (Balance Stock)"
+msgstr ""
+
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:96
+msgid "Avg. Buying Price List Rate"
+msgstr "평균 구매 가격 정가"
+
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:102
+msgid "Avg. Selling Price List Rate"
+msgstr "평균 판매 가격표 가격"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:347
+msgid "Avg. Selling Rate"
+msgstr "평균 판매 가격"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "B+"
+msgstr "비+"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "B-"
+msgstr "비-"
+
+#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "BFS"
+msgstr ""
+
+#. Label of the bin_qty_section (Section Break) field in DocType 'Material
+#. Request Plan Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "BIN Qty"
+msgstr "빈 수량"
+
+#. Option for the 'Backflush raw materials of subcontract based on' (Select)
+#. field in DocType 'Buying Settings'
+#. Label of the bom (Link) field in DocType 'Purchase Order Item'
+#. Name of a DocType
+#. Option for the 'Based On' (Select) field in DocType 'BOM'
+#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType
+#. 'Manufacturing Settings'
+#. Label of the bom_section (Section Break) field in DocType 'Manufacturing
+#. Settings'
+#. Label of the bom (Link) field in DocType 'Work Order Operation'
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the bom (Link) field in DocType 'Subcontracting Inward Order Item'
+#. Label of the bom (Link) field in DocType 'Subcontracting Order Item'
+#. Label of the bom (Link) field in DocType 'Subcontracting Receipt Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:8
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:109
+#: 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:788
+#: erpnext/stock/report/bom_search/bom_search.py:38
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:524
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM"
+msgstr "봄"
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:21
+msgid "BOM 1"
+msgstr "BOM 1"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
+msgid "BOM 1 {0} and BOM 2 {1} should not be same"
+msgstr ""
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:38
+msgid "BOM 2"
+msgstr "BOM 2"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:4
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM Comparison Tool"
+msgstr "BOM 비교 도구"
+
+#. Label of the bom_conf_tab (Tab Break) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "BOM Configuration"
+msgstr "BOM 구성"
+
+#. 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 "BOM 생성됨"
+
+#. Label of the bom_creator (Link) field in DocType 'BOM'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM Creator"
+msgstr ""
+
+#. Label of the bom_creator_item (Data) field in DocType 'BOM'
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "BOM Creator Item"
+msgstr ""
+
+#. Label of the bom_detail_no (Data) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the bom_detail_no (Data) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "BOM Detail No"
+msgstr ""
+
+#. Name of a report
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.json
+msgid "BOM Explorer"
+msgstr "BOM 탐색기"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+msgid "BOM Explosion Item"
+msgstr "BOM 분해 품목"
+
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:20
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:101
+msgid "BOM ID"
+msgstr "BOM ID"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "BOM Item"
+msgstr "BOM 품목"
+
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:71
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:174
+msgid "BOM Level"
+msgstr "BOM 레벨"
+
+#. Label of the bom_no (Link) field in DocType 'BOM Item'
+#. Label of the bom_no (Link) field in DocType 'BOM Operation'
+#. Label of the bom_no (Link) field in DocType 'Master Production Schedule
+#. Item'
+#. Label of the bom_no (Link) field in DocType 'Production Plan Item'
+#. Label of the bom_no (Link) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#. Label of the bom_no (Link) field in DocType 'Work Order'
+#. Label of the bom_no (Link) field in DocType 'Sales Order Item'
+#. Label of the bom_no (Link) field in DocType 'Material Request Item'
+#. Label of the bom_no (Link) field in DocType 'Quality Inspection'
+#. Label of the bom_no (Link) field in DocType 'Stock Entry'
+#. Label of the bom_no (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:8
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:31
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1083
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "BOM No"
+msgstr "BOM 번호"
+
+#. Label of the bom_no (Link) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "BOM No (For Semi-Finished Goods)"
+msgstr ""
+
+#. Description of the 'BOM No' (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "BOM No. for a Finished Good Item"
+msgstr "완제품 품목의 BOM 번호"
+
+#. Name of a DocType
+#. Label of the operations (Table) field in DocType 'Routing'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/routing/routing.json
+msgid "BOM Operation"
+msgstr "BOM 운영"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM Operations Time"
+msgstr "BOM 작업 시간"
+
+#: erpnext/stock/report/item_prices/item_prices.py:60
+msgid "BOM Rate"
+msgstr "BOM 금리"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/report/bom_search/bom_search.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM Search"
+msgstr "BOM 검색"
+
+#. Name of a DocType
+#. Label of the bom_secondary_item (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "BOM Secondary Item"
+msgstr "BOM 보조 품목"
+
+#. Label of the bom_secondary_item (Data) field in DocType 'Job Card Secondary
+#. Item'
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+msgid "BOM Secondary Item Reference"
+msgstr "BOM 보조 품목 참조"
+
+#. Name of a report
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.json
+msgid "BOM Stock Analysis"
+msgstr "BOM 주식 분석"
+
+#. Label of the tab_2_tab (Tab Break) field in DocType 'BOM Creator'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "BOM Tree"
+msgstr "BOM 트리"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json
+msgid "BOM Update Batch"
+msgstr "BOM 업데이트 배치"
+
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:84
+msgid "BOM Update Initiated"
+msgstr "BOM 업데이트 시작됨"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+msgid "BOM Update Log"
+msgstr "BOM 업데이트 로그"
+
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "BOM Update Tool"
+msgstr "BOM 업데이트 도구"
+
+#. Description of a DocType
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+msgid "BOM Update Tool Log with job status maintained"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:102
+msgid "BOM Updation already in progress. Please wait until {0} is complete."
+msgstr "BOM 업데이트가 이미 진행 중입니다. {0} 가 완료될 때까지 기다려 주십시오."
+
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:81
+msgid "BOM Updation is queued and may take a few minutes. Check {0} for progress."
+msgstr ""
+
+#. Name of a report
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.json
+msgid "BOM Variance Report"
+msgstr "BOM 차이 보고서"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json
+msgid "BOM Website Item"
+msgstr "BOM 웹사이트 항목"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
+msgid "BOM Website Operation"
+msgstr "BOM 웹사이트 운영"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
+msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
+msgstr ""
+
+#. Label of the bom_and_work_order_tab (Tab Break) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "BOM and Production"
+msgstr "BOM 및 생산"
+
+#: erpnext/stock/doctype/material_request/material_request.js:386
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:840
+msgid "BOM does not contain any stock item"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:85
+msgid "BOM recursion: {0} cannot be child of {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:797
+msgid "BOM recursion: {1} cannot be parent or child of {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1550
+msgid "BOM {0} does not belong to Item {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1532
+msgid "BOM {0} must be active"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1535
+msgid "BOM {0} must be submitted"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:887
+msgid "BOM {0} not found for the item {1}"
+msgstr ""
+
+#. Label of the boms_updated (Long Text) field in DocType 'BOM Update Batch'
+#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json
+msgid "BOMs Updated"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:310
+msgid "BOMs created successfully"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:320
+msgid "BOMs creation failed"
+msgstr "BOM 생성 실패"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:260
+msgid "BOMs creation has been enqueued, kindly check the status after some time"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:343
+msgid "Backdated Stock Entry"
+msgstr "소급 적용된 주식 입력"
+
+#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'BOM
+#. Operation'
+#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Job
+#. Card'
+#. Label of the backflush_from_wip_warehouse (Check) field in DocType 'Work
+#. Order Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Backflush Materials From WIP Warehouse"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:16
+msgid "Backflush Raw Materials"
+msgstr ""
+
+#. Label of the backflush_raw_materials_based_on (Select) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Backflush Raw Materials Based On"
+msgstr ""
+
+#. Label of the from_wip_warehouse (Check) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Backflush Raw Materials From Work-in-Progress Warehouse"
+msgstr ""
+
+#. Label of the backflush_raw_materials_of_subcontract_based_on (Select) field
+#. in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Backflush raw materials of subcontract based on"
+msgstr ""
+
+#. Label of the balance (Currency) field in DocType 'Bank Account Balance'
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:310
+#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/report/account_balance/account_balance.py:36
+#: erpnext/accounts/report/general_ledger/general_ledger.html:168
+#: erpnext/accounts/report/purchase_register/purchase_register.py:242
+#: erpnext/accounts/report/sales_register/sales_register.py:278
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:71
+msgid "Balance"
+msgstr "균형"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:40
+msgid "Balance (Dr - Cr)"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:726
+msgid "Balance ({0})"
+msgstr "균형 ({0})"
+
+#. Label of the balance_in_account_currency (Currency) field in DocType
+#. 'Exchange Rate Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Balance In Account Currency"
+msgstr ""
+
+#. Label of the balance_in_base_currency (Currency) field in DocType 'Exchange
+#. Rate Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Balance In Base Currency"
+msgstr "기준 통화 잔액"
+
+#: erpnext/stock/report/available_batch_report/available_batch_report.py:62
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
+#: erpnext/stock/report/stock_balance/stock_balance.py:520
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
+msgid "Balance Qty"
+msgstr "잔량 수량"
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:71
+msgid "Balance Qty (Stock)"
+msgstr "잔량 (재고)"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:144
+msgid "Balance Serial No"
+msgstr "잔액 일련 번호"
+
+#. Option for the 'Report Type' (Select) field in DocType 'Account'
+#. Option for the 'Report Type' (Select) field in DocType 'Financial Report
+#. Template'
+#. Option for the 'Report Type' (Select) field in DocType 'Process Period
+#. Closing Voucher Detail'
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of the column_break_16 (Column Break) field in DocType 'Email Digest'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+#: erpnext/accounts/report/balance_sheet/balance_sheet.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/public/js/financial_statements.js:314
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Balance Sheet"
+msgstr ""
+
+#. Label of the bs_closing_balance (JSON) field in DocType 'Process Period
+#. Closing Voucher'
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "Balance Sheet Closing Balance"
+msgstr ""
+
+#. Label of the balance_sheet_summary (Heading) field in DocType 'Bisect
+#. Accounting Statements'
+#. Label of the balance_sheet_summary (Float) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Balance Sheet Summary"
+msgstr ""
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:13
+msgid "Balance Stock Qty"
+msgstr ""
+
+#. Label of the stock_value (Currency) field in DocType 'Stock Closing Balance'
+#. Label of the stock_value (Currency) field in DocType 'Stock Ledger Entry'
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Balance Stock Value"
+msgstr "잔액 주식 가치"
+
+#. Label of the balance_type (Select) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Balance Type"
+msgstr "잔액 유형"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
+#: erpnext/stock/report/stock_balance/stock_balance.py:528
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
+msgid "Balance Value"
+msgstr "잔액"
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:344
+msgid "Balance for Account {0} must always be {1}"
+msgstr ""
+
+#. Label of the balance_must_be (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Balance must be"
+msgstr "균형이 있어야 합니다"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:305
+msgctxt "Do MMM YYYY"
+msgid "Balances as per bank statement before {0}"
+msgstr "{0} 이전 은행 명세서에 따른 잔액"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Name of a DocType
+#. Label of the bank (Link) field in DocType 'Bank Account'
+#. Label of the bank (Link) field in DocType 'Bank Guarantee'
+#. Label of the bank (Link) field in DocType 'Bank Statement Import'
+#. Option for the 'Type' (Select) field in DocType 'Mode of Payment'
+#. Label of the bank (Read Only) field in DocType 'Payment Entry'
+#. Label of the company_bank (Link) field in DocType 'Payment Order'
+#. Label of the bank (Link) field in DocType 'Payment Request'
+#. Label of a Link in the Invoicing Workspace
+#. Option for the 'Salary Mode' (Select) field in DocType 'Employee'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/report/account_balance/account_balance.js:39
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:99
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank"
+msgstr "은행"
+
+#. Label of the bank_cash_account (Link) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Bank / Cash Account"
+msgstr "은행/현금 계좌"
+
+#. Label of the bank_ac_no (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Bank A/C No."
+msgstr ""
+
+#. Name of a DocType
+#. Label of the bank_account (Link) field in DocType 'Bank Account Balance'
+#. Label of the bank_account (Link) field in DocType 'Bank Clearance'
+#. Label of the bank_account (Link) field in DocType 'Bank Guarantee'
+#. Label of the bank_account (Link) field in DocType 'Bank Reconciliation Tool'
+#. Label of the bank_account (Link) field in DocType 'Bank Statement Import'
+#. Label of the bank_account (Link) field in DocType 'Bank Statement Import
+#. Log'
+#. Label of the bank_account (Link) field in DocType 'Bank Transaction'
+#. Label of the bank_account (Link) field in DocType 'Invoice Discounting'
+#. Label of the bank_account (Link) field in DocType 'Journal Entry Account'
+#. Label of the bank_account (Link) field in DocType 'Payment Order Reference'
+#. Label of the bank_account (Link) field in DocType 'Payment Request'
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:141
+#: banking/src/pages/BankStatementImporter.tsx:78
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.js:21
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:16
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:16
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Account"
+msgstr "은행 계좌"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_account_balance/bank_account_balance.json
+msgid "Bank Account Balance"
+msgstr "은행 계좌 잔액"
+
+#. Label of the bank_account_details (Section Break) field in DocType 'Payment
+#. Order Reference'
+#. Label of the bank_account_details (Section Break) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Bank Account Details"
+msgstr "은행 계좌 정보"
+
+#. Label of the bank_account_info (Section Break) field in DocType 'Bank
+#. Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Bank Account Info"
+msgstr "은행 계좌 정보"
+
+#. Label of the bank_account_no (Data) field in DocType 'Bank Account'
+#. Label of the bank_account_no (Data) field in DocType 'Bank Guarantee'
+#. Label of the bank_account_no (Read Only) field in DocType 'Payment Entry'
+#. Label of the bank_account_no (Read Only) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Bank Account No"
+msgstr "은행 계좌 번호"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_account_subtype/bank_account_subtype.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Account Subtype"
+msgstr "은행 계좌 하위 유형"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Account Type"
+msgstr "은행 계좌 유형"
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:439
+msgid "Bank Account {} in Bank Transaction {} is not matching with Bank Account {}"
+msgstr ""
+
+#: banking/src/components/features/Settings/Settings.tsx:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:15
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:20
+msgid "Bank Accounts"
+msgstr "은행 계좌"
+
+#. Label of the bank_balance (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Bank Balance"
+msgstr "은행 잔고"
+
+#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Bank Charges"
+msgstr "은행 수수료"
+
+#. Label of the bank_charges_account (Link) field in DocType 'Invoice
+#. Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Bank Charges Account"
+msgstr "은행 수수료 계정"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:34
+msgid "Bank Charges, Salary, etc."
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Clearance"
+msgstr "은행 결제"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+msgid "Bank Clearance Detail"
+msgstr ""
+
+#. Name of a report
+#: banking/src/pages/BankReconciliation.tsx:119
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.json
+msgid "Bank Clearance Summary"
+msgstr "은행 결제 요약"
+
+#. Label of the credit_balance (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Bank Credit Balance"
+msgstr "은행 예금 잔액"
+
+#. Label of the bank_details_section (Section Break) field in DocType 'Bank'
+#. Label of the bank_details_section (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank/bank_dashboard.py:7
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Bank Details"
+msgstr "은행 계좌 정보"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:260
+msgid "Bank Draft"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:116
+msgid "Bank Entries Created"
+msgstr "은행 거래 내역 생성됨"
+
+#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction
+#. Rule'
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:134
+#: banking/src/components/features/ActionLog/ActionLog.tsx:343
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:40
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:424
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:517
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:269
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:14
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Bank Entry"
+msgstr "은행 입구"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:338
+msgid "Bank Entry Created"
+msgstr "은행 거래 내역 생성됨"
+
+#. Label of the bank_entry_type (Select) field in DocType 'Bank Transaction
+#. Rule'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Bank Entry Type"
+msgstr "은행 입력 유형"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:212
+msgid "Bank Fee, Salary, etc."
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Guarantee"
+msgstr "은행 보증"
+
+#. Label of the bank_guarantee_number (Data) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Bank Guarantee Number"
+msgstr "은행 보증 번호"
+
+#. Label of the bg_type (Select) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Bank Guarantee Type"
+msgstr "은행 보증 유형"
+
+#. Label of the bank_name (Data) field in DocType 'Bank'
+#. Label of the bank_name (Data) field in DocType 'Cheque Print Template'
+#. Label of the bank_name (Data) field in DocType 'Employee'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Bank Name"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
+msgid "Bank Overdraft Account"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/banking.json
+msgid "Bank Reconciliation"
+msgstr "은행 계정 조정"
+
+#. Name of a report
+#. Label of a Link in the Invoicing Workspace
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:208
+#: banking/src/pages/BankReconciliation.tsx:117
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:1
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Bank Reconciliation Statement"
+msgstr "은행 계정 조정 명세서"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Bank Reconciliation Tool"
+msgstr "은행 계정 조정 도구"
+
+#: banking/src/pages/BankStatementImporter.tsx:87
+msgid "Bank Statement"
+msgstr "은행 거래 내역서"
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:290
+msgid "Bank Statement Balance as per General Ledger"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Bank Statement Import"
+msgstr "은행 거래 내역서 가져오기"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Bank Statement Import Log"
+msgstr "은행 거래 내역서 가져오기 로그"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Bank Statement Import Log Column Map"
+msgstr "은행 거래 내역서 가져오기 로그 열 지도"
+
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:44
+msgid "Bank Statement balance as per General Ledger"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:35
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:32
+msgid "Bank Transaction"
+msgstr "은행 거래"
+
+#. Label of the bank_transaction_mapping (Table) field in DocType 'Bank'
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json
+msgid "Bank Transaction Mapping"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+msgid "Bank Transaction Payments"
+msgstr "은행 거래 결제"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Bank Transaction Rule"
+msgstr "은행 거래 규칙"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+msgid "Bank Transaction Rule Accounts"
+msgstr "은행 거래 규칙 계정"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
+msgid "Bank Transaction Rule Description Conditions"
+msgstr "은행 거래 규칙 설명 조건"
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:508
+msgid "Bank Transaction {0} Matched"
+msgstr "은행 거래 {0} 일치"
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:557
+msgid "Bank Transaction {0} added as Journal Entry"
+msgstr ""
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:532
+msgid "Bank Transaction {0} added as Payment Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:159
+msgid "Bank Transaction {0} is already fully reconciled"
+msgstr ""
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:577
+msgid "Bank Transaction {0} updated"
+msgstr ""
+
+#: banking/src/pages/BankReconciliation.tsx:118
+msgid "Bank Transactions"
+msgstr "은행 거래"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:584
+msgid "Bank account cannot be named as {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:721
+msgid "Bank account credit for withdrawal"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:704
+msgid "Bank account debit for deposit"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:146
+msgid "Bank account {0} already exists and could not be created again"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:158
+msgid "Bank accounts added"
+msgstr "은행 계좌 추가됨"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:78
+msgid "Bank statement imported."
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:311
+msgid "Bank transaction creation error"
+msgstr "은행 거래 생성 오류"
+
+#. Label of the bank_cash_account (Link) field in DocType 'Process Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "Bank/Cash Account"
+msgstr "은행/현금 계좌"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:60
+msgid "Bank/Cash Account {0} doesn't belong to company {1}"
+msgstr ""
+
+#. Label of the banking_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#. Label of a Card Break in the Invoicing Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: banking/src/pages/BankReconciliation.tsx:57
+#: banking/src/pages/BankReconciliation.tsx:87
+#: banking/src/pages/BankStatementImporterContainer.tsx:21
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/desktop_icon/banking.json
+#: erpnext/setup/setup_wizard/data/industry_type.txt:8
+#: erpnext/workspace_sidebar/banking.json
+msgid "Banking"
+msgstr ""
+
+#. Label of the barcode_type (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "Barcode Type"
+msgstr "바코드 유형"
+
+#: erpnext/stock/doctype/item/item.py:543
+msgid "Barcode {0} already used in Item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:558
+msgid "Barcode {0} is not a valid {1} code"
+msgstr ""
+
+#. Label of the sb_barcodes (Section Break) field in DocType 'Item'
+#. Label of the barcodes (Table) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Barcodes"
+msgstr "바코드"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Barleycorn"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Barrel (Oil)"
+msgstr "배럴(석유)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Barrel(Beer)"
+msgstr "배럴(맥주)"
+
+#. Label of the base_amount (Currency) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Base Amount"
+msgstr "기본 금액"
+
+#. Label of the base_amount (Currency) field in DocType 'Sales Invoice Payment'
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+msgid "Base Amount (Company Currency)"
+msgstr "기본 금액 (회사 통화)"
+
+#. Label of the base_change_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the base_change_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Base Change Amount (Company Currency)"
+msgstr "기본 잔돈 금액 (회사 통화)"
+
+#. Label of the base_cost (Currency) field in DocType 'BOM Secondary Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+msgid "Base Cost (Company Currency)"
+msgstr "기본 비용(회사 통화)"
+
+#. Label of the base_cost_per_unit (Float) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Base Cost Per Unit"
+msgstr ""
+
+#. Label of the base_hour_rate (Currency) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Base Hour Rate(Company Currency)"
+msgstr "기본 시급(회사 통화 기준)"
+
+#. Label of the base_rate (Currency) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Base Rate"
+msgstr "기준 금리"
+
+#. Label of the withholding_amount (Currency) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Base Tax Withheld"
+msgstr ""
+
+#. Label of the taxable_amount (Currency) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Base Taxable Amount"
+msgstr "과세 기준 금액"
+
+#. Label of the base_total_billable_amount (Currency) field in DocType
+#. 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Base Total Billable Amount"
+msgstr "기본 총 청구 금액"
+
+#. Label of the base_total_billed_amount (Currency) field in DocType
+#. 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Base Total Billed Amount"
+msgstr "기본 총 청구 금액"
+
+#. Label of the base_total_costing_amount (Currency) field in DocType
+#. 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Base Total Costing Amount"
+msgstr "기본 총 비용 금액"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:46
+msgid "Based On Data ( in years )"
+msgstr "데이터 기준 (년 단위)"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:30
+msgid "Based On Document"
+msgstr "문서에 근거함"
+
+#. Label of the based_on_payment_terms (Check) field in DocType 'Process
+#. Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:131
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:108
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:153
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:126
+msgid "Based On Payment Terms"
+msgstr "지불 조건에 따라"
+
+#. Option for the 'Subscription Price Based On' (Select) field in DocType
+#. 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Based On Price List"
+msgstr "가격표 기준"
+
+#. Label of the based_on_value (Dynamic Link) field in DocType 'Party Specific
+#. Item'
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+msgid "Based On Value"
+msgstr "가치에 기반함"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:427
+msgid "Based on the above entries, the balance amount (debit or credit) will be set for the last row to balance the journal entry."
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:60
+msgid "Based on your HR Policy, select your leave allocation period's end date"
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:55
+msgid "Based on your HR Policy, select your leave allocation period's start date"
+msgstr ""
+
+#. Label of the basic_amount (Currency) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Basic Amount"
+msgstr "기본 금액"
+
+#. Label of the base_rate (Currency) field in DocType 'BOM Item'
+#. Label of the base_rate (Currency) field in DocType 'Sales Order Item'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Basic Rate (Company Currency)"
+msgstr "기본 환율 (회사 통화)"
+
+#. Label of the basic_rate (Currency) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Basic Rate (as per Stock UOM)"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:32
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Batch"
+msgstr "일괄"
+
+#. Label of the description (Small Text) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Batch Description"
+msgstr "배치 설명"
+
+#. Label of the sb_batch (Section Break) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Batch Details"
+msgstr "배치 세부 정보"
+
+#: erpnext/stock/doctype/batch/batch.py:218
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:469
+msgid "Batch Expiry Date"
+msgstr ""
+
+#. Label of the batch_id (Data) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Batch ID"
+msgstr "배치 ID"
+
+#: erpnext/stock/doctype/batch/batch.py:130
+msgid "Batch ID is mandatory"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Batch Item Expiry Status"
+msgstr "배치 품목 만료 상태"
+
+#. Label of the batch_no (Link) field in DocType 'POS Invoice Item'
+#. Label of the batch_no (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the batch_no (Link) field in DocType 'Sales Invoice Item'
+#. Label of the batch_no (Link) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the batch_no (Link) field in DocType 'Job Card'
+#. Label of the batch_no (Link) field in DocType 'Delivery Note Item'
+#. Label of the batch_no (Link) field in DocType 'Item Price'
+#. Label of the batch_no (Link) field in DocType 'Packed Item'
+#. Label of the batch_no (Link) field in DocType 'Packing Slip Item'
+#. Label of the batch_no (Link) field in DocType 'Pick List Item'
+#. Label of the batch_no (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the batch_no (Link) field in DocType 'Quality Inspection'
+#. Label of the batch_no (Link) field in DocType 'Serial and Batch Entry'
+#. Label of the batch_no (Link) field in DocType 'Serial No'
+#. Label of the batch_no (Link) field in DocType 'Stock Closing Balance'
+#. Label of the batch_no (Link) field in DocType 'Stock Entry Detail'
+#. Label of the batch_no (Data) field in DocType 'Stock Ledger Entry'
+#. Label of the batch_no (Link) field in DocType 'Stock Reconciliation Item'
+#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt Item'
+#. Label of the batch_no (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
+#: erpnext/public/js/controllers/transaction.js:2867
+#: erpnext/public/js/utils/barcode_scanner.js:281
+#: erpnext/public/js/utils/serial_no_batch_selector.js:450
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:64
+#: erpnext/stock/report/available_batch_report/available_batch_report.py:50
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:68
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:33
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:81
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:162
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:19
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:462
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:77
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Batch No"
+msgstr "배치 번호"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1187
+msgid "Batch No is mandatory"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3483
+msgid "Batch No {0} does not exists"
+msgstr ""
+
+#: erpnext/stock/utils.py:630
+msgid "Batch No {0} is linked with Item {1} which has serial no. Please scan serial no instead."
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:490
+msgid "Batch No {0} is not present in the original {1} {2}, hence you can't return it against the {1} {2}"
+msgstr ""
+
+#. Label of the batch_no (Int) field in DocType 'BOM Update Batch'
+#: erpnext/manufacturing/doctype/bom_update_batch/bom_update_batch.json
+msgid "Batch No."
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:16
+#: erpnext/public/js/utils/serial_no_batch_selector.js:201
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50
+msgid "Batch Nos"
+msgstr "배치 번호"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2009
+msgid "Batch Nos are created successfully"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:1193
+msgid "Batch Not Available for Return"
+msgstr ""
+
+#. Label of the batch_number_series (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Batch Number Series"
+msgstr "배치 번호 시리즈"
+
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:163
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:33
+msgid "Batch Qty"
+msgstr "배치 수량"
+
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:126
+msgid "Batch Qty updated successfully"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.py:178
+msgid "Batch Qty updated to {0}"
+msgstr ""
+
+#. Label of the batch_qty (Float) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Batch Quantity"
+msgstr "배치 수량"
+
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
+#. Label of the batch_size (Int) field in DocType 'Operation'
+#. Label of the batch_size (Float) field in DocType 'Work Order'
+#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Batch Size"
+msgstr "배치 크기"
+
+#. Label of the stock_uom (Link) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Batch UOM"
+msgstr "배치 단위"
+
+#. Label of the batch_and_serial_no_section (Section Break) field in DocType
+#. 'Asset Capitalization Stock Item'
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+msgid "Batch and Serial No"
+msgstr "배치 번호 및 일련 번호"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
+msgid "Batch not created for item {} since it does not have a batch series."
+msgstr "해당 항목 {}에는 배치 시리즈가 없으므로 배치가 생성되지 않았습니다."
+
+#. Description of the 'Automatically Create New Batch' (Check) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Batch number will be auto-created in format AAAA.00001 if not specified in transactions. Leave blank to always enter batch numbers manually."
+msgstr "거래 내역에 배치 번호를 지정하지 않으면 AAAA.00001 형식으로 배치 번호가 자동으로 생성됩니다. 배치 번호를 항상 수동으로 입력하려면 비워 두십시오."
+
+#. Description of the 'Has Expiry Date' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Batch number will be created based on expiry date. Expiry dates can be set in the Batch master."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:384
+msgid "Batch {0} and Warehouse"
+msgstr "배치 {0} 및 창고"
+
+#: erpnext/controllers/sales_and_purchase_return.py:1192
+msgid "Batch {0} is not available in warehouse {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
+msgid "Batch {0} of Item {1} has expired."
+msgstr "품목 {1} 의 배치 {0} 가 만료되었습니다."
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
+msgid "Batch {0} of Item {1} is disabled."
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Batch-Wise Balance History"
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:164
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:183
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:86
+msgid "Batchwise Valuation"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Before reconciliation"
+msgstr "화해 전"
+
+#. Label of the start (Int) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Begin On (Days)"
+msgstr "시작일 (일)"
+
+#. Option for the 'Generate Invoice At' (Select) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Beginning of the current subscription period"
+msgstr "현재 구독 기간의 시작"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:323
+msgid "Below Subscription Plans are of different currency to the party default billing currency/Company currency: {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:211
+msgid "Below is a list of all accounting entries posted against the bank account {0} between {1} and {2}."
+msgstr "아래는 {0} 은행 계좌에 대해 {1} 와 {2} 사이에 기록된 모든 회계 항목 목록입니다."
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:251
+msgid "Below is a list of all bank transactions imported in the system for the bank account {0} between {1} and {2}."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:197
+msgid "Below is a list of all entries posted against the bank account {0} which have not been cleared till {1}."
+msgstr ""
+
+#. Label of the bill_date (Date) field in DocType 'Journal Entry'
+#. Label of the bill_date (Date) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
+#: erpnext/accounts/report/purchase_register/purchase_register.py:214
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Bill Date"
+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:1186
+#: erpnext/accounts/report/purchase_register/purchase_register.py:213
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Bill No"
+msgstr "법안 번호"
+
+#. Label of the bill_for_rejected_quantity_in_purchase_invoice (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Bill for rejected quantity in Purchase Invoice"
+msgstr "구매 송장에 기재된 거부된 수량에 대한 청구서"
+
+#. Label of a Card Break in the Manufacturing Workspace
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom/bom.py:1382
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/material_request/material_request.js:139
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: 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:203
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/doctype/timesheet/timesheet_list.js:9
+msgid "Billed"
+msgstr "청구됨"
+
+#. Label of the billed_amt (Currency) field in DocType 'Purchase Order Item'
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:51
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:51
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:127
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:189
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:283
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:108
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:209
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:298
+msgid "Billed Amount"
+msgstr "청구 금액"
+
+#. Label of the billed_amt (Currency) field in DocType 'Sales Order Item'
+#. Label of the billed_amt (Currency) field in DocType 'Delivery Note Item'
+#. Label of the billed_amt (Currency) field in DocType 'Purchase Receipt Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Billed Amt"
+msgstr "청구 금액"
+
+#. Name of a report
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.json
+msgid "Billed Items To Be Received"
+msgstr "청구 예정 품목"
+
+#. Label of the billed_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:261
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:276
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+msgid "Billed Qty"
+msgstr "청구 수량"
+
+#. Label of the section_break_56 (Section Break) field in DocType 'Purchase
+#. Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "Billed, Received & Returned"
+msgstr "청구, 수령 및 반환"
+
+#. Option for the 'Determine Address Tax Category From' (Select) field in
+#. DocType 'Accounts Settings'
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Purchase Invoice'
+#. Label of the address_and_contact (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the billing_address_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the billing_address_column (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the contact_info (Section Break) field in DocType 'Delivery Note'
+#. Label of the address_display (Text Editor) field in DocType 'Delivery Note'
+#. Label of the billing_address (Link) field in DocType 'Purchase Receipt'
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Purchase Receipt'
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Billing Address"
+msgstr "청구 주소"
+
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Purchase Order'
+#. Label of the billing_address_display (Text Editor) field in DocType 'Request
+#. for Quotation'
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Supplier Quotation'
+#. Label of the billing_address_display (Text Editor) field in DocType
+#. 'Subcontracting Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Billing Address Details"
+msgstr "청구지 주소 정보"
+
+#. Label of the customer_address (Link) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Billing Address Name"
+msgstr "청구 주소 이름"
+
+#: erpnext/controllers/accounts_controller.py:575
+msgid "Billing Address does not belong to the {0}"
+msgstr ""
+
+#. Label of the billing_amount (Currency) field in DocType 'Sales Invoice
+#. Timesheet'
+#. Label of the billing_amount (Currency) field in DocType 'Timesheet Detail'
+#. Label of the base_billing_amount (Currency) field in DocType 'Timesheet
+#. Detail'
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:73
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:50
+msgid "Billing Amount"
+msgstr "청구 금액"
+
+#. Label of the billing_city (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Billing City"
+msgstr "청구 도시"
+
+#. Label of the billing_country (Link) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Billing Country"
+msgstr "청구 국가"
+
+#. Label of the billing_county (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Billing County"
+msgstr ""
+
+#. Label of the default_currency (Link) field in DocType 'Supplier'
+#. Label of the default_currency (Link) field in DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Billing Currency"
+msgstr "청구 통화"
+
+#: erpnext/public/js/purchase_trends_filters.js:39
+msgid "Billing Date"
+msgstr "청구일"
+
+#. Label of the billing_details (Section Break) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Billing Details"
+msgstr "결제 정보"
+
+#. Label of the billing_email (Data) field in DocType 'Process Statement Of
+#. Accounts Customer'
+#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json
+msgid "Billing Email"
+msgstr "청구 이메일"
+
+#. Label of the billing_hours (Float) field in DocType 'Sales Invoice
+#. Timesheet'
+#. Label of the billing_hours (Float) field in DocType 'Timesheet Detail'
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:67
+msgid "Billing Hours"
+msgstr "청구 시간"
+
+#. Label of the billing_interval (Select) field in DocType 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Billing Interval"
+msgstr "청구 간격"
+
+#. Label of the billing_interval_count (Int) field in DocType 'Subscription
+#. Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Billing Interval Count"
+msgstr "청구 간격 횟수"
+
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.py:42
+msgid "Billing Interval Count cannot be less than 1"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:366
+msgid "Billing Interval in Subscription Plan must be Month to follow calendar months"
+msgstr ""
+
+#. Label of the billing_rate (Currency) field in DocType 'Activity Cost'
+#. Label of the billing_rate (Currency) field in DocType 'Timesheet Detail'
+#. Label of the base_billing_rate (Currency) field in DocType 'Timesheet
+#. Detail'
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Billing Rate"
+msgstr "청구 요금"
+
+#. Label of the billing_state (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Billing State"
+msgstr "청구 주"
+
+#. Label of the billing_status (Select) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:31
+msgid "Billing Status"
+msgstr "청구 상태"
+
+#. Label of the billing_zipcode (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Billing Zipcode"
+msgstr "청구 우편번호"
+
+#: erpnext/accounts/party.py:600
+msgid "Billing currency must be equal to either default company's currency or party account currency"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Bin"
+msgstr "큰 상자"
+
+#: erpnext/stock/doctype/bin/bin.js:16
+msgid "Bin Qty Recalculated"
+msgstr ""
+
+#. Label of the bio (Text Editor) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Bio / Cover Letter"
+msgstr "자기소개서/지원서"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Biot"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:9
+msgid "Biotechnology"
+msgstr "생명공학"
+
+#: erpnext/setup/doctype/employee/employee.js:156
+msgid "Birthday"
+msgstr "생일"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "Bisect Accounting Statements"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:9
+msgid "Bisect Left"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Bisect Nodes"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:13
+msgid "Bisect Right"
+msgstr ""
+
+#. Label of the bisecting_from (Heading) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "Bisecting From"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:61
+msgid "Bisecting Left ..."
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:71
+msgid "Bisecting Right ..."
+msgstr ""
+
+#. Label of the bisecting_to (Heading) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "Bisecting To"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Biweekly"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:285
+msgid "Black"
+msgstr "검은색"
+
+#. Option for the 'Data Source' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Blank Line"
+msgstr "빈 줄"
+
+#. Label of the blanket_order (Link) field in DocType 'Purchase Order Item'
+#. Name of a DocType
+#. Label of the blanket_order (Link) field in DocType 'Quotation Item'
+#. Label of the blanket_order (Link) field in DocType 'Sales Order Item'
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Blanket Order"
+msgstr ""
+
+#. Label of the blanket_order_allowance (Float) field in DocType 'Buying
+#. Settings'
+#. Label of the blanket_order_allowance (Float) field in DocType 'Selling
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Blanket Order Allowance (%)"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+msgid "Blanket Order Item"
+msgstr ""
+
+#. Label of the blanket_order_rate (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the blanket_order_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the blanket_order_rate (Currency) field in DocType 'Sales Order
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Blanket Order Rate"
+msgstr ""
+
+#. Label of the blanket_order_section (Section Break) field in DocType 'Buying
+#. Settings'
+#. Label of the blanket_orders_section (Section Break) field in DocType
+#. 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Blanket Orders"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:109
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:271
+msgid "Block Invoice"
+msgstr ""
+
+#. Label of the on_hold (Check) field in DocType 'Supplier'
+#. Label of the block_supplier_section (Section Break) field in DocType
+#. 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Block Supplier"
+msgstr ""
+
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
+#. Label of the blog_subscriber (Check) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Blog Subscriber"
+msgstr ""
+
+#. Label of the blood_group (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Blood Group"
+msgstr "혈액형"
+
+#. Label of the body (Text Editor) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Body"
+msgstr "몸"
+
+#. Label of the body_text (Text Editor) field in DocType 'Dunning'
+#. Label of the body_text (Text Editor) field in DocType 'Dunning Letter Text'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Body Text"
+msgstr "본문 텍스트"
+
+#. Label of the body_and_closing_text_help (HTML) field in DocType 'Dunning
+#. Letter Text'
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Body and Closing Text Help"
+msgstr "본문 및 마무리 텍스트 도움말"
+
+#. Label of the bold_text (Check) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Bold Text"
+msgstr "굵은 글씨"
+
+#. Description of the 'Bold Text' (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Bold text for emphasis (totals, major headings)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:286
+msgid "Book Advance Payments as Liability option is chosen. Paid From account changed from {0} to {1}."
+msgstr ""
+
+#. Label of the book_advance_payments_in_separate_party_account (Check) field
+#. in DocType 'Payment Entry'
+#. Label of the book_advance_payments_in_separate_party_account (Check) field
+#. in DocType 'Company'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Book Advance Payments in Separate Party Account"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:3
+msgid "Book Appointment"
+msgstr "예약하기"
+
+#. Label of the book_asset_depreciation_entry_automatically (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Book Asset Depreciation Entry Automatically"
+msgstr ""
+
+#. Label of the book_deferred_entries_based_on (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Book Deferred Entries Based On"
+msgstr ""
+
+#. Label of the book_deferred_entries_via_journal_entry (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Book Deferred Entries Via Journal Entry"
+msgstr ""
+
+#. Label of the book_tax_discount_loss (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Book Tax Loss on Early Payment Discount"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:15
+msgid "Book an appointment"
+msgstr "예약하기"
+
+#. Option for the 'Status' (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/shipment/shipment_list.js:5
+msgid "Booked"
+msgstr "예약됨"
+
+#. Label of the booked_fixed_asset (Check) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Booked Fixed Asset"
+msgstr "장부에 기록된 고정 자산"
+
+#: erpnext/accounts/general_ledger.py:835
+msgid "Books have been closed till the period ending on {0}"
+msgstr ""
+
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Both"
+msgstr "둘 다"
+
+#: erpnext/setup/doctype/supplier_group/supplier_group.py:57
+msgid "Both Payable Account: {0} and Advance Account: {1} must be of same currency for company: {2}"
+msgstr ""
+
+#: erpnext/setup/doctype/customer_group/customer_group.py:62
+msgid "Both Receivable Account: {0} and Advance Account: {1} must be of same currency for company: {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:342
+msgid "Both Trial Period Start Date and Trial Period End Date must be set"
+msgstr ""
+
+#: erpnext/utilities/transaction_base.py:288
+msgid "Both {0} Account: {1} and Advance Account: {2} must be of same currency for company: {3}"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Box"
+msgstr "상자"
+
+#. Label of the branch (Link) field in DocType 'SMS Center'
+#. Name of a DocType
+#. Label of the branch (Data) field in DocType 'Branch'
+#. Label of the branch (Link) field in DocType 'Employee'
+#. Label of the branch (Link) field in DocType 'Employee Internal Work History'
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/sms_center/sms_center.json
+#: erpnext/setup/doctype/branch/branch.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json
+#: erpnext/workspace_sidebar/organization.json
+msgid "Branch"
+msgstr "나뭇가지"
+
+#. Label of the branch_code (Data) field in DocType 'Bank Account'
+#. Label of the branch_code (Data) field in DocType 'Bank Guarantee'
+#. Label of the branch_code (Read Only) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Branch Code"
+msgstr "지점 코드"
+
+#. Label of the brand_defaults (Table) field in DocType 'Brand'
+#: erpnext/setup/doctype/brand/brand.json
+msgid "Brand Defaults"
+msgstr ""
+
+#. Label of the brand (Data) field in DocType 'POS Invoice Item'
+#. Label of the brand (Data) field in DocType 'Sales Invoice Item'
+#. Label of the brand (Link) field in DocType 'Sales Order Item'
+#. Label of the brand (Data) field in DocType 'Brand'
+#. Label of the brand (Link) field in DocType 'Delivery Note Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/setup/doctype/brand/brand.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Brand Name"
+msgstr "브랜드 이름"
+
+#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance
+#. Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Breakdown"
+msgstr "고장"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:10
+msgid "Broadcasting"
+msgstr "방송"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:11
+msgid "Brokerage"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:231
+msgid "Browse BOM"
+msgstr "BOM 찾아보기"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu (It)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu (Mean)"
+msgstr "Btu (평균)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu (Th)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu/Hour"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu/Minutes"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Btu/Seconds"
+msgstr "Btu/초"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:101
+msgid "Bucket Size"
+msgstr ""
+
+#. Label of the budget_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/cost_center/cost_center.js:45
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:65
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:73
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:81
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:245
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:249
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:331
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:341
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:466
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/desktop_icon/budget.json erpnext/workspace_sidebar/budget.json
+msgid "Budget"
+msgstr "예산"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/budget_account/budget_account.json
+msgid "Budget Account"
+msgstr "예산 계정"
+
+#. Label of the budget_against (Select) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:80
+msgid "Budget Against"
+msgstr "예산 대비"
+
+#. Label of the budget_amount (Currency) field in DocType 'Budget'
+#. Label of the budget_amount (Currency) field in DocType 'Budget Account'
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/budget_account/budget_account.json
+msgid "Budget Amount"
+msgstr "예산 금액"
+
+#: erpnext/accounts/doctype/budget/budget.py:82
+msgid "Budget Amount can not be {0}."
+msgstr "예산 금액은 {0}일 수 없습니다."
+
+#. Label of the budget_detail (Section Break) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Budget Detail"
+msgstr "예산 세부 내역"
+
+#. Label of the budget_distribution (Table) field in DocType 'Budget'
+#. Name of a DocType
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/budget_distribution/budget_distribution.json
+msgid "Budget Distribution"
+msgstr "예산 배분"
+
+#. Label of the budget_distribution_total (Currency) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Budget Distribution Total"
+msgstr "예산 배분 총액"
+
+#. Label of the budget_end_date (Date) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Budget End Date"
+msgstr "예산 종료일"
+
+#: erpnext/accounts/doctype/budget/budget.py:568
+#: erpnext/accounts/doctype/budget/budget.py:570
+#: erpnext/controllers/budget_controller.py:289
+#: erpnext/controllers/budget_controller.py:292
+msgid "Budget Exceeded"
+msgstr "예산 초과"
+
+#: erpnext/accounts/doctype/budget/budget.py:227
+msgid "Budget Limit Exceeded"
+msgstr "예산 한도 초과"
+
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:61
+msgid "Budget List"
+msgstr "예산 목록"
+
+#. Label of the budget_start_date (Date) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Budget Start Date"
+msgstr "예산 시작일"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/budget.json
+msgid "Budget Variance"
+msgstr "예산 차이"
+
+#. Name of a report
+#. Label of a Link in the Invoicing Workspace
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:77
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Budget Variance Report"
+msgstr "예산 차이 보고서"
+
+#: erpnext/accounts/doctype/budget/budget.py:155
+msgid "Budget cannot be assigned against Group Account {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:160
+msgid "Budget cannot be assigned against {0}, as it's not an Income or Expense account"
+msgstr ""
+
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:9
+msgid "Budgets"
+msgstr "예산"
+
+#. Label of the buffer_time (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Buffer Time"
+msgstr "버퍼 시간"
+
+#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Buffered Cursor"
+msgstr "버퍼 커서"
+
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:162
+msgid "Build All?"
+msgstr "모두 건설하시겠습니까?"
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:20
+msgid "Build Tree"
+msgstr "나무를 건설하세요"
+
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:155
+msgid "Buildable Qty"
+msgstr "제작 가능 수량"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+msgid "Buildings"
+msgstr "건물"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:132
+msgid "Bulk Bank Entry"
+msgstr "대량 은행 입력"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:120
+msgid "Bulk Payment"
+msgstr "일괄 결제"
+
+#: erpnext/utilities/doctype/rename_tool/rename_tool.js:71
+msgid "Bulk Rename Jobs"
+msgstr "대량 이름 변경 작업"
+
+#. Name of a DocType
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json
+msgid "Bulk Transaction Log"
+msgstr "대량 거래 로그"
+
+#. Name of a DocType
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "Bulk Transaction Log Detail"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:126
+msgid "Bulk Transfer"
+msgstr "대량 이송"
+
+#. Label of the packed_items (Table) field in DocType 'Quotation'
+#. Label of the bundle_items_section (Section Break) field in DocType
+#. 'Quotation'
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Bundle Items"
+msgstr "묶음 상품"
+
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:94
+msgid "Bundle Qty"
+msgstr "묶음 수량"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Bushel (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Bushel (US Dry Level)"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:6
+msgid "Business Analyst"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:7
+msgid "Business Development Manager"
+msgstr "사업 개발 관리자"
+
+#. Option for the 'Status' (Select) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Busy"
+msgstr "바쁘다"
+
+#: erpnext/stock/doctype/batch/batch_dashboard.py:8
+#: erpnext/stock/doctype/item/item_dashboard.py:22
+msgid "Buy"
+msgstr "구입하다"
+
+#. Description of a DocType
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Buyer of Goods and Services."
+msgstr "재화 및 용역 구매자."
+
+#. Label of the buying (Check) field in DocType 'Pricing Rule'
+#. Label of the buying (Check) field in DocType 'Promotional Scheme'
+#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping
+#. Rule'
+#. Group in Subscription's connections
+#. Name of a Workspace
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Desktop Icon
+#. Group in Incoterm's connections
+#. Label of the buying (Check) field in DocType 'Terms and Conditions'
+#. Label of the buying (Check) field in DocType 'Item Price'
+#. Label of the buying (Check) field in DocType 'Price List'
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/buying/workspace/buying/buying.json erpnext/desktop_icon/buying.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/price_list/price_list.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Buying"
+msgstr "구매"
+
+#. Label of the sales_settings (Section Break) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Buying & Selling Settings"
+msgstr "구매 및 판매 설정"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:368
+msgid "Buying Amount"
+msgstr "구매 금액"
+
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:40
+msgid "Buying Price List"
+msgstr "구매 가격표"
+
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:46
+msgid "Buying Rate"
+msgstr "구매 가격"
+
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of a shortcut in the ERPNext Settings Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Buying Settings"
+msgstr "구매 설정"
+
+#. Title of the Module Onboarding 'Buying Onboarding'
+#: erpnext/buying/module_onboarding/buying_onboarding/buying_onboarding.json
+msgid "Buying Setup"
+msgstr "구매 설정"
+
+#. Label of the buying_and_selling_tab (Tab Break) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Buying and Selling"
+msgstr "구매 및 판매"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:219
+msgid "Buying must be checked, if Applicable For is selected as {0}"
+msgstr ""
+
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:62
+msgid "By default, the Supplier Name is set as per the Supplier Name entered. If you want Suppliers to be named by a Naming Series choose the 'Naming Series' option."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "By-Product"
+msgstr "부산물"
+
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr "판매 주문 시 신용 조회 절차 생략"
+
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
+#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "CC To"
+msgstr "CC에게"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "COA Importer"
+msgstr ""
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "CODE-39"
+msgstr "코드-39"
+
+#. Name of a report
+#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.json
+msgid "COGS By Item Group"
+msgstr ""
+
+#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:44
+msgid "COGS Debit"
+msgstr ""
+
+#. Name of a Workspace
+#. Label of a Desktop Icon
+#. Label of a Card Break in the Home Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/crm/workspace/crm/crm.json erpnext/desktop_icon/crm.json
+#: erpnext/setup/workspace/home/home.json erpnext/workspace_sidebar/crm.json
+msgid "CRM"
+msgstr "CRM"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/crm_note/crm_note.json
+msgid "CRM Note"
+msgstr "CRM 메모"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+#: erpnext/workspace_sidebar/crm.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "CRM Settings"
+msgstr "CRM 설정"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
+msgid "CWIP Account"
+msgstr "CWIP 계정"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Caballeria"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cable Length"
+msgstr "케이블 길이"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cable Length (UK)"
+msgstr "케이블 길이(영국 기준)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cable Length (US)"
+msgstr "케이블 길이(미국 기준)"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:73
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:28
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:102
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:28
+msgid "Calculate Ageing With"
+msgstr "노화 계산하기"
+
+#. Label of the calculate_based_on (Select) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Calculate Based On"
+msgstr "계산 기준"
+
+#. Label of the calculate_depreciation (Check) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Calculate Depreciation"
+msgstr ""
+
+#. Label of the calculate_arrival_time (Button) field in DocType 'Delivery
+#. Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Calculate Estimated Arrival Times"
+msgstr "예상 도착 시간 계산"
+
+#. Label of the editable_bundle_item_rates (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Calculate Product Bundle price based on child Item's rates"
+msgstr ""
+
+#. Description of the 'Hidden Line (Internal Use Only)' (Check) field in
+#. DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Calculate but don't show on final report"
+msgstr ""
+
+#. Label of the calculate_depr_using_total_days (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Calculate daily depreciation using total days in depreciation period"
+msgstr ""
+
+#. Option for the 'Data Source' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Calculated Amount"
+msgstr "계산된 금액"
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:308
+msgid "Calculated Bank Statement Balance"
+msgstr "계산된 은행 명세서 잔액"
+
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:57
+msgid "Calculated Bank Statement balance"
+msgstr "계산된 은행 명세서 잔액"
+
+#. Name of a report
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.json
+msgid "Calculated Discount Mismatch"
+msgstr "계산된 할인 불일치"
+
+#. Label of the section_break_11 (Section Break) field in DocType 'Supplier
+#. Scorecard Period'
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Calculations"
+msgstr "계산"
+
+#. Label of the calendar_event (Link) field in DocType 'Appointment'
+#: erpnext/crm/doctype/appointment/appointment.json
+msgid "Calendar Event"
+msgstr "캘린더 이벤트"
+
+#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset
+#. Maintenance Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Calibration"
+msgstr "구경 측정"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calibre"
+msgstr "구경"
+
+#: erpnext/telephony/doctype/call_log/call_log.js:8
+msgid "Call Again"
+msgstr "다시 전화해 주세요"
+
+#: erpnext/public/js/call_popup/call_popup.js:41
+msgid "Call Connected"
+msgstr "통화 연결됨"
+
+#. Label of the call_details_section (Section Break) field in DocType 'Call
+#. Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Call Details"
+msgstr "통화 내역"
+
+#. Description of the 'Duration' (Duration) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Call Duration in seconds"
+msgstr ""
+
+#: erpnext/public/js/call_popup/call_popup.js:48
+msgid "Call Ended"
+msgstr "통화 종료"
+
+#. Label of the call_handling_schedule (Table) field in DocType 'Incoming Call
+#. Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+msgid "Call Handling Schedule"
+msgstr "통화 처리 일정"
+
+#. Name of a DocType
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Call Log"
+msgstr "통화 기록"
+
+#: erpnext/public/js/call_popup/call_popup.js:45
+msgid "Call Missed"
+msgstr ""
+
+#. Label of the call_received_by (Link) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Call Received By"
+msgstr "전화를 받은 사람"
+
+#. Label of the call_receiving_device (Select) field in DocType 'Voice Call
+#. Settings'
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Call Receiving Device"
+msgstr "통화 수신 장치"
+
+#. Label of the call_routing (Select) field in DocType 'Incoming Call Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+msgid "Call Routing"
+msgstr ""
+
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:58
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:48
+msgid "Call Schedule Row {0}: To time slot should always be ahead of From time slot."
+msgstr "통화 일정 행 {0}: 도착 시간 슬롯은 항상 도착 시간 슬롯보다 앞서야 합니다."
+
+#. Label of the section_break_11 (Section Break) field in DocType 'Call Log'
+#: erpnext/public/js/call_popup/call_popup.js:164
+#: erpnext/telephony/doctype/call_log/call_log.json
+#: erpnext/telephony/doctype/call_log/call_log.py:133
+msgid "Call Summary"
+msgstr "통화 요약"
+
+#: erpnext/public/js/call_popup/call_popup.js:187
+msgid "Call Summary Saved"
+msgstr "통화 요약 저장됨"
+
+#. Label of the call_type (Data) field in DocType 'Telephony Call Type'
+#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json
+msgid "Call Type"
+msgstr "호출 유형"
+
+#: erpnext/telephony/doctype/call_log/call_log.js:8
+msgid "Callback"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calorie (Food)"
+msgstr "칼로리(음식)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calorie (It)"
+msgstr "칼로리(It)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calorie (Mean)"
+msgstr "칼로리 (평균)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calorie (Th)"
+msgstr "칼로리(Th)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Calorie/Seconds"
+msgstr "칼로리/초"
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Campaign Efficiency"
+msgstr "캠페인 효율성"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json
+msgid "Campaign Email Schedule"
+msgstr "캠페인 이메일 일정"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/campaign_item/campaign_item.json
+msgid "Campaign Item"
+msgstr "캠페인 아이템"
+
+#. Label of the campaign_name (Data) field in DocType 'Campaign'
+#. Option for the 'Campaign Naming By' (Select) field in DocType 'CRM Settings'
+#: erpnext/crm/doctype/campaign/campaign.json
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Campaign Name"
+msgstr "캠페인 이름"
+
+#. Label of the campaign_naming_by (Select) field in DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Campaign Naming By"
+msgstr ""
+
+#. Label of the campaign_schedules_section (Section Break) field in DocType
+#. 'Campaign'
+#. Label of the campaign_schedules (Table) field in DocType 'Campaign'
+#: erpnext/crm/doctype/campaign/campaign.json
+msgid "Campaign Schedules"
+msgstr "선거 운동 일정"
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:113
+msgid "Campaign {0} not found"
+msgstr ""
+
+#: erpnext/setup/doctype/authorization_control/authorization_control.py:60
+msgid "Can be approved by {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
+msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
+msgstr ""
+
+#: erpnext/accounts/report/pos_register/pos_register.py:124
+msgid "Can not filter based on Cashier, if grouped by Cashier"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:80
+msgid "Can not filter based on Child Account, if grouped by Account"
+msgstr ""
+
+#: erpnext/accounts/report/pos_register/pos_register.py:121
+msgid "Can not filter based on Customer, if grouped by Customer"
+msgstr ""
+
+#: erpnext/accounts/report/pos_register/pos_register.py:118
+msgid "Can not filter based on POS Profile, if grouped by POS Profile"
+msgstr ""
+
+#: erpnext/accounts/report/pos_register/pos_register.py:127
+msgid "Can not filter based on Payment Method, if grouped by Payment Method"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:83
+msgid "Can not filter based on Voucher No, if grouped by Voucher"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1399
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2879
+msgid "Can only make payment against unbilled {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
+#: erpnext/public/js/controllers/accounts.js:103
+msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:209
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
+msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
+msgstr ""
+
+#. Label of the cancel_at_period_end (Check) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Cancel At End Of Period"
+msgstr "기간 종료 시 취소"
+
+#: erpnext/support/doctype/warranty_claim/warranty_claim.py:73
+msgid "Cancel Material Visit {0} before cancelling this Warranty Claim"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:192
+msgid "Cancel Material Visits {0} before cancelling this Maintenance Visit"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.js:48
+msgid "Cancel Subscription"
+msgstr "구독 취소"
+
+#. Label of the cancel_after_grace (Check) field in DocType 'Subscription
+#. Settings'
+#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json
+msgid "Cancel Subscription After Grace Period"
+msgstr "유예 기간 이후 구독 취소"
+
+#. Label of the cancelation_date (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Cancelation Date"
+msgstr "취소 날짜"
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:76
+msgid "Cannot Assign Cashier"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:92
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:219
+msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
+msgstr "운전기사 주소가 누락되어 도착 시간을 계산할 수 없습니다."
+
+#: erpnext/setup/doctype/company/company.py:228
+msgid "Cannot Change Inventory Account Setting"
+msgstr "재고 계정 설정을 변경할 수 없습니다"
+
+#: erpnext/controllers/sales_and_purchase_return.py:438
+msgid "Cannot Create Return"
+msgstr "반환 값을 생성할 수 없습니다"
+
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
+msgid "Cannot Merge"
+msgstr "병합할 수 없습니다"
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:125
+msgid "Cannot Optimize Route as Driver Address is Missing."
+msgstr "운전자 주소가 누락되어 경로 최적화를 할 수 없습니다."
+
+#: erpnext/setup/doctype/employee/employee.py:295
+msgid "Cannot Relieve Employee"
+msgstr "직원을 교대할 수 없습니다"
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:71
+msgid "Cannot Resubmit Ledger entries for vouchers in Closed fiscal year."
+msgstr "이미 마감된 회계연도의 전표에 대한 회계 전표 입력은 다시 제출할 수 없습니다."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:204
+msgid "Cannot add child table {0} to deletion list. Child tables are automatically deleted with their parent DocTypes."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:226
+msgid "Cannot amend {0} {1}, please create a new one instead."
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:1300
+msgid "Cannot apply TDS against multiple parties in one entry"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:378
+msgid "Cannot be a fixed asset item as Stock Ledger is created."
+msgstr "재고 원장이 생성되므로 고정 자산 항목일 수 없습니다."
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.py:117
+msgid "Cannot cancel Asset Depreciation Schedule {0} as it has a draft journal entry {1}."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:248
+msgid "Cannot cancel POS Closing Entry"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:140
+msgid "Cannot cancel Stock Reservation Entry {0}, as it has used in the work order {1}. Please cancel the work order first or unreserved the stock"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:273
+msgid "Cannot cancel as processing of cancelled documents is pending."
+msgstr "취소된 문서 처리가 진행 중이므로 취소할 수 없습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
+msgid "Cannot cancel because submitted Stock Entry {0} exists"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:177
+msgid "Cannot cancel the transaction. Reposting of item valuation on submission is not completed yet."
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:592
+msgid "Cannot cancel this Manufacturing Stock Entry as quantity of Finished Good produced cannot be less than quantity delivered in the linked Subcontracting Inward Order."
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:580
+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 "이 문서는 제출된 자산 가치 조정 {0} 와 연결되어 있으므로 취소할 수 없습니다. 계속하려면 자산 가치 조정을 취소하십시오."
+
+#: erpnext/controllers/buying_controller.py:1099
+msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
+msgstr "이 문서는 제출된 자산 {asset_link}과 연결되어 있으므로 취소할 수 없습니다. 계속하려면 자산을 취소하십시오."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
+msgid "Cannot cancel transaction for Completed Work Order."
+msgstr "완료된 작업 주문에 대한 거래는 취소할 수 없습니다."
+
+#: erpnext/stock/doctype/item/item.py:998
+msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+msgid "Cannot change Reference Document Type."
+msgstr "참조 문서 유형을 변경할 수 없습니다."
+
+#: erpnext/accounts/deferred_revenue.py:52
+msgid "Cannot change Service Stop Date for item in row {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:989
+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:334
+msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
+msgstr "기존 거래 내역이 있으므로 회사 기본 통화를 변경할 수 없습니다. 기본 통화를 변경하려면 기존 거래를 취소해야 합니다."
+
+#: erpnext/projects/doctype/task/task.py:147
+msgid "Cannot complete task {0} as its dependant task {1} are not completed / cancelled."
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:61
+msgid "Cannot convert Cost Center to ledger as it has child nodes"
+msgstr ""
+
+#: erpnext/projects/doctype/task/task.js:49
+msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
+msgstr "{0} 하위 작업이 존재하므로 작업을 그룹이 아닌 작업으로 변환할 수 없습니다."
+
+#: erpnext/accounts/doctype/account/account.py:444
+msgid "Cannot convert to Group because Account Type is selected."
+msgstr "계정 유형이 선택되어 있으므로 그룹으로 변환할 수 없습니다."
+
+#: erpnext/accounts/doctype/account/account.py:280
+msgid "Cannot covert to Group because Account Type is selected."
+msgstr "계정 유형이 선택되어 있으므로 그룹으로 변환할 수 없습니다."
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:1022
+msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
+msgstr "미래 날짜로 지정된 구매 영수증에 대해서는 재고 예약 항목을 생성할 수 없습니다."
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
+#: erpnext/stock/doctype/pick_list/pick_list.py:257
+msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:149
+msgid "Cannot create accounting entries against disabled accounts: {0}"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:437
+msgid "Cannot create return for consolidated invoice {0}."
+msgstr "통합 송장 {0}에 대한 반품을 생성할 수 없습니다."
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1220
+msgid "Cannot deactivate or cancel BOM as it is linked with other BOMs"
+msgstr ""
+
+#: erpnext/crm/doctype/opportunity/opportunity.py:285
+msgid "Cannot declare as lost, because Quotation has been made."
+msgstr "견적이 이미 발행되었으므로 분실 신고를 할 수 없습니다."
+
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:16
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:26
+msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
+msgid "Cannot delete Exchange Gain/Loss row"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_no/serial_no.py:120
+msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3815
+msgid "Cannot delete an item which has been ordered"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+msgid "Cannot delete protected core DocType: {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:213
+msgid "Cannot delete virtual DocType: {0}. Virtual DocTypes do not have database tables."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:146
+msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:564
+msgid "Cannot disable perpetual inventory, as there are existing Stock Ledger Entries for the company {0}. Please cancel the stock transactions first and try again."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:127
+msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
+msgid "Cannot disassemble more than produced quantity."
+msgstr "생산된 수량보다 더 많이 분해할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
+msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
+msgstr "재고 항목 {1}에 대해 {0} 수량을 분해할 수 없습니다. 분해 가능한 수량은 {2} 뿐입니다."
+
+#: erpnext/setup/doctype/company/company.py:225
+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/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
+msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
+msgstr "품목 {0} 이 일련번호로 배송 보장 옵션 유무에 관계없이 추가되었으므로 일련번호로 배송을 보장할 수 없습니다."
+
+#: erpnext/accounts/doctype/payment_request/payment_request.js:111
+msgid "Cannot fetch selected rows for submitted Payment Request"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:62
+msgid "Cannot find Item or Warehouse with this Barcode"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:63
+msgid "Cannot find Item with this Barcode"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3767
+msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
+msgstr "품목 {0}에 대한 기본 창고를 찾을 수 없습니다. 품목 마스터 또는 재고 설정에서 기본 창고를 설정하십시오."
+
+#: erpnext/accounts/party.py:1075
+msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
+msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
+msgid "Cannot produce more item for {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
+msgid "Cannot produce more than {0} items for {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:359
+msgid "Cannot receive from customer against negative outstanding"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4089
+msgid "Cannot reduce quantity than ordered or purchased quantity"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
+#: erpnext/public/js/controllers/accounts.js:120
+msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank/bank.js:63
+msgid "Cannot retrieve link token for update. Check Error Log for more information"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:68
+msgid "Cannot retrieve link token. Check Error Log for more information"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:358
+msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
+#: erpnext/controllers/accounts_controller.py:3195
+#: erpnext/public/js/controllers/accounts.js:112
+#: erpnext/public/js/controllers/taxes_and_totals.js:550
+msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:291
+msgid "Cannot set as Lost as Sales Order is made."
+msgstr "판매 주문이 발생했으므로 분실로 설정할 수 없습니다."
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:91
+msgid "Cannot set authorization on basis of Discount for {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:789
+msgid "Cannot set multiple Item Defaults for a company."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:108
+msgid "Cannot set multiple account rows for the same company"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4055
+msgid "Cannot set quantity less than delivered quantity."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4056
+msgid "Cannot set quantity less than received quantity."
+msgstr "수령한 수량보다 적은 수량을 설정할 수 없습니다."
+
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.py:69
+msgid "Cannot set the field {0} for copying in variants"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:266
+msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
+msgstr "삭제를 시작할 수 없습니다. 다른 삭제 작업 {0} 이 이미 대기 중이거나 실행 중입니다. 완료될 때까지 기다려 주십시오."
+
+#: erpnext/controllers/accounts_controller.py:4083
+msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1939
+msgid "Cannot {0} from {1} without any negative outstanding invoice"
+msgstr ""
+
+#. Label of the canonical_uri (Data) field in DocType 'Code List'
+#. Label of the canonical_uri (Data) field in DocType 'Common Code'
+#: erpnext/edi/doctype/code_list/code_list.json
+#: erpnext/edi/doctype/common_code/common_code.json
+msgid "Canonical URI"
+msgstr "정규 URI"
+
+#. Label of the capacity_per_day (Int) field in DocType 'Item Lead Time'
+#. Label of the capacity (Float) field in DocType 'Putaway Rule'
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:964
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+msgid "Capacity"
+msgstr "용량"
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:69
+msgid "Capacity (Stock UOM)"
+msgstr "용량(재고 단위)"
+
+#. Label of the capacity_planning (Section Break) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Capacity Planning"
+msgstr "역량 계획"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
+msgid "Capacity Planning Error, planned start time can not be same as end time"
+msgstr ""
+
+#. Label of the capacity_planning_for_days (Int) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Capacity Planning For (Days)"
+msgstr "(일) 기간의 용량 계획"
+
+#. Label of the stock_capacity (Float) field in DocType 'Putaway Rule'
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+msgid "Capacity in Stock UOM"
+msgstr ""
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:86
+msgid "Capacity must be greater than 0"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+msgid "Capital Equipment"
+msgstr "자본 설비"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+msgid "Capital Stock"
+msgstr "자본금"
+
+#. Label of the capital_work_in_progress_account (Link) field in DocType 'Asset
+#. Category Account'
+#. Label of the capital_work_in_progress_account (Link) field in DocType
+#. 'Company'
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Capital Work In Progress Account"
+msgstr "자본 공사 진행 중 계정"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/report/account_balance/account_balance.js:42
+msgid "Capital Work in Progress"
+msgstr "자본 투자 사업 진행 중"
+
+#: erpnext/assets/doctype/asset/asset.js:223
+msgid "Capitalize Asset"
+msgstr ""
+
+#. Label of the capitalize_repair_cost (Check) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Capitalize Repair Cost"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:221
+msgid "Capitalize this asset before submitting."
+msgstr "제출하기 전에 이 항목을 대문자로 입력하세요."
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:14
+msgid "Capitalized"
+msgstr "대문자로 표기된"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Carat"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:6
+msgid "Carriage Paid To"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:7
+msgid "Carriage and Insurance Paid to"
+msgstr ""
+
+#. Label of the carrier (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Carrier"
+msgstr ""
+
+#. Label of the carrier_service (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Carrier Service"
+msgstr "운송 서비스"
+
+#. Label of the carry_forward_communication_and_comments (Check) field in
+#. DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Carry Forward Communication and Comments"
+msgstr "의사소통 및 의견 전달"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Option for the 'Type' (Select) field in DocType 'Mode of Payment'
+#. Option for the 'Salary Mode' (Select) field in DocType 'Employee'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:21
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:27
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/accounts/report/account_balance/account_balance.js:40
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:257
+msgid "Cash"
+msgstr "현금"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Cash Entry"
+msgstr "현금 입금"
+
+#. Option for the 'Report Type' (Select) field in DocType 'Financial Report
+#. Template'
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/report/cash_flow/cash_flow.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Cash Flow"
+msgstr "현금 흐름"
+
+#: erpnext/public/js/financial_statements.js:346
+msgid "Cash Flow Statement"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:179
+msgid "Cash Flow from Financing"
+msgstr "자금 조달로 인한 현금 흐름"
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:172
+msgid "Cash Flow from Investing"
+msgstr "투자로 인한 현금 흐름"
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:160
+msgid "Cash Flow from Operations"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:20
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:26
+msgid "Cash In Hand"
+msgstr "현금"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:322
+msgid "Cash or Bank Account is mandatory for making payment entry"
+msgstr ""
+
+#. Label of the cash_bank_account (Link) field in DocType 'POS Invoice'
+#. Label of the cash_bank_account (Link) field in DocType 'Purchase Invoice'
+#. Label of the cash_bank_account (Link) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Cash/Bank Account"
+msgstr "현금/은행 계좌"
+
+#. Label of the user (Link) field in DocType 'POS Closing Entry'
+#. Label of the user (Link) field in DocType 'POS Opening Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/accounts/report/pos_register/pos_register.js:38
+#: erpnext/accounts/report/pos_register/pos_register.py:123
+#: erpnext/accounts/report/pos_register/pos_register.py:195
+msgid "Cashier"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+msgid "Cashier Closing"
+msgstr "계산대 마감"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json
+msgid "Cashier Closing Payments"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:77
+msgid "Cashier is currently assigned to another POS."
+msgstr ""
+
+#. Label of the catch_all (Link) field in DocType 'Communication Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Catch All"
+msgstr "모두 잡아라"
+
+#. Label of the categorize_by (Select) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Categorize By"
+msgstr "분류 기준"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:117
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:80
+msgid "Categorize by"
+msgstr "분류 기준"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:130
+msgid "Categorize by Account"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:84
+msgid "Categorize by Item"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:134
+msgid "Categorize by Party"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:83
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:86
+msgid "Categorize by Supplier"
+msgstr ""
+
+#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:122
+msgid "Categorize by Voucher"
+msgstr ""
+
+#. Option for the 'Categorize By' (Select) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:126
+msgid "Categorize by Voucher (Consolidated)"
+msgstr ""
+
+#. Label of the category_details_section (Section Break) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Category Details"
+msgstr "카테고리 세부 정보"
+
+#: erpnext/assets/dashboard_fixtures.py:93
+msgid "Category-wise Asset Value"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
+msgid "Caution"
+msgstr "주의"
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:208
+msgid "Caution: This might alter frozen accounts."
+msgstr "주의: 이로 인해 동결된 계정이 변경될 수 있습니다."
+
+#. Label of the cell_number (Data) field in DocType 'Driver'
+#: erpnext/setup/doctype/driver/driver.json
+msgid "Cellphone Number"
+msgstr "휴대폰 번호"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Celsius"
+msgstr "섭씨"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cental"
+msgstr "중앙"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Centiarea"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Centigram/Litre"
+msgstr "센티그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Centilitre"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Centimeter"
+msgstr "센티미터"
+
+#. Label of the certificate_attachement (Attach) field in DocType 'Asset
+#. Maintenance Log'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+msgid "Certificate"
+msgstr "자격증"
+
+#. Label of the certificate_details_section (Section Break) field in DocType
+#. 'Lower Deduction Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Certificate Details"
+msgstr "인증서 세부 정보"
+
+#. Label of the certificate_limit (Currency) field in DocType 'Lower Deduction
+#. Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Certificate Limit"
+msgstr "인증서 한도"
+
+#. Label of the certificate_no (Data) field in DocType 'Lower Deduction
+#. Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Certificate No"
+msgstr "증명서 번호"
+
+#. Label of the certificate_required (Check) field in DocType 'Asset
+#. Maintenance Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Certificate Required"
+msgstr "자격증 필요"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Chain"
+msgstr "체인"
+
+#. Label of the change_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the change_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:318
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/page/point_of_sale/pos_payment.js:684
+msgid "Change Amount"
+msgstr "잔돈"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:94
+msgid "Change Release Date"
+msgstr "변경 출시일"
+
+#. Label of the stock_value_difference (Float) field in DocType 'Serial and
+#. Batch Entry'
+#. Label of the stock_value_difference (Currency) field in DocType 'Stock
+#. Closing Balance'
+#. Label of the stock_value_difference (Currency) field in DocType 'Stock
+#. Ledger Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:171
+msgid "Change in Stock Value"
+msgstr "주식 가치 변동"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+msgid "Change the account type to Receivable or select a different account."
+msgstr ""
+
+#. Description of the 'Last Integration Date' (Date) field in DocType 'Bank
+#. Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Change this date manually to setup the next synchronization start date"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:148
+msgid "Changed customer name to '{}' as '{}' already exists."
+msgstr ""
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:156
+msgid "Changes in {0}"
+msgstr "{0}의 변화"
+
+#: erpnext/stock/doctype/item/item.js:373
+msgid "Changing Customer Group for the selected Customer is not allowed."
+msgstr "선택한 고객의 고객 그룹을 변경하는 것은 허용되지 않습니다."
+
+#: erpnext/stock/doctype/item/item.js:16
+msgid "Changing the valuation method to Moving Average will affect new transactions. If backdated entries are added, earlier FIFO-based entries will be reposted, which may change closing balances."
+msgstr ""
+
+#. Option for the 'Lead Type' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:1
+msgid "Channel Partner"
+msgstr "채널 파트너"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
+#: erpnext/controllers/accounts_controller.py:3258
+msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/report/account_balance/account_balance.js:41
+msgid "Chargeable"
+msgstr "유료"
+
+#. Label of the charges (Currency) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Charges Incurred"
+msgstr "발생한 비용"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:24
+msgid "Charges are updated in Purchase Receipt against each item"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:18
+msgid "Charges will be distributed proportionately based on item qty or amount, as per your selection"
+msgstr ""
+
+#. Label of the chart_of_accounts_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Chart Of Accounts"
+msgstr ""
+
+#. Label of the chart_of_accounts (Select) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Chart Of Accounts Template"
+msgstr ""
+
+#. Label of the chart_preview (Section Break) field in DocType 'Chart of
+#. Accounts Importer'
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+msgid "Chart Preview"
+msgstr ""
+
+#. Label of the chart_tree (HTML) field in DocType 'Chart of Accounts Importer'
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+msgid "Chart Tree"
+msgstr "차트 트리"
+
+#. Label of a Link in the Invoicing Workspace
+#. Label of the section_break_28 (Section Break) field in DocType 'Company'
+#. Label of a Link in the Home Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.js:87
+#: erpnext/accounts/doctype/account/account_tree.js:5
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/public/js/setup_wizard.js:43
+#: erpnext/setup/doctype/company/company.js:139
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Chart of Accounts"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Link in the Home Workspace
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/setup/workspace/home/home.json
+msgid "Chart of Accounts Importer"
+msgstr ""
+
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account_tree.js:191
+#: erpnext/accounts/doctype/cost_center/cost_center.js:41
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Chart of Cost Centers"
+msgstr "비용 센터 차트"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:66
+msgid "Charts Based On"
+msgstr ""
+
+#. Label of the chassis_no (Data) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Chassis No"
+msgstr ""
+
+#. Label of the warehouse_group (Link) field in DocType 'Item Reorder'
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+msgid "Check Availability in Warehouse"
+msgstr "창고 재고 확인"
+
+#. Label of the check_supplier_invoice_uniqueness (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Check Supplier Invoice Number Uniqueness"
+msgstr ""
+
+#. Description of the 'Is Container' (Check) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Check if it is a hydroponic unit"
+msgstr ""
+
+#. Description of the 'Skip Material Transfer to WIP Warehouse' (Check) field
+#. in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Check if material transfer entry is not required"
+msgstr ""
+
+#. Description of the 'Not Applicable' (Check) field in DocType 'Item Tax
+#. Template Detail'
+#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json
+#, python-format
+msgid "Check if this tax is not applicable to items (distinct from 0% rate)"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:58
+msgid "Check row {0} for account {1}: Party Type is only allowed for Receivable or Payable accounts"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.py:65
+msgid "Check row {0} for account {1}: Party is only allowed if Party Type is set"
+msgstr ""
+
+#. Description of the 'Must be Whole Number' (Check) field in DocType 'UOM'
+#: erpnext/setup/doctype/uom/uom.json
+msgid "Check this to disallow fractions. (for Nos)"
+msgstr "분수를 허용하지 않으려면 이 항목을 선택하십시오. (숫자의 경우)"
+
+#. Label of the checked_on (Datetime) field in DocType 'Ledger Health'
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+msgid "Checked On"
+msgstr "확인됨"
+
+#. Description of the 'Round Off Tax Amount' (Check) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Checking this will round off the tax amount to the nearest integer"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:108
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:148
+msgid "Checkout"
+msgstr "점검"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:263
+msgid "Checkout Order / Submit Order / New Order"
+msgstr "주문하기 / 주문 제출 / 새 주문"
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:300
+msgid "Checks and Deposits incorrectly cleared"
+msgstr "수표 및 예금 처리 오류 발생"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:12
+msgid "Chemical"
+msgstr "화학적인"
+
+#. Option for the 'Salary Mode' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:254
+msgid "Cheque"
+msgstr "확인하다"
+
+#. Label of the cheque_date (Date) field in DocType 'Bank Clearance Detail'
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+msgid "Cheque Date"
+msgstr "수표 날짜"
+
+#. Label of the cheque_height (Float) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Cheque Height"
+msgstr "수표 높이"
+
+#. Label of the cheque_number (Data) field in DocType 'Bank Clearance Detail'
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+msgid "Cheque Number"
+msgstr "수표 번호"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Cheque Print Template"
+msgstr ""
+
+#. Label of the cheque_size (Select) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Cheque Size"
+msgstr "수표 크기"
+
+#. Label of the cheque_width (Float) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Cheque Width"
+msgstr "수표 너비"
+
+#. Label of the reference_date (Date) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/public/js/controllers/transaction.js:2778
+msgid "Cheque/Reference Date"
+msgstr "수표/참조 날짜"
+
+#. Label of the reference_no (Data) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:39
+msgid "Cheque/Reference No"
+msgstr "수표/참조 번호"
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:132
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:323
+msgid "Cheque/Reference Number"
+msgstr "수표/참조 번호"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:134
+msgid "Cheques Required"
+msgstr "수표 필수"
+
+#. Name of a report
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.json
+msgid "Cheques and Deposits Incorrectly cleared"
+msgstr "수표 및 예금 처리 오류"
+
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:50
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:54
+msgid "Cheques and Deposits incorrectly cleared"
+msgstr "수표 및 예금 처리 오류 발생"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:9
+msgid "Chief Executive Officer"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:10
+msgid "Chief Financial Officer"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:11
+msgid "Chief Operating Officer"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:12
+msgid "Chief Technology Officer"
+msgstr ""
+
+#. Label of the child_doctypes (Small Text) field in DocType 'Transaction
+#. Deletion Record To Delete'
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Child DocTypes"
+msgstr "자식 문서 유형"
+
+#. Label of the child_docname (Data) field in DocType 'Pricing Rule Detail'
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+msgid "Child Docname"
+msgstr "자식 문서 이름"
+
+#. Label of the child_row_reference (Data) field in DocType 'Quality
+#. Inspection'
+#: erpnext/public/js/controllers/transaction.js:2873
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Child Row Reference"
+msgstr "자식 행 참조"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:207
+msgid "Child Table Not Allowed"
+msgstr "어린이용 테이블 사용 금지"
+
+#: erpnext/projects/doctype/task/task.py:314
+msgid "Child Task exists for this Task. You can not delete this Task."
+msgstr "이 작업에는 하위 작업이 존재합니다. 따라서 이 작업을 삭제할 수 없습니다."
+
+#: erpnext/stock/doctype/warehouse/warehouse_tree.js:21
+msgid "Child nodes can be only created under 'Group' type nodes"
+msgstr ""
+
+#. Description of the 'Child DocTypes' (Small Text) field in DocType
+#. 'Transaction Deletion Record To Delete'
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Child tables that will also be deleted"
+msgstr "함께 삭제될 하위 테이블"
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:104
+msgid "Child warehouse exists for this warehouse. You can not delete this warehouse."
+msgstr "이 창고에는 하위 창고가 존재합니다. 따라서 이 창고는 삭제할 수 없습니다."
+
+#: erpnext/projects/doctype/task/task.py:262
+msgid "Circular Reference Error"
+msgstr "원형 참조 오류"
+
+#. Label of the claimed_landed_cost_amount (Currency) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Claimed Landed Cost Amount (Company Currency)"
+msgstr "청구된 착륙 비용 금액(회사 통화)"
+
+#. Label of the class_per (Data) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Class / Percentage"
+msgstr "학급/백분율"
+
+#. Description of a DocType
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Classification of Customers by region"
+msgstr ""
+
+#. Label of the classify_as (Select) field in DocType 'Bank Transaction Rule'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Classify As"
+msgstr "다음과 같이 분류하세요"
+
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
+#. Label of the more_information (Text Editor) field in DocType 'Bank
+#. Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Clauses and Conditions"
+msgstr "조항 및 조건"
+
+#: erpnext/public/js/utils/barcode_scanner.js:493
+msgid "Clear Last Scanned Warehouse"
+msgstr ""
+
+#. Label of the clear_notifications_status (Select) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Clear Notifications"
+msgstr "알림 지우기"
+
+#. Label of the clear_table (Button) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Clear Table"
+msgstr "테이블 지우기"
+
+#. Label of the clearance_date (Date) field in DocType 'Bank Clearance Detail'
+#. Label of the clearance_date (Date) field in DocType 'Bank Transaction
+#. Payments'
+#. Label of the clearance_date (Date) field in DocType 'Journal Entry'
+#. Label of the clearance_date (Date) field in DocType 'Payment Entry'
+#. Label of the clearance_date (Date) field in DocType 'Purchase Invoice'
+#. Label of the clearance_date (Date) field in DocType 'Sales Invoice Payment'
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:157
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:339
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:178
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:154
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:40
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:28
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:102
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:152
+#: erpnext/templates/form_grid/bank_reconciliation_grid.html:7
+msgid "Clearance Date"
+msgstr "정리 날짜"
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:134
+msgid "Clearance Date not mentioned"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:179
+msgid "Clearance Date updated"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:158
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:173
+msgid "Clearance date changed from {0} to {1} via Bank Clearance Tool"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:292
+msgid "Clearance date updated"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:184
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:82
+msgid "Cleared"
+msgstr ""
+
+#: erpnext/public/js/utils/demo.js:21
+msgid "Clearing Demo Data..."
+msgstr "데모 데이터 삭제 중..."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:719
+msgid "Click on 'Get Finished Goods for Manufacture' to fetch the items from the above Sales Orders. Items only for which a BOM is present will be fetched."
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:70
+msgid "Click on Add to Holidays. This will populate the holidays table with all the dates that fall on the selected weekly off. Repeat the process for populating the dates for all your weekly holidays"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:714
+msgid "Click on Get Sales Orders to fetch sales orders based on the above filters."
+msgstr ""
+
+#. Description of the 'Import Invoices' (Button) field in DocType 'Import
+#. Supplier Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Click on Import Invoices button once the zip file has been attached to the document. Any errors related to processing will be shown in the Error Log."
+msgstr "압축 파일을 문서에 첨부한 후 '송장 가져오기' 버튼을 클릭하십시오. 처리 과정에서 발생하는 오류는 오류 로그에 표시됩니다."
+
+#: erpnext/templates/emails/confirm_appointment.html:3
+msgid "Click on the link below to verify your email and confirm the appointment"
+msgstr ""
+
+#. Description of the 'Reset Raw Materials Table' (Button) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Click this button if you encounter a negative stock error for a serial or batch item. The system will fetch the available serials or batches automatically."
+msgstr "일련번호 또는 배치 품목에 대해 재고 부족 오류가 발생하는 경우 이 버튼을 클릭하십시오. 시스템에서 사용 가능한 일련번호 또는 배치를 자동으로 가져옵니다."
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:485
+msgid "Click to add email / phone"
+msgstr "이메일/전화번호 추가를 클릭하세요"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:813
+msgid "Click to pay in full."
+msgstr "클릭하여 전액 결제하세요."
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:183
+msgid "Click to set the closing balance as per statement"
+msgstr ""
+
+#. Label of the close_issue_after_days (Int) field in DocType 'Support
+#. Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Close Issue After Days"
+msgstr "며칠 만에 문제 해결"
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:69
+msgid "Close Loan"
+msgstr "대출 마감"
+
+#. Label of the close_opportunity_after_days (Int) field in DocType 'CRM
+#. Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Close Replied Opportunity After Days"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:253
+msgid "Close the POS"
+msgstr "POS를 닫으세요"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/closed_document/closed_document.json
+msgid "Closed Document"
+msgstr "닫힌 문서"
+
+#. Label of the closed_documents (Table) field in DocType 'Accounting Period'
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+msgid "Closed Documents"
+msgstr "비공개 문서"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
+msgid "Closed Work Order can not be stopped or Re-opened"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
+msgid "Closed order cannot be cancelled. Unclose to cancel."
+msgstr "주문이 마감되면 취소할 수 없습니다. 취소하려면 마감 해제를 해주세요."
+
+#. Label of the expected_closing (Date) field in DocType 'Prospect Opportunity'
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+msgid "Closing"
+msgstr "폐쇄"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:445
+#: erpnext/accounts/report/trial_balance/trial_balance.py:544
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:226
+msgid "Closing (Cr)"
+msgstr "마감(Cr)"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:438
+#: erpnext/accounts/report/trial_balance/trial_balance.py:537
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:219
+msgid "Closing (Dr)"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:405
+msgid "Closing (Opening + Total)"
+msgstr "마감 (시작 + 합계)"
+
+#. Label of the closing_account_head (Link) field in DocType 'Period Closing
+#. Voucher'
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+msgid "Closing Account Head"
+msgstr "계정 마감 책임자"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:123
+msgid "Closing Account {0} must be of type Liability / Equity"
+msgstr ""
+
+#. Label of the closing_amount (Currency) field in DocType 'POS Closing Entry
+#. Detail'
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+msgid "Closing Amount"
+msgstr "마감 금액"
+
+#. Label of the bank_statement_closing_balance (Currency) field in DocType
+#. 'Bank Reconciliation Tool'
+#. Label of the closing_balance (Currency) field in DocType 'Bank Statement
+#. Import Log'
+#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report
+#. Row'
+#. Label of the closing_balance (JSON) field in DocType 'Process Period Closing
+#. Voucher Detail'
+#: banking/src/pages/BankStatementImporter.tsx:225
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:230
+msgid "Closing Balance"
+msgstr "최종 잔액"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:176
+msgctxt "Do MMMM YYYY"
+msgid "Closing Balance as of {}"
+msgstr "{}일 기준 마감 잔액"
+
+#: erpnext/public/js/bank_reconciliation_tool/number_card.js:18
+msgid "Closing Balance as per Bank Statement"
+msgstr "은행 명세서에 따른 최종 잔액"
+
+#: erpnext/public/js/bank_reconciliation_tool/number_card.js:24
+msgid "Closing Balance as per ERP"
+msgstr "ERP 시스템에 따른 최종 잔액"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:171
+msgid "Closing Balance as per statement"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:68
+msgid "Closing Balance as per system"
+msgstr "시스템에 따른 최종 잔액"
+
+#. Label of the closing_date (Date) field in DocType 'Account Closing Balance'
+#. Label of the closing_date (Date) field in DocType 'Task'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Closing Date"
+msgstr "마감일"
+
+#. Label of the closing_text (Text Editor) field in DocType 'Dunning'
+#. Label of the closing_text (Text Editor) field in DocType 'Dunning Letter
+#. Text'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Closing Text"
+msgstr "마무리 인사"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.html:211
+msgid "Closing [Opening + Total] "
+msgstr "마감 [시작 + 합계] "
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:75
+msgid "Closing balance as per system"
+msgstr "시스템에 따른 최종 잔액"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:294
+msgid "Closing balance deleted."
+msgstr "최종 잔액이 삭제되었습니다."
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:238
+msgid "Closing balance is required."
+msgstr "최종 잔액이 필요합니다."
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:257
+msgctxt "Do MMM YYYY"
+msgid "Closing balance on bank statement as of {0}"
+msgstr "{0} 기준 은행 명세서의 최종 잔액"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:232
+msgid "Closing balance set."
+msgstr "최종 잔액이 설정되었습니다."
+
+#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Co-Product"
+msgstr "부산물"
+
+#. Name of a DocType
+#. Label of the code_list (Link) field in DocType 'Common Code'
+#: erpnext/edi/doctype/code_list/code_list.json
+#: erpnext/edi/doctype/common_code/common_code.json
+msgid "Code List"
+msgstr "코드 목록"
+
+#. Description of the 'Line Reference' (Data) field in DocType 'Financial
+#. Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Code to reference this line in formulas (e.g., REV100, EXP200, ASSET100)"
+msgstr "수식에서 이 줄을 참조하는 코드 (예: REV100, EXP200, ASSET100)"
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:4
+msgid "Cold Calling"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:281
+msgid "Collect Outstanding Amount"
+msgstr ""
+
+#. Label of the collect_progress (Check) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Collect Progress"
+msgstr "진행 상황 수집"
+
+#. Label of the collection_factor (Currency) field in DocType 'Loyalty Program
+#. Collection'
+#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json
+msgid "Collection Factor (=1 LP)"
+msgstr ""
+
+#. Label of the collection_rules (Table) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Collection Rules"
+msgstr "수집 규칙"
+
+#. Label of the rules (Section Break) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Collection Tier"
+msgstr "컬렉션 등급"
+
+#. Description of the 'Color' (Color) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Color to highlight values (e.g., red for exceptions)"
+msgstr "값을 강조하기 위한 색상 (예: 예외 사항은 빨간색)"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:280
+msgid "Colour"
+msgstr "색상"
+
+#. Label of the column_mapping (Table) field in DocType 'Bank Statement Import
+#. Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Column Mapping"
+msgstr ""
+
+#. Label of the file_field (Data) field in DocType 'Bank Transaction Mapping'
+#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json
+msgid "Column in Bank File"
+msgstr "은행 파일의 열"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:52
+msgid "Columns are not according to template. Please compare the uploaded file with standard template"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:39
+msgid "Combined invoice portion must equal 100%"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:178
+msgid "Commercial"
+msgstr "광고"
+
+#. Label of the sales_team_section_break (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the commission_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the sales_team_section_break (Section Break) field in DocType
+#. 'Sales Order'
+#. Label of the sales_team_section_break (Section Break) field in DocType
+#. 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:49
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Commission"
+msgstr "수수료"
+
+#. Label of the default_commission_rate (Float) field in DocType 'Customer'
+#. Label of the commission_rate (Float) field in DocType 'Sales Order'
+#. Label of the commission_rate (Data) field in DocType 'Sales Team'
+#. Label of the commission_rate (Float) field in DocType 'Sales Partner'
+#. Label of the commission_rate (Data) field in DocType 'Sales Person'
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_team/sales_team.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Commission Rate"
+msgstr ""
+
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:168
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:47
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:81
+msgid "Commission Rate %"
+msgstr ""
+
+#. Label of the commission_rate (Float) field in DocType 'POS Invoice'
+#. Label of the commission_rate (Float) field in DocType 'Sales Invoice'
+#. Label of the commission_rate (Float) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Commission Rate (%)"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
+msgid "Commission on Sales"
+msgstr "판매 수수료"
+
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
+#. Name of a DocType
+#. Label of the common_code (Data) field in DocType 'Common Code'
+#. Label of the common_code (Data) field in DocType 'UOM'
+#: erpnext/edi/doctype/common_code/common_code.json
+#: erpnext/setup/doctype/uom/uom.json
+msgid "Common Code"
+msgstr "공통 코드"
+
+#. Label of the communication_channel (Select) field in DocType 'Communication
+#. Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Communication Channel"
+msgstr "통신 채널"
+
+#. Name of a DocType
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Communication Medium"
+msgstr "커뮤니케이션 매체"
+
+#. Name of a DocType
+#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json
+msgid "Communication Medium Timeslot"
+msgstr "커뮤니케이션 매체 시간대"
+
+#. Label of the communication_medium_type (Select) field in DocType
+#. 'Communication Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Communication Medium Type"
+msgstr "커뮤니케이션 매체 유형"
+
+#: erpnext/setup/install.py:108
+msgid "Compact Item Print"
+msgstr "소형 품목 인쇄"
+
+#. Label of the companies (Table) field in DocType 'Fiscal Year'
+#. Label of the section_break_xdsp (Section Break) field in DocType 'Ledger
+#. Health Monitor'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:26
+msgid "Companies"
+msgstr "회사들"
+
+#. Label of the company (Link) field in DocType 'Account'
+#. Label of the company (Link) field in DocType 'Account Closing Balance'
+#. Label of the company (Link) field in DocType 'Accounting Dimension Detail'
+#. Label of the company (Link) field in DocType 'Accounting Dimension Filter'
+#. Label of the company (Link) field in DocType 'Accounting Period'
+#. Label of the company (Link) field in DocType 'Advance Payment Ledger Entry'
+#. Label of the company (Link) field in DocType 'Allowed To Transact With'
+#. Label of the company (Link) field in DocType 'Bank Account'
+#. Label of the company (Link) field in DocType 'Bank Reconciliation Tool'
+#. Label of the company (Link) field in DocType 'Bank Statement Import'
+#. Label of the company (Link) field in DocType 'Bank Transaction'
+#. Label of the company (Link) field in DocType 'Bank Transaction Rule'
+#. Label of the company (Link) field in DocType 'Bisect Accounting Statements'
+#. Label of the company (Link) field in DocType 'Budget'
+#. Label of the company (Link) field in DocType 'Chart of Accounts Importer'
+#. Label of the company (Link) field in DocType 'Cost Center'
+#. Label of the company (Link) field in DocType 'Cost Center Allocation'
+#. Label of the company (Link) field in DocType 'Dunning'
+#. Label of the company (Link) field in DocType 'Dunning Type'
+#. Label of the company (Link) field in DocType 'Exchange Rate Revaluation'
+#. Label of the company (Link) field in DocType 'Fiscal Year Company'
+#. Label of the company (Link) field in DocType 'GL Entry'
+#. Label of the company (Link) field in DocType 'Invoice Discounting'
+#. Label of the company (Link) field in DocType 'Item Tax Template'
+#. Label of the company (Link) field in DocType 'Journal Entry'
+#. Label of the company (Link) field in DocType 'Journal Entry Template'
+#. Label of the company (Link) field in DocType 'Ledger Health Monitor Company'
+#. Label of the company (Link) field in DocType 'Ledger Merge'
+#. Label of the company (Link) field in DocType 'Loyalty Point Entry'
+#. Label of the company (Link) field in DocType 'Loyalty Program'
+#. Label of the company (Link) field in DocType 'Mode of Payment Account'
+#. Label of the company (Link) field in DocType 'Opening Invoice Creation Tool'
+#. Label of the company (Link) field in DocType 'Party Account'
+#. Label of the company (Link) field in DocType 'Payment Entry'
+#. Label of the company (Link) field in DocType 'Payment Gateway Account'
+#. Label of the company (Link) field in DocType 'Payment Ledger Entry'
+#. Label of the company (Link) field in DocType 'Payment Order'
+#. Label of the company (Link) field in DocType 'Payment Reconciliation'
+#. Label of the company (Link) field in DocType 'Payment Request'
+#. Label of the company (Link) field in DocType 'Period Closing Voucher'
+#. Label of the company (Link) field in DocType 'POS Closing Entry'
+#. Label of the company (Link) field in DocType 'POS Invoice'
+#. Label of the company (Link) field in DocType 'POS Invoice Merge Log'
+#. Label of the company (Link) field in DocType 'POS Opening Entry'
+#. Label of the company (Link) field in DocType 'POS Profile'
+#. Label of the company (Link) field in DocType 'Pricing Rule'
+#. Label of the company (Link) field in DocType 'Process Deferred Accounting'
+#. Label of the company (Link) field in DocType 'Process Payment
+#. Reconciliation'
+#. Label of the company (Link) field in DocType 'Process Statement Of Accounts'
+#. Label of the company (Link) field in DocType 'Promotional Scheme'
+#. Label of the company (Link) field in DocType 'Purchase Invoice'
+#. Label of the company (Link) field in DocType 'Purchase Taxes and Charges
+#. Template'
+#. Label of the company (Link) field in DocType 'Repost Accounting Ledger'
+#. Label of the company (Link) field in DocType 'Repost Payment Ledger'
+#. Label of the company (Link) field in DocType 'Sales Invoice'
+#. Label of the company (Link) field in DocType 'Sales Taxes and Charges
+#. Template'
+#. Label of the company (Link) field in DocType 'Share Transfer'
+#. Label of the company (Link) field in DocType 'Shareholder'
+#. Label of the company (Link) field in DocType 'Shipping Rule'
+#. Label of the company (Link) field in DocType 'Subscription'
+#. Label of the company (Link) field in DocType 'Tax Rule'
+#. Label of the company (Link) field in DocType 'Tax Withholding Account'
+#. Label of the company (Link) field in DocType 'Tax Withholding Entry'
+#. Label of the company (Link) field in DocType 'Unreconcile Payment'
+#. Label of a Link in the Invoicing Workspace
+#. Option for the 'Asset Owner' (Select) field in DocType 'Asset'
+#. Label of the company (Link) field in DocType 'Asset'
+#. Label of the company (Link) field in DocType 'Asset Capitalization'
+#. Label of the company_name (Link) field in DocType 'Asset Category Account'
+#. Label of the company (Link) field in DocType 'Asset Depreciation Schedule'
+#. Label of the company (Link) field in DocType 'Asset Maintenance'
+#. Label of the company (Link) field in DocType 'Asset Maintenance Team'
+#. Label of the company (Link) field in DocType 'Asset Movement'
+#. Label of the company (Link) field in DocType 'Asset Movement Item'
+#. Label of the company (Link) field in DocType 'Asset Repair'
+#. Label of the company (Link) field in DocType 'Asset Value Adjustment'
+#. Label of the company (Link) field in DocType 'Customer Number At Supplier'
+#. Label of the company (Link) field in DocType 'Purchase Order'
+#. Label of the company (Link) field in DocType 'Request for Quotation'
+#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier'
+#. Label of the company (Link) field in DocType 'Supplier Quotation'
+#. Label of the company (Link) field in DocType 'Lead'
+#. Label of the company (Link) field in DocType 'Opportunity'
+#. Label of the company (Link) field in DocType 'Prospect'
+#. Label of the company (Link) field in DocType 'Maintenance Schedule'
+#. Label of the company (Link) field in DocType 'Maintenance Visit'
+#. Label of the company (Link) field in DocType 'Blanket Order'
+#. Label of the company (Link) field in DocType 'BOM'
+#. Label of the company (Link) field in DocType 'BOM Creator'
+#. Label of the company (Link) field in DocType 'Job Card'
+#. Label of the company (Link) field in DocType 'Master Production Schedule'
+#. Label of the company (Link) field in DocType 'Plant Floor'
+#. Label of the company (Link) field in DocType 'Production Plan'
+#. Label of the company (Link) field in DocType 'Sales Forecast'
+#. Label of the company (Link) field in DocType 'Work Order'
+#. Label of the company (Link) field in DocType 'Workstation Operating
+#. Component Account'
+#. Label of the company (Link) field in DocType 'Project'
+#. Label of the company (Link) field in DocType 'Task'
+#. Label of the company (Link) field in DocType 'Timesheet'
+#. Label of the company (Link) field in DocType 'Import Supplier Invoice'
+#. Label of the company (Link) field in DocType 'Lower Deduction Certificate'
+#. Label of the company (Link) field in DocType 'South Africa VAT Settings'
+#. Label of the company (Link) field in DocType 'UAE VAT Settings'
+#. Option for the 'Customer Type' (Select) field in DocType 'Customer'
+#. Label of the company (Link) field in DocType 'Customer Credit Limit'
+#. Label of the company (Link) field in DocType 'Installation Note'
+#. Label of the company (Link) field in DocType 'Quotation'
+#. Label of the company (Link) field in DocType 'Sales Order'
+#. Label of the company (Link) field in DocType 'Supplier Number At Customer'
+#. Label of the company (Link) field in DocType 'Authorization Rule'
+#. Name of a DocType
+#. Label of the company_name (Data) field in DocType 'Company'
+#. Label of the company (Link) field in DocType 'Department'
+#. Label of the company (Link) field in DocType 'Employee'
+#. Label of the company_name (Data) field in DocType 'Employee External Work
+#. History'
+#. Label of the company (Link) field in DocType 'Transaction Deletion Record'
+#. Label of the company (Link) field in DocType 'Vehicle'
+#. Label of a Link in the Home Workspace
+#. Label of the company (Link) field in DocType 'Bin'
+#. Label of the company (Link) field in DocType 'Delivery Note'
+#. Label of the company (Link) field in DocType 'Delivery Trip'
+#. Label of the company (Link) field in DocType 'Item Default'
+#. Label of the company (Link) field in DocType 'Landed Cost Voucher'
+#. Label of the company (Link) field in DocType 'Material Request'
+#. Label of the company (Link) field in DocType 'Pick List'
+#. Label of the company (Link) field in DocType 'Purchase Receipt'
+#. Label of the company (Link) field in DocType 'Putaway Rule'
+#. Label of the company (Link) field in DocType 'Quality Inspection'
+#. Label of the company (Link) field in DocType 'Repost Item Valuation'
+#. Label of the company (Link) field in DocType 'Serial and Batch Bundle'
+#. Label of the company (Link) field in DocType 'Serial No'
+#. Option for the 'Pickup from' (Select) field in DocType 'Shipment'
+#. Label of the pickup_company (Link) field in DocType 'Shipment'
+#. Option for the 'Delivery to' (Select) field in DocType 'Shipment'
+#. Label of the delivery_company (Link) field in DocType 'Shipment'
+#. Label of the company (Link) field in DocType 'Stock Closing Balance'
+#. Label of the company (Link) field in DocType 'Stock Closing Entry'
+#. Label of the company (Link) field in DocType 'Stock Entry'
+#. Label of the company (Link) field in DocType 'Stock Ledger Entry'
+#. Label of the company (Link) field in DocType 'Stock Reconciliation'
+#. Label of the company (Link) field in DocType 'Stock Reservation Entry'
+#. Label of the company (Link) field in DocType 'Warehouse'
+#. Label of the company (Link) field in DocType 'Subcontracting Inward Order'
+#. Label of the company (Link) field in DocType 'Subcontracting Order'
+#. Label of the company (Link) field in DocType 'Subcontracting Receipt'
+#. Label of the company (Link) field in DocType 'Issue'
+#. Label of the company (Link) field in DocType 'Warranty Claim'
+#. Label of a Workspace Sidebar Item
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:81
+#: banking/src/pages/BankStatementImporter.tsx:72
+#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.js:8
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account_tree.js:12
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:9
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:161
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/party_account/party_account.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:24
+#: erpnext/accounts/report/account_balance/account_balance.js:8
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:8
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:8
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:10
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:8
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:8
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:8
+#: erpnext/accounts/report/balance_sheet/balance_sheet.html:128
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:8
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:7
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:72
+#: erpnext/accounts/report/cash_flow/cash_flow.html:128
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.js:8
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:8
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:8
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:8
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:50
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:8
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:7
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:8
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:9
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:8
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:192
+#: erpnext/accounts/report/general_ledger/general_ledger.js:8
+#: erpnext/accounts/report/general_ledger/general_ledger.py:59
+#: erpnext/accounts/report/gross_profit/gross_profit.js:8
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:8
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:40
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:230
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:28
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:277
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:8
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:8
+#: erpnext/accounts/report/pos_register/pos_register.js:8
+#: erpnext/accounts/report/pos_register/pos_register.py:107
+#: erpnext/accounts/report/pos_register/pos_register.py:223
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:128
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:8
+#: erpnext/accounts/report/purchase_register/purchase_register.js:33
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:7
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:22
+#: erpnext/accounts/report/sales_register/sales_register.js:33
+#: erpnext/accounts/report/share_ledger/share_ledger.py:58
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:8
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:8
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:8
+#: erpnext/accounts/report/trial_balance/trial_balance.html:133
+#: erpnext/accounts/report/trial_balance/trial_balance.js:8
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:8
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.js:8
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:8
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:466
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:549
+#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:8
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:134
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:8
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:49
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:8
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:314
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:8
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:266
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:7
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:8
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/crm/report/lead_details/lead_details.js:8
+#: erpnext/crm/report/lead_details/lead_details.py:52
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:8
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:58
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:51
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:133
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:52
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json
+#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:2
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:7
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:8
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:7
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:8
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:7
+#: erpnext/manufacturing/report/production_analytics/production_analytics.js:8
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:8
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:7
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:7
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/report/project_summary/project_summary.js:8
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:44
+#: erpnext/public/js/financial_statements.js:368
+#: erpnext/public/js/purchase_trends_filters.js:8
+#: erpnext/public/js/sales_trends_filters.js:51
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json
+#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json
+#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:27
+#: erpnext/regional/report/irs_1099/irs_1099.js:8
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.js:8
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.js:8
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json
+#: erpnext/selling/page/point_of_sale/pos_controller.js:72
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:36
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:16
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:8
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:8
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:115
+#: erpnext/selling/report/lost_quotations/lost_quotations.js:8
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:8
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:46
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:69
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:8
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:343
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:8
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:8
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:8
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:33
+#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:8
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:33
+#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:8
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:18
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/company/company_tree.js:10
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/department/department_tree.js:10
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee/employee_tree.js:8
+#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
+#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
+#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/item_default/item_default.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/doctype/warehouse/warehouse_tree.js:11
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:12
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:8
+#: erpnext/stock/report/available_serial_no/available_serial_no.js:8
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:203
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:8
+#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.js:7
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:8
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:8
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:7
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:145
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.js:7
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.js:8
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:137
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:8
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:8
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:8
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:114
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:8
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:191
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:9
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:75
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:41
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:8
+#: erpnext/stock/report/stock_analytics/stock_analytics.js:41
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:7
+#: erpnext/stock/report/stock_balance/stock_balance.js:8
+#: erpnext/stock/report/stock_balance/stock_balance.py:583
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
+#: erpnext/stock/report/total_stock_summary/total_stock_summary.js:17
+#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:29
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:8
+#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:8
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/support/report/issue_analytics/issue_analytics.js:8
+#: erpnext/support/report/issue_summary/issue_summary.js:8
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/organization.json
+msgid "Company"
+msgstr "회사"
+
+#: erpnext/public/js/setup_wizard.js:36
+msgid "Company Abbreviation"
+msgstr "회사 약칭"
+
+#: erpnext/public/js/utils/naming_series.js:101
+msgid "Company Abbreviation (requires ERPNext to be installed)"
+msgstr ""
+
+#: erpnext/public/js/setup_wizard.js:174
+msgid "Company Abbreviation cannot have more than 5 characters"
+msgstr ""
+
+#. Label of the account (Link) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Company Account"
+msgstr "회사 계정"
+
+#: erpnext/accounts/doctype/bank_account/bank_account.py:69
+msgid "Company Account is mandatory"
+msgstr ""
+
+#. Label of the company_address (Link) field in DocType 'Dunning'
+#. Label of the company_address_display (Text Editor) field in DocType 'POS
+#. Invoice'
+#. Label of the company_address (Link) field in DocType 'POS Profile'
+#. Label of the company_address_display (Text Editor) field in DocType 'Sales
+#. Invoice'
+#. Label of the company_address_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the company_address_display (Text Editor) field in DocType
+#. 'Quotation'
+#. Label of the company_address_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the company_address_display (Text Editor) field in DocType 'Sales
+#. Order'
+#. Label of the col_break46 (Section Break) field in DocType 'Sales Order'
+#. Label of the company_address_display (Text Editor) field in DocType
+#. 'Delivery Note'
+#. Label of the company_address_section (Section Break) field in DocType
+#. 'Delivery Note'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Company Address"
+msgstr "회사 주소"
+
+#. Label of the company_address_display (Text Editor) field in DocType
+#. 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "Company Address Display"
+msgstr "회사 주소 표시"
+
+#. Label of the company_address (Link) field in DocType 'POS Invoice'
+#. Label of the company_address (Link) field in DocType 'Sales Invoice'
+#. Label of the company_address (Link) field in DocType 'Quotation'
+#. Label of the company_address (Link) field in DocType 'Sales Order'
+#. Label of the company_address (Link) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Company Address Name"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4399
+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:4387
+msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
+msgstr "회사 주소가 누락되었습니다. 귀하에게는 회사 주소를 업데이트할 권한이 없습니다. 시스템 관리자에게 문의하십시오."
+
+#. Label of the bank_account (Link) field in DocType 'Payment Entry'
+#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Company Bank Account"
+msgstr "회사 은행 계좌"
+
+#. Label of the company_billing_address_section (Section Break) field in
+#. DocType 'Purchase Invoice'
+#. Label of the billing_address (Link) field in DocType 'Purchase Order'
+#. Label of the company_billing_address_section (Section Break) field in
+#. DocType 'Purchase Order'
+#. Label of the billing_address (Link) field in DocType 'Request for Quotation'
+#. Label of the company_billing_address_section (Section Break) field in
+#. DocType 'Supplier Quotation'
+#. Label of the billing_address (Link) field in DocType 'Supplier Quotation'
+#. Label of the billing_address_section (Section Break) field in DocType
+#. 'Purchase Receipt'
+#. Label of the billing_address (Link) field in DocType 'Subcontracting Order'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Company Billing Address"
+msgstr "회사 청구 주소"
+
+#. Label of the company_contact_person (Link) field in DocType 'POS Invoice'
+#. Label of the company_contact_person (Link) field in DocType 'Sales Invoice'
+#. Label of the company_contact_person (Link) field in DocType 'Quotation'
+#. Label of the company_contact_person (Link) field in DocType 'Sales Order'
+#. Label of the company_contact_person (Link) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Company Contact Person"
+msgstr "회사 담당자"
+
+#. Label of the company_description (Text Editor) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Company Description"
+msgstr "회사 소개"
+
+#. Label of the company_details_section (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Company Details"
+msgstr "회사 정보"
+
+#. Option for the 'Preferred Contact Email' (Select) field in DocType
+#. 'Employee'
+#. Label of the company_email (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Company Email"
+msgstr "회사 이메일"
+
+#. Label of the company_field (Data) field in DocType 'Transaction Deletion
+#. Record To Delete'
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Company Field"
+msgstr "회사 분야"
+
+#. Label of the company_logo (Attach Image) field in DocType 'Company'
+#: erpnext/public/js/print.js:80 erpnext/setup/doctype/company/company.json
+msgid "Company Logo"
+msgstr "회사 로고"
+
+#: erpnext/public/js/setup_wizard.js:77
+msgid "Company Name cannot be Company"
+msgstr ""
+
+#: erpnext/accounts/custom/address.py:36
+msgid "Company Not Linked"
+msgstr "회사와 연관 없음"
+
+#. Label of the shipping_address (Link) field in DocType 'Request for
+#. Quotation'
+#. Label of the shipping_address (Link) field in DocType 'Subcontracting Order'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Company Shipping Address"
+msgstr "회사 배송 주소"
+
+#. Label of the company_tax_id (Data) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Company Tax ID"
+msgstr "회사 세금 ID"
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:626
+msgid "Company and Posting Date is mandatory"
+msgstr ""
+
+#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:43
+msgid "Company and account filters not set!"
+msgstr "회사 및 계정 필터가 설정되지 않았습니다!"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
+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:834
+msgid "Company field is required"
+msgstr ""
+
+#: erpnext/accounts/dashboard_chart_source/account_balance_timeline/account_balance_timeline.py:45
+msgid "Company filter not set!"
+msgstr "회사 필터가 설정되지 않았습니다!"
+
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:77
+msgid "Company is mandatory"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_account/bank_account.py:66
+msgid "Company is mandatory for company account"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:395
+msgid "Company is mandatory for generating an invoice. Please set a default company in Global Defaults."
+msgstr "송장 발행을 위해서는 회사 정보 입력이 필수입니다. 글로벌 기본 설정에서 기본 회사 정보를 설정해 주세요."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:85
+msgid "Company is required"
+msgstr "회사 요구 사항"
+
+#. Description of the 'Company Field' (Data) field in DocType 'Transaction
+#. Deletion Record To Delete'
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
+msgstr "필터링에 사용되는 회사 링크 필드 이름 (선택 사항 - 모든 레코드를 삭제하려면 비워 두십시오)"
+
+#: erpnext/setup/doctype/company/company.js:238
+msgid "Company name not same"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:331
+msgid "Company of asset {0} and purchase document {1} doesn't matches."
+msgstr "자산 {0} 의 회사와 구매 문서 {1} 가 일치하지 않습니다."
+
+#: erpnext/setup/doctype/employee/employee.py:168
+msgid "Company or Personal Email is mandatory when 'Create User Automatically' is enabled"
+msgstr ""
+
+#. Description of the 'Registration Details' (Code) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Company registration numbers for your reference. Tax numbers etc."
+msgstr ""
+
+#. Description of the 'Represents Company' (Link) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Company which internal customer represents"
+msgstr "내부 고객이 대표하는 회사"
+
+#. Description of the 'Represents Company' (Link) field in DocType 'Delivery
+#. Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Company which internal customer represents."
+msgstr "내부 고객이 대표하는 회사."
+
+#. Description of the 'Represents Company' (Link) field in DocType 'Purchase
+#. Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Company which internal supplier represents"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:74
+msgid "Company {0} added multiple times"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:519
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
+msgid "Company {0} does not exist"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
+msgid "Company {0} is added more than once"
+msgstr ""
+
+#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.py:33
+msgid "Company {0} is not in South Africa."
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/taxes_setup.py:14
+msgid "Company {} does not exist yet. Taxes setup aborted."
+msgstr "회사 {}가 아직 존재하지 않습니다. 세금 설정이 중단되었습니다."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:576
+msgid "Company {} does not match with POS Profile Company {}"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the competitor (Link) field in DocType 'Competitor Detail'
+#: erpnext/crm/doctype/competitor/competitor.json
+#: erpnext/crm/doctype/competitor_detail/competitor_detail.json
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:24
+msgid "Competitor"
+msgstr "경쟁자"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/competitor_detail/competitor_detail.json
+msgid "Competitor Detail"
+msgstr ""
+
+#. Label of the competitor_name (Data) field in DocType 'Competitor'
+#: erpnext/crm/doctype/competitor/competitor.json
+msgid "Competitor Name"
+msgstr ""
+
+#. Label of the competitors (Table MultiSelect) field in DocType 'Opportunity'
+#. Label of the competitors (Table MultiSelect) field in DocType 'Quotation'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/public/js/utils/sales_common.js:606
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Competitors"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
+#: erpnext/manufacturing/doctype/workstation/workstation.js:151
+msgid "Complete Job"
+msgstr "작업 완료"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:857
+msgid "Complete Match"
+msgstr "완전 매치"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:44
+msgid "Complete Order"
+msgstr "주문 완료"
+
+#. Label of the completed_by (Link) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Completed By"
+msgstr ""
+
+#. Label of the completed_on (Date) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Completed On"
+msgstr "완료일"
+
+#: erpnext/projects/doctype/task/task.py:187
+msgid "Completed On cannot be greater than Today"
+msgstr ""
+
+#: erpnext/manufacturing/dashboard_fixtures.py:76
+msgid "Completed Operation"
+msgstr "작전 완료"
+
+#. Label of a chart in the Projects Workspace
+#: erpnext/projects/workspace/projects/projects.json
+msgid "Completed Projects"
+msgstr "완료된 프로젝트"
+
+#. Label of the completed_qty (Float) field in DocType 'Job Card Operation'
+#. Label of the completed_qty (Float) field in DocType 'Job Card Time Log'
+#. Label of the completed_qty (Float) field in DocType 'Work Order Operation'
+#. Label of the ordered_qty (Float) field in DocType 'Material Request Item'
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Completed Qty"
+msgstr "완료된 수량"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
+msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
+#: erpnext/manufacturing/doctype/workstation/workstation.js:296
+msgid "Completed Quantity"
+msgstr "완료된 수량"
+
+#: erpnext/projects/report/project_summary/project_summary.py:136
+#: erpnext/public/js/templates/crm_activities.html:64
+msgid "Completed Tasks"
+msgstr "완료된 작업"
+
+#. Label of the completed_time (Data) field in DocType 'Job Card Operation'
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+msgid "Completed Time"
+msgstr "완료 시간"
+
+#. Name of a report
+#: erpnext/manufacturing/report/completed_work_orders/completed_work_orders.json
+msgid "Completed Work Orders"
+msgstr "완료된 작업 지시서"
+
+#: erpnext/projects/report/project_summary/project_summary.py:73
+msgid "Completion"
+msgstr "완성"
+
+#. Label of the completion_by (Date) field in DocType 'Quality Action
+#. Resolution'
+#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
+msgid "Completion By"
+msgstr "완료 기한"
+
+#. Label of the completion_date (Date) field in DocType 'Asset Maintenance Log'
+#. Label of the completion_date (Datetime) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:48
+msgid "Completion Date"
+msgstr "완료일"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:83
+msgid "Completion Date can not be before Failure Date. Please adjust the dates accordingly."
+msgstr ""
+
+#. Label of the completion_status (Select) field in DocType 'Maintenance
+#. Schedule Detail'
+#. Label of the completion_status (Select) field in DocType 'Maintenance Visit'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Completion Status"
+msgstr "완료 상태"
+
+#. Label of the accounts (Table) field in DocType 'Workstation Operating
+#. Component'
+#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json
+msgid "Component Expense Account"
+msgstr "구성 요소 비용 계정"
+
+#. Label of the component_name (Data) field in DocType 'Workstation Operating
+#. Component'
+#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json
+msgid "Component Name"
+msgstr "구성 요소 이름"
+
+#. Label of the items (Table) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Components"
+msgstr "구성 요소"
+
+#. Option for the 'Asset Type' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Composite Asset"
+msgstr "복합 자산"
+
+#. Option for the 'Asset Type' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Composite Component"
+msgstr "복합 구성 요소"
+
+#. Label of the comprehensive_insurance (Data) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Comprehensive Insurance"
+msgstr "종합 보험"
+
+#. Option for the 'Call Receiving Device' (Select) field in DocType 'Voice Call
+#. Settings'
+#: erpnext/setup/setup_wizard/data/industry_type.txt:13
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Computer"
+msgstr "컴퓨터"
+
+#. Label of the condition (Code) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Conditional Rule"
+msgstr "조건부 규칙"
+
+#. Label of the conditional_rule_examples_section (Section Break) field in
+#. DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Conditional Rule Examples"
+msgstr "조건 규칙 예시"
+
+#. Description of the 'Mixed Conditions' (Check) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Conditions will be applied on all the selected items combined. "
+msgstr "선택하신 모든 품목에 조건이 적용됩니다. "
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:395
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:413
+msgid "Configure Accounts"
+msgstr "계정 구성"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:578
+msgid "Configure Accounts for Bank Entry"
+msgstr "은행 입금을 위한 계정 구성"
+
+#: banking/src/components/features/BankReconciliation/BankPicker.tsx:69
+msgid "Configure Bank Accounts"
+msgstr "은행 계좌 설정"
+
+#. Label of an action in the Onboarding Step 'Review Chart of Accounts'
+#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json
+msgid "Configure Chart of Accounts"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:56
+msgid "Configure Product Assembly"
+msgstr "제품 조립 구성"
+
+#. Label of the configure (Button) field in DocType 'Buying Settings'
+#. Label of the configure (Button) field in DocType 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Configure Series"
+msgstr "시리즈 구성"
+
+#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:21
+#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:27
+msgid "Configure match filters for vouchers"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:202
+msgid "Configure rules to save time when reconciling transactions."
+msgstr "거래 내역 대조 시 시간을 절약할 수 있도록 규칙을 설정하세요."
+
+#: banking/src/components/features/Settings/Preferences.tsx:44
+msgid "Configure settings for the banking module"
+msgstr ""
+
+#. Description of the 'Action if same rate is not maintained' (Select) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Configure the action to stop the transaction or just warn if the same rate is not maintained."
+msgstr "동일한 환율이 유지되지 않을 경우 거래를 중지하거나 경고만 표시하도록 동작을 구성하십시오."
+
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:69
+msgid "Configure the default Price List when creating a new Purchase transaction. Item prices will be fetched from this Price List."
+msgstr "새 구매 거래를 생성할 때 기본 가격표를 구성하십시오. 품목 가격은 이 가격표에서 가져옵니다."
+
+#. Label of the confirm_before_resetting_posting_date (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Confirm before resetting posting date"
+msgstr ""
+
+#. Label of the final_confirmation_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Confirmation Date"
+msgstr "확인 날짜"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:271
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:289
+msgid "Conflicting Transactions"
+msgstr "상충되는 거래"
+
+#. Label of the connection_tab (Tab Break) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Connection"
+msgstr "연결"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:176
+msgid "Consider Accounting Dimensions"
+msgstr ""
+
+#. Label of the consider_minimum_order_qty (Check) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Consider Minimum Order Qty"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
+msgid "Consider Process Loss"
+msgstr ""
+
+#. Label of the skip_available_sub_assembly_item (Check) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Consider Projected Qty in Calculation"
+msgstr ""
+
+#. Label of the ignore_existing_ordered_qty (Check) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Consider Projected Qty in Calculation (RM)"
+msgstr ""
+
+#. Label of the consider_rejected_warehouses (Check) field in DocType 'Pick
+#. List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Consider Rejected Warehouses"
+msgstr "거부된 창고를 고려해 보세요"
+
+#. Label of the category (Select) field in DocType 'Purchase Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+msgid "Consider Tax or Charge for"
+msgstr ""
+
+#. Label of the apply_tds (Check) field in DocType 'Payment Entry'
+#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice'
+#. Label of the apply_tds (Check) field in DocType 'Purchase Invoice Item'
+#. Label of the apply_tds (Check) field in DocType 'Sales Invoice'
+#. Label of the apply_tds (Check) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Consider for Tax Withholding"
+msgstr ""
+
+#. Label of the apply_tds (Check) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Consider for Tax Withholding "
+msgstr ""
+
+#. Label of the included_in_paid_amount (Check) field in DocType 'Advance Taxes
+#. and Charges'
+#. Label of the included_in_paid_amount (Check) field in DocType 'Purchase
+#. Taxes and Charges'
+#. Label of the included_in_paid_amount (Check) field in DocType 'Sales Taxes
+#. and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Considered In Paid Amount"
+msgstr "지불 금액에 포함됨"
+
+#. Label of the combine_items (Check) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Consolidate Sales Order Items"
+msgstr "판매 주문 품목 통합"
+
+#. Label of the combine_sub_items (Check) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Consolidate Sub Assembly Items"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+msgid "Consolidated"
+msgstr "통합"
+
+#. Label of the consolidated_credit_note (Link) field in DocType 'POS Invoice
+#. Merge Log'
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+msgid "Consolidated Credit Note"
+msgstr "통합 신용장"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+msgid "Consolidated Financial Statement"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Consolidated Report"
+msgstr "통합 보고서"
+
+#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice'
+#. Label of the consolidated_invoice (Link) field in DocType 'POS Invoice Merge
+#. Log'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:560
+msgid "Consolidated Sales Invoice"
+msgstr "통합 판매 송장"
+
+#. Name of a report
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.json
+msgid "Consolidated Trial Balance"
+msgstr ""
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:71
+msgid "Consolidated Trial Balance can be generated for Companies having same root Company."
+msgstr ""
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:157
+msgid "Consolidated Trial balance could not be generated as Exchange Rate from {0} to {1} is not available for {2}."
+msgstr ""
+
+#. Option for the 'Lead Type' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/setup/setup_wizard/data/designation.txt:8
+msgid "Consultant"
+msgstr "컨설턴트"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:14
+msgid "Consulting"
+msgstr "컨설팅"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:64
+msgid "Consumable"
+msgstr "소모품"
+
+#: erpnext/patches/v16_0/make_workstation_operating_components.py:48
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:315
+msgid "Consumables"
+msgstr "소모품"
+
+#. Label of the consume_components_section (Section Break) field in DocType
+#. 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Consume Components"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Serial No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:60
+msgid "Consumed"
+msgstr "소비됨"
+
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:62
+msgid "Consumed Amount"
+msgstr "섭취량"
+
+#. Label of the asset_items_total (Currency) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Consumed Asset Total Value"
+msgstr "소모된 자산 총 가치"
+
+#. Label of the section_break_26 (Section Break) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Consumed Assets"
+msgstr "소모된 자산"
+
+#. Label of the supplied_items (Table) field in DocType 'Purchase Receipt'
+#. Label of the supplied_items (Table) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Consumed Items"
+msgstr "소비된 품목"
+
+#. Label of the consumed_items_cost (Currency) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Consumed Items Cost"
+msgstr "소비 품목 비용"
+
+#. Label of the consumed_qty (Float) field in DocType 'Job Card Item'
+#. Label of the consumed_qty (Float) field in DocType 'Work Order Item'
+#. Label of the consumed_qty (Float) field in DocType 'Stock Reservation Entry'
+#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the consumed_qty (Float) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:145
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:59
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:146
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:61
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Consumed Qty"
+msgstr "소비량"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
+msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
+msgstr ""
+
+#. Label of the consumed_quantity (Data) field in DocType 'Asset Repair
+#. Consumed Item'
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+msgid "Consumed Quantity"
+msgstr "소비량"
+
+#. Label of the section_break_16 (Section Break) field in DocType 'Asset
+#. Capitalization'
+#. Label of the stock_consumption_details_section (Section Break) field in
+#. DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Consumed Stock Items"
+msgstr "소모된 재고 품목"
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:285
+msgid "Consumed Stock Items, Consumed Asset Items or Consumed Service Items is mandatory for Capitalization"
+msgstr ""
+
+#. Label of the stock_items_total (Currency) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Consumed Stock Total Value"
+msgstr "소비된 재고 총액"
+
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
+msgid "Consumed quantity of item {0} exceeds transferred quantity."
+msgstr "소비된 품목 {0} 의 수량이 전송된 수량을 초과했습니다."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:15
+msgid "Consumer Products"
+msgstr "소비자 제품"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:198
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:101
+msgid "Consumption Rate"
+msgstr ""
+
+#. Label of the contact_desc (HTML) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Contact Desc"
+msgstr "연락처 설명"
+
+#. Label of the contact_html (HTML) field in DocType 'Bank'
+#. Label of the contact_html (HTML) field in DocType 'Bank Account'
+#. Label of the contact_html (HTML) field in DocType 'Shareholder'
+#. Label of the contact_html (HTML) field in DocType 'Supplier'
+#. Label of the contact_html (HTML) field in DocType 'Lead'
+#. Label of the contact_html (HTML) field in DocType 'Opportunity'
+#. Label of the contact_html (HTML) field in DocType 'Prospect'
+#. Label of the contact_html (HTML) field in DocType 'Customer'
+#. Label of the contact_html (HTML) field in DocType 'Sales Partner'
+#. Label of the contact_html (HTML) field in DocType 'Manufacturer'
+#. Label of the contact_html (HTML) field in DocType 'Warehouse'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Contact HTML"
+msgstr "HTML 문의하기"
+
+#. Label of the contact_info_tab (Section Break) field in DocType 'Lead'
+#. Label of the contact_info (Section Break) field in DocType 'Maintenance
+#. Schedule'
+#. Label of the contact_info_section (Section Break) field in DocType
+#. 'Maintenance Visit'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Contact Info"
+msgstr "연락처 정보"
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Delivery
+#. Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Contact Information"
+msgstr "연락처 정보"
+
+#. Label of the contact_list (Code) field in DocType 'Shareholder'
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+msgid "Contact List"
+msgstr "연락처 목록"
+
+#. Label of the contact_mobile (Data) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Contact Mobile"
+msgstr "연락처 모바일"
+
+#. Label of the contact_mobile (Small Text) field in DocType 'Purchase Order'
+#. Label of the contact_mobile (Small Text) field in DocType 'Subcontracting
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Contact Mobile No"
+msgstr ""
+
+#. Label of the contact_display (Small Text) field in DocType 'Purchase Order'
+#. Label of the contact (Link) field in DocType 'Delivery Stop'
+#. Label of the contact_display (Small Text) field in DocType 'Subcontracting
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Contact Name"
+msgstr "연락처 이름"
+
+#. Label of the contact_no (Data) field in DocType 'Sales Team'
+#: erpnext/selling/doctype/sales_team/sales_team.json
+msgid "Contact No."
+msgstr ""
+
+#. Label of the contact_person (Link) field in DocType 'Dunning'
+#. Label of the contact_person (Link) field in DocType 'POS Invoice'
+#. Label of the contact_person (Link) field in DocType 'Purchase Invoice'
+#. Label of the contact_person (Link) field in DocType 'Sales Invoice'
+#. Label of the contact_person (Link) field in DocType 'Supplier Quotation'
+#. Label of the contact_person (Link) field in DocType 'Opportunity'
+#. Label of the contact_person (Link) field in DocType 'Prospect Opportunity'
+#. Label of the contact_person (Link) field in DocType 'Maintenance Schedule'
+#. Label of the contact_person (Link) field in DocType 'Maintenance Visit'
+#. Label of the contact_person (Link) field in DocType 'Installation Note'
+#. Label of the contact_person (Link) field in DocType 'Quotation'
+#. Label of the contact_person (Link) field in DocType 'Sales Order'
+#. Label of the contact_person (Link) field in DocType 'Delivery Note'
+#. Label of the contact_person (Link) field in DocType 'Purchase Receipt'
+#. Label of the contact_person (Link) field in DocType 'Subcontracting Receipt'
+#. Label of the contact_person (Link) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Contact Person"
+msgstr "담당자"
+
+#: erpnext/controllers/accounts_controller.py:587
+msgid "Contact Person does not belong to the {0}"
+msgstr ""
+
+#: erpnext/accounts/letterhead/company_letterhead.html:101
+#: erpnext/accounts/letterhead/company_letterhead_grey.html:119
+msgid "Contact:"
+msgstr "연락하다:"
+
+#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule
+#. Description Conditions'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:200
+#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
+msgid "Contains"
+msgstr "포함됨"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Contra Entry"
+msgstr "반대 입장"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "Contract"
+msgstr "계약"
+
+#. Label of the sb_contract (Section Break) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Contract Details"
+msgstr "계약 세부 정보"
+
+#. Label of the contract_end_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Contract End Date"
+msgstr "계약 종료일"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json
+msgid "Contract Fulfilment Checklist"
+msgstr ""
+
+#. Label of the sb_terms (Section Break) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Contract Period"
+msgstr "계약 기간"
+
+#. Label of the contract_template (Link) field in DocType 'Contract'
+#. Name of a DocType
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Contract Template"
+msgstr "계약서 양식"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json
+msgid "Contract Template Fulfilment Terms"
+msgstr "계약서 양식 이행 조건"
+
+#. Label of the contract_template_help (HTML) field in DocType 'Contract
+#. Template'
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Contract Template Help"
+msgstr "계약서 양식 도움말"
+
+#. Label of the contract_terms (Text Editor) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Contract Terms"
+msgstr "계약 조건"
+
+#. Label of the contract_terms (Text Editor) field in DocType 'Contract
+#. Template'
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Contract Terms and Conditions"
+msgstr "계약 조건"
+
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:75
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:122
+msgid "Contribution %"
+msgstr "기부금 %"
+
+#. Label of the allocated_percentage (Float) field in DocType 'Sales Team'
+#: erpnext/selling/doctype/sales_team/sales_team.json
+msgid "Contribution (%)"
+msgstr "기부금 (%)"
+
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:87
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:130
+msgid "Contribution Amount"
+msgstr ""
+
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:124
+msgid "Contribution Qty"
+msgstr "기여 수량"
+
+#. Label of the allocated_amount (Currency) field in DocType 'Sales Team'
+#: erpnext/selling/doctype/sales_team/sales_team.json
+msgid "Contribution to Net Total"
+msgstr "순 총액에 대한 기여도"
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Control Action"
+msgstr "제어 동작"
+
+#. Label of the control_action_for_cumulative_expense_section (Section Break)
+#. field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Control Action for Cumulative Expense"
+msgstr "누적 비용에 대한 통제 조치"
+
+#. Label of the control_historical_stock_transactions_section (Section Break)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Control Historical Stock Transactions"
+msgstr "과거 주식 거래 내역을 관리하세요"
+
+#. Description of the 'Based On' (Select) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
+msgstr "'제조' 재고 입력 시 원자재 소비 방식을 제어합니다."
+
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
+#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
+#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
+#. Item Supplied'
+#. Label of the conversion_factor (Float) field in DocType 'BOM Creator Item'
+#. Label of the conversion_factor (Float) field in DocType 'BOM Item'
+#. Label of the conversion_factor (Float) field in DocType 'BOM Secondary Item'
+#. Label of the conversion_factor (Float) field in DocType 'Material Request
+#. Plan Item'
+#. Label of the conversion_factor (Float) field in DocType 'Delivery Schedule
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Packed Item'
+#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Putaway Rule'
+#. Label of the conversion_factor (Float) field in DocType 'Stock Entry Detail'
+#. Label of the conversion_factor (Float) field in DocType 'UOM Conversion
+#. Detail'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting BOM'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting
+#. Inward Order Item'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting
+#. Order Supplied Item'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting
+#. Receipt Item'
+#. Label of the conversion_factor (Float) field in DocType 'Subcontracting
+#. Receipt Supplied Item'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/public/js/utils.js:897
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Conversion Factor"
+msgstr ""
+
+#. Label of the conversion_rate (Float) field in DocType 'Dunning'
+#. Label of the conversion_rate (Float) field in DocType 'BOM'
+#. Label of the conversion_rate (Float) field in DocType 'BOM Creator'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:93
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Conversion Rate"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:461
+msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:127
+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:2971
+msgid "Conversion rate cannot be 0"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2978
+msgid "Conversion rate is 1.00, but document currency is different from company currency"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2974
+msgid "Conversion rate must be 1.00 if document currency is same as company currency"
+msgstr ""
+
+#. Label of the clean_description_html (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Convert Item Description to Clean HTML in Transactions"
+msgstr "거래 내역에서 품목 설명을 깔끔한 HTML로 변환"
+
+#: erpnext/accounts/doctype/account/account.js:124
+#: erpnext/accounts/doctype/cost_center/cost_center.js:123
+msgid "Convert to Group"
+msgstr "그룹으로 변환"
+
+#: erpnext/stock/doctype/warehouse/warehouse.js:53
+msgctxt "Warehouse"
+msgid "Convert to Group"
+msgstr "그룹으로 변환"
+
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.js:10
+msgid "Convert to Item Based Reposting"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.js:52
+msgctxt "Warehouse"
+msgid "Convert to Ledger"
+msgstr "원장으로 변환"
+
+#: erpnext/accounts/doctype/account/account.js:96
+#: erpnext/accounts/doctype/cost_center/cost_center.js:121
+msgid "Convert to Non-Group"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#. Option for the 'Status' (Select) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/lead_details/lead_details.js:40
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:58
+msgid "Converted"
+msgstr "변환됨"
+
+#. Label of the copied_from (Data) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Copied From"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:83
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:76
+msgid "Copied to clipboard"
+msgstr ""
+
+#. Label of the copy_attachments_to_transaction (Check) field in DocType 'Terms
+#. and Conditions'
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+msgid "Copy Attachments to Transaction"
+msgstr "거래에 첨부 파일을 복사하세요"
+
+#. Label of the copy_fields_to_variant (Section Break) field in DocType 'Item
+#. Variant Settings'
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Copy Fields to Variant"
+msgstr "필드를 변형에 복사"
+
+#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality
+#. Action'
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+msgid "Corrective"
+msgstr "교정"
+
+#. Label of the corrective_action (Text Editor) field in DocType 'Non
+#. Conformance'
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+msgid "Corrective Action"
+msgstr "시정 조치"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
+msgid "Corrective Job Card"
+msgstr "시정 작업 카드"
+
+#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
+#. Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Corrective Operation"
+msgstr "교정 작업"
+
+#. Label of the corrective_operation_cost (Currency) field in DocType 'Work
+#. Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Corrective Operation Cost"
+msgstr "시정 조치 비용"
+
+#. Label of the corrective_preventive (Select) field in DocType 'Quality
+#. Action'
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+msgid "Corrective/Preventive"
+msgstr "교정/예방"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:16
+msgid "Cosmetics"
+msgstr "화장품"
+
+#. Label of the cost (Currency) field in DocType 'Subscription Plan'
+#. Label of the cost (Currency) field in DocType 'BOM Secondary Item'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+msgid "Cost"
+msgstr "비용"
+
+#. Label of the cost_allocation (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Cost Allocation"
+msgstr "비용 배분"
+
+#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+msgid "Cost Allocation %"
+msgstr "비용 배분 비율"
+
+#. Label of the cost_allocation__process_loss_section (Section Break) field in
+#. DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Cost Allocation / Process Loss"
+msgstr "비용 배분 / 프로세스 손실"
+
+#. Label of the cost_center (Link) field in DocType 'Account Closing Balance'
+#. Label of the cost_center (Link) field in DocType 'Advance Taxes and Charges'
+#. Option for the 'Budget Against' (Select) field in DocType 'Budget'
+#. Label of the cost_center (Link) field in DocType 'Budget'
+#. Name of a DocType
+#. Label of the cost_center (Link) field in DocType 'Cost Center Allocation
+#. Percentage'
+#. Label of the cost_center (Link) field in DocType 'Dunning'
+#. Label of the cost_center (Link) field in DocType 'Dunning Type'
+#. Label of the cost_center (Link) field in DocType 'GL Entry'
+#. Label of the cost_center (Link) field in DocType 'Journal Entry Account'
+#. Label of the cost_center (Link) field in DocType 'Journal Entry Template
+#. Account'
+#. Label of the cost_center (Link) field in DocType 'Loyalty Program'
+#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation
+#. Tool'
+#. Label of the cost_center (Link) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#. Label of the cost_center (Link) field in DocType 'Payment Entry'
+#. Label of the cost_center (Link) field in DocType 'Payment Entry Deduction'
+#. Label of the cost_center (Link) field in DocType 'Payment Ledger Entry'
+#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation'
+#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the cost_center (Link) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the cost_center (Link) field in DocType 'Payment Request'
+#. Label of the cost_center (Link) field in DocType 'POS Invoice'
+#. Label of the cost_center (Link) field in DocType 'POS Invoice Item'
+#. Label of the cost_center (Link) field in DocType 'POS Profile'
+#. Label of the cost_center (Link) field in DocType 'Process Payment
+#. Reconciliation'
+#. Label of the cost_center (Table MultiSelect) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the cost_center_name (Link) field in DocType 'PSOA Cost Center'
+#. Label of the cost_center (Link) field in DocType 'Purchase Invoice'
+#. Label of the cost_center (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the cost_center (Link) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the cost_center (Link) field in DocType 'Sales Invoice'
+#. Label of the cost_center (Link) field in DocType 'Sales Invoice Item'
+#. Label of the cost_center (Link) field in DocType 'Sales Taxes and Charges'
+#. Label of the cost_center (Link) field in DocType 'Shipping Rule'
+#. Label of the cost_center (Link) field in DocType 'Subscription'
+#. Label of the cost_center (Link) field in DocType 'Subscription Plan'
+#. Label of the cost_center (Link) field in DocType 'Asset'
+#. Label of the cost_center (Link) field in DocType 'Asset Capitalization'
+#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Asset
+#. Item'
+#. Label of the cost_center (Link) field in DocType 'Asset Capitalization
+#. Service Item'
+#. Label of the cost_center (Link) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the cost_center (Link) field in DocType 'Asset Repair'
+#. Label of the cost_center (Link) field in DocType 'Asset Value Adjustment'
+#. Label of the cost_center (Link) field in DocType 'Purchase Order'
+#. Label of the cost_center (Link) field in DocType 'Purchase Order Item'
+#. Label of the cost_center (Link) field in DocType 'Supplier Quotation'
+#. Label of the cost_center (Link) field in DocType 'Supplier Quotation Item'
+#. Label of the cost_center (Link) field in DocType 'Sales Order'
+#. Label of the cost_center (Link) field in DocType 'Sales Order Item'
+#. Label of the cost_center (Link) field in DocType 'Delivery Note'
+#. Label of the cost_center (Link) field in DocType 'Delivery Note Item'
+#. Label of the cost_center (Link) field in DocType 'Landed Cost Item'
+#. Label of the cost_center (Link) field in DocType 'Material Request Item'
+#. Label of the cost_center (Link) field in DocType 'Purchase Receipt'
+#. Label of the cost_center (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the cost_center (Link) field in DocType 'Stock Entry'
+#. Label of the cost_center (Link) field in DocType 'Stock Entry Detail'
+#. Label of the cost_center (Link) field in DocType 'Stock Reconciliation'
+#. Label of the cost_center (Link) field in DocType 'Subcontracting Order'
+#. Label of the cost_center (Link) field in DocType 'Subcontracting Order Item'
+#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt'
+#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt
+#. Item'
+#. Label of the cost_center (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#. Label of a Workspace Sidebar Item
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:612
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:671
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1202
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1246
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:593
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:673
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:28
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:47
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:30
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
+#: 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:204
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:98
+#: erpnext/accounts/report/general_ledger/general_ledger.js:154
+#: erpnext/accounts/report/general_ledger/general_ledger.py:800
+#: erpnext/accounts/report/gross_profit/gross_profit.js:68
+#: erpnext/accounts/report/gross_profit/gross_profit.py:395
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:305
+#: erpnext/accounts/report/purchase_register/purchase_register.js:46
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:29
+#: erpnext/accounts/report/sales_register/sales_register.js:52
+#: erpnext/accounts/report/sales_register/sales_register.py:252
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:79
+#: erpnext/accounts/report/trial_balance/trial_balance.js:49
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:29
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:527
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.js:15
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:32
+#: erpnext/public/js/financial_statements.js:462
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/workspace_sidebar/budget.json
+msgid "Cost Center"
+msgstr "비용 센터"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/budget.json
+msgid "Cost Center Allocation"
+msgstr "비용 센터 배분"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json
+msgid "Cost Center Allocation Percentage"
+msgstr "원가 센터 배분 비율"
+
+#. Label of the allocation_percentages (Table) field in DocType 'Cost Center
+#. Allocation'
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json
+msgid "Cost Center Allocation Percentages"
+msgstr "비용 센터 배분 비율"
+
+#. Label of the cost_center_name (Data) field in DocType 'Cost Center'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+msgid "Cost Center Name"
+msgstr "비용 센터 이름"
+
+#. Label of the cost_center_number (Data) field in DocType 'Cost Center'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:38
+msgid "Cost Center Number"
+msgstr "비용 센터 번호"
+
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Cost Center and Budgeting"
+msgstr "비용 센터 및 예산 책정"
+
+#: erpnext/public/js/utils/sales_common.js:540
+msgid "Cost Center for Item rows has been updated to {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:75
+msgid "Cost Center is a part of Cost Center Allocation, hence cannot be converted to a group"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1243
+msgid "Cost Center is required"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1437
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:907
+msgid "Cost Center is required in row {0} in Taxes table for type {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:72
+msgid "Cost Center with Allocation records can not be converted to a group"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:78
+msgid "Cost Center with existing transactions can not be converted to group"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:63
+msgid "Cost Center with existing transactions can not be converted to ledger"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:152
+msgid "Cost Center {0} cannot be used for allocation as it is used as main cost center in other allocation record."
+msgstr "원가 센터 {0} 는 다른 배분 기록에서 기본 원가 센터로 사용되고 있으므로 배분에 사용할 수 없습니다."
+
+#: erpnext/assets/doctype/asset/asset.py:359
+msgid "Cost Center {} doesn't belong to Company {}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:366
+msgid "Cost Center {} is a group cost center and group cost centers cannot be used in transactions"
+msgstr ""
+
+#: erpnext/accounts/report/financial_statements.py:658
+msgid "Cost Center: {0} does not exist"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.js:129
+msgid "Cost Centers"
+msgstr "비용 센터"
+
+#. Label of the currency_detail (Section Break) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Cost Configuration"
+msgstr "비용 구성"
+
+#. Label of the cost_per_unit (Float) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Cost Per Unit"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:443
+msgid "Cost allocation between finished goods and secondary items should equal 100%"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:8
+msgid "Cost and Freight"
+msgstr ""
+
+#. Description of the 'Default Buying Cost Center' (Link) field in DocType
+#. 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Cost center used for tracking purchase expenses for this item"
+msgstr ""
+
+#. Description of the 'Default Selling Cost Center' (Link) field in DocType
+#. 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Cost center used for tracking sales revenue for this item"
+msgstr ""
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:41
+msgid "Cost of Delivered Items"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the cost_of_good_sold_section (Section Break) field in DocType
+#. 'Item Default'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/report/account_balance/account_balance.js:43
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Cost of Goods Sold"
+msgstr ""
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
+msgid "Cost of Issued Items"
+msgstr ""
+
+#. Name of a report
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.json
+msgid "Cost of Poor Quality Report"
+msgstr "품질이 낮은 보고서의 비용"
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:39
+msgid "Cost of Purchased Items"
+msgstr "구매 품목 비용"
+
+#: erpnext/config/projects.py:67
+msgid "Cost of various activities"
+msgstr "다양한 활동의 비용"
+
+#. Label of the ctc (Currency) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Cost to Company (CTC)"
+msgstr "회사 부담 비용(CTC)"
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:9
+msgid "Cost, Insurance and Freight"
+msgstr "비용, 보험 및 운송"
+
+#. Label of the costing (Tab Break) field in DocType 'BOM'
+#. Label of the currency_detail (Section Break) field in DocType 'BOM Creator'
+#. Label of the costing_section (Section Break) field in DocType 'BOM
+#. Operation'
+#. Label of the costing_tab (Tab Break) field in DocType 'Project'
+#. Label of the sb_costing (Section Break) field in DocType 'Task'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Costing"
+msgstr "비용"
+
+#. Label of the costing_amount (Currency) field in DocType 'Timesheet Detail'
+#. Label of the base_costing_amount (Currency) field in DocType 'Timesheet
+#. Detail'
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Costing Amount"
+msgstr "비용 금액"
+
+#. Label of the costing_detail (Section Break) field in DocType 'BOM Creator'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Costing Details"
+msgstr "비용 세부 정보"
+
+#. Label of the costing_rate (Currency) field in DocType 'Activity Cost'
+#. Label of the costing_rate (Currency) field in DocType 'Timesheet Detail'
+#. Label of the base_costing_rate (Currency) field in DocType 'Timesheet
+#. Detail'
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Costing Rate"
+msgstr "비용 비율"
+
+#. Label of the project_details (Section Break) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Costing and Billing"
+msgstr "원가 계산 및 청구"
+
+#: erpnext/projects/doctype/project/project.js:140
+msgid "Costing and Billing fields has been updated"
+msgstr ""
+
+#: erpnext/setup/demo.py:78
+msgid "Could Not Delete Demo Data"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:631
+msgid "Could not auto create Customer due to the following missing mandatory field(s):"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
+msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:353
+msgid "Could not detect the Company for updating Bank Accounts"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:128
+msgid "Could not find a suitable shift to match the difference: {0}"
+msgstr "차이에 맞는 적절한 시프트를 찾을 수 없습니다: {0}"
+
+#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:46
+#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.py:50
+msgid "Could not find path for "
+msgstr "경로를 찾을 수 없습니다 "
+
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.py:125
+#: erpnext/accounts/report/financial_statements.py:242
+msgid "Could not retrieve information for {0}."
+msgstr "{0}에 대한 정보를 가져올 수 없습니다."
+
+#: 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 "{0}에 대한 기준 점수 함수를 풀 수 없습니다. 수식이 유효한지 확인하십시오."
+
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:100
+msgid "Could not solve weighted score function. Make sure the formula is valid."
+msgstr "가중 점수 함수를 풀 수 없습니다. 수식이 유효한지 확인하십시오."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Coulomb"
+msgstr ""
+
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:419
+msgid "Country Code in File does not match with country code set up in the system"
+msgstr ""
+
+#. Label of the country_of_origin (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Country of Origin"
+msgstr "원산지"
+
+#. Name of a DocType
+#. Label of the coupon_code (Data) field in DocType 'Coupon Code'
+#. Label of the coupon_code (Link) field in DocType 'POS Invoice'
+#. Label of the coupon_code (Link) field in DocType 'Sales Invoice'
+#. Label of the coupon_code (Link) field in DocType 'Quotation'
+#. Label of the coupon_code (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Coupon Code"
+msgstr "쿠폰 코드"
+
+#. Label of the coupon_code_based (Check) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Coupon Code Based"
+msgstr "쿠폰 코드 기반"
+
+#. Label of the description (Text Editor) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Coupon Description"
+msgstr "쿠폰 설명"
+
+#. Label of the coupon_name (Data) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Coupon Name"
+msgstr "쿠폰 이름"
+
+#. Label of the coupon_type (Select) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Coupon Type"
+msgstr "쿠폰 종류"
+
+#: erpnext/accounts/doctype/account/account_tree.js:63
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:84
+#: erpnext/templates/form_grid/bank_reconciliation_grid.html:16
+msgid "Cr"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Asset Category'
+#: erpnext/assets/onboarding_step/create_asset_category/create_asset_category.json
+msgid "Create Asset Category"
+msgstr "자산 카테고리 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Asset Item'
+#: erpnext/assets/onboarding_step/create_asset_item/create_asset_item.json
+msgid "Create Asset Item"
+msgstr "자산 항목 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Asset Location'
+#: erpnext/assets/onboarding_step/create_asset_location/create_asset_location.json
+msgid "Create Asset Location"
+msgstr "자산 위치 생성"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:277
+msgid "Create Bank Entry against"
+msgstr "은행 거래 내역 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Bill of Materials'
+#: erpnext/manufacturing/onboarding_step/create_bill_of_materials/create_bill_of_materials.json
+#: erpnext/subcontracting/onboarding_step/create_bill_of_materials/create_bill_of_materials.json
+msgid "Create Bill of Materials"
+msgstr ""
+
+#. Label of the create_chart_of_accounts_based_on (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Create Chart Of Accounts Based On"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Customer'
+#: erpnext/selling/onboarding_step/create_customer/create_customer.json
+msgid "Create Customer"
+msgstr "고객 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Delivery Note'
+#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json
+#: erpnext/stock/onboarding_step/create_delivery_note/create_delivery_note.json
+msgid "Create Delivery Note"
+msgstr "배송 메모 작성"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:63
+msgid "Create Delivery Trip"
+msgstr "배송 여정 생성"
+
+#: erpnext/utilities/activation.py:137
+msgid "Create Employee"
+msgstr "직원 생성"
+
+#: erpnext/utilities/activation.py:135
+msgid "Create Employee Records"
+msgstr "직원 기록 생성"
+
+#: erpnext/utilities/activation.py:136
+msgid "Create Employee records."
+msgstr "직원 기록을 생성합니다."
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Existing Asset'
+#: erpnext/assets/onboarding_step/create_existing_asset/create_existing_asset.json
+msgid "Create Existing Asset"
+msgstr "기존 자산 생성"
+
+#. Label of an action in the Onboarding Step 'Create Finished Goods'
+#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json
+msgid "Create Finished Good"
+msgstr "완제품을 만드세요"
+
+#. Title of an Onboarding Step
+#: erpnext/manufacturing/onboarding_step/create_finished_goods/create_finished_goods.json
+msgid "Create Finished Goods"
+msgstr "완제품 생산"
+
+#. Label of the is_grouped_asset (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Create Grouped Asset"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:123
+msgid "Create Inter Company Journal Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:55
+msgid "Create Invoices"
+msgstr "송장 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Item'
+#: erpnext/buying/onboarding_step/create_item/create_item.json
+#: erpnext/selling/onboarding_step/create_item/create_item.json
+#: erpnext/stock/onboarding_step/create_item/create_item.json
+msgid "Create Item"
+msgstr "아이템 생성"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
+msgid "Create Job Card"
+msgstr "작업 카드 생성"
+
+#. Label of the create_job_card_based_on_batch_size (Check) field in DocType
+#. 'Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Create Job Card based on Batch Size"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_order/payment_order.js:39
+msgid "Create Journal Entries"
+msgstr "일지 항목 생성"
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.js:18
+msgid "Create Journal Entry"
+msgstr "회계 전표 생성"
+
+#: erpnext/utilities/activation.py:79
+msgid "Create Lead"
+msgstr ""
+
+#: erpnext/utilities/activation.py:77
+msgid "Create Leads"
+msgstr ""
+
+#. Label of the post_change_gl_entries (Check) field in DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "Create Ledger Entries for Change Amount"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier/supplier.js:216
+#: erpnext/selling/doctype/customer/customer.js:289
+msgid "Create Link"
+msgstr "링크 생성"
+
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.js:41
+msgid "Create MPS"
+msgstr "MPS를 생성하세요"
+
+#. Label of the create_missing_party (Check) field in DocType 'Opening Invoice
+#. Creation Tool'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+msgid "Create Missing Party"
+msgstr "누락된 파티 생성"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:196
+msgid "Create Multi-level BOM"
+msgstr "다단계 BOM 생성"
+
+#: erpnext/public/js/call_popup/call_popup.js:122
+msgid "Create New Contact"
+msgstr "새 연락처 만들기"
+
+#: erpnext/public/js/call_popup/call_popup.js:128
+msgid "Create New Customer"
+msgstr "신규 고객 생성"
+
+#: erpnext/public/js/call_popup/call_popup.js:134
+msgid "Create New Lead"
+msgstr ""
+
+#: banking/src/components/common/LinkFieldCombobox.tsx:284
+msgid "Create New {0}"
+msgstr "새 {0} 만들기"
+
+#. Label of an action in the Onboarding Step 'Create Operations'
+#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json
+msgid "Create Operation"
+msgstr "생성 작업"
+
+#. Title of an Onboarding Step
+#: erpnext/manufacturing/onboarding_step/create_operations/create_operations.json
+msgid "Create Operations"
+msgstr "생성 작업"
+
+#: erpnext/crm/doctype/lead/lead.js:161
+msgid "Create Opportunity"
+msgstr "기회를 창출하세요"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:67
+msgid "Create POS Opening Entry"
+msgstr "POS 개시 입력 항목 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Payment Entry'
+#: erpnext/accounts/doctype/payment_request/payment_request.js:66
+#: erpnext/accounts/onboarding_step/create_payment_entry/create_payment_entry.json
+msgid "Create Payment Entry"
+msgstr "결제 입력 생성"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:861
+msgid "Create Payment Entry for Consolidated POS Invoices."
+msgstr "통합 POS 송장에 대한 지급 입력 내역을 생성합니다."
+
+#: erpnext/public/js/controllers/transaction.js:519
+msgid "Create Payment Request"
+msgstr "결제 요청 생성"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
+msgid "Create Pick List"
+msgstr "선택 목록 만들기"
+
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:10
+msgid "Create Print Format"
+msgstr "인쇄 형식 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Project'
+#: erpnext/projects/onboarding_step/create_project/create_project.json
+msgid "Create Project"
+msgstr "프로젝트 생성"
+
+#: erpnext/crm/doctype/lead/lead_list.js:8
+msgid "Create Prospect"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Purchase Invoice'
+#: erpnext/buying/onboarding_step/create_purchase_invoice/create_purchase_invoice.json
+msgid "Create Purchase Invoice"
+msgstr "구매 송장 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Purchase Order'
+#: erpnext/buying/onboarding_step/create_purchase_order/create_purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1749
+#: erpnext/utilities/activation.py:106
+msgid "Create Purchase Order"
+msgstr "구매 주문서 생성"
+
+#: erpnext/utilities/activation.py:104
+msgid "Create Purchase Orders"
+msgstr "구매 주문서 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Purchase Receipt'
+#: erpnext/stock/onboarding_step/create_purchase_receipt/create_purchase_receipt.json
+msgid "Create Purchase Receipt"
+msgstr "구매 영수증 생성"
+
+#: erpnext/utilities/activation.py:88
+msgid "Create Quotation"
+msgstr "견적서 작성"
+
+#. Label of an action in the Onboarding Step 'Create Raw Materials'
+#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json
+#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json
+msgid "Create Raw Material"
+msgstr "원자재 생성"
+
+#. Title of an Onboarding Step
+#: erpnext/manufacturing/onboarding_step/create_raw_materials/create_raw_materials.json
+#: erpnext/subcontracting/onboarding_step/create_raw_materials/create_raw_materials.json
+msgid "Create Raw Materials"
+msgstr "원자재 생성"
+
+#. Label of the create_receiver_list (Button) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Create Receiver List"
+msgstr "수신자 목록 생성"
+
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:44
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:92
+msgid "Create Reposting Entries"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:58
+msgid "Create Reposting Entry"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Sales Invoice'
+#: erpnext/accounts/onboarding_step/create_sales_invoice/create_sales_invoice.json
+#: erpnext/projects/doctype/timesheet/timesheet.js:55
+#: erpnext/projects/doctype/timesheet/timesheet.js:231
+#: erpnext/projects/doctype/timesheet/timesheet.js:235
+#: erpnext/selling/onboarding_step/create_sales_invoice/create_sales_invoice.json
+msgid "Create Sales Invoice"
+msgstr "판매 송장 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Sales Order'
+#: erpnext/selling/onboarding_step/create_sales_order/create_sales_order.json
+#: erpnext/utilities/activation.py:97
+msgid "Create Sales Order"
+msgstr "판매 주문 생성"
+
+#: erpnext/utilities/activation.py:96
+msgid "Create Sales Orders to help you plan your work and deliver on-time"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Service Item'
+#: erpnext/subcontracting/onboarding_step/create_service_item/create_service_item.json
+msgid "Create Service Item"
+msgstr "서비스 항목 생성"
+
+#: erpnext/stock/dashboard/item_dashboard.js:283
+#: erpnext/stock/doctype/material_request/material_request.js:478
+msgid "Create Stock Entry"
+msgstr "재고 입력 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Subcontracted Item'
+#: erpnext/subcontracting/onboarding_step/create_subcontracted_item/create_subcontracted_item.json
+msgid "Create Subcontracted Item"
+msgstr "하청 품목 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Subcontracting Order'
+#: erpnext/subcontracting/onboarding_step/create_subcontracting_order/create_subcontracting_order.json
+msgid "Create Subcontracting Order"
+msgstr "하도급 주문 생성"
+
+#. Title of an Onboarding Step
+#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json
+msgid "Create Subcontracting PO"
+msgstr "하도급 구매 주문 생성"
+
+#. Label of an action in the Onboarding Step 'Create Subcontracting PO'
+#: erpnext/subcontracting/onboarding_step/create_subcontracting_po/create_subcontracting_po.json
+msgid "Create Subcontracting Purchase Order"
+msgstr "하도급 구매 주문서 작성"
+
+#. Title of an Onboarding Step
+#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json
+msgid "Create Supplier"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:181
+msgid "Create Supplier Quotation"
+msgstr ""
+
+#. Label of an action in the Onboarding Step 'Create Tasks'
+#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json
+msgid "Create Task"
+msgstr "작업 생성"
+
+#. Title of an Onboarding Step
+#: erpnext/projects/onboarding_step/create_tasks/create_tasks.json
+msgid "Create Tasks"
+msgstr "작업 생성"
+
+#: erpnext/setup/doctype/company/company.js:173
+msgid "Create Tax Template"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Timesheet'
+#: erpnext/projects/onboarding_step/create_timesheet/create_timesheet.json
+#: erpnext/utilities/activation.py:128
+msgid "Create Timesheet"
+msgstr "근무 시간표 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Transfer Entry'
+#: erpnext/stock/onboarding_step/create_transfer_entry/create_transfer_entry.json
+msgid "Create Transfer Entry"
+msgstr "이체 입력 생성"
+
+#: erpnext/setup/doctype/employee/employee.js:50
+#: erpnext/setup/doctype/employee/employee.js:52
+#: erpnext/utilities/activation.py:117
+msgid "Create User"
+msgstr "사용자 생성"
+
+#. Label of the create_user_automatically (Check) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Create User Automatically"
+msgstr "사용자 자동 생성"
+
+#. Label of the create_user_permission (Check) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.js:65
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Create User Permission"
+msgstr "사용자 권한 생성"
+
+#: erpnext/utilities/activation.py:113
+msgid "Create Users"
+msgstr "사용자 생성"
+
+#: erpnext/stock/doctype/item/item.js:968
+msgid "Create Variant"
+msgstr "변형 생성"
+
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
+msgid "Create Variants"
+msgstr "변형 생성"
+
+#. Label of an action in the Onboarding Step 'Setup Warehouse'
+#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json
+msgid "Create Warehouses"
+msgstr "창고 생성"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Create Work Order'
+#: erpnext/manufacturing/onboarding_step/create_work_order/create_work_order.json
+msgid "Create Work Order"
+msgstr "작업 지시서 생성"
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:10
+msgid "Create Workstation"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:629
+msgid "Create a journal entry for expenses, income or split transactions"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:635
+msgid "Create a new entry based on the rule"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:71
+msgid "Create a new rule to automatically classify transactions."
+msgstr "거래를 자동으로 분류하는 새로운 규칙을 만드세요."
+
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
+msgid "Create a variant with the template image."
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2037
+msgid "Create an incoming stock transaction for the Item."
+msgstr "해당 품목에 대한 입고 거래를 생성합니다."
+
+#: erpnext/utilities/activation.py:86
+msgid "Create customer quotes"
+msgstr "고객 견적서 작성"
+
+#. Label of an action in the Onboarding Step 'Create Delivery Note'
+#: erpnext/selling/onboarding_step/create_delivery_note/create_delivery_note.json
+msgid "Create delivery note"
+msgstr "배송 메모를 작성하세요"
+
+#. Label of the create_pr_in_draft_status (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Create in Draft Status"
+msgstr "초안 상태로 생성"
+
+#. Label of an action in the Onboarding Step 'Create Supplier'
+#: erpnext/buying/onboarding_step/create_supplier/create_supplier.json
+msgid "Create supplier"
+msgstr ""
+
+#: erpnext/public/js/bulk_transaction_processing.js:14
+msgid "Create {0} {1} ?"
+msgstr ""
+
+#. Label of the created_by_migration (Check) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Created By Migration"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
+msgid "Created {0} scorecards for {1} between:"
+msgstr ""
+
+#. Description of the 'Create User Automatically' (Check) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Creates a User account for this employee using the Preferred, Company, or Personal email."
+msgstr "선호하는 이메일 주소, 회사 이메일 주소 또는 개인 이메일 주소를 사용하여 해당 직원의 사용자 계정을 생성합니다."
+
+#. Description of the 'Create Grouped Asset' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Creates a single grouped asset instead of individual assets when purchased in bulk."
+msgstr "대량 구매 시 개별 자산 대신 단일 그룹 자산으로 생성됩니다."
+
+#. Description of the 'Standard Selling Rate' (Currency) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Creates an Item Price automatically when the item is saved"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:140
+msgid "Creating Accounts..."
+msgstr "계정 생성 중..."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1624
+msgid "Creating Delivery Note ..."
+msgstr "배송 전표 작성 중..."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:715
+msgid "Creating Delivery Schedule..."
+msgstr "배송 일정 생성 중..."
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
+msgid "Creating Dimensions..."
+msgstr "차원을 창조하다..."
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:92
+msgid "Creating Journal Entries..."
+msgstr "일기 항목 작성하기..."
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.js:42
+msgid "Creating Packing Slip ..."
+msgstr "포장 명세서 작성 중..."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:61
+msgid "Creating Purchase Invoices ..."
+msgstr "구매 송장 작성..."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1773
+msgid "Creating Purchase Order ..."
+msgstr "구매 주문서 생성 중..."
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:706
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:470
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:74
+msgid "Creating Purchase Receipt ..."
+msgstr "구매 영수증 생성 중..."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:59
+msgid "Creating Sales Invoices ..."
+msgstr "판매 송장 작성..."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:87
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:597
+msgid "Creating Stock Entry"
+msgstr "재고 입력 생성"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1894
+msgid "Creating Subcontracting Inward Order ..."
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:485
+msgid "Creating Subcontracting Order ..."
+msgstr "하도급 발주서 작성 중..."
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:697
+msgid "Creating Subcontracting Receipt ..."
+msgstr "하도급 영수증 작성..."
+
+#: erpnext/setup/doctype/employee/employee.js:85
+msgid "Creating User..."
+msgstr "사용자 생성 중..."
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:36
+msgid "Creating demo data"
+msgstr "데모 데이터 생성 중"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:305
+msgid "Creating {} out of {} {}"
+msgstr "{}개 중 {}개를 만들어서"
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:141
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:154
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:46
+msgid "Creation"
+msgstr "창조"
+
+#: erpnext/utilities/bulk_transaction.py:212
+msgid "Creation of {1}(s) successful"
+msgstr "{1}(s) 생성 성공"
+
+#: erpnext/utilities/bulk_transaction.py:229
+msgid "Creation of {0} failed.\n"
+"\t\t\t\tCheck Bulk Transaction Log "
+msgstr "{0} 생성에 실패했습니다.\n"
+"\t\t\t\t확인 대량 거래 로그 "
+
+#: erpnext/utilities/bulk_transaction.py:220
+msgid "Creation of {0} partially successful.\n"
+"\t\t\t\tCheck Bulk Transaction Log "
+msgstr "{0} 생성이 부분적으로 성공했습니다.\n"
+"\t\t\t\t확인 대량 거래 로그 "
+
+#. Option for the 'Balance must be' (Select) field in DocType 'Account'
+#. Label of the credit (Data) field in DocType 'Bank Transaction Rule Accounts'
+#. Label of the credit_in_account_currency (Currency) field in DocType 'Journal
+#. Entry Account'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:243
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:615
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:714
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:133
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:140
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:404
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:596
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:711
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:39
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:11
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:88
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:146
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:431
+#: erpnext/accounts/report/general_ledger/general_ledger.html:167
+#: erpnext/accounts/report/purchase_register/purchase_register.py:241
+#: erpnext/accounts/report/sales_register/sales_register.py:277
+#: erpnext/accounts/report/trial_balance/trial_balance.py:530
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:212
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:34
+msgid "Credit"
+msgstr "신용 거래"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:744
+msgid "Credit (Transaction)"
+msgstr "신용(거래)"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:719
+msgid "Credit ({0})"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:641
+msgid "Credit Account"
+msgstr "신용 계좌"
+
+#. Label of the credit (Currency) field in DocType 'Account Closing Balance'
+#. Label of the credit (Currency) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Credit Amount"
+msgstr "신용 금액"
+
+#. Label of the credit_in_account_currency (Currency) field in DocType 'Account
+#. Closing Balance'
+#. Label of the credit_in_account_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Credit Amount in Account Currency"
+msgstr "계좌 통화로 표시되는 입금 금액"
+
+#. Label of the credit_in_reporting_currency (Currency) field in DocType
+#. 'Account Closing Balance'
+#. Label of the credit_in_reporting_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Credit Amount in Reporting Currency"
+msgstr "보고 통화 기준 신용 금액"
+
+#. Label of the credit_in_transaction_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Credit Amount in Transaction Currency"
+msgstr ""
+
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:67
+msgid "Credit Balance"
+msgstr "신용 잔액"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:258
+msgid "Credit Card"
+msgstr "신용카드"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Credit Card Entry"
+msgstr "신용카드 입력"
+
+#. Label of the credit_days (Int) field in DocType 'Payment Schedule'
+#. Label of the credit_days (Int) field in DocType 'Payment Term'
+#. Label of the credit_days (Int) field in DocType 'Payment Terms Template
+#. Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Credit Days"
+msgstr ""
+
+#. Label of the credit_limits (Table) field in DocType 'Customer'
+#. Label of the credit_limit (Currency) field in DocType 'Customer Credit
+#. Limit'
+#. Label of the credit_limit (Currency) field in DocType 'Company'
+#. Label of the credit_limits (Table) field in DocType 'Customer Group'
+#. Label of the section_credit_limit (Section Break) field in DocType 'Supplier
+#. Group'
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:65
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Credit Limit"
+msgstr "신용 한도"
+
+#: erpnext/selling/doctype/customer/customer.py:640
+msgid "Credit Limit Crossed"
+msgstr "신용 한도 초과"
+
+#. Label of the accounts_transactions_settings_section (Section Break) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Credit Limit Settings"
+msgstr "신용 한도 설정"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
+msgid "Credit Limit:"
+msgstr "신용 한도:"
+
+#. Label of the invoicing_settings_tab (Tab Break) field in DocType 'Accounts
+#. Settings'
+#. Label of the credit_limit_section (Section Break) field in DocType 'Customer
+#. Group'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+msgid "Credit Limits"
+msgstr "신용 한도"
+
+#. Label of the credit_months (Int) field in DocType 'Payment Schedule'
+#. Label of the credit_months (Int) field in DocType 'Payment Term'
+#. Label of the credit_months (Int) field in DocType 'Payment Terms Template
+#. Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Credit Months"
+msgstr "신용 개월 수"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#. Label of the credit_note (Link) field in DocType 'Stock Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:176
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
+#: erpnext/controllers/sales_and_purchase_return.py:453
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Credit Note"
+msgstr "신용장"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:203
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:137
+msgid "Credit Note Amount"
+msgstr "신용 메모 금액"
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:277
+msgid "Credit Note Issued"
+msgstr "신용장 발행"
+
+#. Description of the 'Update Outstanding for Self' (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
+msgid "Credit Note {0} has been created automatically"
+msgstr ""
+
+#. Label of the credit_to (Link) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
+#: erpnext/controllers/accounts_controller.py:2377
+msgid "Credit To"
+msgstr ""
+
+#. Label of the credit (Currency) field in DocType 'Journal Entry Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Credit in Company Currency"
+msgstr "회사 통화로 신용"
+
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
+msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:385
+msgid "Credit limit is already defined for the Company {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:662
+msgid "Credit limit reached for customer {0}"
+msgstr ""
+
+#: erpnext/accounts/utils.py:2826
+msgid "Credit limit warning — submission may be blocked: {0}"
+msgstr "신용 한도 경고 — 제출이 차단될 수 있습니다: {0}"
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:213
+msgid "Creditor Turnover Ratio"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+msgid "Creditors"
+msgstr "채권자"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:392
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:210
+msgid "Credits"
+msgstr ""
+
+#. Label of the criteria (Table) field in DocType 'Supplier Scorecard Period'
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Criteria"
+msgstr "기준"
+
+#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard
+#. Criteria'
+#. Label of the formula (Small Text) field in DocType 'Supplier Scorecard
+#. Scoring Criteria'
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Criteria Formula"
+msgstr "기준 공식"
+
+#. Label of the criteria_name (Data) field in DocType 'Supplier Scorecard
+#. Criteria'
+#. Label of the criteria_name (Link) field in DocType 'Supplier Scorecard
+#. Scoring Criteria'
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Criteria Name"
+msgstr "기준 이름"
+
+#. Label of the criteria_setup (Section Break) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Criteria Setup"
+msgstr "기준 설정"
+
+#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Criteria'
+#. Label of the weight (Percent) field in DocType 'Supplier Scorecard Scoring
+#. Criteria'
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Criteria Weight"
+msgstr "기준 가중치"
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:89
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.py:55
+msgid "Criteria weights must add up to 100%"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:188
+msgid "Cron Interval should be between 1 and 59 Min"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/setup/doctype/website_item_group/website_item_group.json
+msgid "Cross Listing of Item in multiple groups"
+msgstr "여러 그룹에 상품 교차 등록"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Centimeter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Decimeter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Foot"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Inch"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Meter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Millimeter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cubic Yard"
+msgstr ""
+
+#. Label of the cumulative_threshold (Float) field in DocType 'Tax Withholding
+#. Rate'
+#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json
+msgid "Cumulative Threshold"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cup"
+msgstr "컵"
+
+#. Label of a Link in the Invoicing Workspace
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Currency Exchange"
+msgstr "환전"
+
+#. Label of the currency_exchange_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Currency Exchange Settings"
+msgstr "환전 설정"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/currency_exchange_settings_details/currency_exchange_settings_details.json
+msgid "Currency Exchange Settings Details"
+msgstr "환전 설정 세부 정보"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/currency_exchange_settings_result/currency_exchange_settings_result.json
+msgid "Currency Exchange Settings Result"
+msgstr "환전 설정 결과"
+
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:55
+msgid "Currency Exchange must be applicable for Buying or for Selling."
+msgstr "환전은 구매 또는 판매 모두에 적용되어야 합니다."
+
+#. Label of the currency_and_price_list (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Purchase Order'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Supplier Quotation'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the currency_and_price_list (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Delivery Note'
+#. Label of the currency_and_price_list (Section Break) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Currency and Price List"
+msgstr "통화 및 가격표"
+
+#: erpnext/accounts/doctype/account/account.py:350
+msgid "Currency can not be changed after making entries using some other currency"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:258
+msgid "Currency filters are currently unsupported in Custom Financial Report."
+msgstr "사용자 지정 재무 보고서에서는 현재 통화 필터가 지원되지 않습니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
+#: erpnext/accounts/utils.py:2545
+msgid "Currency for {0} must be {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:130
+msgid "Currency of the Closing Account must be {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:731
+msgid "Currency of the price list {0} must be {1} or {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:298
+msgid "Currency should be same as Price List Currency: {0}"
+msgstr "통화는 가격표 통화와 동일해야 합니다: {0}"
+
+#. Label of the current_address (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Current Address"
+msgstr "현재 주소"
+
+#. Label of the current_accommodation_type (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Current Address Is"
+msgstr "현재 주소는"
+
+#. Label of the current_amount (Currency) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Current Amount"
+msgstr "현재 금액"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Current Asset"
+msgstr ""
+
+#. Label of the current_asset_value (Currency) field in DocType 'Asset
+#. Capitalization Asset Item'
+#. Label of the current_asset_value (Currency) field in DocType 'Asset Value
+#. Adjustment'
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+msgid "Current Asset Value"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:11
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:11
+msgid "Current Assets"
+msgstr ""
+
+#. Label of the current_bom (Link) field in DocType 'BOM Update Log'
+#. Label of the current_bom (Link) field in DocType 'BOM Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Current BOM"
+msgstr "현재 BOM"
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:80
+msgid "Current BOM and New BOM can not be same"
+msgstr ""
+
+#. Label of the current_exchange_rate (Float) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Current Exchange Rate"
+msgstr "현재 환율"
+
+#. Label of the current_invoice_end (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Current Invoice End Date"
+msgstr "현재 청구서 만료일"
+
+#. Label of the current_invoice_start (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Current Invoice Start Date"
+msgstr "현재 청구서 시작일"
+
+#. Label of the current_level (Int) field in DocType 'BOM Update Log'
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+msgid "Current Level"
+msgstr "현재 레벨"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
+msgid "Current Liabilities"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Current Liability"
+msgstr ""
+
+#. Label of the current_node (Link) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "Current Node"
+msgstr "현재 노드"
+
+#. Label of the current_qty (Float) field in DocType 'Stock Reconciliation
+#. Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:23
+msgid "Current Qty"
+msgstr "현재 수량"
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:152
+msgid "Current Ratio"
+msgstr "현재 비율"
+
+#. Label of the current_serial_and_batch_bundle (Link) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Current Serial / Batch Bundle"
+msgstr "현재 시리얼/배치 번들"
+
+#. Label of the current_serial_no (Long Text) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Current Serial No"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:223
+msgid "Current Series"
+msgstr "현재 시리즈"
+
+#. Label of the current_state (Select) field in DocType 'Share Balance'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+msgid "Current State"
+msgstr "현재 상태"
+
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:210
+msgid "Current Status"
+msgstr "현재 상태"
+
+#. Label of the current_stock (Float) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the current_stock (Float) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:106
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Current Stock"
+msgstr "현재 재고"
+
+#. Label of the current_valuation_rate (Currency) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Current Valuation Rate"
+msgstr ""
+
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
+msgid "Curves"
+msgstr "곡선"
+
+#. Label of the custodian (Link) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Custodian"
+msgstr "후견인"
+
+#. Label of the custody (Float) field in DocType 'Cashier Closing'
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+msgid "Custody"
+msgstr "보관"
+
+#. Option for the 'Data Source' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Custom API"
+msgstr "사용자 지정 API"
+
+#. Option for the 'Report Type' (Select) field in DocType 'Financial Report
+#. Template'
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Custom Financial Statement"
+msgstr "맞춤형 재무제표"
+
+#. Label of the custom_remark (Check) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Custom Remark"
+msgstr "사용자 지정 비고"
+
+#. Label of the custom_remarks (Check) field in DocType 'Payment Entry'
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:504
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:370
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Custom Remarks"
+msgstr "사용자 지정 비고"
+
+#. Label of the custom_delimiters (Check) field in DocType 'Bank Statement
+#. Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Custom delimiters"
+msgstr "사용자 지정 구분 기호"
+
+#. Label of the customer (Link) field in DocType 'Bank Guarantee'
+#. Label of the customer (Link) field in DocType 'Coupon Code'
+#. Label of the customer (Link) field in DocType 'Discounted Invoice'
+#. Label of the customer (Link) field in DocType 'Dunning'
+#. Label of the customer (Link) field in DocType 'Loyalty Point Entry'
+#. Label of the customer (Link) field in DocType 'POS Invoice'
+#. Label of the customer (Link) field in DocType 'POS Invoice Merge Log'
+#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS
+#. Invoice Merge Log'
+#. Label of the customer (Link) field in DocType 'POS Invoice Reference'
+#. Label of the customer (Link) field in DocType 'POS Profile'
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the customer (Link) field in DocType 'Pricing Rule'
+#. Label of the customer (Link) field in DocType 'Process Statement Of Accounts
+#. Customer'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the customer (Table MultiSelect) field in DocType 'Promotional
+#. Scheme'
+#. Label of the customer (Link) field in DocType 'Sales Invoice'
+#. Label of the customer (Link) field in DocType 'Sales Invoice Reference'
+#. Label of the customer (Link) field in DocType 'Tax Rule'
+#. Option for the 'Asset Owner' (Select) field in DocType 'Asset'
+#. Label of the customer (Link) field in DocType 'Asset'
+#. Label of the customer (Link) field in DocType 'Purchase Order'
+#. Option for the 'Party Type' (Select) field in DocType 'Contract'
+#. Label of the customer (Link) field in DocType 'Maintenance Schedule'
+#. Label of the customer (Link) field in DocType 'Maintenance Visit'
+#. Label of the customer (Link) field in DocType 'Blanket Order'
+#. Label of the customer (Link) field in DocType 'Production Plan'
+#. Label of the customer (Link) field in DocType 'Production Plan Sales Order'
+#. Label of the customer (Link) field in DocType 'Project'
+#. Label of the customer (Link) field in DocType 'Timesheet'
+#. Option for the 'Type' (Select) field in DocType 'Quality Feedback'
+#. Name of a DocType
+#. Label of the customer (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
+#. Label of the customer (Link) field in DocType 'Sales Order'
+#. Label of the customer (Link) field in DocType 'SMS Center'
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization
+#. Rule'
+#. Name of a role
+#. Label of a Link in the Home Workspace
+#. Label of a shortcut in the Home Workspace
+#. Label of the customer (Link) field in DocType 'Delivery Note'
+#. Label of the customer (Link) field in DocType 'Delivery Stop'
+#. Label of the customer (Link) field in DocType 'Item Price'
+#. Label of the customer (Link) field in DocType 'Material Request'
+#. Label of the customer (Link) field in DocType 'Pick List'
+#. Label of the customer (Link) field in DocType 'Serial No'
+#. Option for the 'Pickup from' (Select) field in DocType 'Shipment'
+#. Label of the pickup_customer (Link) field in DocType 'Shipment'
+#. Option for the 'Delivery to' (Select) field in DocType 'Shipment'
+#. Label of the delivery_customer (Link) field in DocType 'Shipment'
+#. Label of the customer (Link) field in DocType 'Warehouse'
+#. Label of the customer (Link) field in DocType 'Subcontracting Inward Order'
+#. Label of the customer (Link) field in DocType 'Issue'
+#. Option for the 'Entity Type' (Select) field in DocType 'Service Level
+#. Agreement'
+#. Label of the customer (Link) field in DocType 'Warranty Claim'
+#. Label of a field in the issues Web Form
+#. Label of the customer (Link) field in DocType 'Call Log'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:392
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:114
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:112
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:134
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:38
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:29
+#: erpnext/accounts/report/general_ledger/general_ledger.html:136
+#: erpnext/accounts/report/gross_profit/gross_profit.py:416
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:37
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:22
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:221
+#: erpnext/accounts/report/pos_register/pos_register.js:44
+#: erpnext/accounts/report/pos_register/pos_register.py:120
+#: erpnext/accounts/report/pos_register/pos_register.py:181
+#: erpnext/accounts/report/sales_register/sales_register.js:21
+#: erpnext/accounts/report/sales_register/sales_register.py:187
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier/supplier.js:184
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/lead/lead.js:32
+#: erpnext/crm/doctype/opportunity/opportunity.js:99
+#: erpnext/crm/doctype/prospect/prospect.js:8
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:54
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:98
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/timesheet/timesheet.js:223
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:45
+#: erpnext/public/js/sales_trends_filters.js:25
+#: erpnext/public/js/sales_trends_filters.js:39
+#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json
+#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:21
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1237
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_calendar.js:19
+#: erpnext/selling/doctype/selling_settings/selling_settings.js:48
+#: erpnext/selling/doctype/sms_center/sms_center.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:320
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.js:16
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:64
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:7
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:74
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:47
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:73
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:37
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:19
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:41
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:230
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:41
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:156
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:53
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:25
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:40
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:52
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:53
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:65
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/territory/territory.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:215
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:472
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:36
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:121
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:36
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:46
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:534
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/support/report/issue_analytics/issue_analytics.js:69
+#: erpnext/support/report/issue_analytics/issue_analytics.py:37
+#: erpnext/support/report/issue_summary/issue_summary.js:57
+#: erpnext/support/report/issue_summary/issue_summary.py:34
+#: erpnext/support/web_form/issues/issues.json
+#: erpnext/telephony/doctype/call_log/call_log.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/home.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/selling.json
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Customer"
+msgstr "고객"
+
+#. Label of the customer (Link) field in DocType 'Customer Item'
+#: erpnext/accounts/doctype/customer_item/customer_item.json
+msgid "Customer "
+msgstr "고객 "
+
+#. Label of the master_name (Dynamic Link) field in DocType 'Authorization
+#. Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Customer / Item / Item Group"
+msgstr "고객 / 품목 / 품목 그룹"
+
+#. Label of the customer_address (Link) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Customer / Lead Address"
+msgstr "고객/잠재고객 주소"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:95
+msgid "Customer > Customer Group > Territory"
+msgstr "고객 > 고객 그룹 > 지역"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Customer Acquisition and Loyalty"
+msgstr "고객 확보 및 충성도"
+
+#. Label of the customer_address (Link) field in DocType 'Dunning'
+#. Label of the customer_address (Link) field in DocType 'POS Invoice'
+#. Label of the customer_address (Link) field in DocType 'Sales Invoice'
+#. Label of the customer_address (Link) field in DocType 'Maintenance Schedule'
+#. Label of the customer_address (Link) field in DocType 'Maintenance Visit'
+#. Label of the customer_address (Link) field in DocType 'Installation Note'
+#. Label of the customer_address (Link) field in DocType 'Quotation'
+#. Label of the customer_address (Link) field in DocType 'Sales Order'
+#. Label of the customer_address (Small Text) field in DocType 'Delivery Stop'
+#. Label of the customer_address (Link) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Customer Address"
+msgstr "고객 주소"
+
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Customer Addresses And Contacts"
+msgstr "고객 주소 및 연락처"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+msgid "Customer Advances"
+msgstr ""
+
+#. Label of the customer_code (Small Text) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Customer Code"
+msgstr "고객 코드"
+
+#. Label of the customer_contact_person (Link) field in DocType 'Purchase
+#. Order'
+#. Label of the customer_contact_display (Small Text) field in DocType
+#. 'Purchase Order'
+#. Label of the customer_contact (Small Text) field in DocType 'Delivery Stop'
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Customer Contact"
+msgstr "고객 연락처"
+
+#. Label of the customer_contact_email (Code) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Customer Contact Email"
+msgstr "고객 문의 이메일"
+
+#. Label of a Link in the Financial Reports Workspace
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Customer Credit Balance"
+msgstr "고객 신용 잔액"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Customer Credit Limit"
+msgstr "고객 신용 한도"
+
+#. Label of the currency (Link) field in DocType 'Subcontracting Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Customer Currency"
+msgstr "고객 통화"
+
+#. Label of the customer_defaults_tab (Tab Break) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Customer Defaults"
+msgstr "고객 기본 설정"
+
+#. Label of the customer_details_section (Section Break) field in DocType
+#. 'Appointment'
+#. Label of the customer_details (Section Break) field in DocType 'Project'
+#. Label of the customer_details (Text) field in DocType 'Customer'
+#. Label of the customer_details (Section Break) field in DocType 'Item'
+#. Label of the contact_info (Section Break) field in DocType 'Warranty Claim'
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Customer Details"
+msgstr "고객 정보"
+
+#. Label of the customer_feedback (Small Text) field in DocType 'Maintenance
+#. Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Customer Feedback"
+msgstr "고객 피드백"
+
+#. Label of the customer_group (Link) field in DocType 'Customer Group Item'
+#. Label of the customer_group (Link) field in DocType 'Loyalty Program'
+#. Label of the customer_group (Link) field in DocType 'POS Customer Group'
+#. Label of the customer_group (Link) field in DocType 'POS Invoice'
+#. Option for the 'Merge Invoices Based On' (Select) field in DocType 'POS
+#. Invoice Merge Log'
+#. Label of the customer_group (Link) field in DocType 'POS Invoice Merge Log'
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the customer_group (Link) field in DocType 'Pricing Rule'
+#. Option for the 'Select Customers By' (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the customer_group (Table MultiSelect) field in DocType
+#. 'Promotional Scheme'
+#. Label of the customer_group (Link) field in DocType 'Sales Invoice'
+#. Label of the customer_group (Link) field in DocType 'Tax Rule'
+#. Label of the customer_group (Link) field in DocType 'Opportunity'
+#. Label of the customer_group (Link) field in DocType 'Prospect'
+#. Label of a Link in the CRM Workspace
+#. Label of the customer_group (Link) field in DocType 'Maintenance Schedule'
+#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
+#. Label of the customer_group (Link) field in DocType 'Customer'
+#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
+#. Label of the customer_group (Link) field in DocType 'Quotation'
+#. Label of the customer_group (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Name of a DocType
+#. Label of a Link in the Home Workspace
+#. Label of the customer_group (Link) field in DocType 'Delivery Note'
+#. Label of the customer_group (Link) field in DocType 'Item Customer Detail'
+#. Option for the 'Entity Type' (Select) field in DocType 'Service Level
+#. Agreement'
+#. Label of the customer_group (Link) field in DocType 'Warranty Claim'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:115
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:96
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:187
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:56
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:163
+#: erpnext/accounts/report/gross_profit/gross_profit.py:423
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:208
+#: erpnext/accounts/report/sales_register/sales_register.js:27
+#: erpnext/accounts/report/sales_register/sales_register.py:202
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/public/js/sales_trends_filters.js:26
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:81
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:30
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:42
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:42
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json
+msgid "Customer Group"
+msgstr "고객 그룹"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/customer_group_item/customer_group_item.json
+msgid "Customer Group Item"
+msgstr "고객 그룹 품목"
+
+#. Label of the customer_group_name (Data) field in DocType 'Customer Group'
+#: erpnext/setup/doctype/customer_group/customer_group.json
+msgid "Customer Group Name"
+msgstr "고객 그룹 이름"
+
+#. Label of the customer_groups (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Customer Groups"
+msgstr "고객 그룹"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/customer_item/customer_item.json
+msgid "Customer Item"
+msgstr "고객 상품"
+
+#. Label of the customer_items (Table) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Customer Items"
+msgstr "고객 상품"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
+msgid "Customer LPO"
+msgstr "고객 LPO"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:185
+msgid "Customer LPO No."
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Customer Ledger"
+msgstr "고객 원장"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+msgid "Customer Ledger Summary"
+msgstr "고객 원장 요약"
+
+#. Label of the customer_contact_mobile (Small Text) field in DocType 'Purchase
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Customer Mobile No"
+msgstr "고객 휴대폰 번호"
+
+#. Label of the customer_name (Data) field in DocType 'Dunning'
+#. Label of the customer_name (Data) field in DocType 'POS Invoice'
+#. Label of the customer_name (Data) field in DocType 'Process Statement Of
+#. Accounts Customer'
+#. Label of the customer_name (Small Text) field in DocType 'Sales Invoice'
+#. Label of the customer_name (Data) field in DocType 'Purchase Order'
+#. Label of the customer_name (Data) field in DocType 'Opportunity'
+#. Label of the customer_name (Data) field in DocType 'Maintenance Schedule'
+#. Label of the customer_name (Data) field in DocType 'Maintenance Visit'
+#. Label of the customer_name (Data) field in DocType 'Blanket Order'
+#. Label of the customer_name (Data) field in DocType 'Customer'
+#. Label of the customer_name (Data) field in DocType 'Quotation'
+#. Label of the customer_name (Data) field in DocType 'Sales Order'
+#. Option for the 'Customer Naming By' (Select) field in DocType 'Selling
+#. Settings'
+#. Label of the customer_name (Data) field in DocType 'Delivery Note'
+#. Label of the customer_name (Link) field in DocType 'Item Customer Detail'
+#. Label of the customer_name (Data) field in DocType 'Pick List'
+#. Label of the customer_name (Data) field in DocType 'Subcontracting Inward
+#. Order'
+#. Label of the customer_name (Data) field in DocType 'Issue'
+#. Label of the customer_name (Data) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:157
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:92
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:35
+#: erpnext/accounts/report/gross_profit/gross_profit.py:430
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:228
+#: erpnext/accounts/report/sales_register/sales_register.py:193
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:74
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:75
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:79
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Customer Name"
+msgstr "고객 이름"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:22
+msgid "Customer Name: "
+msgstr "고객 이름: "
+
+#. Label of the cust_master_name (Select) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Customer Naming By"
+msgstr "고객 이름 지정 담당자"
+
+#. Label of the customer_number (Data) field in DocType 'Customer Number At
+#. Supplier'
+#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json
+msgid "Customer Number"
+msgstr "고객 번호"
+
+#. Name of a DocType
+#: erpnext/buying/doctype/customer_number_at_supplier/customer_number_at_supplier.json
+msgid "Customer Number At Supplier"
+msgstr ""
+
+#. Label of the customer_numbers (Table) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Customer Numbers"
+msgstr "고객 번호"
+
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:165
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:80
+msgid "Customer PO"
+msgstr "고객 구매 주문서"
+
+#. Label of the customer_po_details (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the customer_po_details (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the customer_po_details (Section Break) field in DocType 'Delivery
+#. Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Customer PO Details"
+msgstr ""
+
+#. Label of the customer_pos_id (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Customer POS ID"
+msgstr "고객 POS ID"
+
+#. Label of the portal_users (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Customer Portal Users"
+msgstr "고객 포털 사용자"
+
+#. Label of the customer_primary_address (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Customer Primary Address"
+msgstr "고객 기본 주소"
+
+#. Label of the customer_primary_contact (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Customer Primary Contact"
+msgstr "고객 주요 담당자"
+
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Option for the 'Default Material Request Type' (Select) field in DocType
+#. 'Item'
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Customer Provided"
+msgstr "고객 제공"
+
+#. Label of the customer_provided_item_cost (Currency) field in DocType 'Stock
+#. Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Customer Provided Item Cost"
+msgstr "고객이 제공한 품목 비용"
+
+#: erpnext/setup/doctype/company/company.py:490
+msgid "Customer Service"
+msgstr "고객 서비스"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:13
+msgid "Customer Service Representative"
+msgstr "고객 서비스 담당자"
+
+#. Label of the customer_territory (Link) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Customer Territory"
+msgstr "고객 영역"
+
+#. Label of the customer_type (Select) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Customer Type"
+msgstr "고객 유형"
+
+#. Label of the customer_warehouse (Link) field in DocType 'Subcontracting
+#. Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Customer Warehouse"
+msgstr "고객 창고"
+
+#. Label of the target_warehouse (Link) field in DocType 'POS Invoice Item'
+#. Label of the target_warehouse (Link) field in DocType 'Sales Order Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Customer Warehouse (Optional)"
+msgstr "고객 창고 (선택 사항)"
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:146
+msgid "Customer Warehouse {0} does not belong to Customer {1}."
+msgstr "고객 창고 {0} 는 고객 {1}에 속하지 않습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:994
+msgid "Customer contact updated successfully."
+msgstr ""
+
+#: erpnext/support/doctype/warranty_claim/warranty_claim.py:55
+msgid "Customer is required"
+msgstr "고객은 필수입니다"
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:136
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:158
+msgid "Customer isn't enrolled in any Loyalty Program"
+msgstr ""
+
+#. Label of the customer_or_item (Select) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Customer or Item"
+msgstr "고객 또는 품목"
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:95
+msgid "Customer required for 'Customerwise Discount'"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
+msgid "Customer {0} does not belong to project {1}"
+msgstr ""
+
+#. Label of the customer_item_code (Data) field in DocType 'POS Invoice Item'
+#. Label of the customer_item_code (Data) field in DocType 'Sales Invoice Item'
+#. Label of the customer_item_code (Data) field in DocType 'Quotation Item'
+#. Label of the customer_item_code (Data) field in DocType 'Sales Order Item'
+#. Label of the customer_item_code (Data) field in DocType 'Delivery Note Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Customer's Item Code"
+msgstr "고객 품목 코드"
+
+#. Label of the po_no (Data) field in DocType 'POS Invoice'
+#. Label of the po_no (Data) field in DocType 'Sales Invoice'
+#. Label of the po_no (Data) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Customer's Purchase Order"
+msgstr "고객 구매 주문서"
+
+#. Label of the po_date (Date) field in DocType 'POS Invoice'
+#. Label of the po_date (Date) field in DocType 'Sales Invoice'
+#. Label of the po_date (Date) field in DocType 'Sales Order'
+#. Label of the po_date (Date) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Customer's Purchase Order Date"
+msgstr "고객 구매 주문 날짜"
+
+#. Label of the po_no (Small Text) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Customer's Purchase Order No"
+msgstr "고객 구매 주문 번호"
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:8
+msgid "Customer's Vendor"
+msgstr ""
+
+#. Name of a report
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.json
+msgid "Customer-wise Item Price"
+msgstr ""
+
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:44
+msgid "Customer/Lead Name"
+msgstr "고객/잠재고객 이름"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:19
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:21
+msgid "Customer: "
+msgstr "고객: "
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the customers (Table) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Customers"
+msgstr "고객"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/customers_without_any_sales_transactions/customers_without_any_sales_transactions.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Customers Without Any Sales Transactions"
+msgstr "판매 거래가 없는 고객"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:106
+msgid "Customers not selected."
+msgstr "선택되지 않은 고객입니다."
+
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Customerwise Discount"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the customs_tariff_number (Link) field in DocType 'Item'
+#. Label of a Link in the Stock Workspace
+#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Customs Tariff Number"
+msgstr "관세 번호"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Cycle/Second"
+msgstr "사이클/초"
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:204
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:243
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:146
+msgid "D - E"
+msgstr ""
+
+#. Option for the 'Algorithm' (Select) field in DocType 'Bisect Accounting
+#. Statements'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+msgid "DFS"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.py:717
+msgid "Daily Project Summary for {0}"
+msgstr "{0}에 대한 일일 프로젝트 요약"
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:176
+msgid "Daily Reminders"
+msgstr "매일 알림"
+
+#. Label of the daily_time_to_send (Time) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Daily Time to send"
+msgstr "매일 전송 시간"
+
+#. Name of a report
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Daily Timesheet Summary"
+msgstr "일일 근무 시간표 요약"
+
+#. Label of the daily_yield (Percent) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Daily Yield (%)"
+msgstr ""
+
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:15
+msgid "Data Based On"
+msgstr "데이터 기반"
+
+#. Label of the receivable_payable_fetch_method (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Data Fetch Method"
+msgstr "데이터 가져오기 방법"
+
+#. Label of the data_import_configuration_section (Section Break) field in
+#. DocType 'Bank'
+#: erpnext/accounts/doctype/bank/bank.json
+msgid "Data Import Configuration"
+msgstr "데이터 가져오기 구성"
+
+#. Label of a Card Break in the Home Workspace
+#: erpnext/setup/workspace/home/home.json
+msgid "Data Import and Settings"
+msgstr "데이터 가져오기 및 설정"
+
+#. Label of the data_source (Select) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Data Source"
+msgstr "데이터 소스"
+
+#. Label of the date (Date) field in DocType 'Bulk Transaction Log Detail'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "Date "
+msgstr "날짜 "
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:97
+msgid "Date Based On"
+msgstr "날짜 기준"
+
+#. Label of the date_of_retirement (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Date Of Retirement"
+msgstr "퇴직일"
+
+#. Label of the date_settings (HTML) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Date Settings"
+msgstr "날짜 설정"
+
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:72
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:92
+msgid "Date must be between {0} and {1}"
+msgstr ""
+
+#. Label of the date_of_birth (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Date of Birth"
+msgstr "생일"
+
+#: erpnext/setup/doctype/employee/employee.py:260
+msgid "Date of Birth cannot be greater than today."
+msgstr "생년월일은 오늘보다 빠를 수 없습니다."
+
+#. Label of the date_of_commencement (Date) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Date of Commencement"
+msgstr "시작일"
+
+#: erpnext/setup/doctype/company/company.js:110
+msgid "Date of Commencement should be greater than Date of Incorporation"
+msgstr ""
+
+#. Label of the date_of_establishment (Date) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Date of Establishment"
+msgstr "설립일"
+
+#. Label of the date_of_incorporation (Date) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Date of Incorporation"
+msgstr "설립일"
+
+#. Label of the date_of_issue (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Date of Issue"
+msgstr "발행일"
+
+#. Label of the date_of_joining (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Date of Joining"
+msgstr "입사일"
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:272
+msgid "Date of Transaction"
+msgstr "거래일"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:25
+msgid "Date: {0} to {1}"
+msgstr "날짜: {0} ~ {1}"
+
+#. Label of the dates_section (Section Break) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Dates"
+msgstr "날짜"
+
+#. Label of the normal_balances (Table) field in DocType 'Process Period
+#. Closing Voucher'
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "Dates to Process"
+msgstr "처리해야 할 날짜"
+
+#. Label of the day_of_week (Select) field in DocType 'Appointment Booking
+#. Slots'
+#. Label of the day_of_week (Select) field in DocType 'Availability Of Slots'
+#. Label of the day_of_week (Select) field in DocType 'Incoming Call Handling
+#. Schedule'
+#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json
+#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json
+#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json
+msgid "Day Of Week"
+msgstr "요일"
+
+#: erpnext/public/js/utils/naming_series.js:94
+msgid "Day of month"
+msgstr "월의 일"
+
+#. Label of the day_to_send (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Day to Send"
+msgstr "발송일"
+
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment
+#. Schedule'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Schedule'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Term'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms
+#. Template Detail'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Terms Template Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Day(s) after invoice date"
+msgstr ""
+
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment
+#. Schedule'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Schedule'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Term'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms
+#. Template Detail'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Terms Template Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Day(s) after the end of the invoice month"
+msgstr ""
+
+#. Option for the 'Book Deferred Entries Based On' (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Days"
+msgstr "날"
+
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:51
+#: erpnext/selling/report/inactive_customers/inactive_customers.js:8
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:83
+msgid "Days Since Last Order"
+msgstr "마지막 주문 이후 경과 일수"
+
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:34
+msgid "Days Since Last order"
+msgstr "마지막 주문 이후 경과 일수"
+
+#. Label of the days_until_due (Int) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Days Until Due"
+msgstr "출산 예정일까지 남은 일수"
+
+#. Option for the 'Generate Invoice At' (Select) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Days before the current subscription period"
+msgstr "현재 구독 기간 며칠 전"
+
+#. Label of the delinked (Check) field in DocType 'Advance Payment Ledger
+#. Entry'
+#. Label of the delinked (Check) field in DocType 'Payment Ledger Entry'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+msgid "DeLinked"
+msgstr "연결 해제됨"
+
+#. Label of the deal_owner (Data) field in DocType 'Prospect Opportunity'
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+msgid "Deal Owner"
+msgstr "거래 소유자"
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:3
+msgid "Dealer"
+msgstr "상인"
+
+#. Option for the 'Balance must be' (Select) field in DocType 'Account'
+#. Label of the debit (Data) field in DocType 'Bank Transaction Rule Accounts'
+#. Label of the debit_in_account_currency (Currency) field in DocType 'Journal
+#. Entry Account'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:242
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:614
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:694
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:126
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:133
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:403
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:595
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:696
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:38
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:10
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:81
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:139
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:424
+#: erpnext/accounts/report/general_ledger/general_ledger.html:166
+#: erpnext/accounts/report/purchase_register/purchase_register.py:240
+#: erpnext/accounts/report/sales_register/sales_register.py:276
+#: erpnext/accounts/report/trial_balance/trial_balance.py:523
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:205
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:27
+msgid "Debit"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:737
+msgid "Debit (Transaction)"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:712
+msgid "Debit ({0})"
+msgstr ""
+
+#. Label of the debit_or_credit_note_posting_date (Date) field in DocType
+#. 'Payment Reconciliation Allocation'
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+msgid "Debit / Credit Note Posting Date"
+msgstr "차변/대변 전표 게시일"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:631
+msgid "Debit Account"
+msgstr ""
+
+#. Label of the debit (Currency) field in DocType 'Account Closing Balance'
+#. Label of the debit (Currency) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Debit Amount"
+msgstr ""
+
+#. Label of the debit_in_account_currency (Currency) field in DocType 'Account
+#. Closing Balance'
+#. Label of the debit_in_account_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Debit Amount in Account Currency"
+msgstr ""
+
+#. Label of the debit_in_reporting_currency (Currency) field in DocType
+#. 'Account Closing Balance'
+#. Label of the debit_in_reporting_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Debit Amount in Reporting Currency"
+msgstr ""
+
+#. Label of the debit_in_transaction_currency (Currency) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Debit Amount in Transaction Currency"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:178
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
+#: erpnext/controllers/sales_and_purchase_return.py:457
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Debit Note"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:205
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:137
+msgid "Debit Note Amount"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Debit Note Issued"
+msgstr ""
+
+#. Description of the 'Update Outstanding for Self' (Check) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Debit Note will update it's own outstanding amount, even if 'Return Against' is specified."
+msgstr ""
+
+#. Label of the debit_to (Link) field in DocType 'POS Invoice'
+#. Label of the debit_to (Link) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
+msgid "Debit To"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+msgid "Debit To is required"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:537
+msgid "Debit and Credit not equal for {0} #{1}. Difference is {2}."
+msgstr ""
+
+#. Label of the debit (Currency) field in DocType 'Journal Entry Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Debit in Company Currency"
+msgstr ""
+
+#. Label of the debit_to (Link) field in DocType 'Discounted Invoice'
+#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
+msgid "Debit to"
+msgstr ""
+
+#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health
+#. Monitor'
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+msgid "Debit-Credit Mismatch"
+msgstr ""
+
+#. Label of the debit_credit_mismatch (Check) field in DocType 'Ledger Health'
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+msgid "Debit-Credit mismatch"
+msgstr ""
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Debit/Credit"
+msgstr "직불/신용"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:391
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:209
+msgid "Debits"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:170
+msgid "Debt Equity Ratio"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:212
+msgid "Debtor Turnover Ratio"
+msgstr ""
+
+#: erpnext/accounts/party.py:607
+msgid "Debtor/Creditor"
+msgstr "채무자/채권자"
+
+#: erpnext/accounts/party.py:610
+msgid "Debtor/Creditor Advance"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:13
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:13
+msgid "Debtors"
+msgstr "채무자"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Decigram/Litre"
+msgstr "데시그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Decilitre"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Decimeter"
+msgstr ""
+
+#: erpnext/public/js/utils/sales_common.js:633
+msgid "Declare Lost"
+msgstr "분실 신고"
+
+#. Option for the 'Add Or Deduct' (Select) field in DocType 'Advance Taxes and
+#. Charges'
+#. Option for the 'Add or Deduct' (Select) field in DocType 'Purchase Taxes and
+#. Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+msgid "Deduct"
+msgstr "빼다"
+
+#. Label of the tax_deduction_basis (Select) field in DocType 'Tax Withholding
+#. Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Deduct Tax On Basis"
+msgstr ""
+
+#. Label of the source_section (Section Break) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Deducted From"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Lower
+#. Deduction Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Deductee Details"
+msgstr "공제 대상자 정보"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Deduction Certificate"
+msgstr "공제 증명서"
+
+#. Label of the deductions_or_loss_section (Section Break) field in DocType
+#. 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Deductions or Loss"
+msgstr "공제 또는 손실"
+
+#. Label of the default_account (Link) field in DocType 'Mode of Payment
+#. Account'
+#. Label of the account (Link) field in DocType 'Party Account'
+#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json
+#: erpnext/accounts/doctype/party_account/party_account.json
+msgid "Default Account"
+msgstr "기본 계정"
+
+#. Label of the default_accounts_section (Section Break) field in DocType
+#. 'Supplier'
+#. Label of the accounts (Table) field in DocType 'Customer'
+#. Label of the default_settings (Section Break) field in DocType 'Company'
+#. Label of the default_receivable_account (Section Break) field in DocType
+#. 'Customer Group'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+msgid "Default Accounts"
+msgstr "기본 계정"
+
+#: erpnext/projects/doctype/activity_cost/activity_cost.py:62
+msgid "Default Activity Cost exists for Activity Type - {0}"
+msgstr ""
+
+#. Label of the default_advance_account (Link) field in DocType 'Payment
+#. Reconciliation'
+#. Label of the default_advance_account (Link) field in DocType 'Process
+#. Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "Default Advance Account"
+msgstr "기본 선불 계정"
+
+#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/company/company.py:319
+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:308
+msgid "Default Advance Received Account"
+msgstr ""
+
+#. Label of the default_ageing_range (Data) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Default Ageing Range"
+msgstr "기본 노화 범위"
+
+#. Label of the default_bom (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default BOM"
+msgstr "기본 BOM"
+
+#: erpnext/stock/doctype/item/item.py:504
+msgid "Default BOM ({0}) must be active for this item or its template"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
+msgid "Default BOM for {0} not found"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4109
+msgid "Default BOM not found for FG Item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
+msgid "Default BOM not found for Item {0} and Project {1}"
+msgstr ""
+
+#. Label of the default_bank_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Bank Account"
+msgstr "기본 은행 계좌"
+
+#. Label of the billing_rate (Currency) field in DocType 'Activity Type'
+#: erpnext/projects/doctype/activity_type/activity_type.json
+msgid "Default Billing Rate"
+msgstr "기본 청구 요금"
+
+#. Label of the buying_cost_center (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Buying Cost Center"
+msgstr "기본 구매 비용 센터"
+
+#. Label of the buying_price_list (Link) field in DocType 'Buying Settings'
+#. Label of the default_buying_price_list (Link) field in DocType 'Import
+#. Supplier Invoice'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Default Buying Price List"
+msgstr "기본 구매 가격표"
+
+#. Label of the default_buying_terms (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Buying Terms"
+msgstr "기본 구매 조건"
+
+#. Label of the default_cogs_account (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default COGS Account"
+msgstr ""
+
+#. Label of the default_cash_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Cash Account"
+msgstr "기본 현금 계좌"
+
+#. Label of the default_common_code (Link) field in DocType 'Code List'
+#: erpnext/edi/doctype/code_list/code_list.json
+msgid "Default Common Code"
+msgstr "기본 공통 코드"
+
+#. Label of the default_company (Link) field in DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Default Company"
+msgstr "기본 회사"
+
+#. Label of the default_bank_account (Link) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Default Company Bank Account"
+msgstr "기본 회사 은행 계좌"
+
+#. Label of the cost_center (Link) field in DocType 'Project'
+#. Label of the cost_center (Link) field in DocType 'Company'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Cost Center"
+msgstr "기본 비용 센터"
+
+#. Label of the default_expense_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Cost of Goods Sold Account"
+msgstr ""
+
+#. Label of the costing_rate (Currency) field in DocType 'Activity Type'
+#: erpnext/projects/doctype/activity_type/activity_type.json
+msgid "Default Costing Rate"
+msgstr ""
+
+#. Label of the default_currency (Link) field in DocType 'Company'
+#. Label of the default_currency (Link) field in DocType 'Global Defaults'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Default Currency"
+msgstr "기본 통화"
+
+#. Label of the customer_group (Link) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Default Customer Group"
+msgstr "기본 고객 그룹"
+
+#. Label of the default_deferred_expense_account (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Deferred Expense Account"
+msgstr ""
+
+#. Label of the default_deferred_revenue_account (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Deferred Revenue Account"
+msgstr ""
+
+#. Label of the default_dimension (Dynamic Link) field in DocType 'Accounting
+#. Dimension Detail'
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Default Dimension"
+msgstr "기본 크기"
+
+#. Label of the default_discount_account (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Discount Account"
+msgstr "기본 할인 계정"
+
+#. Label of the default_distance_unit (Link) field in DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Default Distance Unit"
+msgstr "기본 거리 단위"
+
+#. Label of the expense_account (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Expense Account"
+msgstr "기본 비용 계정"
+
+#. Label of the default_finance_book (Link) field in DocType 'Asset'
+#. Label of the default_finance_book (Link) field in DocType 'Company'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Finance Book"
+msgstr "기본 금융 장부"
+
+#. Label of the default_fg_warehouse (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Finished Goods Warehouse"
+msgstr "기본 완제품 창고"
+
+#. Label of the default_holiday_list (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Holiday List"
+msgstr "기본 휴일 목록"
+
+#. Label of the default_in_transit_warehouse (Link) field in DocType 'Company'
+#. Label of the default_in_transit_warehouse (Link) field in DocType
+#. 'Warehouse'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Default In-Transit Warehouse"
+msgstr "기본 운송 중 창고"
+
+#. Label of the default_income_account (Link) field in DocType 'Company'
+#. Label of the income_account (Link) field in DocType 'Item Default'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Income Account"
+msgstr "기본 소득 계정"
+
+#. Label of the default_inventory_account (Link) field in DocType 'Company'
+#. Label of the default_inventory_account (Link) field in DocType 'Item
+#. Default'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Inventory Account"
+msgstr "기본 재고 계정"
+
+#. Label of the item_group (Link) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Default Item Group"
+msgstr "기본 항목 그룹"
+
+#. Label of the default_item_manufacturer (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Item Manufacturer"
+msgstr "기본 품목 제조업체"
+
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr "기본 편지지(문서 유형)"
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
+#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Manufacturer Part No"
+msgstr "기본 제조업체 부품 번호"
+
+#. Label of the default_material_request_type (Select) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Material Request Type"
+msgstr "기본 자재 요청 유형"
+
+#. Label of the default_operating_cost_account (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Operating Cost Account"
+msgstr "기본 운영 비용 계정"
+
+#. Label of the default_payable_account (Link) field in DocType 'Company'
+#. Label of the default_payable_account (Section Break) field in DocType
+#. 'Supplier Group'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Default Payable Account"
+msgstr ""
+
+#. Label of the default_discount_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Payment Discount Account"
+msgstr "기본 결제 할인 계정"
+
+#. Label of the message (Small Text) field in DocType 'Payment Gateway Account'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+msgid "Default Payment Request Message"
+msgstr "기본 결제 요청 메시지"
+
+#. Label of the payment_terms (Link) field in DocType 'Supplier'
+#. Label of the payment_terms (Link) field in DocType 'Company'
+#. Label of the payment_terms (Link) field in DocType 'Customer Group'
+#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Default Payment Terms Template"
+msgstr ""
+
+#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
+#. Label of the default_price_list (Link) field in DocType 'Customer Group'
+#. Label of the default_price_list (Link) field in DocType 'Item Default'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Price List"
+msgstr "기본 가격표"
+
+#. Label of the default_priority (Link) field in DocType 'Service Level
+#. Agreement'
+#. Label of the default_priority (Check) field in DocType 'Service Level
+#. Priority'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+#: erpnext/support/doctype/service_level_priority/service_level_priority.json
+msgid "Default Priority"
+msgstr "기본 우선순위"
+
+#. Label of the default_provisional_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Provisional Account"
+msgstr "기본 임시 계정"
+
+#. Label of the default_provisional_account (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Provisional Account (Service)"
+msgstr "기본 임시 계정(서비스)"
+
+#. Label of the purchase_uom (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Purchase Unit of Measure"
+msgstr "기본 구매 측정 단위"
+
+#. Label of the default_valid_till (Data) field in DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Default Quotation Validity Days"
+msgstr ""
+
+#. Label of the default_receivable_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Receivable Account"
+msgstr "연체 채권 계정"
+
+#. Label of the default_sales_contact (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Sales Contact"
+msgstr "기본 판매 담당자"
+
+#. Label of the sales_uom (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Sales Unit of Measure"
+msgstr "기본 판매 측정 단위"
+
+#. Label of the default_scrap_warehouse (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Scrap Warehouse"
+msgstr "기본 스크랩 창고"
+
+#. Label of the selling_cost_center (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Selling Cost Center"
+msgstr "기본 판매 비용 센터"
+
+#. Label of the default_selling_terms (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Selling Terms"
+msgstr "기본 판매 조건"
+
+#. Label of the default_service_level_agreement (Check) field in DocType
+#. 'Service Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Default Service Level Agreement"
+msgstr "기본 서비스 수준 계약"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:161
+msgid "Default Service Level Agreement for {0} already exists."
+msgstr "{0} 에 대한 기본 서비스 수준 계약이 이미 존재합니다."
+
+#. Label of the default_source_warehouse (Link) field in DocType 'BOM'
+#. Label of the default_warehouse (Link) field in DocType 'BOM Creator'
+#. Label of the from_warehouse (Link) field in DocType 'Stock Entry'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Default Source Warehouse"
+msgstr ""
+
+#. Label of the stock_uom (Link) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Default Stock UOM"
+msgstr "기본 재고 단위"
+
+#. Label of the valuation_method (Select) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Stock Valuation Method"
+msgstr "기본 주식 평가 방법"
+
+#. Label of the default_supplier (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default Supplier"
+msgstr ""
+
+#. Label of the supplier_group (Link) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Default Supplier Group"
+msgstr ""
+
+#. Label of the default_target_warehouse (Link) field in DocType 'BOM'
+#. Label of the to_warehouse (Link) field in DocType 'Stock Entry'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Default Target Warehouse"
+msgstr "기본 대상 창고"
+
+#. Label of the territory (Link) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Default Territory"
+msgstr "기본 영역"
+
+#. Label of the stock_uom (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Default Unit of Measure"
+msgstr "기본 측정 단위"
+
+#: erpnext/stock/doctype/item/item.py:1393
+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:1376
+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:1024
+msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
+msgstr ""
+
+#. Label of the valuation_method (Select) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Default Valuation Method"
+msgstr "기본 평가 방법"
+
+#. Label of the default_warehouse_section (Section Break) field in DocType
+#. 'BOM'
+#. Label of the default_warehouse (Link) field in DocType 'Item Default'
+#. Label of the section_break_jwgn (Section Break) field in DocType 'Stock
+#. Entry'
+#. Label of the set_warehouse (Link) field in DocType 'Stock Reconciliation'
+#. Label of the default_warehouse (Link) field in DocType 'Stock Settings'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/stock/doctype/item_default/item_default.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Default Warehouse"
+msgstr "기본 창고"
+
+#. Label of the default_warehouse_for_sales_return (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Warehouse for Sales Return"
+msgstr "판매 반품 기본 창고"
+
+#. Label of the workstation (Link) field in DocType 'Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Default Workstation"
+msgstr ""
+
+#. Description of the 'Default Account' (Link) field in DocType 'Mode of
+#. Payment Account'
+#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json
+msgid "Default account will be automatically updated in POS Invoice when this mode is selected."
+msgstr ""
+
+#. Description of the 'Default Price List' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Default price list for buying or selling this item"
+msgstr "이 품목의 구매 또는 판매 시 기본 가격표"
+
+#. Description of a DocType
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Default settings for your stock-related transactions"
+msgstr "주식 관련 거래에 대한 기본 설정"
+
+#: erpnext/setup/doctype/company/company.js:207
+msgid "Default tax templates for sales, purchase and items are created."
+msgstr ""
+
+#. Description of the 'Time Between Operations (Mins)' (Int) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Default: 10 mins"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:17
+msgid "Defense"
+msgstr "방어"
+
+#. Label of the deferred_accounting_section (Section Break) field in DocType
+#. 'Company'
+#. Label of the deferred_accounting_section (Section Break) field in DocType
+#. 'Item'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Deferred Accounting"
+msgstr ""
+
+#. Label of the deferred_accounting_defaults_section (Section Break) field in
+#. DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Deferred Accounting Defaults"
+msgstr "연기된 회계 기본 설정"
+
+#. Label of the deferred_accounting_settings_section (Section Break) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Deferred Accounting Settings"
+msgstr "지연 회계 설정"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Label of the deferred_expense_section (Section Break) field in DocType
+#. 'Purchase Invoice Item'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+msgid "Deferred Expense"
+msgstr ""
+
+#. Label of the deferred_expense_account (Link) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the deferred_expense_account (Link) field in DocType 'Item Default'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Deferred Expense Account"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Label of the deferred_revenue (Section Break) field in DocType 'POS Invoice
+#. Item'
+#. Label of the deferred_revenue (Section Break) field in DocType 'Sales
+#. Invoice Item'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Deferred Revenue"
+msgstr ""
+
+#. Label of the deferred_revenue_account (Link) field in DocType 'POS Invoice
+#. Item'
+#. Label of the deferred_revenue_account (Link) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the deferred_revenue_account (Link) field in DocType 'Item Default'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Deferred Revenue Account"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.json
+msgid "Deferred Revenue and Expense"
+msgstr ""
+
+#: erpnext/accounts/deferred_revenue.py:541
+msgid "Deferred accounting failed for some invoices:"
+msgstr ""
+
+#: erpnext/config/projects.py:39
+msgid "Define Project type."
+msgstr "프로젝트 유형을 정의하세요."
+
+#. Description of the 'End of Life' (Date) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
+msgstr ""
+
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Dekagram/Litre"
+msgstr "데카그램/리터"
+
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:130
+msgid "Delay (In Days)"
+msgstr "지연 시간(일)"
+
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:322
+msgid "Delay (in Days)"
+msgstr "지연 시간(일)"
+
+#. Label of the stop_delay (Int) field in DocType 'Delivery Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Delay between Delivery Stops"
+msgstr "배송 정류장 간 지연"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:120
+msgid "Delay in payment (Days)"
+msgstr "지불 지연 기간(일)"
+
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:157
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:72
+msgid "Delayed Days"
+msgstr "지연 일수"
+
+#. Name of a report
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.json
+msgid "Delayed Item Report"
+msgstr "지연 항목 보고서"
+
+#. Name of a report
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.json
+msgid "Delayed Order Report"
+msgstr "주문 지연 보고서"
+
+#. Name of a report
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Delayed Tasks Summary"
+msgstr "지연된 작업 요약"
+
+#. Label of the delete_linked_ledger_entries (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Delete Accounting and Stock Ledger Entries on deletion of Transaction"
+msgstr ""
+
+#. Label of the delete_bin_data_status (Select) field in DocType 'Transaction
+#. Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Delete Bins"
+msgstr "휴지통 삭제"
+
+#. Label of the delete_cancelled_entries (Check) field in DocType 'Repost
+#. Accounting Ledger'
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json
+msgid "Delete Cancelled Ledger Entries"
+msgstr "취소된 장부 항목 삭제"
+
+#. Label of a standard navbar item
+#. Type: Action
+#: erpnext/hooks.py erpnext/public/js/utils/demo.js:5
+msgid "Delete Demo Data"
+msgstr "데모 데이터 삭제"
+
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.js:66
+msgid "Delete Dimension"
+msgstr "차원 삭제"
+
+#. Label of the delete_leads_and_addresses_status (Select) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Delete Leads and Addresses"
+msgstr ""
+
+#. Label of the delete_transactions_status (Select) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/company/company.js:184
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Delete Transactions"
+msgstr "거래 삭제"
+
+#: erpnext/setup/doctype/company/company.js:253
+msgid "Delete all the Transactions for this Company"
+msgstr "이 회사의 모든 거래 내역을 삭제하세요"
+
+#. Label of a Link in the ERPNext Settings Workspace
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+msgid "Deleted Documents"
+msgstr "삭제된 문서"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:293
+msgid "Deleting closing balance..."
+msgstr "최종 잔액을 삭제합니다..."
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:148
+msgid "Deleting rule..."
+msgstr "규칙 삭제 중..."
+
+#: erpnext/edi/doctype/code_list/code_list.js:28
+msgid "Deleting {0} and all associated Common Code documents..."
+msgstr "{0} 및 관련 공통 코드 문서를 모두 삭제합니다..."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+msgid "Deletion in Progress!"
+msgstr "삭제 진행 중!"
+
+#: erpnext/regional/__init__.py:14
+msgid "Deletion is not permitted for country {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:216
+msgid "Deletion process restarted"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:97
+msgid "Deletion will start automatically after submission."
+msgstr "제출 후 삭제 절차가 자동으로 시작됩니다."
+
+#. Label of the delimiter_options (Data) field in DocType 'Bank Statement
+#. Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Delimiter options"
+msgstr "구분 기호 옵션"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:335
+msgid "Deliver (Dropship)"
+msgstr ""
+
+#. Label of the deliver_secondary_items (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Deliver secondary Items"
+msgstr "보조 품목을 배송합니다"
+
+#. Option for the 'Status' (Select) field in DocType 'Purchase Order'
+#. Option for the 'Status' (Select) field in DocType 'Serial No'
+#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment'
+#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:20
+#: erpnext/controllers/website_list_for_contact.py:209
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:61
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Delivered"
+msgstr "배송 완료"
+
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:64
+msgid "Delivered Amount"
+msgstr "전달된 금액"
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:10
+msgid "Delivered At Place"
+msgstr "현장 배송"
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:11
+msgid "Delivered At Place Unloaded"
+msgstr ""
+
+#. Label of the delivered_by_supplier (Check) field in DocType 'POS Invoice
+#. Item'
+#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Invoice
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Delivered By Supplier"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:12
+msgid "Delivered Duty Paid"
+msgstr "관세 납부 완료"
+
+#. Name of a report
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.json
+msgid "Delivered Items To Be Billed"
+msgstr "배송 완료된 품목에 대한 청구서 발행"
+
+#. Label of the delivered_qty (Float) field in DocType 'POS Invoice Item'
+#. Label of the delivered_qty (Float) field in DocType 'Sales Invoice Item'
+#. Label of the delivered_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the delivered_qty (Float) field in DocType 'Serial and Batch Entry'
+#. Label of the delivered_qty (Float) field in DocType 'Stock Reservation
+#. Entry'
+#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Item'
+#. Label of the delivered_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Secondary Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:765
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:262
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:63
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:131
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+msgid "Delivered Qty"
+msgstr "납품 수량"
+
+#. Label of the delivered_qty (Float) field in DocType 'Pick List Item'
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Delivered Qty (in Stock UOM)"
+msgstr "납품 수량 (재고 단위)"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
+msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
+msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
+msgstr ""
+
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:102
+msgid "Delivered Quantity"
+msgstr "납품 수량"
+
+#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase
+#. Invoice Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+msgid "Delivered by Supplier"
+msgstr ""
+
+#. Label of the delivered_by_supplier (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Delivered by Supplier (Drop Ship)"
+msgstr ""
+
+#: erpnext/templates/pages/material_request_info.html:66
+msgid "Delivered: {0}"
+msgstr "배송 완료: {0}"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Delivery"
+msgstr "배달"
+
+#. Label of the delivery_date (Date) field in DocType 'Master Production
+#. Schedule Item'
+#. Label of the delivery_date (Date) field in DocType 'Sales Forecast Item'
+#. Label of the delivery_date (Date) field in DocType 'Delivery Schedule Item'
+#. Label of the delivery_date (Date) field in DocType 'Sales Order'
+#. Label of the delivery_date (Date) field in DocType 'Sales Order Item'
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1068
+#: erpnext/public/js/utils.js:890
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:662
+#: erpnext/selling/doctype/sales_order/sales_order.js:1571
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:321
+msgid "Delivery Date"
+msgstr "배송일"
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Delivery
+#. Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Delivery Details"
+msgstr "배송 정보"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:119
+msgid "Delivery From Date"
+msgstr "배송 시작일"
+
+#. Name of a role
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/vehicle/vehicle.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Delivery Manager"
+msgstr "배송 관리자"
+
+#. Label of the delivery_note (Link) field in DocType 'POS Invoice Item'
+#. Label of the delivery_note (Link) field in DocType 'Sales Invoice Item'
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Name of a DocType
+#. Label of the delivery_note (Link) field in DocType 'Delivery Stop'
+#. Label of the delivery_note (Link) field in DocType 'Packing Slip'
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Label of the delivery_note (Link) field in DocType 'Shipment Delivery Note'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:291
+#: erpnext/accounts/report/sales_register/sales_register.py:245
+#: erpnext/selling/doctype/sales_order/sales_order.js:1086
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:81
+#: erpnext/selling/doctype/selling_settings/selling_settings.js:52
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:54
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/pick_list/pick_list.js:137
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:59
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Delivery Note"
+msgstr "배송 전표"
+
+#. Label of the dn_detail (Data) field in DocType 'POS Invoice Item'
+#. Label of the dn_detail (Data) field in DocType 'Sales Invoice Item'
+#. Label of the items (Table) field in DocType 'Delivery Note'
+#. Name of a DocType
+#. Label of the dn_detail (Data) field in DocType 'Packing Slip Item'
+#. Label of the delivery_note_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Delivery Note Item"
+msgstr "배송 전표 품목"
+
+#. Label of the delivery_note_no (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Delivery Note No"
+msgstr "배송 전표 번호"
+
+#. Label of the pi_detail (Data) field in DocType 'Packing Slip Item'
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+msgid "Delivery Note Packed Item"
+msgstr "배송 전표 포장된 품목"
+
+#. Label of a Link in the Selling Workspace
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Delivery Note Trends"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
+msgid "Delivery Note {0} is not submitted"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
+msgid "Delivery Notes"
+msgstr "배송 참고 사항"
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:95
+msgid "Delivery Notes should not be in draft state when submitting a Delivery Trip. The following Delivery Notes are still in draft state: {0}. Please submit them first."
+msgstr "배송 전표는 배송 요청 제출 시 초안 상태가 아니어야 합니다. 다음 배송 전표는 아직 초안 상태입니다: {0}. 먼저 제출해 주십시오."
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:150
+msgid "Delivery Notes {0} updated"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:657
+#: erpnext/selling/doctype/sales_order/sales_order.js:684
+msgid "Delivery Schedule"
+msgstr "배송 일정"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+msgid "Delivery Schedule Item"
+msgstr "배송 일정 품목"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Delivery Settings"
+msgstr "배송 설정"
+
+#. Name of a DocType
+#. Label of the delivery_stops (Table) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Delivery Stop"
+msgstr "배송 중단"
+
+#. Label of the delivery_service_stops (Section Break) field in DocType
+#. 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Delivery Stops"
+msgstr "배송 정류장"
+
+#. Label of the delivery_to (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Delivery To"
+msgstr "배송"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:125
+msgid "Delivery To Date"
+msgstr "배송 현황"
+
+#. Label of the delivery_trip (Link) field in DocType 'Delivery Note'
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:280
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Delivery Trip"
+msgstr "배송 여정"
+
+#. Name of a role
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/vehicle/vehicle.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Delivery User"
+msgstr "배달 사용자"
+
+#. Label of the delivery_warehouse (Link) field in DocType 'Subcontracting
+#. Inward Order Item'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+msgid "Delivery Warehouse"
+msgstr "배송 창고"
+
+#. Label of the heading_delivery_to (Heading) field in DocType 'Shipment'
+#. Label of the delivery_to_type (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Delivery to"
+msgstr "배송"
+
+#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
+#. DocType 'Master Production Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:233
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:312
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:377
+msgid "Demand"
+msgstr "수요"
+
+#. Label of the demand_qty (Float) field in DocType 'Sales Forecast Item'
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1016
+msgid "Demand Qty"
+msgstr "수요 수량"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:324
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:389
+msgid "Demand vs Supply"
+msgstr "수요와 공급"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:551
+msgid "Demo Bank Account"
+msgstr "데모 은행 계좌"
+
+#. Label of the demo_company (Link) field in DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Demo Company"
+msgstr "데모 회사"
+
+#: erpnext/setup/demo.py:51
+msgid "Demo Data creation failed."
+msgstr "데모 데이터 생성에 실패했습니다."
+
+#: erpnext/public/js/utils/demo.js:25
+msgid "Demo data cleared"
+msgstr ""
+
+#: erpnext/setup/demo.py:42
+msgid "Demo data creation failed. Check notifications for more info."
+msgstr "데모 데이터 생성에 실패했습니다. 자세한 내용은 알림을 확인하세요."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:18
+msgid "Department Stores"
+msgstr "백화점"
+
+#. Label of the departure_time (Datetime) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Departure Time"
+msgstr "출발 시간"
+
+#. Label of the dependant_sle_voucher_detail_no (Data) field in DocType 'Stock
+#. Ledger Entry'
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Dependant SLE Voucher Detail No"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/projects/doctype/dependent_task/dependent_task.json
+msgid "Dependent Task"
+msgstr "종속 작업"
+
+#: erpnext/projects/doctype/task/task.py:180
+msgid "Dependent Task {0} is not a Template Task"
+msgstr ""
+
+#. Label of the depends_on (Table) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Dependent Tasks"
+msgstr "종속 작업"
+
+#. Label of the depends_on_tasks (Code) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Depends on Tasks"
+msgstr "작업에 따라 다릅니다"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the deposit (Currency) field in DocType 'Bank Transaction'
+#. Option for the 'Transaction Type' (Select) field in DocType 'Bank
+#. Transaction Rule'
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:95
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:162
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:238
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:305
+#: banking/src/pages/BankStatementImporter.tsx:164
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:60
+msgid "Deposit"
+msgstr "보증금"
+
+#. Label of the daily_prorata_based (Check) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the daily_prorata_based (Check) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Depreciate based on daily pro-rata"
+msgstr ""
+
+#. Label of the shift_based (Check) field in DocType 'Asset Depreciation
+#. Schedule'
+#. Label of the shift_based (Check) field in DocType 'Asset Finance Book'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Depreciate based on shifts"
+msgstr ""
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:212
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:452
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:520
+msgid "Depreciated Amount"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
+#. Group in Asset's connections
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:109
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/report/account_balance/account_balance.js:44
+#: erpnext/accounts/report/cash_flow/cash_flow.py:162
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Depreciation"
+msgstr ""
+
+#. Label of the depreciation_amount (Currency) field in DocType 'Depreciation
+#. Schedule'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:172
+#: erpnext/assets/doctype/asset/asset.js:379
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+msgid "Depreciation Amount"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:882
+msgid "Depreciation Amount during the period"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:154
+msgid "Depreciation Date"
+msgstr ""
+
+#. Label of the section_break_33 (Section Break) field in DocType 'Asset'
+#. Label of the depreciation_details_section (Section Break) field in DocType
+#. 'Asset Depreciation Schedule'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "Depreciation Details"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:888
+msgid "Depreciation Eliminated due to disposal of assets"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:190
+#: erpnext/assets/doctype/asset/asset.js:122
+msgid "Depreciation Entry"
+msgstr ""
+
+#. Label of the depr_entry_posting_status (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Depreciation Entry Posting Status"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:1262
+msgid "Depreciation Entry against asset {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:259
+msgid "Depreciation Entry against {0} worth {1}"
+msgstr ""
+
+#. Label of the depreciation_expense_account (Link) field in DocType 'Asset
+#. Category Account'
+#. Label of the depreciation_expense_account (Link) field in DocType 'Company'
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Depreciation Expense Account"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:306
+msgid "Depreciation Expense Account should be an Income or Expense Account."
+msgstr ""
+
+#. Label of the depreciation_method (Select) field in DocType 'Asset'
+#. Label of the depreciation_method (Select) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the depreciation_method (Select) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Depreciation Method"
+msgstr ""
+
+#. Label of the depreciation_options (Section Break) field in DocType 'Asset
+#. Category'
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Depreciation Options"
+msgstr ""
+
+#. Label of the depreciation_start_date (Date) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Depreciation Posting Date"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:919
+msgid "Depreciation Posting Date cannot be before Available-for-use Date"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:388
+msgid "Depreciation Row {0}: Depreciation Posting Date cannot be before Available-for-use Date"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:721
+msgid "Depreciation Row {0}: Expected value after useful life must be greater than or equal to {1}"
+msgstr ""
+
+#. Label of the depreciation_schedule_sb (Section Break) field in DocType
+#. 'Asset'
+#. Label of the depreciation_schedule_section (Section Break) field in DocType
+#. 'Asset Depreciation Schedule'
+#. Label of the depreciation_schedule (Table) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the depreciation_schedule_section (Section Break) field in DocType
+#. 'Asset Shift Allocation'
+#. Label of the depreciation_schedule (Table) field in DocType 'Asset Shift
+#. Allocation'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Depreciation Schedule"
+msgstr ""
+
+#. Label of the depreciation_schedule_view (HTML) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Depreciation Schedule View"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:486
+msgid "Depreciation cannot be calculated for fully depreciated assets"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:900
+msgid "Depreciation eliminated via reversal"
+msgstr ""
+
+#. Label of the description_rules (Table) field in DocType 'Bank Transaction
+#. Rule'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Description Rules"
+msgstr "설명 규칙"
+
+#. Label of the description_of_content (Small Text) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Description of Content"
+msgstr "콘텐츠 설명"
+
+#. Description of the 'Template Name' (Data) field in DocType 'Financial Report
+#. Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+msgid "Descriptive name for your template (e.g., 'Standard P&L', 'Detailed Balance Sheet')"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:14
+msgid "Designer"
+msgstr "디자이너"
+
+#. Label of the order_lost_reason (Small Text) field in DocType 'Opportunity'
+#. Label of the order_lost_reason (Small Text) field in DocType 'Quotation'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/public/js/utils/sales_common.js:612
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Detailed Reason"
+msgstr ""
+
+#. Label of the detected_amount_format (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:182
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Detected Amount Format"
+msgstr "감지된 금액 형식"
+
+#. Label of the detected_date_format (Data) field in DocType 'Bank Statement
+#. Import Log'
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:195
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Detected Date Format"
+msgstr "감지된 날짜 형식"
+
+#. Label of the detected_header_index (Int) field in DocType 'Bank Statement
+#. Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Detected Header Index"
+msgstr "감지된 헤더 인덱스"
+
+#. Label of the detected_transaction_ending_index (Int) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Detected Transaction Ending Index"
+msgstr "감지된 거래 종료 인덱스"
+
+#. Label of the detected_transaction_starting_index (Int) field in DocType
+#. 'Bank Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Detected Transaction Starting Index"
+msgstr "감지된 거래 시작 인덱스"
+
+#. Label of the determine_address_tax_category_from (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Determine Address Tax Category From"
+msgstr "주소 세금 범주를 결정하세요"
+
+#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Diesel"
+msgstr "디젤"
+
+#. Label of the difference_heading (Heading) field in DocType 'Bisect
+#. Accounting Statements'
+#. Label of the difference (Float) field in DocType 'Bisect Nodes'
+#. Label of the difference (Currency) field in DocType 'POS Closing Entry
+#. Detail'
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:106
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:813
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:894
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:173
+#: erpnext/public/js/bank_reconciliation_tool/number_card.js:30
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:130
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:35
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:35
+msgid "Difference"
+msgstr "차이점"
+
+#. Label of the difference (Currency) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Difference (Dr - Cr)"
+msgstr ""
+
+#. Label of the difference_account (Link) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the difference_account (Link) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the difference_account (Link) field in DocType 'Asset Value
+#. Adjustment'
+#. Label of the expense_account (Link) field in DocType 'Stock Entry Detail'
+#. Label of the expense_account (Link) field in DocType 'Stock Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:314
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Difference Account"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
+msgid "Difference Account in Items Table"
+msgstr "항목 표의 차이 계정"
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
+msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
+msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
+msgstr ""
+
+#. Label of the difference_amount (Currency) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the difference_amount (Currency) field in DocType 'Payment
+#. Reconciliation Payment'
+#. Label of the difference_amount (Currency) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the difference_amount (Currency) field in DocType 'Asset Value
+#. Adjustment'
+#. Label of the difference_amount (Currency) field in DocType 'Stock
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:329
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Difference Amount"
+msgstr ""
+
+#. Label of the difference_amount (Currency) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Difference Amount (Company Currency)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:204
+msgid "Difference Amount must be zero"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:49
+msgid "Difference In"
+msgstr "차이점"
+
+#. Label of the gain_loss_posting_date (Date) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the gain_loss_posting_date (Date) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the difference_posting_date (Date) field in DocType 'Purchase
+#. Invoice Advance'
+#. Label of the difference_posting_date (Date) field in DocType 'Sales Invoice
+#. Advance'
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Difference Posting Date"
+msgstr "게시 날짜 차이"
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:120
+msgid "Difference Qty"
+msgstr "차이 수량"
+
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:136
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:168
+msgid "Difference Value"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:504
+msgid "Different 'Source Warehouse' and 'Target Warehouse' can be set for each row."
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:194
+msgid "Different UOM for items will lead to incorrect (Total) Net Weight value. Make sure that Net Weight of each item is in the same UOM."
+msgstr ""
+
+#. Label of the dimension_defaults (Table) field in DocType 'Accounting
+#. Dimension'
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json
+msgid "Dimension Defaults"
+msgstr ""
+
+#. Label of the dimension_details_tab (Tab Break) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Dimension Details"
+msgstr ""
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:92
+msgid "Dimension Filter"
+msgstr "차원 필터"
+
+#. Label of the dimension_filter_help (HTML) field in DocType 'Accounting
+#. Dimension Filter'
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Dimension Filter Help"
+msgstr "차원 필터 도움말"
+
+#. Label of the label (Data) field in DocType 'Accounting Dimension'
+#. Label of the dimension_name (Data) field in DocType 'Inventory Dimension'
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Dimension Name"
+msgstr "차원 이름"
+
+#. Name of a report
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.json
+msgid "Dimension-wise Accounts Balance Report"
+msgstr ""
+
+#. Label of the dimensions_section (Section Break) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Dimensions"
+msgstr "치수"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Direct Expense"
+msgstr "직접 비용"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
+msgid "Direct Expenses"
+msgstr "직접 경비"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+msgid "Direct Income"
+msgstr "직접 소득"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:360
+msgid "Direct return is not allowed for Timesheet."
+msgstr ""
+
+#. Label of the disabled (Check) field in DocType 'Account'
+#. Label of the disabled (Check) field in DocType 'Accounting Dimension'
+#. Label of the disable (Check) field in DocType 'Pricing Rule'
+#. Label of the disable (Check) field in DocType 'Promotional Scheme'
+#. Label of the disable (Check) field in DocType 'Promotional Scheme Price
+#. Discount'
+#. Label of the disable (Check) field in DocType 'Promotional Scheme Product
+#. Discount'
+#. Label of the disable (Check) field in DocType 'Putaway Rule'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+msgid "Disable"
+msgstr "장애를 입히다"
+
+#. Label of the disable_capacity_planning (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Disable Capacity Planning"
+msgstr "용량 계획 비활성화"
+
+#. Label of the disable_cumulative_threshold (Check) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Disable Cumulative Threshold"
+msgstr ""
+
+#. Label of the disable_in_words (Check) field in DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Disable In Words"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:182
+msgid "Disable Opening Balance Calculation"
+msgstr "개시 잔액 계산 비활성화"
+
+#. Label of the disable_rounded_total (Check) field in DocType 'POS Profile'
+#. Label of the disable_rounded_total (Check) field in DocType 'Purchase
+#. Invoice'
+#. Label of the disable_rounded_total (Check) field in DocType 'Sales Invoice'
+#. Label of the disable_rounded_total (Check) field in DocType 'Purchase Order'
+#. Label of the disable_rounded_total (Check) field in DocType 'Supplier
+#. Quotation'
+#. Label of the disable_rounded_total (Check) field in DocType 'Quotation'
+#. Label of the disable_rounded_total (Check) field in DocType 'Sales Order'
+#. Label of the disable_rounded_total (Check) field in DocType 'Global
+#. Defaults'
+#. Label of the disable_rounded_total (Check) field in DocType 'Delivery Note'
+#. Label of the disable_rounded_total (Check) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Disable Rounded Total"
+msgstr ""
+
+#. Label of the disable_serial_no_and_batch_selector (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Disable Serial No And Batch Selector"
+msgstr ""
+
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
+#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Disable Transaction Threshold"
+msgstr ""
+
+#. Label of the disable_last_purchase_rate (Check) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Disable last purchase rate"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Financial Report
+#. Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+msgid "Disable template to prevent use in reports"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:150
+msgid "Disabled Account Selected"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:94
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:526
+msgid "Disabled Bank Account"
+msgstr "장애인 은행 계좌"
+
+#: erpnext/stock/utils.py:434
+msgid "Disabled Warehouse {0} cannot be used for this transaction."
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Disabled items cannot be selected in any transaction."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:905
+msgid "Disabled pricing rules since this {} is an internal transfer"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:919
+msgid "Disabled tax included prices since this {} is an internal transfer"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:79
+msgid "Disabled template must not be default template"
+msgstr ""
+
+#. Description of the 'Scan Mode' (Check) field in DocType 'Stock
+#. Reconciliation'
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Disables auto-fetching of existing quantity"
+msgstr ""
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Disassemble"
+msgstr "분해하기"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
+msgid "Disassemble Order"
+msgstr "분해 순서"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
+msgid "Disassemble Qty cannot be less than or equal to 0."
+msgstr "분해 수량은 0보다 작거나 같을 수 없습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
+msgid "Disassemble Qty cannot be less than or equal to 0 ."
+msgstr "분해 수량은 0 이하일 수 없습니다."
+
+#. Label of the disassembled_qty (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Disassembled Qty"
+msgstr "분해된 수량"
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:64
+msgid "Disburse Loan"
+msgstr "대출금 지급"
+
+#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:9
+msgid "Disbursed"
+msgstr ""
+
+#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Discard Changes and Load New Invoice"
+msgstr "변경 사항을 버리고 새 송장을 불러오세요"
+
+#. Label of the discount (Float) field in DocType 'Payment Schedule'
+#. Label of the discount (Float) field in DocType 'Payment Term'
+#. Label of the discount (Float) field in DocType 'Payment Terms Template
+#. Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:406
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:147
+#: erpnext/templates/form_grid/item_grid.html:71
+msgid "Discount"
+msgstr "할인"
+
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:176
+msgid "Discount (%)"
+msgstr "할인 (%)"
+
+#. Label of the discount_percentage (Percent) field in DocType 'POS Invoice
+#. Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Quotation Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Sales Order
+#. Item'
+#. Label of the discount_percentage (Float) field in DocType 'Delivery Note
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Discount (%) on Price List Rate with Margin"
+msgstr ""
+
+#. Label of the additional_discount_account (Link) field in DocType 'Sales
+#. Invoice'
+#. Label of the discount_account (Link) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Discount Account"
+msgstr "할인 계정"
+
+#. Label of the discount_amount (Currency) field in DocType 'POS Invoice Item'
+#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule'
+#. Label of the discount_amount (Currency) field in DocType 'Pricing Rule'
+#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the discount_amount (Currency) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the discount_amount (Currency) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the discount_amount (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the discount_amount (Currency) field in DocType 'Quotation Item'
+#. Label of the discount_amount (Currency) field in DocType 'Sales Order Item'
+#. Label of the discount_amount (Currency) field in DocType 'Delivery Note
+#. Item'
+#. Label of the discount_amount (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Discount Amount"
+msgstr "할인 금액"
+
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:58
+msgid "Discount Amount in Transaction"
+msgstr "거래 할인 금액"
+
+#. Label of the discount_date (Date) field in DocType 'Payment Schedule'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+msgid "Discount Date"
+msgstr "할인 날짜"
+
+#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule'
+#. Label of the discount_percentage (Float) field in DocType 'Pricing Rule'
+#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the discount_percentage (Float) field in DocType 'Promotional
+#. Scheme Price Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "Discount Percentage"
+msgstr "할인율"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:56
+msgid "Discount Percentage can be applied either against a Price List or for all Price List."
+msgstr "할인율은 특정 가격표에 적용하거나 모든 가격표에 적용할 수 있습니다."
+
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:52
+msgid "Discount Percentage in Transaction"
+msgstr "거래 할인율"
+
+#. Label of the section_break_8 (Section Break) field in DocType 'Payment Term'
+#. Label of the section_break_8 (Section Break) field in DocType 'Payment Terms
+#. Template Detail'
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Discount Settings"
+msgstr "할인 설정"
+
+#. Label of the discount_type (Select) field in DocType 'Payment Schedule'
+#. Label of the discount_type (Select) field in DocType 'Payment Term'
+#. Label of the discount_type (Select) field in DocType 'Payment Terms Template
+#. Detail'
+#. Label of the rate_or_discount (Select) field in DocType 'Promotional Scheme
+#. Price Discount'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "Discount Type"
+msgstr "할인 유형"
+
+#. Label of the discount_validity (Int) field in DocType 'Payment Schedule'
+#. Label of the discount_validity (Int) field in DocType 'Payment Term'
+#. Label of the discount_validity (Int) field in DocType 'Payment Terms
+#. Template Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Discount Validity"
+msgstr ""
+
+#. Label of the discount_validity_based_on (Select) field in DocType 'Payment
+#. Schedule'
+#. Label of the discount_validity_based_on (Select) field in DocType 'Payment
+#. Term'
+#. Label of the discount_validity_based_on (Select) field in DocType 'Payment
+#. Terms Template Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Discount Validity Based On"
+msgstr ""
+
+#. Label of the discount_and_margin (Section Break) field in DocType 'POS
+#. Invoice Item'
+#. Label of the section_break_26 (Section Break) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the discount_and_margin (Section Break) field in DocType 'Sales
+#. Invoice Item'
+#. Label of the discount_and_margin_section (Section Break) field in DocType
+#. 'Purchase Order Item'
+#. Label of the discount_and_margin_section (Section Break) field in DocType
+#. 'Supplier Quotation Item'
+#. Label of the discount_and_margin (Section Break) field in DocType 'Quotation
+#. Item'
+#. Label of the discount_and_margin (Section Break) field in DocType 'Sales
+#. Order Item'
+#. Label of the discount_and_margin (Section Break) field in DocType 'Delivery
+#. Note Item'
+#. Label of the discount_and_margin_section (Section Break) field in DocType
+#. 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Discount and Margin"
+msgstr "할인 및 마진"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:824
+msgid "Discount cannot be greater than 100%"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:416
+msgid "Discount cannot be greater than 100%."
+msgstr "할인율은 100%를 초과할 수 없습니다."
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:93
+msgid "Discount must be less than 100"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:3357
+msgid "Discount of {} applied as per Payment Term"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Pricing
+#. Rule'
+#. Label of the section_break_10 (Section Break) field in DocType 'Promotional
+#. Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Discount on Other Item"
+msgstr "다른 상품 할인"
+
+#. Label of the discount_percentage (Percent) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Purchase Order
+#. Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the discount_percentage (Percent) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Discount on Price List Rate (%)"
+msgstr "정가 대비 할인율(%)"
+
+#. Label of the discounted_amount (Currency) field in DocType 'Overdue Payment'
+#. Label of the discounted_amount (Currency) field in DocType 'Payment
+#. Schedule'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+msgid "Discounted Amount"
+msgstr "할인 금액"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
+msgid "Discounted Invoice"
+msgstr "할인된 송장"
+
+#. Label of the sb_2 (Section Break) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Discounts"
+msgstr "할인"
+
+#. Description of the 'Is Recursive' (Check) field in DocType 'Pricing Rule'
+#. Description of the 'Is Recursive' (Check) field in DocType 'Promotional
+#. Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Discounts to be applied in sequential ranges like buy 1 get 1, buy 2 get 2, buy 3 get 3 and so on"
+msgstr ""
+
+#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType
+#. 'Ledger Health Monitor'
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+msgid "Discrepancy between General and Payment Ledger"
+msgstr ""
+
+#. Label of the discretionary_reason (Data) field in DocType 'Loyalty Point
+#. Entry'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+msgid "Discretionary Reason"
+msgstr ""
+
+#. Label of the dislike_count (Float) field in DocType 'Video'
+#: erpnext/utilities/doctype/video/video.json
+#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:27
+msgid "Dislikes"
+msgstr "싫어함"
+
+#: erpnext/setup/doctype/company/company.py:484
+msgid "Dispatch"
+msgstr "보내다"
+
+#. Label of the dispatch_address_display (Text Editor) field in DocType
+#. 'Purchase Invoice'
+#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Invoice'
+#. Label of the dispatch_address (Link) field in DocType 'Purchase Order'
+#. Label of the dispatch_address (Text Editor) field in DocType 'Sales Order'
+#. Label of the dispatch_address (Text Editor) field in DocType 'Delivery Note'
+#. Label of the dispatch_address_display (Text Editor) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Dispatch Address"
+msgstr "발송 주소"
+
+#. Label of the dispatch_address_display (Text Editor) field in DocType
+#. 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Dispatch Address Details"
+msgstr ""
+
+#. Label of the dispatch_address_name (Link) field in DocType 'Sales Invoice'
+#. Label of the dispatch_address_name (Link) field in DocType 'Sales Order'
+#. Label of the dispatch_address_name (Link) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Dispatch Address Name"
+msgstr "발송 주소 이름"
+
+#. Label of the dispatch_address (Link) field in DocType 'Purchase Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Dispatch Address Template"
+msgstr ""
+
+#. Label of the section_break_9 (Section Break) field in DocType 'Delivery
+#. Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Dispatch Information"
+msgstr ""
+
+#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:11
+#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:20
+#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:28
+#: erpnext/setup/setup_wizard/operations/defaults_setup.py:58
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:340
+msgid "Dispatch Notification"
+msgstr "배송 알림"
+
+#. Label of the dispatch_attachment (Link) field in DocType 'Delivery Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Dispatch Notification Attachment"
+msgstr ""
+
+#. Label of the dispatch_template (Link) field in DocType 'Delivery Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Dispatch Notification Template"
+msgstr ""
+
+#. Label of the sb_dispatch (Section Break) field in DocType 'Delivery
+#. Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Dispatch Settings"
+msgstr ""
+
+#. Label of the display_name (Data) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Display Name"
+msgstr "표시 이름"
+
+#. Label of the disposal_date (Date) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Disposal Date"
+msgstr "폐기일"
+
+#: erpnext/assets/doctype/asset/depreciation.py:838
+msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
+msgstr "자산의 처분일 {0} 은 {1} 일 {2} 일보다 이전일 수 없습니다."
+
+#. Label of the distance (Float) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Distance"
+msgstr "거리"
+
+#. Label of the uom (Link) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Distance UOM"
+msgstr "거리 단위"
+
+#. Label of the acc_pay_dist_from_left_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Distance from left edge"
+msgstr "왼쪽 가장자리로부터의 거리"
+
+#. Label of the acc_pay_dist_from_top_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the date_dist_from_top_edge (Float) field in DocType 'Cheque Print
+#. Template'
+#. Label of the payer_name_from_top_edge (Float) field in DocType 'Cheque Print
+#. Template'
+#. Label of the amt_in_words_from_top_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the amt_in_figures_from_top_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the acc_no_dist_from_top_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the signatory_from_top_edge (Float) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Distance from top edge"
+msgstr "상단 가장자리로부터의 거리"
+
+#. Description of a DocType
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Distinct unit of an Item"
+msgstr "항목의 개별 단위"
+
+#. Label of the distribute_additional_costs_based_on (Select) field in DocType
+#. 'Subcontracting Order'
+#. Label of the distribute_additional_costs_based_on (Select) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Distribute Additional Costs Based On "
+msgstr "추가 비용을 다음과 같은 기준으로 분배합니다. "
+
+#. Label of the distribute_charges_based_on (Select) field in DocType 'Landed
+#. Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Distribute Charges Based On"
+msgstr ""
+
+#. Label of the distribute_equally (Check) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Distribute Equally"
+msgstr "균등하게 분배하세요"
+
+#. Option for the 'Distribute Charges Based On' (Select) field in DocType
+#. 'Landed Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Distribute Manually"
+msgstr "수동으로 배포"
+
+#. Label of the distributed_discount_amount (Currency) field in DocType 'POS
+#. Invoice Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Purchase Invoice Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales
+#. Invoice Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Purchase Order Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Supplier Quotation Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Quotation Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType 'Sales
+#. Order Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Delivery Note Item'
+#. Label of the distributed_discount_amount (Currency) field in DocType
+#. 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Distributed Discount Amount"
+msgstr ""
+
+#. Label of the distribution_frequency (Select) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Distribution Frequency"
+msgstr "분포 빈도"
+
+#. Label of the distribution_id (Data) field in DocType 'Monthly Distribution'
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+msgid "Distribution Name"
+msgstr "배포 이름"
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:2
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:240
+msgid "Distributor"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+msgid "Dividends Paid"
+msgstr "배당금 지급"
+
+#. Option for the 'Marital Status' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Divorced"
+msgstr "이혼한"
+
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/report/lead_details/lead_details.js:41
+msgid "Do Not Contact"
+msgstr "연락하지 마세요"
+
+#. Label of the do_not_explode (Check) field in DocType 'BOM Creator Item'
+#. Label of the do_not_explode (Check) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Do Not Explode"
+msgstr "폭발하지 마세요"
+
+#. Label of the do_not_update_serial_batch_on_creation_of_auto_bundle (Check)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Do Not Update Serial / Batch on Creation of Auto Bundle"
+msgstr ""
+
+#. Label of the do_not_use_batchwise_valuation (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Do Not Use Batch-wise Valuation"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:128
+msgid "Do Not Use Batchwise Valuation"
+msgstr ""
+
+#. Label of the do_not_fetch_incoming_rate_from_serial_no (Check) field in
+#. DocType 'Stock Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Do not fetch incoming rate from Serial No"
+msgstr ""
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Do not import"
+msgstr "수입하지 마세요"
+
+#. Description of the 'Hide Currency Symbol' (Select) field in DocType 'Global
+#. Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Do not show any symbol like $ etc next to currencies."
+msgstr "통화 옆에 '$' 등의 기호를 표시하지 마십시오."
+
+#. Label of the do_not_update_variants (Check) field in DocType 'Item Variant
+#. Settings'
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Do not update variants on save"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:957
+msgid "Do you really want to restore this scrapped asset?"
+msgstr "폐기된 이 자산을 정말로 복원하고 싶으신 건가요?"
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:23
+msgid "Do you still want to enable immutable ledger?"
+msgstr "불변 원장을 계속 활성화하시겠습니까?"
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:50
+msgid "Do you still want to enable negative inventory?"
+msgstr "재고량을 마이너스로 설정하시겠습니까?"
+
+#: erpnext/stock/doctype/item/item.js:24
+msgid "Do you want to change valuation method?"
+msgstr "평가 방법을 변경하시겠습니까?"
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:158
+msgid "Do you want to notify all the customers by email?"
+msgstr "모든 고객에게 이메일로 알림을 보내시겠습니까?"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:334
+msgid "Do you want to submit the material request"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
+msgid "Do you want to submit the stock entry?"
+msgstr "주식 매입 신고를 제출하시겠습니까?"
+
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:50
+#: erpnext/selling/report/sales_partner_commission_summary/test_sales_partner_commission_summary.py:22
+msgid "DocType can be one of them {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447
+msgid "DocType {0} does not exist"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295
+msgid "DocType {0} with company field '{1}' is already in the list"
+msgstr ""
+
+#. Label of the doctypes_to_delete (Table) field in DocType 'Transaction
+#. Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "DocTypes To Delete"
+msgstr "삭제할 문서 유형"
+
+#. Description of the 'Excluded DocTypes' (Table) field in DocType 'Transaction
+#. Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "DocTypes that will NOT be deleted."
+msgstr "삭제되지 않을 문서 유형입니다."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:84
+msgid "DocTypes with a company field:"
+msgstr "회사 필드가 있는 문서 유형:"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:88
+msgid "DocTypes without a company field:"
+msgstr "회사 필드가 없는 문서 유형:"
+
+#: erpnext/templates/pages/search_help.py:22
+msgid "Docs Search"
+msgstr "문서 검색"
+
+#. Label of the document_count (Int) field in DocType 'Transaction Deletion
+#. Record To Delete'
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Document Count"
+msgstr "문서 수"
+
+#. Label of the document_naming_tab (Tab Break) field in DocType 'Buying
+#. Settings'
+#. Label of the default_naming_tab (Tab Break) field in DocType 'Selling
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/public/js/utils/naming_series.js:7
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Document Naming"
+msgstr "문서 이름 지정"
+
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:78
+msgid "Document No"
+msgstr "문서 번호"
+
+#. Label of the document_type (Link) field in DocType 'Subscription Invoice'
+#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json
+msgid "Document Type "
+msgstr "문서 유형 "
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
+msgid "Document Type already used as a dimension"
+msgstr ""
+
+#: erpnext/setup/install.py:230
+msgid "Documentation"
+msgstr "선적 서류 비치"
+
+#. Description of the 'Reconciliation Queue Size' (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Documents Processed on each trigger. Queue Size should be between 5 and 100"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:259
+msgid "Documents: {0} have deferred revenue/expense enabled for them. Cannot repost."
+msgstr ""
+
+#. Label of the dont_create_loyalty_points (Check) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Don't Create Loyalty Points"
+msgstr "로열티 포인트를 만들지 마세요"
+
+#. Label of the dont_enforce_free_item_qty (Check) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Don't Enforce Free Item Qty"
+msgstr "무료 품목 수량 제한을 강제하지 마세요"
+
+#. Label of the dont_recompute_tax (Check) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the dont_recompute_tax (Check) field in DocType 'Sales Taxes and
+#. Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Don't Recompute Tax"
+msgstr "세금을 다시 계산하지 마세요"
+
+#. Label of the dont_reserve_sales_order_qty_on_sales_return (Check) field in
+#. DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Don't reserve Sales Order qty on sales return"
+msgstr ""
+
+#. Label of the doors (Int) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Doors"
+msgstr "문"
+
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Double Declining Balance"
+msgstr "이중 체감 잔액"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:247
+msgid "Download CSV Template"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:145
+msgid "Download PDF for Supplier"
+msgstr ""
+
+#. Label of the download_materials_required (Button) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Download Required Materials"
+msgstr "필요한 자료를 다운로드하세요"
+
+#. Label of the downtime (Data) field in DocType 'Asset Repair'
+#. Label of the downtime (Float) field in DocType 'Downtime Entry'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Downtime"
+msgstr "중단 시간"
+
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:93
+msgid "Downtime (In Hours)"
+msgstr "가동 중지 시간(시간)"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Downtime Analysis"
+msgstr "가동 중지 시간 분석"
+
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Downtime Entry"
+msgstr ""
+
+#. Label of the downtime_reason_section (Section Break) field in DocType
+#. 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Downtime Reason"
+msgstr "가동 중지 사유"
+
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:246
+msgid "Dr/Cr"
+msgstr "박사/크레딧"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:268
+msgid "Drag to reorder"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Dram"
+msgstr "음주"
+
+#. Name of a DocType
+#. Label of the driver (Link) field in DocType 'Delivery Note'
+#. Label of the driver (Link) field in DocType 'Delivery Trip'
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Driver"
+msgstr "운전사"
+
+#. Label of the driver_address (Link) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Driver Address"
+msgstr "운전사 주소"
+
+#. Label of the driver_email (Data) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Driver Email"
+msgstr "운전기사 이메일"
+
+#. Label of the driver_name (Data) field in DocType 'Delivery Note'
+#. Label of the driver_name (Data) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Driver Name"
+msgstr "운전자 이름"
+
+#. Label of the class (Data) field in DocType 'Driving License Category'
+#: erpnext/setup/doctype/driving_license_category/driving_license_category.json
+msgid "Driver licence class"
+msgstr "운전면허 종류"
+
+#. Label of the driving_license_categories (Section Break) field in DocType
+#. 'Driver'
+#: erpnext/setup/doctype/driver/driver.json
+msgid "Driving License Categories"
+msgstr "운전면허 종류"
+
+#. Label of the driving_license_category (Table) field in DocType 'Driver'
+#. Name of a DocType
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/driving_license_category/driving_license_category.json
+msgid "Driving License Category"
+msgstr "운전면허 종류"
+
+#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
+#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
+#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
+#. Label of the drop_ship_section (Section Break) field in DocType 'Sales Order
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Drop Ship"
+msgstr ""
+
+#: banking/src/components/ui/file-dropzone.tsx:36
+msgid "Drop a file here, or click to select a file"
+msgstr ""
+
+#: banking/src/components/ui/file-dropzone.tsx:36
+msgid "Drop some files here, or click to select files"
+msgstr ""
+
+#: erpnext/accounts/party.py:700
+msgid "Due Date cannot be after {0}"
+msgstr ""
+
+#: erpnext/accounts/party.py:676
+msgid "Due Date cannot be before {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:165
+msgid "Due to stock closing entry {0}, you cannot repost item valuation before {1}"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:158
+#: erpnext/workspace_sidebar/banking.json
+msgid "Dunning"
+msgstr ""
+
+#. Label of the dunning_amount (Currency) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "Dunning Amount"
+msgstr "독촉 금액"
+
+#. Label of the base_dunning_amount (Currency) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "Dunning Amount (Company Currency)"
+msgstr "독촉 금액 (회사 통화)"
+
+#. Label of the dunning_fee (Currency) field in DocType 'Dunning'
+#. Label of the dunning_fee (Currency) field in DocType 'Dunning Type'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+msgid "Dunning Fee"
+msgstr "독촉 수수료"
+
+#. Label of the text_block_section (Section Break) field in DocType 'Dunning
+#. Type'
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+msgid "Dunning Letter"
+msgstr "독촉장"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Dunning Letter Text"
+msgstr "독촉장 내용"
+
+#. Label of the dunning_level (Int) field in DocType 'Overdue Payment'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+msgid "Dunning Level"
+msgstr "독촉 수준"
+
+#. Label of the dunning_type (Link) field in DocType 'Dunning'
+#. Name of a DocType
+#. Label of the dunning_type (Data) field in DocType 'Dunning Type'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Dunning Type"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:171
+msgid "Duplicate Customer Group"
+msgstr "중복 고객 그룹"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:190
+msgid "Duplicate DocType"
+msgstr ""
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:71
+msgid "Duplicate Entry. Please check Authorization Rule {0}"
+msgstr "중복 항목입니다. 권한 규칙을 확인하십시오 {0}"
+
+#: erpnext/assets/doctype/asset/asset.py:415
+msgid "Duplicate Finance Book"
+msgstr "재무 장부 복제"
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:165
+msgid "Duplicate Item Group"
+msgstr "중복 항목 그룹"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:102
+msgid "Duplicate Item Under Same Parent"
+msgstr "동일한 상위 항목 아래에 중복된 항목"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:80
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.py:37
+msgid "Duplicate Operating Component {0} found in Operating Components"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_settings/pos_settings.py:44
+msgid "Duplicate POS Fields"
+msgstr "중복된 POS 필드"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:106
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:64
+msgid "Duplicate POS Invoices found"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:154
+msgid "Duplicate Payment Schedule selected"
+msgstr "중복 지불 일정 선택됨"
+
+#: erpnext/projects/doctype/project/project.js:83
+msgid "Duplicate Project with Tasks"
+msgstr "작업이 포함된 프로젝트 복제"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:159
+msgid "Duplicate Sales Invoices found"
+msgstr ""
+
+#: erpnext/stock/serial_batch_bundle.py:1483
+msgid "Duplicate Serial Number Error"
+msgstr "중복 일련 번호 오류"
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:80
+msgid "Duplicate Stock Closing Entry"
+msgstr "중복된 재고 마감 전표"
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:170
+msgid "Duplicate customer group found in the customer group table"
+msgstr ""
+
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.py:44
+msgid "Duplicate entry against the item code {0} and manufacturer {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:189
+msgid "Duplicate entry: {0}{1}"
+msgstr "중복 항목: {0}{1}"
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:165
+msgid "Duplicate item group found in the item group table"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.js:186
+msgid "Duplicate project has been created"
+msgstr ""
+
+#: erpnext/utilities/transaction_base.py:112
+msgid "Duplicate row {0} with same {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:157
+msgid "Duplicate {0} found in the table"
+msgstr ""
+
+#. Label of the duration (Int) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Duration (Days)"
+msgstr "기간(일)"
+
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:66
+msgid "Duration in Days"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
+#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
+msgid "Duties and Taxes"
+msgstr "관세 및 세금"
+
+#. Label of the dynamic_condition_tab (Tab Break) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Dynamic Condition"
+msgstr "동적 조건"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Dyne"
+msgstr "다인"
+
+#: erpnext/regional/italy/utils.py:228 erpnext/regional/italy/utils.py:248
+#: erpnext/regional/italy/utils.py:258 erpnext/regional/italy/utils.py:266
+#: erpnext/regional/italy/utils.py:273 erpnext/regional/italy/utils.py:277
+#: erpnext/regional/italy/utils.py:284 erpnext/regional/italy/utils.py:293
+#: erpnext/regional/italy/utils.py:318 erpnext/regional/italy/utils.py:325
+#: erpnext/regional/italy/utils.py:430
+msgid "E-Invoicing Information Missing"
+msgstr ""
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "EAN"
+msgstr "동안"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "EAN-13"
+msgstr "EAN-13"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "EAN-8"
+msgstr "EAN-8"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "EMU Of Charge"
+msgstr "EMU 충전"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "EMU of current"
+msgstr "현재 EMU"
+
+#. Label of a Desktop Icon
+#: erpnext/desktop_icon/erpnext.json
+msgid "ERPNext"
+msgstr ""
+
+#. Label of a Desktop Icon
+#. Name of a Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/desktop_icon/erpnext_settings.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "ERPNext Settings"
+msgstr ""
+
+#. Label of the user_id (Data) field in DocType 'Employee Group Table'
+#: erpnext/setup/doctype/employee_group_table/employee_group_table.json
+msgid "ERPNext User ID"
+msgstr ""
+
+#. Description of the 'Maintain Stock' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "ERPNext will make a stock ledger entry for each transaction of this item. Keep unchecked for non-stock or service items."
+msgstr ""
+
+#. Option for the 'How often should project be updated of Total Purchase Cost
+#. ?' (Select) field in DocType 'Buying Settings'
+#. Option for the 'How often should sales data be updated in Company/Project?'
+#. (Select) field in DocType 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Each Transaction"
+msgstr "각 거래"
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
+msgid "Earliest"
+msgstr "가장 초기"
+
+#: erpnext/stock/report/stock_balance/stock_balance.py:595
+msgid "Earliest Age"
+msgstr "가장 초기 시대"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:32
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:45
+msgid "Earnest Money"
+msgstr "계약금"
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:528
+msgid "Edit BOM"
+msgstr "BOM 편집"
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.html:37
+msgid "Edit Capacity"
+msgstr "편집 용량"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:109
+msgid "Edit Cart"
+msgstr "장바구니 수정"
+
+#: erpnext/controllers/item_variant.py:161
+msgid "Edit Not Allowed"
+msgstr "수정 불가"
+
+#: erpnext/public/js/utils/crm_activities.js:186
+msgid "Edit Note"
+msgstr "편집 참고"
+
+#. Label of the set_posting_time (Check) field in DocType 'POS Invoice'
+#. Label of the set_posting_time (Check) field in DocType 'Purchase Invoice'
+#. Label of the set_posting_time (Check) field in DocType 'Sales Invoice'
+#. Label of the set_posting_time (Check) field in DocType 'Asset
+#. Capitalization'
+#. Label of the set_posting_time (Check) field in DocType 'Delivery Note'
+#. Label of the set_posting_time (Check) field in DocType 'Purchase Receipt'
+#. Label of the set_posting_time (Check) field in DocType 'Stock Entry'
+#. Label of the set_posting_time (Check) field in DocType 'Stock
+#. Reconciliation'
+#. Label of the set_posting_time (Check) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:508
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Edit Posting Date and Time"
+msgstr "게시 날짜 및 시간 수정"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:286
+msgid "Edit Receipt"
+msgstr "영수증 수정"
+
+#. Label of the override_tax_withholding_entries (Check) field in DocType
+#. 'Journal Entry'
+#. Label of the override_tax_withholding_entries (Check) field in DocType
+#. 'Payment Entry'
+#. Label of the override_tax_withholding_entries (Check) field in DocType
+#. 'Purchase Invoice'
+#. Label of the override_tax_withholding_entries (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Edit Tax Withholding Entries"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:51
+msgid "Edit this rule"
+msgstr "이 규칙을 수정하세요"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:777
+msgid "Editing {0} is not allowed as per POS Profile settings"
+msgstr ""
+
+#. Label of the education (Table) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/setup_wizard/data/industry_type.txt:19
+msgid "Education"
+msgstr "교육"
+
+#. Label of the educational_qualification (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Educational Qualification"
+msgstr "학력 자격"
+
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:147
+msgid "Either 'Selling' or 'Buying' must be selected"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:290
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:441
+msgid "Either Workstation or Workstation Type is mandatory"
+msgstr ""
+
+#: erpnext/setup/doctype/territory/territory.py:40
+msgid "Either target qty or target amount is mandatory"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.py:54
+msgid "Either target qty or target amount is mandatory."
+msgstr "목표 수량 또는 목표 금액 중 하나는 필수 입력 사항입니다."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "경과 시간"
+
+#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Electric"
+msgstr "전기 같은"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:222
+msgid "Electrical"
+msgstr "전기 같은"
+
+#: erpnext/patches/v16_0/make_workstation_operating_components.py:47
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:314
+msgid "Electricity"
+msgstr "전기"
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Electricity down"
+msgstr "정전"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+msgid "Electronic Equipment"
+msgstr "전자 장비"
+
+#. Name of a report
+#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.json
+msgid "Electronic Invoice Register"
+msgstr "전자 송장 등록"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:20
+msgid "Electronics"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ells (UK)"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:52
+msgid "Email Address (required)"
+msgstr "이메일 주소 (필수)"
+
+#: erpnext/crm/doctype/lead/lead.py:166
+msgid "Email Address must be unique, it is already used in {0}"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/email_campaign/email_campaign.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "Email Campaign"
+msgstr "이메일 캠페인"
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:112
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:149
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:157
+msgid "Email Campaign Error"
+msgstr "이메일 캠페인 오류"
+
+#. Label of the email_campaign_for (Select) field in DocType 'Email Campaign'
+#: erpnext/crm/doctype/email_campaign/email_campaign.json
+msgid "Email Campaign For "
+msgstr "이메일 캠페인 "
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:125
+msgid "Email Campaign Send Error"
+msgstr "이메일 캠페인 전송 오류"
+
+#. Label of the supplier_response_section (Section Break) field in DocType
+#. 'Request for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Email Details"
+msgstr "이메일 세부 정보"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Email Digest"
+msgstr "이메일 요약"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/email_digest_recipient/email_digest_recipient.json
+msgid "Email Digest Recipient"
+msgstr "이메일 요약 수신자"
+
+#. Label of the settings (Section Break) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Email Digest Settings"
+msgstr "이메일 요약 설정"
+
+#: erpnext/setup/doctype/email_digest/email_digest.js:15
+msgid "Email Digest: {0}"
+msgstr "이메일 요약: {0}"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:50
+msgid "Email Receipt"
+msgstr "이메일 영수증"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:375
+msgid "Email Sent to Supplier {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:434
+msgid "Email is required to create a user"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.js:72
+msgid "Email is required to create a user."
+msgstr "사용자를 생성하려면 이메일 주소가 필요합니다."
+
+#: erpnext/stock/doctype/shipment/shipment.js:174
+msgid "Email or Phone/Mobile of the Contact are mandatory to continue."
+msgstr "연락처의 이메일 주소 또는 전화번호/휴대전화번호는 필수 입력 사항입니다."
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:322
+msgid "Email sent successfully."
+msgstr "이메일이 성공적으로 전송되었습니다."
+
+#. Label of the email_sent_to (Data) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Email sent to"
+msgstr "이메일이 발송되었습니다"
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:446
+msgid "Email sent to {0}"
+msgstr ""
+
+#: erpnext/crm/doctype/appointment/appointment.py:114
+msgid "Email verification failed."
+msgstr "이메일 인증에 실패했습니다."
+
+#: erpnext/accounts/letterhead/company_letterhead.html:96
+#: erpnext/accounts/letterhead/company_letterhead_grey.html:114
+msgid "Email:"
+msgstr "이메일:"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:20
+msgid "Emails Queued"
+msgstr "대기 중인 이메일"
+
+#. Label of the emergency_contact_details (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Emergency Contact"
+msgstr "비상 연락처"
+
+#. Label of the person_to_be_contacted (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Emergency Contact Name"
+msgstr ""
+
+#. Label of the emergency_phone_number (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Emergency Phone"
+msgstr "비상 전화"
+
+#. Name of a role
+#. Label of the employee (Link) field in DocType 'Supplier Scorecard'
+#. Option for the 'Party Type' (Select) field in DocType 'Contract'
+#. Label of the employee (Table MultiSelect) field in DocType 'Job Card'
+#. Label of the employee (Link) field in DocType 'Job Card Time Log'
+#. Label of the employee (Link) field in DocType 'Activity Cost'
+#. Label of the employee (Link) field in DocType 'Timesheet'
+#. Label of the employee (Link) field in DocType 'Driver'
+#. Name of a DocType
+#. Label of the employee (Data) field in DocType 'Employee'
+#. Label of the section_break_00 (Section Break) field in DocType 'Employee
+#. Group'
+#. Label of the employee_list (Table) field in DocType 'Employee Group'
+#. Label of the employee (Link) field in DocType 'Employee Group Table'
+#. Label of the employee (Link) field in DocType 'Sales Person'
+#. Label of the employee (Link) field in DocType 'Vehicle'
+#. Label of the employee (Link) field in DocType 'Delivery Trip'
+#. Label of the employee (Link) field in DocType 'Serial No'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card/job_card_calendar.js:27
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:328
+#: erpnext/manufacturing/doctype/workstation/workstation.js:359
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/activity_type/activity_type.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/doctype/timesheet/timesheet_calendar.js:28
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:27
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:10
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:45
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee_group/employee_group.json
+#: erpnext/setup/doctype/employee_group_table/employee_group_table.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+#: erpnext/setup/doctype/sales_person/sales_person_tree.js:7
+#: erpnext/setup/doctype/vehicle/vehicle.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Employee"
+msgstr "직원"
+
+#. Label of the employee_link (Link) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+msgid "Employee "
+msgstr "직원 "
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Employee Advance"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:26
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:37
+msgid "Employee Advances"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:188
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:327
+msgid "Employee Benefits Obligation"
+msgstr ""
+
+#. Label of the employee_detail (Section Break) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Employee Detail"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Employee Education"
+msgstr "직원 교육"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
+msgid "Employee External Work History"
+msgstr "직원 외부 업무 경력"
+
+#. Label of the employee_group (Link) field in DocType 'Communication Medium
+#. Timeslot'
+#. Name of a DocType
+#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json
+#: erpnext/setup/doctype/employee_group/employee_group.json
+msgid "Employee Group"
+msgstr "직원 그룹"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/employee_group_table/employee_group_table.json
+msgid "Employee Group Table"
+msgstr "직원 그룹 표"
+
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:33
+msgid "Employee ID"
+msgstr "직원 ID"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/employee_internal_work_history/employee_internal_work_history.json
+msgid "Employee Internal Work History"
+msgstr "직원 내부 근무 이력"
+
+#. Label of the employee_name (Data) field in DocType 'Activity Cost'
+#. Label of the employee_name (Data) field in DocType 'Timesheet'
+#. Label of the employee_name (Data) field in DocType 'Employee Group Table'
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:28
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:53
+#: erpnext/setup/doctype/employee_group_table/employee_group_table.json
+msgid "Employee Name"
+msgstr "직원 이름"
+
+#. Label of the employee_number (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Employee Number"
+msgstr "직원 번호"
+
+#. Label of the employee_user_id (Link) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Employee User Id"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:325
+msgid "Employee cannot report to himself."
+msgstr "직원은 자기 자신에게 보고할 수 없습니다."
+
+#: erpnext/setup/doctype/employee/employee.py:574
+msgid "Employee is required"
+msgstr "직원은 필수입니다"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:109
+msgid "Employee is required while issuing Asset {0}"
+msgstr "자산 발행 시 직원이 필요합니다 {0}"
+
+#: erpnext/setup/doctype/employee/employee.py:431
+msgid "Employee {0} already has a linked user"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:92
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:113
+msgid "Employee {0} does not belong to the company {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
+msgid "Employee {0} is currently working on another workstation. Please assign another employee."
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:599
+msgid "Employee {0} not found"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:351
+msgid "Employees"
+msgstr "직원"
+
+#: erpnext/stock/doctype/batch/batch_list.js:16
+msgid "Empty"
+msgstr "비어 있는"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
+msgid "Empty To Delete List"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ems(Pica)"
+msgstr ""
+
+#. Label of the enable_accounting_dimensions (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Accounting Dimensions"
+msgstr "회계 차원 활성화"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1730
+msgid "Enable Allow Partial Reservation in the Stock Settings to reserve partial stock."
+msgstr ""
+
+#. Label of the enable_scheduling (Check) field in DocType 'Appointment Booking
+#. Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Enable Appointment Scheduling"
+msgstr "예약 일정 기능을 활성화하세요"
+
+#. Label of the enable_auto_email (Check) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Enable Auto Email"
+msgstr "자동 이메일 활성화"
+
+#: erpnext/stock/doctype/item/item.py:1185
+msgid "Enable Auto Re-Order"
+msgstr ""
+
+#. Label of the enable_party_matching (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Automatic Party Matching"
+msgstr ""
+
+#. Label of the enable_cwip_accounting (Check) field in DocType 'Asset
+#. Category'
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Enable Capital Work in Progress Accounting"
+msgstr "자본 공사 진행 상황 회계 활성화"
+
+#. Label of the enable_common_party_accounting (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Common Party Accounting"
+msgstr "공통 당사자 회계 활성화"
+
+#. Label of the enable_deferred_expense (Check) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the enable_deferred_expense (Check) field in DocType 'Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable Deferred Expense"
+msgstr ""
+
+#. Label of the enable_deferred_revenue (Check) field in DocType 'POS Invoice
+#. Item'
+#. Label of the enable_deferred_revenue (Check) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the enable_deferred_revenue (Check) field in DocType 'Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable Deferred Revenue"
+msgstr ""
+
+#. Label of the enable_discounts_and_margin (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Discounts and Margin"
+msgstr "할인 및 마진 활성화"
+
+#. Label of the enable_european_access (Check) field in DocType 'Plaid
+#. Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "Enable European Access"
+msgstr "유럽 접근 활성화"
+
+#. Label of the enable_fuzzy_matching (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Fuzzy Matching"
+msgstr ""
+
+#. Label of the enable_health_monitor (Check) field in DocType 'Ledger Health
+#. Monitor'
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+msgid "Enable Health Monitor"
+msgstr "상태 모니터 활성화"
+
+#. Label of the enable_immutable_ledger (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Immutable Ledger"
+msgstr "불변 원장 활성화"
+
+#. Label of the enable_item_wise_inventory_account (Check) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Enable Item-wise Inventory Account"
+msgstr ""
+
+#. Label of the enable_loyalty_point_program (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Loyalty Point Program"
+msgstr "로열티 포인트 프로그램 활성화"
+
+#. Label of the enable_parallel_reposting (Check) field in DocType 'Stock
+#. Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Enable Parallel Reposting"
+msgstr ""
+
+#. Label of the enable_perpetual_inventory (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Enable Perpetual Inventory"
+msgstr "영구 재고 관리 활성화"
+
+#. Label of the enable_provisional_accounting_for_non_stock_items (Check) field
+#. in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Enable Provisional Accounting For Non Stock Items"
+msgstr ""
+
+#. Label of the enable_separate_reposting_for_gl (Check) field in DocType
+#. 'Stock Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Enable Separate Reposting for GL"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:122
+msgid "Enable Serial / Batch Bundle"
+msgstr "시리얼/배치 번들 활성화"
+
+#. Label of the enable_stock_reservation (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Enable Stock Reservation"
+msgstr "주식 예약 활성화"
+
+#. Label of the enable_subscription (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Subscription"
+msgstr "구독 활성화"
+
+#. Description of the 'Enable Subscription' (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable Subscription tracking in invoice"
+msgstr "청구서에서 구독 추적 기능을 활성화하세요"
+
+#. Label of the enable_utm (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable UTM"
+msgstr "UTM 활성화"
+
+#. Description of the 'Enable UTM' (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable Urchin Tracking Module parameters in Quotation, Sales Order, Sales Invoice, POS Invoice, Lead, and Delivery Note."
+msgstr ""
+
+#. Label of the enable_youtube_tracking (Check) field in DocType 'Video
+#. Settings'
+#: erpnext/utilities/doctype/video_settings/video_settings.json
+msgid "Enable YouTube Tracking"
+msgstr ""
+
+#: banking/src/components/features/Settings/Preferences.tsx:104
+msgid "Enable automatic party matching"
+msgstr ""
+
+#. Description of the 'Enable Accounting Dimensions' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable cost center, projects and other custom accounting dimensions"
+msgstr ""
+
+#. Label of the enable_cutoff_date_on_bulk_delivery_note_creation (Check) field
+#. in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable cut-off date on creating bulk Delivery Notes"
+msgstr ""
+
+#. Label of the enable_discount_accounting (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable discount accounting for selling"
+msgstr ""
+
+#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable for raw material items used in BOM. Uncheck for additional services like 'washing' used in manufacturing."
+msgstr ""
+
+#. Description of the 'Is Subcontracted Item' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable if a vendor manufactures this item for you. You can choose to provide them raw materials using the default BOM."
+msgstr "벤더가 이 품목을 제조하는 경우 이 옵션을 활성화하세요. 기본 BOM을 사용하여 벤더에게 원자재를 제공할 수 있습니다."
+
+#. Description of the 'Is Fixed Asset' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable if this item is a company asset like machinery or furniture."
+msgstr ""
+
+#. Description of the 'Is Customer Provided Item' (Check) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable if this item is provided by a customer and received via Stock Entry."
+msgstr ""
+
+#. Description of the 'Consider Rejected Warehouses' (Check) field in DocType
+#. 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Enable it if users want to consider rejected materials to dispatch."
+msgstr "사용자가 발송 대상에서 제외된 자재를 고려하도록 하려면 이 기능을 활성화하십시오."
+
+#: banking/src/components/features/Settings/Preferences.tsx:125
+msgid "Enable party name/description fuzzy matching"
+msgstr ""
+
+#. Description of the 'Has Priority' (Check) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Enable this checkbox even if you want to set the zero priority"
+msgstr ""
+
+#. Description of the 'Calculate daily depreciation using total days in
+#. depreciation period' (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enable this option to calculate daily depreciation by considering the total number of days in the entire depreciation period, (including leap years) while using daily pro-rata based depreciation"
+msgstr ""
+
+#. Description of the 'Allow negative rates for Items' (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable this option to permit the use of negative rates for items in sales transactions. This setting is useful for applying substantial discounts, processing refunds or returns, and handling special promotional pricing."
+msgstr "판매 거래에서 품목에 대해 음수 가격을 사용하려면 이 옵션을 활성화하십시오. 이 설정은 상당한 할인 적용, 환불 또는 반품 처리, 특별 프로모션 가격 책정 등에 유용합니다."
+
+#. Description of the 'Validate selling price for Item against purchase or
+#. valuation rate' (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable this to block transactions where the selling price is less than the purchase or valuation rate"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:34
+msgid "Enable to apply SLA on every {0}"
+msgstr "모든 {0}에 SLA를 적용하도록 설정"
+
+#. Description of the 'Retain Sample' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Enable to reserve a small sample from each batch for any analysis arising ahead"
+msgstr ""
+
+#. Label of the enable_tracking_sales_commissions (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enable tracking sales commissions"
+msgstr "판매 수수료 추적을 활성화하세요"
+
+#. Description of the 'Fetch Timesheet in Sales Invoice' (Check) field in
+#. DocType 'Projects Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+msgid "Enabling the check box will fetch timesheet on select of a Project in Sales Invoice"
+msgstr ""
+
+#. Description of the 'Enforce Time Logs' (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Enabling this checkbox will force each Job Card Time Log to have From Time and To Time"
+msgstr ""
+
+#. Description of the 'Check Supplier Invoice Number Uniqueness' (Check) field
+#. in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enabling this ensures each Purchase Invoice has a unique value in Supplier Invoice No. field within a particular fiscal year"
+msgstr ""
+
+#. Description of the 'Book Advance Payments in Separate Party Account' (Check)
+#. field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Enabling this option will allow you to record - 1. Advances Received in a Liability Account instead of the Asset Account 2. Advances Paid in an Asset Account instead of the Liability Account "
+msgstr ""
+
+#. Description of the 'Allow multi-currency invoices against single party
+#. account ' (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Enabling this will allow creation of multi-currency invoices against single party account in company currency"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:19
+msgid "Enabling this will change the way how cancelled transactions are handled."
+msgstr "이 기능을 활성화하면 취소된 거래를 처리하는 방식이 변경됩니다."
+
+#. Description of the 'Calculate Product Bundle price based on child Item's
+#. rates' (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Enabling this will do the following:\n"
+"\n"
+"Make the rate column of all Packed/Bundle Items tables editable. \n"
+"Calculate the prices of all Product Bundles in the Items table, based on the prices of its child Items, specified in the Packed/Bundle Items table. \n"
+" \n"
+"Note: If this is enabled, updating the rate of the Product Bundle in the Items table will not change its price. It will get reset to the price based on its Child Items on saving the doc."
+msgstr ""
+
+#. Label of the encashment_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Encashment Date"
+msgstr "현금화 날짜"
+
+#: erpnext/crm/doctype/contract/contract.py:73
+msgid "End Date cannot be before Start Date."
+msgstr ""
+
+#. Label of the end_time (Time) field in DocType 'Workstation Working Hour'
+#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
+#. Label of the end_time (Time) field in DocType 'Service Day'
+#. Label of the end_time (Datetime) field in DocType 'Call Log'
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
+#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+#: erpnext/support/doctype/service_day/service_day.json
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "End Time"
+msgstr "종료 시간"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:345
+msgid "End Transit"
+msgstr "환승 종료"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:235
+#: erpnext/accounts/report/balance_sheet/balance_sheet.html:147
+#: erpnext/accounts/report/cash_flow/cash_flow.html:147
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:80
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:64
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:25
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:147
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:89
+#: erpnext/public/js/financial_statements.js:430
+msgid "End Year"
+msgstr "연말"
+
+#: erpnext/accounts/report/financial_statements.py:133
+msgid "End Year cannot be before Start Year"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:48
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.py:37
+msgid "End date cannot be before start date"
+msgstr ""
+
+#. Description of the 'To Date' (Date) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "End date of current invoice's period"
+msgstr "현재 송장 기간의 종료일"
+
+#. Label of the end_of_life (Date) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "End of Life"
+msgstr "삶의 끝"
+
+#. Option for the 'Generate Invoice At' (Select) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "End of the current subscription period"
+msgstr ""
+
+#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule
+#. Description Conditions'
+#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
+msgid "Ends With"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:202
+msgid "Ends with"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:21
+msgid "Energy"
+msgstr "에너지"
+
+#. Label of the enforce_time_logs (Check) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Enforce Time Logs"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:15
+msgid "Engineer"
+msgstr "엔지니어"
+
+#. Label of the ensure_delivery_based_on_produced_serial_no (Check) field in
+#. DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Ensure Delivery Based on Produced Serial No"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:283
+msgid "Enter API key in Google Settings."
+msgstr "Google 설정에서 API 키를 입력하세요."
+
+#: erpnext/public/js/print.js:67
+msgid "Enter Company Details"
+msgstr "회사 정보를 입력하세요"
+
+#: erpnext/setup/doctype/employee/employee.js:232
+msgid "Enter First and Last name of Employee, based on Which Full Name will be updated. IN transactions, it will be Full Name which will be fetched."
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:212
+msgid "Enter Manually"
+msgstr "수동으로 입력하세요"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:291
+msgid "Enter Serial Nos"
+msgstr "일련번호를 입력하세요"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
+#: erpnext/manufacturing/doctype/workstation/workstation.js:312
+msgid "Enter Value"
+msgstr "값을 입력하세요"
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:96
+msgid "Enter Visit Details"
+msgstr "방문 세부 정보를 입력하세요"
+
+#: erpnext/manufacturing/doctype/routing/routing.js:88
+msgid "Enter a name for Routing."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/operation/operation.js:20
+msgid "Enter a name for the Operation, for example, Cutting."
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:50
+msgid "Enter a name for this Holiday List."
+msgstr "이 휴일 목록에 이름을 입력하세요."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:616
+msgid "Enter amount to be redeemed."
+msgstr "사용할 금액을 입력하세요."
+
+#: erpnext/stock/doctype/item/item.js:1130
+msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
+msgstr "품목 코드를 입력하세요. 품목 이름 필드를 클릭하면 해당 품목 코드와 동일한 이름으로 자동 입력됩니다."
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:942
+msgid "Enter customer's email"
+msgstr "고객의 이메일 주소를 입력하세요"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:948
+msgid "Enter customer's phone number"
+msgstr "고객의 전화번호를 입력하세요"
+
+#: erpnext/assets/doctype/asset/asset.js:928
+msgid "Enter date to scrap asset"
+msgstr "자산 폐기 날짜를 입력하세요"
+
+#: erpnext/assets/doctype/asset/asset.py:484
+msgid "Enter depreciation details"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:408
+msgid "Enter discount percentage."
+msgstr "할인율을 입력하세요."
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:294
+msgid "Enter each serial no in a new line"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:51
+msgid "Enter the Bank Guarantee Number before submitting."
+msgstr "제출하기 전에 은행 보증 번호를 입력하십시오."
+
+#. Description of the 'Ref Code' (Data) field in DocType 'Item Customer Detail'
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+msgid "Enter the Item Code that this customer uses at their end. This will be shown in Sales Orders for the customer's reference."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/routing/routing.js:93
+msgid "Enter the Operation, the table will fetch the Operation details like Hourly Rate, Workstation automatically.\n\n"
+" After that, set the Operation Time in minutes and the table will calculate the Operation Costs based on the Hourly Rate and Operation Time."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:250
+msgctxt "Do MMM YYYY"
+msgid "Enter the closing balance you see in your bank statement for {0} as of the {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:53
+msgid "Enter the name of the Beneficiary before submitting."
+msgstr "제출하기 전에 수혜자 이름을 입력하십시오."
+
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:55
+msgid "Enter the name of the bank or lending institution before submitting."
+msgstr "제출하기 전에 은행 또는 대출 기관의 이름을 입력하십시오."
+
+#: erpnext/stock/doctype/item/item.js:1156
+msgid "Enter the opening stock units."
+msgstr "개시 재고량을 입력하십시오."
+
+#: erpnext/manufacturing/doctype/bom/bom.js:992
+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:1218
+msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
+msgstr "생산할 수량을 입력하세요. 원자재는 수량이 설정된 경우에만 가져옵니다."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:539
+msgid "Enter {0} amount."
+msgstr "{0} 금액을 입력하세요."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:22
+msgid "Entertainment & Leisure"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
+msgid "Entertainment Expenses"
+msgstr ""
+
+#. Label of the entity (Dynamic Link) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Entity"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:190
+msgid "Entries below have a posting date after {0} but the clearance date is before {1}."
+msgstr "아래 항목들은 게시 날짜가 {0} 이후이지만, 정산 날짜는 {1} 이전입니다."
+
+#. Label of the voucher_type (Select) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Entry Type"
+msgstr "입력 유형"
+
+#. Option for the 'Root Type' (Select) field in DocType 'Account'
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
+#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/report/account_balance/account_balance.js:29
+#: erpnext/accounts/report/account_balance/account_balance.js:45
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:255
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:306
+msgid "Equity"
+msgstr "형평성"
+
+#. Label of the equity_or_liability_account (Link) field in DocType 'Share
+#. Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "Equity/Liability Account"
+msgstr "자본/부채 계정"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Erg"
+msgstr ""
+
+#. Label of the description (Long Text) field in DocType 'Asset Repair'
+#. Label of the error_description (Long Text) field in DocType 'Bulk
+#. Transaction Log Detail'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "Error Description"
+msgstr "오류 설명"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:295
+msgid "Error Occurred"
+msgstr "오류가 발생했습니다"
+
+#: erpnext/telephony/doctype/call_log/call_log.py:197
+msgid "Error during caller information update"
+msgstr "발신자 정보 업데이트 중 오류 발생"
+
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:53
+msgid "Error evaluating the criteria formula"
+msgstr "기준 공식 평가 오류"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:267
+msgid "Error getting details for {0}: {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:320
+msgid "Error in party matching for Bank Transaction {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:373
+msgid "Error uploading attachments"
+msgstr "첨부 파일 업로드 오류"
+
+#: erpnext/assets/doctype/asset/depreciation.py:323
+msgid "Error while posting depreciation entries"
+msgstr ""
+
+#: erpnext/accounts/deferred_revenue.py:539
+msgid "Error while processing deferred accounting for {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
+msgid "Error while reposting item valuation"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:175
+msgid "Error: This asset already has {0} depreciation periods booked.\n"
+"\t\t\t\t\tThe `depreciation start` date must be at least {1} periods after the `available for use` date.\n"
+"\t\t\t\t\tPlease correct the dates accordingly."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
+msgid "Error: {0} is mandatory field"
+msgstr ""
+
+#. Label of the errors_notification_section (Section Break) field in DocType
+#. 'Stock Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Errors Notification"
+msgstr "오류 알림"
+
+#. Label of the estimated_arrival (Datetime) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Estimated Arrival"
+msgstr "예상 도착 시간"
+
+#. Label of the estimated_costing (Currency) field in DocType 'Project'
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:96
+#: erpnext/projects/doctype/project/project.json
+msgid "Estimated Cost"
+msgstr "예상 비용"
+
+#. Label of the estimated_time_and_cost (Section Break) field in DocType 'Work
+#. Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Estimated Time and Cost"
+msgstr "예상 소요 시간 및 비용"
+
+#. Label of the period (Select) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Evaluation Period"
+msgstr "평가 기간"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:87
+msgid "Even if there are multiple Pricing Rules with highest priority, then following internal priorities are applied:"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:2
+msgid "Ex Works"
+msgstr "공장도 가격"
+
+#. Label of the url (Data) field in DocType 'Currency Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Example URL"
+msgstr "예시 URL"
+
+#: erpnext/stock/doctype/item/item.py:1116
+msgid "Example of a linked document: {0}"
+msgstr "연결된 문서의 예: {0}"
+
+#. Description of the 'Serial Number Series' (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Example: ABCD.#####\n"
+"If series is set and Serial No is not mentioned in transactions, then automatic serial number will be created based on this series. If you always want to explicitly mention Serial Nos for this item. leave this blank."
+msgstr "예시: ABCD.#####\n"
+"시리즈가 설정되어 있고 거래 내역에 일련번호가 명시되지 않은 경우, 이 시리즈를 기반으로 자동 일련번호가 생성됩니다. 해당 품목에 대해 항상 일련번호를 명시적으로 입력하려면 이 필드를 비워 두십시오."
+
+#. Description of the 'Batch Number Series' (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Example: ABCD.#####. If series is set and Batch No is not mentioned in transactions, then automatic batch number will be created based on this series. If you always want to explicitly mention Batch No for this item, leave this blank. Note: this setting will take priority over the Naming Series Prefix in Stock Settings."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:468
+msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2300
+msgid "Example: Serial No {0} reserved in {1}."
+msgstr "예시: 일련번호 {0} 는 {1}에 예약되어 있습니다."
+
+#. Label of the exception_budget_approver_role (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Exception Budget Approver Role"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
+msgid "Excess Disassembly"
+msgstr "과도한 분해"
+
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:55
+msgid "Excess Materials Consumed"
+msgstr "과잉 소비된 자재"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
+msgid "Excess Transfer"
+msgstr "과잉 이송"
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Excessive machine set up time"
+msgstr "과도한 기계 설정 시간"
+
+#. Label of the exchange_gain__loss_section (Section Break) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Exchange Gain / Loss"
+msgstr "환차익/환손실"
+
+#. Label of the exchange_gain_loss_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Exchange Gain / Loss Account"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Exchange Gain Or Loss"
+msgstr "환율 변동으로 인한 이익 또는 손실"
+
+#. Label of the exchange_gain_loss (Currency) field in DocType 'Payment Entry
+#. Reference'
+#. Label of the exchange_gain_loss (Currency) field in DocType 'Purchase
+#. Invoice Advance'
+#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
+#. Advance'
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+#: erpnext/setup/doctype/company/company.py:678
+msgid "Exchange Gain/Loss"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
+msgid "Exchange Gain/Loss amount has been booked through {0}"
+msgstr ""
+
+#. Label of the exchange_rate (Float) field in DocType 'Advance Payment Ledger
+#. Entry'
+#. Label of the exchange_rate (Float) field in DocType 'Journal Entry Account'
+#. Label of the exchange_rate (Float) field in DocType 'Payment Entry
+#. Reference'
+#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation
+#. Invoice'
+#. Label of the exchange_rate (Float) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the pegged_exchange_rate (Data) field in DocType 'Pegged Currency
+#. Details'
+#. Label of the conversion_rate (Float) field in DocType 'POS Invoice'
+#. Label of the exchange_rate (Float) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the conversion_rate (Float) field in DocType 'Purchase Invoice'
+#. Label of the conversion_rate (Float) field in DocType 'Sales Invoice'
+#. Label of the conversion_rate (Float) field in DocType 'Tax Withholding
+#. Entry'
+#. Label of the conversion_rate (Float) field in DocType 'Purchase Order'
+#. Label of the conversion_rate (Float) field in DocType 'Supplier Quotation'
+#. Label of the conversion_rate (Float) field in DocType 'Opportunity'
+#. Label of the exchange_rate (Float) field in DocType 'Timesheet'
+#. Label of the conversion_rate (Float) field in DocType 'Quotation'
+#. Label of the conversion_rate (Float) field in DocType 'Sales Order'
+#. Label of the exchange_rate (Float) field in DocType 'Currency Exchange'
+#. Label of the conversion_rate (Float) field in DocType 'Delivery Note'
+#. Label of the exchange_rate (Float) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#. Label of the conversion_rate (Float) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Exchange Rate"
+msgstr "환율"
+
+#. Name of a DocType
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#. Label of a Link in the Invoicing Workspace
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Exchange Rate Revaluation"
+msgstr "환율 재평가"
+
+#. Label of the accounts (Table) field in DocType 'Exchange Rate Revaluation'
+#. Name of a DocType
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Exchange Rate Revaluation Account"
+msgstr "환율 재평가 계정"
+
+#. Label of the exchange_rate_revaluation_settings_section (Section Break)
+#. field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Exchange Rate Revaluation Settings"
+msgstr "환율 재평가 설정"
+
+#: erpnext/controllers/sales_and_purchase_return.py:72
+msgid "Exchange Rate must be same as {0} {1} ({2})"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Excise Entry"
+msgstr "소비세 항목"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:1483
+msgid "Excise Invoice"
+msgstr "소비세 영수증"
+
+#. Label of the excise_page (Data) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Excise Page Number"
+msgstr "소비세 페이지 번호"
+
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:86
+msgid "Exclude Zero Balance Parties"
+msgstr ""
+
+#. Label of the doctypes_to_be_ignored (Table) field in DocType 'Transaction
+#. Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Excluded DocTypes"
+msgstr "제외된 문서 유형"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the excluded_fee (Currency) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Excluded Fee"
+msgstr "제외된 수수료"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:265
+msgid "Execution"
+msgstr "실행"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:16
+msgid "Executive Assistant"
+msgstr "비서"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:23
+msgid "Executive Search"
+msgstr ""
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
+msgid "Exempt Supplies"
+msgstr "면제 물품"
+
+#. Label of the exempted_role (Link) field in DocType 'Accounting Period'
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+msgid "Exempted Role"
+msgstr "면제된 역할"
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:5
+msgid "Exhibition"
+msgstr "전시회"
+
+#. Option for the 'Asset Type' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Existing Asset"
+msgstr "기존 자산"
+
+#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Existing Company"
+msgstr "기존 회사"
+
+#. Label of the existing_company (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Existing Company "
+msgstr "기존 회사 "
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:1
+msgid "Existing Customer"
+msgstr "기존 고객"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:298
+msgid "Existing transactions in the system belonging to the same bank account and date range"
+msgstr "시스템에 저장된 동일한 은행 계좌 및 기간의 기존 거래 내역"
+
+#. Label of the exit (Tab Break) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Exit"
+msgstr "출구"
+
+#. Label of the held_on (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Exit Interview Held On"
+msgstr ""
+
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:470
+msgid "Expected"
+msgstr "예상되는"
+
+#. Label of the expected_amount (Currency) field in DocType 'POS Closing Entry
+#. Detail'
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+msgid "Expected Amount"
+msgstr "예상 금액"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:429
+msgid "Expected Arrival Date"
+msgstr "예상 도착일"
+
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:119
+msgid "Expected Balance Qty"
+msgstr "예상 잔액 수량"
+
+#. Label of the expected_closing (Date) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Expected Closing Date"
+msgstr "예상 마감일"
+
+#. Label of the expected_delivery_date (Date) field in DocType 'Purchase Order
+#. Item'
+#. Label of the expected_delivery_date (Date) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the expected_delivery_date (Date) field in DocType 'Work Order'
+#. Label of the expected_delivery_date (Date) field in DocType 'Subcontracting
+#. Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:115
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:135
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:60
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Expected Delivery Date"
+msgstr "예상 배송일"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
+msgid "Expected Delivery Date should be after Sales Order Date"
+msgstr ""
+
+#. Label of the expected_end_date (Datetime) field in DocType 'Job Card'
+#. Label of the expected_end_date (Date) field in DocType 'Project'
+#. Label of the exp_end_date (Datetime) field in DocType 'Task'
+#. Label of a field in the tasks Web Form
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:49
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:126
+#: erpnext/projects/web_form/tasks/tasks.json
+#: erpnext/templates/pages/task_info.html:64
+msgid "Expected End Date"
+msgstr "예상 종료일"
+
+#: erpnext/projects/doctype/task/task.py:114
+msgid "Expected End Date should be less than or equal to parent task's Expected End Date {0}."
+msgstr ""
+
+#. Label of the expected_hours (Float) field in DocType 'Timesheet Detail'
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/public/js/projects/timer.js:16
+msgid "Expected Hrs"
+msgstr "예상 시간"
+
+#. Label of the expected_start_date (Datetime) field in DocType 'Job Card'
+#. Label of the expected_start_date (Date) field in DocType 'Project'
+#. Label of the exp_start_date (Datetime) field in DocType 'Task'
+#. Label of a field in the tasks Web Form
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:45
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:120
+#: erpnext/projects/web_form/tasks/tasks.json
+#: erpnext/templates/pages/task_info.html:59
+msgid "Expected Start Date"
+msgstr "예상 시작일"
+
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:129
+msgid "Expected Stock Value"
+msgstr "예상 주가"
+
+#. Label of the expected_time (Float) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Expected Time (in hours)"
+msgstr "예상 소요 시간(시간)"
+
+#. Label of the time_required (Float) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Expected Time Required (In Mins)"
+msgstr "예상 소요 시간(분)"
+
+#. Label of the expected_value_after_useful_life (Currency) field in DocType
+#. 'Asset Depreciation Schedule'
+#. Description of the 'Salvage Value' (Currency) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Expected Value After Useful Life"
+msgstr ""
+
+#. Option for the 'Root Type' (Select) field in DocType 'Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
+#. Label of the expense (Float) field in DocType 'Cashier Closing'
+#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
+#. Option for the 'Type' (Select) field in DocType 'Process Deferred
+#. Accounting'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:602
+#: erpnext/accounts/report/account_balance/account_balance.js:28
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:89
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:184
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:199
+msgid "Expense"
+msgstr "비용"
+
+#: erpnext/controllers/stock_controller.py:948
+msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the expense_account (Link) field in DocType 'Loyalty Program'
+#. Label of the expense_account (Link) field in DocType 'POS Invoice Item'
+#. Label of the expense_account (Link) field in DocType 'POS Profile'
+#. Label of the expense_account (Link) field in DocType 'Sales Invoice Item'
+#. Label of the expense_account (Link) field in DocType 'Asset Capitalization
+#. Service Item'
+#. Label of the expense_account (Link) field in DocType 'Asset Repair Purchase
+#. Invoice'
+#. Label of the expense_account (Link) field in DocType 'Purchase Order Item'
+#. Label of the expense_account (Link) field in DocType 'Workstation Operating
+#. Component Account'
+#. Label of the expense_account (Link) field in DocType 'Delivery Note Item'
+#. Label of the expense_account (Link) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#. Label of the expense_account (Link) field in DocType 'Material Request Item'
+#. Label of the expense_account (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the expense_account (Link) field in DocType 'Subcontracting Order
+#. Item'
+#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt
+#. Item'
+#. Label of the expense_account (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/account_balance/account_balance.js:46
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:251
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Expense Account"
+msgstr "경비 계정"
+
+#: erpnext/controllers/stock_controller.py:927
+msgid "Expense Account Missing"
+msgstr "경비 내역 누락"
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Expense Claim"
+msgstr "경비 청구"
+
+#. Label of the expense_account (Link) field in DocType 'Purchase Invoice Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+msgid "Expense Head"
+msgstr "비용 항목"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:496
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:520
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:540
+msgid "Expense Head Changed"
+msgstr "비용 항목이 변경되었습니다"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:598
+msgid "Expense account is mandatory for item {0}"
+msgstr ""
+
+#. Description of the 'Enable Deferred Revenue' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
+msgid "Expenses"
+msgstr "경비"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr "자산 평가에 포함된 비용"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/report/account_balance/account_balance.js:51
+msgid "Expenses Included In Valuation"
+msgstr "평가에 포함된 비용"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:309
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:496
+msgid "Expired Batches"
+msgstr "유통기한이 지난 제품"
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:289
+msgid "Expires in a week or less"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:293
+msgid "Expires today or already expired"
+msgstr ""
+
+#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Expiry"
+msgstr "만료"
+
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:38
+msgid "Expiry (In Days)"
+msgstr ""
+
+#. Label of the expiry_date (Date) field in DocType 'Loyalty Point Entry'
+#. Label of the expiry_date (Date) field in DocType 'Driver'
+#. Label of the expiry_date (Date) field in DocType 'Driving License Category'
+#. Label of the expiry_date (Date) field in DocType 'Batch'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/driving_license_category/driving_license_category.json
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/report/available_batch_report/available_batch_report.py:57
+msgid "Expiry Date"
+msgstr "만료일"
+
+#: erpnext/stock/doctype/batch/batch.py:220
+msgid "Expiry Date Mandatory"
+msgstr "만료일 필수 입력"
+
+#. Label of the expiry_duration (Int) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Expiry Duration (in days)"
+msgstr "만료 기간(일)"
+
+#. Label of the section_break0 (Tab Break) field in DocType 'BOM'
+#. Label of the exploded_items (Table) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Exploded Items"
+msgstr "폭발물"
+
+#. Name of a report
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.json
+msgid "Exponential Smoothing Forecasting"
+msgstr "지수 평활 예측"
+
+#: erpnext/regional/report/electronic_invoice_register/electronic_invoice_register.js:34
+msgid "Export E-Invoices"
+msgstr "전자 송장 내보내기"
+
+#. Label of the extended_bank_statement_section (Section Break) field in
+#. DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Extended Bank Statement"
+msgstr ""
+
+#. Label of the external_work_history (Table) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "External Work History"
+msgstr "외부 경력 사항"
+
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:148
+msgid "Extra Consumed Qty"
+msgstr "초과 소비량"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
+msgid "Extra Job Card Quantity"
+msgstr "추가 작업 카드 수량"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:275
+msgid "Extra Large"
+msgstr ""
+
+#. Label of the section_break_xhtl (Section Break) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Extra Material Transfer"
+msgstr "추가 재료 이송"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:271
+msgid "Extra Small"
+msgstr ""
+
+#. Label of the finished_good (Link) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "FG / Semi FG Item"
+msgstr "FG/세미 FG 품목"
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:21
+msgid "FG Items to Make"
+msgstr "FG 아이템 제작"
+
+#. Option for the 'Default Stock Valuation Method' (Select) field in DocType
+#. 'Company'
+#. Option for the 'Valuation Method' (Select) field in DocType 'Item'
+#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock
+#. Settings'
+#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType
+#. 'Stock Settings'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "FIFO"
+msgstr "FIFO"
+
+#. Label of the fifo_queue (Long Text) field in DocType 'Stock Closing Balance'
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+msgid "FIFO Queue"
+msgstr "FIFO 큐"
+
+#. Name of a report
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.json
+msgid "FIFO Queue vs Qty After Transaction Comparison"
+msgstr ""
+
+#. Label of the stock_queue (Small Text) field in DocType 'Serial and Batch
+#. Entry'
+#. Label of the stock_queue (Long Text) field in DocType 'Stock Ledger Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "FIFO Stock Queue (qty, rate)"
+msgstr ""
+
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:179
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:218
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:121
+msgid "FIFO/LIFO Queue"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "FX Revaluation"
+msgstr "외환 재평가"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Fahrenheit"
+msgstr "화씨"
+
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:17
+msgid "Failed Entries"
+msgstr "실패한 항목"
+
+#: erpnext/utilities/doctype/video_settings/video_settings.py:33
+msgid "Failed to Authenticate the API key."
+msgstr "API 키 인증에 실패했습니다."
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:37
+#: erpnext/setup/setup_wizard/setup_wizard.py:38
+msgid "Failed to create demo data"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:295
+msgid "Failed to delete closing balance."
+msgstr "최종 잔액 삭제에 실패했습니다."
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:150
+msgid "Failed to delete rule."
+msgstr "규칙 삭제에 실패했습니다."
+
+#: erpnext/setup/demo.py:77
+msgid "Failed to erase demo data, please delete the demo company manually."
+msgstr "데모 데이터를 삭제하는 데 실패했습니다. 데모 회사를 수동으로 삭제해 주세요."
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:286
+msgid "Failed to initiate payment with {0}. Please try again or contact support."
+msgstr ""
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:16
+#: erpnext/setup/setup_wizard/setup_wizard.py:17
+msgid "Failed to install presets"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:163
+msgid "Failed to parse MT940 format. Error: {0}"
+msgstr "MT940 형식을 구문 분석하는 데 실패했습니다. 오류: {0}"
+
+#: erpnext/assets/doctype/asset/asset.js:264
+msgid "Failed to post depreciation entries"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:58
+msgid "Failed to run rules evaluation"
+msgstr ""
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:126
+msgid "Failed to send email for campaign {0} to {1}"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:26
+msgid "Failed to set defaults"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:21
+#: erpnext/setup/setup_wizard/setup_wizard.py:22
+msgid "Failed to setup company"
+msgstr "회사 설정에 실패했습니다"
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:28
+msgid "Failed to setup defaults"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:860
+msgid "Failed to setup defaults for country {0}. Please contact support."
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:116
+msgid "Failed to update auto classify transactions settings"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:177
+msgid "Failed to update rule priorities"
+msgstr ""
+
+#. Label of the failure_date (Datetime) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Failure Date"
+msgstr "실패 날짜"
+
+#. Label of the failure_description_section (Section Break) field in DocType
+#. 'POS Closing Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "Failure Description"
+msgstr "실패 설명"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.js:37
+msgid "Failure: {0}"
+msgstr "실패: {0}"
+
+#. Label of the family_background (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Family Background"
+msgstr "가족 배경"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Faraday"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Fathom"
+msgstr "길"
+
+#. Label of the document_name (Dynamic Link) field in DocType 'Quality
+#. Feedback'
+#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json
+msgid "Feedback By"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/quality.json
+msgid "Feedback Template"
+msgstr ""
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Fees"
+msgstr "수수료"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:396
+msgid "Fetch Based On"
+msgstr "가져오기 기준"
+
+#. Label of the fetch_customers (Button) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Fetch Customers"
+msgstr "고객을 불러오세요"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:82
+msgid "Fetch Items from Warehouse"
+msgstr "창고에서 물품 가져오기"
+
+#: erpnext/crm/doctype/opportunity/opportunity.js:117
+msgid "Fetch Latest Exchange Rate"
+msgstr "최신 환율 가져오기"
+
+#: erpnext/accounts/doctype/dunning/dunning.js:61
+msgid "Fetch Overdue Payments"
+msgstr ""
+
+#. Label of the fetch_payment_schedule_in_payment_request (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Fetch Payment Schedule In Payment Request"
+msgstr "결제 요청에서 결제 일정 가져오기"
+
+#: erpnext/accounts/doctype/subscription/subscription.js:36
+msgid "Fetch Subscription Updates"
+msgstr "구독 업데이트 가져오기"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:286
+msgid "Fetch Timesheet"
+msgstr "근무 시간표 가져오기"
+
+#. Label of the fetch_timesheet_in_sales_invoice (Check) field in DocType
+#. 'Projects Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+msgid "Fetch Timesheet in Sales Invoice"
+msgstr "판매 송장에서 근무 시간표 가져오기"
+
+#. Label of the fetch_valuation_rate_for_internal_transaction (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Fetch Valuation Rate for Internal Transaction"
+msgstr ""
+
+#. Label of the fetch_from_parent (Select) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Fetch Value From"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.js:372
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:811
+msgid "Fetch exploded BOM (including sub-assemblies)"
+msgstr ""
+
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
+msgid "Fetched only {0} available serial numbers."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:198
+msgid "Fetching Material Requests..."
+msgstr "자료 요청 가져오는 중..."
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:145
+msgid "Fetching Sales Orders..."
+msgstr "판매 주문을 가져오는 중..."
+
+#: erpnext/accounts/doctype/dunning/dunning.js:135
+#: erpnext/public/js/controllers/transaction.js:1593
+msgid "Fetching exchange rates ..."
+msgstr "환율 불러오는 중..."
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:74
+msgid "Fetching..."
+msgstr "가져오는 중..."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:224
+msgid "Field '{0}' is not a valid Company link field for DocType {1}"
+msgstr ""
+
+#. Label of the field_mapping_section (Section Break) field in DocType
+#. 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Field Mapping"
+msgstr ""
+
+#. Label of the bank_transaction_field (Select) field in DocType 'Bank
+#. Transaction Mapping'
+#: erpnext/accounts/doctype/bank_transaction_mapping/bank_transaction_mapping.json
+msgid "Field in Bank Transaction"
+msgstr "은행 거래 필드"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "필드 이름 충돌"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr "필드 이름 {0} 이 이미 다음 문서 유형에 존재합니다: {1}. 이러한 문서 유형에는 별도의 차원 필드가 추가되지 않습니다. GL 항목은 기존 필드의 값을 차원 값으로 사용합니다."
+
+#. Description of the 'Do not update variants on save' (Check) field in DocType
+#. 'Item Variant Settings'
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Fields will be copied over only at time of creation."
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
+msgid "File does not belong to this Transaction Deletion Record"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
+msgid "File not found"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
+msgid "File not found on server"
+msgstr ""
+
+#. Label of the file_to_rename (Attach) field in DocType 'Rename Tool'
+#: erpnext/utilities/doctype/rename_tool/rename_tool.json
+msgid "File to Rename"
+msgstr "파일 이름을 변경할 파일"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:231
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:16
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:16
+#: erpnext/public/js/financial_statements.js:382
+msgid "Filter Based On"
+msgstr "필터링 기준"
+
+#. Label of the filter_duration (Int) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Filter Duration (Months)"
+msgstr "필터 적용 기간(개월)"
+
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:60
+msgid "Filter Total Zero Qty"
+msgstr ""
+
+#. Label of the filter_by_reference_date (Check) field in DocType 'Bank
+#. Reconciliation Tool'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+msgid "Filter by Reference Date"
+msgstr "참조 날짜로 필터링"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:351
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:163
+msgid "Filter by amount"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:70
+msgid "Filter by invoice status"
+msgstr ""
+
+#. Label of the invoice_name (Data) field in DocType 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Filter on Invoice"
+msgstr "송장 필터링"
+
+#. Label of the payment_name (Data) field in DocType 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Filter on Payment"
+msgstr "결제 필터"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:158
+msgid "Filters for Material Requests"
+msgstr "자재 요청 필터"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:92
+msgid "Filters for Sales Orders"
+msgstr "판매 주문 필터"
+
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:74
+msgid "Filters missing"
+msgstr "필터가 누락되었습니다"
+
+#. Label of the bom_no (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Final BOM"
+msgstr "최종 BOM"
+
+#. Label of the details_tab (Tab Break) field in DocType 'BOM Creator'
+#. Label of the production_item (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Final Product"
+msgstr "최종 제품"
+
+#. Label of the finance_book (Link) field in DocType 'Account Closing Balance'
+#. Name of a DocType
+#. Label of the finance_book (Link) field in DocType 'GL Entry'
+#. Label of the finance_book (Link) field in DocType 'Journal Entry'
+#. Label of the finance_book (Link) field in DocType 'Payment Ledger Entry'
+#. Label of the finance_book (Link) field in DocType 'POS Invoice Item'
+#. Label of the finance_book (Link) field in DocType 'Process Statement Of
+#. Accounts'
+#. Label of the finance_book (Link) field in DocType 'Sales Invoice Item'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the finance_book (Link) field in DocType 'Asset Capitalization'
+#. Label of the finance_book (Link) field in DocType 'Asset Capitalization
+#. Asset Item'
+#. Label of the finance_book (Link) field in DocType 'Asset Depreciation
+#. Schedule'
+#. Label of the finance_book (Link) field in DocType 'Asset Finance Book'
+#. Label of the finance_book (Link) field in DocType 'Asset Shift Allocation'
+#. Label of the finance_book (Link) field in DocType 'Asset Value Adjustment'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/finance_book/finance_book.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:22
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:41
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:24
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:41
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:48
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.js:51
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:104
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:51
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:32
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:51
+#: erpnext/accounts/report/general_ledger/general_ledger.js:16
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:31
+#: erpnext/accounts/report/trial_balance/trial_balance.js:71
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:48
+#: erpnext/public/js/financial_statements.js:376
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Finance Book"
+msgstr "금융 서적"
+
+#. Label of the finance_book_detail (Section Break) field in DocType 'Asset
+#. Category'
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Finance Book Detail"
+msgstr ""
+
+#. Label of the finance_book_id (Int) field in DocType 'Asset Depreciation
+#. Schedule'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "Finance Book Id"
+msgstr ""
+
+#. Label of the finance_books (Table) field in DocType 'Asset'
+#. Label of the finance_books (Table) field in DocType 'Asset Category'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Finance Books"
+msgstr "금융 서적"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:17
+msgid "Finance Manager"
+msgstr "재무 관리자"
+
+#. Name of a report
+#: erpnext/accounts/report/financial_ratios/financial_ratios.json
+msgid "Financial Ratios"
+msgstr "재무 비율"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Financial Report Row"
+msgstr "재무 보고서 행"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Financial Report Template"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276
+msgid "Financial Report Template {0} is disabled"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273
+msgid "Financial Report Template {0} not found"
+msgstr ""
+
+#. Name of a Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/desktop_icon/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Financial Reports"
+msgstr "재무 보고서"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:24
+msgid "Financial Services"
+msgstr "금융 서비스"
+
+#. Label of a Card Break in the Financial Reports Workspace
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/public/js/financial_statements.js:312
+msgid "Financial Statements"
+msgstr "재무제표"
+
+#: erpnext/public/js/setup_wizard.js:48
+msgid "Financial Year Begins On"
+msgstr ""
+
+#. Description of the 'Ignore Account Closing Balance' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) "
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
+msgid "Finish"
+msgstr "마치다"
+
+#. Label of the fg_item (Link) field in DocType 'Purchase Order Item'
+#. Label of the item_code (Link) field in DocType 'BOM Creator'
+#. Label of the parent_item_code (Link) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the fg_item (Link) field in DocType 'Sales Order Item'
+#. Label of the finished_good (Link) field in DocType 'Subcontracting BOM'
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:180
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:43
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:147
+#: erpnext/selling/doctype/sales_order/sales_order.js:868
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Finished Good"
+msgstr "잘 마무리됨"
+
+#. Label of the finished_good_bom (Link) field in DocType 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Finished Good BOM"
+msgstr "완성된 좋은 BOM"
+
+#. Label of the fg_item (Link) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Label of the fg_item (Link) field in DocType 'Subcontracting Order Service
+#. Item'
+#: erpnext/public/js/utils.js:912
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+msgid "Finished Good Item"
+msgstr "완제품"
+
+#. Label of the fg_item_code (Link) field in DocType 'Subcontracting Inward
+#. Order Secondary Item'
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:36
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+msgid "Finished Good Item Code"
+msgstr "완제품 품목 코드"
+
+#: erpnext/public/js/utils.js:930
+msgid "Finished Good Item Qty"
+msgstr "완제품 수량"
+
+#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Service Item'
+#. Label of the fg_item_qty (Float) field in DocType 'Subcontracting Order
+#. Service Item'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+msgid "Finished Good Item Quantity"
+msgstr "완제품 품목 수량"
+
+#: erpnext/controllers/accounts_controller.py:4095
+msgid "Finished Good Item is not specified for service item {0}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4112
+msgid "Finished Good Item {0} Qty can not be zero"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4106
+msgid "Finished Good Item {0} must be a sub-contracted item"
+msgstr ""
+
+#. Label of the fg_item_qty (Float) field in DocType 'Purchase Order Item'
+#. Label of the fg_item_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the finished_good_qty (Float) field in DocType 'Subcontracting BOM'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Finished Good Qty"
+msgstr "완제품 수량"
+
+#. Label of the fg_completed_qty (Float) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Finished Good Quantity "
+msgstr "완제품 수량 "
+
+#. Label of the serial_no_and_batch_for_finished_good_section (Section Break)
+#. field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Finished Good Serial / Batch"
+msgstr ""
+
+#. Label of the finished_good_uom (Link) field in DocType 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Finished Good UOM"
+msgstr "완료됨 좋은 UOM"
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:51
+msgid "Finished Good {0} does not have a default BOM."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:46
+msgid "Finished Good {0} is disabled."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:48
+msgid "Finished Good {0} must be a stock item."
+msgstr "완제품 {0} 은 재고 품목이어야 합니다."
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:55
+msgid "Finished Good {0} must be a sub-contracted item."
+msgstr "완제품 {0} 은 하청 품목이어야 합니다."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1475
+#: erpnext/setup/doctype/company/company.py:389
+msgid "Finished Goods"
+msgstr "완제품"
+
+#. Label of the fg_based_section_section (Section Break) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Finished Goods Based Operating Cost"
+msgstr ""
+
+#. Label of the fg_item (Link) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Finished Goods Item"
+msgstr "완제품 품목"
+
+#. Label of the fg_reference_id (Data) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Finished Goods Reference"
+msgstr "완제품 참조 번호"
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:165
+msgid "Finished Goods Return"
+msgstr "완제품 반품"
+
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:106
+msgid "Finished Goods Value"
+msgstr "완제품 가치"
+
+#. Label of the fg_warehouse (Link) field in DocType 'BOM Operation'
+#. Label of the warehouse (Link) field in DocType 'Production Plan Item'
+#. Label of the fg_warehouse (Link) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Finished Goods Warehouse"
+msgstr "완제품 창고"
+
+#. Label of the fg_based_operating_cost (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Finished Goods based Operating Cost"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
+msgid "Finished Item {0} does not match with Work Order {1}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:615
+msgid "First Delivery Date"
+msgstr "첫 배송일"
+
+#. Label of the first_email (Time) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "First Email"
+msgstr "첫 번째 이메일"
+
+#. Label of the first_responded_on (Datetime) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "First Responded On"
+msgstr "최초 응답일"
+
+#. Option for the 'Service Level Agreement Status' (Select) field in DocType
+#. 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "First Response Due"
+msgstr "첫 번째 응답 기한"
+
+#: erpnext/support/doctype/issue/test_issue.py:238
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:906
+msgid "First Response SLA Failed by {}"
+msgstr "최초 대응 SLA 실패 원인: {}"
+
+#. Label of the first_response_time (Duration) field in DocType 'Opportunity'
+#. Label of the first_response_time (Duration) field in DocType 'Issue'
+#. Label of the response_time (Duration) field in DocType 'Service Level
+#. Priority'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/service_level_priority/service_level_priority.json
+#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.py:15
+msgid "First Response Time"
+msgstr "최초 응답 시간"
+
+#. Name of a report
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/support/report/first_response_time_for_issues/first_response_time_for_issues.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "First Response Time for Issues"
+msgstr "문제 발생 시 최초 대응 시간"
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/first_response_time_for_opportunity/first_response_time_for_opportunity.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "First Response Time for Opportunity"
+msgstr "기회 포착을 위한 최초 대응 시간"
+
+#: erpnext/regional/italy/utils.py:236
+msgid "Fiscal Regime is mandatory, kindly set the fiscal regime in the company {0}"
+msgstr "세법 체계는 필수입니다. 회사에 세법 체계를 설정해 주십시오. {0}"
+
+#. Name of a DocType
+#. Label of the fiscal_year (Link) field in DocType 'GL Entry'
+#. Label of the fiscal_year (Link) field in DocType 'Monthly Distribution'
+#. Label of the fiscal_year (Link) field in DocType 'Period Closing Voucher'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the fiscal_year (Link) field in DocType 'Lower Deduction
+#. Certificate'
+#. Label of the fiscal_year (Link) field in DocType 'Target Detail'
+#. Label of the fiscal_year (Data) field in DocType 'Stock Ledger Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:18
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:16
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:38
+#: erpnext/accounts/report/trial_balance/trial_balance.js:16
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:16
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:16
+#: erpnext/public/js/purchase_trends_filters.js:28
+#: erpnext/public/js/sales_trends_filters.js:44
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/regional/report/irs_1099/irs_1099.js:17
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:15
+#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:15
+#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:15
+#: erpnext/setup/doctype/target_detail/target_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Fiscal Year"
+msgstr "회계연도"
+
+#: erpnext/public/js/utils/naming_series.js:100
+msgid "Fiscal Year (requires ERPNext to be installed)"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/fiscal_year_company/fiscal_year_company.json
+msgid "Fiscal Year Company"
+msgstr "회계연도 회사"
+
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:5
+msgid "Fiscal Year Details"
+msgstr "회계연도 세부 정보"
+
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:53
+msgid "Fiscal Year End Date should be one year after Fiscal Year Start Date"
+msgstr ""
+
+#: erpnext/controllers/trends.py:59
+msgid "Fiscal Year {0} Does Not Exist"
+msgstr "회계연도 {0} 는 존재하지 않습니다"
+
+#: erpnext/accounts/report/trial_balance/trial_balance.py:49
+msgid "Fiscal Year {0} does not exist"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:95
+msgid "Fiscal Year {0} is not available for Company {1}."
+msgstr ""
+
+#: erpnext/accounts/report/trial_balance/trial_balance.py:43
+msgid "Fiscal Year {0} is required"
+msgstr ""
+
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:28
+msgid "Fix SABB Entry"
+msgstr "SABB 항목 수정"
+
+#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping
+#. Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Fixed"
+msgstr "결정된"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
+msgid "Fixed Asset"
+msgstr "고정 자산"
+
+#. Label of the fixed_asset_account (Link) field in DocType 'Asset
+#. Capitalization Asset Item'
+#. Label of the fixed_asset_account (Link) field in DocType 'Asset Category
+#. Account'
+#: erpnext/assets/doctype/asset/asset.py:902
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_category_account/asset_category_account.json
+msgid "Fixed Asset Account"
+msgstr ""
+
+#. Label of the fixed_asset_defaults (Section Break) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Fixed Asset Defaults"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:372
+msgid "Fixed Asset Item must be a non-stock item."
+msgstr ""
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.json
+#: erpnext/workspace_sidebar/assets.json
+msgid "Fixed Asset Register"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:211
+msgid "Fixed Asset Turnover Ratio"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:788
+msgid "Fixed Asset item {0} cannot be used in BOMs."
+msgstr "고정 자산 품목 {0} 은 BOM에 사용할 수 없습니다."
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
+msgid "Fixed Assets"
+msgstr "고정 자산"
+
+#. Label of the fixed_deposit_number (Data) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Fixed Deposit Number"
+msgstr ""
+
+#. Label of the fixed_email (Link) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Fixed Outgoing Email Account"
+msgstr "고정 발신 이메일 계정"
+
+#. Option for the 'Subscription Price Based On' (Select) field in DocType
+#. 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Fixed Rate"
+msgstr "고정 금리"
+
+#. Label of the fixed_time (Check) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Fixed Time"
+msgstr "정기"
+
+#. Name of a role
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Fleet Manager"
+msgstr "차량 관리자"
+
+#. Label of the details_tab (Tab Break) field in DocType 'Plant Floor'
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+msgid "Floor"
+msgstr "바닥"
+
+#. Label of the floor_name (Data) field in DocType 'Plant Floor'
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+msgid "Floor Name"
+msgstr "층 이름"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Fluid Ounce (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Fluid Ounce (US)"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:384
+msgid "Focus on Item Group filter"
+msgstr "항목 그룹 필터에 집중"
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:375
+msgid "Focus on search input"
+msgstr "검색 입력에 집중하세요"
+
+#. Label of the folio_no (Data) field in DocType 'Shareholder'
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+msgid "Folio no."
+msgstr ""
+
+#. Label of the follow_calendar_months (Check) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Follow Calendar Months"
+msgstr "달력 월을 따라가세요"
+
+#: erpnext/templates/emails/reorder_item.html:1
+msgid "Following Material Requests have been raised automatically based on Item's re-order level"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:845
+msgid "Following fields are mandatory to create address:"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:25
+msgid "Food, Beverage & Tobacco"
+msgstr "식품, 음료 및 담배"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Foot"
+msgstr "발"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Foot Of Water"
+msgstr "물의 발"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Foot/Minute"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Foot/Second"
+msgstr "피트/초"
+
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:23
+msgid "For"
+msgstr ""
+
+#: erpnext/public/js/utils/sales_common.js:389
+msgid "For 'Product Bundle' items, Warehouse, Serial No and Batch No will be considered from the 'Packing List' table. If Warehouse and Batch No are same for all packing items for any 'Product Bundle' item, those values can be entered in the main Item table, values will be copied to 'Packing List' table."
+msgstr ""
+
+#. Label of the for_all_stock_asset_accounts (Check) field in DocType 'Journal
+#. Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "For All Stock Asset Accounts"
+msgstr "모든 주식 자산 계정에 대해"
+
+#. Label of the for_buying (Check) field in DocType 'Currency Exchange'
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+msgid "For Buying"
+msgstr ""
+
+#. Label of the company (Link) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "For Company"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:187
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:211
+msgid "For Item"
+msgstr "품목에 관하여"
+
+#: erpnext/controllers/stock_controller.py:1607
+msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
+msgstr ""
+
+#. Label of the for_job_card (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "For Job Card"
+msgstr ""
+
+#. Label of the for_operation (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "For Operation"
+msgstr "운영을 위해"
+
+#. Label of the for_price_list (Link) field in DocType 'Pricing Rule'
+#. Label of the for_price_list (Link) field in DocType 'Promotional Scheme
+#. Price Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "For Price List"
+msgstr "가격표 보기"
+
+#. Description of the 'Planned Quantity' (Float) field in DocType 'Sales Order
+#. Item'
+#. Description of the 'Produced Quantity' (Float) field in DocType 'Sales Order
+#. Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "For Production"
+msgstr ""
+
+#. Label of the material_request_planning (Section Break) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "For Raw Materials"
+msgstr "원자재의 경우"
+
+#: erpnext/controllers/accounts_controller.py:1443
+msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
+msgstr "재고 효과가 있는 반품 송장의 경우, 수량 '0' 품목은 허용되지 않습니다. 다음 행이 영향을 받습니다: {0}"
+
+#. Label of the for_selling (Check) field in DocType 'Currency Exchange'
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+msgid "For Selling"
+msgstr "판매합니다"
+
+#: erpnext/accounts/doctype/payment_order/payment_order.js:108
+msgid "For Supplier"
+msgstr ""
+
+#. Label of the warehouse (Link) field in DocType 'Material Request Plan Item'
+#. Label of the for_warehouse (Link) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:471
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1488
+#: erpnext/stock/doctype/material_request/material_request.js:361
+#: erpnext/templates/form_grid/material_request_grid.html:36
+msgid "For Warehouse"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:136
+msgid "For Work Order"
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:290
+msgid "For an item {0}, quantity must be negative number"
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:287
+msgid "For an item {0}, quantity must be positive number"
+msgstr ""
+
+#. Description of the 'Income Account' (Link) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "For dunning fee and interest"
+msgstr "독촉 수수료 및 이자"
+
+#. Description of the 'Year Name' (Data) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "For e.g. 2012, 2012-13"
+msgstr "예를 들어 2012년, 2012-13년"
+
+#: banking/src/components/features/Settings/Preferences.tsx:154
+msgid "For example, if set to 4, the system will try to find matching transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts."
+msgstr "예를 들어, 이 값을 4로 설정하면 시스템은 거래일 기준 4일 전후로 다른 은행에서 일치하는 거래를 찾으려고 시도합니다. 이는 거래가 은행 계좌마다 다른 날짜에 처리될 수 있기 때문입니다."
+
+#: banking/src/components/features/Settings/Preferences.tsx:60
+msgid "For example, if set to 4, the system will try to find matching transfer transactions in other banks 4 days before and after the transaction date. This is because transactions can clear on different days on different bank accounts."
+msgstr "예를 들어, 이 값을 4로 설정하면 시스템은 거래일 기준 4일 전후로 다른 은행에서 일치하는 이체 거래를 찾으려고 시도합니다. 이는 거래가 은행 계좌마다 다른 날짜에 처리될 수 있기 때문입니다."
+
+#. Description of the 'Collection Factor (=1 LP)' (Currency) field in DocType
+#. 'Loyalty Program Collection'
+#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json
+msgid "For how much spent = 1 Loyalty Point"
+msgstr ""
+
+#. Description of the 'Supplier' (Link) field in DocType 'Request for
+#. Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "For individual supplier"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:376
+msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
+msgstr "항목 {0} 에 대해서는 {1} 자산만 생성되었거나 {2} 에 연결되었습니다. 해당 문서에 {3} 자산을 추가로 생성하거나 연결해 주십시오."
+
+#: erpnext/controllers/status_updater.py:300
+msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
+msgstr ""
+
+#. Description of the 'Do not fetch incoming rate from Serial No' (Check) field
+#. in DocType 'Stock Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "For legacy serial nos, do not fetch incoming rate from serial no and calculate it based on the inward transaction"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:369
+msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
+msgstr "{0} 작업의 경우, 행 {1}에 대해 원자재를 추가하거나 BOM을 설정하십시오."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
+msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.js:208
+msgid "For project - {0}, update your status"
+msgstr ""
+
+#. Description of the 'Parent Warehouse' (Link) field in DocType 'Master
+#. Production Schedule'
+#. Description of the 'Parent Warehouse' (Link) field in DocType 'Sales
+#. Forecast'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
+msgstr "예상 및 예측 수량의 경우, 시스템은 선택된 상위 창고 아래의 모든 하위 창고를 고려합니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
+msgid "For quantity {0} should not be greater than allowed quantity {1}"
+msgstr ""
+
+#. Description of the 'Territory Manager' (Link) field in DocType 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "For reference"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
+#: erpnext/public/js/controllers/accounts.js:204
+msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
+msgid "For row {0}: Enter Planned Qty"
+msgstr ""
+
+#. Description of the 'Service Expense Account' (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "For service item"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:178
+msgid "For the 'Apply Rule On Other' condition the field {0} is mandatory"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
+msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:1403
+msgctxt "Clear payment terms template and/or payment schedule when due date is changed"
+msgid "For the new {0} to take effect, would you like to clear the current {1}?"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:448
+msgid "For the {0}, no stock is available for the return in the warehouse {1}."
+msgstr "{0}의 경우, 창고 {1}에 반품 가능한 재고가 없습니다."
+
+#: erpnext/controllers/sales_and_purchase_return.py:1244
+msgid "For the {0}, the quantity is required to make the return entry"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:258
+msgid "Force Clear"
+msgstr "강제 삭제"
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:304
+msgid "Force Clear Voucher"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:85
+msgid "Force evaluate all"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:83
+msgid "Force re-evaluate all unreconciled transactions, even if they were previously evaluated"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.js:42
+msgid "Force-Fetch Subscription Updates"
+msgstr "구독 업데이트 강제 가져오기"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:234
+msgid "Forecast"
+msgstr "예측"
+
+#. Label of the forecast_demand_section (Section Break) field in DocType
+#. 'Master Production Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+msgid "Forecast Demand"
+msgstr "수요 예측"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Forecasting"
+msgstr "예측"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:254
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:255
+#: erpnext/accounts/report/consolidated_trial_balance/test_consolidated_trial_balance.py:73
+msgid "Foreign Currency Translation Reserve"
+msgstr ""
+
+#. Label of the foreign_trade_details (Section Break) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Foreign Trade Details"
+msgstr "대외 무역 세부 정보"
+
+#. Label of the formula_based_criteria (Check) field in DocType 'Item Quality
+#. Inspection Parameter'
+#. Label of the formula_based_criteria (Check) field in DocType 'Quality
+#. Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Formula Based Criteria"
+msgstr "공식 기반 기준"
+
+#. Label of the calculation_formula (Code) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Formula or Account Filter"
+msgstr "수식 또는 계정 필터"
+
+#: erpnext/templates/pages/help.html:35
+msgid "Forum Activity"
+msgstr "포럼 활동"
+
+#. Label of the forum_sb (Section Break) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Forum Posts"
+msgstr ""
+
+#. Label of the forum_url (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Forum URL"
+msgstr "포럼 URL"
+
+#: erpnext/setup/install.py:242
+msgid "Frappe School"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:4
+msgid "Free Alongside Ship"
+msgstr ""
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:3
+msgid "Free Carrier"
+msgstr ""
+
+#. Label of the free_item (Link) field in DocType 'Pricing Rule'
+#. Label of the section_break_6 (Section Break) field in DocType 'Promotional
+#. Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Free Item"
+msgstr "무료 상품"
+
+#. Label of the free_item_rate (Currency) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Free Item Rate"
+msgstr "무료 품목 요금"
+
+#. Title of an incoterm
+#: erpnext/setup/doctype/incoterm/incoterms.csv:5
+msgid "Free On Board"
+msgstr "무료 탑승"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:283
+msgid "Free item code is not selected"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:655
+msgid "Free item not set in the pricing rule {0}"
+msgstr "가격 규칙에 무료 항목이 설정되지 않았습니다 {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 ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+msgid "Freight and Forwarding Charges"
+msgstr ""
+
+#. Label of the frequency (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Frequency To Collect Progress"
+msgstr "진행 상황 수집 빈도"
+
+#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset'
+#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the frequency_of_depreciation (Int) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Frequency of Depreciation (Months)"
+msgstr ""
+
+#: erpnext/www/support/index.html:45
+msgid "Frequently Read Articles"
+msgstr "자주 읽는 기사"
+
+#. Label of the from_bom (Link) field in DocType 'Material Request Plan Item'
+#. Label of the from_bom (Check) field in DocType 'Stock Entry'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "From BOM"
+msgstr "BOM에서"
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:105
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:169
+msgid "From BOM No"
+msgstr "BOM 번호부터"
+
+#. Label of the from_company (Data) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "From Company"
+msgstr "회사 제공"
+
+#. Description of the 'Corrective Operation Cost' (Currency) field in DocType
+#. 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "From Corrective Job Card"
+msgstr "교정 작업 카드에서"
+
+#. Label of the from_currency (Link) field in DocType 'Currency Exchange'
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+msgid "From Currency"
+msgstr "통화에서"
+
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.py:52
+msgid "From Currency and To Currency cannot be same"
+msgstr ""
+
+#. Label of the customer (Link) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "From Customer"
+msgstr "고객으로부터"
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.py:45
+msgid "From Date and To Date are Mandatory"
+msgstr ""
+
+#: erpnext/accounts/report/financial_statements.py:138
+msgid "From Date and To Date are mandatory"
+msgstr ""
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:29
+msgid "From Date and To Date are required"
+msgstr ""
+
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:30
+msgid "From Date and To Date lie in different Fiscal Year"
+msgstr ""
+
+#: erpnext/accounts/report/trial_balance/trial_balance.py:64
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:13
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:14
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:29
+msgid "From Date cannot be greater than To Date"
+msgstr ""
+
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:60
+msgid "From Date cannot be greater than To Date."
+msgstr ""
+
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:26
+msgid "From Date is mandatory"
+msgstr ""
+
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:53
+#: erpnext/accounts/report/general_ledger/general_ledger.py:86
+#: erpnext/accounts/report/pos_register/pos_register.py:115
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:32
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:25
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:34
+#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:38
+msgid "From Date must be before To Date"
+msgstr ""
+
+#: erpnext/accounts/report/trial_balance/trial_balance.py:68
+msgid "From Date should be within the Fiscal Year. Assuming From Date = {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:43
+msgid "From Date: {0} cannot be greater than To date: {1}"
+msgstr ""
+
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:29
+msgid "From Datetime"
+msgstr "시작 날짜 및 시간"
+
+#. Label of the from_delivery_date (Date) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "From Delivery Date"
+msgstr ""
+
+#: erpnext/selling/doctype/installation_note/installation_note.js:59
+msgid "From Delivery Note"
+msgstr "배송 전표에서"
+
+#. Label of the from_doctype (Link) field in DocType 'Bulk Transaction Log
+#. Detail'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "From Doctype"
+msgstr "Doctype에서"
+
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:78
+msgid "From Due Date"
+msgstr "마감일 기준"
+
+#. Label of the from_employee (Link) field in DocType 'Asset Movement Item'
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+msgid "From Employee"
+msgstr "직원으로부터"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:98
+msgid "From Employee is required while issuing Asset {0}"
+msgstr "자산 발행 시 직원으로부터 승인이 필요합니다 {0}"
+
+#. Label of the from_external_ecomm_platform (Check) field in DocType 'Coupon
+#. Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "From External Ecomm Platform"
+msgstr ""
+
+#. Label of the from_fiscal_year (Link) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:43
+msgid "From Fiscal Year"
+msgstr "회계연도부터"
+
+#: erpnext/accounts/doctype/budget/budget.py:108
+msgid "From Fiscal Year cannot be greater than To Fiscal Year"
+msgstr ""
+
+#. Label of the from_folio_no (Data) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "From Folio No"
+msgstr ""
+
+#. Label of the from_invoice_date (Date) field in DocType 'Payment
+#. Reconciliation'
+#. Label of the from_invoice_date (Date) field in DocType 'Process Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "From Invoice Date"
+msgstr "송장 발행일 기준"
+
+#. Label of the from_no (Int) field in DocType 'Share Balance'
+#. Label of the from_no (Int) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "From No"
+msgstr ""
+
+#. Label of the from_case_no (Int) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "From Package No."
+msgstr ""
+
+#. Label of the from_payment_date (Date) field in DocType 'Payment
+#. Reconciliation'
+#. Label of the from_payment_date (Date) field in DocType 'Process Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "From Payment Date"
+msgstr ""
+
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:36
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:22
+msgid "From Posting Date"
+msgstr "게시일 기준"
+
+#. Label of the from_range (Float) field in DocType 'Item Attribute'
+#. Label of the from_range (Float) field in DocType 'Item Variant Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "From Range"
+msgstr "범위에서"
+
+#: erpnext/stock/doctype/item_attribute/item_attribute.py:95
+msgid "From Range has to be less than To Range"
+msgstr ""
+
+#. Label of the from_reference_date (Date) field in DocType 'Bank
+#. Reconciliation Tool'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+msgid "From Reference Date"
+msgstr ""
+
+#. Label of the from_shareholder (Link) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "From Shareholder"
+msgstr "주주로부터"
+
+#. Label of the from_template (Link) field in DocType 'Journal Entry'
+#. Label of the project_template (Link) field in DocType 'Project'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/projects/doctype/project/project.json
+msgid "From Template"
+msgstr ""
+
+#. Label of the from_time (Time) field in DocType 'Cashier Closing'
+#. Label of the from_time (Datetime) field in DocType 'Sales Invoice Timesheet'
+#. Label of the from_time (Time) field in DocType 'Communication Medium
+#. Timeslot'
+#. Label of the from_time (Time) field in DocType 'Availability Of Slots'
+#. Label of the from_time (Datetime) field in DocType 'Downtime Entry'
+#. Label of the from_time (Datetime) field in DocType 'Job Card Scheduled Time'
+#. Label of the from_time (Datetime) field in DocType 'Job Card Time Log'
+#. Label of the from_time (Time) field in DocType 'Project'
+#. Label of the from_time (Datetime) field in DocType 'Timesheet Detail'
+#. Label of the from_time (Time) field in DocType 'Incoming Call Handling
+#. Schedule'
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json
+#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:91
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:179
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json
+#: erpnext/templates/pages/timelog_info.html:31
+msgid "From Time"
+msgstr "시간으로부터"
+
+#. Label of the from_time (Time) field in DocType 'Appointment Booking Slots'
+#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json
+msgid "From Time "
+msgstr "시간으로부터 "
+
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.py:67
+msgid "From Time Should Be Less Than To Time"
+msgstr ""
+
+#. Label of the from_value (Float) field in DocType 'Shipping Rule Condition'
+#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json
+msgid "From Value"
+msgstr "가치로부터"
+
+#. Label of the from_voucher_detail_no (Data) field in DocType 'Stock
+#. Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "From Voucher Detail No"
+msgstr ""
+
+#. Label of the from_voucher_no (Dynamic Link) field in DocType 'Stock
+#. Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:103
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:164
+msgid "From Voucher No"
+msgstr ""
+
+#. Label of the from_voucher_type (Select) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:92
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:158
+msgid "From Voucher Type"
+msgstr ""
+
+#. Label of the from_warehouse (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the from_warehouse (Link) field in DocType 'Purchase Order Item'
+#. Label of the from_warehouse (Link) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the warehouse (Link) field in DocType 'Packed Item'
+#. Label of the from_warehouse (Link) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "From Warehouse"
+msgstr "창고에서"
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:36
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:32
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:37
+msgid "From and To Dates are required."
+msgstr ""
+
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:166
+msgid "From and To dates are required"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:51
+msgid "From date cannot be greater than To date"
+msgstr ""
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:79
+msgid "From value must be less than to value in row {0}"
+msgstr ""
+
+#. Label of the freeze_account (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Frozen"
+msgstr "언"
+
+#. Label of the fuel_type (Select) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Fuel Type"
+msgstr "연료 종류"
+
+#. Label of the uom (Link) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Fuel UOM"
+msgstr "연료 단위"
+
+#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract'
+#. Label of the fulfilled (Check) field in DocType 'Contract Fulfilment
+#. Checklist'
+#. Option for the 'Service Level Agreement Status' (Select) field in DocType
+#. 'Issue'
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json
+#: erpnext/support/doctype/issue/issue.json
+msgid "Fulfilled"
+msgstr "성취됨"
+
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:24
+msgid "Fulfillment"
+msgstr "이행"
+
+#. Name of a role
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Fulfillment User"
+msgstr "이행 사용자"
+
+#. Label of the fulfilment_deadline (Date) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Fulfilment Deadline"
+msgstr "이행 기한"
+
+#. Label of the sb_fulfilment (Section Break) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Fulfilment Details"
+msgstr "이행 세부 정보"
+
+#. Label of the fulfilment_status (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Fulfilment Status"
+msgstr "이행 상태"
+
+#. Label of the fulfilment_terms (Table) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Fulfilment Terms"
+msgstr "이행 조건"
+
+#. Label of the fulfilment_terms (Table) field in DocType 'Contract Template'
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Fulfilment Terms and Conditions"
+msgstr "주문 이행 약관"
+
+#: erpnext/stock/doctype/shipment/shipment.js:275
+msgid "Full Name, Email or Phone/Mobile of the user are mandatory to continue."
+msgstr "계속 진행하려면 사용자의 성명, 이메일 또는 전화번호/휴대전화번호를 반드시 입력해야 합니다."
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Full and Final Statement"
+msgstr "최종 성명"
+
+#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Fully Billed"
+msgstr "전액 청구됨"
+
+#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance
+#. Schedule Detail'
+#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance
+#. Visit'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Fully Completed"
+msgstr "완전히 완료됨"
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Fully Delivered"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:6
+msgid "Fully Depreciated"
+msgstr ""
+
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase
+#. Order'
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Fully Paid"
+msgstr "전액 지불됨"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Furlong"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+msgid "Furniture and Fixtures"
+msgstr "가구 및 비품"
+
+#: erpnext/accounts/doctype/account/account_tree.js:135
+msgid "Further accounts can be made under Groups, but entries can be made against non-Groups"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:31
+msgid "Further cost centers can be made under Groups but entries can be made against non-Groups"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person_tree.js:15
+msgid "Further nodes can be only created under 'Group' type nodes"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
+#: 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:1210
+msgid "Future Payment Ref"
+msgstr "미래 지불 참조"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:123
+msgid "Future Payments"
+msgstr "미래 지불"
+
+#: erpnext/assets/doctype/asset/depreciation.py:387
+msgid "Future date is not allowed"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:258
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:161
+msgid "G - D"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:16
+msgid "GENERAL LEDGER"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankPicker.tsx:127
+#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:64
+msgid "GL Account"
+msgstr "GL 계정"
+
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:172
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:250
+msgid "GL Balance"
+msgstr "GL 잔액"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/report/general_ledger/general_ledger.py:690
+msgid "GL Entry"
+msgstr "GL 항목"
+
+#. Label of the gle_processing_status (Select) field in DocType 'Period Closing
+#. Voucher'
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+msgid "GL Entry Processing Status"
+msgstr "GL 입력 처리 상태"
+
+#. Label of the gl_reposting_index (Int) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "GL reposting index"
+msgstr ""
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "GS1"
+msgstr "GS1"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "GTIN"
+msgstr "GTIN"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "GTIN-14"
+msgstr "GTIN-14"
+
+#. Label of the gain_loss (Currency) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Gain/Loss"
+msgstr "이익/손실"
+
+#. Label of the disposal_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Gain/Loss Account on Asset Disposal"
+msgstr ""
+
+#. Description of the 'Gain/Loss already booked' (Currency) field in DocType
+#. 'Exchange Rate Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Gain/Loss accumulated in foreign currency account. Accounts with '0' balance in either Base or Account currency"
+msgstr ""
+
+#. Label of the gain_loss_booked (Currency) field in DocType 'Exchange Rate
+#. Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Gain/Loss already booked"
+msgstr ""
+
+#. Label of the gain_loss_unbooked (Currency) field in DocType 'Exchange Rate
+#. Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Gain/Loss from Revaluation"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:138
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:225
+#: erpnext/setup/doctype/company/company.py:686
+msgid "Gain/Loss on Asset Disposal"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gallon (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gallon Dry (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gallon Liquid (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gamma"
+msgstr "감마"
+
+#: erpnext/projects/doctype/project/project.js:102
+msgid "Gantt Chart"
+msgstr ""
+
+#: erpnext/config/projects.py:28
+msgid "Gantt chart of all tasks."
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gauss"
+msgstr ""
+
+#. Label of the general_ledger_remarks_length (Int) field in DocType 'Accounts
+#. Settings'
+#. Option for the 'Report' (Select) field in DocType 'Process Statement Of
+#. Accounts'
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.js:110
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/general_ledger/general_ledger.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "General Ledger"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.js:82
+msgctxt "Warehouse"
+msgid "General Ledger"
+msgstr ""
+
+#. Label of the gs (Section Break) field in DocType 'Item Group'
+#: erpnext/setup/doctype/item_group/item_group.json
+msgid "General Settings"
+msgstr "일반 설정"
+
+#. Name of a report
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.json
+msgid "General and Payment Ledger Comparison"
+msgstr "일반 원장과 지급 원장 비교"
+
+#. Label of the general_and_payment_ledger_mismatch (Check) field in DocType
+#. 'Ledger Health'
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+msgid "General and Payment Ledger mismatch"
+msgstr "일반 원장과 지급 원장 불일치"
+
+#. Label of the generate_demand (Button) field in DocType 'Sales Forecast'
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+msgid "Generate Demand"
+msgstr "수요 창출"
+
+#: erpnext/public/js/setup_wizard.js:54
+msgid "Generate Demo Data for Exploration"
+msgstr "탐색을 위한 데모 데이터 생성"
+
+#: erpnext/accounts/doctype/sales_invoice/regional/italy.js:4
+msgid "Generate E-Invoice"
+msgstr ""
+
+#. Label of the generate_invoice_at (Select) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Generate Invoice At"
+msgstr "송장 생성"
+
+#. Label of the generate_new_invoices_past_due_date (Check) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Generate New Invoices Past Due Date"
+msgstr "기한이 지난 신규 청구서 생성"
+
+#. Label of the generate_schedule (Button) field in DocType 'Maintenance
+#. Schedule'
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+msgid "Generate Schedule"
+msgstr "일정 생성"
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:12
+msgid "Generate Stock Closing Entry"
+msgstr "주식 마감 입력 생성"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:112
+msgid "Generate To Delete List"
+msgstr "삭제할 목록 생성"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:474
+msgid "Generate To Delete list first"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Generate packing slips for packages to be delivered. Used to notify package number, package contents and its weight."
+msgstr ""
+
+#. Label of the generated (Check) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Generated"
+msgstr "생성됨"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:56
+msgid "Generating Master Production Schedule..."
+msgstr "마스터 생산 일정 생성 중..."
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.js:30
+msgid "Generating Preview"
+msgstr ""
+
+#. Label of the get_actual_demand (Button) field in DocType 'Master Production
+#. Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+msgid "Get Actual Demand"
+msgstr "실제 수요를 파악하세요"
+
+#. Label of the get_advances (Button) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Get Advances Paid"
+msgstr ""
+
+#. Label of the get_advances (Button) field in DocType 'POS Invoice'
+#. Label of the get_advances (Button) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Get Advances Received"
+msgstr ""
+
+#. Label of the get_allocations (Button) field in DocType 'Unreconcile Payment'
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+msgid "Get Allocations"
+msgstr ""
+
+#. Label of the get_balance_for_periodic_accounting (Button) field in DocType
+#. 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Get Balance"
+msgstr "균형을 맞추세요"
+
+#. Label of the get_current_stock (Button) field in DocType 'Purchase Receipt'
+#. Label of the get_current_stock (Button) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Get Current Stock"
+msgstr "현재 재고 확인"
+
+#: erpnext/selling/doctype/customer/customer.js:190
+msgid "Get Customer Group Details"
+msgstr "고객 그룹 세부 정보 가져오기"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:646
+msgid "Get Delivery Schedule"
+msgstr "배송 일정 확인하기"
+
+#. Label of the get_entries (Button) field in DocType 'Exchange Rate
+#. Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Get Entries"
+msgstr "참가 신청하기"
+
+#. Label of the get_items (Button) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Finished Goods"
+msgstr "완제품을 받으세요"
+
+#. Description of the 'Get Finished Goods' (Button) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Finished Goods for Manufacture"
+msgstr ""
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:57
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:159
+msgid "Get Invoices"
+msgstr "청구서 받기"
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.js:104
+msgid "Get Invoices based on Filters"
+msgstr "필터를 사용하여 청구서를 받으세요"
+
+#. Label of the get_item_locations (Button) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Get Item Locations"
+msgstr "아이템 위치 가져오기"
+
+#. Label of the get_items_from (Select) field in DocType 'Production Plan'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:177
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:202
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:342
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:408
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:448
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:513
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:536
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:380
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:402
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:447
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:75
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:108
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:80
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:100
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/public/js/controllers/buying.js:325
+#: erpnext/selling/doctype/quotation/quotation.js:182
+#: erpnext/selling/doctype/sales_order/sales_order.js:201
+#: erpnext/selling/doctype/sales_order/sales_order.js:1254
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:187
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:239
+#: erpnext/stock/doctype/material_request/material_request.js:141
+#: erpnext/stock/doctype/material_request/material_request.js:238
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:144
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:244
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:439
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:486
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:519
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:610
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:778
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:165
+msgid "Get Items From"
+msgstr "다음에서 상품을 가져오세요"
+
+#. Label of the transfer_materials (Button) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Items for Purchase / Transfer"
+msgstr "구매/이전할 아이템을 가져오세요"
+
+#. Label of the get_items_for_mr (Button) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Items for Purchase Only"
+msgstr "구매 가능한 상품만 받아보세요"
+
+#: erpnext/stock/doctype/material_request/material_request.js:346
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:814
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:827
+msgid "Get Items from BOM"
+msgstr "BOM에서 품목 가져오기"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:419
+msgid "Get Items from Material Requests against this Supplier"
+msgstr ""
+
+#: erpnext/public/js/controllers/buying.js:602
+msgid "Get Items from Product Bundle"
+msgstr "제품 묶음에서 상품을 받으세요"
+
+#. Label of the get_latest_query (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Get Latest Query"
+msgstr "최신 쿼리 보기"
+
+#. Label of the get_material_request (Button) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Material Request"
+msgstr "자재 요청 받기"
+
+#. Label of the get_material_requests (Button) field in DocType 'Master
+#. Production Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:181
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:183
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+msgid "Get Material Requests"
+msgstr "자재 요청 받기"
+
+#. Label of the get_outstanding_invoices (Button) field in DocType 'Journal
+#. Entry'
+#. Label of the get_outstanding_invoices (Button) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Get Outstanding Invoices"
+msgstr ""
+
+#. Label of the get_outstanding_orders (Button) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Get Outstanding Orders"
+msgstr "뛰어난 주문을 받으세요"
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:38
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:40
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:43
+msgid "Get Payment Entries"
+msgstr "결제 내역 가져오기"
+
+#: erpnext/accounts/doctype/payment_order/payment_order.js:23
+#: erpnext/accounts/doctype/payment_order/payment_order.js:31
+msgid "Get Payments from"
+msgstr "다음으로부터 결제를 받으세요"
+
+#. Label of the get_rm_cost_from_consumption_entry (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Get Raw Materials Cost from Consumption Entry"
+msgstr ""
+
+#. Label of the get_sales_orders (Button) field in DocType 'Master Production
+#. Schedule'
+#. Label of the get_sales_orders (Button) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:128
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:130
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Sales Orders"
+msgstr "판매 주문 받기"
+
+#. Label of the get_secondary_items (Button) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Get Secondary Items"
+msgstr "보조 아이템을 획득하세요"
+
+#. Label of the get_started_sections (Code) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Get Started Sections"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:552
+msgid "Get Stock"
+msgstr "주식을 받으세요"
+
+#. Label of the get_sub_assembly_items (Button) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Get Sub Assembly Items"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:461
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:481
+msgid "Get Suppliers"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:485
+msgid "Get Suppliers By"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:338
+msgid "Get Timesheets"
+msgstr "근무 시간표 받기"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:84
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:87
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:94
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:97
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:102
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:107
+msgid "Get Unreconciled Entries"
+msgstr "일치하지 않는 항목 가져오기"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:73
+msgid "Get around the system quickly with keyboard shortcuts"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:71
+msgid "Get stops from"
+msgstr "다음 정류장에서 출발하세요"
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:196
+msgid "Getting Secondary Items"
+msgstr "보조 아이템 획득"
+
+#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Gift Card"
+msgstr ""
+
+#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in
+#. DocType 'Pricing Rule'
+#. Description of the 'Recurse Every (As Per Transaction UOM)' (Float) field in
+#. DocType 'Promotional Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Give free item for every N quantity"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a shortcut in the ERPNext Settings Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Global Defaults"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:58
+msgid "Go back"
+msgstr "돌아가기"
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.js:7
+msgid "Go to Bank Statement Importer in the Banking module to use this importer."
+msgstr ""
+
+#: banking/src/pages/BankReconciliation.tsx:96
+msgid "Go to Desktop"
+msgstr "바탕 화면으로 이동"
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.js:15
+msgid "Go to the Banking module to setup this rule."
+msgstr ""
+
+#. Label of a Card Break in the Quality Workspace
+#: erpnext/quality_management/workspace/quality/quality.json
+msgid "Goal and Procedure"
+msgstr "목표 및 절차"
+
+#. Group in Quality Procedure's connections
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Goals"
+msgstr "목표"
+
+#. Option for the 'Shipment Type' (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Goods"
+msgstr "상품"
+
+#: erpnext/setup/doctype/company/company.py:390
+#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
+msgid "Goods In Transit"
+msgstr "운송 중인 상품"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:23
+msgid "Goods Transferred"
+msgstr "물품 이송"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
+msgid "Goods are already received against the outward entry {0}"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:190
+msgid "Government"
+msgstr "정부"
+
+#. Option for the 'Status' (Select) field in DocType 'Subscription'
+#. Label of the grace_period (Int) field in DocType 'Subscription Settings'
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json
+msgid "Grace Period"
+msgstr "유예 기간"
+
+#. Option for the 'Level' (Select) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Graduate"
+msgstr "졸업하다"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Grain"
+msgstr "곡물"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Grain/Cubic Foot"
+msgstr "곡물/입방피트"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Grain/Gallon (UK)"
+msgstr "그레인/갤런(영국식)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Grain/Gallon (US)"
+msgstr "곡물/갤런(미국)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram"
+msgstr "그램"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram-Force"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram/Cubic Centimeter"
+msgstr "그램/입방센티미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram/Cubic Meter"
+msgstr "그램/입방미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram/Cubic Millimeter"
+msgstr "그램/입방밀리미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Gram/Litre"
+msgstr "그램/리터"
+
+#. Label of the grand_total (Currency) field in DocType 'Dunning'
+#. Label of the total_amount (Currency) field in DocType 'Payment Entry
+#. Reference'
+#. Label of the grand_total (Currency) field in DocType 'POS Closing Entry'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS
+#. Invoice'
+#. Label of the grand_total (Currency) field in DocType 'POS Invoice'
+#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile'
+#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Invoice'
+#. Label of the base_grand_total (Currency) field in DocType 'Purchase Invoice'
+#. Label of the grand_total (Currency) field in DocType 'Purchase Invoice'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Sales Invoice'
+#. Label of the base_grand_total (Currency) field in DocType 'Sales Invoice'
+#. Label of the grand_total (Currency) field in DocType 'Sales Invoice'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Subscription'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Order'
+#. Label of the base_grand_total (Currency) field in DocType 'Purchase Order'
+#. Label of the grand_total (Currency) field in DocType 'Purchase Order'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Supplier Quotation'
+#. Label of the grand_total (Currency) field in DocType 'Supplier Quotation'
+#. Label of the grand_total (Currency) field in DocType 'Production Plan Sales
+#. Order'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Quotation'
+#. Label of the base_grand_total (Currency) field in DocType 'Quotation'
+#. Label of the grand_total (Currency) field in DocType 'Quotation'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Sales Order'
+#. Label of the base_grand_total (Currency) field in DocType 'Sales Order'
+#. Label of the grand_total (Currency) field in DocType 'Sales Order'
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Delivery Note'
+#. Label of the base_grand_total (Currency) field in DocType 'Delivery Note'
+#. Label of the grand_total (Currency) field in DocType 'Delivery Note'
+#. Label of the grand_total (Currency) field in DocType 'Delivery Stop'
+#. Label of the grand_total (Currency) field in DocType 'Landed Cost Purchase
+#. Receipt'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Receipt'
+#. Label of the base_grand_total (Currency) field in DocType 'Purchase Receipt'
+#. Label of the grand_total (Currency) field in DocType 'Purchase Receipt'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:292
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:708
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:15
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/report/pos_register/pos_register.py:202
+#: erpnext/accounts/report/purchase_register/purchase_register.py:275
+#: erpnext/accounts/report/sales_register/sales_register.py:305
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:105
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:548
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:552
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:181
+#: erpnext/selling/page/point_of_sale/pos_payment.js:692
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/templates/includes/order/order_taxes.html:105
+#: erpnext/templates/pages/rfq.html:58
+msgid "Grand Total"
+msgstr ""
+
+#. Label of the base_grand_total (Currency) field in DocType 'POS Invoice'
+#. Label of the base_grand_total (Currency) field in DocType 'Supplier
+#. Quotation'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:246
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+msgid "Grand Total (Company Currency)"
+msgstr ""
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:252
+msgid "Grand Total (Transaction Currency)"
+msgstr "총액 (거래 통화)"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:146
+msgid "Grand Total must match sum of Payment References"
+msgstr ""
+
+#. Label of the grant_commission (Check) field in DocType 'POS Invoice Item'
+#. Label of the grant_commission (Check) field in DocType 'Sales Invoice Item'
+#. Label of the grant_commission (Check) field in DocType 'Sales Order Item'
+#. Label of the grant_commission (Check) field in DocType 'Delivery Note Item'
+#. Label of the grant_commission (Check) field in DocType 'Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Grant Commission"
+msgstr "보조금 위원회"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
+msgid "Greater Than Amount"
+msgstr "보다 큰 금액"
+
+#. Label of the greeting_message (Data) field in DocType 'Incoming Call
+#. Settings'
+#. Label of the greeting_message (Data) field in DocType 'Voice Call Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Greeting Message"
+msgstr "인사 메시지"
+
+#. Label of the greeting_subtitle (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Greeting Subtitle"
+msgstr "인사말 자막"
+
+#. Label of the greeting_title (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Greeting Title"
+msgstr "인사말 제목"
+
+#. Label of the greetings_section_section (Section Break) field in DocType
+#. 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Greetings Section"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:26
+msgid "Grocery"
+msgstr ""
+
+#. Label of the gross_margin (Currency) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Gross Margin"
+msgstr ""
+
+#. Label of the per_gross_margin (Percent) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Gross Margin %"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of the gross_profit (Currency) field in DocType 'Quotation Item'
+#. Label of the gross_profit (Currency) field in DocType 'Sales Order Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/gross_profit/gross_profit.json
+#: erpnext/accounts/report/gross_profit/gross_profit.py:375
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Gross Profit"
+msgstr ""
+
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:206
+msgid "Gross Profit / Loss"
+msgstr "총이익/손실"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:382
+msgid "Gross Profit Percent"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:171
+msgid "Gross Profit Ratio"
+msgstr ""
+
+#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Gross Total"
+msgstr ""
+
+#. Label of the gross_weight_pkg (Float) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Gross Weight"
+msgstr ""
+
+#. Label of the gross_weight_uom (Link) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Gross Weight UOM"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.json
+msgid "Gross and Net Profit Report"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:148
+msgid "Group By Customer"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:126
+msgid "Group By Supplier"
+msgstr ""
+
+#. Label of the group_name (Data) field in DocType 'Tax Withholding Group'
+#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json
+msgid "Group Name"
+msgstr "그룹 이름"
+
+#: erpnext/setup/doctype/sales_person/sales_person_tree.js:14
+msgid "Group Node"
+msgstr "그룹 노드"
+
+#. Label of the group_same_items (Check) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Group Same Items"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:156
+msgid "Group Warehouses cannot be used in transactions. Please change the value of {0}"
+msgstr ""
+
+#: erpnext/accounts/report/pos_register/pos_register.js:56
+msgid "Group by"
+msgstr ""
+
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:61
+msgid "Group by Material Request"
+msgstr ""
+
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:83
+msgid "Group by Party"
+msgstr ""
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:90
+msgid "Group by Purchase Order"
+msgstr ""
+
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:89
+msgid "Group by Sales Order"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:156
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:188
+msgid "Group by Voucher"
+msgstr ""
+
+#: erpnext/stock/utils.py:428
+msgid "Group node warehouse is not allowed to select for transactions"
+msgstr ""
+
+#. Label of the group_same_items (Check) field in DocType 'POS Invoice'
+#. Label of the group_same_items (Check) field in DocType 'Purchase Invoice'
+#. Label of the group_same_items (Check) field in DocType 'Sales Invoice'
+#. Label of the group_same_items (Check) field in DocType 'Purchase Order'
+#. Label of the group_same_items (Check) field in DocType 'Supplier Quotation'
+#. Label of the group_same_items (Check) field in DocType 'Quotation'
+#. Label of the group_same_items (Check) field in DocType 'Sales Order'
+#. Label of the group_same_items (Check) field in DocType 'Delivery Note'
+#. Label of the group_same_items (Check) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Group same items"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item_dashboard.py:18
+msgid "Groups"
+msgstr "여러 떼"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:32
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:32
+msgid "Growth View"
+msgstr "성장 전망"
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:268
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:171
+msgid "H - F"
+msgstr "H - F"
+
+#. Name of a role
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/contract_template/contract_template.json
+#: erpnext/projects/doctype/activity_type/activity_type.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/doctype/task_type/task_type.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/setup/doctype/branch/branch.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/designation/designation.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee_group/employee_group.json
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/setup/setup_wizard/data/designation.txt:18
+#: erpnext/support/doctype/issue/issue.json
+msgid "HR Manager"
+msgstr "인사 관리자"
+
+#. Name of a role
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/setup/doctype/branch/branch.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/designation/designation.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee_group/employee_group.json
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/support/doctype/issue/issue.json
+msgid "HR User"
+msgstr "HR 사용자"
+
+#. Option for the 'Distribution Frequency' (Select) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:64
+#: 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:443
+#: erpnext/public/js/purchase_trends_filters.js:21
+#: erpnext/public/js/sales_trends_filters.js:13
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:34
+#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:34
+#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:34
+msgid "Half-Yearly"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hand"
+msgstr "손"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:161
+msgid "Handle Employee Advances"
+msgstr "직원의 승진 및 퇴직금 처리"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:228
+msgid "Hardware"
+msgstr "하드웨어"
+
+#. Label of the has_alternative_item (Check) field in DocType 'Quotation Item'
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+msgid "Has Alternative Item"
+msgstr "대체 상품이 있습니다"
+
+#. Label of the has_batch_no (Check) field in DocType 'Work Order'
+#. Label of the has_batch_no (Check) field in DocType 'Item'
+#. Label of the has_batch_no (Check) field in DocType 'Serial and Batch Bundle'
+#. Label of the has_batch_no (Check) field in DocType 'Stock Ledger Entry'
+#. Label of the has_batch_no (Check) field in DocType 'Stock Reservation Entry'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Has Batch No"
+msgstr "배치 번호가 있습니다"
+
+#. Label of the has_certificate (Check) field in DocType 'Asset Maintenance
+#. Log'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+msgid "Has Certificate "
+msgstr "증명서가 있습니다 "
+
+#. Label of the has_corrective_cost (Check) field in DocType 'Landed Cost Taxes
+#. and Charges'
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Has Corrective Cost"
+msgstr "교정 비용이 있습니다"
+
+#. Label of the has_expiry_date (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Has Expiry Date"
+msgstr ""
+
+#. Label of the has_item_scanned (Check) field in DocType 'POS Invoice Item'
+#. Label of the has_item_scanned (Check) field in DocType 'Sales Invoice Item'
+#. Label of the has_item_scanned (Check) field in DocType 'Delivery Note Item'
+#. Label of the has_item_scanned (Check) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the has_item_scanned (Check) field in DocType 'Stock Entry Detail'
+#. Label of the has_item_scanned (Data) field in DocType 'Stock Reconciliation
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Has Item Scanned"
+msgstr ""
+
+#. Label of the has_operating_cost (Check) field in DocType 'Landed Cost Taxes
+#. and Charges'
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Has Operating Cost"
+msgstr ""
+
+#. Label of the has_print_format (Check) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Has Print Format"
+msgstr "인쇄 형식이 있습니다"
+
+#. Label of the has_priority (Check) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Has Priority"
+msgstr "우선권이 있습니다"
+
+#. Label of the has_serial_no (Check) field in DocType 'Work Order'
+#. Label of the has_serial_no (Check) field in DocType 'Item'
+#. Label of the has_serial_no (Check) field in DocType 'Serial and Batch
+#. Bundle'
+#. Label of the has_serial_no (Check) field in DocType 'Stock Ledger Entry'
+#. Label of the has_serial_no (Check) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Has Serial No"
+msgstr "일련번호가 있습니다"
+
+#. Label of the has_subcontracted (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Has Subcontracted"
+msgstr "하청 계약을 맺었습니다"
+
+#. Label of the has_unit_price_items (Check) field in DocType 'Purchase Order'
+#. Label of the has_unit_price_items (Check) field in DocType 'Request for
+#. Quotation'
+#. Label of the has_unit_price_items (Check) field in DocType 'Supplier
+#. Quotation'
+#. Label of the has_unit_price_items (Check) field in DocType 'Quotation'
+#. Label of the has_unit_price_items (Check) field in DocType 'Sales Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Has Unit Price Items"
+msgstr "단가 품목이 있습니다"
+
+#. Label of the has_variants (Check) field in DocType 'BOM'
+#. Label of the has_variants (Check) field in DocType 'BOM Item'
+#. Label of the has_variants (Check) field in DocType 'Item'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Has Variants"
+msgstr "변형이 있습니다"
+
+#. Label of the use_naming_series (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Have Default Naming Series for Batch ID?"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:19
+msgid "Head of Marketing and Sales"
+msgstr "마케팅 및 영업 책임자"
+
+#. Label of the header_text (Data) field in DocType 'Bank Statement Import Log
+#. Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Header Text"
+msgstr "머리글"
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/account/account.json
+msgid "Heads (or groups) against which Accounting Entries are made and balances are maintained."
+msgstr "회계 전표를 작성하고 잔액을 유지하는 대상 항목(또는 그룹)."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:27
+msgid "Health Care"
+msgstr "의료 서비스"
+
+#. Label of the health_details (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Health Details"
+msgstr "건강 정보"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hectare"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hectogram/Litre"
+msgstr "헥토그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hectometer"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hectopascal"
+msgstr "헥토파스칼"
+
+#. Label of the height (Float) field in DocType 'Shipment Parcel'
+#. Label of the height (Float) field in DocType 'Shipment Parcel Template'
+#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Height (cm)"
+msgstr "높이(cm)"
+
+#: erpnext/templates/pages/search_help.py:14
+msgid "Help Results for"
+msgstr "도움말 검색 결과"
+
+#. Label of the help_section (Section Break) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Help Section"
+msgstr ""
+
+#. Label of the help_text (HTML) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Help Text"
+msgstr "도움말 텍스트"
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+msgid "Helps you distribute the Budget/Target across months if you have seasonality in your business."
+msgstr "사업에 계절적 변동이 있는 경우, 예산/목표를 여러 달에 걸쳐 분산하는 데 도움이 됩니다."
+
+#: erpnext/assets/doctype/asset/depreciation.py:353
+msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2022
+msgid "Here are the options to proceed:"
+msgstr ""
+
+#. Description of the 'Family Background' (Small Text) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Here you can maintain family details like name and occupation of parent, spouse and children"
+msgstr ""
+
+#. Description of the 'Health Details' (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Here you can maintain height, weight, allergies, medical concerns etc"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.js:258
+msgid "Here, you can select a senior of this Employee. Based on this, Organization Chart will be populated."
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:77
+msgid "Here, your weekly offs are pre-populated based on the previous selections. You can add more rows to also add public and national holidays individually."
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hertz"
+msgstr "헤르츠"
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
+msgid "Hi,"
+msgstr "안녕,"
+
+#. Label of the hidden_calculation (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Hidden Line (Internal Use Only)"
+msgstr "숨겨진 선 (내부 사용 전용)"
+
+#. Description of the 'Contact List' (Code) field in DocType 'Shareholder'
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+msgid "Hidden list maintaining the list of contacts linked to Shareholder"
+msgstr "주주와 연결된 연락처 목록을 유지하는 숨겨진 목록"
+
+#. Label of the hide_currency_symbol (Select) field in DocType 'Global
+#. Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Hide Currency Symbol"
+msgstr "통화 기호 숨기기"
+
+#. Label of the hide_tax_id (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Hide Customer's Tax ID from sales transactions"
+msgstr ""
+
+#. Label of the hide_when_empty (Check) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Hide If Zero"
+msgstr ""
+
+#. Label of the hide_images (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Hide Images"
+msgstr "이미지 숨기기"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:270
+msgid "Hide Recent Orders"
+msgstr "최근 주문 숨기기"
+
+#. Label of the hide_unavailable_items (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Hide Unavailable Items"
+msgstr "구매 불가능한 상품 숨기기"
+
+#. Description of the 'Hide If Zero' (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Hide this line if amount is zero"
+msgstr ""
+
+#. Label of the hide_timesheets (Check) field in DocType 'Project User'
+#: erpnext/projects/doctype/project_user/project_user.json
+msgid "Hide timesheets"
+msgstr "근무 시간표 숨기기"
+
+#. Description of the 'Priority' (Select) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Higher the number, higher the priority"
+msgstr ""
+
+#. Label of the history_in_company (Section Break) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "History In Company"
+msgstr "회사 연혁"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:314
+#: erpnext/selling/doctype/sales_order/sales_order.js:1033
+msgid "Hold"
+msgstr "잡고 있다"
+
+#. Label of the sb_14 (Section Break) field in DocType 'Purchase Invoice'
+#. Label of the on_hold (Check) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:98
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Hold Invoice"
+msgstr "송장 보류"
+
+#. Label of the hold_type (Select) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Hold Type"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/holiday/holiday.json
+msgid "Holiday"
+msgstr "휴일"
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.py:162
+msgid "Holiday Date {0} added multiple times"
+msgstr ""
+
+#. Label of the holiday_list (Link) field in DocType 'Appointment Booking
+#. Settings'
+#. Label of the holiday_list (Link) field in DocType 'Workstation'
+#. Label of the holiday_list (Link) field in DocType 'Project'
+#. Label of the holiday_list (Link) field in DocType 'Employee'
+#. Name of a DocType
+#. Label of the holiday_list (Link) field in DocType 'Service Level Agreement'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+#: erpnext/setup/doctype/holiday_list/holiday_list_calendar.js:19
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Holiday List"
+msgstr "휴일 목록"
+
+#. Label of the holiday_list_name (Data) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Holiday List Name"
+msgstr "휴일 목록 이름"
+
+#. Label of the holidays_section (Section Break) field in DocType 'Holiday
+#. List'
+#. Label of the holidays (Table) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Holidays"
+msgstr "휴가"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Horsepower"
+msgstr "마력"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Horsepower-Hours"
+msgstr "마력-시간"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hour"
+msgstr "시간"
+
+#. Label of the hour_rate (Currency) field in DocType 'BOM Operation'
+#. Label of the hour_rate (Currency) field in DocType 'Job Card'
+#. Label of the hour_rate (Float) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Hour Rate"
+msgstr ""
+
+#. Label of the hours (Float) field in DocType 'Workstation Working Hour'
+#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:31
+#: erpnext/templates/pages/timelog_info.html:37
+msgid "Hours"
+msgstr "영업시간"
+
+#: erpnext/templates/pages/projects.html:26
+msgid "Hours Spent"
+msgstr "소요 시간"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:67
+msgid "How Pricing Rule is applied?"
+msgstr "가격 책정 규칙은 어떻게 적용되나요?"
+
+#. Label of the frequency (Select) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "How frequently?"
+msgstr "얼마나 자주요?"
+
+#. Description of the 'Quantity (Output Qty)' (Float) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "How many units of the final product this BOM makes."
+msgstr ""
+
+#. Label of the project_update_frequency (Select) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "How often should project be updated of Total Purchase Cost ?"
+msgstr "총 구매 비용에 대한 프로젝트 업데이트는 얼마나 자주 해야 합니까?"
+
+#. Label of the sales_update_frequency (Select) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "How often should sales data be updated in Company/Project?"
+msgstr "회사/프로젝트에서 매출 데이터는 얼마나 자주 업데이트해야 하나요?"
+
+#. Description of the 'Data Source' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "How this line gets its data"
+msgstr "이 라인이 데이터를 가져오는 방법"
+
+#. Description of the 'Value Type' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "How to format and present values in the financial report (only if different from column fieldtype)"
+msgstr ""
+
+#. Label of the hours (Float) field in DocType 'Timesheet Detail'
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Hrs"
+msgstr "시간"
+
+#: erpnext/setup/doctype/company/company.py:496
+msgid "Human Resources"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hundredweight (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Hundredweight (US)"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:283
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:186
+msgid "I - J"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:293
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:196
+msgid "I - K"
+msgstr ""
+
+#. Label of the iban (Data) field in DocType 'Bank Account'
+#. Label of the iban (Data) field in DocType 'Bank Guarantee'
+#. Label of the iban (Read Only) field in DocType 'Payment Request'
+#. Label of the iban (Data) field in DocType 'Employee'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/setup/doctype/employee/employee.json
+msgid "IBAN"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:93
+msgid "IMPORTANT: Create a backup before proceeding!"
+msgstr "중요: 진행하기 전에 백업을 생성하십시오!"
+
+#. Name of a report
+#: erpnext/regional/report/irs_1099/irs_1099.json
+msgid "IRS 1099"
+msgstr "IRS 1099"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "ISBN"
+msgstr "ISBN"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "ISBN-10"
+msgstr "ISBN-10"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "ISBN-13"
+msgstr "ISBN-13"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "ISSN"
+msgstr "ISSN"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Iches Of Water"
+msgstr "인치의 물"
+
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:128
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:69
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:115
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:192
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:83
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:152
+msgid "Id"
+msgstr ""
+
+#. Description of the 'From Package No.' (Int) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Identification of the package for the delivery (for print)"
+msgstr "배송 물품 식별 정보 (인쇄용)"
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:5
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:441
+msgid "Identifying Decision Makers"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Idle"
+msgstr "게으른"
+
+#. Description of the 'Book Deferred Entries Based On' (Select) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If \"Months\" is selected, a fixed amount will be booked as deferred revenue or expense for each month irrespective of the number of days in a month. It will be prorated if deferred revenue or expense is not booked for an entire month"
+msgstr ""
+
+#. Description of the 'Reconcile on Advance Payment Date' (Check) field in
+#. DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "If Enabled - Reconciliation happens on the Advance Payment posting date \n"
+"If Disabled - Reconciliation happens on oldest of 2 Dates: Invoice Date or the Advance Payment posting date \n"
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:34
+msgid "If Auto Opt In is checked, then the customers will be automatically linked with the concerned Loyalty Program (on save)"
+msgstr ""
+
+#. Description of the 'Cost Center' (Link) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "If Income or Expense"
+msgstr "수입 또는 지출이 있는 경우"
+
+#: banking/src/components/features/Settings/Preferences.tsx:127
+msgid "If a party cannot be matched by account number or IBAN, the system will try fuzzy matching using the party name and transaction description."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/operation/operation.js:32
+msgid "If an operation is divided into sub operations, they can be added here."
+msgstr "작업이 하위 작업으로 나뉘어진 경우, 여기에 추가할 수 있습니다."
+
+#. Description of the 'Account' (Link) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "If blank, parent Warehouse Account or company default will be considered in transactions"
+msgstr ""
+
+#. Description of the 'Bill for rejected quantity in Purchase Invoice' (Check)
+#. field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "If checked, Rejected Quantity will be included while making Purchase Invoice from Purchase Receipt."
+msgstr "이 항목을 선택하시면, 구매 영수증을 기반으로 구매 송장을 작성할 때 불량 수량이 포함됩니다."
+
+#. Description of the 'Reserve Stock' (Check) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "If checked, Stock will be reserved on Submit "
+msgstr ""
+
+#. Description of the 'Is Credit Card' (Check) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "If checked, journal entries made using bank reconciliation will be of type \"Credit Card Entry\""
+msgstr ""
+
+#. Description of the 'Scan Mode' (Check) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "If checked, picked qty won't automatically be fulfilled on submit of pick list."
+msgstr ""
+
+#. Description of the 'Considered In Paid Amount' (Check) field in DocType
+#. 'Purchase Taxes and Charges'
+#. Description of the 'Considered In Paid Amount' (Check) field in DocType
+#. 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "If checked, the tax amount will be considered as already included in the Paid Amount in Payment Entry"
+msgstr ""
+
+#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in
+#. DocType 'Purchase Taxes and Charges'
+#. Description of the 'Is this Tax included in Basic Rate?' (Check) field in
+#. DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
+msgstr ""
+
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
+#: erpnext/public/js/setup_wizard.js:56
+msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
+msgstr "이 옵션을 선택하시면 시스템 탐색을 위한 데모 데이터를 생성해 드립니다. 이 데모 데이터는 나중에 삭제할 수 있습니다."
+
+#. Description of the 'Service Address' (Small Text) field in DocType 'Warranty
+#. Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "If different than customer address"
+msgstr "고객 주소와 다른 경우"
+
+#. Description of the 'Disable In Words' (Check) field in DocType 'Global
+#. Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "If disable, 'In Words' field will not be visible in any transaction"
+msgstr ""
+
+#. Description of the 'Disable Rounded Total' (Check) field in DocType 'Global
+#. Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "If disable, 'Rounded Total' field will not be visible in any transaction"
+msgstr ""
+
+#. Description of the 'Ignore Pricing Rule' (Check) field in DocType 'Pick
+#. List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "If enabled then system won't apply the pricing rule on the delivery note which will be create from the pick list"
+msgstr ""
+
+#. Description of the 'Pick Manually' (Check) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "If enabled then system won't override the picked qty / batches / serial numbers / warehouse."
+msgstr ""
+
+#. Description of the 'Send Document Print' (Check) field in DocType 'Request
+#. for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "If enabled, a print of this document will be attached to each email"
+msgstr ""
+
+#. Description of the 'Enable discount accounting for selling' (Check) field in
+#. DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "If enabled, additional ledger entries will be made for discounts in a separate Discount Account"
+msgstr ""
+
+#. Description of the 'Send Attached Files' (Check) field in DocType 'Request
+#. for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "If enabled, all files attached to this document will be attached to each email"
+msgstr ""
+
+#. Description of the 'Do Not Update Serial / Batch on Creation of Auto Bundle'
+#. (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, do not update serial / batch values in the stock transactions on creation of auto Serial \n"
+" / Batch Bundle. "
+msgstr ""
+
+#. Description of the 'Consider Projected Qty in Calculation' (Check) field in
+#. DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "If enabled, formula for Qty to Order : \n"
+"Required Qty (BOM) - Projected Qty . This helps avoid over-ordering."
+msgstr ""
+
+#. Description of the 'Consider Projected Qty in Calculation (RM)' (Check)
+#. field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "If enabled, formula for Required Qty : \n"
+"Required Qty (BOM) - Projected Qty . This helps avoid over-ordering."
+msgstr "활성화된 경우, 필요 수량 : \n"
+"필요 수량(BOM) - 예상 수량 . 에 대한 공식이 표시됩니다. 이는 과잉 주문을 방지하는 데 도움이 됩니다."
+
+#. Description of the 'Create Ledger Entries for Change Amount' (Check) field
+#. in DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "If enabled, ledger entries will be posted for change amount in POS transactions"
+msgstr ""
+
+#. Description of the 'Automatically run rules on unreconciled transactions'
+#. (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If enabled, rule matching algorithm will run every hour"
+msgstr ""
+
+#. Description of the 'Grant Commission' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If enabled, sales from this item will be included in Sales Person and Sales Partner commission calculations"
+msgstr ""
+
+#. Description of the 'Allow delivery of overproduced quantity' (Check) field
+#. in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "If enabled, system will allow user to deliver the entire quantity of the finished goods produced against the Subcontracting Inward Order. If disabled, system will allow delivery of only the ordered quantity."
+msgstr ""
+
+#. Description of the 'Set incoming rate as zero for expired Batch' (Check)
+#. field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "If enabled, system will set incoming rate as zero for stand-alone credit notes with expired batch item."
+msgstr ""
+
+#. Description of the 'Deliver secondary Items' (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "If enabled, the Secondary Items generated against a Finished Good will also be added in the Stock Entry when delivering that Finished Good."
+msgstr ""
+
+#. Description of the 'Disable Rounded Total' (Check) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "If enabled, the consolidated invoices will have rounded total disabled"
+msgstr ""
+
+#. Description of the 'Allow Internal Transfers at Arm's Length Price' (Check)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, the item rate won't adjust to the valuation rate during internal transfers, but accounting will still use the valuation rate. This will allow the user to specify a different rate for printing or taxation purposes."
+msgstr "이 기능을 활성화하면 내부 이체 시 품목 단가는 평가 단가로 조정되지 않지만, 회계 처리 시에는 평가 단가가 계속 사용됩니다. 이를 통해 사용자는 인쇄 또는 세금 계산 목적에 따라 다른 단가를 지정할 수 있습니다."
+
+#. Description of the 'Validate Material Transfer Warehouses' (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, the source and target warehouse in the Material Transfer Stock Entry must be different else an error will be thrown. If inventory dimensions are present, same source and target warehouse can be allowed but atleast any one of the inventory dimension fields must be different."
+msgstr ""
+
+#. Description of the 'Allow Negative Stock for Batch' (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, the system will allow negative stock entries for the batch. But, this may lead to incorrect valuation rates, so it is recommended to avoid using this option. The system will permit negative stock only when it is caused by backdated entries and will validate and block negative stock in all other cases."
+msgstr ""
+
+#. Description of the 'Allow UOM with Conversion Rate Defined in Item' (Check)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, the system will allow selecting UOMs in sales and purchase transactions only if the conversion rate is set in the item master."
+msgstr ""
+
+#. Description of the 'Allow Editing of Items and Quantities in Work Order'
+#. (Check) field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "If enabled, the system will allow users to edit the raw materials and their quantities in the Work Order. The system will not reset the quantities as per the BOM, if the user has changed them."
+msgstr ""
+
+#. Description of the 'Set valuation rate for rejected Materials' (Check) field
+#. in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "If enabled, the system will generate an accounting entry for materials rejected in the Purchase Receipt."
+msgstr "이 기능을 활성화하면 시스템은 구매 영수증에서 거부된 자재에 대한 회계 전표를 생성합니다."
+
+#. Description of the 'Enable Item-wise Inventory Account' (Check) field in
+#. DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "If enabled, the system will use the inventory account set in the Item Master or Item Group or Brand. Otherwise, it will use the inventory account set in the Warehouse."
+msgstr "이 기능이 활성화된 경우, 시스템은 품목 마스터, 품목 그룹 또는 브랜드에 설정된 재고 계정을 사용합니다. 그렇지 않은 경우, 창고에 설정된 재고 계정을 사용합니다."
+
+#. Description of the 'Do Not Use Batch-wise Valuation' (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If enabled, the system will use the moving average valuation method to calculate the valuation rate for the batched items and will not consider the individual batch-wise incoming rate."
+msgstr ""
+
+#. Description of the 'Validate Applied Rule' (Check) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "If enabled, then system will only validate the pricing rule and not apply automatically. User has to manually set the discount percentage / margin / free items to validate the pricing rule"
+msgstr ""
+
+#. Description of the 'Include in Charts' (Check) field in DocType 'Financial
+#. Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "If enabled, this row's values will be displayed on financial charts"
+msgstr ""
+
+#. Description of the 'Confirm before resetting posting date' (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If enabled, user will be alerted before resetting posting date to current date in relevant transactions"
+msgstr ""
+
+#. Description of the 'Variant Of' (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If item is a variant of another item then description, image, pricing, taxes etc will be set from the template unless explicitly specified"
+msgstr ""
+
+#. Description of the 'Get Items for Purchase / Transfer' (Button) field in
+#. DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "If items in stock, proceed with Material Transfer or Purchase."
+msgstr "재고가 있는 품목은 자재 이송 또는 구매 절차를 진행하십시오."
+
+#. Description of the 'Role Allowed to Create/Edit Back-dated Transactions'
+#. (Link) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "If mentioned, the system will allow only the users with this Role to create or modify any stock transaction earlier than the latest stock transaction for a specific item and warehouse. If set as blank, it allows all users to create/edit back-dated transactions."
+msgstr "이 옵션을 지정하면 해당 역할을 가진 사용자만 특정 품목 및 창고에 대한 최신 재고 거래 이전의 모든 재고 거래를 생성하거나 수정할 수 있습니다. 이 옵션을 비워두면 모든 사용자가 이전 날짜의 거래를 생성/편집할 수 있습니다."
+
+#. Description of the 'To Package No.' (Int) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "If more than one package of the same type (for print)"
+msgstr "같은 종류의 패키지가 두 개 이상인 경우 (인쇄용)"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:103
+msgid "If multiple Pricing Rules continue to prevail, users are asked to set Priority manually to resolve conflict."
+msgstr "여러 가격 규칙이 계속해서 적용되는 경우, 사용자는 충돌을 해결하기 위해 우선순위를 수동으로 설정해야 합니다."
+
+#. Description of the 'Use prices from Default Price List as fallback' (Check)
+#. field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "If no Item Price is found for an item in the Price List set in the transaction, prices from the Default Price List will be fetched."
+msgstr ""
+
+#. Description of the 'Automatically Add Taxes from Taxes and Charges Template'
+#. (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2032
+msgid "If not, you can Cancel / Submit this entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:197
+msgid "If party does not exist, create it using the Customer Name field."
+msgstr "해당 당사자가 존재하지 않으면 고객 이름 필드를 사용하여 생성하십시오."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:198
+msgid "If party does not exist, create it using the Supplier Name field."
+msgstr ""
+
+#. Description of the 'Free Item Rate' (Currency) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "If rate is zero then item will be treated as \"Free Item\""
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:258
+msgid "If rule matches, then:"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:51
+msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
+msgstr ""
+
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
+#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
+msgstr "이 설정이 활성화된 경우, 시스템은 견적 요청을 보낼 때 사용자의 이메일 주소나 기본 발신 이메일 계정을 사용하지 않습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
+msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
+msgstr "BOM 결과에 스크랩 자재가 포함되면 스크랩 창고를 선택해야 합니다."
+
+#. Description of the 'Frozen' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "If the account is frozen, entries are allowed to restricted users."
+msgstr "계정이 동결된 경우, 제한된 사용자만 로그인할 수 있습니다."
+
+#: erpnext/stock/stock_ledger.py:2025
+msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
+msgstr ""
+
+#. Description of the 'Projected On Hand' (Float) field in DocType 'Material
+#. Request Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "If the reorder check is set at the Group warehouse level, the available quantity becomes the sum of the projected quantities of all its child warehouses."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
+msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
+msgstr "선택한 BOM에 작업이 명시되어 있으면 시스템은 BOM에서 모든 작업을 가져오며, 이러한 값은 변경할 수 있습니다."
+
+#. Description of the 'Catch All' (Link) field in DocType 'Communication
+#. Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "If there is no assigned timeslot, then communication will be handled by this group"
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:24
+msgid "If there is no title column, use the code column for the title."
+msgstr "제목 열이 없으면 코드 열을 제목으로 사용하세요."
+
+#. Description of the 'Allocate Payment Based On Payment Terms' (Check) field
+#. in DocType 'Payment Terms Template'
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
+msgid "If this checkbox is checked, paid amount will be splitted and allocated as per the amounts in payment schedule against each payment term"
+msgstr ""
+
+#. Description of the 'Follow Calendar Months' (Check) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "If this is checked subsequent new invoices will be created on calendar month and quarter start dates irrespective of current invoice start date"
+msgstr ""
+
+#. Description of the 'Submit Journal Entries' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If this is unchecked Journal Entries will be saved in a Draft state and will have to be submitted manually"
+msgstr ""
+
+#. Description of the 'Book Deferred Entries Via Journal Entry' (Check) field
+#. in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "If this is unchecked, direct GL entries will be created to book deferred revenue or expense"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:746
+msgid "If this is undesirable please cancel the corresponding Payment Entry."
+msgstr "이것이 바람직하지 않다면 해당 결제 항목을 취소해 주십시오."
+
+#. Description of the 'Has Variants' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If this item has variants, then it cannot be selected in sales orders etc."
+msgstr "해당 품목에 변형 상품이 있는 경우, 판매 주문 등에서 선택할 수 없습니다."
+
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:76
+msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice or Receipt without creating a Purchase Order first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Order' checkbox in the Supplier master."
+msgstr ""
+
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:83
+msgid "If this option is configured 'Yes', ERPNext will prevent you from creating a Purchase Invoice without creating a Purchase Receipt first. This configuration can be overridden for a particular supplier by enabling the 'Allow Purchase Invoice Creation Without Purchase Receipt' checkbox in the Supplier master."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:10
+msgid "If ticked, multiple materials can be used for a single Work Order. This is useful if one or more time consuming products are being manufactured."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:24
+msgid "If ticked, the BOM cost will be automatically updated based on Valuation Rate / Price List Rate / last purchase rate of raw materials."
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:82
+msgid "If two or more Pricing Rules are found based on the above conditions, Priority is applied. Priority is a number between 0 to 20 while default value is zero (blank). Higher number means it will take precedence if there are multiple Pricing Rules with same conditions."
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:31
+msgid "If unlimited expiry for the Loyalty Points, keep the Expiry Duration empty or 0."
+msgstr ""
+
+#. Description of the 'Is Rejected Warehouse' (Check) field in DocType
+#. 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "If yes, then this warehouse will be used to store rejected materials"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:1142
+msgid "If you are maintaining stock of this Item in your Inventory, ERPNext will make a stock ledger entry for each transaction of this item."
+msgstr ""
+
+#. Description of the 'Unreconciled Entries' (Section Break) field in DocType
+#. 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "If you need to reconcile particular transactions against each other, then please select accordingly. If not, all the transactions will be allocated in FIFO order."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1096
+msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
+msgid "If you still want to proceed, please enable {0}."
+msgstr ""
+
+#. Description of the 'Sequence ID' (Int) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "If you want to run operations in parallel, keep the same sequence ID for them."
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:377
+msgid "If you {0} {1} quantities of the item {2}, the scheme {3} will be applied on the item."
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:382
+msgid "If you {0} {1} worth item {2}, the scheme {3} will be applied on the item."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:81
+msgid "If your bank statement shows a different closing balance, it is because all transactions have not reconciled yet."
+msgstr "은행 거래 내역서의 최종 잔액이 다르게 표시되는 경우, 모든 거래 내역이 아직 일치하지 않았기 때문입니다."
+
+#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in
+#. DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in
+#. DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field
+#. in DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative
+#. Expense' (Select) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Ignore"
+msgstr "무시하다"
+
+#. Label of the ignore_account_closing_balance (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Ignore Account Closing Balance"
+msgstr "계좌 마감 잔액을 무시하세요"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:125
+msgid "Ignore Closing Balance"
+msgstr "마감 잔액을 무시하세요"
+
+#. Label of the ignore_default_payment_terms_template (Check) field in DocType
+#. 'Purchase Invoice'
+#. Label of the ignore_default_payment_terms_template (Check) field in DocType
+#. 'Sales Invoice'
+#. Label of the ignore_default_payment_terms_template (Check) field in DocType
+#. 'Sales Order'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Ignore Default Payment Terms Template"
+msgstr ""
+
+#. Label of the ignore_employee_time_overlap (Check) field in DocType 'Projects
+#. Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+msgid "Ignore Employee Time Overlap"
+msgstr "직원 시간 중복을 무시하세요"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:145
+msgid "Ignore Empty Stock"
+msgstr "빈 재고는 무시하세요"
+
+#. Label of the ignore_exchange_rate_revaluation_journals (Check) field in
+#. DocType 'Process Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:224
+msgid "Ignore Exchange Rate Revaluation and Gain / Loss Journals"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1470
+msgid "Ignore Existing Ordered Qty"
+msgstr "기존 주문 수량은 무시합니다"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
+msgid "Ignore Existing Projected Quantity"
+msgstr "기존 예상 수량을 무시하십시오"
+
+#. Label of the ignore_is_opening_check_for_reporting (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Ignore Is Opening check for reporting"
+msgstr ""
+
+#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Invoice'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'POS Profile'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Invoice'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Invoice'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Order'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Supplier
+#. Quotation'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Quotation'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Sales Order'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Delivery Note'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Pick List'
+#. Label of the ignore_pricing_rule (Check) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Ignore Pricing Rule"
+msgstr "가격 책정 규칙 무시"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:335
+msgid "Ignore Pricing Rule is enabled. Cannot apply coupon code."
+msgstr "가격 규칙 무시가 활성화되어 있습니다. 쿠폰 코드를 적용할 수 없습니다."
+
+#. Label of the ignore_cr_dr_notes (Check) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:120
+#: erpnext/accounts/report/general_ledger/general_ledger.js:229
+msgid "Ignore System Generated Credit / Debit Notes"
+msgstr ""
+
+#. Label of the ignore_tax_withholding_threshold (Check) field in DocType
+#. 'Journal Entry'
+#. Label of the ignore_tax_withholding_threshold (Check) field in DocType
+#. 'Payment Entry'
+#. Label of the ignore_tax_withholding_threshold (Check) field in DocType
+#. 'Purchase Invoice'
+#. Label of the ignore_tax_withholding_threshold (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Ignore Tax Withholding Threshold"
+msgstr ""
+
+#. Label of the ignore_user_time_overlap (Check) field in DocType 'Projects
+#. Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+msgid "Ignore User Time Overlap"
+msgstr "사용자 시간 중복 무시"
+
+#. Description of the 'Add Manually' (Check) field in DocType 'Repost Payment
+#. Ledger'
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+msgid "Ignore Voucher Type filter and Select Vouchers Manually"
+msgstr ""
+
+#. Label of the ignore_workstation_time_overlap (Check) field in DocType
+#. 'Projects Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+msgid "Ignore Workstation Time Overlap"
+msgstr ""
+
+#. Description of the 'Ignore Is Opening check for reporting' (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:266
+msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
+msgid "Impairment"
+msgstr "손상"
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:6
+msgid "Implementation Partner"
+msgstr "구현 파트너"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:258
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:294
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:251
+#: banking/src/pages/BankStatementImporterContainer.tsx:27
+msgid "Import Bank Statement"
+msgstr "수입 은행 명세서"
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.json
+msgid "Import Chart of Accounts from a csv file"
+msgstr ""
+
+#. Label of a Link in the ERPNext Settings Workspace
+#. Label of a Link in the Home Workspace
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/setup/workspace/home/home.json
+msgid "Import Data"
+msgstr "데이터 가져오기"
+
+#: erpnext/setup/doctype/employee/employee_list.js:16
+msgid "Import Employees"
+msgstr "수입 직원"
+
+#: erpnext/edi/doctype/code_list/code_list.js:7
+#: erpnext/edi/doctype/code_list/code_list_list.js:3
+#: erpnext/edi/doctype/common_code/common_code_list.js:3
+msgid "Import Genericode File"
+msgstr ""
+
+#. Label of the import_invoices (Button) field in DocType 'Import Supplier
+#. Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Import Invoices"
+msgstr "수입 송장"
+
+#. Label of the import_mt940_fromat (Check) field in DocType 'Bank Statement
+#. Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Import MT940 Fromat"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:144
+msgid "Import Successful"
+msgstr "가져오기 성공"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:566
+msgid "Import Summary"
+msgstr "수입 요약"
+
+#. Label of a Link in the Buying Workspace
+#. Name of a DocType
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Import Supplier Invoice"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:228
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:84
+msgid "Import Using CSV file"
+msgstr "CSV 파일을 사용하여 가져오기"
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:131
+msgid "Import completed. {0} common codes created."
+msgstr "가져오기가 완료되었습니다. {0} 공통 코드가 생성되었습니다."
+
+#: erpnext/stock/doctype/item_price/item_price.js:29
+msgid "Import in Bulk"
+msgstr "대량 수입"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:223
+msgid "Import your bank statement to get started."
+msgstr "시작하려면 은행 거래 내역서를 가져오세요."
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115
+msgid "Import {0} transactions"
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:221
+msgid "Imported On"
+msgstr "수입품"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:192
+msgid "Imported {0} DocTypes"
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:36
+msgid "Importing Code Lists from remote URLs is not allowed."
+msgstr "원격 URL에서 코드 목록을 가져오는 것은 허용되지 않습니다."
+
+#: erpnext/edi/doctype/common_code/common_code.py:111
+msgid "Importing Common Codes"
+msgstr "공통 코드 가져오기"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:132
+msgid "Importing {0} transactions"
+msgstr "{0} 거래 가져오기"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:115
+msgid "Importing..."
+msgstr "가져오는 중..."
+
+#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "In House"
+msgstr "내부"
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:18
+msgid "In Maintenance"
+msgstr ""
+
+#. Description of the 'Downtime' (Float) field in DocType 'Downtime Entry'
+#. Description of the 'Lead Time' (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "In Mins"
+msgstr "분"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:146
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:178
+msgid "In Party Currency"
+msgstr "정당 통화로"
+
+#. Description of the 'Rate of Depreciation' (Percent) field in DocType 'Asset
+#. Depreciation Schedule'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "In Percentage"
+msgstr "백분율로 표시"
+
+#. Option for the 'Qualification Status' (Select) field in DocType 'Lead'
+#. Option for the 'Status' (Select) field in DocType 'Production Plan'
+#. Option for the 'Status' (Select) field in DocType 'Work Order'
+#. Option for the 'Inspection Type' (Select) field in DocType 'Quality
+#. Inspection'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "In Process"
+msgstr "진행 중"
+
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:107
+msgid "In Production"
+msgstr "제작 중"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
+#: erpnext/stock/report/stock_balance/stock_balance.py:550
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
+msgid "In Qty"
+msgstr "수량"
+
+#: erpnext/templates/form_grid/stock_entry_grid.html:26
+msgid "In Stock"
+msgstr "재고 있음"
+
+#. Option for the 'Status' (Select) field in DocType 'Delivery Trip'
+#. Option for the 'Transfer Status' (Select) field in DocType 'Material
+#. Request'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:11
+msgid "In Transit"
+msgstr "이동 중"
+
+#: erpnext/stock/doctype/material_request/material_request.js:477
+msgid "In Transit Transfer"
+msgstr "이동 중 환승"
+
+#: erpnext/stock/doctype/material_request/material_request.js:446
+msgid "In Transit Warehouse"
+msgstr "운송 창고"
+
+#: erpnext/stock/report/stock_balance/stock_balance.py:556
+msgid "In Value"
+msgstr "가치"
+
+#. Label of the in_words (Small Text) field in DocType 'Payment Entry'
+#. Label of the in_words (Data) field in DocType 'POS Invoice'
+#. Label of the base_in_words (Data) field in DocType 'Purchase Invoice'
+#. Label of the in_words (Data) field in DocType 'Purchase Invoice'
+#. Label of the base_in_words (Small Text) field in DocType 'Sales Invoice'
+#. Label of the in_words (Small Text) field in DocType 'Sales Invoice'
+#. Label of the base_in_words (Data) field in DocType 'Purchase Order'
+#. Label of the in_words (Data) field in DocType 'Purchase Order'
+#. Label of the in_words (Data) field in DocType 'Supplier Quotation'
+#. Label of the base_in_words (Data) field in DocType 'Quotation'
+#. Label of the in_words (Data) field in DocType 'Quotation'
+#. Label of the base_in_words (Data) field in DocType 'Sales Order'
+#. Label of the in_words (Data) field in DocType 'Sales Order'
+#. Label of the base_in_words (Data) field in DocType 'Delivery Note'
+#. Label of the in_words (Data) field in DocType 'Delivery Note'
+#. Label of the base_in_words (Data) field in DocType 'Purchase Receipt'
+#. Label of the in_words (Data) field in DocType 'Purchase Receipt'
+#. Label of the in_words (Data) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "In Words"
+msgstr "말로 표현하자면"
+
+#. Label of the base_in_words (Small Text) field in DocType 'Payment Entry'
+#. Label of the base_in_words (Data) field in DocType 'POS Invoice'
+#. Label of the base_in_words (Data) field in DocType 'Supplier Quotation'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+msgid "In Words (Company Currency)"
+msgstr "(회사 통화로)"
+
+#. Description of the 'In Words' (Data) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "In Words (Export) will be visible once you save the Delivery Note."
+msgstr ""
+
+#. Description of the 'In Words' (Data) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "In Words will be visible once you save the Delivery Note."
+msgstr "배송 전표를 저장하면 \"In Words\"라는 문구가 표시됩니다."
+
+#. Description of the 'In Words (Company Currency)' (Data) field in DocType
+#. 'POS Invoice'
+#. Description of the 'In Words' (Small Text) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "In Words will be visible once you save the Sales Invoice."
+msgstr "판매 송장을 저장하면 \"In Words\"라는 문구가 표시됩니다."
+
+#. Description of the 'In Words' (Data) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "In Words will be visible once you save the Sales Order."
+msgstr "판매 주문을 저장하면 \"In Words\"라는 문구가 표시됩니다."
+
+#. Description of the 'Completed Time' (Data) field in DocType 'Job Card
+#. Operation'
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+msgid "In mins"
+msgstr "분 단위로"
+
+#. Description of the 'Operation Time' (Float) field in DocType 'BOM Operation'
+#. Description of the 'Delay between Delivery Stops' (Int) field in DocType
+#. 'Delivery Settings'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "In minutes"
+msgstr "몇 분 안에"
+
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.js:8
+msgid "In row {0} of Appointment Booking Slots: \"To Time\" must be later than \"From Time\"."
+msgstr "예약 슬롯의 {0} 행에서 \"종료 시간\"은 \"시작 시간\"보다 늦어야 합니다."
+
+#: erpnext/templates/includes/products_as_grid.html:18
+msgid "In stock"
+msgstr "재고 있음"
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:26
+msgid "In the case of multi-tier program, Customers will be auto assigned to the concerned tier as per their spent"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:753
+#, python-format
+msgid "In this case, the amount will be calculated as 25% of the transaction amount. If the transaction amount is 200, then this will be calculated as 200 * 0.25 = 50."
+msgstr "이 경우, 금액은 거래 금액의 25%로 계산됩니다. 거래 금액이 200인 경우, 200 * 0.25 = 50이 됩니다."
+
+#: erpnext/stock/doctype/item/item.js:1175
+msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
+msgstr ""
+
+#. Label of a Link in the CRM Workspace
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/selling/report/inactive_customers/inactive_customers.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Inactive Customers"
+msgstr "비활성 고객"
+
+#. Name of a report
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.json
+msgid "Inactive Sales Items"
+msgstr "비활성 판매 품목"
+
+#. Label of the off_status_image (Attach Image) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Inactive Status"
+msgstr "비활성 상태"
+
+#. Label of the incentives (Currency) field in DocType 'Sales Team'
+#: erpnext/selling/doctype/sales_team/sales_team.json
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:92
+msgid "Incentives"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Inch"
+msgstr "인치"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Inch Pound-Force"
+msgstr "인치 파운드 힘"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Inch/Minute"
+msgstr "인치/분"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Inch/Second"
+msgstr "인치/초"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Inches Of Mercury"
+msgstr "수은 인치"
+
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:77
+msgid "Include Account Currency"
+msgstr "계좌 통화 포함"
+
+#. Label of the include_ageing (Check) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Include Ageing Summary"
+msgstr "노화 요약 포함"
+
+#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.js:8
+#: erpnext/selling/report/sales_order_trends/sales_order_trends.js:8
+msgid "Include Closed Orders"
+msgstr "완료된 주문을 포함하세요"
+
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.js:54
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:54
+msgid "Include Default FB Assets"
+msgstr "기본 FB 자산 포함"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:45
+#: erpnext/accounts/report/cash_flow/cash_flow.js:37
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:131
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:85
+#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:29
+#: erpnext/accounts/report/general_ledger/general_ledger.js:193
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:46
+#: erpnext/accounts/report/trial_balance/trial_balance.js:105
+msgid "Include Default FB Entries"
+msgstr "기본 FB 항목 포함"
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:90
+msgid "Include Expired"
+msgstr "만료된 항목 포함"
+
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:80
+msgid "Include Expired Batches"
+msgstr "유통기한이 지난 제품도 포함하세요"
+
+#. Label of the include_exploded_items (Check) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the include_exploded_items (Check) field in DocType 'Production
+#. Plan Item'
+#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting
+#. Inward Order Item'
+#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the include_exploded_items (Check) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1466
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Include Exploded Items"
+msgstr "분해된 부품을 포함하세요"
+
+#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM
+#. Explosion Item'
+#. Label of the include_item_in_manufacturing (Check) field in DocType 'BOM
+#. Item'
+#. Label of the include_item_in_manufacturing (Check) field in DocType 'Work
+#. Order Item'
+#. Label of the include_item_in_manufacturing (Check) field in DocType 'Item'
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Include Item In Manufacturing"
+msgstr ""
+
+#. Label of the include_non_stock_items (Check) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Include Non Stock Items"
+msgstr "재고가 아닌 품목도 포함하세요"
+
+#. Label of the include_pos_transactions (Check) field in DocType 'Bank
+#. Clearance'
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.js:45
+msgid "Include POS Transactions"
+msgstr "POS 거래 내역을 포함하세요"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:206
+msgid "Include Payment"
+msgstr "결제 포함"
+
+#. Label of the is_pos (Check) field in DocType 'POS Invoice'
+#. Label of the is_pos (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Include Payment (POS)"
+msgstr "결제(POS) 포함"
+
+#. Label of the include_reconciled_entries (Check) field in DocType 'Bank
+#. Clearance'
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+msgid "Include Reconciled Entries"
+msgstr "조정된 항목을 포함하세요"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.js:90
+msgid "Include Returned Invoices (Stand-alone)"
+msgstr ""
+
+#. Label of the include_safety_stock (Check) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Include Safety Stock in Required Qty Calculation"
+msgstr ""
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:87
+msgid "Include Sub-assembly Raw Materials"
+msgstr ""
+
+#. Label of the include_subcontracted_items (Check) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Include Subcontracted Items"
+msgstr ""
+
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.js:52
+msgid "Include Timesheets in Draft Status"
+msgstr ""
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:109
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:108
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:51
+msgid "Include UOM"
+msgstr "단위를 포함하세요"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:131
+msgid "Include Zero Stock Items"
+msgstr "재고가 없는 품목을 포함하세요"
+
+#. Label of the include_in_charts (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Include in Charts"
+msgstr "차트에 포함"
+
+#. Label of the include_in_gross (Check) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Include in gross"
+msgstr "총액에 포함"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the included_fee (Currency) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Included Fee"
+msgstr "포함된 요금"
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:335
+msgid "Included fee is bigger than the withdrawal itself."
+msgstr "포함된 수수료가 인출 금액보다 큽니다."
+
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:74
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:75
+msgid "Included in Gross Profit"
+msgstr ""
+
+#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Including items for sub assemblies"
+msgstr ""
+
+#. Option for the 'Root Type' (Select) field in DocType 'Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
+#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
+#. Option for the 'Type' (Select) field in DocType 'Process Deferred
+#. Accounting'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:441
+#: erpnext/accounts/report/account_balance/account_balance.js:27
+#: erpnext/accounts/report/financial_statements.py:773
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:182
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:192
+msgid "Income"
+msgstr "소득"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the income_account (Link) field in DocType 'Dunning'
+#. Label of the income_account (Link) field in DocType 'Dunning Type'
+#. Label of the income_account (Link) field in DocType 'POS Invoice Item'
+#. Label of the income_account (Link) field in DocType 'POS Profile'
+#. Label of the income_account (Link) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/account_balance/account_balance.js:53
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:77
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:298
+msgid "Income Account"
+msgstr "소득 계정"
+
+#. Label of the income_and_expense_account (Section Break) field in DocType
+#. 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Income and Expense"
+msgstr "수입과 지출"
+
+#. Description of the 'Enable Deferred Expense' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Income from this item will be recognized over a period of months instead of all at once. Eg: annual subscription paid upfront."
+msgstr ""
+
+#. Label of a number card in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Incoming Bills"
+msgstr "수신 청구서"
+
+#. Name of a DocType
+#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json
+msgid "Incoming Call Handling Schedule"
+msgstr "수신 전화 응대 일정"
+
+#. Name of a DocType
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+msgid "Incoming Call Settings"
+msgstr "수신 전화 설정"
+
+#. Label of a number card in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Incoming Payment"
+msgstr ""
+
+#. Label of the incoming_rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the incoming_rate (Currency) field in DocType 'Packed Item'
+#. Label of the purchase_rate (Float) field in DocType 'Serial No'
+#. Label of the incoming_rate (Currency) field in DocType 'Stock Ledger Entry'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
+msgid "Incoming Rate"
+msgstr ""
+
+#. Label of the incoming_rate (Currency) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Incoming Rate (Costing)"
+msgstr ""
+
+#: erpnext/public/js/call_popup/call_popup.js:38
+msgid "Incoming call from {0}"
+msgstr "{0}에서 걸려온 전화"
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:74
+msgid "Incompatible Setting Detected"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:197
+msgid "Incorrect Account"
+msgstr "잘못된 계정"
+
+#. Name of a report
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.json
+msgid "Incorrect Balance Qty After Transaction"
+msgstr "거래 후 잔액 수량 오류"
+
+#: erpnext/controllers/subcontracting_controller.py:1056
+msgid "Incorrect Batch Consumed"
+msgstr "잘못된 배치 소비"
+
+#: erpnext/stock/doctype/item/item.py:600
+msgid "Incorrect Check in (group) Warehouse for Reorder"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:145
+msgid "Incorrect Company"
+msgstr "잘못된 회사"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
+msgid "Incorrect Component Quantity"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:391
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:56
+msgid "Incorrect Date"
+msgstr "날짜가 잘못되었습니다"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:160
+msgid "Incorrect Invoice"
+msgstr "잘못된 송장"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:360
+msgid "Incorrect Payment Type"
+msgstr "잘못된 결제 유형"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:116
+msgid "Incorrect Reference Document (Purchase Receipt Item)"
+msgstr "잘못된 참조 문서(구매 영수증 품목)"
+
+#. Name of a report
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.json
+msgid "Incorrect Serial No Valuation"
+msgstr "잘못된 일련번호 평가"
+
+#: erpnext/controllers/subcontracting_controller.py:1069
+msgid "Incorrect Serial Number Consumed"
+msgstr ""
+
+#. Name of a report
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.json
+msgid "Incorrect Serial and Batch Bundle"
+msgstr ""
+
+#. Name of a report
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.json
+msgid "Incorrect Stock Value Report"
+msgstr "잘못된 주식 가치 보고서"
+
+#: erpnext/stock/serial_batch_bundle.py:173
+msgid "Incorrect Type of Transaction"
+msgstr "거래 유형이 잘못되었습니다"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:189
+#: erpnext/stock/doctype/pick_list/pick_list.py:213
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:159
+msgid "Incorrect Warehouse"
+msgstr "잘못된 창고"
+
+#: erpnext/accounts/general_ledger.py:63
+msgid "Incorrect number of General Ledger Entries found. You might have selected a wrong Account in the transaction."
+msgstr "잘못된 수의 일반 원장 항목이 발견되었습니다. 거래에서 잘못된 계정을 선택했을 수 있습니다."
+
+#: banking/src/pages/BankReconciliation.tsx:120
+msgid "Incorrectly Cleared Entries"
+msgstr "잘못 삭제된 항목"
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:202
+msgid "Incorrectly cleared entries as per the report."
+msgstr "보고서에 따르면 일부 항목이 잘못 삭제되었습니다."
+
+#. Label of the incoterm (Link) field in DocType 'Purchase Invoice'
+#. Label of the incoterm (Link) field in DocType 'Sales Invoice'
+#. Label of the incoterm (Link) field in DocType 'Purchase Order'
+#. Label of the incoterm (Link) field in DocType 'Request for Quotation'
+#. Label of the incoterm (Link) field in DocType 'Supplier Quotation'
+#. Label of the incoterm (Link) field in DocType 'Quotation'
+#. Label of the incoterm (Link) field in DocType 'Sales Order'
+#. Name of a DocType
+#. Label of the incoterm (Link) field in DocType 'Delivery Note'
+#. Label of the incoterm (Link) field in DocType 'Purchase Receipt'
+#. Label of the incoterm (Link) field in DocType 'Shipment'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Incoterm"
+msgstr ""
+
+#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Increase In Asset Life (Months)"
+msgstr "자산 수명 증가(개월)"
+
+#. Label of the increase_in_asset_life (Int) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Increase In Asset Life(Months)"
+msgstr "자산 수명 증가(개월)"
+
+#. Label of the increment (Float) field in DocType 'Item Attribute'
+#. Label of the increment (Float) field in DocType 'Item Variant Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Increment"
+msgstr "증가"
+
+#: erpnext/stock/doctype/item_attribute/item_attribute.py:98
+msgid "Increment cannot be 0"
+msgstr ""
+
+#: erpnext/controllers/item_variant.py:119
+msgid "Increment for Attribute {0} cannot be 0"
+msgstr ""
+
+#. Label of the indentation_level (Int) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Indent Level"
+msgstr "들여쓰기 수준"
+
+#. Description of the 'Indent Level' (Int) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Indentation level: 0 = Main heading, 1 = Sub-category, 2 = Individual accounts, etc."
+msgstr ""
+
+#. Description of the 'Delivery Note' (Link) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Indicates that the package is a part of this delivery (Only Draft)"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Indirect Expense"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+msgid "Indirect Expenses"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
+msgid "Indirect Income"
+msgstr "간접 소득"
+
+#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier'
+#. Option for the 'Customer Type' (Select) field in DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:172
+msgid "Individual"
+msgstr "개인"
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:325
+msgid "Individual GL Entry cannot be cancelled."
+msgstr "개인 GL 참가 신청은 취소할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:346
+msgid "Individual Stock Ledger Entry cannot be cancelled."
+msgstr "개별 주식 원장 항목은 취소할 수 없습니다."
+
+#. Label of the industry (Link) field in DocType 'Lead'
+#. Label of the industry (Link) field in DocType 'Opportunity'
+#. Label of the industry (Link) field in DocType 'Prospect'
+#. Label of the industry (Link) field in DocType 'Customer'
+#. Label of the industry (Data) field in DocType 'Industry Type'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/industry_type/industry_type.json
+msgid "Industry"
+msgstr "산업"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/industry_type/industry_type.json
+msgid "Industry Type"
+msgstr "산업 유형"
+
+#. Label of the email_notification_sent (Check) field in DocType 'Delivery
+#. Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Initial Email Notification Sent"
+msgstr ""
+
+#. Label of the initialize_doctypes_table_status (Select) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Initialize Summary Table"
+msgstr "요약 테이블 초기화"
+
+#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment
+#. Entry'
+#. Option for the 'Status' (Select) field in DocType 'Payment Request'
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase
+#. Order'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Initiated"
+msgstr "시작됨"
+
+#. Label of the inspected_by (Link) field in DocType 'Quality Inspection'
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.js:33
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:109
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Inspected By"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
+msgid "Inspection Rejected"
+msgstr "검사 불합격"
+
+#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Inspection Required"
+msgstr "검사 필요"
+
+#. Label of the inspection_required_before_delivery (Check) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Inspection Required before Delivery"
+msgstr "배송 전 검사 필수"
+
+#. Label of the inspection_required_before_purchase (Check) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Inspection Required before Purchase"
+msgstr "구매 전 검사 필수"
+
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
+msgid "Inspection Submission"
+msgstr "검사 제출"
+
+#. Label of the inspection_type (Select) field in DocType 'Quality Inspection'
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:95
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Inspection Type"
+msgstr "검사 유형"
+
+#. Label of the inst_date (Date) field in DocType 'Installation Note'
+#: erpnext/selling/doctype/installation_note/installation_note.json
+msgid "Installation Date"
+msgstr "설치 날짜"
+
+#. Name of a DocType
+#. Label of the installation_note (Section Break) field in DocType
+#. 'Installation Note'
+#. Label of a Link in the Stock Workspace
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:260
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Installation Note"
+msgstr "설치 참고 사항"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+msgid "Installation Note Item"
+msgstr "설치 참고 사항 항목"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
+msgid "Installation Note {0} has already been submitted"
+msgstr ""
+
+#. Label of the installation_status (Select) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Installation Status"
+msgstr "설치 상태"
+
+#. Label of the inst_time (Time) field in DocType 'Installation Note'
+#: erpnext/selling/doctype/installation_note/installation_note.json
+msgid "Installation Time"
+msgstr "설치 시간"
+
+#: erpnext/selling/doctype/installation_note/installation_note.py:115
+msgid "Installation date cannot be before delivery date for Item {0}"
+msgstr ""
+
+#. Label of the qty (Float) field in DocType 'Installation Note Item'
+#. Label of the installed_qty (Float) field in DocType 'Delivery Note Item'
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Installed Qty"
+msgstr "설치 수량"
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:15
+msgid "Installing presets"
+msgstr "사전 설정 설치"
+
+#. Label of the instruction (Small Text) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Instruction"
+msgstr "지침"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:82
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:327
+msgid "Insufficient Capacity"
+msgstr "용량 부족"
+
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
+msgid "Insufficient Permissions"
+msgstr "권한 부족"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:464
+#: erpnext/stock/doctype/pick_list/pick_list.py:147
+#: erpnext/stock/doctype/pick_list/pick_list.py:165
+#: erpnext/stock/doctype/pick_list/pick_list.py:1092
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
+msgid "Insufficient Stock"
+msgstr "재고 부족"
+
+#: erpnext/stock/stock_ledger.py:2206
+msgid "Insufficient Stock for Batch"
+msgstr "해당 배치에 필요한 재고가 부족합니다"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:442
+msgid "Insufficient Stock for Product Bundle Items"
+msgstr ""
+
+#. Label of the insurance_section (Section Break) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Insurance"
+msgstr "보험"
+
+#. Label of the insurance_company (Data) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Insurance Company"
+msgstr ""
+
+#. Label of the insurance_details (Section Break) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Insurance Details"
+msgstr "보험 세부 정보"
+
+#. Label of the insurance_end_date (Date) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Insurance End Date"
+msgstr "보험 만료일"
+
+#. Label of the insurance_start_date (Date) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Insurance Start Date"
+msgstr "보험 개시일"
+
+#: erpnext/setup/doctype/vehicle/vehicle.py:44
+msgid "Insurance Start date should be less than Insurance End date"
+msgstr ""
+
+#. Label of the insured_value (Data) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Insured value"
+msgstr "보험 가액"
+
+#. Label of the insurer (Data) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Insurer"
+msgstr "보험사"
+
+#. Label of the integration_details_section (Section Break) field in DocType
+#. 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Integration Details"
+msgstr "통합 세부 정보"
+
+#. Label of the integration_id (Data) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Integration ID"
+msgstr "통합 ID"
+
+#. Label of the inter_company_invoice_reference (Link) field in DocType 'POS
+#. Invoice'
+#. Label of the inter_company_invoice_reference (Link) field in DocType
+#. 'Purchase Invoice'
+#. Label of the inter_company_invoice_reference (Link) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Inter Company Invoice Reference"
+msgstr "회사 간 송장 참조 번호"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Inter Company Journal Entry"
+msgstr "회사 간 회계 전표 입력"
+
+#. Label of the inter_company_journal_entry_reference (Link) field in DocType
+#. 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Inter Company Journal Entry Reference"
+msgstr "회사 간 회계 전표 참조"
+
+#. Label of the inter_company_order_reference (Link) field in DocType 'Purchase
+#. Order'
+#. Label of the inter_company_order_reference (Link) field in DocType 'Sales
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Inter Company Order Reference"
+msgstr "회사 간 주문 참조"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1189
+msgid "Inter Company Purchase Order"
+msgstr "회사 간 구매 주문서"
+
+#. Label of the inter_company_reference (Link) field in DocType 'Delivery Note'
+#. Label of the inter_company_reference (Link) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Inter Company Reference"
+msgstr "회사 간 참조"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:417
+msgid "Inter Company Sales Order"
+msgstr "회사 간 판매 주문"
+
+#. Label of the inter_transfer_reference_section (Section Break) field in
+#. DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Inter Transfer Reference"
+msgstr "상호 이송 참조"
+
+#. Label of the interest (Currency) field in DocType 'Overdue Payment'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+msgid "Interest"
+msgstr "관심"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
+msgid "Interest Expense"
+msgstr "이자 비용"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
+msgid "Interest Income"
+msgstr "이자 소득"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2991
+msgid "Interest and/or dunning fee"
+msgstr "이자 및/또는 독촉 수수료"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
+msgid "Interest on Fixed Deposits"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/report/lead_details/lead_details.js:39
+msgid "Interested"
+msgstr "관심 있는"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:300
+msgid "Internal"
+msgstr "내부"
+
+#. Label of the internal_customer_section (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal Customer Accounting"
+msgstr "내부 고객 회계"
+
+#: erpnext/selling/doctype/customer/customer.py:246
+msgid "Internal Customer for company {0} already exists"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1188
+msgid "Internal Purchase Order"
+msgstr "내부 구매 주문"
+
+#: erpnext/controllers/accounts_controller.py:805
+msgid "Internal Sale or Delivery Reference missing."
+msgstr "내부 판매 또는 배송 참조 번호가 누락되었습니다."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:416
+msgid "Internal Sales Order"
+msgstr "내부 판매 주문"
+
+#: erpnext/controllers/accounts_controller.py:807
+msgid "Internal Sales Reference Missing"
+msgstr "내부 영업 담당자 참조 누락"
+
+#. Label of the internal_supplier_section (Section Break) field in DocType
+#. 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Internal Supplier Accounting"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier/supplier.py:181
+msgid "Internal Supplier for company {0} already exists"
+msgstr ""
+
+#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#. Label of the internal_transfer_section (Section Break) field in DocType
+#. 'Sales Invoice Item'
+#. Label of the internal_transfer_section (Section Break) field in DocType
+#. 'Delivery Note Item'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:27
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request/material_request_dashboard.py:19
+msgid "Internal Transfer"
+msgstr "내부 이동"
+
+#: erpnext/controllers/accounts_controller.py:816
+msgid "Internal Transfer Reference Missing"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:37
+msgid "Internal Transfers"
+msgstr "내부 이동"
+
+#. Label of the internal_work_history (Table) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Internal Work History"
+msgstr "내부 업무 이력"
+
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
+msgid "Internal transfers can only be done in company's default currency"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:28
+msgid "Internet Publishing"
+msgstr "인터넷 출판"
+
+#. Description of the 'Auto Reconciliation Job Trigger' (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Interval should be between 1 to 59 MInutes"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
+#: erpnext/assets/doctype/asset_category/asset_category.py:69
+#: erpnext/assets/doctype/asset_category/asset_category.py:97
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
+msgid "Invalid Account"
+msgstr "유효하지 않은 계정"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:418
+msgid "Invalid Accounting Dimension"
+msgstr "잘못된 회계 차원"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:400
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1167
+msgid "Invalid Allocated Amount"
+msgstr "할당된 금액이 잘못되었습니다"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:168
+msgid "Invalid Amount"
+msgstr "잘못된 금액입니다"
+
+#: erpnext/controllers/item_variant.py:134
+msgid "Invalid Attribute"
+msgstr "잘못된 속성"
+
+#: erpnext/controllers/accounts_controller.py:627
+msgid "Invalid Auto Repeat Date"
+msgstr "잘못된 자동 반복 날짜"
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:89
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:521
+msgid "Invalid Bank Account"
+msgstr "잘못된 은행 계좌"
+
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.py:40
+msgid "Invalid Barcode. There is no Item attached to this barcode."
+msgstr "유효하지 않은 바코드입니다. 이 바코드에 연결된 상품이 없습니다."
+
+#: erpnext/public/js/controllers/transaction.js:3134
+msgid "Invalid Blanket Order for the selected Customer and Item"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:500
+msgid "Invalid CSV format. Expected column: doctype_name"
+msgstr ""
+
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:72
+msgid "Invalid Child Procedure"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:227
+msgid "Invalid Company Field"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
+msgid "Invalid Company for Inter Company Transaction."
+msgstr "회사 간 거래에 적합하지 않은 회사입니다."
+
+#: erpnext/assets/doctype/asset/asset.py:362
+#: erpnext/assets/doctype/asset/asset.py:369
+#: erpnext/controllers/accounts_controller.py:3242
+msgid "Invalid Cost Center"
+msgstr "잘못된 비용 센터"
+
+#: erpnext/selling/doctype/customer/customer.py:359
+msgid "Invalid Customer Group"
+msgstr "잘못된 고객 그룹"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
+msgid "Invalid Delivery Date"
+msgstr "잘못된 배송 날짜"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:414
+msgid "Invalid Discount"
+msgstr "유효하지 않은 할인"
+
+#: erpnext/controllers/taxes_and_totals.py:840
+msgid "Invalid Discount Amount"
+msgstr "할인 금액이 잘못되었습니다"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:132
+msgid "Invalid Document"
+msgstr "유효하지 않은 문서"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200
+msgid "Invalid Document Type"
+msgstr "잘못된 문서 유형"
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:165
+msgid "Invalid File Type"
+msgstr "잘못된 파일 형식입니다"
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:327
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:332
+msgid "Invalid Formula"
+msgstr "잘못된 수식"
+
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:65
+msgid "Invalid Group By"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:501
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:959
+msgid "Invalid Item"
+msgstr "잘못된 항목"
+
+#: erpnext/stock/doctype/item/item.py:1531
+msgid "Invalid Item Defaults"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.json
+msgid "Invalid Ledger Entries"
+msgstr "잘못된 장부 항목"
+
+#: erpnext/assets/doctype/asset/asset.py:569
+msgid "Invalid Net Purchase Amount"
+msgstr "유효하지 않은 순 구매 금액"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
+#: erpnext/accounts/general_ledger.py:827
+msgid "Invalid Opening Entry"
+msgstr "잘못된 시작 입력"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:144
+msgid "Invalid POS Invoices"
+msgstr "유효하지 않은 POS 송장"
+
+#: erpnext/accounts/doctype/account/account.py:391
+msgid "Invalid Parent Account"
+msgstr "잘못된 부모 계정입니다"
+
+#: erpnext/public/js/controllers/buying.js:424
+msgid "Invalid Part Number"
+msgstr "잘못된 부품 번호"
+
+#: erpnext/utilities/transaction_base.py:42
+msgid "Invalid Posting Time"
+msgstr "게시 시간이 잘못되었습니다"
+
+#: erpnext/accounts/doctype/party_link/party_link.py:30
+msgid "Invalid Primary Role"
+msgstr "잘못된 기본 역할"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:121
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:126
+msgid "Invalid Print Format"
+msgstr "잘못된 인쇄 형식입니다"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61
+msgid "Invalid Priority"
+msgstr "잘못된 우선순위"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1285
+msgid "Invalid Process Loss Configuration"
+msgstr "잘못된 프로세스 손실 구성"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:707
+msgid "Invalid Purchase Invoice"
+msgstr "유효하지 않은 구매 송장"
+
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
+msgid "Invalid Qty"
+msgstr "수량이 잘못되었습니다"
+
+#: erpnext/controllers/accounts_controller.py:1461
+msgid "Invalid Quantity"
+msgstr "수량이 잘못되었습니다"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:483
+msgid "Invalid Query"
+msgstr "잘못된 쿼리입니다"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:198
+msgid "Invalid Return"
+msgstr "잘못된 반환"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:209
+msgid "Invalid Sales Invoices"
+msgstr "유효하지 않은 판매 송장"
+
+#: erpnext/assets/doctype/asset/asset.py:658
+#: erpnext/assets/doctype/asset/asset.py:686
+msgid "Invalid Schedule"
+msgstr "잘못된 일정"
+
+#: erpnext/controllers/selling_controller.py:310
+msgid "Invalid Selling Price"
+msgstr "판매 가격이 잘못되었습니다"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
+msgid "Invalid Serial and Batch Bundle"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
+msgid "Invalid Source and Target Warehouse"
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:37
+msgid "Invalid Upload"
+msgstr "잘못된 업로드"
+
+#: erpnext/controllers/item_variant.py:151
+msgid "Invalid Value"
+msgstr "잘못된 값"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:70
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:256
+msgid "Invalid Warehouse"
+msgstr "유효하지 않은 창고"
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:456
+msgid "Invalid amount in accounting entries of {} {} for Account {}: {}"
+msgstr "계정 {}에 대한 {} {}의 회계 항목 금액이 잘못되었습니다: {}"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:312
+msgid "Invalid condition expression"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
+msgid "Invalid file URL"
+msgstr "잘못된 파일 URL입니다"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:87
+msgid "Invalid filter formula. Please check the syntax."
+msgstr "필터 수식이 잘못되었습니다. 구문을 확인하십시오."
+
+#: erpnext/selling/doctype/quotation/quotation.py:278
+msgid "Invalid lost reason {0}, please create a new lost reason"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:476
+msgid "Invalid naming series (. missing) for {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:731
+msgid "Invalid parameter. 'dn' should be of type str"
+msgstr ""
+
+#: erpnext/utilities/transaction_base.py:126
+msgid "Invalid reference {0} {1}"
+msgstr "잘못된 참조 {0} {1}"
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:96
+msgid "Invalid regex pattern."
+msgstr ""
+
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:99
+msgid "Invalid result key. Response:"
+msgstr "잘못된 결과 키입니다. 응답:"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:483
+msgid "Invalid search query"
+msgstr "잘못된 검색어입니다"
+
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
+msgid "Invalid value {0} for {1} against account {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:196
+msgid "Invalid {0}"
+msgstr "잘못된 {0}"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
+msgid "Invalid {0} for Inter Company Transaction."
+msgstr "회사 간 거래에 대해 유효하지 않은 {0} 입니다."
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:101
+#: erpnext/controllers/sales_and_purchase_return.py:34
+msgid "Invalid {0}: {1}"
+msgstr "잘못된 {0}: {1}"
+
+#. Label of the inventory_section (Tab Break) field in DocType 'Item'
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
+msgid "Inventory"
+msgstr "목록"
+
+#. Label of the inventory_account_currency (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Inventory Account Currency"
+msgstr "재고 계정 통화"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/patches/v15_0/refactor_closing_stock_balance.py:43
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:186
+#: erpnext/workspace_sidebar/stock.json
+msgid "Inventory Dimension"
+msgstr "재고 차원"
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:159
+msgid "Inventory Dimension Negative Stock"
+msgstr "재고 차원 음수 재고"
+
+#. Label of the inventory_dimension_key (Small Text) field in DocType 'Stock
+#. Closing Balance'
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+msgid "Inventory Dimension key"
+msgstr "재고 차원 키"
+
+#. Label of the inventory_settings_section (Section Break) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Inventory Settings"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:214
+msgid "Inventory Turnover Ratio"
+msgstr ""
+
+#. Label of the inventory_valuation_section (Section Break) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Inventory Valuation"
+msgstr "재고 평가"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:29
+msgid "Investment Banking"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+msgid "Investments"
+msgstr "투자"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Invite Users'
+#: erpnext/setup/onboarding_step/invite_users/invite_users.json
+msgid "Invite Users"
+msgstr "사용자 초대"
+
+#. Option for the 'Posting Date Inheritance for Exchange Gain / Loss' (Select)
+#. field in DocType 'Accounts Settings'
+#. Label of the sales_invoice (Link) field in DocType 'Discounted Invoice'
+#. Label of the invoice (Dynamic Link) field in DocType 'Loyalty Point Entry'
+#. Label of the invoice (Dynamic Link) field in DocType 'Subscription Invoice'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:175
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:194
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:97
+msgid "Invoice"
+msgstr "송장"
+
+#. Label of the enable_features_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Invoice Cancellation"
+msgstr "송장 취소"
+
+#. Label of the invoice_date (Date) field in DocType 'Payment Reconciliation
+#. Invoice'
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+msgid "Invoice Date"
+msgstr "송장 날짜"
+
+#. Name of a DocType
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:148
+msgid "Invoice Discounting"
+msgstr "송장 할인"
+
+#: erpnext/accounts/doctype/pos_settings/pos_settings.py:56
+msgid "Invoice Document Type Selection Error"
+msgstr "송장 문서 유형 선택 오류"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
+msgid "Invoice Grand Total"
+msgstr "송장 총액"
+
+#. Label of the invoice_limit (Int) field in DocType 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Invoice Limit"
+msgstr "청구서 한도"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:290
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:706
+msgid "Invoice No"
+msgstr "송장 번호"
+
+#. Label of the invoice_number (Data) field in DocType 'Opening Invoice
+#. Creation Tool Item'
+#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the invoice_number (Dynamic Link) field in DocType 'Payment
+#. Reconciliation Invoice'
+#. Label of the invoice_number (Dynamic Link) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+msgid "Invoice Number"
+msgstr "송장 번호"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:867
+msgid "Invoice Paid"
+msgstr "송장 결제 완료"
+
+#. Label of the invoice_portion (Percent) field in DocType 'Overdue Payment'
+#. Label of the invoice_portion (Percent) field in DocType 'Payment Schedule'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:45
+msgid "Invoice Portion"
+msgstr "청구서 부분"
+
+#. Label of the invoice_portion (Float) field in DocType 'Payment Term'
+#. Label of the invoice_portion (Float) field in DocType 'Payment Terms
+#. Template Detail'
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Invoice Portion (%)"
+msgstr "청구서 비율(%)"
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:106
+msgid "Invoice Posting Date"
+msgstr "송장 게시일"
+
+#. Label of the invoice_series (Select) field in DocType 'Import Supplier
+#. Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Invoice Series"
+msgstr "송장 시리즈"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:67
+msgid "Invoice Status"
+msgstr "송장 상태"
+
+#. Label of the invoice_type (Link) field in DocType 'Loyalty Point Entry'
+#. Label of the invoice_type (Select) field in DocType 'Opening Invoice
+#. Creation Tool'
+#. Label of the invoice_type (Link) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the invoice_type (Select) field in DocType 'Payment Reconciliation
+#. Invoice'
+#. Label of the invoice_type (Link) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:7
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/pos_settings/pos_settings.py:54
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:85
+msgid "Invoice Type"
+msgstr "송장 유형"
+
+#. Label of the invoice_type (Select) field in DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "Invoice Type Created via POS Screen"
+msgstr "POS 화면을 통해 생성된 송장 유형"
+
+#: erpnext/projects/doctype/timesheet/timesheet.py:427
+msgid "Invoice already created for all billing hours"
+msgstr ""
+
+#. Label of the invoice_and_billing_tab (Tab Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Invoice and Billing"
+msgstr "송장 및 청구서"
+
+#: erpnext/projects/doctype/timesheet/timesheet.py:424
+msgid "Invoice can't be made for zero billing hour"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:171
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:139
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:140
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:166
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:194
+msgid "Invoiced Amount"
+msgstr "청구 금액"
+
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:76
+msgid "Invoiced Qty"
+msgstr "청구 수량"
+
+#. Label of the invoices (Table) field in DocType 'Invoice Discounting'
+#. Label of the section_break_4 (Section Break) field in DocType 'Opening
+#. Invoice Creation Tool'
+#. Label of the invoices (Table) field in DocType 'Payment Reconciliation'
+#. Group in POS Profile's connections
+#. Option for the 'Hold Type' (Select) field in DocType 'Supplier'
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:693
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
+msgid "Invoices"
+msgstr "송장"
+
+#. Description of the 'Allocated' (Check) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Invoices and Payments have been Fetched and Allocated"
+msgstr ""
+
+#. Name of a Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/desktop_icon/invoicing.json erpnext/workspace_sidebar/invoicing.json
+msgid "Invoicing"
+msgstr "송장 발행"
+
+#. Label of the invoicing_features_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Invoicing Features"
+msgstr "청구서 발행 기능"
+
+#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment
+#. Request'
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory
+#. Dimension'
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and
+#. Batch Bundle'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Inward"
+msgstr "안으로"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Inward Order"
+msgstr "내면의 질서"
+
+#. Label of the is_account_payable (Check) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Is Account Payable"
+msgstr ""
+
+#. Label of the is_additional_item (Check) field in DocType 'Work Order Item'
+#. Label of the is_additional_item (Check) field in DocType 'Subcontracting
+#. Inward Order Received Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+msgid "Is Additional Item"
+msgstr "추가 품목입니다"
+
+#. Label of the is_additional_transfer_entry (Check) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Is Additional Transfer Entry"
+msgstr "추가 전송 입력"
+
+#. Label of the is_adjustment_entry (Check) field in DocType 'Stock Ledger
+#. Entry'
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Is Adjustment Entry"
+msgstr ""
+
+#. Label of the is_advance (Select) field in DocType 'GL Entry'
+#. Label of the is_advance (Select) field in DocType 'Journal Entry Account'
+#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the is_advance (Data) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the is_advance (Data) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+msgid "Is Advance"
+msgstr "사전 준비"
+
+#. Label of the is_alternative (Check) field in DocType 'Quotation Item'
+#: erpnext/selling/doctype/quotation/quotation.js:323
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+msgid "Is Alternative"
+msgstr ""
+
+#. Label of the is_billable (Check) field in DocType 'Timesheet Detail'
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Is Billable"
+msgstr "청구 가능 여부"
+
+#: erpnext/setup/install.py:170
+msgid "Is Billing Contact"
+msgstr "청구 담당자 연락처"
+
+#. Label of the is_cancelled (Check) field in DocType 'GL Entry'
+#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Bundle'
+#. Label of the is_cancelled (Check) field in DocType 'Serial and Batch Entry'
+#. Label of the is_cancelled (Check) field in DocType 'Stock Ledger Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:57
+msgid "Is Cancelled"
+msgstr "취소되었습니다"
+
+#. Label of the is_cash_or_non_trade_discount (Check) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Cash or Non Trade Discount"
+msgstr ""
+
+#. Label of the is_company (Check) field in DocType 'Share Balance'
+#. Label of the is_company (Check) field in DocType 'Shareholder'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+msgid "Is Company"
+msgstr "이 회사는"
+
+#. Label of the is_company_account (Check) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Is Company Account"
+msgstr ""
+
+#. Label of the is_consolidated (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Consolidated"
+msgstr "통합되었습니다"
+
+#. Label of the is_container (Check) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Is Container"
+msgstr "컨테이너입니다"
+
+#. Label of the is_corrective_job_card (Check) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Is Corrective Job Card"
+msgstr "교정 작업 카드"
+
+#. Label of the is_corrective_operation (Check) field in DocType 'Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Is Corrective Operation"
+msgstr ""
+
+#. Label of the is_credit_card (Check) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Is Credit Card"
+msgstr ""
+
+#. Label of the is_cumulative (Check) field in DocType 'Pricing Rule'
+#. Label of the is_cumulative (Check) field in DocType 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Is Cumulative"
+msgstr ""
+
+#. Label of the is_customer_provided_item (Check) field in DocType 'Work Order
+#. Item'
+#. Label of the is_customer_provided_item (Check) field in DocType 'Item'
+#. Label of the is_customer_provided_item (Check) field in DocType
+#. 'Subcontracting Inward Order Received Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+msgid "Is Customer Provided Item"
+msgstr ""
+
+#. Label of the is_default (Check) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Is Default Account"
+msgstr "기본 계정입니다"
+
+#. Label of the is_default_language (Check) field in DocType 'Dunning Letter
+#. Text'
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Is Default Language"
+msgstr "기본 언어입니다"
+
+#. Label of the dn_required (Select) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Is Delivery Note required to create Sales Invoice?"
+msgstr ""
+
+#. Label of the is_discounted (Check) field in DocType 'POS Invoice'
+#. Label of the is_discounted (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Discounted"
+msgstr "할인됩니다"
+
+#. Label of the is_exchange_gain_loss (Check) field in DocType 'Payment Entry
+#. Deduction'
+#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json
+msgid "Is Exchange Gain / Loss?"
+msgstr ""
+
+#. Label of the is_expandable (Check) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Is Expandable"
+msgstr "확장 가능합니다"
+
+#. Label of the is_final_finished_good (Check) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Is Final Finished Good"
+msgstr ""
+
+#. Label of the is_finished_item (Check) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Is Finished Item"
+msgstr ""
+
+#. Label of the is_fixed_asset (Check) field in DocType 'POS Invoice Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Invoice Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Sales Invoice Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Order Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Landed Cost Item'
+#. Label of the is_fixed_asset (Check) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Is Fixed Asset"
+msgstr ""
+
+#. Label of the is_free_item (Check) field in DocType 'POS Invoice Item'
+#. Label of the is_free_item (Check) field in DocType 'Purchase Invoice Item'
+#. Label of the is_free_item (Check) field in DocType 'Sales Invoice Item'
+#. Label of the is_free_item (Check) field in DocType 'Purchase Order Item'
+#. Label of the is_free_item (Check) field in DocType 'Supplier Quotation Item'
+#. Label of the is_free_item (Check) field in DocType 'Quotation Item'
+#. Label of the is_free_item (Check) field in DocType 'Sales Order Item'
+#. Label of the is_free_item (Check) field in DocType 'Delivery Note Item'
+#. Label of the is_free_item (Check) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Is Free Item"
+msgstr "무료 상품입니다"
+
+#. Label of the is_frozen (Check) field in DocType 'Supplier'
+#. Label of the is_frozen (Check) field in DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:69
+msgid "Is Frozen"
+msgstr "냉동실에 있습니다"
+
+#. Label of the is_fully_depreciated (Check) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Is Fully Depreciated"
+msgstr ""
+
+#. Label of the is_group (Check) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Is Group Warehouse"
+msgstr "그룹 창고"
+
+#. Label of the is_half_day (Check) field in DocType 'Holiday'
+#. Label of the is_half_day (Check) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday/holiday.json
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Is Half Day"
+msgstr "반나절입니다"
+
+#. Label of the is_internal_customer (Check) field in DocType 'Sales Invoice'
+#. Label of the is_internal_customer (Check) field in DocType 'Customer'
+#. Label of the is_internal_customer (Check) field in DocType 'Sales Order'
+#. Label of the is_internal_customer (Check) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Is Internal Customer"
+msgstr ""
+
+#. Label of the is_internal_supplier (Check) field in DocType 'Purchase
+#. Invoice'
+#. Label of the is_internal_supplier (Check) field in DocType 'Purchase Order'
+#. Label of the is_internal_supplier (Check) field in DocType 'Supplier'
+#. Label of the is_internal_supplier (Check) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Is Internal Supplier"
+msgstr ""
+
+#. Label of the is_legacy (Check) field in DocType 'BOM Secondary Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+msgid "Is Legacy"
+msgstr ""
+
+#. Label of the is_legacy_scrap_item (Check) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the is_legacy_scrap_item (Check) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Is Legacy Scrap Item"
+msgstr ""
+
+#. Label of the is_mandatory (Check) field in DocType 'Applicable On Account'
+#: erpnext/accounts/doctype/applicable_on_account/applicable_on_account.json
+msgid "Is Mandatory"
+msgstr "필수 사항입니다"
+
+#. Label of the is_milestone (Check) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Is Milestone"
+msgstr ""
+
+#. Label of the is_opening (Select) field in DocType 'GL Entry'
+#. Label of the is_opening (Select) field in DocType 'Journal Entry'
+#. Label of the is_opening (Select) field in DocType 'Journal Entry Template'
+#. Label of the is_opening (Select) field in DocType 'Payment Entry'
+#. Label of the is_opening (Select) field in DocType 'Stock Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Is Opening"
+msgstr "개장합니다"
+
+#. Label of the is_opening (Select) field in DocType 'POS Invoice'
+#. Label of the is_opening (Select) field in DocType 'Purchase Invoice'
+#. Label of the is_opening (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Opening Entry"
+msgstr "입장이 시작됩니다"
+
+#. Label of the is_outward (Check) field in DocType 'Serial and Batch Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+msgid "Is Outward"
+msgstr "외부를 향하고 있습니다"
+
+#. Label of the is_packed (Check) field in DocType 'Serial and Batch Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Is Packed"
+msgstr "꽉 찼습니다"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:402
+msgid "Is Packed Item"
+msgstr "포장된 상품입니다"
+
+#. Label of the is_paid (Check) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Is Paid"
+msgstr "지불됨"
+
+#. Label of the is_paused (Check) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Is Paused"
+msgstr "일시 중지됨"
+
+#. Label of the is_period_closing_voucher_entry (Check) field in DocType
+#. 'Account Closing Balance'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+msgid "Is Period Closing Voucher Entry"
+msgstr ""
+
+#. Label of the is_phantom_bom (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:68
+msgid "Is Phantom BOM"
+msgstr ""
+
+#. Label of the is_phantom (Check) field in DocType 'BOM Creator'
+#. Label of the is_phantom_item (Check) field in DocType 'BOM Creator Item'
+#. Label of the is_phantom_item (Check) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:68
+msgid "Is Phantom Item"
+msgstr ""
+
+#. Label of the po_required (Select) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Is Purchase Order required for Purchase Invoice & Receipt creation?"
+msgstr ""
+
+#. Label of the pr_required (Select) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Is Purchase Receipt required for Purchase Invoice creation?"
+msgstr "구매 송장 발행에 구매 영수증이 필수인가요?"
+
+#. Label of the is_debit_note (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Rate Adjustment Entry (Debit Note)"
+msgstr ""
+
+#. Label of the is_recursive (Check) field in DocType 'Pricing Rule'
+#. Label of the is_recursive (Check) field in DocType 'Promotional Scheme
+#. Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Is Recursive"
+msgstr ""
+
+#. Label of the is_rejected (Check) field in DocType 'Serial and Batch Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Is Rejected"
+msgstr "거부되었습니다"
+
+#. Label of the is_rejected_warehouse (Check) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Is Rejected Warehouse"
+msgstr "창고가 거부되었습니다"
+
+#. Label of the is_return (Check) field in DocType 'POS Invoice Reference'
+#. Label of the is_return (Check) field in DocType 'Sales Invoice Reference'
+#. Label of the is_return (Check) field in DocType 'Delivery Note'
+#. Label of the is_return (Check) field in DocType 'Purchase Receipt'
+#. Label of the is_return (Check) field in DocType 'Stock Entry'
+#. Label of the is_return (Check) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+#: erpnext/accounts/report/pos_register/pos_register.js:63
+#: erpnext/accounts/report/pos_register/pos_register.py:221
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Is Return"
+msgstr ""
+
+#. Label of the is_return (Check) field in DocType 'POS Invoice'
+#. Label of the is_return (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is Return (Credit Note)"
+msgstr "반품(신용장)"
+
+#. Label of the is_return (Check) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Is Return (Debit Note)"
+msgstr ""
+
+#. Label of the is_rule_evaluated (Check) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Is Rule Evaluated"
+msgstr ""
+
+#. Label of the so_required (Select) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Is Sales Order required to create Sales Invoice/Delivery Note?"
+msgstr ""
+
+#. Label of the is_short_year (Check) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "Is Short/Long Year"
+msgstr "단기/장기"
+
+#. Label of the is_stock_item (Check) field in DocType 'BOM Item'
+#. Label of the is_stock_item (Check) field in DocType 'Sales Order Item'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Is Stock Item"
+msgstr "재고 상품입니다"
+
+#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Explosion
+#. Item'
+#. Label of the is_sub_assembly_item (Check) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Is Sub Assembly Item"
+msgstr ""
+
+#. Label of the is_subcontracted (Check) field in DocType 'Purchase Invoice'
+#. Label of the is_subcontracted (Check) field in DocType 'Purchase Order'
+#. Label of the is_subcontracted (Check) field in DocType 'Supplier Quotation'
+#. Label of the is_subcontracted (Check) field in DocType 'BOM Creator Item'
+#. Label of the is_subcontracted (Check) field in DocType 'BOM Operation'
+#. Label of the is_subcontracted (Check) field in DocType 'Work Order
+#. Operation'
+#. Label of the is_subcontracted (Check) field in DocType 'Sales Order'
+#. Label of the is_subcontracted (Check) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Is Subcontracted"
+msgstr ""
+
+#. Label of the is_sub_contracted_item (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Is Subcontracted Item"
+msgstr ""
+
+#. Label of the is_tax_withholding_account (Check) field in DocType 'Advance
+#. Taxes and Charges'
+#. Label of the is_tax_withholding_account (Check) field in DocType 'Journal
+#. Entry Account'
+#. Label of the is_tax_withholding_account (Check) field in DocType 'Purchase
+#. Taxes and Charges'
+#. Label of the is_tax_withholding_account (Check) field in DocType 'Sales
+#. Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Is Tax Withholding Account"
+msgstr ""
+
+#. Label of the is_template (Check) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Is Template"
+msgstr ""
+
+#. Label of the is_transporter (Check) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Is Transporter"
+msgstr ""
+
+#: erpnext/setup/install.py:161
+msgid "Is Your Company Address"
+msgstr ""
+
+#. Label of the is_a_subscription (Check) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Is a Subscription"
+msgstr "구독 서비스입니다"
+
+#. Label of the is_created_using_pos (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Is created using POS"
+msgstr ""
+
+#. Label of the included_in_print_rate (Check) field in DocType 'Purchase Taxes
+#. and Charges'
+#. Label of the included_in_print_rate (Check) field in DocType 'Sales Taxes
+#. and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Is this Tax included in Basic Rate?"
+msgstr "이 세금은 기본 요금에 포함되어 있나요?"
+
+#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer'
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement'
+#. Label of the issue (Link) field in DocType 'Task'
+#. Option for the 'Asset Status' (Select) field in DocType 'Serial No'
+#. Name of a DocType
+#. Label of the complaint (Text Editor) field in DocType 'Warranty Claim'
+#. Title of the issues Web Form
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:22
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/public/js/communication.js:13
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/support/web_form/issues/issues.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "Issue"
+msgstr "문제"
+
+#. Name of a report
+#: erpnext/support/report/issue_analytics/issue_analytics.json
+msgid "Issue Analytics"
+msgstr "이슈 분석"
+
+#. Label of the issue_credit_note (Check) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Issue Credit Note"
+msgstr "신용장 발행"
+
+#. Label of the complaint_date (Date) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Issue Date"
+msgstr "발행일"
+
+#: erpnext/stock/doctype/material_request/material_request.js:180
+msgid "Issue Material"
+msgstr "문제 자료"
+
+#. Name of a DocType
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/support/doctype/issue_priority/issue_priority.json
+#: erpnext/support/report/issue_analytics/issue_analytics.js:63
+#: erpnext/support/report/issue_analytics/issue_analytics.py:70
+#: erpnext/support/report/issue_summary/issue_summary.js:51
+#: erpnext/support/report/issue_summary/issue_summary.py:67
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "Issue Priority"
+msgstr "문제 우선순위"
+
+#. Label of the issue_split_from (Link) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Issue Split From"
+msgstr "문제 분리"
+
+#. Name of a report
+#: erpnext/support/report/issue_summary/issue_summary.json
+msgid "Issue Summary"
+msgstr "문제 요약"
+
+#. Label of the issue_type (Link) field in DocType 'Issue'
+#. Name of a DocType
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/issue_type/issue_type.json
+#: erpnext/support/report/issue_analytics/issue_analytics.py:59
+#: erpnext/support/report/issue_summary/issue_summary.py:56
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "Issue Type"
+msgstr "문제 유형"
+
+#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
+#. DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
+
+#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
+#. Option for the 'Status' (Select) field in DocType 'Material Request'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:44
+msgid "Issued"
+msgstr "발행됨"
+
+#. Name of a report
+#: erpnext/manufacturing/report/issued_items_against_work_order/issued_items_against_work_order.json
+msgid "Issued Items Against Work Order"
+msgstr ""
+
+#. Label of the issues_sb (Section Break) field in DocType 'Support Settings'
+#. Label of a Card Break in the Support Workspace
+#: erpnext/support/doctype/issue/issue.py:181
+#: erpnext/support/doctype/support_settings/support_settings.json
+#: erpnext/support/workspace/support/support.json
+msgid "Issues"
+msgstr "문제점"
+
+#. Label of the issuing_date (Date) field in DocType 'Driver'
+#. Label of the issuing_date (Date) field in DocType 'Driving License Category'
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/driving_license_category/driving_license_category.json
+msgid "Issuing Date"
+msgstr "발행일"
+
+#: erpnext/stock/doctype/item/item.py:657
+msgid "It can take upto few hours for accurate stock values to be visible after merging items."
+msgstr "품목들을 병합한 후 정확한 재고량을 확인하는 데 몇 시간이 걸릴 수 있습니다."
+
+#: erpnext/public/js/controllers/transaction.js:2535
+msgid "It is needed to fetch Item Details."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:79
+msgid "It takes into account all the transactions that have been posted and subtracts the transactions that have not cleared yet."
+msgstr "이는 이미 처리된 모든 거래를 고려하고 아직 처리되지 않은 거래를 차감합니다."
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:219
+msgid "It's all good!"
+msgstr "다 괜찮아요!"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:217
+msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'"
+msgstr ""
+
+#. Label of the italic_text (Check) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Italic Text"
+msgstr ""
+
+#. Description of the 'Italic Text' (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Italic text for subtotals or notes"
+msgstr ""
+
+#. Label of the item_code (Link) field in DocType 'POS Invoice Item'
+#. Label of the item_code (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the item_code (Link) field in DocType 'Sales Invoice Item'
+#. Label of the item (Link) field in DocType 'Subscription Plan'
+#. Label of the item (Link) field in DocType 'Tax Rule'
+#. Label of the item_code (Link) field in DocType 'Asset Repair Consumed Item'
+#. Label of a Link in the Buying Workspace
+#. Label of the items (Table) field in DocType 'Blanket Order'
+#. Label of a Link in the Manufacturing Workspace
+#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party
+#. Specific Item'
+#. Label of the item_code (Link) field in DocType 'Product Bundle Item'
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization
+#. Rule'
+#. Label of a Link in the Home Workspace
+#. Label of a shortcut in the Home Workspace
+#. Label of the item (Link) field in DocType 'Batch'
+#. Name of a DocType
+#. Label of the item_code (Link) field in DocType 'Pick List Item'
+#. Label of the item_code (Link) field in DocType 'Putaway Rule'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:15
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:32
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:22
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:59
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:36
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:60
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:49
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:33
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:202
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/controllers/taxes_and_totals.py:1249
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/bom/bom.js:1085
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:109
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:25
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:101
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:165
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:68
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:15
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:74
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:234
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:385
+#: erpnext/public/js/purchase_trends_filters.js:48
+#: erpnext/public/js/purchase_trends_filters.js:63
+#: erpnext/public/js/sales_trends_filters.js:23
+#: erpnext/public/js/sales_trends_filters.js:39
+#: erpnext/public/js/stock_analytics.js:92
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:338
+#: erpnext/selling/doctype/sales_order/sales_order.js:1712
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:50
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.js:14
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:36
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:61
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/dashboard/item_dashboard.js:220
+#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325
+#: erpnext/stock/page/stock_balance/stock_balance.js:23
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:36
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:7
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:24
+#: erpnext/stock/report/available_serial_no/available_serial_no.js:42
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:93
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.js:24
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:32
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:76
+#: erpnext/stock/report/item_price_stock/item_price_stock.js:8
+#: erpnext/stock/report/item_prices/item_prices.py:50
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:88
+#: erpnext/stock/report/item_variant_details/item_variant_details.js:10
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:57
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:53
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:24
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:81
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:30
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:103
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:28
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:46
+#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
+#: erpnext/stock/report/stock_balance/stock_balance.py:473
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:8
+#: erpnext/stock/report/total_stock_summary/total_stock_summary.py:21
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:40
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:97
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/templates/emails/reorder_item.html:8
+#: erpnext/templates/form_grid/material_request_grid.html:6
+#: erpnext/templates/form_grid/stock_entry_grid.html:8
+#: erpnext/templates/generators/bom.html:19
+#: erpnext/templates/pages/material_request_info.html:42
+#: erpnext/templates/pages/order.html:94 erpnext/workspace_sidebar/assets.json
+#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json
+#: erpnext/workspace_sidebar/manufacturing.json
+#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json
+#: erpnext/workspace_sidebar/subcontracting.json
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Item"
+msgstr "목"
+
+#: erpnext/stock/report/bom_search/bom_search.js:8
+msgid "Item 1"
+msgstr "항목 1"
+
+#: erpnext/stock/report/bom_search/bom_search.js:14
+msgid "Item 2"
+msgstr "항목 2"
+
+#: erpnext/stock/report/bom_search/bom_search.js:20
+msgid "Item 3"
+msgstr "항목 3"
+
+#: erpnext/stock/report/bom_search/bom_search.js:26
+msgid "Item 4"
+msgstr "항목 4"
+
+#: erpnext/stock/report/bom_search/bom_search.js:32
+msgid "Item 5"
+msgstr "항목 5"
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Alternative"
+msgstr "품목 대체"
+
+#. Option for the 'Variant Based On' (Select) field in DocType 'Item'
+#. Name of a DocType
+#. Label of the item_attribute (Link) field in DocType 'Item Variant'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_variant/item_variant.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Attribute"
+msgstr "항목 속성"
+
+#. Name of a DocType
+#. Label of the item_attribute_value (Data) field in DocType 'Item Variant'
+#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json
+#: erpnext/stock/doctype/item_variant/item_variant.json
+msgid "Item Attribute Value"
+msgstr "항목 속성 값"
+
+#. Label of the item_attribute_values (Table) field in DocType 'Item Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+msgid "Item Attribute Values"
+msgstr "항목 속성 값"
+
+#. Label of the section_break_zlmj (Section Break) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Item Attributes"
+msgstr "항목 속성"
+
+#. Name of a report
+#: erpnext/stock/report/item_balance/item_balance.json
+msgid "Item Balance (Simple)"
+msgstr "항목 잔액 (단순)"
+
+#. Name of a DocType
+#. Label of the item_barcode (Data) field in DocType 'Quick Stock Balance'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+msgid "Item Barcode"
+msgstr "품목 바코드"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:48
+msgid "Item Cart"
+msgstr "품목 카트"
+
+#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule'
+#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing
+#. Rule'
+#. Label of the other_item_code (Link) field in DocType 'Pricing Rule'
+#. Label of the item_code (Data) field in DocType 'Pricing Rule Detail'
+#. Label of the item_code (Link) field in DocType 'Pricing Rule Item Code'
+#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme'
+#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the other_item_code (Link) field in DocType 'Promotional Scheme'
+#. Label of the free_item (Link) field in DocType 'Promotional Scheme Product
+#. Discount'
+#. Label of the item_code (Link) field in DocType 'Asset'
+#. Label of the item_code (Link) field in DocType 'Asset Capitalization Asset
+#. Item'
+#. Label of the item_code (Link) field in DocType 'Asset Capitalization Service
+#. Item'
+#. Label of the item_code (Link) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance'
+#. Label of the item_code (Read Only) field in DocType 'Asset Maintenance Log'
+#. Label of the item_code (Link) field in DocType 'Purchase Order Item'
+#. Label of the main_item_code (Link) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the item_code (Link) field in DocType 'Request for Quotation Item'
+#. Label of the item_code (Link) field in DocType 'Supplier Quotation Item'
+#. Label of the item_code (Link) field in DocType 'Opportunity Item'
+#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Detail'
+#. Label of the item_code (Link) field in DocType 'Maintenance Schedule Item'
+#. Label of the item_code (Link) field in DocType 'Maintenance Visit Purpose'
+#. Label of the item_code (Link) field in DocType 'Blanket Order Item'
+#. Label of the item_code (Link) field in DocType 'BOM Creator Item'
+#. Label of the item_code (Link) field in DocType 'BOM Explosion Item'
+#. Label of the item_code (Link) field in DocType 'BOM Item'
+#. Label of the item_code (Link) field in DocType 'BOM Secondary Item'
+#. Label of the item_code (Link) field in DocType 'BOM Website Item'
+#. Label of the item_code (Link) field in DocType 'Job Card Item'
+#. Label of the item_code (Link) field in DocType 'Master Production Schedule
+#. Item'
+#. Label of the item_code (Link) field in DocType 'Material Request Plan Item'
+#. Label of the item_code (Link) field in DocType 'Production Plan'
+#. Label of the item_code (Link) field in DocType 'Production Plan Item'
+#. Label of the item_code (Link) field in DocType 'Sales Forecast Item'
+#. Label of the item_code (Link) field in DocType 'Work Order Item'
+#. Label of the item_code (Link) field in DocType 'Import Supplier Invoice'
+#. Label of the item_code (Link) field in DocType 'Delivery Schedule Item'
+#. Label of the item_code (Link) field in DocType 'Installation Note Item'
+#. Label of the item_code (Link) field in DocType 'Quotation Item'
+#. Label of the item_code (Link) field in DocType 'Sales Order Item'
+#. Label of the item_code (Link) field in DocType 'Bin'
+#. Label of the item_code (Link) field in DocType 'Delivery Note Item'
+#. Label of the item_code (Data) field in DocType 'Item'
+#. Label of the item_code (Link) field in DocType 'Item Alternative'
+#. Label of the item_code (Link) field in DocType 'Item Lead Time'
+#. Label of the item_code (Link) field in DocType 'Item Manufacturer'
+#. Label of the item_code (Link) field in DocType 'Item Price'
+#. Label of the item_code (Link) field in DocType 'Landed Cost Item'
+#. Label of the item_code (Link) field in DocType 'Material Request Item'
+#. Label of the item_code (Link) field in DocType 'Packed Item'
+#. Label of the item_code (Link) field in DocType 'Packing Slip Item'
+#. Label of the item_code (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the item_code (Link) field in DocType 'Quality Inspection'
+#. Label of the item (Link) field in DocType 'Quick Stock Balance'
+#. Label of the item_code (Link) field in DocType 'Repost Item Valuation'
+#. Label of the item_code (Link) field in DocType 'Serial and Batch Bundle'
+#. Label of the item_code (Link) field in DocType 'Serial and Batch Entry'
+#. Label of the item_code (Link) field in DocType 'Serial No'
+#. Label of the item_code (Link) field in DocType 'Stock Closing Balance'
+#. Label of the item_code (Link) field in DocType 'Stock Entry Detail'
+#. Label of the item_code (Link) field in DocType 'Stock Ledger Entry'
+#. Label of the item_code (Link) field in DocType 'Stock Reconciliation Item'
+#. Label of the item_code (Link) field in DocType 'Stock Reservation Entry'
+#. Option for the 'Item Naming By' (Select) field in DocType 'Stock Settings'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order
+#. Item'
+#. Label of the main_item_code (Link) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Order Item'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Order Service
+#. Item'
+#. Label of the main_item_code (Link) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the item_code (Link) field in DocType 'Subcontracting Receipt Item'
+#. Label of the main_item_code (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#. Label of the item_code (Link) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:295
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:68
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:37
+#: erpnext/accounts/report/gross_profit/gross_profit.py:312
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:148
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:167
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:37
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:737
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:26
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:229
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:198
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:35
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:471
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:159
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:60
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:8
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:103
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:100
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:75
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:166
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:30
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:952
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:988
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:364
+#: 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:119
+#: erpnext/projects/doctype/timesheet/timesheet.js:214
+#: erpnext/public/js/controllers/transaction.js:2829
+#: erpnext/public/js/stock_reservation.js:112
+#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
+#: erpnext/public/js/utils.js:736
+#: erpnext/public/js/utils/serial_no_batch_selector.js:96
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+#: erpnext/selling/doctype/quotation/quotation.js:297
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:369
+#: erpnext/selling/doctype/sales_order/sales_order.js:514
+#: erpnext/selling/doctype/sales_order/sales_order.js:1317
+#: erpnext/selling/doctype/sales_order/sales_order.js:1481
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:29
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:27
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:19
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:241
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:33
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:87
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/report/available_batch_report/available_batch_report.py:21
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:32
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:147
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:119
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.js:15
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:105
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:8
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.js:7
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:175
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:115
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:18
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.js:15
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:40
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:127
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:252
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:351
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:507
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/templates/includes/products_as_list.html:14
+msgid "Item Code"
+msgstr "품목 코드"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:61
+msgid "Item Code (Final Product)"
+msgstr "품목 코드 (최종 제품)"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:92
+msgid "Item Code > Item Group > Brand"
+msgstr "품목 코드 > 품목 그룹 > 브랜드"
+
+#: erpnext/stock/doctype/serial_no/serial_no.py:83
+msgid "Item Code cannot be changed for Serial No."
+msgstr "품목 코드는 일련번호를 변경할 수 없습니다."
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:452
+msgid "Item Code required at Row No {0}"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:825
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:276
+msgid "Item Code: {0} is not available under warehouse {1}."
+msgstr "품목 코드: {0} 는 창고 {1}에서 구매할 수 없습니다."
+
+#. Name of a DocType
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+msgid "Item Customer Detail"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Item Default"
+msgstr ""
+
+#. Label of the item_defaults (Table) field in DocType 'Item'
+#. Label of the item_defaults_section (Section Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Item Defaults"
+msgstr ""
+
+#. Label of the description (Small Text) field in DocType 'BOM'
+#. Label of the description (Text Editor) field in DocType 'BOM Item'
+#. Label of the description (Text Editor) field in DocType 'BOM Website Item'
+#. Label of the item_details (Section Break) field in DocType 'Material Request
+#. Plan Item'
+#. Label of the description (Small Text) field in DocType 'Work Order'
+#. Label of the item_description (Text) field in DocType 'Item Price'
+#. Label of the item_description (Small Text) field in DocType 'Quick Stock
+#. Balance'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+msgid "Item Description"
+msgstr "품목 설명"
+
+#. Label of the section_break_19 (Section Break) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#. Label of the item_details_tab (Tab Break) field in DocType 'Item Lead Time'
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:31
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Item Details"
+msgstr ""
+
+#. Label of the item_group (Link) field in DocType 'POS Invoice Item'
+#. Label of the item_group (Link) field in DocType 'POS Item Group'
+#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule'
+#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Pricing
+#. Rule'
+#. Label of the other_item_group (Link) field in DocType 'Pricing Rule'
+#. Label of the item_group (Link) field in DocType 'Pricing Rule Item Group'
+#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme'
+#. Option for the 'Apply Rule On Other' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the other_item_group (Link) field in DocType 'Promotional Scheme'
+#. Label of the item_group (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the item_group (Link) field in DocType 'Sales Invoice Item'
+#. Label of the item_group (Link) field in DocType 'Tax Rule'
+#. Label of the item_group (Link) field in DocType 'Purchase Order Item'
+#. Label of the item_group (Link) field in DocType 'Request for Quotation Item'
+#. Label of the item_group (Link) field in DocType 'Supplier Quotation Item'
+#. Label of a Link in the Buying Workspace
+#. Label of the item_group (Link) field in DocType 'Opportunity Item'
+#. Label of the item_group (Link) field in DocType 'BOM Creator'
+#. Label of the item_group (Link) field in DocType 'BOM Creator Item'
+#. Label of the item_group (Link) field in DocType 'Job Card Item'
+#. Option for the 'Restrict Items Based On' (Select) field in DocType 'Party
+#. Specific Item'
+#. Label of the item_group (Link) field in DocType 'Quotation Item'
+#. Label of the item_group (Link) field in DocType 'Sales Order Item'
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Customer or Item' (Select) field in DocType 'Authorization
+#. Rule'
+#. Name of a DocType
+#. Label of the item_group (Link) field in DocType 'Target Detail'
+#. Label of the item_group (Link) field in DocType 'Website Item Group'
+#. Label of the item_group (Link) field in DocType 'Delivery Note Item'
+#. Label of the item_group (Link) field in DocType 'Item'
+#. Label of the item_group (Link) field in DocType 'Material Request Item'
+#. Label of the item_group (Data) field in DocType 'Pick List Item'
+#. Label of the item_group (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the item_group (Link) field in DocType 'Serial and Batch Bundle'
+#. Label of the item_group (Link) field in DocType 'Serial No'
+#. Label of the item_group (Link) field in DocType 'Stock Closing Balance'
+#. Label of the item_group (Data) field in DocType 'Stock Entry Detail'
+#. Label of the item_group (Link) field in DocType 'Stock Reconciliation Item'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/gross_profit/gross_profit.js:44
+#: erpnext/accounts/report/gross_profit/gross_profit.py:325
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:21
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:28
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:28
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:162
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:65
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:181
+#: erpnext/accounts/report/purchase_register/purchase_register.js:58
+#: erpnext/accounts/report/sales_register/sales_register.js:70
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:30
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:40
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:128
+#: erpnext/public/js/purchase_trends_filters.js:49
+#: erpnext/public/js/sales_trends_filters.js:24
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:212
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.js:30
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:36
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:54
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:89
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:41
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:35
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:41
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:94
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/target_detail/target_detail.json
+#: erpnext/setup/doctype/website_item_group/website_item_group.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/page/stock_balance/stock_balance.js:35
+#: erpnext/stock/report/cogs_by_item_group/cogs_by_item_group.py:43
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:48
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:48
+#: erpnext/stock/report/item_prices/item_prices.py:52
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.js:20
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
+#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
+#: erpnext/stock/report/stock_balance/stock_balance.js:32
+#: erpnext/stock/report/stock_balance/stock_balance.py:482
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:99
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json
+msgid "Item Group"
+msgstr "품목 그룹"
+
+#. Label of the item_group_defaults (Table) field in DocType 'Item Group'
+#: erpnext/setup/doctype/item_group/item_group.json
+msgid "Item Group Defaults"
+msgstr ""
+
+#. Label of the item_group_name (Data) field in DocType 'Item Group'
+#: erpnext/setup/doctype/item_group/item_group.json
+msgid "Item Group Name"
+msgstr "품목 그룹 이름"
+
+#: erpnext/setup/doctype/item_group/item_group.js:82
+msgid "Item Group Tree"
+msgstr "항목 그룹 트리"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:525
+msgid "Item Group not mentioned in item master for item {0}"
+msgstr ""
+
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Item Group wise Discount"
+msgstr ""
+
+#. Label of the item_groups (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Item Groups"
+msgstr "품목 그룹"
+
+#. Description of the 'Website Image' (Attach Image) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Item Image (if not slideshow)"
+msgstr ""
+
+#. Label of the item_information_section (Section Break) field in DocType
+#. 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Item Information"
+msgstr "품목 정보"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Item Lead Time"
+msgstr ""
+
+#. Label of the locations (Table) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Item Locations"
+msgstr "품목 위치"
+
+#. Name of a role
+#: erpnext/setup/doctype/brand/brand.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/uom_category/uom_category.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/doctype/warehouse_type/warehouse_type.json
+msgid "Item Manager"
+msgstr "아이템 관리자"
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Item Manufacturer"
+msgstr "품목 제조업체"
+
+#. Label of the item_name (Data) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#. Label of the item_name (Data) field in DocType 'POS Invoice Item'
+#. Label of the item_name (Data) field in DocType 'Purchase Invoice Item'
+#. Label of the item_name (Data) field in DocType 'Sales Invoice Item'
+#. Label of the item_name (Read Only) field in DocType 'Asset'
+#. Label of the item_name (Data) field in DocType 'Asset Capitalization Asset
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Asset Capitalization Service
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance'
+#. Label of the item_name (Read Only) field in DocType 'Asset Maintenance Log'
+#. Label of the item_name (Data) field in DocType 'Purchase Order Item'
+#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the item_name (Data) field in DocType 'Request for Quotation Item'
+#. Label of the item_name (Data) field in DocType 'Supplier Quotation Item'
+#. Label of the item_name (Data) field in DocType 'Opportunity Item'
+#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Detail'
+#. Label of the item_name (Data) field in DocType 'Maintenance Schedule Item'
+#. Label of the item_name (Data) field in DocType 'Maintenance Visit Purpose'
+#. Label of the item_name (Data) field in DocType 'Blanket Order Item'
+#. Label of the item_name (Data) field in DocType 'BOM'
+#. Label of the item_name (Data) field in DocType 'BOM Creator'
+#. Label of the item_name (Data) field in DocType 'BOM Creator Item'
+#. Label of the item_name (Data) field in DocType 'BOM Explosion Item'
+#. Label of the item_name (Data) field in DocType 'BOM Item'
+#. Label of the item_name (Data) field in DocType 'BOM Secondary Item'
+#. Label of the item_name (Data) field in DocType 'BOM Website Item'
+#. Label of the item_name (Read Only) field in DocType 'Job Card'
+#. Label of the item_name (Data) field in DocType 'Job Card Item'
+#. Label of the item_name (Data) field in DocType 'Master Production Schedule
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Material Request Plan Item'
+#. Label of the item_name (Data) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Sales Forecast Item'
+#. Label of the item_name (Data) field in DocType 'Work Order'
+#. Label of the item_name (Data) field in DocType 'Work Order Item'
+#. Label of the item_name (Data) field in DocType 'Quotation Item'
+#. Label of the item_name (Data) field in DocType 'Sales Order Item'
+#. Label of the item_name (Data) field in DocType 'Batch'
+#. Label of the item_name (Data) field in DocType 'Delivery Note Item'
+#. Label of the item_name (Data) field in DocType 'Item'
+#. Label of the item_name (Read Only) field in DocType 'Item Alternative'
+#. Label of the item_name (Data) field in DocType 'Item Lead Time'
+#. Label of the item_name (Data) field in DocType 'Item Manufacturer'
+#. Label of the item_name (Data) field in DocType 'Item Price'
+#. Label of the item_name (Data) field in DocType 'Material Request Item'
+#. Label of the item_name (Data) field in DocType 'Packed Item'
+#. Label of the item_name (Data) field in DocType 'Packing Slip Item'
+#. Label of the item_name (Data) field in DocType 'Pick List Item'
+#. Label of the item_name (Data) field in DocType 'Purchase Receipt Item'
+#. Label of the item_name (Data) field in DocType 'Putaway Rule'
+#. Label of the item_name (Data) field in DocType 'Quality Inspection'
+#. Label of the item_name (Data) field in DocType 'Quick Stock Balance'
+#. Label of the item_name (Data) field in DocType 'Serial and Batch Bundle'
+#. Label of the item_name (Data) field in DocType 'Serial No'
+#. Label of the item_name (Data) field in DocType 'Stock Closing Balance'
+#. Label of the item_name (Data) field in DocType 'Stock Entry Detail'
+#. Label of the item_name (Data) field in DocType 'Stock Reconciliation Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Order Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Order Service
+#. Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt Item'
+#. Label of the item_name (Data) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#. Label of the item_name (Data) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:74
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:71
+#: erpnext/accounts/report/gross_profit/gross_profit.py:319
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:33
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:154
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:173
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:71
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization_asset_item/asset_capitalization_asset_item.json
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:744
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:34
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:204
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:101
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:8
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:66
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:109
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:106
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:158
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:959
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:995
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:153
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
+#: 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:2835
+#: erpnext/public/js/utils.js:826
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1324
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:35
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:34
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:25
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/available_batch_report/available_batch_report.py:32
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:99
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:33
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:77
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:153
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:24
+#: erpnext/stock/report/item_prices/item_prices.py:51
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:143
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:58
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
+#: erpnext/stock/report/stock_balance/stock_balance.py:480
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:98
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Item Name"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:412
+msgid "Item Name is required."
+msgstr ""
+
+#. Label of the item_naming_by (Select) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Item Naming By"
+msgstr "항목 이름 지정 기준"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:453
+msgid "Item Out of Stock"
+msgstr "해당 상품 품절"
+
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Selling Workspace
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Item Price"
+msgstr "상품 가격"
+
+#. Label of the item_price_settings_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Item Price Settings"
+msgstr "품목 가격 설정"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/item_price_stock/item_price_stock.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Price Stock"
+msgstr "품목 가격 재고"
+
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr "가격표에 {0} 항목의 가격이 추가되었습니다 - {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 "품목 가격은 가격표, 공급업체/고객, 통화, 품목, 배치, 단위, 수량 및 날짜에 따라 여러 번 표시됩니다."
+
+#: erpnext/stock/doctype/item/item.py:182
+msgid "Item Price created at rate {0}"
+msgstr ""
+
+#: erpnext/stock/get_item_details.py:1138
+msgid "Item Price updated for {0} in Price List {1}"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#: erpnext/stock/report/item_prices/item_prices.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Item Prices"
+msgstr "품목 가격"
+
+#. Name of a DocType
+#. Label of the item_quality_inspection_parameter (Table) field in DocType
+#. 'Quality Inspection Template'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+msgid "Item Quality Inspection Parameter"
+msgstr "품목 품질 검사 매개변수"
+
+#. Label of the item_reference (Link) field in DocType 'Maintenance Schedule
+#. Detail'
+#. Label of the item_reference (Data) field in DocType 'Production Plan Item'
+#. Label of the item_reference (Data) field in DocType 'Production Plan Item
+#. Reference'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json
+msgid "Item Reference"
+msgstr "품목 참조"
+
+#. Name of a DocType
+#. Label of the item_reorder_section (Section Break) field in DocType 'Material
+#. Request Item'
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Item Reorder"
+msgstr ""
+
+#. Label of the item_row (Data) field in DocType 'Item Wise Tax Detail'
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+msgid "Item Row"
+msgstr "항목 행"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:170
+msgid "Item Row {0}: {1} {2} does not exist in above '{1}' table"
+msgstr ""
+
+#. Label of the item_serial_no (Link) field in DocType 'Quality Inspection'
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Item Serial No"
+msgstr "품목 일련 번호"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Shortage Report"
+msgstr "품목 부족 보고서"
+
+#. Label of the supplier_items (Table) field in DocType 'Item'
+#. Name of a DocType
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_supplier/item_supplier.json
+msgid "Item Supplier"
+msgstr ""
+
+#. Label of the sec_break_taxes (Section Break) field in DocType 'Item Group'
+#. Name of a DocType
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/stock/doctype/item_tax/item_tax.json
+msgid "Item Tax"
+msgstr "품목 세금"
+
+#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the item_tax_amount (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Item Tax Amount Included in Value"
+msgstr ""
+
+#. Label of the item_tax_rate (Small Text) field in DocType 'POS Invoice Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Purchase Invoice Item'
+#. Label of the item_tax_rate (Small Text) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Purchase Order Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Supplier Quotation Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Quotation Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Sales Order Item'
+#. Label of the item_tax_rate (Small Text) field in DocType 'Delivery Note
+#. Item'
+#. Label of the item_tax_rate (Code) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Item Tax Rate"
+msgstr ""
+
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:68
+msgid "Item Tax Row {0} must have account of type Tax or Income or Expense or Chargeable"
+msgstr ""
+
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:55
+msgid "Item Tax Row {0}: Account must belong to Company - {1}"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the item_tax_template (Link) field in DocType 'POS Invoice Item'
+#. Label of the item_tax_template (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the item_tax_template (Link) field in DocType 'Sales Invoice Item'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the item_tax_template (Link) field in DocType 'Purchase Order Item'
+#. Label of the item_tax_template (Link) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the item_tax_template (Link) field in DocType 'Quotation Item'
+#. Label of the item_tax_template (Link) field in DocType 'Sales Order Item'
+#. Label of the item_tax_template (Link) field in DocType 'Delivery Note Item'
+#. Label of the item_tax_template (Link) field in DocType 'Item Tax'
+#. Label of the item_tax_template (Link) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item_tax/item_tax.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Item Tax Template"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json
+msgid "Item Tax Template Detail"
+msgstr ""
+
+#. Label of the production_item (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Item To Manufacture"
+msgstr "제조할 품목"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/item_variant/item_variant.json
+msgid "Item Variant"
+msgstr "아이템 변형"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Item Variant Attribute"
+msgstr "품목 변형 속성"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/item_variant_details/item_variant_details.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Variant Details"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/item/item.js:209
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Item Variant Settings"
+msgstr "품목 변형 설정"
+
+#: erpnext/stock/doctype/item/item.js:991
+msgid "Item Variant {0} already exists with same attributes"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:852
+msgid "Item Variants updated"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.py:87
+msgid "Item Warehouse based reposting has been enabled."
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
+msgid "Item Website Specification"
+msgstr "품목 웹사이트 사양"
+
+#. Label of the section_break_18 (Section Break) field in DocType 'POS Invoice
+#. Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the section_break_18 (Section Break) field in DocType 'Sales
+#. Invoice Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Purchase
+#. Order Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Quotation
+#. Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Sales
+#. Order Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Delivery
+#. Note Item'
+#. Label of the item_weight_details (Section Break) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Item Weight Details"
+msgstr ""
+
+#. Label of a Link in the Buying Workspace
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Item Wise Consumption"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+msgid "Item Wise Tax Detail"
+msgstr ""
+
+#. Label of the item_wise_tax_details (Table) field in DocType 'POS Invoice'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase
+#. Invoice'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Invoice'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase Order'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Supplier
+#. Quotation'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Quotation'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Sales Order'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Delivery Note'
+#. Label of the item_wise_tax_details (Table) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Item Wise Tax Details"
+msgstr ""
+
+#: erpnext/controllers/taxes_and_totals.py:556
+msgid "Item Wise Tax Details do not match with Taxes and Charges at the following rows:"
+msgstr ""
+
+#. Label of the section_break_rrrx (Section Break) field in DocType 'Sales
+#. Forecast'
+#. Label of the item_and_warehouse_section (Section Break) field in DocType
+#. 'Bin'
+#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation'
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Item and Warehouse"
+msgstr "품목 및 창고"
+
+#. Label of the issue_details (Section Break) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Item and Warranty Details"
+msgstr "제품 및 보증 정보"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
+msgid "Item for row {0} does not match Material Request"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:911
+msgid "Item has variants."
+msgstr "해당 아이템에는 여러 종류가 있습니다."
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:436
+msgid "Item is mandatory in Raw Materials table."
+msgstr "해당 품목은 원자재 표에서 필수 항목입니다."
+
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:111
+msgid "Item is removed since no serial / batch no selected."
+msgstr "일련번호/배치번호가 선택되지 않았으므로 해당 품목이 삭제되었습니다."
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:166
+msgid "Item must be added using 'Get Items from Purchase Receipts' button"
+msgstr ""
+
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:41
+#: erpnext/selling/doctype/sales_order/sales_order.js:1719
+msgid "Item name"
+msgstr ""
+
+#. Label of the operation (Link) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Item operation"
+msgstr "항목 작동"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
+msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
+msgstr ""
+
+#. Label of the item (Link) field in DocType 'BOM'
+#. Label of the finished_good (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Item to Manufacture"
+msgstr "제조할 품목"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:27
+msgid "Item valuation rate is recalculated considering landed cost voucher amount"
+msgstr ""
+
+#: erpnext/stock/utils.py:543
+msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1068
+msgid "Item variant {0} exists with same attributes"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
+msgid "Item with name {0} not found in the Purchase Order"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:99
+msgid "Item {0} added multiple times under the same parent item {1} at rows {2} and {3}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:119
+msgid "Item {0} cannot be added as a sub-assembly of itself"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:197
+msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:344
+#: erpnext/stock/doctype/item/item.py:703
+msgid "Item {0} does not exist"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:716
+msgid "Item {0} does not exist in the system or has expired"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:562
+msgid "Item {0} does not exist."
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:856
+msgid "Item {0} entered multiple times."
+msgstr "항목 {0} 이 여러 번 입력되었습니다."
+
+#: erpnext/controllers/sales_and_purchase_return.py:221
+msgid "Item {0} has already been returned"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:346
+msgid "Item {0} has been disabled"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
+msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
+msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity."
+msgstr "품목 {0} 의 배송 수량에 변동이 없습니다. 수량 업데이트를 원하지 않으시면 해당 행의 선택을 해제해 주세요."
+
+#: erpnext/stock/doctype/item/item.py:1247
+msgid "Item {0} has reached its end of life on {1}"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:115
+msgid "Item {0} ignored since it is not a stock item"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:614
+msgid "Item {0} is already reserved/delivered against Sales Order {1}."
+msgstr "품목 {0} 은 이미 판매 주문 {1}에 대해 예약/배송되었습니다."
+
+#: erpnext/stock/doctype/item/item.py:1267
+msgid "Item {0} is cancelled"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1251
+msgid "Item {0} is disabled"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
+msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
+msgstr ""
+
+#: erpnext/selling/doctype/installation_note/installation_note.py:79
+msgid "Item {0} is not a serialized Item"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1259
+msgid "Item {0} is not a stock Item"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:958
+msgid "Item {0} is not a subcontracted item"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:869
+msgid "Item {0} is not a template item."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
+msgid "Item {0} is not active or end of life has been reached"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:348
+msgid "Item {0} must be a Fixed Asset Item"
+msgstr ""
+
+#: erpnext/stock/get_item_details.py:350
+msgid "Item {0} must be a Non-Stock Item"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:350
+msgid "Item {0} must be a non-stock item"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
+msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/item_price/item_price.py:56
+msgid "Item {0} not found."
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
+msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
+msgstr "품목 {0}: 주문 수량 {1} 은 최소 주문 수량 {2} (품목에 정의됨)보다 적을 수 없습니다."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:573
+msgid "Item {0}: {1} qty produced. "
+msgstr "품목 {0}: {1} 개 생산. "
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
+msgid "Item {} does not exist."
+msgstr ""
+
+#. Name of a report
+#: erpnext/stock/report/item_wise_price_list_rate/item_wise_price_list_rate.json
+msgid "Item-wise Price List Rate"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Item-wise Purchase History"
+msgstr ""
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Item-wise Purchase Register"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Item-wise Sales History"
+msgstr ""
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Item-wise Sales Register"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Item-wise sales Register"
+msgstr ""
+
+#: erpnext/stock/get_item_details.py:743
+msgid "Item/Item Code required to get Item Tax Template."
+msgstr "품목 세금 계산서를 받으려면 품목/품목 코드가 필요합니다."
+
+#: erpnext/manufacturing/doctype/bom/bom.py:453
+msgid "Item: {0} does not exist in the system"
+msgstr ""
+
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Items & Pricing"
+msgstr "품목 및 가격"
+
+#. Label of a Card Break in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Items Catalogue"
+msgstr "품목 목록"
+
+#: erpnext/stock/report/item_prices/item_prices.js:8
+msgid "Items Filter"
+msgstr "항목 필터"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
+#: erpnext/selling/doctype/sales_order/sales_order.js:1757
+msgid "Items Required"
+msgstr "필수 품목"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Items To Be Received"
+msgstr "수령할 물품"
+
+#. Label of a Link in the Buying Workspace
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/report/items_to_be_requested/items_to_be_requested.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Items To Be Requested"
+msgstr "요청할 품목"
+
+#. Label of a Card Break in the Selling Workspace
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Items and Pricing"
+msgstr "품목 및 가격"
+
+#: erpnext/controllers/accounts_controller.py:4243
+msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4236
+msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1517
+msgid "Items for Raw Material Request"
+msgstr "원자재 요청 품목"
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:110
+msgid "Items not found."
+msgstr "해당 항목을 찾을 수 없습니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
+msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
+msgstr ""
+
+#. Label of the items_to_be_repost (Code) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Items to Be Repost"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
+msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
+msgstr ""
+
+#. Label of a Link in the Buying Workspace
+#: erpnext/buying/workspace/buying/buying.json
+msgid "Items to Order and Receive"
+msgstr "주문 및 수령할 품목"
+
+#: erpnext/public/js/stock_reservation.js:72
+#: erpnext/selling/doctype/sales_order/sales_order.js:329
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:225
+msgid "Items to Reserve"
+msgstr "예약할 품목"
+
+#. Description of the 'Warehouse' (Link) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Items under this warehouse will be suggested"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:171
+msgid "Items {0} do not exist in the Item master."
+msgstr "품목 마스터에 {0} 이 존재하지 않습니다."
+
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Itemwise Discount"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Itemwise Recommended Reorder Level"
+msgstr ""
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "JAN"
+msgstr ""
+
+#. Label of the production_capacity (Int) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Job Capacity"
+msgstr ""
+
+#. Label of the job_card (Link) field in DocType 'Purchase Order Item'
+#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM'
+#. Name of a DocType
+#. Label of the job_card_section (Section Break) field in DocType 'Operation'
+#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work
+#. Order'
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the job_card (Link) field in DocType 'Material Request'
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Label of the job_card (Link) field in DocType 'Stock Entry'
+#. Label of the job_card (Link) field in DocType 'Subcontracting Order Item'
+#. Label of the job_card (Link) field in DocType 'Subcontracting Receipt Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Job Card"
+msgstr "작업 카드"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:167
+msgid "Job Card Analysis"
+msgstr "작업 카드 분석"
+
+#. Name of a DocType
+#. Label of the job_card_item (Data) field in DocType 'Material Request Item'
+#. Label of the job_card_item (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Job Card Item"
+msgstr "작업 카드 항목"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+msgid "Job Card Operation"
+msgstr "작업 카드 운영"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json
+msgid "Job Card Scheduled Time"
+msgstr "작업 카드 예정 시간"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+msgid "Job Card Secondary Item"
+msgstr "작업 카드 보조 항목"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Job Card Summary"
+msgstr "작업 카드 요약"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+msgid "Job Card Time Log"
+msgstr "작업 카드 시간 기록"
+
+#. Label of the job_card_section (Tab Break) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Job Card and Capacity Planning"
+msgstr "작업 지시서 및 용량 계획"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
+msgid "Job Card {0} has been completed"
+msgstr ""
+
+#. Label of the dashboard_tab (Tab Break) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Job Cards"
+msgstr "작업 카드"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:106
+msgid "Job Paused"
+msgstr "작업이 일시 중단되었습니다"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:64
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:17
+msgid "Job Started"
+msgstr "업무 시작"
+
+#. Label of the job_title (Data) field in DocType 'Lead'
+#. Label of the job_title (Data) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Job Title"
+msgstr "직책"
+
+#. Label of the supplier (Link) field in DocType 'Subcontracting Order'
+#. Label of the supplier (Link) field in DocType 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Job Worker"
+msgstr "직업 근로자"
+
+#. Label of the supplier_address (Link) field in DocType 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Job Worker Address"
+msgstr "근로자 주소"
+
+#. Label of the address_display (Text Editor) field in DocType 'Subcontracting
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Job Worker Address Details"
+msgstr "근로자 주소 정보"
+
+#. Label of the contact_person (Link) field in DocType 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Job Worker Contact"
+msgstr "직업 근로자 연락처"
+
+#. Label of the supplier_currency (Link) field in DocType 'Subcontracting
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Job Worker Currency"
+msgstr "직업 근로자 통화"
+
+#. Label of the supplier_delivery_note (Data) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Job Worker Delivery Note"
+msgstr "작업자 배송 메모"
+
+#. Label of the supplier_name (Data) field in DocType 'Subcontracting Order'
+#. Label of the supplier_name (Data) field in DocType 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Job Worker Name"
+msgstr "작업자 이름"
+
+#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting
+#. Order'
+#. Label of the supplier_warehouse (Link) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Job Worker Warehouse"
+msgstr "창고 작업자"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
+msgid "Job card {0} created"
+msgstr "작업 카드 {0} 생성됨"
+
+#: erpnext/utilities/bulk_transaction.py:76
+msgid "Job: {0} has been triggered for processing failed transactions"
+msgstr ""
+
+#. Label of the employment_details (Tab Break) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Joining"
+msgstr "합류"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Joule"
+msgstr "줄"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Joule/Meter"
+msgstr "줄/미터"
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:30
+msgid "Journal Entries"
+msgstr "일지 항목"
+
+#: erpnext/accounts/utils.py:1067
+msgid "Journal Entries {0} are un-linked"
+msgstr ""
+
+#. Name of a DocType
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#. Option for the 'Invoice Type' (Select) field in DocType 'Payment
+#. Reconciliation Invoice'
+#. Label of a Link in the Invoicing Workspace
+#. Group in Asset's connections
+#. Label of the journal_entry (Link) field in DocType 'Asset Value Adjustment'
+#. Label of the journal_entry (Link) field in DocType 'Depreciation Schedule'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/print_format/journal_auditing_voucher/journal_auditing_voucher.html:10
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/assets/doctype/asset/asset.js:385
+#: erpnext/assets/doctype/asset/asset.js:394
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+#: erpnext/templates/form_grid/bank_reconciliation_grid.html:3
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Journal Entry"
+msgstr "일지 항목"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Journal Entry Account"
+msgstr "회계 전표 입력"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Journal Entry Template"
+msgstr "일지 입력 양식"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json
+msgid "Journal Entry Template Account"
+msgstr "회계 전표 입력 양식 계정"
+
+#. Label of the voucher_type (Select) field in DocType 'Journal Entry Template'
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Journal Entry Type"
+msgstr "저널 입력 유형"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:558
+msgid "Journal Entry for Asset scrapping cannot be cancelled. Please restore the Asset."
+msgstr "자산 폐기에 대한 회계 전표는 취소할 수 없습니다. 자산을 복원하십시오."
+
+#. Label of the journal_entry_for_scrap (Link) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Journal Entry for Scrap"
+msgstr "스크랩에 대한 일지 항목"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:351
+msgid "Journal Entry type should be set as Depreciation Entry for asset depreciation"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:728
+msgid "Journal Entry {0} does not have account {1} or already matched against other voucher"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:394
+msgid "Journal Template Accounts"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:97
+msgid "Journal entries have been created"
+msgstr ""
+
+#. Label of the journals_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Journals"
+msgstr "저널"
+
+#. Description of a DocType
+#: erpnext/crm/doctype/campaign/campaign.json
+msgid "Keep Track of Sales Campaigns. Keep track of Leads, Quotations, Sales Order etc from Campaigns to gauge Return on Investment. "
+msgstr "영업 캠페인을 추적하세요. 캠페인을 통해 확보한 잠재 고객, 견적, 판매 주문 등을 추적하여 투자 수익률을 측정하세요. "
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kelvin"
+msgstr ""
+
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Card Break in the Selling Workspace
+#. Label of a Card Break in the Stock Workspace
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Key Reports"
+msgstr "주요 보고서"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kg"
+msgstr "킬로그램"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kiloampere"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilocalorie"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilocoulomb"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilogram-Force"
+msgstr "킬로그램 힘"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilogram/Cubic Centimeter"
+msgstr "킬로그램/입방센티미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilogram/Cubic Meter"
+msgstr "킬로그램/입방미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilogram/Litre"
+msgstr "킬로그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilohertz"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilojoule"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilometer"
+msgstr "킬로미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilometer/Hour"
+msgstr "킬로미터/시간"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilopascal"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilopond"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilopound-Force"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilowatt"
+msgstr "킬로와트"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kilowatt-Hour"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
+msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
+msgstr "먼저 작업 지시서 {0}에 대한 제조 항목을 취소해 주십시오."
+
+#: erpnext/public/js/utils/party.js:269
+msgid "Kindly select the company first"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Kip"
+msgstr "자다"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Knot"
+msgstr "매듭"
+
+#. Option for the 'Default Stock Valuation Method' (Select) field in DocType
+#. 'Company'
+#. Option for the 'Valuation Method' (Select) field in DocType 'Item'
+#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock
+#. Settings'
+#. Option for the 'Pick Serial / Batch Based On' (Select) field in DocType
+#. 'Stock Settings'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "LIFO"
+msgstr "LIFO"
+
+#. Label of the taxes (Table) field in DocType 'Landed Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Landed Cost"
+msgstr "착륙 비용"
+
+#. Label of the landed_cost_help (HTML) field in DocType 'Landed Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Landed Cost Help"
+msgstr ""
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:18
+msgid "Landed Cost Id"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+msgid "Landed Cost Item"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+msgid "Landed Cost Purchase Receipt"
+msgstr ""
+
+#. Name of a report
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.json
+msgid "Landed Cost Report"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Landed Cost Taxes and Charges"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json
+msgid "Landed Cost Vendor Invoice"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:652
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:88
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Landed Cost Voucher"
+msgstr ""
+
+#. Label of the landed_cost_voucher_amount (Currency) field in DocType
+#. 'Purchase Invoice Item'
+#. Label of the landed_cost_voucher_amount (Currency) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the landed_cost_voucher_amount (Currency) field in DocType 'Stock
+#. Entry Detail'
+#. Label of the landed_cost_voucher_amount (Currency) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Landed Cost Voucher Amount"
+msgstr ""
+
+#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Lapsed"
+msgstr "지나간"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:274
+msgid "Large"
+msgstr "크기가 큰"
+
+#. Label of the carbon_check_date (Date) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Last Carbon Check"
+msgstr "마지막 탄소 검사"
+
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:46
+msgid "Last Communication"
+msgstr "최근 연락"
+
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:52
+msgid "Last Communication Date"
+msgstr "마지막 연락 날짜"
+
+#. Label of the last_completion_date (Date) field in DocType 'Asset Maintenance
+#. Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Last Completion Date"
+msgstr "최종 완료일"
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:81
+msgid "Last Fiscal Year"
+msgstr "지난 회계연도"
+
+#: erpnext/accounts/doctype/account/account.py:670
+msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
+msgstr "마지막 GL 항목 업데이트는 {} 시간에 완료되었습니다. 시스템이 활성화된 상태에서는 이 작업을 수행할 수 없습니다. 5분 후에 다시 시도해 주십시오."
+
+#. Label of the last_integration_date (Date) field in DocType 'Bank Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Last Integration Date"
+msgstr "최종 통합 날짜"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:138
+msgid "Last Month Downtime Analysis"
+msgstr "지난달 가동 중단 시간 분석"
+
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:81
+msgid "Last Order Amount"
+msgstr "최종 주문 금액"
+
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:44
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:82
+msgid "Last Order Date"
+msgstr "최종 주문일"
+
+#. Label of the last_purchase_rate (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM'
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
+#. Creator'
+#. Label of the last_purchase_rate (Float) field in DocType 'Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:123
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/report/item_prices/item_prices.py:56
+msgid "Last Purchase Rate"
+msgstr "최근 구매 가격"
+
+#. Label of the last_scanned_warehouse (Data) field in DocType 'POS Invoice'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase
+#. Invoice'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Invoice'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase Order'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Quotation'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Sales Order'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Delivery Note'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Material
+#. Request'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Purchase
+#. Receipt'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock Entry'
+#. Label of the last_scanned_warehouse (Data) field in DocType 'Stock
+#. Reconciliation'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Last Scanned Warehouse"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:331
+msgid "Last Stock Transaction for item {0} under warehouse {1} was on {2}."
+msgstr "창고 {1} 에 있는 품목 {0} 의 마지막 재고 거래는 {2}에 있었습니다."
+
+#: banking/src/components/features/BankReconciliation/BankPicker.tsx:128
+msgid "Last Synced Transaction"
+msgstr ""
+
+#: erpnext/setup/doctype/vehicle/vehicle.py:46
+msgid "Last carbon check date cannot be a future date"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1025
+msgid "Last transacted"
+msgstr "최근 거래"
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
+msgid "Latest"
+msgstr "최신"
+
+#: erpnext/stock/report/stock_balance/stock_balance.py:596
+msgid "Latest Age"
+msgstr "최신 연령"
+
+#. Label of the latitude (Float) field in DocType 'Location'
+#. Label of the lat (Float) field in DocType 'Delivery Stop'
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Latitude"
+msgstr "위도"
+
+#. Label of the section_break_5 (Section Break) field in DocType 'CRM Settings'
+#. Option for the 'Email Campaign For ' (Select) field in DocType 'Email
+#. Campaign'
+#. Name of a DocType
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#. Label of the lead (Link) field in DocType 'Prospect Lead'
+#. Label of the lead_name (Link) field in DocType 'Customer'
+#. Label of a Link in the Home Workspace
+#. Label of the lead (Link) field in DocType 'Issue'
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+#: erpnext/crm/doctype/email_campaign/email_campaign.json
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/prospect_lead/prospect_lead.json
+#: erpnext/crm/report/lead_details/lead_details.js:33
+#: erpnext/crm/report/lead_details/lead_details.py:18
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:8
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:28
+#: erpnext/public/js/communication.js:25
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/support/doctype/issue/issue.json erpnext/workspace_sidebar/crm.json
+msgid "Lead"
+msgstr "선두"
+
+#: erpnext/crm/doctype/lead/lead.py:563
+msgid "Lead -> Prospect"
+msgstr ""
+
+#. Name of a report
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.json
+msgid "Lead Conversion Time"
+msgstr ""
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:20
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:26
+msgid "Lead Count"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/lead_details/lead_details.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Lead Details"
+msgstr ""
+
+#. Label of the lead_name (Data) field in DocType 'Prospect Lead'
+#: erpnext/crm/doctype/prospect_lead/prospect_lead.json
+#: erpnext/crm/report/lead_details/lead_details.py:24
+msgid "Lead Name"
+msgstr ""
+
+#. Label of the lead_owner (Link) field in DocType 'Lead'
+#. Label of the lead_owner (Data) field in DocType 'Prospect Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/prospect_lead/prospect_lead.json
+#: erpnext/crm/report/lead_details/lead_details.py:28
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:21
+msgid "Lead Owner"
+msgstr "대표 소유자"
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Lead Owner Efficiency"
+msgstr ""
+
+#: erpnext/crm/doctype/lead/lead.py:178
+msgid "Lead Owner cannot be same as the Lead Email Address"
+msgstr ""
+
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Lead Source"
+msgstr ""
+
+#. Label of the cumulative_lead_time (Int) field in DocType 'Master Production
+#. Schedule Item'
+#. Label of the lead_time (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1073
+#: erpnext/stock/doctype/item/item_dashboard.py:35
+msgid "Lead Time"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:264
+msgid "Lead Time (Days)"
+msgstr "소요 기간(일)"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:267
+msgid "Lead Time (in mins)"
+msgstr "소요 시간(분)"
+
+#. Label of the lead_time_date (Date) field in DocType 'Material Request Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Lead Time Date"
+msgstr ""
+
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:59
+msgid "Lead Time Days"
+msgstr ""
+
+#. Label of the lead_time_days (Int) field in DocType 'Item'
+#. Label of the lead_time_days (Int) field in DocType 'Item Price'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_price/item_price.json
+msgid "Lead Time in days"
+msgstr ""
+
+#. Label of the type (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Lead Type"
+msgstr ""
+
+#: erpnext/crm/doctype/lead/lead.py:562
+msgid "Lead {0} has been added to prospect {1}."
+msgstr ""
+
+#. Label of the leads_section (Tab Break) field in DocType 'Prospect'
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Leads"
+msgstr ""
+
+#: erpnext/utilities/activation.py:78
+msgid "Leads help you get business, add all your contacts and more as your leads"
+msgstr ""
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Learn Asset'
+#: erpnext/assets/onboarding_step/learn_asset/learn_asset.json
+msgid "Learn Asset"
+msgstr "학습 자산"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Learn Subcontracting'
+#: erpnext/subcontracting/onboarding_step/learn_subcontracting/learn_subcontracting.json
+msgid "Learn Subcontracting"
+msgstr "하청 계약에 대해 알아보세요"
+
+#. Description of the 'Enable Common Party Accounting' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Learn about Common Party "
+msgstr "공통당 에 대해 알아보세요"
+
+#. Label of the leave_encashed (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Leave Encashed?"
+msgstr "현금으로 인출하시겠습니까?"
+
+#. Description of the 'Success Redirect URL' (Data) field in DocType
+#. 'Appointment Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Leave blank for home.\n"
+"This is relative to site URL, for example \"about\" will redirect to \"https://yoursitename.com/about\""
+msgstr ""
+
+#. Description of the 'Release Date' (Date) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Leave blank if the Supplier is blocked indefinitely"
+msgstr ""
+
+#. Description of the 'Dispatch Notification Attachment' (Link) field in
+#. DocType 'Delivery Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Leave blank to use the standard Delivery Note format"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+msgid "Ledger Health"
+msgstr "레저 헬스"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+msgid "Ledger Health Monitor"
+msgstr "원장 상태 모니터"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/ledger_health_monitor_company/ledger_health_monitor_company.json
+msgid "Ledger Health Monitor Company"
+msgstr "레저 헬스 모니터 회사"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+msgid "Ledger Merge"
+msgstr "원장 병합"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json
+msgid "Ledger Merge Accounts"
+msgstr "원장 계정 병합"
+
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:146
+msgid "Ledger Type"
+msgstr "원장 유형"
+
+#. Label of a Card Break in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Ledgers"
+msgstr "장부"
+
+#. Label of the vouchers_posted (Int) field in DocType 'Repost Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Ledgers Posted"
+msgstr ""
+
+#. Label of the left_child (Link) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Left Child"
+msgstr "왼쪽 아이"
+
+#. Label of the lft (Int) field in DocType 'Quality Procedure'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Left Index"
+msgstr "왼쪽 인덱스"
+
+#. Label of the legacy_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Legacy Fields"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/setup/doctype/company/company.json
+msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
+msgid "Legal Expenses"
+msgstr "법률 비용"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
+msgid "Legend"
+msgstr "전설"
+
+#. Label of the length (Float) field in DocType 'Shipment Parcel'
+#. Label of the length (Float) field in DocType 'Shipment Parcel Template'
+#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Length (cm)"
+msgstr "길이(cm)"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
+msgid "Less Than Amount"
+msgstr "금액 미만"
+
+#. Description of the 'Body Text' (Text Editor) field in DocType 'Dunning
+#. Letter Text'
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Letter or Email Body Text"
+msgstr "편지 또는 이메일 본문"
+
+#. Description of the 'Closing Text' (Text Editor) field in DocType 'Dunning
+#. Letter Text'
+#: erpnext/accounts/doctype/dunning_letter_text/dunning_letter_text.json
+msgid "Letter or Email Closing Text"
+msgstr "편지 또는 이메일 마무리 문구"
+
+#. Label of the bom_level (Int) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Level (BOM)"
+msgstr "레벨(BOM)"
+
+#. Label of the lft (Int) field in DocType 'Account'
+#. Label of the lft (Int) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Lft"
+msgstr "좌측"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:253
+msgid "Liabilities"
+msgstr "부채"
+
+#. Option for the 'Root Type' (Select) field in DocType 'Account'
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
+#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/report/account_balance/account_balance.js:26
+msgid "Liability"
+msgstr "책임"
+
+#. Label of the license_details (Section Break) field in DocType 'Driver'
+#: erpnext/setup/doctype/driver/driver.json
+msgid "License Details"
+msgstr "라이선스 세부 정보"
+
+#. Label of the license_number (Data) field in DocType 'Driver'
+#: erpnext/setup/doctype/driver/driver.json
+msgid "License Number"
+msgstr "라이선스 번호"
+
+#. Label of the license_plate (Data) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "License Plate"
+msgstr "번호판"
+
+#: erpnext/controllers/status_updater.py:499
+msgid "Limit Crossed"
+msgstr "한계를 넘어섰습니다"
+
+#. Label of the limit_reposting_timeslot (Check) field in DocType 'Stock
+#. Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Limit timeslot for Stock Reposting"
+msgstr ""
+
+#. Description of the 'Short Name' (Data) field in DocType 'Manufacturer'
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+msgid "Limited to 12 characters"
+msgstr ""
+
+#. Label of the limits_dont_apply_on (Select) field in DocType 'Stock Reposting
+#. Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Limits don't apply on"
+msgstr ""
+
+#. Label of the reference_code (Data) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Line Reference"
+msgstr "라인 참조"
+
+#. Label of the amt_in_words_line_spacing (Float) field in DocType 'Cheque
+#. Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Line spacing for amount in words"
+msgstr "금액을 글자로 표시할 때 줄 간격"
+
+#. Label of the link_options_sb (Section Break) field in DocType 'Support
+#. Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Link Options"
+msgstr "링크 옵션"
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:15
+msgid "Link a new bank account"
+msgstr "새 은행 계좌를 연결하세요"
+
+#. Description of the 'Sub Procedure' (Link) field in DocType 'Quality
+#. Procedure Process'
+#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json
+msgid "Link existing Quality Procedure."
+msgstr "기존 품질 관리 절차를 연결하세요."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:555
+msgid "Link to Material Request"
+msgstr "자재 요청 링크"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:452
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:80
+msgid "Link to Material Requests"
+msgstr "자재 요청 링크"
+
+#: erpnext/buying/doctype/supplier/supplier.js:125
+msgid "Link with Customer"
+msgstr "고객과 소통하기"
+
+#: erpnext/selling/doctype/customer/customer.js:203
+msgid "Link with Supplier"
+msgstr ""
+
+#. Label of the linked_docs_section (Section Break) field in DocType
+#. 'Appointment'
+#: erpnext/crm/doctype/appointment/appointment.json
+msgid "Linked Documents"
+msgstr "연결된 문서"
+
+#. Label of the section_break_12 (Section Break) field in DocType 'POS Closing
+#. Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "Linked Invoices"
+msgstr "연동된 송장"
+
+#. Name of a DocType
+#: erpnext/assets/doctype/linked_location/linked_location.json
+msgid "Linked Location"
+msgstr "연결된 위치"
+
+#: erpnext/stock/doctype/item/item.py:1120
+msgid "Linked with submitted documents"
+msgstr "제출된 문서와 연결됨"
+
+#: erpnext/buying/doctype/supplier/supplier.js:210
+#: erpnext/selling/doctype/customer/customer.js:283
+msgid "Linking Failed"
+msgstr "연결 실패"
+
+#: erpnext/buying/doctype/supplier/supplier.js:209
+msgid "Linking to Customer Failed. Please try again."
+msgstr "고객 연결에 실패했습니다. 다시 시도해 주세요."
+
+#: erpnext/selling/doctype/customer/customer.js:282
+msgid "Linking to Supplier Failed. Please try again."
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:150
+msgid "Liquidity Ratios"
+msgstr "유동성 비율"
+
+#. Description of the 'Items' (Section Break) field in DocType 'Product Bundle'
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+msgid "List items that form the package."
+msgstr "패키지를 구성하는 품목들을 나열하세요."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Litre"
+msgstr "리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Litre-Atmosphere"
+msgstr "리터-기압"
+
+#. Label of the load_criteria (Button) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Load All Criteria"
+msgstr "모든 조건을 불러오기"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:68
+msgid "Loading Invoices! Please Wait..."
+msgstr "송장 불러오는 중입니다! 잠시 기다려주세요..."
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Loan"
+msgstr "대출"
+
+#. Label of the loan_end_date (Date) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Loan End Date"
+msgstr "대출 만기일"
+
+#. Label of the loan_period (Int) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Loan Period (Days)"
+msgstr "대출 기간(일)"
+
+#. Label of the loan_start_date (Date) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Loan Start Date"
+msgstr "대출 시작일"
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:61
+msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+msgid "Loans (Liabilities)"
+msgstr "대출(부채)"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:25
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:36
+msgid "Loans and Advances (Assets)"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:210
+msgid "Local"
+msgstr "현지의"
+
+#. Label of the sb_location_details (Section Break) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Location Details"
+msgstr "위치 정보"
+
+#. Label of the location_name (Data) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Location Name"
+msgstr "위치 이름"
+
+#. Label of the locked (Check) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Locked"
+msgstr "잠김"
+
+#. Label of the log_entries (Int) field in DocType 'Bulk Transaction Log'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json
+msgid "Log Entries"
+msgstr "로그 항목"
+
+#. Description of a DocType
+#: erpnext/stock/doctype/item_price/item_price.json
+msgid "Log the selling and buying rate of an Item"
+msgstr ""
+
+#. Label of the logo (Attach) field in DocType 'Sales Partner'
+#. Label of the logo (Attach Image) field in DocType 'Manufacturer'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+msgid "Logo"
+msgstr "심벌 마크"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
+msgid "Long-term Provisions"
+msgstr "장기 조항"
+
+#. Label of the longitude (Float) field in DocType 'Location'
+#. Label of the lng (Float) field in DocType 'Delivery Stop'
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Longitude"
+msgstr "경도"
+
+#. Option for the 'Status' (Select) field in DocType 'Opportunity'
+#. Option for the 'Status' (Select) field in DocType 'Quotation'
+#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment'
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:7
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/quotation/quotation_list.js:36
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Lost"
+msgstr "잃어버린"
+
+#. Name of a report
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.json
+msgid "Lost Opportunity"
+msgstr "놓쳐버린 기회"
+
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/report/lead_details/lead_details.js:38
+msgid "Lost Quotation"
+msgstr "잃어버린 견적"
+
+#. Name of a report
+#: erpnext/selling/report/lost_quotations/lost_quotations.json
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:31
+msgid "Lost Quotations"
+msgstr ""
+
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:37
+msgid "Lost Quotations %"
+msgstr ""
+
+#. Label of the lost_reason (Data) field in DocType 'Opportunity Lost Reason'
+#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:30
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:24
+msgid "Lost Reason"
+msgstr "잃어버린 이유"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json
+msgid "Lost Reason Detail"
+msgstr ""
+
+#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Opportunity'
+#. Label of the lost_detail_section (Section Break) field in DocType
+#. 'Opportunity'
+#. Label of the lost_reasons (Table MultiSelect) field in DocType 'Quotation'
+#. Label of the lost_reasons_section (Section Break) field in DocType
+#. 'Quotation'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:55
+#: erpnext/public/js/utils/sales_common.js:596
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Lost Reasons"
+msgstr "잃어버린 이유"
+
+#: erpnext/crm/doctype/opportunity/opportunity.js:28
+msgid "Lost Reasons are required in case opportunity is Lost."
+msgstr "기회를 놓친 경우에는 그 이유를 밝혀야 합니다."
+
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:43
+msgid "Lost Value"
+msgstr "손실 가치"
+
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:49
+msgid "Lost Value %"
+msgstr "손실 가치 %"
+
+#. Label of the lower_deduction_certificate (Link) field in DocType 'Tax
+#. Withholding Entry'
+#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax
+#. Withholding Entry'
+#. Label of a Link in the Invoicing Workspace
+#. Name of a DocType
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Lower Deduction Certificate"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:309
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:426
+msgid "Lower Income"
+msgstr "저소득층"
+
+#. Label of the loyalty_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the loyalty_amount (Currency) field in DocType 'Sales Invoice'
+#. Label of the loyalty_amount (Currency) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Loyalty Amount"
+msgstr "충성도 금액"
+
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Loyalty Point Entry"
+msgstr "로열티 포인트 입력"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json
+msgid "Loyalty Point Entry Redemption"
+msgstr "로열티 포인트 사용"
+
+#. Label of the loyalty_points (Int) field in DocType 'Loyalty Point Entry'
+#. Label of the loyalty_points (Int) field in DocType 'POS Invoice'
+#. Label of the loyalty_points (Int) field in DocType 'Sales Invoice'
+#. Label of the loyalty_points_tab (Section Break) field in DocType 'Customer'
+#. Label of the loyalty_points_redemption (Section Break) field in DocType
+#. 'Sales Order'
+#. Label of the loyalty_points (Int) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:959
+msgid "Loyalty Points"
+msgstr "로열티 포인트"
+
+#. Label of the loyalty_points_redemption (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the loyalty_points_redemption (Section Break) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Loyalty Points Redemption"
+msgstr "로열티 포인트 사용"
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:16
+msgid "Loyalty Points will be calculated from the spent done (via the Sales Invoice), based on collection factor mentioned."
+msgstr "로열티 포인트는 명시된 결제 요소를 기준으로 (판매 송장을 통해 확인된) 지출액을 바탕으로 계산됩니다."
+
+#: erpnext/public/js/utils.js:200
+msgid "Loyalty Points: {0}"
+msgstr "로열티 포인트: {0}"
+
+#. Label of the loyalty_program (Link) field in DocType 'Loyalty Point Entry'
+#. Name of a DocType
+#. Label of the loyalty_program (Link) field in DocType 'POS Invoice'
+#. Label of the loyalty_program (Link) field in DocType 'Sales Invoice'
+#. Label of the loyalty_program (Link) field in DocType 'Customer'
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1206
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:952
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Loyalty Program"
+msgstr "로열티 프로그램"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json
+msgid "Loyalty Program Collection"
+msgstr "로열티 프로그램 컬렉션"
+
+#. Label of the loyalty_program_help (HTML) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Loyalty Program Help"
+msgstr "로열티 프로그램 도움말"
+
+#. Label of the loyalty_program_name (Data) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Loyalty Program Name"
+msgstr "로열티 프로그램 이름"
+
+#. Label of the loyalty_program_tier (Data) field in DocType 'Loyalty Point
+#. Entry'
+#. Label of the loyalty_program_tier (Data) field in DocType 'Customer'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty Program Tier"
+msgstr "로열티 프로그램 등급"
+
+#. Label of the loyalty_program_type (Select) field in DocType 'Loyalty
+#. Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Loyalty Program Type"
+msgstr "로열티 프로그램 유형"
+
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
+#. Label of the mps (Link) field in DocType 'Purchase Order'
+#. Label of the mps (Link) field in DocType 'Work Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_dashboard.py:9
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:51
+msgid "MPS"
+msgstr "국회의원"
+
+#. Option for the 'Status' (Select) field in DocType 'Sales Forecast'
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:9
+msgid "MPS Generated"
+msgstr "MPS 생성됨"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:445
+msgid "MRP Log documents are being created in the background."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:156
+msgid "MT940 file detected. Please enable 'Import MT940 Format' to proceed."
+msgstr ""
+
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.js:23
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:78
+#: erpnext/public/js/plant_floor_visual/visual_plant.js:86
+msgid "Machine"
+msgstr "기계"
+
+#: erpnext/public/js/plant_floor_visual/visual_plant.js:70
+msgid "Machine Type"
+msgstr "기계 유형"
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Machine malfunction"
+msgstr "기계 오작동"
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Machine operator errors"
+msgstr "기계 조작 오류"
+
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
+msgid "Main"
+msgstr "기본"
+
+#. Label of the main_cost_center (Link) field in DocType 'Cost Center
+#. Allocation'
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json
+msgid "Main Cost Center"
+msgstr "주요 비용 센터"
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:123
+msgid "Main Cost Center {0} cannot be entered in the child table"
+msgstr ""
+
+#. Label of the main_item_code (Link) field in DocType 'Material Request Plan
+#. Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "Main Item Code"
+msgstr "주요 품목 코드"
+
+#: erpnext/assets/doctype/asset/asset.js:138
+msgid "Maintain Asset"
+msgstr "자산을 유지 관리합니다"
+
+#. Label of the maintain_same_internal_transaction_rate (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Maintain Same Rate Throughout Internal Transaction"
+msgstr ""
+
+#. Label of the is_stock_item (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Maintain Stock"
+msgstr "재고 관리"
+
+#. Label of the maintain_same_sales_rate (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Maintain same rate throughout sales cycle"
+msgstr ""
+
+#. Label of the maintain_same_rate (Check) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Maintain same rate throughout the purchase cycle"
+msgstr ""
+
+#. Group in Asset's connections
+#. Label of a Card Break in the Assets Workspace
+#. Option for the 'Status' (Select) field in DocType 'Workstation'
+#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
+#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and
+#. Batch Bundle'
+#. Label of a Card Break in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/workspace/assets/assets.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:299
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/assets.json erpnext/workspace_sidebar/crm.json
+msgid "Maintenance"
+msgstr "유지"
+
+#. Label of the mntc_date (Date) field in DocType 'Maintenance Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Maintenance Date"
+msgstr "점검 날짜"
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Asset
+#. Maintenance Log'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+msgid "Maintenance Details"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.js:50
+msgid "Maintenance Log"
+msgstr ""
+
+#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset
+#. Maintenance'
+#. Label of the maintenance_manager_name (Read Only) field in DocType 'Asset
+#. Maintenance Team'
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+msgid "Maintenance Manager Name"
+msgstr ""
+
+#. Label of the maintenance_required (Check) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Maintenance Required"
+msgstr ""
+
+#. Label of the maintenance_role (Link) field in DocType 'Maintenance Team
+#. Member'
+#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json
+msgid "Maintenance Role"
+msgstr ""
+
+#. Label of a Link in the CRM Workspace
+#. Name of a DocType
+#. Label of the maintenance_schedule (Link) field in DocType 'Maintenance
+#. Visit'
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:164
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:81
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1166
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json
+msgid "Maintenance Schedule"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the maintenance_schedule_detail (Link) field in DocType
+#. 'Maintenance Visit'
+#. Label of the maintenance_schedule_detail (Data) field in DocType
+#. 'Maintenance Visit Purpose'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+msgid "Maintenance Schedule Detail"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+msgid "Maintenance Schedule Item"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:367
+msgid "Maintenance Schedule is not generated for all the items. Please click on 'Generate Schedule'"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:247
+msgid "Maintenance Schedule {0} exists against {1}"
+msgstr ""
+
+#. Name of a report
+#: erpnext/maintenance/report/maintenance_schedules/maintenance_schedules.json
+msgid "Maintenance Schedules"
+msgstr ""
+
+#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance
+#. Log'
+#. Label of the maintenance_status (Select) field in DocType 'Asset Maintenance
+#. Task'
+#. Label of the maintenance_status (Select) field in DocType 'Serial No'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Maintenance Status"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:59
+msgid "Maintenance Status has to be Cancelled or Completed to Submit"
+msgstr ""
+
+#. Label of the maintenance_task (Data) field in DocType 'Asset Maintenance
+#. Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Maintenance Task"
+msgstr ""
+
+#. Label of the asset_maintenance_tasks (Table) field in DocType 'Asset
+#. Maintenance'
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+msgid "Maintenance Tasks"
+msgstr ""
+
+#. Label of the maintenance_team (Link) field in DocType 'Asset Maintenance'
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+msgid "Maintenance Team"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json
+msgid "Maintenance Team Member"
+msgstr ""
+
+#. Label of the maintenance_team_members (Table) field in DocType 'Asset
+#. Maintenance Team'
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+msgid "Maintenance Team Members"
+msgstr ""
+
+#. Label of the maintenance_team_name (Data) field in DocType 'Asset
+#. Maintenance Team'
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+msgid "Maintenance Team Name"
+msgstr ""
+
+#. Label of the mntc_time (Time) field in DocType 'Maintenance Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Maintenance Time"
+msgstr ""
+
+#. Label of the maintenance_type (Read Only) field in DocType 'Asset
+#. Maintenance Log'
+#. Label of the maintenance_type (Select) field in DocType 'Asset Maintenance
+#. Task'
+#. Label of the maintenance_type (Select) field in DocType 'Maintenance Visit'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Maintenance Type"
+msgstr ""
+
+#. Label of a Link in the CRM Workspace
+#. Name of a DocType
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:87
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1159
+#: erpnext/support/doctype/warranty_claim/warranty_claim.js:47
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json
+msgid "Maintenance Visit"
+msgstr "정기 점검 방문"
+
+#. Name of a DocType
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+msgid "Maintenance Visit Purpose"
+msgstr "정기 점검 방문 목적"
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:349
+msgid "Maintenance start date can not be before delivery date for Serial No {0}"
+msgstr ""
+
+#. Label of the maj_opt_subj (Text) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Major/Optional Subjects"
+msgstr "주요/선택 과목"
+
+#. Label of the make (Data) field in DocType 'Vehicle'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Make"
+msgstr "만들다"
+
+#: erpnext/assets/doctype/asset/asset_list.js:32
+msgid "Make Asset Movement"
+msgstr "자산 이동을 실행하세요"
+
+#. Label of the make_depreciation_entry (Button) field in DocType 'Depreciation
+#. Schedule'
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+msgid "Make Depreciation Entry"
+msgstr ""
+
+#. Label of the get_balance (Button) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Make Difference Entry"
+msgstr "차이를 만드는 항목"
+
+#: erpnext/stock/doctype/item/item.js:678
+msgid "Make Lead Time"
+msgstr ""
+
+#. Label of the make_payment_via_journal_entry (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Make Payment via Journal Entry"
+msgstr "회계 전표를 통해 결제하세요"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:130
+msgid "Make Purchase / Work Order"
+msgstr "구매/작업 지시서 작성"
+
+#: erpnext/templates/pages/order.html:27
+msgid "Make Purchase Invoice"
+msgstr "구매 송장 발행"
+
+#: erpnext/templates/pages/rfq.html:19
+msgid "Make Quotation"
+msgstr "견적 요청"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:328
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:128
+msgid "Make Return Entry"
+msgstr "반환 항목을 작성하세요"
+
+#. Label of the make_sales_invoice (Check) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Make Sales Invoice"
+msgstr "판매 송장 작성"
+
+#. Label of the make_serial_no_batch_from_work_order (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Make Serial No / Batch from Work Order"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
+msgid "Make Stock Entry"
+msgstr "주식 입력하기"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
+msgid "Make Subcontracting PO"
+msgstr "하도급 구매 주문서 작성"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:427
+msgid "Make Transfer Entry"
+msgstr "송금 입력"
+
+#: erpnext/public/js/telephony.js:29
+msgid "Make a call"
+msgstr "전화하세요"
+
+#: erpnext/config/projects.py:34
+msgid "Make project from a template."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:785
+msgid "Make {0} Variant"
+msgstr "{0} 변형을 만드세요"
+
+#: erpnext/stock/doctype/item/item.js:787
+msgid "Make {0} Variants"
+msgstr "{0} 변형을 만드세요"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:174
+msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
+msgid "Manage"
+msgstr "관리하다"
+
+#. Description of the 'With Operations' (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Manage cost of operations"
+msgstr ""
+
+#. Description of the 'Enable tracking sales commissions' (Check) field in
+#. DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Manage sales partner's and sales team's commissions"
+msgstr ""
+
+#: erpnext/utilities/activation.py:95
+msgid "Manage your orders"
+msgstr "주문 관리하기"
+
+#: erpnext/setup/doctype/company/company.py:502
+msgid "Management"
+msgstr "관리"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:20
+msgid "Manager"
+msgstr "관리자"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:21
+msgid "Managing Director"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:101
+msgid "Mandatory Accounting Dimension"
+msgstr "필수 회계 차원"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
+msgid "Mandatory Field"
+msgstr "필수 입력 항목"
+
+#. Label of the mandatory_for_bs (Check) field in DocType 'Accounting Dimension
+#. Detail'
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Mandatory For Balance Sheet"
+msgstr "재무제표 작성 시 필수 항목"
+
+#. Label of the mandatory_for_pl (Check) field in DocType 'Accounting Dimension
+#. Detail'
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Mandatory For Profit and Loss Account"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:635
+msgid "Mandatory Missing"
+msgstr "필수 누락"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:635
+msgid "Mandatory Purchase Order"
+msgstr "의무 구매 주문서"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:656
+msgid "Mandatory Purchase Receipt"
+msgstr "구매 영수증 필수"
+
+#. Label of the conditional_mandatory_section (Section Break) field in DocType
+#. 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Mandatory Section"
+msgstr "필수 입력 항목"
+
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Finance Book'
+#. Option for the 'How often should project be updated of Total Purchase Cost
+#. ?' (Select) field in DocType 'Buying Settings'
+#. Option for the '% Complete Method' (Select) field in DocType 'Project'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/projects/doctype/project/project.json
+msgid "Manual"
+msgstr "수동"
+
+#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection'
+#. Label of the manual_inspection (Check) field in DocType 'Quality Inspection
+#. Reading'
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Manual Inspection"
+msgstr "수동 검사"
+
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.js:36
+msgid "Manual entry cannot be created! Disable automatic entry for deferred accounting in accounts settings and try again"
+msgstr ""
+
+#. Label of the manufacture_details (Section Break) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the manufacture_details (Section Break) field in DocType 'Purchase
+#. Order Item'
+#. Label of the manufacture_details (Section Break) field in DocType 'Supplier
+#. Quotation Item'
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Option for the 'Default Material Request Type' (Select) field in DocType
+#. 'Item'
+#. Option for the 'Material Request Type' (Select) field in DocType 'Item
+#. Reorder'
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#. Label of the manufacture_details (Section Break) field in DocType 'Material
+#. Request Item'
+#. Label of the manufacture_details (Section Break) field in DocType 'Purchase
+#. Receipt Item'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#. Label of the manufacture_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#. Label of the manufacture_details (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:15
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/operation/operation_dashboard.py:7
+#: erpnext/projects/doctype/project/project_dashboard.py:17
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:89
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_dashboard.py:32
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Manufacture"
+msgstr "제조"
+
+#. Description of the 'Material Request' (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Manufacture against Material Request"
+msgstr "자재 요청에 따른 제조"
+
+#. Label of a number card in the Manufacturing Workspace
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+msgid "Manufactured Items Value"
+msgstr ""
+
+#. Label of the manufactured_qty (Float) field in DocType 'Job Card'
+#. Label of the produced_qty (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:88
+msgid "Manufactured Qty"
+msgstr "제조 수량"
+
+#. Label of the manufacturer (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the manufacturer (Link) field in DocType 'Purchase Order Item'
+#. Label of the manufacturer (Link) field in DocType 'Supplier Quotation Item'
+#. Option for the 'Variant Based On' (Select) field in DocType 'Item'
+#. Label of the manufacturer (Link) field in DocType 'Item Manufacturer'
+#. Name of a DocType
+#. Label of the manufacturer (Link) field in DocType 'Material Request Item'
+#. Label of the manufacturer (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the manufacturer (Link) field in DocType 'Subcontracting Order
+#. Item'
+#. Label of the manufacturer (Link) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:110
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Manufacturer"
+msgstr "제조업체"
+
+#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Order
+#. Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Item
+#. Manufacturer'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Material Request
+#. Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the manufacturer_part_no (Data) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:113
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Manufacturer Part Number"
+msgstr "제조사 부품 번호"
+
+#: erpnext/public/js/controllers/buying.js:421
+msgid "Manufacturer Part Number {0} is invalid"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+msgid "Manufacturers used in Items"
+msgstr "제품에 사용된 제조업체"
+
+#. Label of a Desktop Icon
+#. Label of the work_order_details_section (Section Break) field in DocType
+#. 'Production Plan Sub Assembly Item'
+#. Name of a Workspace
+#. Label of the manufacturing_section (Section Break) field in DocType
+#. 'Company'
+#. Label of the manufacturing_section (Section Break) field in DocType 'Batch'
+#. Label of the manufacturing (Tab Break) field in DocType 'Item'
+#. Label of the section_break_wuqi (Section Break) field in DocType 'Item Lead
+#. Time'
+#. Title of a Workspace Sidebar
+#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:30
+#: erpnext/desktop_icon/manufacturing.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
+#: erpnext/setup/setup_wizard/data/industry_type.txt:31
+#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/material_request/material_request_dashboard.py:18
+#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:20
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:13
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Manufacturing"
+msgstr "조작"
+
+#. Label of the semi_fg_bom (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Manufacturing BOM"
+msgstr "제조 BOM"
+
+#. Label of the manufacturing_date (Date) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Manufacturing Date"
+msgstr ""
+
+#. Name of a role
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/manufacturing/doctype/routing/routing.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Manufacturing Manager"
+msgstr "제조 관리자"
+
+#. Label of the manufacturing_section_section (Section Break) field in DocType
+#. 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Manufacturing Section"
+msgstr "제조 부문"
+
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Manufacturing Settings"
+msgstr "제조 설정"
+
+#. Title of the Module Onboarding 'Manufacturing Onboarding'
+#: erpnext/manufacturing/module_onboarding/manufacturing_onboarding/manufacturing_onboarding.json
+msgid "Manufacturing Setup"
+msgstr "제조 설비"
+
+#. Label of the manufacturing_time_in_mins (Int) field in DocType 'Item Lead
+#. Time'
+#. Label of the manufacturing_time_tab (Tab Break) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Manufacturing Time"
+msgstr "제조 시간"
+
+#. Label of the type_of_manufacturing (Select) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Manufacturing Type"
+msgstr "제조 유형"
+
+#. Name of a role
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/routing/routing.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/price_list/price_list.json
+#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/doctype/warehouse_type/warehouse_type.json
+msgid "Manufacturing User"
+msgstr "제조 사용자"
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:106
+msgid "Mapping Subcontracting Inward Order ..."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:152
+msgid "Mapping Subcontracting Order ..."
+msgstr ""
+
+#: erpnext/public/js/utils.js:1057
+msgid "Mapping {0} ..."
+msgstr ""
+
+#. Label of the maps_to (Select) field in DocType 'Bank Statement Import Log
+#. Column Map'
+#: banking/src/pages/BankStatementImporter.tsx:147
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Maps To"
+msgstr "지도로 이동"
+
+#. Label of the margin (Section Break) field in DocType 'Pricing Rule'
+#. Label of the margin (Section Break) field in DocType 'Project'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/projects/doctype/project/project.json
+msgid "Margin"
+msgstr "여유"
+
+#. Label of the margin_money (Currency) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Margin Money"
+msgstr "마진 자금"
+
+#. Label of the margin_rate_or_amount (Float) field in DocType 'POS Invoice
+#. Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Pricing Rule'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase Order
+#. Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Quotation Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Sales Order
+#. Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Delivery Note
+#. Item'
+#. Label of the margin_rate_or_amount (Float) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Margin Rate or Amount"
+msgstr ""
+
+#. Label of the margin_type (Select) field in DocType 'POS Invoice Item'
+#. Label of the margin_type (Select) field in DocType 'Pricing Rule'
+#. Label of the margin_type (Data) field in DocType 'Pricing Rule Detail'
+#. Label of the margin_type (Select) field in DocType 'Purchase Invoice Item'
+#. Label of the margin_type (Select) field in DocType 'Sales Invoice Item'
+#. Label of the margin_type (Select) field in DocType 'Purchase Order Item'
+#. Label of the margin_type (Select) field in DocType 'Supplier Quotation Item'
+#. Label of the margin_type (Select) field in DocType 'Quotation Item'
+#. Label of the margin_type (Select) field in DocType 'Sales Order Item'
+#. Label of the margin_type (Select) field in DocType 'Delivery Note Item'
+#. Label of the margin_type (Select) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Margin Type"
+msgstr "여백 유형"
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:33
+msgid "Margin View"
+msgstr "여백 보기"
+
+#. Label of the marital_status (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Marital Status"
+msgstr "혼인 여부"
+
+#: erpnext/public/js/templates/crm_activities.html:39
+#: erpnext/public/js/templates/crm_activities.html:123
+msgid "Mark As Closed"
+msgstr "종료됨으로 표시"
+
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
+#. Label of the market_segment (Link) field in DocType 'Lead'
+#. Name of a DocType
+#. Label of the market_segment (Data) field in DocType 'Market Segment'
+#. Label of the market_segment (Link) field in DocType 'Opportunity'
+#. Label of the market_segment (Link) field in DocType 'Prospect'
+#. Label of the market_segment (Link) field in DocType 'Customer'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/market_segment/market_segment.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Market Segment"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:454
+msgid "Marketing"
+msgstr "마케팅"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+msgid "Marketing Expenses"
+msgstr "마케팅 비용"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:23
+msgid "Marketing Specialist"
+msgstr "마케팅 전문가"
+
+#. Option for the 'Marital Status' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Married"
+msgstr "기혼"
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:7
+msgid "Mass Mailing"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Master Production Schedule"
+msgstr "주요 생산 일정"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+msgid "Master Production Schedule Item"
+msgstr "주요 생산 일정 항목"
+
+#. Label of a Card Break in the CRM Workspace
+#: banking/src/components/features/Settings/Settings.tsx:66
+#: erpnext/crm/workspace/crm/crm.json
+msgid "Masters"
+msgstr "석사"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:346
+msgid "Match"
+msgstr "성냥"
+
+#: banking/src/pages/BankReconciliation.tsx:116
+msgid "Match and Reconcile"
+msgstr "일치 및 조정"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:62
+msgid "Match or Create"
+msgstr ""
+
+#. Label of the transfer_match_days (Int) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Match transfers within 'N' days"
+msgstr ""
+
+#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank
+#. Transaction Payments'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:117
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+msgid "Matched"
+msgstr "일치함"
+
+#. Label of the matched_transaction_rule (Link) field in DocType 'Bank
+#. Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Matched Transaction Rule"
+msgstr "일치하는 거래 규칙"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:314
+msgid "Matched by rule"
+msgstr "규칙에 따라 일치"
+
+#: banking/src/components/features/Settings/Settings.tsx:56
+msgid "Matching Rules"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project_dashboard.py:14
+msgid "Material"
+msgstr "재료"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
+msgid "Material Consumption"
+msgstr "재료 소비"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Material Consumption for Manufacture"
+msgstr "제조에 필요한 재료 소비량"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:666
+msgid "Material Consumption is not set in Manufacturing Settings."
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Option for the 'Default Material Request Type' (Select) field in DocType
+#. 'Item'
+#. Option for the 'Material Request Type' (Select) field in DocType 'Item
+#. Reorder'
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:71
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Material Issue"
+msgstr "재료 문제"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Material Planning"
+msgstr "자재 계획"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:77
+#: erpnext/stock/doctype/material_request/material_request.js:188
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Material Receipt"
+msgstr "자재 수령"
+
+#. Label of the material_request (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the material_request (Link) field in DocType 'Purchase Order Item'
+#. Label of the material_request (Link) field in DocType 'Request for Quotation
+#. Item'
+#. Label of the material_request (Link) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of a Link in the Buying Workspace
+#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan'
+#. Label of the material_request (Link) field in DocType 'Production Plan Item'
+#. Label of the material_request (Link) field in DocType 'Production Plan
+#. Material Request'
+#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#. Label of the material_request (Link) field in DocType 'Work Order'
+#. Label of the material_request (Link) field in DocType 'Sales Order Item'
+#. Label of the material_request (Link) field in DocType 'Delivery Note Item'
+#. Name of a DocType
+#. Label of the material_request (Link) field in DocType 'Pick List'
+#. Label of the material_request (Link) field in DocType 'Pick List Item'
+#. Label of the material_request (Link) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the material_request (Link) field in DocType 'Stock Entry Detail'
+#. Label of a Link in the Stock Workspace
+#. Label of the material_request (Link) field in DocType 'Subcontracting Order
+#. Item'
+#. Label of the material_request (Link) field in DocType 'Subcontracting Order
+#. Service Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:45
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:492
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:361
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:56
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1130
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:36
+#: 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:436
+#: erpnext/stock/doctype/material_request/material_request.py:486
+#: 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:287
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:443
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/stock.json
+msgid "Material Request"
+msgstr "자재 요청"
+
+#. Label of the material_request_date (Date) field in DocType 'Production Plan
+#. Material Request'
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:19
+#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json
+msgid "Material Request Date"
+msgstr "자재 요청일"
+
+#. Label of the material_request_detail (Section Break) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Material Request Detail"
+msgstr ""
+
+#. Label of the material_request_item (Data) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the material_request_item (Data) field in DocType 'Purchase Order
+#. Item'
+#. Label of the material_request_item (Data) field in DocType 'Request for
+#. Quotation Item'
+#. Label of the material_request_item (Data) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the material_request_item (Data) field in DocType 'Work Order'
+#. Label of the material_request_item (Data) field in DocType 'Sales Order
+#. Item'
+#. Label of the material_request_item (Data) field in DocType 'Delivery Note
+#. Item'
+#. Name of a DocType
+#. Label of the material_request_item (Data) field in DocType 'Pick List Item'
+#. Label of the material_request_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the material_request_item (Link) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the material_request_item (Data) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the material_request_item (Data) field in DocType 'Subcontracting
+#. Order Service Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+msgid "Material Request Item"
+msgstr "자재 요청 품목"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:25
+msgid "Material Request No"
+msgstr "자재 요청 번호"
+
+#. Name of a DocType
+#. Label of the material_request_plan_item (Data) field in DocType 'Material
+#. Request Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Material Request Plan Item"
+msgstr "자재 요청 계획 품목"
+
+#. Label of the material_request_type (Select) field in DocType 'Item Reorder'
+#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:1
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+msgid "Material Request Type"
+msgstr "자재 요청 유형"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
+msgid "Material Request already created for the ordered quantity"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
+msgid "Material Request not created, as quantity for Raw Materials already available."
+msgstr "원자재 수량이 이미 확보되어 있으므로 자재 요청이 생성되지 않았습니다."
+
+#: erpnext/stock/doctype/material_request/material_request.py:147
+msgid "Material Request of maximum {0} can be made for Item {1} against Sales Order {2}"
+msgstr ""
+
+#. Description of the 'Material Request' (Link) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Material Request used to make this Stock Entry"
+msgstr "이 재고 입력을 생성하는 데 사용된 자재 요청서"
+
+#: erpnext/controllers/subcontracting_controller.py:1305
+msgid "Material Request {0} is cancelled or stopped"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1533
+msgid "Material Request {0} submitted."
+msgstr "자재 요청 {0} 이 제출되었습니다."
+
+#. Option for the 'Status' (Select) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Material Requested"
+msgstr "요청된 자료"
+
+#. Label of the material_requests (Table) field in DocType 'Master Production
+#. Schedule'
+#. Label of the material_requests (Table) field in DocType 'Production Plan'
+#: erpnext/accounts/doctype/budget/budget.py:622
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Material Requests"
+msgstr "자재 요청"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:450
+msgid "Material Requests Required"
+msgstr "자재 요청서 필요"
+
+#. Label of a Link in the Buying Workspace
+#. Name of a report
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/report/material_requests_for_which_supplier_quotations_are_not_created/material_requests_for_which_supplier_quotations_are_not_created.json
+msgid "Material Requests for which Supplier Quotations are not created"
+msgstr ""
+
+#. Label of a Link in the Manufacturing Workspace
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+msgid "Material Requirements Planning"
+msgstr "자재 소요 계획"
+
+#. Name of a report
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.json
+msgid "Material Requirements Planning Report"
+msgstr "자재 소요 계획 보고서"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:13
+msgid "Material Returned from WIP"
+msgstr ""
+
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Option for the 'Default Material Request Type' (Select) field in DocType
+#. 'Item'
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:83
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/material_request/material_request.js:166
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Material Transfer"
+msgstr "물질 이송"
+
+#: erpnext/stock/doctype/material_request/material_request.js:172
+msgid "Material Transfer (In Transit)"
+msgstr "자재 이송 (운송 중)"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:108
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Material Transfer for Manufacture"
+msgstr "제조를 위한 자재 이송"
+
+#. Option for the 'Status' (Select) field in DocType 'Job Card'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Material Transferred"
+msgstr ""
+
+#. Option for the 'Based On' (Select) field in DocType 'BOM'
+#. Option for the 'Backflush Raw Materials Based On' (Select) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Material Transferred for Manufacture"
+msgstr ""
+
+#. Label of the material_transferred_for_manufacturing (Float) field in DocType
+#. 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Material Transferred for Manufacturing"
+msgstr ""
+
+#. Option for the 'Backflush raw materials of subcontract based on' (Select)
+#. field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Material Transferred for Subcontract"
+msgstr "하도급을 위한 자재 이송"
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:151
+msgid "Material from Customer"
+msgstr "고객 제공 자료"
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:648
+msgid "Material to Supplier"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Materials To Be Transferred"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_controller.py:1545
+msgid "Materials are already received against the {0} {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
+msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
+msgstr ""
+
+#. Label of the max_amount (Currency) field in DocType 'Bank Transaction Rule'
+#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the max_amount (Currency) field in DocType 'Promotional Scheme
+#. Product Discount'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Max Amount"
+msgstr "최대 금액"
+
+#. Label of the max_amt (Currency) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Max Amt"
+msgstr "최대 금액"
+
+#. Label of the max_discount (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Max Discount (%)"
+msgstr "최대 할인율(%)"
+
+#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the max_grade (Percent) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Max Grade"
+msgstr "최대 등급"
+
+#. Label of the max_producible_qty (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Max Producible Qty"
+msgstr "최대 생산 가능 수량"
+
+#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Price
+#. Discount'
+#. Label of the max_qty (Float) field in DocType 'Promotional Scheme Product
+#. Discount'
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Max Qty"
+msgstr "최대 수량"
+
+#. Label of the max_qty (Float) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Max Qty (As Per Stock UOM)"
+msgstr "최대 수량 (재고 단위 기준)"
+
+#. Label of the sample_quantity (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Max Sample Quantity"
+msgstr "최대 샘플 수량"
+
+#. Label of the max_score (Float) field in DocType 'Supplier Scorecard
+#. Criteria'
+#. Label of the max_score (Float) field in DocType 'Supplier Scorecard Scoring
+#. Criteria'
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Max Score"
+msgstr "최고 점수"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:292
+msgid "Max discount allowed for item: {0} is {1}%"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
+#: erpnext/stock/doctype/pick_list/pick_list.js:203
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
+msgid "Max: {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:63
+msgid "Maximum Amount"
+msgstr "최대 금액"
+
+#. Label of the maximum_invoice_amount (Currency) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Maximum Invoice Amount"
+msgstr "최대 청구 금액"
+
+#. Label of the maximum_net_rate (Float) field in DocType 'Item Tax'
+#: erpnext/stock/doctype/item_tax/item_tax.json
+msgid "Maximum Net Rate"
+msgstr "최대 순 요금"
+
+#. Label of the maximum_payment_amount (Currency) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Maximum Payment Amount"
+msgstr "최대 지불 금액"
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:82
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:151
+msgid "Maximum Producible Items"
+msgstr "최대 생산 가능 품목 수"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
+msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
+msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
+msgstr "배치 {1} 및 배치 {3}의 항목 {2} 에 대해 최대 샘플 수 - {0} 가 이미 보관되었습니다."
+
+#. Label of the maximum_use (Int) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Maximum Use"
+msgstr "최대 사용"
+
+#. Label of the max_value (Float) field in DocType 'Item Quality Inspection
+#. Parameter'
+#. Label of the max_value (Float) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Maximum Value"
+msgstr ""
+
+#. Description of the 'Max Discount (%)' (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+#, python-format
+msgid "Maximum discount % allowed when selling this item. Eg: if set to 20%, a discount greater than 20% cannot be applied in sales transactions."
+msgstr "이 상품 판매 시 허용되는 최대 할인율입니다. 예를 들어 20%로 설정하면 판매 거래에서 20%를 초과하는 할인은 적용할 수 없습니다."
+
+#: erpnext/controllers/selling_controller.py:278
+msgid "Maximum discount for Item {0} is {1}%"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:120
+msgid "Maximum quantity scanned for item {0}."
+msgstr ""
+
+#. Description of the 'Max Sample Quantity' (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Maximum sample quantity that can be retained"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Megacoulomb"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Megagram/Litre"
+msgstr "메가그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Megahertz"
+msgstr "메가헤르츠"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Megajoule"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Megawatt"
+msgstr "메가와트"
+
+#: erpnext/stock/stock_ledger.py:2038
+msgid "Mention Valuation Rate in the Item master."
+msgstr ""
+
+#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Mention if non-standard payable account"
+msgstr ""
+
+#. Description of the 'Accounts' (Table) field in DocType 'Customer Group'
+#. Description of the 'Accounts' (Table) field in DocType 'Supplier Group'
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Mention if non-standard receivable account applicable"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.js:169
+msgid "Merge"
+msgstr "병합"
+
+#: erpnext/accounts/doctype/account/account.js:55
+msgid "Merge Account"
+msgstr "계정 병합"
+
+#. Label of the merge_invoices_based_on (Select) field in DocType 'POS Invoice
+#. Merge Log'
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+msgid "Merge Invoices Based On"
+msgstr "송장 병합 기준"
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:18
+msgid "Merge Progress"
+msgstr "병합 진행 상황"
+
+#. Label of the merge_similar_account_heads (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Merge Similar Account Heads"
+msgstr ""
+
+#: erpnext/public/js/utils.js:1089
+msgid "Merge taxes from multiple documents"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.js:141
+msgid "Merge with Existing Account"
+msgstr "기존 계정과 병합"
+
+#. Label of the merged (Check) field in DocType 'Ledger Merge Accounts'
+#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json
+msgid "Merged"
+msgstr "병합됨"
+
+#: erpnext/accounts/doctype/account/account.py:613
+msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
+msgstr "병합은 다음 속성이 두 레코드에서 동일한 경우에만 가능합니다. 그룹, 루트 유형, 회사 및 계정 통화"
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:16
+msgid "Merging {0} of {1}"
+msgstr "{0} 의 {1} 병합"
+
+#. Label of the message_for_supplier (Text Editor) field in DocType 'Request
+#. for Quotation'
+#. Label of the mfs_html (Code) field in DocType 'Request for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Message for Supplier"
+msgstr ""
+
+#. Label of the message_to_show (Data) field in DocType 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Message to show"
+msgstr "표시할 메시지"
+
+#. Description of the 'Message' (Text) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Message will be sent to the users to get their status on the Project"
+msgstr ""
+
+#. Description of the 'Message' (Text) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Messages greater than 160 characters will be split into multiple messages"
+msgstr ""
+
+#: erpnext/setup/install.py:138
+msgid "Messaging CRM Campaign"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Meter"
+msgstr "미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Meter Of Water"
+msgstr "수도 계량기"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Meter/Second"
+msgstr "미터/초"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Microbar"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Microgram"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Microgram/Litre"
+msgstr "마이크로그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Micrometer"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Microsecond"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:310
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:427
+msgid "Middle Income"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Mile"
+msgstr "마일"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Mile (Nautical)"
+msgstr "마일(해상)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Mile/Hour"
+msgstr "마일/시간"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Mile/Minute"
+msgstr "마일/분"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Mile/Second"
+msgstr "마일/초"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milibar"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milliampere"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millicoulomb"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milligram"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milligram/Cubic Centimeter"
+msgstr "밀리그램/입방센티미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milligram/Cubic Meter"
+msgstr "밀리그램/입방미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milligram/Cubic Millimeter"
+msgstr "밀리그램/입방밀리미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Milligram/Litre"
+msgstr "밀리그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millihertz"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millilitre"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millimeter"
+msgstr "밀리미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millimeter Of Mercury"
+msgstr "수은 밀리미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millimeter Of Water"
+msgstr "물 밀리미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Millisecond"
+msgstr ""
+
+#. Label of the min_amount (Currency) field in DocType 'Bank Transaction Rule'
+#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the min_amount (Currency) field in DocType 'Promotional Scheme
+#. Product Discount'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Min Amount"
+msgstr "최소 금액"
+
+#. Label of the min_amt (Currency) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Min Amt"
+msgstr "최소 금액"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:228
+msgid "Min Amt can not be greater than Max Amt"
+msgstr ""
+
+#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the min_grade (Percent) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Min Grade"
+msgstr "최소 등급"
+
+#. Label of the min_order_qty (Float) field in DocType 'Material Request Item'
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1063
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Min Order Qty"
+msgstr "최소 주문 수량"
+
+#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Price
+#. Discount'
+#. Label of the min_qty (Float) field in DocType 'Promotional Scheme Product
+#. Discount'
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Min Qty"
+msgstr "최소 수량"
+
+#. Label of the min_qty (Float) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Min Qty (As Per Stock UOM)"
+msgstr "최소 주문 수량 (재고 단위 기준)"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:224
+msgid "Min Qty can not be greater than Max Qty"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:238
+msgid "Min Qty should be greater than Recurse Over Qty"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:942
+msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:62
+msgid "Min amount cannot be greater than max amount."
+msgstr "최소 금액은 최대 금액보다 클 수 없습니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:58
+msgid "Minimum Amount"
+msgstr "최소 금액"
+
+#. Label of the minimum_invoice_amount (Currency) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Minimum Invoice Amount"
+msgstr "최소 청구 금액"
+
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:20
+msgid "Minimum Lead Age (Days)"
+msgstr ""
+
+#. Label of the minimum_net_rate (Float) field in DocType 'Item Tax'
+#: erpnext/stock/doctype/item_tax/item_tax.json
+msgid "Minimum Net Rate"
+msgstr "최소 순 요금"
+
+#. Label of the min_order_qty (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Minimum Order Qty"
+msgstr "최소 주문 수량"
+
+#. Label of the min_order_qty (Float) field in DocType 'Material Request Plan
+#. Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "Minimum Order Quantity"
+msgstr "최소 주문 수량"
+
+#. Label of the minimum_payment_amount (Currency) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Minimum Payment Amount"
+msgstr "최소 지불 금액"
+
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:96
+msgid "Minimum Qty"
+msgstr "최소 수량"
+
+#. Label of the min_spent (Currency) field in DocType 'Loyalty Program
+#. Collection'
+#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json
+msgid "Minimum Total Spent"
+msgstr "최소 총 지출액"
+
+#. Label of the min_value (Float) field in DocType 'Item Quality Inspection
+#. Parameter'
+#. Label of the min_value (Float) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Minimum Value"
+msgstr ""
+
+#. Description of the 'Minimum Order Qty' (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Minimum quantity should be as per Stock UOM\n\n"
+msgstr ""
+
+#. Description of the 'Safety Stock' (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Minimum stock level to maintain as a buffer. Used to calculate recommended reorder level: Reorder Level = Safety Stock + (Average Daily Consumption × Lead Time)."
+msgstr ""
+
+#. Label of the minute (Text Editor) field in DocType 'Quality Meeting Minutes'
+#. Name of a UOM
+#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Minute"
+msgstr "분"
+
+#. Label of the minutes (Table) field in DocType 'Quality Meeting'
+#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json
+msgid "Minutes"
+msgstr "분"
+
+#. Label of the section_break_19 (Section Break) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Miscellaneous"
+msgstr "여러 가지 잡다한"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+msgid "Miscellaneous Expenses"
+msgstr "기타 비용"
+
+#: erpnext/controllers/buying_controller.py:669
+msgid "Mismatch"
+msgstr "불일치"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
+msgid "Missing"
+msgstr "없어진"
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
+#: erpnext/assets/doctype/asset_category/asset_category.py:126
+msgid "Missing Account"
+msgstr "계정 누락"
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:191
+msgid "Missing Accounts"
+msgstr "누락된 계정"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:432
+msgid "Missing Asset"
+msgstr "누락된 자산"
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:186
+#: erpnext/assets/doctype/asset/asset.py:378
+msgid "Missing Cost Center"
+msgstr "누락된 비용 센터"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1148
+msgid "Missing Default in Company"
+msgstr ""
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:44
+msgid "Missing Filters"
+msgstr "누락된 필터"
+
+#: erpnext/assets/doctype/asset/asset.py:423
+msgid "Missing Finance Book"
+msgstr "누락된 금융 서적"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
+msgid "Missing Finished Good"
+msgstr "누락됨 완료됨 좋음"
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:312
+msgid "Missing Formula"
+msgstr "누락된 공식"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
+msgid "Missing Item"
+msgstr "누락된 품목"
+
+#: erpnext/setup/doctype/employee/employee.py:574
+msgid "Missing Parameter"
+msgstr "누락된 매개변수"
+
+#: erpnext/utilities/__init__.py:53
+msgid "Missing Payments App"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:249
+msgid "Missing Required Filter"
+msgstr "필수 필터가 누락되었습니다"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:297
+msgid "Missing Serial No Bundle"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:173
+msgid "Missing Warehouse"
+msgstr "사라진 창고"
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:156
+msgid "Missing account configuration for company {0} ."
+msgstr "회사 {0} 에 대한 계정 구성이 누락되었습니다."
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:156
+msgid "Missing email template for dispatch. Please set one in Delivery Settings."
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:250
+msgid "Missing required filter: {0}"
+msgstr "필수 필터가 누락되었습니다: {0}"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1228
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
+msgid "Missing value"
+msgstr "누락된 값"
+
+#. Label of the mixed_conditions (Check) field in DocType 'Pricing Rule'
+#. Label of the mixed_conditions (Check) field in DocType 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Mixed Conditions"
+msgstr "혼합 조건"
+
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:216
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:248
+#: erpnext/accounts/report/purchase_register/purchase_register.py:201
+#: erpnext/accounts/report/sales_register/sales_register.py:224
+msgid "Mode Of Payment"
+msgstr "결제 방식"
+
+#. Label of the mode_of_payment (Link) field in DocType 'Cashier Closing
+#. Payments'
+#. Label of the mode_of_payment (Link) field in DocType 'Journal Entry'
+#. Name of a DocType
+#. Label of the mode_of_payment (Data) field in DocType 'Mode of Payment'
+#. Label of the mode_of_payment (Link) field in DocType 'Overdue Payment'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Entry'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Order
+#. Reference'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Request'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Schedule'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Term'
+#. Label of the mode_of_payment (Link) field in DocType 'Payment Terms Template
+#. Detail'
+#. Label of the mode_of_payment (Link) field in DocType 'POS Closing Entry
+#. Detail'
+#. Label of the mode_of_payment (Link) field in DocType 'POS Opening Entry
+#. Detail'
+#. Label of the mode_of_payment (Link) field in DocType 'POS Payment Method'
+#. Label of the mode_of_payment (Link) field in DocType 'Purchase Invoice'
+#. Label of the mode_of_payment (Link) field in DocType 'Sales Invoice Payment'
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:253
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:456
+#: erpnext/accounts/doctype/cashier_closing_payments/cashier_closing_payments.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.json
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.js:126
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:40
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:244
+#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json
+#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:47
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.js:35
+#: erpnext/accounts/report/purchase_register/purchase_register.js:40
+#: erpnext/accounts/report/sales_register/sales_register.js:40
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/selling/page/point_of_sale/pos_controller.js:33
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Mode of Payment"
+msgstr "결제 방식"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/mode_of_payment_account/mode_of_payment_account.json
+msgid "Mode of Payment Account"
+msgstr "결제 방식 계좌"
+
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:35
+msgid "Mode of Payments"
+msgstr "결제 방식"
+
+#. Label of the model (Data) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Model"
+msgstr "모델"
+
+#. Label of the section_break_11 (Section Break) field in DocType 'POS Closing
+#. Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "Modes of Payment"
+msgstr "결제 방식"
+
+#: erpnext/templates/pages/projects.html:49
+#: erpnext/templates/pages/projects.html:70
+msgid "Modified On"
+msgstr "수정됨"
+
+#. Label of the module (Link) field in DocType 'Financial Report Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+msgid "Module (for Export)"
+msgstr ""
+
+#. Label of the monitor_for_last_x_days (Int) field in DocType 'Ledger Health
+#. Monitor'
+#: erpnext/accounts/doctype/ledger_health_monitor/ledger_health_monitor.json
+msgid "Monitor for Last 'X' days"
+msgstr ""
+
+#. Label of the frequency (Select) field in DocType 'Quality Goal'
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+msgid "Monitoring Frequency"
+msgstr "모니터링 빈도"
+
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment
+#. Schedule'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Schedule'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Term'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Term'
+#. Option for the 'Due Date Based On' (Select) field in DocType 'Payment Terms
+#. Template Detail'
+#. Option for the 'Discount Validity Based On' (Select) field in DocType
+#. 'Payment Terms Template Detail'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Month(s) after the end of the invoice month"
+msgstr ""
+
+#: erpnext/manufacturing/dashboard_fixtures.py:215
+msgid "Monthly Completed Work Orders"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:69
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Monthly Distribution"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json
+msgid "Monthly Distribution Percentage"
+msgstr ""
+
+#. Label of the percentages (Table) field in DocType 'Monthly Distribution'
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+msgid "Monthly Distribution Percentages"
+msgstr ""
+
+#: erpnext/manufacturing/dashboard_fixtures.py:244
+msgid "Monthly Quality Inspections"
+msgstr ""
+
+#. Option for the 'Subscription Price Based On' (Select) field in DocType
+#. 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Monthly Rate"
+msgstr "월 요금"
+
+#. Label of the monthly_sales_target (Currency) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Monthly Sales Target"
+msgstr ""
+
+#: erpnext/manufacturing/dashboard_fixtures.py:198
+msgid "Monthly Total Work Orders"
+msgstr ""
+
+#. Option for the 'Book Deferred Entries Based On' (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Months"
+msgstr "개월"
+
+#. Description of the 'Is Short/Long Year' (Check) field in DocType 'Fiscal
+#. Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "More/Less than 12 months."
+msgstr ""
+
+#. Description of the 'Hide Customer's Tax ID from sales transactions' (Check)
+#. field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Most Customers have a unique Tax ID that is fetched into selling transactions. Enable this setting if you do not want Customer Tax IDs to appear in sales transactions."
+msgstr "대부분의 고객은 판매 거래에 포함되는 고유한 세금 ID를 가지고 있습니다. 판매 거래에 고객 세금 ID가 표시되지 않도록 하려면 이 설정을 활성화하십시오."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:32
+msgid "Motion Picture & Video"
+msgstr "영화 및 비디오"
+
+#: erpnext/stock/dashboard/item_dashboard.js:216
+msgid "Move Item"
+msgstr "물건 이동"
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:239
+msgid "Move Stock"
+msgstr "주식 이동"
+
+#: erpnext/templates/includes/macros.html:169
+msgid "Move to Cart"
+msgstr "장바구니로 이동"
+
+#: erpnext/assets/doctype/asset/asset_dashboard.py:7
+msgid "Movement"
+msgstr "움직임"
+
+#. Option for the 'Default Stock Valuation Method' (Select) field in DocType
+#. 'Company'
+#. Option for the 'Valuation Method' (Select) field in DocType 'Item'
+#. Option for the 'Default Valuation Method' (Select) field in DocType 'Stock
+#. Settings'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Moving Average"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:82
+msgid "Moving up in tree ..."
+msgstr "나무 위로 올라가는 중..."
+
+#. Label of the multi_currency (Check) field in DocType 'Journal Entry'
+#. Label of the multi_currency (Check) field in DocType 'Journal Entry
+#. Template'
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Multi Currency"
+msgstr "다중 통화"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:42
+msgid "Multi-level BOM Creator"
+msgstr ""
+
+#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction
+#. Rule'
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Multiple Accounts"
+msgstr "여러 계정"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:283
+msgid "Multiple Accounts (Journal Template)"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:430
+msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
+msgid "Multiple POS Opening Entry"
+msgstr "다중 POS 개폐 항목"
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:347
+msgid "Multiple Price Rules exists with same criteria, please resolve conflict by assigning priority. Price Rules: {0}"
+msgstr "동일한 기준을 가진 가격 규칙이 여러 개 존재합니다. 우선순위를 지정하여 충돌을 해결하십시오. 가격 규칙: {0}"
+
+#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty
+#. Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Multiple Tier Program"
+msgstr "다단계 프로그램"
+
+#: erpnext/stock/doctype/item/item.js:233
+msgid "Multiple Variants"
+msgstr "다양한 변형"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:244
+msgid "Multiple company fields available: {0}. Please select manually."
+msgstr "여러 회사 필드가 있습니다: {0}. 수동으로 선택하십시오."
+
+#: erpnext/controllers/accounts_controller.py:1307
+msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
+msgid "Multiple items cannot be marked as finished item"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:33
+msgid "Music"
+msgstr "음악"
+
+#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
+#: erpnext/setup/doctype/uom/uom.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
+#: erpnext/utilities/transaction_base.py:628
+msgid "Must be Whole Number"
+msgstr "정수여야 합니다"
+
+#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Bank
+#. Statement Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Must be a publicly accessible Google Sheets URL and adding Bank Account column is necessary for importing via Google Sheets"
+msgstr ""
+
+#. Label of the mute_email (Check) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Mute Email"
+msgstr ""
+
+#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "N/A"
+msgstr "해당 없음"
+
+#. Label of the name_and_employee_id (Section Break) field in DocType 'Sales
+#. Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Name and Employee ID"
+msgstr "이름 및 직원 ID"
+
+#. Label of the name_of_beneficiary (Data) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Name of Beneficiary"
+msgstr "수혜자 이름"
+
+#: erpnext/accounts/doctype/account/account_tree.js:121
+msgid "Name of new Account. Note: Please don't create accounts for Customers and Suppliers"
+msgstr ""
+
+#. Description of the 'Distribution Name' (Data) field in DocType 'Monthly
+#. Distribution'
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.json
+msgid "Name of the Monthly Distribution"
+msgstr ""
+
+#. Label of the named_place (Data) field in DocType 'Purchase Invoice'
+#. Label of the named_place (Data) field in DocType 'Sales Invoice'
+#. Label of the named_place (Data) field in DocType 'Purchase Order'
+#. Label of the named_place (Data) field in DocType 'Request for Quotation'
+#. Label of the named_place (Data) field in DocType 'Supplier Quotation'
+#. Label of the named_place (Data) field in DocType 'Quotation'
+#. Label of the named_place (Data) field in DocType 'Sales Order'
+#. Label of the named_place (Data) field in DocType 'Delivery Note'
+#. Label of the named_place (Data) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Named Place"
+msgstr "이름이 붙은 장소"
+
+#. Label of the naming_series_prefix (Data) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Naming Series Prefix"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:95
+msgid "Naming Series is mandatory"
+msgstr ""
+
+#. Label of the naming_series_details (Small Text) field in DocType 'Buying
+#. Settings'
+#. Label of the naming_series_details (Small Text) field in DocType 'Selling
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Naming Series options"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:196
+msgid "Naming Series updated"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
+msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Nanocoulomb"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Nanogram/Litre"
+msgstr "나노그램/리터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Nanohertz"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Nanometer"
+msgstr "나노미터"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Nanosecond"
+msgstr ""
+
+#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Natural Gas"
+msgstr "천연가스"
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:3
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:439
+msgid "Needs Analysis"
+msgstr "요구 분석"
+
+#. Name of a report
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.json
+msgid "Negative Batch Report"
+msgstr "음성 배치 보고서"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
+msgid "Negative Quantity is not allowed"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1608
+#: erpnext/stock/serial_batch_bundle.py:1549
+msgid "Negative Stock Error"
+msgstr "부정적인 재고 오류"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
+msgid "Negative Valuation Rate is not allowed"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:8
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:444
+msgid "Negotiation/Review"
+msgstr "협상/검토"
+
+#. Label of the net_amount (Currency) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the net_amount (Float) field in DocType 'Cashier Closing'
+#. Label of the net_amount (Currency) field in DocType 'POS Invoice Item'
+#. Label of the net_amount (Currency) field in DocType 'Purchase Invoice Item'
+#. Label of the net_amount (Currency) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the net_amount (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the net_amount (Currency) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the net_amount (Currency) field in DocType 'Purchase Order Item'
+#. Label of the net_amount (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the net_amount (Currency) field in DocType 'Quotation Item'
+#. Label of the net_amount (Currency) field in DocType 'Sales Order Item'
+#. Label of the net_amount (Currency) field in DocType 'Delivery Note Item'
+#. Label of the net_amount (Currency) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Net Amount"
+msgstr "정"
+
+#. Label of the base_net_amount (Currency) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the base_net_amount (Currency) field in DocType 'POS Invoice Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the base_net_amount (Currency) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the base_net_amount (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Quotation Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Sales Order Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Delivery Note
+#. Item'
+#. Label of the base_net_amount (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Net Amount (Company Currency)"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:906
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:912
+msgid "Net Asset value as on"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:178
+msgid "Net Cash from Financing"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:171
+msgid "Net Cash from Investing"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:159
+msgid "Net Cash from Operations"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:164
+msgid "Net Change in Accounts Payable"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:163
+msgid "Net Change in Accounts Receivable"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:135
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:257
+msgid "Net Change in Cash"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:180
+msgid "Net Change in Equity"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:173
+msgid "Net Change in Fixed Asset"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:165
+msgid "Net Change in Inventory"
+msgstr ""
+
+#. Label of the hour_rate (Currency) field in DocType 'Workstation'
+#. Label of the hour_rate (Currency) field in DocType 'Workstation Type'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+msgid "Net Hour Rate"
+msgstr ""
+
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:214
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:215
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:121
+msgid "Net Profit"
+msgstr "순이익"
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:172
+msgid "Net Profit Ratio"
+msgstr ""
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:186
+msgid "Net Profit/Loss"
+msgstr "순이익/손실"
+
+#. Label of the net_purchase_amount (Currency) field in DocType 'Asset'
+#. Label of the net_purchase_amount (Currency) field in DocType 'Asset
+#. Depreciation Schedule'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:438
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:499
+msgid "Net Purchase Amount"
+msgstr "순 구매 금액"
+
+#: erpnext/assets/doctype/asset/asset.py:454
+msgid "Net Purchase Amount is mandatory"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:564
+msgid "Net Purchase Amount should be equal to purchase amount of one single Asset."
+msgstr "순 구매 금액은 단일 자산의 구매 금액과 같으므로 이어야 합니다."
+
+#: erpnext/assets/doctype/asset_depreciation_schedule/deppreciation_schedule_controller.py:387
+msgid "Net Purchase Amount {0} cannot be depreciated over {1} cycles."
+msgstr ""
+
+#. Label of the net_rate (Currency) field in DocType 'POS Invoice Item'
+#. Label of the net_rate (Currency) field in DocType 'Purchase Invoice Item'
+#. Label of the net_rate (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the net_rate (Currency) field in DocType 'Purchase Order Item'
+#. Label of the net_rate (Currency) field in DocType 'Supplier Quotation Item'
+#. Label of the net_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the net_rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the net_rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the net_rate (Currency) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Net Rate"
+msgstr "순 요금"
+
+#. Label of the base_net_rate (Currency) field in DocType 'POS Invoice Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Purchase Order Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the base_net_rate (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Net Rate (Company Currency)"
+msgstr ""
+
+#. Label of the net_total (Currency) field in DocType 'POS Closing Entry'
+#. Label of the net_total (Currency) field in DocType 'POS Invoice'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType 'POS
+#. Invoice'
+#. Option for the 'Apply Discount On' (Select) field in DocType 'POS Profile'
+#. Option for the 'Apply Discount On' (Select) field in DocType 'Pricing Rule'
+#. Label of the net_total (Currency) field in DocType 'Purchase Invoice'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Invoice'
+#. Label of the net_total (Currency) field in DocType 'Sales Invoice'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Sales Invoice'
+#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping
+#. Rule'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Subscription'
+#. Option for the 'Deduct Tax On Basis' (Select) field in DocType 'Tax
+#. Withholding Category'
+#. Label of the net_total (Currency) field in DocType 'Purchase Order'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Order'
+#. Label of the net_total (Currency) field in DocType 'Supplier Quotation'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Supplier Quotation'
+#. Label of the net_total (Currency) field in DocType 'Quotation'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Quotation'
+#. Label of the net_total (Currency) field in DocType 'Sales Order'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Sales Order'
+#. Label of the net_total (Currency) field in DocType 'Delivery Note'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Delivery Note'
+#. Label of the net_total (Currency) field in DocType 'Purchase Receipt'
+#. Option for the 'Apply Additional Discount On' (Select) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:19
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+#: erpnext/accounts/report/purchase_register/purchase_register.py:253
+#: erpnext/accounts/report/sales_register/sales_register.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:100
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:522
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:526
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:157
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/templates/includes/order/order_taxes.html:5
+msgid "Net Total"
+msgstr "순 합계"
+
+#. Label of the base_net_total (Currency) field in DocType 'POS Invoice'
+#. Label of the base_net_total (Currency) field in DocType 'Purchase Invoice'
+#. Label of the base_net_total (Currency) field in DocType 'Sales Invoice'
+#. Label of the base_net_total (Currency) field in DocType 'Purchase Order'
+#. Label of the base_net_total (Currency) field in DocType 'Supplier Quotation'
+#. Label of the base_net_total (Currency) field in DocType 'Quotation'
+#. Label of the base_net_total (Currency) field in DocType 'Sales Order'
+#. Label of the base_net_total (Currency) field in DocType 'Delivery Note'
+#. Label of the base_net_total (Currency) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Net Total (Company Currency)"
+msgstr "순 합계 (회사 통화)"
+
+#. Option for the 'Calculate Based On' (Select) field in DocType 'Shipping
+#. Rule'
+#. Label of the net_weight_pkg (Float) field in DocType 'Packing Slip'
+#. Label of the net_weight (Float) field in DocType 'Packing Slip Item'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+msgid "Net Weight"
+msgstr ""
+
+#. Label of the net_weight_uom (Link) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Net Weight UOM"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1667
+msgid "Net total calculation precision loss"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account_tree.js:119
+msgid "New Account Name"
+msgstr "새 계정 이름"
+
+#. Label of the new_asset_value (Currency) field in DocType 'Asset Value
+#. Adjustment'
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+msgid "New Asset Value"
+msgstr "새로운 자산 가치"
+
+#: erpnext/assets/dashboard_fixtures.py:169
+msgid "New Assets (This Year)"
+msgstr "신규 자산 (올해)"
+
+#. Label of the new_bom (Link) field in DocType 'BOM Update Log'
+#. Label of the new_bom (Link) field in DocType 'BOM Update Tool'
+#: erpnext/manufacturing/doctype/bom/bom_tree.js:62
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "New BOM"
+msgstr "새로운 BOM"
+
+#. Label of the new_balance_in_account_currency (Currency) field in DocType
+#. 'Exchange Rate Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "New Balance In Account Currency"
+msgstr ""
+
+#. Label of the new_balance_in_base_currency (Currency) field in DocType
+#. 'Exchange Rate Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "New Balance In Base Currency"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.js:169
+msgid "New Batch ID (Optional)"
+msgstr "새 배치 ID (선택 사항)"
+
+#: erpnext/stock/doctype/batch/batch.js:163
+msgid "New Batch Qty"
+msgstr "새로운 배치 수량"
+
+#: erpnext/accounts/doctype/account/account_tree.js:108
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:18
+#: erpnext/setup/doctype/company/company_tree.js:23
+msgid "New Company"
+msgstr "새로운 회사"
+
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:26
+msgid "New Cost Center Name"
+msgstr "새로운 비용 센터 이름"
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:30
+msgid "New Customer Revenue"
+msgstr "신규 고객 수익"
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:15
+msgid "New Customers"
+msgstr "신규 고객"
+
+#: erpnext/setup/doctype/department/department_tree.js:18
+msgid "New Department"
+msgstr "신설 부서"
+
+#: erpnext/setup/doctype/employee/employee_tree.js:29
+msgid "New Employee"
+msgstr ""
+
+#. Label of the new_exchange_rate (Float) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "New Exchange Rate"
+msgstr "새로운 환율"
+
+#. Label of the expenses_booked (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Expenses"
+msgstr "새로운 비용"
+
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:1
+msgid "New Fiscal Year - {0}"
+msgstr "새 회계연도 - {0}"
+
+#. Label of the income (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Income"
+msgstr "새로운 수입"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:259
+msgid "New Invoice"
+msgstr "새 송장"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:337
+msgid "New Journal Entry will be posted for the difference amount. The Posting Date can be modified."
+msgstr ""
+
+#. Label of a number card in the CRM Workspace
+#: erpnext/crm/workspace/crm/crm.json
+msgid "New Lead (Last 1 Month)"
+msgstr ""
+
+#: erpnext/assets/doctype/location/location_tree.js:23
+msgid "New Location"
+msgstr "새로운 위치"
+
+#: erpnext/public/js/templates/crm_notes.html:7
+msgid "New Note"
+msgstr "새로운 노트"
+
+#. Label of a number card in the CRM Workspace
+#: erpnext/crm/workspace/crm/crm.json
+msgid "New Opportunity (Last 1 Month)"
+msgstr "새로운 기회 (지난 1개월)"
+
+#. Label of the purchase_invoice (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Purchase Invoice"
+msgstr "새 구매 송장"
+
+#. Label of the purchase_order (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Purchase Orders"
+msgstr "신규 구매 주문"
+
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:24
+msgid "New Quality Procedure"
+msgstr "새로운 품질 관리 절차"
+
+#. Label of the new_quotations (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Quotations"
+msgstr "새로운 견적"
+
+#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:68
+msgid "New Rule"
+msgstr "새로운 규칙"
+
+#. Label of the sales_invoice (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Sales Invoice"
+msgstr "새로운 판매 송장"
+
+#. Label of the sales_order (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "New Sales Orders"
+msgstr "신규 판매 주문"
+
+#: erpnext/setup/doctype/sales_person/sales_person_tree.js:3
+msgid "New Sales Person Name"
+msgstr "새로운 영업 사원 이름"
+
+#: erpnext/stock/doctype/serial_no/serial_no.py:70
+msgid "New Serial No cannot have Warehouse. Warehouse must be set by Stock Entry or Purchase Receipt"
+msgstr ""
+
+#: erpnext/public/js/templates/crm_activities.html:8
+#: erpnext/public/js/utils/crm_activities.js:69
+msgid "New Task"
+msgstr "새로운 작업"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:244
+msgid "New Version"
+msgstr "새 버전"
+
+#: erpnext/stock/doctype/warehouse/warehouse_tree.js:16
+msgid "New Warehouse Name"
+msgstr "새로운 창고 이름"
+
+#. Label of the new_workplace (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "New Workplace"
+msgstr "새로운 업무 공간"
+
+#: erpnext/selling/doctype/customer/customer.py:395
+msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
+msgstr ""
+
+#. Description of the 'Generate New Invoices Past Due Date' (Check) field in
+#. DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "New invoices will be generated as per schedule even if current invoices are unpaid or past due date"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:261
+msgid "New release date should be in the future"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.js:91
+msgid "New revised budget created successfully"
+msgstr ""
+
+#: erpnext/templates/pages/projects.html:37
+msgid "New task"
+msgstr "새로운 작업"
+
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:254
+msgid "New {0} pricing rules are created"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:34
+msgid "Newspaper Publishers"
+msgstr "신문 발행인들"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Newton"
+msgstr "뉴턴"
+
+#. Label of the next_depreciation_date (Date) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Next Depreciation Date"
+msgstr ""
+
+#. Label of the next_due_date (Date) field in DocType 'Asset Maintenance Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Next Due Date"
+msgstr "다음 납부일"
+
+#. Label of the next_send (Data) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Next email will be sent on:"
+msgstr "다음 이메일은 다음 날짜에 발송될 예정입니다:"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:155
+msgid "No Account Data row found"
+msgstr ""
+
+#: erpnext/setup/doctype/company/test_company.py:94
+msgid "No Account matched these filters: {}"
+msgstr "다음 필터 조건에 맞는 계정이 없습니다: {}"
+
+#: erpnext/quality_management/doctype/quality_review/quality_review_list.js:5
+msgid "No Action"
+msgstr "조치 없음"
+
+#. Option for the 'Status' (Select) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "No Answer"
+msgstr "답변 없음"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
+msgid "No Customer found for Inter Company Transactions which represents company {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:164
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:430
+msgid "No Customers found with selected options."
+msgstr "선택하신 옵션에 해당하는 고객이 없습니다."
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:146
+msgid "No Delivery Note selected for Customer {}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
+msgstr "삭제할 문서 유형 목록에 문서 유형이 없습니다. 제출하기 전에 목록을 생성하거나 가져오세요."
+
+#: erpnext/public/js/utils/ledger_preview.js:64
+msgid "No Impact on Accounting Ledger"
+msgstr "회계 장부에 영향 없음"
+
+#: erpnext/stock/get_item_details.py:326
+msgid "No Item with Barcode {0}"
+msgstr "바코드가 있는 품목 없음 {0}"
+
+#: erpnext/stock/get_item_details.py:330
+msgid "No Item with Serial No {0}"
+msgstr "일련번호가 있는 품목 없음 {0}"
+
+#: erpnext/controllers/subcontracting_controller.py:1461
+msgid "No Items selected for transfer."
+msgstr "이송할 품목이 선택되지 않았습니다."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1298
+msgid "No Items with Bill of Materials to Manufacture or all items already manufactured"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1451
+msgid "No Items with Bill of Materials."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:857
+msgid "No Match"
+msgstr "일치하는 항목 없음"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:15
+msgid "No Matching Bank Transactions Found"
+msgstr ""
+
+#: erpnext/public/js/templates/crm_notes.html:46
+msgid "No Notes"
+msgstr "메모 없음"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:239
+msgid "No Outstanding Invoices found for this party"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:671
+msgid "No POS Profile found. Please create a New POS Profile first"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
+#: erpnext/stock/doctype/item/item.py:1492
+msgid "No Permission"
+msgstr "허가 없음"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:791
+msgid "No Purchase Orders were created"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:22
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:39
+msgid "No Records for these settings."
+msgstr "해당 설정에 대한 기록이 없습니다."
+
+#: erpnext/public/js/utils/unreconcile.js:147
+msgid "No Selection"
+msgstr "선택 안 함"
+
+#: erpnext/controllers/sales_and_purchase_return.py:972
+msgid "No Serial / Batches are available for return"
+msgstr ""
+
+#: erpnext/stock/dashboard/item_dashboard.js:154
+msgid "No Stock Available Currently"
+msgstr ""
+
+#: erpnext/public/js/templates/call_link.html:30
+msgid "No Summary"
+msgstr "요약 없음"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
+msgid "No Supplier found for Inter Company Transactions which represents company {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
+msgid "No Tax Withholding data found for the current posting date."
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
+msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
+msgstr ""
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
+msgid "No Terms"
+msgstr "약관 없음"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:236
+msgid "No Unreconciled Invoices and Payments found for this party and account"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:241
+msgid "No Unreconciled Payments found for this party"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:788
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:250
+msgid "No Work Orders were created"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:837
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:930
+msgid "No accounting entries for the following warehouses"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:412
+msgid "No accounts configured"
+msgstr ""
+
+#: banking/src/components/common/AccountsDropdown.tsx:157
+msgid "No accounts found."
+msgstr "계정을 찾을 수 없습니다."
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
+msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
+msgstr ""
+
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.js:46
+msgid "No additional fields available"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1370
+msgid "No available quantity to reserve for item {0} in warehouse {1}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankPicker.tsx:63
+msgid "No bank accounts found"
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:249
+msgid "No bank statements imported yet"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:288
+msgid "No bank transactions found"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:497
+msgid "No billing email found for customer: {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:66
+msgid "No company found."
+msgstr "해당 회사를 찾을 수 없습니다."
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.py:449
+msgid "No contacts with email IDs found."
+msgstr "이메일 주소가 있는 연락처를 찾을 수 없습니다."
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:137
+msgid "No data for this period"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:46
+msgid "No data found. Seems like you uploaded a blank file"
+msgstr ""
+
+#: erpnext/templates/generators/bom.html:85
+msgid "No description given"
+msgstr "설명 없음"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:227
+msgid "No difference found for stock account {0}"
+msgstr ""
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:150
+msgid "No email found for {0} {1}"
+msgstr ""
+
+#: erpnext/telephony/doctype/call_log/call_log.py:117
+msgid "No employee was scheduled for call popup"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:235
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:225
+msgid "No entries found"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:214
+msgid "No entries with a payment document in this list."
+msgstr "이 목록에는 결제 서류가 있는 항목이 없습니다."
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:73
+msgid "No file uploaded or URL provided."
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:280
+msgid "No invoice linked"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_controller.py:1350
+msgid "No item available for transfer."
+msgstr "이체 가능한 품목이 없습니다."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:159
+msgid "No items are available in sales orders {0} for production"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:156
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:168
+msgid "No items are available in the sales order {0} for production"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:401
+msgid "No items found. Scan barcode again."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:76
+msgid "No items in cart"
+msgstr "장바구니에 상품이 없습니다"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1043
+msgid "No matches occurred via auto reconciliation"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1040
+msgid "No material request created"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:199
+msgid "No more children on Left"
+msgstr "왼쪽에는 더 이상 어린이가 없습니다"
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:213
+msgid "No more children on Right"
+msgstr "오른쪽에 더 이상 어린이는 없습니다"
+
+#: erpnext/public/js/utils/naming_series.js:385
+msgid "No naming series defined"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:638
+msgid "No of Deliveries"
+msgstr "배송 횟수"
+
+#. Label of the no_of_docs (Int) field in DocType 'Transaction Deletion Record
+#. Details'
+#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json
+msgid "No of Docs"
+msgstr "문서 수"
+
+#. Label of the no_of_employees (Select) field in DocType 'Lead'
+#. Label of the no_of_employees (Select) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "No of Employees"
+msgstr "직원 수"
+
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:61
+msgid "No of Interactions"
+msgstr "상호작용 횟수"
+
+#. Label of the total_reposting_count (Int) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "No of Items to Repost"
+msgstr "다시 게시할 항목 수"
+
+#. Label of the no_of_months_exp (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "No of Months (Expense)"
+msgstr "개월 수 (비용)"
+
+#. Label of the no_of_months (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "No of Months (Revenue)"
+msgstr "개월 수 (수익)"
+
+#. Label of the no_of_parallel_reposting (Int) field in DocType 'Stock
+#. Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "No of Parallel Reposting (Per Item)"
+msgstr ""
+
+#. Label of the no_of_shares (Int) field in DocType 'Share Balance'
+#. Label of the no_of_shares (Int) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/report/share_balance/share_balance.py:59
+#: erpnext/accounts/report/share_ledger/share_ledger.py:55
+msgid "No of Shares"
+msgstr "주식 수"
+
+#. Label of the no_of_shift (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "No of Shift"
+msgstr "교대 근무 횟수"
+
+#. Label of the no_of_units_produced (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "No of Units Produced"
+msgstr "생산된 제품 수"
+
+#. Label of the no_of_visits (Int) field in DocType 'Maintenance Schedule Item'
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+msgid "No of Visits"
+msgstr "방문 횟수"
+
+#. Label of the no_of_workstations (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "No of Workstations"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:320
+msgid "No open Material Requests found for the given criteria."
+msgstr "제시된 기준에 맞는 공개 자재 요청이 없습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
+msgid "No open POS Opening Entry found for POS Profile {0}."
+msgstr "POS 프로필 {0}에 대한 열린 POS 개시 항목을 찾을 수 없습니다."
+
+#: erpnext/public/js/templates/crm_activities.html:145
+msgid "No open event"
+msgstr "공개 행사 없음"
+
+#: erpnext/public/js/templates/crm_activities.html:57
+msgid "No open task"
+msgstr "열려있는 작업 없음"
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:331
+msgid "No outstanding invoices found"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:329
+msgid "No outstanding invoices require exchange rate revaluation"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2432
+msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
+msgstr "지정한 필터 조건을 만족하는 {0} 이 {1} {2} 에 대해 발견되지 않았습니다."
+
+#: erpnext/public/js/controllers/buying.js:531
+msgid "No pending Material Requests found to link for the given items."
+msgstr "해당 품목과 연결할 수 있는 보류 중인 자재 요청이 없습니다."
+
+#: erpnext/public/js/controllers/transaction.js:472
+msgid "No pending payment schedules available."
+msgstr "현재 예정된 지불 일정이 없습니다."
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:504
+msgid "No primary email found for customer: {0}"
+msgstr ""
+
+#: erpnext/templates/includes/product_list.js:41
+msgid "No products found."
+msgstr "제품을 찾을 수 없습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:1017
+msgid "No recent transactions found"
+msgstr ""
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:158
+msgid "No recipients found for campaign {0}"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:103
+msgid "No reconciliation actions found"
+msgstr ""
+
+#: erpnext/accounts/report/purchase_register/purchase_register.py:45
+#: erpnext/accounts/report/sales_register/sales_register.py:46
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:18
+msgid "No record found"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:745
+msgid "No records found in Allocation table"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:622
+msgid "No records found in the Invoices table"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:625
+msgid "No records found in the Payments table"
+msgstr ""
+
+#: erpnext/public/js/stock_reservation.js:222
+msgid "No reserved stock to unreserve."
+msgstr "예약된 재고를 해제할 수 없습니다."
+
+#: banking/src/components/common/LinkFieldCombobox.tsx:268
+msgid "No results found."
+msgstr "검색 결과가 없습니다."
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:225
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:208
+msgid "No rows to display."
+msgstr "표시할 행이 없습니다."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:152
+msgid "No rows with zero document count found"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:201
+msgid "No rules setup yet"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.js:77
+msgid "No stock available for this batch."
+msgstr "해당 제품은 재고가 없습니다."
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
+msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
+msgstr ""
+
+#. Description of the 'Stock Frozen Up To' (Date) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "No stock transactions can be created or modified before this date."
+msgstr "이 날짜 이전에는 주식 거래를 생성하거나 수정할 수 없습니다."
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:59
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:68
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:59
+msgid "No transaction selected"
+msgstr "선택된 거래 없음"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:222
+msgid "No transactions found for the given filters."
+msgstr "지정된 필터 조건에 맞는 거래 내역이 없습니다."
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:222
+msgid "No unreconciled transactions found"
+msgstr ""
+
+#: erpnext/templates/includes/macros.html:291
+#: erpnext/templates/includes/macros.html:324
+msgid "No values"
+msgstr "값이 없습니다"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:756
+msgid "No vouchers found for this transaction"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
+msgid "No {0} found for Inter Company Transactions."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:377
+msgid "No."
+msgstr "아니요."
+
+#. Label of the no_of_employees (Select) field in DocType 'Prospect'
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "No. of Employees"
+msgstr "직원 수"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:66
+msgid "No. of parallel job cards which can be allowed on this workstation. Example: 2 would mean this workstation can process production for two Work Orders at a time."
+msgstr ""
+
+#. Label of a number card in the Projects Workspace
+#: erpnext/projects/workspace/projects/projects.json
+msgid "Non Completed Tasks"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Non Conformance"
+msgstr "부적합"
+
+#. Label of the non_depreciable_category (Check) field in DocType 'Asset
+#. Category'
+#: erpnext/assets/doctype/asset_category/asset_category.json
+msgid "Non Depreciable Category"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:184
+msgid "Non Profit"
+msgstr "비영리 단체"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1644
+msgid "Non stock items"
+msgstr "재고가 없는 품목"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+msgid "Non-Current Liabilities"
+msgstr ""
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:95
+msgid "Non-Zeros"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:117
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:113
+msgid "Non-phantom BOM cannot be created for non-stock item {0}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:562
+msgid "None of the items have any change in quantity or value."
+msgstr "어떤 품목도 수량이나 가치에 변동이 없습니다."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json erpnext/stock/utils.py:695
+#: erpnext/stock/utils.py:697
+msgid "Nos"
+msgstr "번호"
+
+#. Label of the not_applicable (Check) field in DocType 'Item Tax Template
+#. Detail'
+#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Based On' (Select) field in DocType 'Authorization Rule'
+#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+msgid "Not Applicable"
+msgstr "해당 없음"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:824
+#: erpnext/selling/page/point_of_sale/pos_controller.js:853
+msgid "Not Available"
+msgstr "이용 불가"
+
+#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Not Billed"
+msgstr "청구되지 않음"
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:190
+msgid "Not Cleared"
+msgstr "승인되지 않음"
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Not Delivered"
+msgstr ""
+
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Not Initiated"
+msgstr "시작되지 않음"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:125
+msgid "Not Reconciled"
+msgstr "조정되지 않음"
+
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales
+#. Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Not Requested"
+msgstr "요청하지 않음"
+
+#: erpnext/selling/report/lost_quotations/lost_quotations.py:84
+#: erpnext/support/report/issue_analytics/issue_analytics.py:210
+#: erpnext/support/report/issue_summary/issue_summary.py:206
+#: erpnext/support/report/issue_summary/issue_summary.py:287
+msgid "Not Specified"
+msgstr "명시되지 않음"
+
+#. Option for the 'Status' (Select) field in DocType 'Bank Statement Import
+#. Log'
+#. Option for the 'Status' (Select) field in DocType 'Production Plan'
+#. Option for the 'Status' (Select) field in DocType 'Work Order'
+#. Option for the 'Transfer Status' (Select) field in DocType 'Material
+#. Request'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan_list.js:7
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order/work_order_list.js:15
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:9
+msgid "Not Started"
+msgstr "시작 안 함"
+
+#: erpnext/accounts/report/cash_flow/cash_flow.py:406
+msgid "Not able to find the earliest Fiscal Year for the given company."
+msgstr "해당 회사의 가장 빠른 회계연도를 찾을 수 없습니다."
+
+#: erpnext/stock/doctype/item_alternative/item_alternative.py:35
+msgid "Not allow to set alternative item for the item {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
+msgid "Not allowed to create accounting dimension for {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:268
+msgid "Not allowed to update stock transactions older than {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/authorization_control/authorization_control.py:59
+msgid "Not authorized since {0} exceeds limits"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:430
+msgid "Not authorized to edit frozen Account {0}"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:326
+msgid "Not configured"
+msgstr "구성되지 않음"
+
+#: erpnext/templates/form_grid/stock_entry_grid.html:26
+msgid "Not in Stock"
+msgstr "재고 없음"
+
+#: erpnext/templates/includes/products_as_grid.html:20
+msgid "Not in stock"
+msgstr "재고 없음"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1302
+msgid "Not permitted to make Purchase Orders"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log_list.js:21
+msgid "Note: Automatic log deletion only applies to logs of type Update Cost "
+msgstr "참고: 자동 로그 삭제는 유형의 로그에만 적용됩니다. 업데이트 비용 "
+
+#: erpnext/accounts/party.py:695
+msgid "Note: Due Date exceeds allowed {0} credit days by {1} day(s)"
+msgstr ""
+
+#. Description of the 'Recipients' (Table MultiSelect) field in DocType 'Email
+#. Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Note: Email will not be sent to disabled users"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:800
+msgid "Note: If you want to use the finished good {0} as a raw material, then enable the 'Do Not Explode' checkbox in the Items table against the same raw material."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:94
+msgid "Note: Item {0} added multiple times"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:713
+msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.js:30
+msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
+msgstr "참고: 이 비용 센터는 그룹입니다. 그룹에 대해서는 회계 처리를 할 수 없습니다."
+
+#: erpnext/stock/doctype/item/item.py:694
+msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
+msgstr "참고: 품목을 병합하려면 이전 품목에 대해 별도의 재고 조정을 생성하십시오. {0}"
+
+#. Label of the notes (Small Text) field in DocType 'Asset Depreciation
+#. Schedule'
+#. Label of the notes (Text) field in DocType 'Contract Fulfilment Checklist'
+#. Label of the notes_tab (Tab Break) field in DocType 'Lead'
+#. Label of the notes (Table) field in DocType 'Lead'
+#. Label of the notes (Table) field in DocType 'Opportunity'
+#. Label of the notes (Table) field in DocType 'Prospect'
+#. Label of the section_break0 (Section Break) field in DocType 'Project'
+#. Label of the notes (Text Editor) field in DocType 'Project'
+#. Label of the sb_01 (Section Break) field in DocType 'Quality Review'
+#. Label of the notes (Small Text) field in DocType 'Manufacturer'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:12
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:44
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:14
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/www/book_appointment/index.html:55
+msgid "Notes"
+msgstr "메모"
+
+#. Label of the notes_html (HTML) field in DocType 'Lead'
+#. Label of the notes_html (HTML) field in DocType 'Opportunity'
+#. Label of the notes_html (HTML) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Notes HTML"
+msgstr "메모 HTML"
+
+#: erpnext/templates/pages/rfq.html:67
+msgid "Notes: "
+msgstr "참고: "
+
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:60
+#: erpnext/accounts/report/gross_and_net_profit_report/gross_and_net_profit_report.py:61
+msgid "Nothing is included in gross"
+msgstr ""
+
+#: erpnext/templates/includes/product_list.js:45
+msgid "Nothing more to show."
+msgstr "더 보여드릴 게 없습니다."
+
+#. Label of the notice_number_of_days (Int) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Notice (days)"
+msgstr "통지 기간(일)"
+
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:47
+msgid "Notify Customers via Email"
+msgstr "이메일을 통해 고객에게 알림"
+
+#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard'
+#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+msgid "Notify Employee"
+msgstr "직원에게 알림"
+
+#. Label of the notify_employee (Check) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Notify Other"
+msgstr "다른 사람에게 알림"
+
+#. Label of the notify_reposting_error_to_role (Link) field in DocType 'Stock
+#. Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Notify Reposting Error to Role"
+msgstr ""
+
+#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard'
+#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the notify_supplier (Check) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Notify Supplier"
+msgstr ""
+
+#. Label of the email_reminders (Check) field in DocType 'Appointment Booking
+#. Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Notify Via Email"
+msgstr "이메일로 알림"
+
+#. Label of the reorder_email_notify (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Notify by Email on Creation of Automatic Material Request"
+msgstr "자동 자재 요청 생성 시 이메일로 알림"
+
+#. Description of the 'Notify Via Email' (Check) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Notify customer and agent via email on the day of the appointment."
+msgstr "예약 당일 고객과 담당자에게 이메일로 알림을 보내십시오."
+
+#. Label of the number_of_agents (Int) field in DocType 'Appointment Booking
+#. Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Number of Concurrent Appointments"
+msgstr "동시 예약 수"
+
+#. Label of the number_of_days (Int) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Number of Days"
+msgstr "일수"
+
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.js:14
+msgid "Number of Interaction"
+msgstr "상호작용 횟수"
+
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:78
+msgid "Number of Order"
+msgstr "주문 번호"
+
+#. Label of the number_of_transactions (Int) field in DocType 'Bank Statement
+#. Import Log'
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:164
+#: banking/src/pages/BankStatementImporter.tsx:224
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Number of Transactions"
+msgstr "거래 건수"
+
+#. Label of the demand_number (Int) field in DocType 'Sales Forecast'
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+msgid "Number of Weeks / Months"
+msgstr "주/월 수"
+
+#. Description of the 'Grace Period' (Int) field in DocType 'Subscription
+#. Settings'
+#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json
+msgid "Number of days after invoice date has elapsed before canceling subscription or marking subscription as unpaid"
+msgstr ""
+
+#. Label of the advance_booking_days (Int) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Number of days appointments can be booked in advance"
+msgstr "예약 가능한 일수"
+
+#. Description of the 'Days Until Due' (Int) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Number of days that the subscriber has to pay invoices generated by this subscription"
+msgstr ""
+
+#. Description of the 'Match transfers within 'N' days' (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Number of days to consider for matching transfers across bank accounts"
+msgstr "은행 계좌 간 이체 내역을 대조할 때 고려해야 할 일수"
+
+#: banking/src/components/features/Settings/Preferences.tsx:58
+#: banking/src/components/features/Settings/Preferences.tsx:148
+msgid "Number of days to match transfers"
+msgstr ""
+
+#. Description of the 'Billing Interval Count' (Int) field in DocType
+#. 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Number of intervals for the interval field e.g if Interval is 'Days' and Billing Interval Count is 3, invoices will be generated every 3 days"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account_tree.js:129
+msgid "Number of new Account, it will be included in the account name as a prefix"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:39
+msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
+msgstr ""
+
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
+#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
+#. Parameter'
+#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Numeric"
+msgstr "숫자"
+
+#. Label of the section_break_14 (Section Break) field in DocType 'Quality
+#. Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Numeric Inspection"
+msgstr "수치 검사"
+
+#. Label of the numeric_values (Check) field in DocType 'Item Attribute'
+#. Label of the numeric_values (Check) field in DocType 'Item Variant
+#. Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Numeric Values"
+msgstr "숫자 값"
+
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:88
+msgid "Numero has not set in the XML file"
+msgstr ""
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "O+"
+msgstr "오+"
+
+#. Option for the 'Blood Group' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "O-"
+msgstr ""
+
+#. Label of the objective (Text) field in DocType 'Quality Goal Objective'
+#. Label of the objective (Text) field in DocType 'Quality Review Objective'
+#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json
+#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json
+msgid "Objective"
+msgstr "목적"
+
+#. Label of the sb_01 (Section Break) field in DocType 'Quality Goal'
+#. Label of the objectives (Table) field in DocType 'Quality Goal'
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+msgid "Objectives"
+msgstr "목표"
+
+#. Label of the last_odometer (Int) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Odometer Value (Last)"
+msgstr ""
+
+#. Label of the scheduled_confirmation_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Offer Date"
+msgstr "제안 날짜"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+msgid "Office Equipment"
+msgstr "사무기기"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+msgid "Office Maintenance Expenses"
+msgstr "사무실 유지 관리 비용"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
+msgid "Office Rent"
+msgstr "사무실 임대"
+
+#. Label of the offsetting_account (Link) field in DocType 'Accounting
+#. Dimension Detail'
+#: erpnext/accounts/doctype/accounting_dimension_detail/accounting_dimension_detail.json
+msgid "Offsetting Account"
+msgstr "상쇄 계정"
+
+#: erpnext/accounts/general_ledger.py:93
+msgid "Offsetting for Accounting Dimension"
+msgstr "회계 차원에 대한 상쇄"
+
+#. Label of the old_parent (Data) field in DocType 'Account'
+#. Label of the old_parent (Data) field in DocType 'Location'
+#. Label of the old_parent (Data) field in DocType 'Task'
+#. Label of the old_parent (Data) field in DocType 'Department'
+#. Label of the old_parent (Data) field in DocType 'Employee'
+#. Label of the old_parent (Link) field in DocType 'Supplier Group'
+#. Label of the old_parent (Link) field in DocType 'Warehouse'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Old Parent"
+msgstr ""
+
+#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Oldest Of Invoice Or Advance"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1037
+msgid "On Hand"
+msgstr "재고 있음"
+
+#. Label of the on_hold_since (Datetime) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "On Hold Since"
+msgstr "보류 중"
+
+#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "On Item Quantity"
+msgstr "품목 수량에 관하여"
+
+#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "On Net Total"
+msgstr "순 총액"
+
+#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+msgid "On Paid Amount"
+msgstr "지불된 금액에 대하여"
+
+#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "On Previous Row Amount"
+msgstr "이전 행 금액"
+
+#. Option for the 'Type' (Select) field in DocType 'Advance Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Purchase Taxes and Charges'
+#. Option for the 'Type' (Select) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "On Previous Row Total"
+msgstr "이전 행 합계"
+
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:16
+msgid "On This Date"
+msgstr "오늘 날짜에"
+
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:84
+msgid "On Track"
+msgstr "순조롭게 진행 중"
+
+#. Description of the 'Enable Immutable Ledger' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "On enabling this cancellation entries will be posted on the actual cancellation date and reports will consider cancelled entries as well"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:726
+msgid "On expanding a row in the Items to Manufacture table, you'll see an option to 'Include Exploded Items'. Ticking this includes raw materials of the sub-assembly items in the production process."
+msgstr ""
+
+#. Description of the 'Excluded Fee' (Currency) field in DocType 'Bank
+#. Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "On save, the Excluded Fee will be converted to an Included Fee."
+msgstr "저장 시 제외된 수수료는 포함된 수수료로 변경됩니다."
+
+#. Description of the 'Use Serial / Batch Fields' (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "On submission of the stock transaction, system will auto create the Serial and Batch Bundle based on the Serial No / Batch fields."
+msgstr ""
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "On-machine press checks"
+msgstr ""
+
+#. Title of the Module Onboarding 'Stock Onboarding'
+#: erpnext/selling/module_onboarding/stock_onboarding/stock_onboarding.json
+msgid "Onboarding for Stock!"
+msgstr "주식 시장 진입 가이드!"
+
+#. Description of the 'Release Date' (Date) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Once set, this invoice will be on hold till the set date"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
+msgid "Once the Work Order is Closed. It can't be resumed."
+msgstr "작업 지시가 종료되면 다시 재개할 수 없습니다."
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:39
+msgid "One customer can be part of only single Loyalty Program."
+msgstr "고객은 하나의 로열티 프로그램에만 참여할 수 있습니다."
+
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Ongoing"
+msgstr "전진"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:228
+msgid "Ongoing Job Cards"
+msgstr "진행 중인 작업 카드"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:35
+msgid "Online Auctions"
+msgstr "온라인 경매"
+
+#. Description of the 'Default Advance Account' (Link) field in DocType
+#. 'Payment Reconciliation'
+#. Description of the 'Default Advance Account' (Link) field in DocType
+#. 'Process Payment Reconciliation'
+#. Description of the 'Default Advance Received Account' (Link) field in
+#. DocType 'Company'
+#. Description of the 'Default Advance Paid Account' (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Only 'Payment Entries' made against this advance account are supported."
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:105
+msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
+msgid "Only CSV files are allowed"
+msgstr ""
+
+#. Label of the tax_on_excess_amount (Check) field in DocType 'Tax Withholding
+#. Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Only Deduct Tax On Excess Amount "
+msgstr ""
+
+#. Label of the only_include_allocated_payments (Check) field in DocType
+#. 'Purchase Invoice'
+#. Label of the only_include_allocated_payments (Check) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Only Include Allocated Payments"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:137
+msgid "Only Parent can be of type {0}"
+msgstr ""
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:57
+msgid "Only Value available for Payment Entry"
+msgstr ""
+
+#. Description of the 'Posting Date Inheritance for Exchange Gain / Loss'
+#. (Select) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Only applies for Normal Payments"
+msgstr ""
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:43
+msgid "Only existing assets"
+msgstr "기존 자산만 해당"
+
+#. Description of the 'Is Group' (Check) field in DocType 'Customer Group'
+#. Description of the 'Is Group' (Check) field in DocType 'Item Group'
+#. Description of the 'Is Group' (Check) field in DocType 'Supplier Group'
+#. Description of the 'Is Group' (Check) field in DocType 'Territory'
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Only leaf nodes are allowed in transaction"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:350
+msgid "Only one of Deposit or Withdrawal should be non-zero when applying an Excluded Fee."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:331
+msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
+msgid "Only one {0} entry can be created against the Work Order {1}"
+msgstr ""
+
+#. Description of the 'Customer Groups' (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Only show Customer of these Customer Groups"
+msgstr ""
+
+#. Description of the 'Item Groups' (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Only show Items from these Item Groups"
+msgstr ""
+
+#. Description of the 'Customer' (Link) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Only to be used for Subcontracting Inward."
+msgstr "하도급을 통한 내부 생산에만 사용하십시오."
+
+#. Description of the 'Rounding Loss Allowance' (Float) field in DocType
+#. 'Exchange Rate Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Only values between [0,1) are allowed. Like {0.00, 0.04, 0.09, ...}\n"
+"Ex: If allowance is set at 0.07, accounts that have balance of 0.07 in either of the currencies will be considered as zero balance account"
+msgstr ""
+
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.py:43
+msgid "Only {0} are supported"
+msgstr ""
+
+#. Label of the open_activities_html (HTML) field in DocType 'Lead'
+#. Label of the open_activities_html (HTML) field in DocType 'Opportunity'
+#. Label of the open_activities_html (HTML) field in DocType 'Prospect'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Open Activities HTML"
+msgstr "활동 열기 HTML"
+
+#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:24
+msgid "Open BOM {0}"
+msgstr "BOM 열기 {0}"
+
+#: erpnext/public/js/templates/call_link.html:11
+msgid "Open Call Log"
+msgstr "통화 기록 열기"
+
+#: erpnext/public/js/call_popup/call_popup.js:116
+msgid "Open Contact"
+msgstr ""
+
+#: erpnext/public/js/templates/crm_activities.html:117
+#: erpnext/public/js/templates/crm_activities.html:164
+msgid "Open Event"
+msgstr "오픈 이벤트"
+
+#: erpnext/public/js/templates/crm_activities.html:104
+msgid "Open Events"
+msgstr "오픈 이벤트"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:252
+msgid "Open Form View"
+msgstr "양식 보기 열기"
+
+#. Label of the issue (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Open Issues"
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:46
+msgid "Open Issues "
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:28
+#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:28
+msgid "Open Item {0}"
+msgstr "열기 항목 {0}"
+
+#. Label of the notifications (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/setup/doctype/email_digest/templates/default.html:154
+msgid "Open Notifications"
+msgstr "알림 열기"
+
+#. Label of the open_orders_section (Section Break) field in DocType 'Master
+#. Production Schedule'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+msgid "Open Orders"
+msgstr "미결 주문"
+
+#. Label of a number card in the Projects Workspace
+#. Label of the project (Check) field in DocType 'Email Digest'
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Open Projects"
+msgstr "공개 프로젝트"
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:70
+msgid "Open Projects "
+msgstr "공개 프로젝트 "
+
+#. Label of the pending_quotations (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Open Quotations"
+msgstr "오픈 견적"
+
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:110
+msgid "Open Sales Orders"
+msgstr "미결 판매 주문"
+
+#: erpnext/public/js/templates/crm_activities.html:33
+#: erpnext/public/js/templates/crm_activities.html:92
+msgid "Open Task"
+msgstr "열린 작업"
+
+#: erpnext/public/js/templates/crm_activities.html:21
+msgid "Open Tasks"
+msgstr ""
+
+#. Label of the todo_list (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Open To Do"
+msgstr "할 일 열려있습니다"
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:130
+msgid "Open To Do "
+msgstr "오픈 투 두 "
+
+#: erpnext/manufacturing/doctype/work_order/work_order_preview.html:24
+msgid "Open Work Order {0}"
+msgstr "작업 지시서 열기 {0}"
+
+#. Name of a report
+#. Label of a number card in the Manufacturing Workspace
+#: erpnext/manufacturing/report/open_work_orders/open_work_orders.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+msgid "Open Work Orders"
+msgstr "미결 작업 주문"
+
+#: erpnext/templates/pages/help.html:60
+msgid "Open a new ticket"
+msgstr "새 티켓을 열어주세요"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:63
+msgid "Open the settings dialog"
+msgstr "설정 대화 상자를 엽니다"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:327
+msgid "Open {0} in a new tab"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:403
+#: erpnext/public/js/stock_analytics.js:97
+msgid "Opening"
+msgstr "열기"
+
+#. Group in POS Profile's connections
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Opening & Closing"
+msgstr "개장 및 폐장"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:417
+#: erpnext/accounts/report/trial_balance/trial_balance.py:516
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:198
+msgid "Opening (Cr)"
+msgstr "개방(Cr)"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.py:410
+#: erpnext/accounts/report/trial_balance/trial_balance.py:509
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.py:191
+msgid "Opening (Dr)"
+msgstr ""
+
+#. Label of the opening_accumulated_depreciation (Currency) field in DocType
+#. 'Asset'
+#. Label of the opening_accumulated_depreciation (Currency) field in DocType
+#. 'Asset Depreciation Schedule'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:166
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:445
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:513
+msgid "Opening Accumulated Depreciation"
+msgstr ""
+
+#. Label of the opening_amount (Currency) field in DocType 'POS Closing Entry
+#. Detail'
+#. Label of the opening_amount (Currency) field in DocType 'POS Opening Entry
+#. Detail'
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json
+#: erpnext/selling/page/point_of_sale/pos_controller.js:41
+msgid "Opening Amount"
+msgstr "개시 금액"
+
+#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report
+#. Row'
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:55
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:187
+msgid "Opening Balance"
+msgstr "개시 잔액"
+
+#. Description of the 'Balance Type' (Select) field in DocType 'Financial
+#. Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Opening Balance = Start of period, Closing Balance = End of period, Period Movement = Net change during period"
+msgstr ""
+
+#. Label of the balance_details (Table) field in DocType 'POS Opening Entry'
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/selling/page/point_of_sale/pos_controller.js:90
+msgid "Opening Balance Details"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+msgid "Opening Balance Equity"
+msgstr "개시 잔액 자기자본"
+
+#. Label of the z_opening_balances (Table) field in DocType 'Process Period
+#. Closing Voucher'
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "Opening Balances"
+msgstr "개시 잔액"
+
+#. Label of the opening_date (Date) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Opening Date"
+msgstr "개장일"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Opening Entry"
+msgstr "입장 시작"
+
+#: erpnext/accounts/general_ledger.py:826
+msgid "Opening Entry can not be created after Period Closing Voucher is created."
+msgstr "기간 마감 전표가 생성된 후에는 개시 전표를 생성할 수 없습니다."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:304
+msgid "Opening Invoice Creation In Progress"
+msgstr "송장 생성 작업 진행 중"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Link in the Home Workspace
+#: erpnext/accounts/doctype/account/account_tree.js:201
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/setup/workspace/home/home.json
+msgid "Opening Invoice Creation Tool"
+msgstr "송장 생성 도구 열기"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+msgid "Opening Invoice Creation Tool Item"
+msgstr "송장 생성 도구 항목 열기"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:106
+msgid "Opening Invoice Item"
+msgstr "개시 송장 항목"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Opening Invoice Tool"
+msgstr "송장 열기 도구"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
+msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:8
+msgid "Opening Invoices"
+msgstr "송장 개시"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:142
+msgid "Opening Invoices Summary"
+msgstr "개시 청구서 요약"
+
+#. Label of the opening_number_of_booked_depreciations (Int) field in DocType
+#. 'Asset'
+#. Label of the opening_number_of_booked_depreciations (Int) field in DocType
+#. 'Asset Depreciation Schedule'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "Opening Number of Booked Depreciations"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:35
+msgid "Opening Purchase Invoices have been created."
+msgstr "개시 구매 송장이 생성되었습니다."
+
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:81
+#: erpnext/stock/report/stock_balance/stock_balance.py:536
+msgid "Opening Qty"
+msgstr "개시 수량"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.js:33
+msgid "Opening Sales Invoices have been created."
+msgstr "개시 판매 송장이 생성되었습니다."
+
+#. Label of the opening_stock (Float) field in DocType 'Item'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation'
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Opening Stock"
+msgstr "개시 주식"
+
+#: erpnext/stock/doctype/item/item.py:356
+msgid "Opening Stock entry created with zero valuation rate: {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:364
+msgid "Opening Stock entry created: {0}"
+msgstr "기초 재고 항목이 생성되었습니다: {0}"
+
+#. Label of the opening_time (Time) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Opening Time"
+msgstr "영업시간"
+
+#: erpnext/stock/report/stock_balance/stock_balance.py:543
+msgid "Opening Value"
+msgstr "개시 값"
+
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Opening and Closing"
+msgstr "개장 및 폐장"
+
+#: erpnext/stock/doctype/item/item.py:198
+msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
+msgstr ""
+
+#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
+#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Operating Component"
+msgstr "작동 구성 요소"
+
+#. Label of the workstation_costs (Table) field in DocType 'Workstation'
+#. Label of the workstation_costs (Table) field in DocType 'Workstation Type'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+msgid "Operating Components Cost"
+msgstr "운영 구성 요소 비용"
+
+#. Label of the operating_cost (Currency) field in DocType 'BOM'
+#. Label of the operating_cost (Currency) field in DocType 'BOM Operation'
+#. Label of the operating_cost (Currency) field in DocType 'Workstation Cost'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:124
+msgid "Operating Cost"
+msgstr ""
+
+#. Label of the base_operating_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Operating Cost (Company Currency)"
+msgstr "운영 비용(회사 통화)"
+
+#. Label of the operating_cost_per_bom_quantity (Currency) field in DocType
+#. 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Operating Cost Per BOM Quantity"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
+msgid "Operating Cost as per Work Order / BOM"
+msgstr "작업 지시서/자재명세서에 따른 운영 비용"
+
+#. Label of the base_operating_cost (Currency) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Operating Cost(Company Currency)"
+msgstr ""
+
+#. Label of the over_heads (Tab Break) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Operating Costs"
+msgstr "운영 비용"
+
+#. Label of the section_break_auzm (Section Break) field in DocType
+#. 'Workstation'
+#. Label of the section_break_auzm (Section Break) field in DocType
+#. 'Workstation Type'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+msgid "Operating Costs (Per Hour)"
+msgstr ""
+
+#. Label of the production_section (Section Break) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Operation & Materials"
+msgstr "운영 및 자재"
+
+#. Label of the section_break_22 (Section Break) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Operation Cost"
+msgstr "운영 비용"
+
+#. Label of the section_break_4 (Section Break) field in DocType 'Operation'
+#. Label of the description (Text Editor) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Operation Description"
+msgstr "작업 설명"
+
+#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
+#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+msgid "Operation ID"
+msgstr "작업 ID"
+
+#. 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"
+
+#. Label of the operation_row_id (Int) field in DocType 'Work Order Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Operation Row Id"
+msgstr ""
+
+#. Label of the operation_row_number (Select) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Operation Row Number"
+msgstr "작업 행 번호"
+
+#. Label of the time_in_mins (Float) field in DocType 'BOM Operation'
+#. Label of the time_in_mins (Float) field in DocType 'BOM Website Operation'
+#. Label of the time_in_mins (Float) field in DocType 'Sub Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
+#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
+msgid "Operation Time"
+msgstr "운영 시간"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
+msgid "Operation Time must be greater than 0 for Operation {0}"
+msgstr ""
+
+#. Description of the 'Completed Qty' (Float) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Operation completed for how many finished goods?"
+msgstr "완료된 완제품 수량은 몇 개입니까?"
+
+#. Description of the 'Fixed Time' (Check) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Operation time does not depend on quantity to produce"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
+msgid "Operation {0} added multiple times in the work order {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
+msgid "Operation {0} does not belong to the work order {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:433
+msgid "Operation {0} longer than any available working hours in workstation {1}, break down the operation into multiple operations"
+msgstr ""
+
+#. Label of the operations (Table) field in DocType 'BOM'
+#. Label of the operations_section_section (Section Break) field in DocType
+#. 'BOM'
+#. Label of the operations_section (Section Break) field in DocType 'Work
+#. Order'
+#. Label of the operations (Table) field in DocType 'Work Order'
+#. Label of the operation (Section Break) field in DocType 'Email Digest'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/setup/doctype/company/company.py:472
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/templates/generators/bom.html:61
+msgid "Operations"
+msgstr "운영"
+
+#. Label of the section_break_xvld (Section Break) field in DocType 'BOM
+#. Creator'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Operations Routing"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1237
+msgid "Operations cannot be left blank"
+msgstr ""
+
+#. Label of the operator (Link) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:85
+msgid "Operator"
+msgstr "연산자"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:21
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:27
+msgid "Opp Count"
+msgstr "상대 수"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:25
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:31
+msgid "Opp/Lead %"
+msgstr "상대/리드 %"
+
+#. Label of the opportunities_tab (Tab Break) field in DocType 'Prospect'
+#. Label of the opportunities (Table) field in DocType 'Prospect'
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:56
+msgid "Opportunities"
+msgstr "기회"
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:52
+msgid "Opportunities by Campaign"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:53
+msgid "Opportunities by Medium"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:51
+msgid "Opportunities by Source"
+msgstr ""
+
+#. Label of the opportunity (Link) field in DocType 'Request for Quotation'
+#. Label of the opportunity (Link) field in DocType 'Supplier Quotation'
+#. Label of the opportunity_section (Section Break) field in DocType 'CRM
+#. Settings'
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#. Name of a DocType
+#. Label of the opportunity (Link) field in DocType 'Prospect Opportunity'
+#. Label of the opportunity_name (Link) field in DocType 'Customer'
+#. Label of the opportunity (Link) field in DocType 'Quotation'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:385
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+#: erpnext/crm/doctype/lead/lead.js:33 erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.js:20
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+#: erpnext/crm/report/lead_details/lead_details.js:36
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:23
+#: erpnext/public/js/communication.js:35
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.js:154
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "Opportunity"
+msgstr "기회"
+
+#. Label of the opportunity_amount (Currency) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:29
+msgid "Opportunity Amount"
+msgstr "기회 금액"
+
+#. Label of the base_opportunity_amount (Currency) field in DocType
+#. 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Opportunity Amount (Company Currency)"
+msgstr "기회 금액 (회사 통화)"
+
+#. Label of the transaction_date (Date) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Opportunity Date"
+msgstr "기회 날짜"
+
+#. Label of the opportunity_from (Link) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:42
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:30
+msgid "Opportunity From"
+msgstr "기회 제공"
+
+#. Name of a DocType
+#. Label of the enq_det (Text) field in DocType 'Quotation'
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Opportunity Item"
+msgstr "기회 상품"
+
+#. Label of the lost_reason (Link) field in DocType 'Lost Reason Detail'
+#. Name of a DocType
+#. Label of the lost_reason (Link) field in DocType 'Opportunity Lost Reason
+#. Detail'
+#: erpnext/crm/doctype/lost_reason_detail/lost_reason_detail.json
+#: erpnext/crm/doctype/opportunity_lost_reason/opportunity_lost_reason.json
+#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json
+msgid "Opportunity Lost Reason"
+msgstr "기회를 놓친 이유"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/opportunity_lost_reason_detail/opportunity_lost_reason_detail.json
+msgid "Opportunity Lost Reason Detail"
+msgstr ""
+
+#. Label of the opportunity_owner (Link) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:32
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:65
+msgid "Opportunity Owner"
+msgstr "기회 소유자"
+
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:46
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:58
+msgid "Opportunity Source"
+msgstr "기회의 원천"
+
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Opportunity Summary by Sales Stage"
+msgstr ""
+
+#. Name of a report
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.json
+msgid "Opportunity Summary by Sales Stage "
+msgstr ""
+
+#. Label of the opportunity_type (Link) field in DocType 'Opportunity'
+#. Name of a DocType
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/opportunity_type/opportunity_type.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:50
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.js:52
+#: erpnext/crm/report/opportunity_summary_by_sales_stage/opportunity_summary_by_sales_stage.py:48
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:64
+msgid "Opportunity Type"
+msgstr "기회 유형"
+
+#. Label of the section_break_14 (Section Break) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Opportunity Value"
+msgstr "기회 가치"
+
+#: erpnext/public/js/communication.js:102
+msgid "Opportunity {0} created"
+msgstr "기회 {0} 가 생성되었습니다"
+
+#. Label of the optimize_route (Button) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Optimize Route"
+msgstr "경로 최적화"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
+msgid "Optional. Select a specific manufacture entry to reverse."
+msgstr "선택 사항입니다. 취소할 특정 제조 항목을 선택하십시오."
+
+#: erpnext/accounts/doctype/account/account_tree.js:178
+msgid "Optional. Sets company's default currency, if not specified."
+msgstr "선택 사항입니다. 지정되지 않은 경우 회사의 기본 통화를 설정합니다."
+
+#: erpnext/accounts/doctype/account/account_tree.js:157
+msgid "Optional. This setting will be used to filter in various transactions."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account_tree.js:165
+msgid "Optional. Used with Financial Report Template"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:83
+msgid "Optionally, set the number of digits in the series using dot (.) followed by hashes (#). For example, '.####' means that the series will have four digits. Default is five digits."
+msgstr ""
+
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:43
+msgid "Order Amount"
+msgstr "주문 금액"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:80
+msgid "Order By"
+msgstr "정렬 기준"
+
+#. Label of the order_confirmation_date (Date) field in DocType 'Purchase
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Order Confirmation Date"
+msgstr "주문 확인 날짜"
+
+#. Label of the order_confirmation_no (Data) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Order Confirmation No"
+msgstr "주문 확인 번호"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:23
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:29
+msgid "Order Count"
+msgstr "주문 수량"
+
+#. Label of the order_date (Date) field in DocType 'Blanket Order'
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68
+msgid "Order Date"
+msgstr "주문 날짜"
+
+#. Label of the order_information_section (Section Break) field in DocType
+#. 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Order Information"
+msgstr "주문 정보"
+
+#. Label of the order_no (Data) field in DocType 'Blanket Order'
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+msgid "Order No"
+msgstr "주문 번호"
+
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:134
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:175
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:383
+msgid "Order Qty"
+msgstr "주문 수량"
+
+#. Label of the tracking_section (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the order_status_section (Section Break) field in DocType
+#. 'Subcontracting Inward Order'
+#. Label of the order_status_section (Section Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the order_status_section (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Order Status"
+msgstr "주문 상태"
+
+#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:4
+msgid "Order Summary"
+msgstr "주문 요약"
+
+#. Label of the blanket_order_type (Select) field in DocType 'Blanket Order'
+#. Label of the order_type (Select) field in DocType 'Quotation'
+#. Label of the order_type (Select) field in DocType 'Sales Order'
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Order Type"
+msgstr "주문 유형"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:24
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:30
+msgid "Order Value"
+msgstr "주문 금액"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:27
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:33
+msgid "Order/Quot %"
+msgstr "주문/견적 비율"
+
+#. Option for the 'Status' (Select) field in DocType 'Quotation'
+#. Option for the 'Status' (Select) field in DocType 'Material Request'
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:5
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/quotation/quotation_list.js:34
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:40
+msgid "Ordered"
+msgstr ""
+
+#. Label of the ordered_qty (Float) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the ordered_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the ordered_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the ordered_qty (Float) field in DocType 'Quotation Item'
+#. Label of the ordered_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the ordered_qty (Float) field in DocType 'Bin'
+#. Label of the ordered_qty (Float) field in DocType 'Packed Item'
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:169
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:238
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:49
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:164
+msgid "Ordered Qty"
+msgstr "주문 수량"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:205
+msgid "Ordered Qty: Quantity ordered for purchase, but not received."
+msgstr "주문 수량: 구매를 위해 주문했으나 아직 수령하지 못한 수량."
+
+#. Label of the ordered_qty (Float) field in DocType 'Blanket Order Item'
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:102
+msgid "Ordered Quantity"
+msgstr "주문 수량"
+
+#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
+#: erpnext/selling/doctype/customer/customer_dashboard.py:20
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
+#: erpnext/setup/doctype/company/company_dashboard.py:23
+msgid "Orders"
+msgstr "명령"
+
+#. Label of the organization_section (Section Break) field in DocType 'Lead'
+#. Label of the organization_details_section (Section Break) field in DocType
+#. 'Opportunity'
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.py:30
+#: erpnext/desktop_icon/organization.json
+#: erpnext/workspace_sidebar/organization.json
+msgid "Organization"
+msgstr "조직"
+
+#. Label of the company_name (Data) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Organization Name"
+msgstr ""
+
+#. Label of the original_item (Link) field in DocType 'BOM Item'
+#. Label of the original_item (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Original Item"
+msgstr ""
+
+#. Label of the margin_details (Section Break) field in DocType 'Bank
+#. Guarantee'
+#. Label of the other_details (Section Break) field in DocType 'Production
+#. Plan'
+#. Label of the other_details (HTML) field in DocType 'Purchase Receipt'
+#. Label of the other_details (HTML) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Other Details"
+msgstr "기타 세부 사항"
+
+#. Label of the other_info_tab (Tab Break) field in DocType 'Stock Entry'
+#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting
+#. Inward Order'
+#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting
+#. Order'
+#. Label of the tab_other_info (Tab Break) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Other Info"
+msgstr "기타 정보"
+
+#. Label of a Card Break in the Financial Reports Workspace
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Card Break in the Selling Workspace
+#. Label of a Card Break in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Other Reports"
+msgstr "기타 보고서"
+
+#. Label of the other_settings_section (Section Break) field in DocType
+#. 'Manufacturing Settings'
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Other Settings"
+msgstr "기타 설정"
+
+#. Label of the tab_break_dpet (Tab Break) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Others"
+msgstr "기타"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce-Force"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce/Cubic Foot"
+msgstr "온스/입방피트"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce/Cubic Inch"
+msgstr "온스/입방인치"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce/Gallon (UK)"
+msgstr "온스/갤런(영국식)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ounce/Gallon (US)"
+msgstr "온스/갤런(미국)"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
+#: erpnext/stock/report/stock_balance/stock_balance.py:558
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
+msgid "Out Qty"
+msgstr "수량"
+
+#: erpnext/stock/report/stock_balance/stock_balance.py:564
+msgid "Out Value"
+msgstr ""
+
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No'
+#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty
+#. Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Out of AMC"
+msgstr "AMC에서 나왔습니다"
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:20
+msgid "Out of Order"
+msgstr "고장"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:634
+msgid "Out of Stock"
+msgstr "품절"
+
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No'
+#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty
+#. Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Out of Warranty"
+msgstr ""
+
+#: erpnext/templates/includes/macros.html:173
+msgid "Out of stock"
+msgstr "품절"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
+#: erpnext/selling/page/point_of_sale/pos_controller.js:208
+msgid "Outdated POS Opening Entry"
+msgstr "구식 POS 개시 입력"
+
+#. Label of a number card in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Outgoing Bills"
+msgstr "지출 청구서"
+
+#. Label of a number card in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Outgoing Payment"
+msgstr "지출 결제"
+
+#. Label of the outgoing_rate (Float) field in DocType 'Serial and Batch Entry'
+#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
+msgid "Outgoing Rate"
+msgstr ""
+
+#. Label of the outstanding (Currency) field in DocType 'Overdue Payment'
+#. Label of the outstanding_amount (Currency) field in DocType 'Payment Entry
+#. Reference'
+#. Label of the outstanding (Currency) field in DocType 'Payment Schedule'
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:709
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+msgid "Outstanding"
+msgstr "뛰어난"
+
+#. Label of the base_outstanding (Currency) field in DocType 'Payment Schedule'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+msgid "Outstanding (Company Currency)"
+msgstr ""
+
+#. Label of the outstanding_amount (Float) field in DocType 'Cashier Closing'
+#. Label of the outstanding_amount (Currency) field in DocType 'Discounted
+#. Invoice'
+#. Label of the outstanding_amount (Currency) field in DocType 'Opening Invoice
+#. Creation Tool Item'
+#. Label of the outstanding_amount (Currency) field in DocType 'Payment
+#. Reconciliation Invoice'
+#. Label of the outstanding_amount (Currency) field in DocType 'Payment
+#. Request'
+#. Label of the outstanding_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the outstanding_amount (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the outstanding_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:182
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:140
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:141
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
+#: erpnext/accounts/report/purchase_register/purchase_register.py:289
+#: erpnext/accounts/report/sales_register/sales_register.py:319
+msgid "Outstanding Amount"
+msgstr "미지급 금액"
+
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:66
+msgid "Outstanding Amt"
+msgstr "미지급 금액"
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:295
+msgid "Outstanding Checks and Deposits to clear"
+msgstr ""
+
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:48
+msgid "Outstanding Cheques and Deposits to clear"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:405
+msgid "Outstanding for {0} cannot be less than zero ({1})"
+msgstr ""
+
+#. Option for the 'Payment Request Type' (Select) field in DocType 'Payment
+#. Request'
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Inventory
+#. Dimension'
+#. Option for the 'Type of Transaction' (Select) field in DocType 'Serial and
+#. Batch Bundle'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Outward"
+msgstr "외부"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Outward Order"
+msgstr ""
+
+#. Label of the over_billing_allowance (Currency) field in DocType 'Accounts
+#. Settings'
+#. Label of the over_billing_allowance (Float) field in DocType 'Item'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Over Billing Allowance (%)"
+msgstr "초과 청구 허용 비율(%)"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:1349
+msgid "Over Billing Allowance exceeded for Purchase Receipt Item {0} ({1}) by {2}%"
+msgstr ""
+
+#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Item'
+#. Label of the over_delivery_receipt_allowance (Float) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Over Delivery/Receipt Allowance (%)"
+msgstr "초과 배송/수령 허용치(%)"
+
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
+#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Over Picking Allowance"
+msgstr "초과 채취 허용량"
+
+#: erpnext/controllers/stock_controller.py:1738
+msgid "Over Receipt"
+msgstr "영수증 초과"
+
+#: erpnext/controllers/status_updater.py:504
+msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
+msgstr "{0} {1} 의 수령/배송 초과는 항목 {2} 에 대해 무시되었습니다. 왜냐하면 귀하에게 {3} 역할이 있기 때문입니다."
+
+#. Label of the mr_qty_allowance (Float) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Over Transfer Allowance"
+msgstr "초과 이체 허용량"
+
+#. Label of the over_transfer_allowance (Float) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Transfer Allowance (%)"
+msgstr "초과 이체 허용 비율(%)"
+
+#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Over Withheld"
+msgstr "보류됨"
+
+#: erpnext/controllers/status_updater.py:506
+msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2185
+msgid "Overbilling of {} ignored because you have {} role."
+msgstr "{} 역할이 있으므로 {}에 대한 과다 청구는 무시됩니다."
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset
+#. Maintenance Log'
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset
+#. Maintenance Task'
+#. Option for the 'Status' (Select) field in DocType 'Task'
+#. Option in a Select field in the tasks Web Form
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:284
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/report/project_summary/project_summary.py:100
+#: erpnext/projects/web_form/tasks/tasks.json
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:30
+#: erpnext/templates/pages/task_info.html:75
+msgid "Overdue"
+msgstr "기한 초과"
+
+#. Label of the overdue_days (Data) field in DocType 'Overdue Payment'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+msgid "Overdue Days"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+msgid "Overdue Payment"
+msgstr ""
+
+#. Label of the overdue_payments (Table) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "Overdue Payments"
+msgstr ""
+
+#: erpnext/projects/report/project_summary/project_summary.py:142
+msgid "Overdue Tasks"
+msgstr "기한이 지난 작업"
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Overdue and Discounted"
+msgstr "연체 상품 및 할인"
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:70
+msgid "Overlap in scoring between {0} and {1}"
+msgstr "{0} 와 {1} 사이의 점수 중복"
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:206
+msgid "Overlapping conditions found between:"
+msgstr "다음 조건들 사이에 중복되는 조건이 발견되었습니다:"
+
+#. Label of the overproduction_percentage_for_sales_order (Percent) field in
+#. DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Overproduction Percentage For Sales Order"
+msgstr "판매 주문에 대한 과잉 생산 비율"
+
+#. Label of the overproduction_percentage_for_work_order (Percent) field in
+#. DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Overproduction Percentage For Work Order"
+msgstr ""
+
+#. Label of the over_production_for_sales_and_work_order_section (Section
+#. Break) field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Overproduction for Sales and Work Order"
+msgstr "판매 및 작업 주문에 대한 과잉 생산"
+
+#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee'
+#. Option for the 'Current Address Is' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Owned"
+msgstr "소유"
+
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:29
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:23
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:39
+#: erpnext/accounts/report/sales_register/sales_register.js:46
+#: erpnext/accounts/report/sales_register/sales_register.py:236
+#: erpnext/crm/report/lead_details/lead_details.py:45
+msgid "Owner"
+msgstr "소유자"
+
+#. Label of the asset_owner_section (Section Break) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Ownership"
+msgstr "소유권"
+
+#. Label of the p_l_closing_balance (JSON) field in DocType 'Process Period
+#. Closing Voucher'
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "P&L Closing Balance"
+msgstr ""
+
+#. Label of the pan_no (Data) field in DocType 'Lower Deduction Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "PAN No"
+msgstr "PAN 번호"
+
+#. Label of the parent_pcv (Link) field in DocType 'Process Period Closing
+#. Voucher'
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "PCV"
+msgstr "PCV"
+
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:35
+msgid "PCV Paused"
+msgstr "PCV 일시 중단됨"
+
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:53
+msgid "PCV Resumed"
+msgstr "PCV 재개"
+
+#. Label of the pdf_name (Data) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "PDF Name"
+msgstr "PDF 이름"
+
+#. Label of the pin (Data) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "PIN"
+msgstr "핀"
+
+#. Label of the po_detail (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "PO Supplied Item"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS"
+msgstr "POS"
+
+#. Label of the invoice_fields (Table) field in DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "POS Additional Fields"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:183
+msgid "POS Closed"
+msgstr "POS 마감"
+
+#. Name of a DocType
+#. Label of the pos_closing_entry (Link) field in DocType 'POS Invoice Merge
+#. Log'
+#. Label of the pos_closing_entry (Data) field in DocType 'POS Opening Entry'
+#. Label of the pos_closing_entry (Link) field in DocType 'Sales Invoice'
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Closing Entry"
+msgstr "POS 마감 입력"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_closing_entry_detail/pos_closing_entry_detail.json
+msgid "POS Closing Entry Detail"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_closing_entry_taxes/pos_closing_entry_taxes.json
+msgid "POS Closing Entry Taxes"
+msgstr "POS 마감 입력 세금"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:18
+msgid "POS Closing Failed"
+msgstr "POS 마감 실패"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.js:40
+msgid "POS Closing failed while running in a background process. You can resolve the {0} and retry the process again."
+msgstr ""
+
+#. Label of the pos_configurations_tab (Tab Break) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "POS Configurations"
+msgstr "POS 설정"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_customer_group/pos_customer_group.json
+msgid "POS Customer Group"
+msgstr "POS 고객 그룹"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_field/pos_field.json
+msgid "POS Field"
+msgstr "POS 필드"
+
+#. Name of a DocType
+#. Label of the pos_invoice (Link) field in DocType 'POS Invoice Reference'
+#. Option for the 'Invoice Type Created via POS Screen' (Select) field in
+#. DocType 'POS Settings'
+#. Label of the pos_invoice (Link) field in DocType 'Sales Invoice Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/pos_register/pos_register.py:174
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Invoice"
+msgstr "POS 송장"
+
+#. Name of a DocType
+#. Label of the pos_invoice_item (Data) field in DocType 'POS Invoice Item'
+#. Label of the pos_invoice_item (Data) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "POS Invoice Item"
+msgstr "POS 송장 품목"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Invoice Merge Log"
+msgstr "POS 송장 병합 로그"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+msgid "POS Invoice Reference"
+msgstr "POS 송장 참조 번호"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:119
+msgid "POS Invoice is already consolidated"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:127
+msgid "POS Invoice is not submitted"
+msgstr "POS 송장이 제출되지 않았습니다"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:130
+msgid "POS Invoice isn't created by user {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:206
+msgid "POS Invoice should have the field {0} checked."
+msgstr "POS 송장에는 {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
+msgid "POS Invoices"
+msgstr "POS 송장"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:88
+msgid "POS Invoices can't be added when Sales Invoice is enabled"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:672
+msgid "POS Invoices will be consolidated in a background process"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:674
+msgid "POS Invoices will be unconsolidated in a background process"
+msgstr ""
+
+#. Label of the pos_item_details_section (Section Break) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "POS Item Details"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_item_group/pos_item_group.json
+msgid "POS Item Group"
+msgstr "POS 품목 그룹"
+
+#. Label of the pos_item_selector_section (Section Break) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "POS Item Selector"
+msgstr "POS 품목 선택기"
+
+#. Label of the pos_opening_entry (Link) field in DocType 'POS Closing Entry'
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Opening Entry"
+msgstr "POS 개시 입력"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
+msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:121
+msgid "POS Opening Entry Cancellation Error"
+msgstr "POS 개시 입력 취소 오류"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:183
+msgid "POS Opening Entry Cancelled"
+msgstr "POS 개시 입력 취소됨"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_opening_entry_detail/pos_opening_entry_detail.json
+msgid "POS Opening Entry Detail"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:67
+msgid "POS Opening Entry Exists"
+msgstr "POS 개시 입력이 존재합니다"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
+msgid "POS Opening Entry Missing"
+msgstr "POS 개시 입력 누락"
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:122
+msgid "POS Opening Entry cannot be cancelled as unconsolidated Invoices exists."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:189
+msgid "POS Opening Entry has been cancelled. Please refresh the page."
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_payment_method/pos_payment_method.json
+msgid "POS Payment Method"
+msgstr "POS 결제 방식"
+
+#. Label of the pos_profile (Link) field in DocType 'POS Closing Entry'
+#. Label of the pos_profile (Link) field in DocType 'POS Invoice'
+#. Label of the pos_profile (Link) field in DocType 'POS Opening Entry'
+#. Name of a DocType
+#. Label of the pos_profile (Link) field in DocType 'Sales Invoice'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/pos_register/pos_register.js:32
+#: erpnext/accounts/report/pos_register/pos_register.py:117
+#: erpnext/accounts/report/pos_register/pos_register.py:188
+#: erpnext/selling/page/point_of_sale/pos_controller.js:80
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Profile"
+msgstr "POS 프로필"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
+msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
+msgstr "POS 프로필 - {0} 에 열려 있는 POS 개시 항목이 여러 개 있습니다. 진행하기 전에 기존 항목을 닫거나 취소하십시오."
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:249
+msgid "POS Profile - {0} is currently open. Please close the POS or cancel the existing POS Opening Entry before cancelling this POS Closing Entry."
+msgstr "POS 프로필 - {0} 이 현재 열려 있습니다. 이 POS 마감 항목을 취소하기 전에 POS를 닫거나 기존 POS 개시 항목을 취소하십시오."
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_profile_user/pos_profile_user.json
+msgid "POS Profile User"
+msgstr "POS 프로필 사용자"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:124
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:189
+msgid "POS Profile doesn't match {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
+msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
+msgstr "이 송장을 POS 거래로 표시하려면 POS 프로필이 필수입니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+msgid "POS Profile required to make POS Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:114
+msgid "POS Profile {0} cannot be disabled as there are ongoing POS sessions."
+msgstr ""
+
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:63
+msgid "POS Profile {} contains Mode of Payment {}. Please remove them to disable this mode."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:58
+msgid "POS Profile {} does not belong to company {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:47
+msgid "POS Profile {} does not exist."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:54
+msgid "POS Profile {} is disabled."
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/pos_register/pos_register.json
+msgid "POS Register"
+msgstr "POS 계산대"
+
+#. Name of a DocType
+#. Label of the pos_search_fields (Table) field in DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_search_fields/pos_search_fields.json
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "POS Search Fields"
+msgstr "POS 검색 필드"
+
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "POS Settings"
+msgstr "POS 설정"
+
+#. Label of the pos_invoices (Table) field in DocType 'POS Closing Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "POS Transactions"
+msgstr "POS 거래"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:187
+msgid "POS has been closed at {0}. Please refresh the page."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:464
+msgid "POS invoice {0} created successfully"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/psoa_cost_center/psoa_cost_center.json
+msgid "PSOA Cost Center"
+msgstr "PSOA 비용 센터"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/psoa_project/psoa_project.json
+msgid "PSOA Project"
+msgstr "PSOA 프로젝트"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "PZN"
+msgstr "피지엔"
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:116
+msgid "Package No(s) already in use. Try from Package No {0}"
+msgstr ""
+
+#. Label of the package_weight_details (Section Break) field in DocType
+#. 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "Package Weight Details"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:73
+msgid "Packaging Slip From Delivery Note"
+msgstr ""
+
+#. Label of the packed_item (Data) field in DocType 'Material Request Item'
+#. Name of a DocType
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Packed Item"
+msgstr "포장된 상품"
+
+#. Label of the packed_items (Table) field in DocType 'POS Invoice'
+#. Label of the packed_items (Table) field in DocType 'Sales Invoice'
+#. Label of the packed_items (Table) field in DocType 'Sales Order'
+#. Label of the packed_items (Table) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Packed Items"
+msgstr "포장된 물품"
+
+#: erpnext/controllers/stock_controller.py:1572
+msgid "Packed Items cannot be transferred internally"
+msgstr ""
+
+#. Label of the packed_qty (Float) field in DocType 'Delivery Note Item'
+#. Label of the packed_qty (Float) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Packed Qty"
+msgstr "포장 수량"
+
+#. Label of the packing_list (Section Break) field in DocType 'POS Invoice'
+#. Label of the packing_list (Section Break) field in DocType 'Sales Invoice'
+#. Label of the packing_list (Section Break) field in DocType 'Sales Order'
+#. Label of the packing_list (Section Break) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Packing List"
+msgstr "준비물 목록"
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:296
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Packing Slip"
+msgstr "포장 명세서"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+msgid "Packing Slip Item"
+msgstr "포장 명세서 품목"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
+msgid "Packing Slip(s) cancelled"
+msgstr ""
+
+#. Label of the packing_unit (Int) field in DocType 'Item Price'
+#: erpnext/stock/doctype/item_price/item_price.json
+msgid "Packing Unit"
+msgstr "포장 단위"
+
+#. Label of the include_break (Check) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Page Break After Each SoA"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Payment Request'
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:290
+msgid "Paid"
+msgstr ""
+
+#. Label of the paid_amount (Currency) field in DocType 'Overdue Payment'
+#. Label of the paid_amount (Currency) field in DocType 'Payment Entry'
+#. Label of the paid_amount (Currency) field in DocType 'Payment Schedule'
+#. Label of the paid_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the paid_amount (Currency) field in DocType 'Purchase Invoice'
+#. Label of the paid_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:311
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:173
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
+#: 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:209
+#: erpnext/selling/page/point_of_sale/pos_payment.js:697
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:56
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:279
+msgid "Paid Amount"
+msgstr "지불 금액"
+
+#. Label of the base_paid_amount (Currency) field in DocType 'Payment Entry'
+#. Label of the base_paid_amount (Currency) field in DocType 'Payment Schedule'
+#. Label of the base_paid_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the base_paid_amount (Currency) field in DocType 'Purchase Invoice'
+#. Label of the base_paid_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Paid Amount (Company Currency)"
+msgstr "지불 금액 (회사 통화)"
+
+#. Label of the paid_amount_after_tax (Currency) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Paid Amount After Tax"
+msgstr ""
+
+#. Label of the base_paid_amount_after_tax (Currency) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Paid Amount After Tax (Company Currency)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1946
+msgid "Paid Amount cannot be greater than total negative outstanding amount {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:340
+msgid "Paid From"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:643
+msgid "Paid From (GL Account)"
+msgstr "지급 출처 (GL 계정)"
+
+#. Label of the paid_from_account_type (Data) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Paid From Account Type"
+msgstr "지불 계좌 유형"
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:354
+msgid "Paid To"
+msgstr "지불됨"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:631
+msgid "Paid To (GL Account)"
+msgstr "지급 대상 (GL 계정)"
+
+#. Label of the paid_to_account_type (Data) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Paid To Account Type"
+msgstr "지급 계좌 유형"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
+msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:427
+msgid "Paid to"
+msgstr "지불됨"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pair"
+msgstr "쌍"
+
+#. Label of the pallets (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pallets"
+msgstr "팔레트"
+
+#. Label of the parameter_group (Link) field in DocType 'Item Quality
+#. Inspection Parameter'
+#. Label of the parameter_group (Link) field in DocType 'Quality Inspection
+#. Parameter'
+#. Label of the parameter_group (Link) field in DocType 'Quality Inspection
+#. Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Parameter Group"
+msgstr "파라미터 그룹"
+
+#. Label of the group_name (Data) field in DocType 'Quality Inspection
+#. Parameter Group'
+#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json
+msgid "Parameter Group Name"
+msgstr "파라미터 그룹 이름"
+
+#. Label of the param_name (Data) field in DocType 'Supplier Scorecard Scoring
+#. Variable'
+#. Label of the param_name (Data) field in DocType 'Supplier Scorecard
+#. Variable'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json
+#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json
+msgid "Parameter Name"
+msgstr "매개변수 이름"
+
+#. Label of the req_params (Table) field in DocType 'Currency Exchange
+#. Settings'
+#. Label of the parameters (Table) field in DocType 'Quality Feedback'
+#. Label of the parameters (Table) field in DocType 'Quality Feedback Template'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json
+#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json
+msgid "Parameters"
+msgstr "매개변수"
+
+#. Label of the parcel_template (Link) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Parcel Template"
+msgstr ""
+
+#. Label of the parcel_template_name (Data) field in DocType 'Shipment Parcel
+#. Template'
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Parcel Template Name"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.py:97
+msgid "Parcel weight cannot be 0"
+msgstr ""
+
+#. Label of the parcels_section (Section Break) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Parcels"
+msgstr "소포"
+
+#. Label of the parent_account (Link) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Parent Account"
+msgstr "부모 계정"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:381
+msgid "Parent Account Missing"
+msgstr "부모 계정이 없습니다"
+
+#. Label of the parent_batch (Link) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Parent Batch"
+msgstr "상위 배치"
+
+#. Label of the parent_company (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Parent Company"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:607
+msgid "Parent Company must be a group company"
+msgstr ""
+
+#. Label of the parent_cost_center (Link) field in DocType 'Cost Center'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+msgid "Parent Cost Center"
+msgstr ""
+
+#. Label of the parent_customer_group (Link) field in DocType 'Customer Group'
+#: erpnext/setup/doctype/customer_group/customer_group.json
+msgid "Parent Customer Group"
+msgstr "상위 고객 그룹"
+
+#. Label of the parent_department (Link) field in DocType 'Department'
+#: erpnext/setup/doctype/department/department.json
+msgid "Parent Department"
+msgstr "학부모 부서"
+
+#. Label of the parent_detail_docname (Data) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Parent Detail docname"
+msgstr ""
+
+#. Label of the process_pr (Link) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Parent Document"
+msgstr "상위 문서"
+
+#. Label of the new_item_code (Link) field in DocType 'Product Bundle'
+#. Label of the parent_item (Link) field in DocType 'Packed Item'
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Parent Item"
+msgstr "상위 항목"
+
+#. Label of the parent_item_group (Link) field in DocType 'Item Group'
+#: erpnext/setup/doctype/item_group/item_group.json
+msgid "Parent Item Group"
+msgstr "상위 항목 그룹"
+
+#: erpnext/selling/doctype/product_bundle/product_bundle.py:81
+msgid "Parent Item {0} must not be a Fixed Asset"
+msgstr ""
+
+#: erpnext/selling/doctype/product_bundle/product_bundle.py:79
+msgid "Parent Item {0} must not be a Stock Item"
+msgstr ""
+
+#. Label of the parent_location (Link) field in DocType 'Location'
+#: erpnext/assets/doctype/location/location.json
+msgid "Parent Location"
+msgstr "부모 위치"
+
+#. Label of the parent_quality_procedure (Link) field in DocType 'Quality
+#. Procedure'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Parent Procedure"
+msgstr "부모 절차"
+
+#. Label of the parent_row_no (Data) field in DocType 'BOM Creator Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+msgid "Parent Row No"
+msgstr "부모 행 번호"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:548
+msgid "Parent Row No not found for {0}"
+msgstr ""
+
+#. Label of the parent_sales_person (Link) field in DocType 'Sales Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Parent Sales Person"
+msgstr "학부모 판매원"
+
+#. Label of the parent_supplier_group (Link) field in DocType 'Supplier Group'
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Parent Supplier Group"
+msgstr ""
+
+#. Label of the parent_task (Link) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Parent Task"
+msgstr "부모 역할"
+
+#: erpnext/projects/doctype/task/task.py:170
+msgid "Parent Task {0} is not a Template Task"
+msgstr ""
+
+#: erpnext/projects/doctype/task/task.py:193
+msgid "Parent Task {0} must be a Group Task"
+msgstr ""
+
+#. Label of the parent_territory (Link) field in DocType 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Parent Territory"
+msgstr "부모 영역"
+
+#. Label of the parent_warehouse (Link) field in DocType 'Master Production
+#. Schedule'
+#. Label of the parent_warehouse (Link) field in DocType 'Sales Forecast'
+#. Label of the parent_warehouse (Link) field in DocType 'Warehouse'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:47
+msgid "Parent Warehouse"
+msgstr "부모 창고"
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:166
+msgid "Parsed file is not in valid MT940 format or contains no transactions."
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:44
+msgid "Parsing Error"
+msgstr "구문 분석 오류"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:857
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:888
+msgid "Partial Match"
+msgstr "부분 일치"
+
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Partial Material Transferred"
+msgstr "부분적인 물질 이송"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
+msgid "Partial Payment in POS Transactions are not allowed."
+msgstr "POS 거래 시 부분 결제는 허용되지 않습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1733
+msgid "Partial Stock Reservation"
+msgstr "부분 재고 예약"
+
+#. Description of the 'Allow Partial Reservation' (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Partial stock can be reserved. For example, If you have a Sales Order of 100 units and the Available Stock is 90 units then a Stock Reservation Entry will be created for 90 units. "
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Timesheet'
+#. Option for the 'Status' (Select) field in DocType 'Delivery Note'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/doctype/timesheet/timesheet_list.js:5
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:24
+msgid "Partially Billed"
+msgstr "부분 청구됨"
+
+#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance
+#. Schedule Detail'
+#. Option for the 'Completion Status' (Select) field in DocType 'Maintenance
+#. Visit'
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Partially Completed"
+msgstr "부분적으로 완료됨"
+
+#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Partially Delivered"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:8
+msgid "Partially Depreciated"
+msgstr ""
+
+#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Partially Fulfilled"
+msgstr "부분적으로 이행됨"
+
+#. Option for the 'Status' (Select) field in DocType 'Quotation'
+#. Option for the 'Status' (Select) field in DocType 'Material Request'
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/quotation/quotation_list.js:32
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:29
+msgid "Partially Ordered"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Payment Request'
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Purchase
+#. Order'
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales
+#. Order'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Partially Paid"
+msgstr "부분 지급됨"
+
+#. Option for the 'Status' (Select) field in DocType 'Material Request'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Order'
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:16
+#: erpnext/stock/doctype/material_request/material_request_list.js:27
+#: erpnext/stock/doctype/material_request/material_request_list.js:36
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Partially Received"
+msgstr "부분적으로 수령함"
+
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation'
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:133
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:415
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Partially Reconciled"
+msgstr "부분적으로 조정됨"
+
+#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Partially Reserved"
+msgstr "일부 예약됨"
+
+#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Partially Used"
+msgstr "부분적으로 사용됨"
+
+#. Option for the 'Billing Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:23
+msgid "Partly Billed"
+msgstr "부분 청구됨"
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Status' (Select) field in DocType 'Pick List'
+#. Option for the 'Delivery Status' (Select) field in DocType 'Pick List'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Partly Delivered"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Partly Paid"
+msgstr "부분 지급됨"
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Partly Paid and Discounted"
+msgstr "부분 결제 및 할인"
+
+#. Label of the partner_type (Link) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Partner Type"
+msgstr "파트너 유형"
+
+#. Label of the partner_website (Data) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Partner website"
+msgstr "파트너 웹사이트"
+
+#. Option for the 'Supplier Type' (Select) field in DocType 'Supplier'
+#. Option for the 'Customer Type' (Select) field in DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Partnership"
+msgstr "공동"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Parts Per Million"
+msgstr ""
+
+#. Label of the party (Dynamic Link) field in DocType 'Bank Account'
+#. Group in Bank Account's connections
+#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction'
+#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule'
+#. Label of the party (Dynamic Link) field in DocType 'Bank Transaction Rule
+#. Accounts'
+#. Label of the party (Dynamic Link) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#. Label of the party (Dynamic Link) field in DocType 'GL Entry'
+#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Account'
+#. Label of the party (Dynamic Link) field in DocType 'Journal Entry Template
+#. Account'
+#. Label of the party (Dynamic Link) field in DocType 'Payment Entry'
+#. Label of the party (Dynamic Link) field in DocType 'Payment Ledger Entry'
+#. Label of the party (Dynamic Link) field in DocType 'Payment Reconciliation'
+#. Label of the party (Dynamic Link) field in DocType 'Payment Request'
+#. Label of the party (Dynamic Link) field in DocType 'Process Payment
+#. Reconciliation'
+#. Label of the party (Dynamic Link) field in DocType 'Subscription'
+#. Label of the party (Dynamic Link) field in DocType 'Tax Withholding Entry'
+#. Label of the party (Data) field in DocType 'Unreconcile Payment Entries'
+#. Label of the party (Dynamic Link) field in DocType 'Appointment'
+#. Label of the party_name (Dynamic Link) field in DocType 'Opportunity'
+#. Label of the party_name (Dynamic Link) field in DocType 'Quotation'
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:610
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:756
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:768
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:695
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:204
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:216
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:575
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:585
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:359
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:369
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:591
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:776
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:788
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:16
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:167
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:196
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:11
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:105
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:82
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:65
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:82
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:147
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:49
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:240
+#: erpnext/accounts/report/general_ledger/general_ledger.js:74
+#: erpnext/accounts/report/general_ledger/general_ledger.py:776
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:51
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:161
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:46
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:89
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:25
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:26
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:57
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:55
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:37
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:50
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:135
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:86
+msgid "Party"
+msgstr "파티"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/party_account/party_account.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
+msgid "Party Account"
+msgstr "파티 계정"
+
+#. Label of the party_account_currency (Link) field in DocType 'Payment
+#. Request'
+#. Label of the party_account_currency (Link) field in DocType 'POS Invoice'
+#. Label of the party_account_currency (Link) field in DocType 'Purchase
+#. Invoice'
+#. Label of the party_account_currency (Link) field in DocType 'Sales Invoice'
+#. Label of the party_account_currency (Link) field in DocType 'Purchase Order'
+#. Label of the party_account_currency (Link) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Party Account Currency"
+msgstr "파티 계정 통화"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Party Account No."
+msgstr ""
+
+#. Label of the bank_party_account_number (Data) field in DocType 'Bank
+#. Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Party Account No. (Bank Statement)"
+msgstr "당사자 계좌 번호 (은행 거래 내역서)"
+
+#: erpnext/controllers/accounts_controller.py:2469
+msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
+msgstr ""
+
+#. Label of the party_bank_account (Link) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Party Bank Account"
+msgstr "파티 은행 계좌"
+
+#. Label of the section_break_11 (Section Break) field in DocType 'Bank
+#. Account'
+#. Label of the party_details (Section Break) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Party Details"
+msgstr "파티 정보"
+
+#. Label of the party_full_name (Data) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Party Full Name"
+msgstr "정당 성명"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Party IBAN"
+msgstr "파티 IBAN"
+
+#. Label of the bank_party_iban (Data) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Party IBAN (Bank Statement)"
+msgstr "당사자 IBAN (은행 계좌 명세서)"
+
+#. Label of the party (Dynamic Link) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+msgid "Party ID"
+msgstr "파티 ID"
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Pricing Rule'
+#. Label of the section_break_8 (Section Break) field in DocType 'Promotional
+#. Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Party Information"
+msgstr "파티 정보"
+
+#. Label of the party_item_code (Data) field in DocType 'Blanket Order Item'
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+msgid "Party Item Code"
+msgstr "파티 용품 코드"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/party_link/party_link.json
+msgid "Party Link"
+msgstr "파티 링크"
+
+#: erpnext/controllers/sales_and_purchase_return.py:49
+msgid "Party Mismatch"
+msgstr "정당 불일치"
+
+#. Label of the party_name (Data) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#. Label of the party_name (Data) field in DocType 'Payment Entry'
+#. Label of the party_name (Data) field in DocType 'Payment Request'
+#. Label of the party_name (Dynamic Link) field in DocType 'Contract'
+#. Label of the party (Dynamic Link) field in DocType 'Party Specific Item'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:111
+#: erpnext/accounts/report/general_ledger/general_ledger.py:785
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:22
+msgid "Party Name"
+msgstr "파티 이름"
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Party Name/Account Holder"
+msgstr "당사자명/계좌 소유자"
+
+#. Label of the bank_party_name (Data) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Party Name/Account Holder (Bank Statement)"
+msgstr "당사자 이름/계좌 소유자 (은행 거래 내역서)"
+
+#. Label of the party_not_required (Check) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Party Not Required"
+msgstr "파티 참석 필수 아님"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+msgid "Party Specific Item"
+msgstr ""
+
+#. Label of the party_type (Link) field in DocType 'Bank Account'
+#. Label of the party_type (Link) field in DocType 'Bank Transaction'
+#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule'
+#. Label of the party_type (Link) field in DocType 'Bank Transaction Rule
+#. Accounts'
+#. Label of the party_type (Link) field in DocType 'Exchange Rate Revaluation
+#. Account'
+#. Label of the party_type (Link) field in DocType 'GL Entry'
+#. Label of the party_type (Link) field in DocType 'Journal Entry Account'
+#. Label of the party_type (Link) field in DocType 'Journal Entry Template
+#. Account'
+#. Label of the party_type (Link) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#. Label of the party_type (Link) field in DocType 'Payment Entry'
+#. Label of the party_type (Link) field in DocType 'Payment Ledger Entry'
+#. Label of the party_type (Link) field in DocType 'Payment Reconciliation'
+#. Label of the party_type (Link) field in DocType 'Payment Request'
+#. Label of the party_type (Link) field in DocType 'Process Payment
+#. Reconciliation'
+#. Label of the party_type (Link) field in DocType 'Subscription'
+#. Label of the party_type (Link) field in DocType 'Tax Withholding Entry'
+#. Label of the party_type (Data) field in DocType 'Unreconcile Payment
+#. Entries'
+#. Label of the party_type (Select) field in DocType 'Contract'
+#. Label of the party_type (Select) field in DocType 'Party Specific Item'
+#. Name of a DocType
+#. Label of the party_type (Link) field in DocType 'Party Type'
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:635
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:189
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:432
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:292
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:640
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/journal_entry_template_account/journal_entry_template_account.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:92
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:69
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:52
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:69
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:141
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:42
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:231
+#: erpnext/accounts/report/general_ledger/general_ledger.js:65
+#: erpnext/accounts/report/general_ledger/general_ledger.py:775
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:41
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:157
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:35
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:86
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:15
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:15
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:49
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:45
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:9
+#: erpnext/setup/doctype/party_type/party_type.json
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:80
+msgid "Party Type"
+msgstr "파티 유형"
+
+#: erpnext/accounts/party.py:826
+msgid "Party Type and Party can only be set for Receivable / Payable account {0}"
+msgstr "거래 유형 및 거래처는 수취/지급 계정에만 설정할 수 있습니다. {0}"
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:633
+msgid "Party Type and Party is mandatory for {0} account"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:174
+msgid "Party Type and Party is required for Receivable / Payable account {0}"
+msgstr "수취채권/지급채권 계정에는 거래처 유형과 거래처 정보가 필수입니다. {0}"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:520
+#: erpnext/accounts/party.py:418
+msgid "Party Type is mandatory"
+msgstr ""
+
+#. Label of the party_user (Link) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Party User"
+msgstr "파티 사용자"
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:72
+msgid "Party account is required to create a payment entry."
+msgstr "결제 내역을 생성하려면 거래처 계정이 필요합니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:475
+msgid "Party can only be one of {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:523
+msgid "Party is mandatory"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:208
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:218
+msgid "Party is required"
+msgstr "파티가 필요합니다"
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:69
+msgid "Party is required create a payment entry."
+msgstr "당사자는 결제 내역을 생성해야 합니다."
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:66
+msgid "Party type is required to create a payment entry."
+msgstr "지급 내역을 생성하려면 거래처 유형을 입력해야 합니다."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pascal"
+msgstr "파스칼"
+
+#. Option for the 'Status' (Select) field in DocType 'Quality Review'
+#. Option for the 'Status' (Select) field in DocType 'Quality Review Objective'
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json
+msgid "Passed"
+msgstr "통과됨"
+
+#. Label of the passport_details_section (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Passport Details"
+msgstr "여권 정보"
+
+#. Label of the passport_number (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Passport Number"
+msgstr "여권 번호"
+
+#: erpnext/accounts/doctype/subscription/subscription_list.js:10
+msgid "Past Due Date"
+msgstr "기한 만료일"
+
+#: erpnext/public/js/templates/crm_activities.html:152
+msgid "Past Events"
+msgstr "지난 행사들"
+
+#. Option for the 'Status' (Select) field in DocType 'Job Card Operation'
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:96
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:25
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:68
+msgid "Pause"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
+msgid "Pause Job"
+msgstr "작업 일시 중지"
+
+#. Name of a DocType
+#: erpnext/support/doctype/pause_sla_on_status/pause_sla_on_status.json
+msgid "Pause SLA On Status"
+msgstr "상태 표시 시 SLA 일시 중지"
+
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation'
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation Log'
+#. Option for the 'Status' (Select) field in DocType 'Process Period Closing
+#. Voucher'
+#. Option for the 'Status' (Select) field in DocType 'Process Period Closing
+#. Voucher Detail'
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+msgid "Paused"
+msgstr "일시 중지됨"
+
+#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Pay"
+msgstr "지불하다"
+
+#: erpnext/templates/pages/order.html:43
+msgctxt "Amount"
+msgid "Pay"
+msgstr "지불하다"
+
+#. Label of the pay_to_recd_from (Data) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Pay To / Recd From"
+msgstr "지불 대상 / 수령 대상"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger
+#. Entry'
+#. Option for the 'Account Type' (Select) field in DocType 'Party Type'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/account_balance/account_balance.js:54
+#: erpnext/setup/doctype/party_type/party_type.json
+msgid "Payable"
+msgstr "지불해야 할 금액"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
+#: erpnext/accounts/report/purchase_register/purchase_register.py:194
+#: erpnext/accounts/report/purchase_register/purchase_register.py:235
+msgid "Payable Account"
+msgstr "지급 계정"
+
+#. Label of the payables (Check) field in DocType 'Email Digest'
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Payables"
+msgstr ""
+
+#. Label of the payer_settings (Column Break) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Payer Settings"
+msgstr ""
+
+#. Option for the 'Posting Date Inheritance for Exchange Gain / Loss' (Select)
+#. field in DocType 'Accounts Settings'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:122
+#: banking/src/components/features/ActionLog/ActionLog.tsx:344
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/dunning/dunning.js:51
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_dashboard.py:10
+#: erpnext/accounts/doctype/payment_request/payment_request_dashboard.py:12
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:82
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:124
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:20
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
+#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
+#: erpnext/selling/doctype/sales_order/sales_order.js:1213
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:31
+msgid "Payment"
+msgstr "지불"
+
+#. Label of the payment_account (Link) field in DocType 'Payment Gateway
+#. Account'
+#. Label of the payment_account (Read Only) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Account"
+msgstr "결제 계좌"
+
+#. Label of the payment_amount (Currency) field in DocType 'Overdue Payment'
+#. Label of the payment_amount (Currency) field in DocType 'Payment Schedule'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:50
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:275
+msgid "Payment Amount"
+msgstr "지불 금액"
+
+#. Label of the base_payment_amount (Currency) field in DocType 'Payment
+#. Schedule'
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+msgid "Payment Amount (Company Currency)"
+msgstr "지불 금액 (회사 통화)"
+
+#. Label of the payment_channel (Select) field in DocType 'Payment Gateway
+#. Account'
+#. Label of the payment_channel (Select) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Channel"
+msgstr "결제 채널"
+
+#. Label of the deductions (Table) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Payment Deductions or Loss"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:452
+msgid "Payment Details"
+msgstr "결제 정보"
+
+#. Label of the payment_document (Link) field in DocType 'Bank Clearance
+#. Detail'
+#. Label of the payment_document (Link) field in DocType 'Bank Transaction
+#. Payments'
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:104
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:314
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:99
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:112
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:74
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:132
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:81
+msgid "Payment Document"
+msgstr "지불 서류"
+
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:26
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:68
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:126
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:75
+msgid "Payment Document Type"
+msgstr "지불 문서 유형"
+
+#. Label of the due_date (Date) field in DocType 'POS Invoice'
+#. Label of the due_date (Date) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:110
+msgid "Payment Due Date"
+msgstr "지불 기한"
+
+#. Label of the payment_entries (Table) field in DocType 'Bank Clearance'
+#. Label of the payment_entries (Table) field in DocType 'Bank Transaction'
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+msgid "Payment Entries"
+msgstr "지불 항목"
+
+#: erpnext/accounts/utils.py:1154
+msgid "Payment Entries {0} are un-linked"
+msgstr ""
+
+#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Clearance
+#. Detail'
+#. Label of the payment_entry (Dynamic Link) field in DocType 'Bank Transaction
+#. Payments'
+#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction
+#. Rule'
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Name of a DocType
+#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment
+#. Order'
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:270
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.js:27
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/print_format/bank_and_cash_payment_voucher/bank_and_cash_payment_voucher.html:12
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:32
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:8
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Payment Entry"
+msgstr "결제 입력"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:361
+msgid "Payment Entry Created"
+msgstr "결제 입력 생성됨"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_entry_deduction/payment_entry_deduction.json
+msgid "Payment Entry Deduction"
+msgstr "지불 입력 공제"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Payment Entry Reference"
+msgstr "결제 입력 참조 번호"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:637
+msgid "Payment Entry already exists"
+msgstr ""
+
+#: erpnext/accounts/utils.py:651
+msgid "Payment Entry has been modified after you pulled it. Please pull it again."
+msgstr "결제 입력 내용이 불러오기 후 수정되었습니다. 다시 불러오세요."
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:175
+#: erpnext/accounts/doctype/payment_request/payment_request.py:797
+msgid "Payment Entry is already created"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1618
+msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:378
+msgid "Payment Failed"
+msgstr "결제 실패"
+
+#. Label of the party_section (Section Break) field in DocType 'Bank
+#. Transaction'
+#. Label of the party_section (Section Break) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Payment From / To"
+msgstr "지불 시작일/수신일"
+
+#. Label of the payment_gateway (Link) field in DocType 'Payment Gateway
+#. Account'
+#. Label of the payment_gateway (Read Only) field in DocType 'Payment Request'
+#. Label of the payment_gateway (Link) field in DocType 'Subscription Plan'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Payment Gateway"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the payment_gateway_account (Link) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_gateway_account/payment_gateway_account.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Gateway Account"
+msgstr ""
+
+#: erpnext/accounts/utils.py:1519
+msgid "Payment Gateway Account not created, please create one manually."
+msgstr ""
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Gateway Details"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:282
+#: erpnext/accounts/doctype/payment_request/payment_request.py:289
+#: erpnext/accounts/doctype/payment_request/payment_request.py:294
+msgid "Payment Initialization Failed"
+msgstr "결제 초기화 실패"
+
+#. Name of a report
+#: erpnext/accounts/report/payment_ledger/payment_ledger.json
+msgid "Payment Ledger"
+msgstr ""
+
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:260
+msgid "Payment Ledger Balance"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+msgid "Payment Ledger Entry"
+msgstr ""
+
+#. Label of the payment_limit (Int) field in DocType 'Payment Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Payment Limit"
+msgstr "지불 한도"
+
+#: erpnext/accounts/report/pos_register/pos_register.js:50
+#: erpnext/accounts/report/pos_register/pos_register.py:126
+#: erpnext/accounts/report/pos_register/pos_register.py:216
+#: erpnext/selling/page/point_of_sale/pos_payment.js:25
+msgid "Payment Method"
+msgstr "결제 방법"
+
+#. Label of the section_break_11 (Section Break) field in DocType 'POS Profile'
+#. Label of the payments (Table) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Payment Methods"
+msgstr "결제 방법"
+
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:24
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:40
+msgid "Payment Mode"
+msgstr "결제 방식"
+
+#. Label of the payment_options_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Payment Options"
+msgstr "결제 옵션"
+
+#. Label of the payment_order (Link) field in DocType 'Journal Entry'
+#. Label of the payment_order (Link) field in DocType 'Payment Entry'
+#. Name of a DocType
+#. Label of the payment_order (Link) field in DocType 'Payment Request'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Payment Order"
+msgstr "지불 주문서"
+
+#. Label of the references (Table) field in DocType 'Payment Order'
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+msgid "Payment Order Reference"
+msgstr "지불 주문 참조 번호"
+
+#. Label of the payment_order_status (Select) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Payment Order Status"
+msgstr "결제 주문 상태"
+
+#. Label of the payment_order_type (Select) field in DocType 'Payment Order'
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+msgid "Payment Order Type"
+msgstr "결제 주문 유형"
+
+#. Option for the 'Payment Order Status' (Select) field in DocType 'Payment
+#. Entry'
+#. Option for the 'Status' (Select) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Ordered"
+msgstr "결제 주문 완료"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Payment Period Based On Invoice Date"
+msgstr ""
+
+#. Label of the payment_plan_section (Section Break) field in DocType
+#. 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Payment Plan"
+msgstr "결제 계획"
+
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:4
+msgid "Payment Receipt Note"
+msgstr "지불 영수증"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:359
+msgid "Payment Received"
+msgstr "결제 완료"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Payment Reconciliaition"
+msgstr "지불 대조"
+
+#. Name of a DocType
+#. Label of the payment_reconciliation (Table) field in DocType 'POS Closing
+#. Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Payment Reconciliation"
+msgstr "지불 대조"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+msgid "Payment Reconciliation Allocation"
+msgstr "지불 조정 할당"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+msgid "Payment Reconciliation Invoice"
+msgstr "지불 대조 송장"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:139
+msgid "Payment Reconciliation Job: {0} is running for this party. Can't reconcile now."
+msgstr "지불 대조 작업: {0} 이 이 당사자에 대해 실행 중입니다. 지금은 대조할 수 없습니다."
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+msgid "Payment Reconciliation Payment"
+msgstr "지불 대조 결제"
+
+#. Label of the section_break_jpd0 (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Payment Reconciliation Settings"
+msgstr "결제 대조 설정"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:136
+msgid "Payment Recorded"
+msgstr "결제 기록됨"
+
+#. Label of the payment_reference (Data) field in DocType 'Payment Order
+#. Reference'
+#. Name of a DocType
+#. Label of the payment_reference (Table) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_reference/payment_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Reference"
+msgstr "결제 참조"
+
+#. Label of the references (Table) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Payment References"
+msgstr "결제 참고 자료"
+
+#. Label of the payment_request_section (Section Break) field in DocType
+#. 'Accounts Settings'
+#. Label of the payment_request (Link) field in DocType 'Payment Entry
+#. Reference'
+#. Option for the 'Payment Order Type' (Select) field in DocType 'Payment
+#. Order'
+#. Label of the payment_request (Link) field in DocType 'Payment Order
+#. Reference'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/payment_order/payment_order.js:19
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:146
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:140
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:402
+#: erpnext/selling/doctype/sales_order/sales_order.js:1205
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Payment Request"
+msgstr "결제 요청"
+
+#. Label of the payment_request_outstanding (Float) field in DocType 'Payment
+#. Entry Reference'
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Payment Request Outstanding"
+msgstr ""
+
+#. Label of the payment_request_type (Select) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment Request Type"
+msgstr "결제 요청 유형"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:870
+msgid "Payment Request for {0}"
+msgstr "{0}에 대한 결제 요청"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:811
+msgid "Payment Request is already created"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:454
+msgid "Payment Request took too long to respond. Please try requesting for payment again."
+msgstr "결제 요청에 대한 응답 시간이 너무 오래 걸렸습니다. 다시 결제 요청을 시도해 주세요."
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:728
+msgid "Payment Requests cannot be created against: {0}"
+msgstr "다음 항목에 대해서는 결제 요청을 생성할 수 없습니다: {0}"
+
+#. Description of the 'Create in Draft Status' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Payment Requests made from Sales / Purchase Invoice will be put in Draft explicitly"
+msgstr ""
+
+#. Label of the payment_schedule (Data) field in DocType 'Overdue Payment'
+#. Label of the payment_schedule (Link) field in DocType 'Payment Reference'
+#. Name of a DocType
+#. Label of the payment_schedule (Table) field in DocType 'POS Invoice'
+#. Label of the payment_schedule (Table) field in DocType 'Purchase Invoice'
+#. Label of the payment_schedule (Table) field in DocType 'Sales Invoice'
+#. Label of the payment_schedule (Table) field in DocType 'Purchase Order'
+#. Label of the payment_schedule (Table) field in DocType 'Quotation'
+#. Label of the payment_schedule (Table) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_reference/payment_reference.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/controllers/accounts_controller.py:2749
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Payment Schedule"
+msgstr "지불 일정"
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:750
+msgid "Payment Schedule based Payment Requests cannot be created because a Payment Entry already exists for this document."
+msgstr "해당 문서에 대한 지급 내역이 이미 존재하므로 지급 일정 기반 지급 요청을 생성할 수 없습니다."
+
+#: erpnext/public/js/controllers/transaction.js:483
+msgid "Payment Schedules"
+msgstr "지불 일정"
+
+#. Label of the payment_term (Link) field in DocType 'Overdue Payment'
+#. Label of the payment_term (Link) field in DocType 'Payment Entry Reference'
+#. Label of the payment_term (Link) field in DocType 'Payment Reference'
+#. Label of the payment_term (Link) field in DocType 'Payment Schedule'
+#. Name of a DocType
+#. Label of the payment_term (Link) field in DocType 'Payment Terms Template
+#. Detail'
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/payment_reference/payment_reference.json
+#: erpnext/accounts/doctype/payment_schedule/payment_schedule.json
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
+#: erpnext/accounts/report/gross_profit/gross_profit.py:449
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/public/js/controllers/transaction.js:498
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:30
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Payment Term"
+msgstr "지불 조건"
+
+#. Label of the payment_term_name (Data) field in DocType 'Payment Term'
+#: erpnext/accounts/doctype/payment_term/payment_term.json
+msgid "Payment Term Name"
+msgstr ""
+
+#. Label of the payment_term_outstanding (Float) field in DocType 'Payment
+#. Entry Reference'
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Payment Term Outstanding"
+msgstr "지불 조건 잔액"
+
+#. Label of the terms (Table) field in DocType 'Payment Terms Template'
+#. Label of the payment_schedule_section (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the payment_schedule_section (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the payment_schedule_section (Section Break) field in DocType
+#. 'Sales Invoice'
+#. Label of the payment_schedule_section (Section Break) field in DocType
+#. 'Purchase Order'
+#. Label of the payment_schedule_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the payment_terms_section (Section Break) field in DocType 'Sales
+#. Order'
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Payment Terms"
+msgstr "지불 조건"
+
+#. Name of a report
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.json
+msgid "Payment Terms Status for Sales Order"
+msgstr "판매 주문에 대한 결제 조건 상태"
+
+#. Name of a DocType
+#. Label of the payment_terms_template (Link) field in DocType 'POS Invoice'
+#. Label of the payment_terms_template (Link) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the payment_terms_template (Link) field in DocType 'Purchase
+#. Invoice'
+#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
+#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
+#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
+#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:86
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:96
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:124
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:102
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Payment Terms Template"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_terms_template_detail/payment_terms_template_detail.json
+msgid "Payment Terms Template Detail"
+msgstr ""
+
+#. Description of the 'Automatically Fetch Payment Terms from Order/Quotation'
+#. (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Payment Terms from orders will be fetched into the invoices as is"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:45
+msgid "Payment Terms:"
+msgstr "지불 조건:"
+
+#. Label of the payment_type (Select) field in DocType 'Payment Entry'
+#. Label of the payment_type (Data) field in DocType 'Payment Entry Reference'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:28
+msgid "Payment Type"
+msgstr "결제 유형"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:609
+msgid "Payment Type must be one of Receive, Pay and Internal Transfer"
+msgstr ""
+
+#. Label of the payment_url (Data) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Payment URL"
+msgstr "결제 URL"
+
+#: erpnext/accounts/utils.py:1142
+msgid "Payment Unlink Error"
+msgstr "결제 연결 해제 오류"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:900
+msgid "Payment against {0} {1} cannot be greater than Outstanding Amount {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:803
+msgid "Payment amount cannot be less than or equal to 0"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:293
+msgid "Payment gateway {0} failed to create a payment session"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:176
+msgid "Payment methods are mandatory. Please add at least one payment method."
+msgstr "결제 수단은 필수 입력 사항입니다. 최소 한 가지 이상의 결제 수단을 추가해 주세요."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
+msgid "Payment methods refreshed. Please review before proceeding."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:466
+#: erpnext/selling/page/point_of_sale/pos_payment.js:366
+msgid "Payment of {0} received successfully."
+msgstr "{0} 결제가 성공적으로 완료되었습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:373
+msgid "Payment of {0} received successfully. Waiting for other requests to complete..."
+msgstr "{0} 결제가 성공적으로 완료되었습니다. 다른 요청 사항이 완료될 때까지 기다리는 중입니다..."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:391
+msgid "Payment related to {0} is not completed"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:443
+msgid "Payment request failed"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:823
+msgid "Payment term {0} not used in {1}"
+msgstr ""
+
+#. Label of the payments_tab (Tab Break) field in DocType 'Accounts Settings'
+#. Label of the payments (Table) field in DocType 'Cashier Closing'
+#. Label of the payments (Table) field in DocType 'Payment Reconciliation'
+#. Label of the payments_section (Section Break) field in DocType 'POS Invoice'
+#. Label of the payments_tab (Tab Break) field in DocType 'POS Invoice'
+#. Label of the payments_section (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the payments_tab (Tab Break) field in DocType 'Purchase Invoice'
+#. Label of the payments_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the payments_tab (Tab Break) field in DocType 'Sales Invoice'
+#. Label of a Card Break in the Invoicing Workspace
+#. Option for the 'Hold Type' (Select) field in DocType 'Supplier'
+#. Label of a Desktop Icon
+#. Label of a Workspace Sidebar Item
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:286
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:27
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:43
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier/supplier_dashboard.py:12
+#: erpnext/desktop_icon/payments.json
+#: erpnext/selling/doctype/customer/customer_dashboard.py:21
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:30
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Payments"
+msgstr "결제"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:342
+msgid "Payments could not be updated."
+msgstr "결제 내역을 업데이트할 수 없습니다."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:336
+msgid "Payments updated."
+msgstr ""
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Payroll Entry"
+msgstr "급여 입력"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
+msgid "Payroll Payable"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/doctype/timesheet/timesheet_list.js:13
+msgid "Payslip"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Peck (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Peck (US)"
+msgstr ""
+
+#. Label of the pegged_against (Link) field in DocType 'Pegged Currency
+#. Details'
+#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json
+msgid "Pegged Against"
+msgstr "반대 방향으로 고정됨"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pegged_currencies/pegged_currencies.json
+msgid "Pegged Currencies"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/pegged_currency_details/pegged_currency_details.json
+msgid "Pegged Currency Details"
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:93
+msgid "Pending Activities"
+msgstr "보류 중인 활동"
+
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:65
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:65
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:291
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:306
+msgid "Pending Amount"
+msgstr ""
+
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
+#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
+#: erpnext/selling/doctype/sales_order/sales_order.js:1726
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
+msgid "Pending Qty"
+msgstr "보류 중인 수량"
+
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:54
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:44
+#: erpnext/manufacturing/doctype/job_card/job_card.js:273
+msgid "Pending Quantity"
+msgstr "대기 수량"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Task'
+#. Option in a Select field in the tasks Web Form
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/web_form/tasks/tasks.json
+#: erpnext/templates/pages/task_info.html:74
+msgid "Pending Review"
+msgstr "검토 중"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Pending SO Items For Purchase Request"
+msgstr "구매 요청 보류 중인 SO 품목"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:123
+msgid "Pending Work Order"
+msgstr "보류 중인 작업 주문"
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:177
+msgid "Pending activities for today"
+msgstr "오늘 예정된 활동"
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:275
+msgid "Pending processing"
+msgstr "처리 대기 중"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr "대기 수량은 요청 수량보다 클 수 없습니다."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr "대기 수량은 음수일 수 없습니다."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:36
+msgid "Pension Funds"
+msgstr ""
+
+#. Description of the 'Shift Time (In Hours)' (Int) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Per Day"
+msgstr "하루"
+
+#. Description of the 'Total Workstation Time (In Hours)' (Int) field in
+#. DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Per Day\n"
+"Shift Time (In Hours) * No of Workstations * No of Shift"
+msgstr ""
+
+#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Per Month"
+msgstr "월"
+
+#. Label of the per_received (Percent) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Per Received"
+msgstr ""
+
+#. Label of the per_transferred (Percent) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Per Transferred"
+msgstr ""
+
+#. Description of the 'Manufacturing Time' (Int) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Per Unit Time in Mins"
+msgstr ""
+
+#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Per Week"
+msgstr ""
+
+#. Option for the 'Evaluation Period' (Select) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Per Year"
+msgstr "연간"
+
+#. Label of the percentage (Percent) field in DocType 'Cost Center Allocation
+#. Percentage'
+#: erpnext/accounts/doctype/cost_center_allocation_percentage/cost_center_allocation_percentage.json
+msgid "Percentage (%)"
+msgstr "백분율(%)"
+
+#. Label of the percentage_allocation (Float) field in DocType 'Monthly
+#. Distribution Percentage'
+#: erpnext/accounts/doctype/monthly_distribution_percentage/monthly_distribution_percentage.json
+msgid "Percentage Allocation"
+msgstr "백분율 할당"
+
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution.py:57
+msgid "Percentage Allocation should be equal to 100%"
+msgstr ""
+
+#. Description of the 'Over Billing Allowance (%)' (Float) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Percentage by which over-billing is allowed against a Sales/Purchase Order for this item. If not set, value from Accounts Settings will be used."
+msgstr ""
+
+#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Percentage by which over-delivery or over-receipt is allowed against a Sales/Purchase Order for this item. If not set, value from Stock Settings will be used."
+msgstr "해당 품목에 대한 판매/구매 주문서 대비 초과 납품 또는 초과 수령이 허용되는 비율입니다. 설정하지 않으면 재고 설정의 값이 사용됩니다."
+
+#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Percentage you are allowed to order beyond the Blanket Order quantity."
+msgstr ""
+
+#. Description of the 'Blanket Order Allowance (%)' (Float) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Percentage you are allowed to sell beyond the Blanket Order quantity."
+msgstr ""
+
+#. Description of the 'Over Transfer Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Percentage you are allowed to transfer more against the quantity ordered. For example: If you have ordered 100 units. and your Allowance is 10% then you are allowed to transfer 110 units."
+msgstr "주문 수량 대비 이체 가능한 최대 비율입니다. 예를 들어, 100개를 주문했고 이체 허용량이 10%인 경우 110개까지 이체할 수 있습니다."
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:6
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:442
+msgid "Perception Analysis"
+msgstr "인식 분석"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.html:138
+#: erpnext/accounts/report/cash_flow/cash_flow.html:138
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:138
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:60
+msgid "Period Based On"
+msgstr "기간을 기준으로"
+
+#: erpnext/accounts/general_ledger.py:838
+msgid "Period Closed"
+msgstr "기간 종료"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:69
+#: erpnext/accounts/report/trial_balance/trial_balance.js:89
+msgid "Period Closing Entry For Current Period"
+msgstr ""
+
+#. Label of the period_closing_settings_section (Section Break) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Period Closing Settings"
+msgstr "기간 마감 설정"
+
+#. Label of the period_closing_voucher (Link) field in DocType 'Account Closing
+#. Balance'
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Period Closing Voucher"
+msgstr "기간 마감 전표"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:498
+msgid "Period Closing Voucher {0} GL Entry Cancellation Failed"
+msgstr "기간 마감 전표 {0} GL 입력 취소 실패"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:477
+msgid "Period Closing Voucher {0} GL Entry Processing Failed"
+msgstr "기간 마감 전표 {0} GL 입력 처리 실패"
+
+#. Label of the period_details_section (Section Break) field in DocType 'POS
+#. Closing Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "Period Details"
+msgstr ""
+
+#. Label of the period_end_date (Date) field in DocType 'Period Closing
+#. Voucher'
+#. Label of the period_end_date (Datetime) field in DocType 'POS Closing Entry'
+#. Label of the period_end_date (Date) field in DocType 'POS Opening Entry'
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+msgid "Period End Date"
+msgstr "기간 종료일"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:68
+msgid "Period End Date cannot be greater than Fiscal Year End Date"
+msgstr ""
+
+#. Option for the 'Balance Type' (Select) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Period Movement (Debits - Credits)"
+msgstr ""
+
+#. Label of the period_name (Data) field in DocType 'Accounting Period'
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+msgid "Period Name"
+msgstr ""
+
+#. Label of the total_score (Percent) field in DocType 'Supplier Scorecard
+#. Period'
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Period Score"
+msgstr "기간 점수"
+
+#. Label of the section_break_23 (Section Break) field in DocType 'Pricing
+#. Rule'
+#. Label of the period_settings_section (Section Break) field in DocType
+#. 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Period Settings"
+msgstr "기간 설정"
+
+#. Label of the period_start_date (Date) field in DocType 'Period Closing
+#. Voucher'
+#. Label of the period_start_date (Datetime) field in DocType 'POS Closing
+#. Entry'
+#. Label of the period_start_date (Datetime) field in DocType 'POS Opening
+#. Entry'
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+msgid "Period Start Date"
+msgstr "기간 시작일"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:65
+msgid "Period Start Date cannot be greater than Period End Date"
+msgstr ""
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:62
+msgid "Period Start Date must be {0}"
+msgstr ""
+
+#. Label of the period_to_date (Datetime) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Period To Date"
+msgstr "기간 현재까지"
+
+#: erpnext/public/js/purchase_trends_filters.js:35
+msgid "Period based On"
+msgstr "기간을 기준으로"
+
+#. Label of the period_from_date (Datetime) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Period_from_date"
+msgstr "기간_시작일"
+
+#. Label of the section_break_tcvw (Section Break) field in DocType 'Journal
+#. Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Periodic Accounting"
+msgstr "정기 회계"
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Periodic Accounting Entry"
+msgstr "주기적 회계 입력"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:253
+msgid "Periodic Accounting Entry is not allowed for company {0} with perpetual inventory enabled"
+msgstr ""
+
+#. Label of the periodic_entry_difference_account (Link) field in DocType
+#. 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Periodic Entry Difference Account"
+msgstr "주기적 입력 차이 계정"
+
+#. Label of the periodicity (Data) field in DocType 'Asset Maintenance Log'
+#. Label of the periodicity (Select) field in DocType 'Asset Maintenance Task'
+#. Label of the periodicity (Select) field in DocType 'Maintenance Schedule
+#. Item'
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:72
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:33
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:54
+#: erpnext/public/js/financial_statements.js:438
+msgid "Periodicity"
+msgstr ""
+
+#. Label of the permanent_address (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Permanent Address"
+msgstr "영구 주소"
+
+#. Label of the permanent_accommodation_type (Select) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Permanent Address Is"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:70
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:74
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:80
+msgid "Permission Denied"
+msgstr "권한이 거부되었습니다"
+
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:19
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:18
+msgid "Perpetual inventory required for the company {0} to view this report."
+msgstr "이 보고서를 보려면 회사 {0} 에 영구 재고 시스템이 필요합니다."
+
+#. Label of the personal_details (Tab Break) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Personal Details"
+msgstr "개인 정보"
+
+#. Option for the 'Preferred Contact Email' (Select) field in DocType
+#. 'Employee'
+#. Label of the personal_email (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Personal Email"
+msgstr "개인 이메일"
+
+#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Petrol"
+msgstr "가솔린"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:113
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:110
+msgid "Phantom BOM cannot be created for stock item {0}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:16
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321
+msgid "Phantom Item"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430
+msgid "Phantom Item is mandatory"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:234
+msgid "Pharmaceutical"
+msgstr "제약"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:37
+msgid "Pharmaceuticals"
+msgstr "제약"
+
+#. Label of the phone_ext (Data) field in DocType 'Lead'
+#. Label of the phone_ext (Data) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Phone Ext."
+msgstr ""
+
+#. Label of the phone_no (Data) field in DocType 'Company'
+#. Label of the phone_no (Data) field in DocType 'Warehouse'
+#: erpnext/public/js/print.js:82 erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Phone No"
+msgstr "전화번호"
+
+#. Label of the phone_number (Data) field in DocType 'Payment Request'
+#. Label of the customer_phone_number (Data) field in DocType 'Appointment'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:946
+msgid "Phone Number"
+msgstr "전화 번호"
+
+#. Name of a DocType
+#. Label of the pick_list (Link) field in DocType 'Stock Entry'
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/sales_order/sales_order.js:1066
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:199
+#: erpnext/stock/doctype/material_request/material_request.js:156
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Pick List"
+msgstr "선택 목록"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:269
+msgid "Pick List Incomplete"
+msgstr ""
+
+#. Label of the pick_list_item (Data) field in DocType 'Delivery Note Item'
+#. Name of a DocType
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Pick List Item"
+msgstr "선택 목록 항목"
+
+#. Label of the pick_manually (Check) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Pick Manually"
+msgstr "수동으로 선택하세요"
+
+#. Label of the pick_serial_and_batch (Button) field in DocType 'Asset Repair
+#. Consumed Item'
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+msgid "Pick Serial / Batch"
+msgstr ""
+
+#. Label of the pick_serial_and_batch_based_on (Select) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Pick Serial / Batch Based On"
+msgstr ""
+
+#. Label of the pick_serial_and_batch (Button) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the pick_serial_and_batch (Button) field in DocType 'Delivery Note
+#. Item'
+#. Label of the pick_serial_and_batch (Button) field in DocType 'Packed Item'
+#. Label of the pick_serial_and_batch (Button) field in DocType 'Pick List
+#. Item'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Pick Serial / Batch No"
+msgstr ""
+
+#. Label of the picked_qty (Float) field in DocType 'Material Request Item'
+#. Label of the picked_qty (Float) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Picked Qty"
+msgstr "선택한 수량"
+
+#. Label of the picked_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the picked_qty (Float) field in DocType 'Pick List Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Picked Qty (in Stock UOM)"
+msgstr "선택한 수량 (재고 단위)"
+
+#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup"
+msgstr "찾다"
+
+#. Label of the pickup_contact_person (Link) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup Contact Person"
+msgstr ""
+
+#. Label of the pickup_date (Date) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup Date"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.js:398
+msgid "Pickup Date cannot be before this day"
+msgstr ""
+
+#. Label of the pickup (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup From"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.py:107
+msgid "Pickup To time should be greater than Pickup From time"
+msgstr ""
+
+#. Label of the pickup_type (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup Type"
+msgstr ""
+
+#. Label of the heading_pickup_from (Heading) field in DocType 'Shipment'
+#. Label of the pickup_from_type (Select) field in DocType 'Shipment'
+#. Label of the pickup_from (Time) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup from"
+msgstr ""
+
+#. Label of the pickup_to (Time) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Pickup to"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pint (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pint (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pint, Dry (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pint, Liquid (US)"
+msgstr ""
+
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.js:8
+msgid "Pipeline By"
+msgstr ""
+
+#. Label of the place_of_issue (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Place of Issue"
+msgstr "발행 장소"
+
+#. Label of the plaid_access_token (Data) field in DocType 'Bank'
+#: erpnext/accounts/doctype/bank/bank.json
+msgid "Plaid Access Token"
+msgstr ""
+
+#. Label of the plaid_client_id (Data) field in DocType 'Plaid Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "Plaid Client ID"
+msgstr ""
+
+#. Label of the plaid_env (Select) field in DocType 'Plaid Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "Plaid Environment"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:154
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:178
+msgid "Plaid Link Failed"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:252
+msgid "Plaid Link Refresh Required"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank/bank.js:128
+msgid "Plaid Link Updated"
+msgstr ""
+
+#. Label of the plaid_secret (Password) field in DocType 'Plaid Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "Plaid Secret"
+msgstr ""
+
+#. Label of a Link in the Invoicing Workspace
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+#: erpnext/workspace_sidebar/banking.json
+msgid "Plaid Settings"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:227
+msgid "Plaid transactions sync error"
+msgstr "Plaid 거래 동기화 오류"
+
+#. Label of the plan (Link) field in DocType 'Subscription Plan Detail'
+#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json
+msgid "Plan"
+msgstr "계획"
+
+#. Label of the plan_name (Data) field in DocType 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Plan Name"
+msgstr ""
+
+#. Description of the 'Use Multi-Level BOM' (Check) field in DocType 'Work
+#. Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Plan material for sub-assemblies"
+msgstr ""
+
+#. Description of the 'Capacity Planning For (Days)' (Int) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Plan operations X days in advance"
+msgstr ""
+
+#. Description of the 'Allow Overtime' (Check) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Plan time logs outside Workstation working hours"
+msgstr ""
+
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset
+#. Maintenance Log'
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Asset
+#. Maintenance Task'
+#. Option for the 'Status' (Select) field in DocType 'Sales Forecast'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast_list.js:6
+msgid "Planned"
+msgstr "계획된"
+
+#. Label of the planned_end_date (Datetime) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:236
+msgid "Planned End Date"
+msgstr "예정 종료일"
+
+#. Label of the planned_end_time (Datetime) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Planned End Time"
+msgstr "예정 종료 시간"
+
+#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order'
+#. Label of the planned_operating_cost (Currency) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Planned Operating Cost"
+msgstr "계획된 운영 비용"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1043
+msgid "Planned Purchase Order"
+msgstr "계획 구매 주문"
+
+#. Label of the planned_qty (Float) field in DocType 'Master Production
+#. Schedule Item'
+#. Label of the planned_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the planned_qty (Float) field in DocType 'Bin'
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1031
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:150
+msgid "Planned Qty"
+msgstr "계획 수량"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:199
+msgid "Planned Qty: Quantity, for which, Work Order has been raised, but is pending to be manufactured."
+msgstr ""
+
+#. Label of the planned_qty (Float) field in DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:109
+msgid "Planned Quantity"
+msgstr "계획 수량"
+
+#. Label of the planned_start_date (Datetime) field in DocType 'Production Plan
+#. Item'
+#. Label of the planned_start_date (Datetime) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:230
+msgid "Planned Start Date"
+msgstr "예정된 시작일"
+
+#. Label of the planned_start_time (Datetime) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Planned Start Time"
+msgstr "예정된 시작 시간"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1048
+msgid "Planned Work Order"
+msgstr "계획된 작업 지시서"
+
+#. Label of the mps_tab (Tab Break) field in DocType 'Master Production
+#. Schedule'
+#. Label of the item_balance (Section Break) field in DocType 'Quotation Item'
+#. Label of the planning_section (Section Break) field in DocType 'Sales Order
+#. Item'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:262
+msgid "Planning"
+msgstr "계획"
+
+#. Label of the sb_4 (Section Break) field in DocType 'Subscription'
+#. Label of the plans (Table) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Plans"
+msgstr "계획"
+
+#. Label of the plant_dashboard (HTML) field in DocType 'Plant Floor'
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+msgid "Plant Dashboard"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the plant_floor (Link) field in DocType 'Workstation'
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/public/js/plant_floor_visual/visual_plant.js:53
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Plant Floor"
+msgstr "플랜트 바닥"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+msgid "Plants and Machineries"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:631
+msgid "Please Restock Items and Update the Pick List to continue. To discontinue, cancel the Pick List."
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:18
+msgid "Please Select a Company"
+msgstr "회사를 선택해 주세요"
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:114
+msgid "Please Select a Company."
+msgstr "회사를 선택해 주세요."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:420
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:162
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:204
+msgid "Please Select a Customer"
+msgstr "고객을 선택해 주세요"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:123
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:222
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:146
+msgid "Please Select a Supplier"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161
+msgid "Please Set Priority"
+msgstr "우선순위를 설정해 주세요"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:171
+msgid "Please Set Supplier Group in Buying Settings."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
+msgid "Please Specify Account"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier/supplier.py:129
+msgid "Please add 'Supplier' role to user {0}."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:101
+msgid "Please add Mode of payments and opening balance details."
+msgstr "결제 방식과 개시 잔액 정보를 추가해 주세요."
+
+#: erpnext/manufacturing/doctype/bom/bom.js:39
+msgid "Please add Operations first."
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:214
+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:418
+msgid "Please add Root Account for - {0}"
+msgstr "루트 계정을 추가해 주세요 - {0}"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:320
+msgid "Please add a Temporary Opening account in Chart of Accounts"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:77
+msgid "Please add an account for the Bank Entry rule."
+msgstr "은행 입금 규칙에 대한 계정을 추가해 주세요."
+
+#: erpnext/public/js/utils/naming_series.js:170
+msgid "Please add at least one naming series."
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:663
+msgid "Please add atleast one Serial No / Batch No"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:84
+msgid "Please add the Bank Account column"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account_tree.js:239
+msgid "Please add the account to root level Company - {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:237
+msgid "Please add the account to root level Company - {}"
+msgstr ""
+
+#: erpnext/controllers/website_list_for_contact.py:298
+msgid "Please add {1} role to user {0}."
+msgstr "사용자 {0}에 {1} 역할을 추가해 주세요."
+
+#: erpnext/controllers/stock_controller.py:1749
+msgid "Please adjust the qty or edit {0} to proceed."
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:128
+msgid "Please attach CSV file"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
+msgid "Please cancel and amend the Payment Entry"
+msgstr ""
+
+#: erpnext/accounts/utils.py:1141
+msgid "Please cancel payment entry manually first"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:326
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:347
+msgid "Please cancel related transaction."
+msgstr "관련 거래를 취소해 주세요."
+
+#: erpnext/assets/doctype/asset/asset.js:86
+#: erpnext/assets/doctype/asset/asset.py:250
+msgid "Please capitalize this asset before submitting."
+msgstr "제출하기 전에 이 항목을 대문자로 입력해 주세요."
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:974
+msgid "Please check Multi Currency option to allow accounts with other currency"
+msgstr ""
+
+#: erpnext/accounts/deferred_revenue.py:542
+msgid "Please check Process Deferred Accounting {0} and submit manually after resolving errors."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:120
+msgid "Please check either with operations or FG Based Operating Cost."
+msgstr "운영 부서 또는 FG 기반 운영 비용을 확인해 주십시오."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:149
+msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
+msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
+msgstr "오류 메시지를 확인하고 필요한 조치를 취하여 오류를 수정하신 후 다시 게시를 시도해 주십시오."
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_connector.py:64
+msgid "Please check your Plaid client ID and secret values"
+msgstr ""
+
+#: erpnext/crm/doctype/appointment/appointment.py:98
+#: erpnext/www/book_appointment/index.js:235
+msgid "Please check your email to confirm the appointment"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:374
+msgid "Please click on 'Generate Schedule'"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:386
+msgid "Please click on 'Generate Schedule' to fetch Serial No added for Item {0}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:104
+msgid "Please click on 'Generate Schedule' to get schedule"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
+msgid "Please configure accounts for the Bank Entry rule."
+msgstr "은행 입금 규칙에 사용할 계정을 설정해 주세요."
+
+#: erpnext/selling/doctype/customer/customer.py:632
+msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
+msgstr "{0}의 신용 한도를 연장하려면 다음 사용자 중 한 명에게 연락하십시오: {1}"
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:341
+msgid "Please contact any of the following users to {} this transaction."
+msgstr "이 거래를 진행하려면 다음 사용자 중 한 명에게 연락하십시오."
+
+#: erpnext/selling/doctype/customer/customer.py:625
+msgid "Please contact your administrator to extend the credit limits for {0}."
+msgstr "{0}의 신용 한도를 연장하려면 관리자에게 문의하십시오."
+
+#: erpnext/accounts/doctype/account/account.py:388
+msgid "Please convert the parent account in corresponding child company to a group account."
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:633
+msgid "Please create Customer from Lead {0}."
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:157
+msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
+msgid "Please create a new Accounting Dimension if required."
+msgstr "필요한 경우 새 회계 차원을 생성하십시오."
+
+#: erpnext/controllers/accounts_controller.py:806
+msgid "Please create purchase from internal sale or delivery document itself"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:464
+msgid "Please create purchase receipt or purchase invoice for the item {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:722
+msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:562
+msgid "Please disable workflow temporarily for Journal Entry {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:568
+msgid "Please do not book expense of multiple assets against one single Asset."
+msgstr "여러 자산에 대한 비용을 하나의 자산에 대해 회계 처리하지 마십시오."
+
+#: erpnext/controllers/item_variant.py:249
+msgid "Please do not create more than 500 items at a time"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:180
+msgid "Please enable Applicable on Booking Actual Expenses"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:176
+msgid "Please enable Applicable on Purchase Order and Applicable on Booking Actual Expenses"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:320
+msgid "Please enable Use Old Serial / Batch Fields to make_bundle"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:21
+msgid "Please enable only if the understand the effects of enabling this."
+msgstr "이 기능을 활성화했을 때의 영향을 충분히 이해하시는 경우에만 활성화해 주세요."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:679
+msgid "Please enable {0} in the {1}."
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:858
+msgid "Please enable {} in {} to allow same item in multiple rows"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:374
+msgid "Please ensure that the {0} account is a Balance Sheet account. You can change the parent account to a Balance Sheet account or select a different account."
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:382
+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 "{0} 계정 {1} 이 지급 계정인지 확인하십시오. 계정 유형을 지급 계정으로 변경하거나 다른 계정을 선택할 수 있습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+msgid "Please ensure {} account is a Balance Sheet account."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
+msgid "Please ensure {} account {} is a Receivable account."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
+msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
+msgid "Please enter Account for Change Amount"
+msgstr ""
+
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.py:75
+msgid "Please enter Approving Role or Approving User"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
+msgid "Please enter Batch No"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
+msgid "Please enter Cost Center"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
+msgid "Please enter Delivery Date"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person_tree.js:9
+msgid "Please enter Employee Id of this sales person"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
+msgid "Please enter Expense Account"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.js:84
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:97
+msgid "Please enter Item Code to get Batch Number"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:2991
+msgid "Please enter Item Code to get batch no"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:85
+msgid "Please enter Item first"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:224
+msgid "Please enter Maintenance Details first"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:194
+msgid "Please enter Planned Qty for Item {0} at row {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
+msgid "Please enter Production Item first"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:50
+msgid "Please enter Purchase Receipt first"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:121
+msgid "Please enter Receipt Document"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1038
+msgid "Please enter Reference date"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:397
+msgid "Please enter Root Type for account- {0}"
+msgstr "계정의 루트 유형을 입력해 주세요 - {0}"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
+msgid "Please enter Serial No"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:320
+msgid "Please enter Serial Nos"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.py:86
+msgid "Please enter Shipment Parcel information"
+msgstr ""
+
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:30
+msgid "Please enter Warehouse and Date"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
+msgid "Please enter Write Off Account"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:753
+msgid "Please enter a valid number of deliveries"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:696
+msgid "Please enter a valid quantity"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:690
+msgid "Please enter at least one delivery date and quantity"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.js:114
+msgid "Please enter company name first"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2968
+msgid "Please enter default currency in Company Master"
+msgstr ""
+
+#: erpnext/selling/doctype/sms_center/sms_center.py:174
+msgid "Please enter message before sending"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:431
+msgid "Please enter mobile number first."
+msgstr "먼저 휴대전화 번호를 입력해 주세요."
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:45
+msgid "Please enter parent cost center"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:186
+msgid "Please enter quantity for item {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:297
+msgid "Please enter relieving date."
+msgstr "퇴근 날짜를 입력해 주세요."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:132
+msgid "Please enter serial nos"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.js:230
+msgid "Please enter the company name to confirm"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:750
+msgid "Please enter the first delivery date"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:806
+msgid "Please enter the phone number first"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:1147
+msgid "Please enter the {schedule_date}."
+msgstr ""
+
+#: erpnext/public/js/setup_wizard.js:97
+msgid "Please enter valid Financial Year Start and End Dates"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:333
+msgid "Please enter {0}"
+msgstr ""
+
+#: erpnext/public/js/utils/party.js:344
+msgid "Please enter {0} first"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:450
+msgid "Please fill the Material Requests table"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:343
+msgid "Please fill the Sales Orders table"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.js:277
+msgid "Please first set Full Name, Email and Phone for the user"
+msgstr ""
+
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.js:94
+msgid "Please fix overlapping time slots for {0}"
+msgstr ""
+
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.py:72
+msgid "Please fix overlapping time slots for {0}."
+msgstr "{0}의 겹치는 시간대를 수정해 주세요."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:272
+msgid "Please generate To Delete list before submitting"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:70
+msgid "Please generate the To Delete list before submitting"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:67
+msgid "Please import accounts against parent company or enable {} in company master."
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:294
+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:376
+msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
+msgstr "사용하시는 파일의 헤더에 '상위 계정' 열이 있는지 확인해 주십시오."
+
+#: erpnext/setup/doctype/company/company.js:232
+msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
+msgstr "이 회사의 모든 거래 내역을 정말로 삭제하시겠습니까? 마스터 데이터는 그대로 유지됩니다. 이 작업은 되돌릴 수 없습니다."
+
+#: erpnext/stock/doctype/item/item.js:691
+msgid "Please mention 'Weight UOM' along with Weight."
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:667
+#: erpnext/accounts/general_ledger.py:674
+msgid "Please mention '{0}' in Company: {1}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:232
+msgid "Please mention no of visits required"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:73
+msgid "Please mention the Current and New BOM for replacement."
+msgstr ""
+
+#: erpnext/selling/doctype/installation_note/installation_note.py:120
+msgid "Please pull items from Delivery Note"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.js:444
+msgid "Please rectify and try again."
+msgstr "오류를 수정하고 다시 시도해 주세요."
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:251
+msgid "Please refresh or reset the Plaid linking of the Bank {}."
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:125
+msgid "Please review the details below and click the 'Import' button to proceed."
+msgstr "아래 세부 정보를 검토하신 후 '가져오기' 버튼을 클릭하여 진행해 주세요."
+
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:43
+msgid "Please review the {0} configuration and complete any required financial setup activities."
+msgstr "{0} 구성을 검토하고 필요한 재무 설정 작업을 완료하십시오."
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:12
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:28
+msgid "Please save before proceeding."
+msgstr "진행하기 전에 저장하십시오."
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:49
+msgid "Please save first"
+msgstr "먼저 저장하세요"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:903
+msgid "Please save the Sales Order before adding a delivery schedule."
+msgstr "배송 일정을 추가하기 전에 판매 주문을 저장하십시오."
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:79
+msgid "Please select Template Type to download template"
+msgstr ""
+
+#: erpnext/controllers/taxes_and_totals.py:846
+#: erpnext/public/js/controllers/taxes_and_totals.js:813
+msgid "Please select Apply Discount On"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
+msgid "Please select BOM against item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:189
+msgid "Please select BOM for Item in Row {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:68
+msgid "Please select Bank Account"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.js:13
+msgid "Please select Category first"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
+#: erpnext/public/js/controllers/accounts.js:94
+#: erpnext/public/js/controllers/accounts.js:145
+msgid "Please select Charge Type first"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:494
+msgid "Please select Company"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:139
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:76
+msgid "Please select Company and Posting Date to getting entries"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:742
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:28
+msgid "Please select Company first"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:52
+msgid "Please select Completion Date for Completed Asset Maintenance Log"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:202
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:84
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:125
+msgid "Please select Customer first"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:538
+msgid "Please select Existing Company for creating Chart of Accounts"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:211
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:278
+msgid "Please select Finished Good Item for Service Item {0}"
+msgstr "서비스 항목으로 완제품을 선택해 주세요 {0}"
+
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
+msgid "Please select Item Code first"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.py:55
+msgid "Please select Maintenance Status as Completed or remove Completion Date"
+msgstr ""
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.js:52
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.js:31
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.js:32
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:63
+#: erpnext/selling/report/address_and_contacts/address_and_contacts.js:27
+msgid "Please select Party Type first"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:259
+msgid "Please select Periodic Accounting Entry Difference Account"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:518
+msgid "Please select Posting Date before selecting Party"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:743
+msgid "Please select Posting Date first"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1301
+msgid "Please select Price List"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
+msgid "Please select Qty against item {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:388
+msgid "Please select Sample Retention Warehouse in Stock Settings first"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:451
+msgid "Please select Serial/Batch Nos to reserve or change Reservation Based On to Qty."
+msgstr "예약 또는 수량 변경을 위해 일련번호/배치번호를 선택해 주세요."
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:230
+msgid "Please select Start Date and End Date for Item {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:278
+msgid "Please select Stock Asset Account"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2824
+msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1556
+msgid "Please select a BOM"
+msgstr ""
+
+#: erpnext/accounts/party.py:420
+#: erpnext/stock/doctype/pick_list/pick_list.py:1705
+msgid "Please select a Company"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:268
+#: erpnext/manufacturing/doctype/bom/bom.js:727
+#: erpnext/manufacturing/doctype/bom/bom.py:280
+#: erpnext/public/js/controllers/accounts.js:277
+#: erpnext/public/js/controllers/transaction.js:3290
+msgid "Please select a Company first."
+msgstr "먼저 회사를 선택해 주세요."
+
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:18
+msgid "Please select a Customer"
+msgstr "고객을 선택해 주세요"
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.js:16
+msgid "Please select a Delivery Note"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:150
+msgid "Please select a Subcontracting Purchase Order."
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:91
+msgid "Please select a Supplier"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:667
+msgid "Please select a Warehouse"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
+msgid "Please select a Work Order first."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:35
+msgid "Please select a bank account to view the bank clearance summary."
+msgstr "은행 거래 내역 요약을 보려면 은행 계좌를 선택하십시오."
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:28
+msgid "Please select a bank account to view the bank reconciliation statement."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:32
+msgid "Please select a bank and set the date range"
+msgstr ""
+
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:53
+msgid "Please select a company."
+msgstr "회사를 선택해 주세요."
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.py:89
+msgid "Please select a country"
+msgstr ""
+
+#: erpnext/accounts/report/sales_register/sales_register.py:36
+msgid "Please select a customer for fetching payments."
+msgstr "결제 대금을 수령할 고객을 선택해 주세요."
+
+#: erpnext/www/book_appointment/index.js:67
+msgid "Please select a date"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.js:52
+msgid "Please select a date and time"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:180
+msgid "Please select a default mode of payment"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:816
+msgid "Please select a field to edit from numpad"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:747
+msgid "Please select a frequency for delivery schedule"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:135
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:73
+msgid "Please select a row to create a Reposting Entry"
+msgstr ""
+
+#: erpnext/accounts/report/purchase_register/purchase_register.py:35
+msgid "Please select a supplier for fetching payments."
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:165
+msgid "Please select a transaction."
+msgstr "거래를 선택해 주세요."
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:139
+msgid "Please select a valid Purchase Order that is configured for Subcontracting."
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.js:245
+msgid "Please select a value for {0} quotation_to {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:194
+msgid "Please select an item code before setting the warehouse."
+msgstr "창고를 설정하기 전에 품목 코드를 선택하십시오."
+
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
+msgid "Please select at least one filter: Item Code, Batch, or Serial No."
+msgstr "품목 코드, 배치 번호 또는 일련 번호 중 하나 이상의 필터를 선택하십시오."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
+msgid "Please select at least one item to update delivered quantity."
+msgstr "배송 수량을 업데이트하려면 최소 한 개 이상의 품목을 선택해 주세요."
+
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.js:33
+msgid "Please select at least one row to fix"
+msgstr ""
+
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:51
+msgid "Please select at least one row with difference value"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:526
+msgid "Please select at least one schedule."
+msgstr "일정을 하나 이상 선택해 주세요."
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1368
+msgid "Please select atleast one item to continue"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+msgid "Please select atleast one operation to create Job Card"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1743
+msgid "Please select correct account"
+msgstr ""
+
+#: erpnext/accounts/report/share_balance/share_balance.py:14
+#: erpnext/accounts/report/share_ledger/share_ledger.py:14
+msgid "Please select date"
+msgstr "날짜를 선택해주세요"
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:39
+msgid "Please select dates to view the bank clearance summary."
+msgstr "은행 결제 내역 요약을 보시려면 날짜를 선택하십시오."
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:32
+msgid "Please select dates to view the bank reconciliation statement."
+msgstr "은행 계정 조정 명세서를 보시려면 날짜를 선택하십시오."
+
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:30
+msgid "Please select either the Item or Warehouse or Warehouse Type filter to generate the report."
+msgstr "보고서를 생성하려면 품목, 창고 또는 창고 유형 필터 중 하나를 선택하십시오."
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:228
+msgid "Please select item code"
+msgstr ""
+
+#: erpnext/public/js/stock_reservation.js:212
+#: erpnext/selling/doctype/sales_order/sales_order.js:430
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:300
+msgid "Please select items to reserve."
+msgstr "예약하실 품목을 선택해 주세요."
+
+#: erpnext/public/js/stock_reservation.js:290
+#: erpnext/selling/doctype/sales_order/sales_order.js:561
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:398
+msgid "Please select items to unreserve."
+msgstr "예약을 해제할 항목을 선택하세요."
+
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.js:75
+msgid "Please select only one row to create a Reposting Entry"
+msgstr ""
+
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.js:59
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:107
+msgid "Please select rows to create Reposting Entries"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:98
+msgid "Please select the Company"
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:65
+msgid "Please select the Multiple Tier Program type for more than one collection rules."
+msgstr "여러 개의 수집 규칙을 적용하려면 다단계 프로그램 유형을 선택하십시오."
+
+#: erpnext/stock/doctype/item/item.js:359
+msgid "Please select the Warehouse first"
+msgstr ""
+
+#: erpnext/accounts/doctype/coupon_code/coupon_code.py:48
+msgid "Please select the customer."
+msgstr "고객을 선택해 주세요."
+
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:41
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:54
+msgid "Please select the document type first"
+msgstr ""
+
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:47
+msgid "Please select the document type first."
+msgstr "먼저 문서 종류를 선택해 주세요."
+
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:21
+msgid "Please select the required filters"
+msgstr "필요한 필터를 선택하세요"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:200
+msgid "Please select valid document type."
+msgstr "유효한 문서 유형을 선택하십시오."
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.py:52
+msgid "Please select weekly off day"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
+msgid "Please select {0} first"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:103
+msgid "Please set 'Apply Additional Discount On'"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:789
+msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:787
+msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:561
+msgid "Please set '{0}' in Company: {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:36
+msgid "Please set Account"
+msgstr "계정을 설정해 주세요"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
+msgid "Please set Account for Change Amount"
+msgstr ""
+
+#: erpnext/stock/__init__.py:88
+msgid "Please set Account in Warehouse {0} or Default Inventory Account in Company {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:333
+msgid "Please set Accounting Dimension {} in {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:23
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:34
+#: erpnext/accounts/doctype/pos_profile/pos_profile.js:25
+#: erpnext/accounts/doctype/pos_profile/pos_profile.js:48
+#: erpnext/accounts/doctype/pos_profile/pos_profile.js:62
+#: erpnext/accounts/doctype/pos_profile/pos_profile.js:76
+#: erpnext/accounts/doctype/pos_profile/pos_profile.js:89
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:58
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:68
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:78
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:884
+msgid "Please set Company"
+msgstr ""
+
+#: erpnext/regional/united_arab_emirates/utils.py:26
+msgid "Please set Customer Address to determine if the transaction is an export."
+msgstr "거래가 수출인지 여부를 판단하려면 고객 주소를 설정해 주세요."
+
+#: erpnext/assets/doctype/asset/depreciation.py:751
+msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.js:176
+msgid "Please set Email/Phone for the contact"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:257
+#, python-format
+msgid "Please set Fiscal Code for the customer '%s'"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:265
+#, python-format
+msgid "Please set Fiscal Code for the public administration '%s'"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:737
+msgid "Please set Fixed Asset Account in Asset Category {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:591
+msgid "Please set Fixed Asset Account in {} against {}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:292
+msgid "Please set Parent Row No for item {0}"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:351
+msgid "Please set Purchase Expense Contra Account in Company {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:24
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:35
+msgid "Please set Root Type"
+msgstr "루트 유형을 설정해 주세요"
+
+#: erpnext/regional/italy/utils.py:272
+#, python-format
+msgid "Please set Tax ID for the customer '%s'"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:340
+msgid "Please set Unrealized Exchange Gain/Loss Account in Company {0}"
+msgstr ""
+
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:54
+msgid "Please set VAT Accounts in {0}"
+msgstr ""
+
+#: erpnext/regional/united_arab_emirates/utils.py:83
+msgid "Please set Vat Accounts for Company: \"{0}\" in UAE VAT Settings"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account_tree.js:19
+msgid "Please set a Company"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:375
+msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.py:773
+msgid "Please set a default Holiday List for Company {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:384
+msgid "Please set a default Holiday List for Employee {0} or Company {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1115
+msgid "Please set account in Warehouse {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:68
+msgid "Please set actual demand or sales forecast to generate Material Requirements Planning Report."
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:227
+#, python-format
+msgid "Please set an Address on the Company '%s'"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:922
+msgid "Please set an Expense Account in the Items table"
+msgstr ""
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:57
+msgid "Please set an email id for the Lead {0}"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:283
+msgid "Please set at least one row in the Taxes and Charges Table"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:247
+msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
+msgid "Please set default Cash or Bank account in Mode of Payment {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
+msgid "Please set default Cash or Bank account in Mode of Payment {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
+msgid "Please set default Cash or Bank account in Mode of Payments {}"
+msgstr ""
+
+#: erpnext/accounts/utils.py:2540
+msgid "Please set default Exchange Gain/Loss Account in Company {}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:386
+msgid "Please set default Expense Account in Company {0}"
+msgstr ""
+
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:40
+msgid "Please set default UOM in Stock Settings"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:781
+msgid "Please set default cost of goods sold account in company {0} for booking rounding gain and loss during stock transfer"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:236
+msgid "Please set default inventory account for item {0}, or their item group or brand."
+msgstr "품목 {0}또는 해당 품목 그룹이나 브랜드에 대한 기본 재고 계정을 설정해 주세요."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:278
+#: erpnext/accounts/utils.py:1163
+msgid "Please set default {0} in Company {1}"
+msgstr ""
+
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:114
+msgid "Please set filter based on Item or Warehouse"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2385
+msgid "Please set one of the following:"
+msgstr "다음 중 하나를 선택해 주세요:"
+
+#: erpnext/assets/doctype/asset/asset.py:649
+msgid "Please set opening number of booked depreciations"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:2678
+msgid "Please set recurring after saving"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:277
+msgid "Please set the Customer Address"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:187
+msgid "Please set the Default Cost Center in {0} company."
+msgstr "{0} 회사에서 기본 비용 센터를 설정해 주십시오."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
+msgid "Please set the Item Code first"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
+msgid "Please set the Target Warehouse in the Job Card"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
+msgid "Please set the WIP Warehouse in the Job Card"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:182
+msgid "Please set the cost center field in {0} or setup a default Cost Center for the Company."
+msgstr "{0} 에서 비용 센터 필드를 설정하거나 회사에 대한 기본 비용 센터를 설정하십시오."
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:48
+msgid "Please set up the Campaign Schedule in the Campaign {0}"
+msgstr ""
+
+#: erpnext/public/js/queries.js:67
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:26
+msgid "Please set {0}"
+msgstr ""
+
+#: erpnext/public/js/queries.js:34 erpnext/public/js/queries.js:49
+#: erpnext/public/js/queries.js:82 erpnext/public/js/queries.js:103
+#: erpnext/public/js/queries.js:134
+msgid "Please set {0} first."
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.py:215
+msgid "Please set {0} for Batched Item {1}, which is used to set {2} on Submit."
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:429
+msgid "Please set {0} for address {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:245
+msgid "Please set {0} in BOM Creator {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1145
+msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:595
+msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:97
+msgid "Please setup and enable a group account with the Account Type - {0} for the company {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:358
+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:337
+msgid "Please specify Company"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:120
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:430
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:617
+msgid "Please specify Company to proceed"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/public/js/controllers/accounts.js:117
+msgid "Please specify a valid Row ID for row {0} in table {1}"
+msgstr ""
+
+#: erpnext/public/js/queries.js:148
+msgid "Please specify a {0} first."
+msgstr ""
+
+#: erpnext/controllers/item_variant.py:52
+msgid "Please specify at least one attribute in the Attributes table"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
+msgid "Please specify either Quantity or Valuation Rate or both"
+msgstr ""
+
+#: erpnext/stock/doctype/item_attribute/item_attribute.py:92
+msgid "Please specify from/to range"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:274
+msgid "Please try again in an hour."
+msgstr "한 시간 후에 다시 시도해 주세요."
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:139
+msgid "Please uncheck 'Show in Bucket View' to create Orders"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:237
+msgid "Please update Repair Status."
+msgstr "수리 상태를 업데이트해 주세요."
+
+#. Label of a Card Break in the Selling Workspace
+#: erpnext/selling/page/point_of_sale/point_of_sale.js:6
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Point of Sale"
+msgstr "판매 시점"
+
+#. Label of a Link in the Selling Workspace
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Point-of-Sale Profile"
+msgstr "판매 시점 프로필"
+
+#. Label of the policy_no (Data) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Policy No"
+msgstr "정책 번호"
+
+#. Label of the policy_number (Data) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Policy number"
+msgstr "정책 번호"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pond"
+msgstr "연못"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pood"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/utilities/doctype/portal_user/portal_user.json
+msgid "Portal User"
+msgstr "포털 사용자"
+
+#. Label of the portal_users_tab (Tab Break) field in DocType 'Supplier'
+#. Label of the portal_users_tab (Tab Break) field in DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Portal Users"
+msgstr "포털 사용자"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:407
+msgid "Possible Supplier"
+msgstr ""
+
+#. Label of the post_description_key (Data) field in DocType 'Support Search
+#. Source'
+#. Label of the post_description_key (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Post Description Key"
+msgstr "게시물 설명 키"
+
+#. Option for the 'Level' (Select) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Post Graduate"
+msgstr "대학원 과정"
+
+#. Label of the post_route_key (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Post Route Key"
+msgstr ""
+
+#. Label of the post_route_key_list (Data) field in DocType 'Support Search
+#. Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Post Route Key List"
+msgstr ""
+
+#. Label of the post_route (Data) field in DocType 'Support Search Source'
+#. Label of the post_route_string (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Post Route String"
+msgstr ""
+
+#. Label of the post_title_key (Data) field in DocType 'Support Search Source'
+#. Label of the post_title_key (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Post Title Key"
+msgstr "게시물 제목 키"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+msgid "Postal Expenses"
+msgstr "우편 요금"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:840
+msgid "Posted On"
+msgstr "게시일"
+
+#. Label of the posting_date (Date) field in DocType 'Bank Clearance Detail'
+#. Label of the posting_date (Date) field in DocType 'Exchange Rate
+#. Revaluation'
+#. Label of the posting_date (Date) field in DocType 'GL Entry'
+#. Label of the posting_date (Date) field in DocType 'Invoice Discounting'
+#. Label of the posting_date (Date) field in DocType 'Journal Entry'
+#. Label of the posting_date (Date) field in DocType 'Loyalty Point Entry'
+#. Label of the posting_date (Date) field in DocType 'Opening Invoice Creation
+#. Tool Item'
+#. Label of the posting_date (Date) field in DocType 'Payment Entry'
+#. Label of the posting_date (Date) field in DocType 'Payment Ledger Entry'
+#. Label of the posting_date (Date) field in DocType 'Payment Order'
+#. Label of the posting_date (Date) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the posting_date (Date) field in DocType 'POS Closing Entry'
+#. Label of the posting_date (Date) field in DocType 'POS Invoice Merge Log'
+#. Label of the posting_date (Date) field in DocType 'POS Opening Entry'
+#. Label of the posting_date (Date) field in DocType 'Process Deferred
+#. Accounting'
+#. Option for the 'Ageing Based On' (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the posting_date (Date) field in DocType 'Process Statement Of
+#. Accounts'
+#. Label of the posting_date (Date) field in DocType 'Process Subscription'
+#. Label of the posting_date (Date) field in DocType 'Purchase Invoice'
+#. Label of the posting_date (Date) field in DocType 'Repost Payment Ledger'
+#. Label of the posting_date (Date) field in DocType 'Sales Invoice'
+#. Label of the posting_date (Date) field in DocType 'Asset Capitalization'
+#. Label of the posting_date (Date) field in DocType 'Job Card'
+#. Label of the posting_date (Date) field in DocType 'Master Production
+#. Schedule'
+#. Label of the posting_date (Date) field in DocType 'Production Plan'
+#. Label of the posting_date (Date) field in DocType 'Sales Forecast'
+#. Label of the posting_date (Date) field in DocType 'Landed Cost Purchase
+#. Receipt'
+#. Label of the posting_date (Date) field in DocType 'Landed Cost Voucher'
+#. Label of the posting_date (Date) field in DocType 'Repost Item Valuation'
+#. Label of the posting_date (Date) field in DocType 'Serial No'
+#. Label of the posting_date (Date) field in DocType 'Stock Closing Balance'
+#. Label of the posting_date (Date) field in DocType 'Stock Entry'
+#. Label of the posting_date (Date) field in DocType 'Stock Ledger Entry'
+#. Label of the posting_date (Date) field in DocType 'Stock Reconciliation'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:442
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:125
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:319
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:412
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:86
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:147
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:482
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:315
+#: erpnext/accounts/doctype/bank_clearance_detail/bank_clearance_detail.json
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:306
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/process_subscription/process_subscription.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:16
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:15
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:18
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:15
+#: erpnext/accounts/report/bank_clearance_summary/bank_clearance_summary.py:38
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:7
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:65
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:66
+#: erpnext/accounts/report/cheques_and_deposits_incorrectly_cleared/cheques_and_deposits_incorrectly_cleared.py:151
+#: erpnext/accounts/report/general_ledger/general_ledger.py:697
+#: erpnext/accounts/report/gross_profit/gross_profit.py:300
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:181
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:200
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:143
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:94
+#: erpnext/accounts/report/pos_register/pos_register.py:172
+#: erpnext/accounts/report/purchase_register/purchase_register.py:169
+#: erpnext/accounts/report/sales_register/sales_register.py:185
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:134
+#: erpnext/public/js/purchase_trends_filters.js:38
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:25
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:68
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:65
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:85
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:131
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:89
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:158
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:104
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:88
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:25
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:150
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:144
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:36
+#: erpnext/templates/form_grid/bank_reconciliation_grid.html:6
+msgid "Posting Date"
+msgstr "게시일"
+
+#. Label of the exchange_gain_loss_posting_date (Select) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Posting Date Inheritance for Exchange Gain / Loss"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:271
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:145
+msgid "Posting Date cannot be future date"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:1108
+msgid "Posting Date will change to today's date as Edit Posting Date and Time is unchecked. Are you sure want to proceed?"
+msgstr "'게시 날짜 및 시간 수정' 옵션이 선택 해제되어 있으므로 게시 날짜가 오늘 날짜로 변경됩니다. 계속하시겠습니까?"
+
+#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch
+#. Bundle'
+#. Label of the posting_datetime (Datetime) field in DocType 'Serial and Batch
+#. Entry'
+#. Label of the posting_datetime (Datetime) field in DocType 'Stock Closing
+#. Balance'
+#. Label of the posting_datetime (Datetime) field in DocType 'Stock Ledger
+#. Entry'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:27
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:506
+msgid "Posting Datetime"
+msgstr "게시 날짜 및 시간"
+
+#. Label of the posting_time (Time) field in DocType 'Dunning'
+#. Label of the posting_time (Time) field in DocType 'POS Closing Entry'
+#. Label of the posting_time (Time) field in DocType 'POS Invoice'
+#. Label of the posting_time (Time) field in DocType 'POS Invoice Merge Log'
+#. Label of the posting_time (Time) field in DocType 'Purchase Invoice'
+#. Label of the posting_time (Time) field in DocType 'Sales Invoice'
+#. Label of the posting_time (Time) field in DocType 'Asset Capitalization'
+#. Label of the posting_time (Time) field in DocType 'Delivery Note'
+#. Label of the posting_time (Time) field in DocType 'Purchase Receipt'
+#. Label of the posting_time (Time) field in DocType 'Repost Item Valuation'
+#. Label of the posting_time (Time) field in DocType 'Stock Closing Balance'
+#. Label of the posting_time (Time) field in DocType 'Stock Entry'
+#. Label of the posting_time (Time) field in DocType 'Stock Ledger Entry'
+#. Label of the posting_time (Time) field in DocType 'Stock Reconciliation'
+#. Label of the posting_time (Time) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/gross_profit/gross_profit.py:306
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:136
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:159
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:105
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:63
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:26
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:151
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:149
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:41
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Posting Time"
+msgstr "게시 시간"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
+msgid "Posting date does not match the selected transaction"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:99
+msgid "Posting date is required"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
+msgid "Posting date matches the selected transaction"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:66
+msgid "Posting timestamp must be after {0}"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Potential Sales Deal"
+msgstr "잠재적 판매 거래"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound"
+msgstr "파운드"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound-Force"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound/Cubic Foot"
+msgstr "파운드/입방피트"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound/Cubic Inch"
+msgstr "파운드/입방인치"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound/Cubic Yard"
+msgstr "파운드/입방야드"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound/Gallon (UK)"
+msgstr "파운드/갤런(영국식)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Pound/Gallon (US)"
+msgstr "파운드/갤런(미국)"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Poundal"
+msgstr ""
+
+#: erpnext/templates/includes/footer/footer_powered.html:1
+msgid "Powered by {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:8
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:9
+#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:8
+#: erpnext/selling/doctype/customer/customer_dashboard.py:19
+#: erpnext/setup/doctype/company/company_dashboard.py:22
+msgid "Pre Sales"
+msgstr "사전 판매"
+
+#: erpnext/accounts/utils.py:2778
+msgid "Pre-Submit Warning"
+msgstr "제출 전 경고"
+
+#: erpnext/accounts/utils.py:2827
+msgid "Pre-Submit Warning: Credit Limit"
+msgstr "제출 전 경고: 신용 한도"
+
+#: erpnext/accounts/utils.py:2839
+msgid "Pre-Submit Warning: Packed Qty"
+msgstr "제출 전 경고: 포장 수량"
+
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
+msgid "Preference"
+msgstr "선호"
+
+#: banking/src/components/features/Settings/Preferences.tsx:43
+#: banking/src/components/features/Settings/Settings.tsx:51
+msgid "Preferences"
+msgstr ""
+
+#: banking/src/components/features/Settings/Preferences.tsx:33
+msgid "Preferences updated"
+msgstr ""
+
+#. Label of the prefered_contact_email (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Preferred Contact Email"
+msgstr "선호하는 연락 이메일 주소"
+
+#. Label of the prefered_email (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Preferred Email"
+msgstr "선호하는 이메일 주소"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:34
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:51
+msgid "Prepaid Expenses"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:24
+msgid "President"
+msgstr "대통령"
+
+#. Label of the prevdoc_doctype (Data) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Prevdoc DocType"
+msgstr "이전 문서 문서 유형"
+
+#. Label of the prevent_pos (Check) field in DocType 'Supplier'
+#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Prevent POs"
+msgstr "구매 주문 방지"
+
+#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the prevent_pos (Check) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Prevent Purchase Orders"
+msgstr "구매 주문 방지"
+
+#. Label of the prevent_rfqs (Check) field in DocType 'Supplier'
+#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard'
+#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the prevent_rfqs (Check) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Prevent RFQs"
+msgstr "견적 요청 방지"
+
+#. Option for the 'Corrective/Preventive' (Select) field in DocType 'Quality
+#. Action'
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+msgid "Preventive"
+msgstr ""
+
+#. Label of the preventive_action (Text Editor) field in DocType 'Non
+#. Conformance'
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+msgid "Preventive Action"
+msgstr "예방 조치"
+
+#. Option for the 'Maintenance Type' (Select) field in DocType 'Asset
+#. Maintenance Task'
+#: erpnext/assets/doctype/asset_maintenance_task/asset_maintenance_task.json
+msgid "Preventive Maintenance"
+msgstr "예방 정비"
+
+#. Description of the 'Don't reserve Sales Order qty on sales return' (Check)
+#. field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Prevents the automatic reservation of stock quantities from sales orders when processing sales returns."
+msgstr ""
+
+#. Description of the 'Disable last purchase rate' (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Prevents the system from automatically using the rate from the last purchase transaction when creating new purchase orders or transactions."
+msgstr "새로운 구매 주문 또는 거래를 생성할 때 시스템이 마지막 구매 거래의 환율을 자동으로 사용하는 것을 방지합니다."
+
+#. Label of the preview (Button) field in DocType 'Request for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:267
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Preview Email"
+msgstr ""
+
+#. Label of the download_materials_request_plan_section_section (Section Break)
+#. field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Preview Required Materials"
+msgstr "미리 보기 필수 자료"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:221
+msgid "Preview Transactions"
+msgstr ""
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:182
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:142
+msgid "Previous Financial Year is not closed"
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:212
+msgid "Previous Imports"
+msgstr "이전 수입품"
+
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:54
+msgid "Previous Qty"
+msgstr "이전 수량"
+
+#. Label of the previous_work_experience (Section Break) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Previous Work Experience"
+msgstr "이전 직장 경력"
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:99
+msgid "Previous Year is not closed, please close it first"
+msgstr ""
+
+#. Option for the 'Price or Product Discount' (Select) field in DocType
+#. 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:228
+msgid "Price"
+msgstr "가격"
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:242
+msgid "Price ({0})"
+msgstr "가격 ({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 "가격 할인 제도"
+
+#. Label of the section_break_14 (Section Break) field in DocType 'Promotional
+#. Scheme'
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Price Discount Slabs"
+msgstr ""
+
+#. Label of the selling_price_list (Link) field in DocType 'POS Invoice'
+#. Label of the selling_price_list (Link) field in DocType 'POS Profile'
+#. Label of the buying_price_list (Link) field in DocType 'Purchase Invoice'
+#. Label of the selling_price_list (Link) field in DocType 'Sales Invoice'
+#. Label of the price_list (Link) field in DocType 'Subscription Plan'
+#. Label of the buying_price_list (Link) field in DocType 'Purchase Order'
+#. Label of the default_price_list (Link) field in DocType 'Supplier'
+#. Label of the buying_price_list (Link) field in DocType 'Supplier Quotation'
+#. Label of a Link in the Buying Workspace
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM'
+#. Label of the buying_price_list (Link) field in DocType 'BOM'
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
+#. Creator'
+#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
+#. Label of the selling_price_list (Link) field in DocType 'Quotation'
+#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Label of the selling_price_list (Link) field in DocType 'Delivery Note'
+#. Label of the price_list_details (Section Break) field in DocType 'Item
+#. Price'
+#. Label of the price_list (Link) field in DocType 'Item Price'
+#. Label of the buying_price_list (Link) field in DocType 'Material Request'
+#. Name of a DocType
+#. Label of the buying_price_list (Link) field in DocType 'Purchase Receipt'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/price_list/price_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/selling.json
+msgid "Price List"
+msgstr "가격표"
+
+#. Label of the price_list_and_currency_section (Section Break) field in
+#. DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Price List & Currency"
+msgstr "가격표 및 통화"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/price_list_country/price_list_country.json
+msgid "Price List Country"
+msgstr ""
+
+#. Label of the price_list_currency (Link) field in DocType 'POS Invoice'
+#. Label of the price_list_currency (Link) field in DocType 'Purchase Invoice'
+#. Label of the price_list_currency (Link) field in DocType 'Sales Invoice'
+#. Label of the price_list_currency (Link) field in DocType 'Purchase Order'
+#. Label of the price_list_currency (Link) field in DocType 'Supplier
+#. Quotation'
+#. Label of the price_list_currency (Link) field in DocType 'BOM'
+#. Label of the price_list_currency (Link) field in DocType 'BOM Creator'
+#. Label of the price_list_currency (Link) field in DocType 'Quotation'
+#. Label of the price_list_currency (Link) field in DocType 'Sales Order'
+#. Label of the price_list_currency (Link) field in DocType 'Delivery Note'
+#. Label of the price_list_currency (Link) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Price List Currency"
+msgstr ""
+
+#: erpnext/stock/get_item_details.py:1357
+msgid "Price List Currency not selected"
+msgstr ""
+
+#. Label of the price_list_defaults_section (Section Break) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Price List Defaults"
+msgstr ""
+
+#. Label of the plc_conversion_rate (Float) field in DocType 'POS Invoice'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Invoice'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Invoice'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Order'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Supplier
+#. Quotation'
+#. Label of the plc_conversion_rate (Float) field in DocType 'BOM'
+#. Label of the plc_conversion_rate (Float) field in DocType 'BOM Creator'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Quotation'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Sales Order'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Delivery Note'
+#. Label of the plc_conversion_rate (Float) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Price List Exchange Rate"
+msgstr "가격표 환율"
+
+#. Label of the price_list_name (Data) field in DocType 'Price List'
+#: erpnext/stock/doctype/price_list/price_list.json
+msgid "Price List Name"
+msgstr "가격표 이름"
+
+#. Label of the price_list_rate (Currency) field in DocType 'POS Invoice Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Delivery Note
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Material Request
+#. Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#. Option for the 'Update Price List Based On' (Select) field in DocType 'Stock
+#. Settings'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Price List Rate"
+msgstr "가격표 가격"
+
+#. Label of the base_price_list_rate (Currency) field in DocType 'POS Invoice
+#. Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase
+#. Order Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Quotation
+#. Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Sales Order
+#. Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Delivery Note
+#. Item'
+#. Label of the base_price_list_rate (Currency) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Price List Rate (Company Currency)"
+msgstr ""
+
+#: erpnext/stock/doctype/price_list/price_list.py:33
+msgid "Price List must be applicable for Buying or Selling"
+msgstr ""
+
+#: erpnext/stock/doctype/price_list/price_list.py:84
+msgid "Price List {0} is disabled or does not exist"
+msgstr ""
+
+#. Label of the price_not_uom_dependent (Check) field in DocType 'Price List'
+#: erpnext/stock/doctype/price_list/price_list.json
+msgid "Price Not UOM Dependent"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:249
+msgid "Price Per Unit ({0})"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:696
+msgid "Price is not set for the item."
+msgstr "해당 상품의 가격은 아직 정해지지 않았습니다."
+
+#: erpnext/manufacturing/doctype/bom/bom.py:606
+msgid "Price not found for item {0} in price list {1}"
+msgstr ""
+
+#. Label of the price_or_product_discount (Select) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Price or Product Discount"
+msgstr "가격 또는 제품 할인"
+
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:149
+msgid "Price or product discount slabs are required"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:235
+msgid "Price per Unit (Stock UOM)"
+msgstr ""
+
+#. Label of the pricing_tab (Tab Break) field in DocType 'Buying Settings'
+#. Label of the item_price_tab (Tab Break) field in DocType 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/supplier/supplier_dashboard.py:13
+#: erpnext/selling/doctype/customer/customer_dashboard.py:27
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/stock/doctype/item/item_dashboard.py:19
+msgid "Pricing"
+msgstr "가격"
+
+#. Label of the pricing_rule (Link) field in DocType 'Coupon Code'
+#. Name of a DocType
+#. Label of the pricing_rule (Link) field in DocType 'Pricing Rule Detail'
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Pricing Rule"
+msgstr "가격 결정 규칙"
+
+#. Name of a DocType
+#. Label of the brands (Table) field in DocType 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Pricing Rule Brand"
+msgstr "가격 규칙 브랜드"
+
+#. Label of the pricing_rules (Table) field in DocType 'POS Invoice'
+#. Name of a DocType
+#. Label of the pricing_rules (Table) field in DocType 'Purchase Invoice'
+#. Label of the pricing_rules (Table) field in DocType 'Sales Invoice'
+#. Label of the pricing_rules (Table) field in DocType 'Supplier Quotation'
+#. Label of the pricing_rules (Table) field in DocType 'Quotation'
+#. Label of the pricing_rules (Table) field in DocType 'Sales Order'
+#. Label of the pricing_rules (Table) field in DocType 'Delivery Note'
+#. Label of the pricing_rules (Table) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Pricing Rule Detail"
+msgstr "가격 책정 규칙 세부 정보"
+
+#. Label of the pricing_rule_help (HTML) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Pricing Rule Help"
+msgstr "가격 규칙 도움말"
+
+#. Name of a DocType
+#. Label of the items (Table) field in DocType 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Pricing Rule Item Code"
+msgstr "가격 규칙 품목 코드"
+
+#. Name of a DocType
+#. Label of the item_groups (Table) field in DocType 'Promotional Scheme'
+#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Pricing Rule Item Group"
+msgstr "가격 규칙 항목 그룹"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:71
+msgid "Pricing Rule is first selected based on 'Apply On' field, which can be Item, Item Group or Brand."
+msgstr "가격 책정 규칙은 '적용 대상' 필드를 기준으로 먼저 선택되며, 이 필드는 품목, 품목 그룹 또는 브랜드가 될 수 있습니다."
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:48
+msgid "Pricing Rule is made to overwrite Price List / define discount percentage, based on some criteria."
+msgstr "가격 규칙은 특정 기준에 따라 가격표를 덮어쓰거나 할인율을 정의하기 위해 만들어졌습니다."
+
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:251
+msgid "Pricing Rule {0} is updated"
+msgstr ""
+
+#. Label of the pricing_rule_details (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the pricing_rules (Small Text) field in DocType 'POS Invoice Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the pricing_rules (Small Text) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the section_break_48 (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Order
+#. Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the pricing_rules (Small Text) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the pricing_rules (Small Text) field in DocType 'Quotation Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the pricing_rules (Small Text) field in DocType 'Sales Order Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Delivery
+#. Note'
+#. Label of the pricing_rules (Small Text) field in DocType 'Delivery Note
+#. Item'
+#. Label of the pricing_rule_details (Section Break) field in DocType 'Purchase
+#. Receipt'
+#. Label of the pricing_rules (Small Text) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Pricing Rules"
+msgstr "가격 결정 규칙"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:79
+msgid "Pricing Rules are further filtered based on quantity."
+msgstr ""
+
+#: erpnext/public/js/utils/contact_address_quick_entry.js:73
+msgid "Primary Address Details"
+msgstr "주요 주소 정보"
+
+#. Label of the primary_address_and_contact_detail_section (Section Break)
+#. field in DocType 'Supplier'
+#. Label of the primary_address_and_contact_detail (Section Break) field in
+#. DocType 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Primary Address and Contact"
+msgstr "주요 주소 및 연락처"
+
+#: erpnext/public/js/utils/contact_address_quick_entry.js:41
+msgid "Primary Contact Details"
+msgstr "주요 연락처 정보"
+
+#. Label of the primary_email (Read Only) field in DocType 'Process Statement
+#. Of Accounts Customer'
+#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json
+msgid "Primary Contact Email"
+msgstr "주요 연락처 이메일"
+
+#. Label of the primary_party (Dynamic Link) field in DocType 'Party Link'
+#: erpnext/accounts/doctype/party_link/party_link.json
+msgid "Primary Party"
+msgstr "주요 정당"
+
+#. Label of the primary_role (Link) field in DocType 'Party Link'
+#: erpnext/accounts/doctype/party_link/party_link.json
+msgid "Primary Role"
+msgstr "주요 역할"
+
+#. Label of the primary_settings (Section Break) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Primary Settings"
+msgstr "기본 설정"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:123
+msgid "Print Format Type should be Jinja."
+msgstr "인쇄 형식 유형은 Jinja여야 합니다."
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:127
+msgid "Print Format must be an enabled Report Print Format matching the selected Report."
+msgstr "인쇄 형식은 선택한 보고서와 일치하는 활성화된 보고서 인쇄 형식이어야 합니다."
+
+#: erpnext/regional/report/irs_1099/irs_1099.js:36
+msgid "Print IRS 1099 Forms"
+msgstr "IRS 1099 양식을 인쇄하세요"
+
+#. Label of the preferences (Section Break) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Print Preferences"
+msgstr "인쇄 기본 설정"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:63
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:270
+msgid "Print Receipt"
+msgstr "영수증 인쇄"
+
+#. Label of the print_receipt_on_order_complete (Check) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Print Receipt on Order Complete"
+msgstr "주문 완료 후 영수증을 출력하세요"
+
+#: erpnext/setup/install.py:115
+msgid "Print UOM after Quantity"
+msgstr ""
+
+#. Label of the print_without_amount (Check) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Print Without Amount"
+msgstr "금액 없이 인쇄"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
+msgid "Print and Stationery"
+msgstr ""
+
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:75
+msgid "Print settings updated in respective print format"
+msgstr ""
+
+#: erpnext/setup/install.py:122
+msgid "Print taxes with zero amount"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:383
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.html:46
+#: erpnext/accounts/report/financial_statements.html:85
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:127
+msgid "Printed on {0}"
+msgstr "{0}에 인쇄됨"
+
+#. Label of the printing_details (Section Break) field in DocType 'Material
+#. Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Printing Details"
+msgstr "인쇄 세부 정보"
+
+#. Label of the printing_settings_section (Section Break) field in DocType
+#. 'Dunning'
+#. Label of the printing_settings (Section Break) field in DocType 'Journal
+#. Entry'
+#. Label of the edit_printing_settings (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the column_break5 (Section Break) field in DocType 'Purchase Order'
+#. Label of the printing_settings (Section Break) field in DocType 'Request for
+#. Quotation'
+#. Label of the printing_settings (Section Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the printing_settings (Section Break) field in DocType 'Purchase
+#. Receipt'
+#. Label of the printing_settings (Section Break) field in DocType 'Stock
+#. Entry'
+#. Label of the printing_settings_section (Section Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the printing_settings (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Printing Settings"
+msgstr "인쇄 설정"
+
+#. Label of the priorities (Table) field in DocType 'Service Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Priorities"
+msgstr "우선순위"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:61
+msgid "Priority cannot be lesser than 1."
+msgstr "우선순위는 1보다 낮을 수 없습니다."
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:764
+msgid "Priority has been changed to {0}."
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:161
+msgid "Priority is mandatory"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:109
+msgid "Priority {0} has been repeated."
+msgstr "우선순위 {0} 가 반복되었습니다."
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:38
+msgid "Private Equity"
+msgstr ""
+
+#. Label of the probability (Percent) field in DocType 'Prospect Opportunity'
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+msgid "Probability"
+msgstr "개연성"
+
+#. Label of the probability (Percent) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "Probability (%)"
+msgstr "확률(%)"
+
+#. Option for the 'Status' (Select) field in DocType 'Workstation'
+#. Label of the problem (Long Text) field in DocType 'Quality Action
+#. Resolution'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
+msgid "Problem"
+msgstr "문제"
+
+#. Label of the procedure (Link) field in DocType 'Non Conformance'
+#. Label of the procedure (Link) field in DocType 'Quality Action'
+#. Label of the procedure (Link) field in DocType 'Quality Goal'
+#. Label of the procedure (Link) field in DocType 'Quality Review'
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+msgid "Procedure"
+msgstr "절차"
+
+#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
+#. Entry'
+#. Name of a DocType
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+msgid "Process Deferred Accounting"
+msgstr ""
+
+#. Label of the process_description (Text Editor) field in DocType 'Quality
+#. Procedure Process'
+#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json
+msgid "Process Description"
+msgstr "프로세스 설명"
+
+#. Label of the section_break_7qsm (Section Break) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Process Loss"
+msgstr "공정 손실"
+
+#. Label of the process_loss_per (Percent) field in DocType 'BOM Secondary
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+msgid "Process Loss %"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1281
+msgid "Process Loss Percentage cannot be greater than 100"
+msgstr ""
+
+#. Label of the process_loss_qty (Float) field in DocType 'BOM'
+#. Label of the process_loss_qty (Float) field in DocType 'BOM Secondary Item'
+#. Label of the process_loss_qty (Float) field in DocType 'Job Card'
+#. Label of the process_loss_qty (Float) field in DocType 'Work Order'
+#. Label of the process_loss_qty (Float) field in DocType 'Work Order
+#. Operation'
+#. Label of the process_loss_qty (Float) field in DocType 'Stock Entry'
+#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting
+#. Inward Order Item'
+#. Label of the process_loss_qty (Float) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:94
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Process Loss Qty"
+msgstr "공정 손실 수량"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
+msgid "Process Loss Quantity"
+msgstr ""
+
+#. Name of a report
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.json
+msgid "Process Loss Report"
+msgstr "공정 손실 보고서"
+
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:100
+msgid "Process Loss Value"
+msgstr "공정 손실 값"
+
+#. Label of the process_owner (Data) field in DocType 'Non Conformance'
+#. Label of the process_owner (Link) field in DocType 'Quality Procedure'
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Process Owner"
+msgstr "프로세스 소유자"
+
+#. Label of the process_owner_full_name (Data) field in DocType 'Quality
+#. Procedure'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Process Owner Full Name"
+msgstr "프로세스 담당자 성명"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/workspace_sidebar/banking.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Process Payment Reconciliation"
+msgstr "결제 대조 처리"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Process Payment Reconciliation Log"
+msgstr "지급 정산 로그 처리"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+msgid "Process Payment Reconciliation Log Allocations"
+msgstr "결제 조정 로그 할당 처리"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+msgid "Process Period Closing Voucher"
+msgstr "처리 기간 마감 전표"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+msgid "Process Period Closing Voucher Detail"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Process Statement Of Accounts"
+msgstr "계정 명세서 처리"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_statement_of_accounts_cc/process_statement_of_accounts_cc.json
+msgid "Process Statement Of Accounts CC"
+msgstr "계정 명세서 처리 CC"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_statement_of_accounts_customer/process_statement_of_accounts_customer.json
+msgid "Process Statement Of Accounts Customer"
+msgstr "고객 계정 명세서 처리"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/process_subscription/process_subscription.json
+msgid "Process Subscription"
+msgstr "구독 처리"
+
+#. Label of the process_in_single_transaction (Check) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Process in Single Transaction"
+msgstr "단일 거래로 처리"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
+#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+msgid "Processed BOMs"
+msgstr "처리된 BOM"
+
+#. Label of the processes (Table) field in DocType 'Quality Procedure'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Processes"
+msgstr "프로세스"
+
+#. Label of the processing_date (Date) field in DocType 'Process Period Closing
+#. Voucher Detail'
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+msgid "Processing Date"
+msgstr "처리 날짜"
+
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:52
+msgid "Processing XML Files"
+msgstr "XML 파일 처리 중"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:188
+msgid "Processing import..."
+msgstr "가져오기 처리 중..."
+
+#: erpnext/buying/doctype/supplier/supplier_dashboard.py:10
+msgid "Procurement"
+msgstr "획득"
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Procurement Tracker"
+msgstr "조달 추적기"
+
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:214
+msgid "Produce Qty"
+msgstr "생산 수량"
+
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Produced"
+msgstr "제작됨"
+
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:177
+msgid "Produced / Received Qty"
+msgstr "생산/수령 수량"
+
+#. Label of the produced_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the wo_produced_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the produced_qty (Float) field in DocType 'Batch'
+#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Item'
+#. Label of the produced_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Secondary Item'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:50
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:130
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:215
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+msgid "Produced Qty"
+msgstr "생산 수량"
+
+#. Label of a chart in the Manufacturing Workspace
+#. Label of the produced_qty (Float) field in DocType 'Sales Order Item'
+#: erpnext/manufacturing/dashboard_fixtures.py:59
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Produced Quantity"
+msgstr "생산량"
+
+#. Option for the 'Price or Product Discount' (Select) field in DocType
+#. 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Product"
+msgstr "제품"
+
+#. Label of the product_bundle (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the product_bundle (Link) field in DocType 'Purchase Order Item'
+#. Label of a Link in the Buying Workspace
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Label of the product_bundle (Link) field in DocType 'Purchase Receipt Item'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Product Bundle"
+msgstr "제품 번들"
+
+#. Name of a report
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.json
+msgid "Product Bundle Balance"
+msgstr "제품 묶음 잔액"
+
+#. Label of the product_bundle_help (HTML) field in DocType 'POS Invoice'
+#. Label of the product_bundle_help (HTML) field in DocType 'Sales Invoice'
+#. Label of the product_bundle_help (HTML) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Product Bundle Help"
+msgstr "제품 번들 도움말"
+
+#. Label of the product_bundle_item (Link) field in DocType 'Production Plan
+#. Item'
+#. Label of the product_bundle_item (Link) field in DocType 'Work Order'
+#. Name of a DocType
+#. Label of the product_bundle_item (Data) field in DocType 'Pick List Item'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Product Bundle Item"
+msgstr "제품 번들 품목"
+
+#. Label of the product_discount_scheme_section (Section Break) field in
+#. DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Product Discount Scheme"
+msgstr "제품 할인 제도"
+
+#. Label of the section_break_15 (Section Break) field in DocType 'Promotional
+#. Scheme'
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+msgid "Product Discount Slabs"
+msgstr ""
+
+#. Option for the 'Request Type' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Product Enquiry"
+msgstr "제품 문의"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:25
+msgid "Product Manager"
+msgstr "제품 관리자"
+
+#. Label of the product_price_id (Data) field in DocType 'Subscription Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Product Price ID"
+msgstr "제품 가격 ID"
+
+#. 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:478
+msgid "Production"
+msgstr "생산"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/production_analytics/production_analytics.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Production Analytics"
+msgstr "생산 분석"
+
+#. Label of the production_capacity (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Production Capacity"
+msgstr ""
+
+#. Label of the production_item_tab (Tab Break) field in DocType 'BOM'
+#. Label of the item (Tab Break) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:38
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:65
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:152
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.js:42
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:123
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:51
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:208
+msgid "Production Item"
+msgstr "생산품"
+
+#. Label of the production_item_info_section (Section Break) field in DocType
+#. 'BOM'
+#. Label of the production_item_info_section (Section Break) field in DocType
+#. 'Work Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Production Item Info"
+msgstr "생산 품목 정보"
+
+#. Label of the production_plan (Link) field in DocType 'Purchase Order Item'
+#. Name of a DocType
+#. Label of the production_plan (Link) field in DocType 'Work Order'
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the production_plan (Link) field in DocType 'Material Request Item'
+#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation
+#. Entry'
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Label of the production_plan (Data) field in DocType 'Subcontracting Order'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.js:8
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1102
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Production Plan"
+msgstr "생산 계획"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:154
+msgid "Production Plan Already Submitted"
+msgstr "생산 계획서 이미 제출됨"
+
+#. Label of the production_plan_item (Data) field in DocType 'Purchase Order
+#. Item'
+#. Name of a DocType
+#. Label of the production_plan_item (Data) field in DocType 'Production Plan
+#. Sub Assembly Item'
+#. Label of the production_plan_item (Data) field in DocType 'Work Order'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Production Plan Item"
+msgstr "생산 계획 항목"
+
+#. Label of the prod_plan_references (Table) field in DocType 'Production Plan'
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json
+msgid "Production Plan Item Reference"
+msgstr "생산 계획 품목 참조"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/production_plan_material_request/production_plan_material_request.json
+msgid "Production Plan Material Request"
+msgstr "생산 계획 자재 요청"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/production_plan_material_request_warehouse/production_plan_material_request_warehouse.json
+msgid "Production Plan Material Request Warehouse"
+msgstr "생산 계획 자재 요청 창고"
+
+#. Label of the production_plan_qty (Float) field in DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Production Plan Qty"
+msgstr "생산 계획 수량"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json
+msgid "Production Plan Sales Order"
+msgstr "생산 계획 판매 주문"
+
+#. Label of the production_plan_sub_assembly_item (Data) field in DocType
+#. 'Purchase Order Item'
+#. Name of a DocType
+#. Label of the production_plan_sub_assembly_item (Data) field in DocType 'Work
+#. Order'
+#. Label of the production_plan_sub_assembly_item (Data) field in DocType
+#. 'Subcontracting Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Production Plan Sub Assembly Item"
+msgstr ""
+
+#. Name of a report
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:110
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.json
+msgid "Production Plan Summary"
+msgstr "생산 계획 요약"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Production Planning Report"
+msgstr "생산 계획 보고서"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:39
+msgid "Products"
+msgstr "제품"
+
+#. Label of the accounts_module (Column Break) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Profit & Loss"
+msgstr ""
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:117
+msgid "Profit This Year"
+msgstr "올해 수익"
+
+#. Option for the 'Report Type' (Select) field in DocType 'Account'
+#. Option for the 'Report Type' (Select) field in DocType 'Process Period
+#. Closing Voucher Detail'
+#. Label of a chart in the Financial Reports Workspace
+#. Label of a chart in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/public/js/financial_statements.js:330
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Profit and Loss"
+msgstr ""
+
+#. Option for the 'Report Type' (Select) field in DocType 'Financial Report
+#. Template'
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+msgid "Profit and Loss Statement"
+msgstr ""
+
+#. Label of the heading_cppb (Heading) field in DocType 'Bisect Accounting
+#. Statements'
+#. Label of the profit_loss_summary (Float) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.json
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Profit and Loss Summary"
+msgstr ""
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:141
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:142
+msgid "Profit for the year"
+msgstr "연간 수익"
+
+#. Label of a Card Break in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Profitability"
+msgstr "수익성"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Profitability Analysis"
+msgstr "수익성 분석"
+
+#: erpnext/projects/doctype/task/task.py:156
+#, python-format
+msgid "Progress % for a task cannot be more than 100."
+msgstr ""
+
+#: erpnext/projects/report/delayed_tasks_summary/delayed_tasks_summary.py:116
+msgid "Progress (%)"
+msgstr "진전 (%)"
+
+#: erpnext/projects/doctype/project/project.py:412
+msgid "Project Collaboration Invitation"
+msgstr "프로젝트 협업 초대"
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:38
+msgid "Project Id"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:26
+msgid "Project Manager"
+msgstr "프로젝트 매니저"
+
+#. Label of the project_name (Data) field in DocType 'Sales Invoice Timesheet'
+#. Label of the project_name (Data) field in DocType 'Project'
+#. Label of the project_name (Data) field in DocType 'Timesheet Detail'
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/projects/report/project_summary/project_summary.py:54
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:42
+msgid "Project Name"
+msgstr ""
+
+#: erpnext/templates/pages/projects.html:112
+msgid "Project Progress:"
+msgstr "프로젝트 진행 상황:"
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:47
+msgid "Project Start Date"
+msgstr "프로젝트 시작일"
+
+#. Label of the project_status (Text) field in DocType 'Project User'
+#: erpnext/projects/doctype/project_user/project_user.json
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:43
+msgid "Project Status"
+msgstr "프로젝트 현황"
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/report/project_summary/project_summary.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Project Summary"
+msgstr "프로젝트 개요"
+
+#: erpnext/projects/doctype/project/project.py:711
+msgid "Project Summary for {0}"
+msgstr "{0} 프로젝트 요약"
+
+#. Name of a DocType
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/doctype/project_template/project_template.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Project Template"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/projects/doctype/project_template_task/project_template_task.json
+msgid "Project Template Task"
+msgstr ""
+
+#. Label of the project_type (Link) field in DocType 'Project'
+#. Label of the project_type (Link) field in DocType 'Project Template'
+#. Name of a DocType
+#. Label of the project_type (Data) field in DocType 'Project Type'
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/project_template/project_template.json
+#: erpnext/projects/doctype/project_type/project_type.json
+#: erpnext/projects/report/project_summary/project_summary.js:30
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Project Type"
+msgstr "프로젝트 유형"
+
+#. Name of a DocType
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/doctype/project_update/project_update.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Project Update"
+msgstr "프로젝트 업데이트"
+
+#: erpnext/config/projects.py:44
+msgid "Project Update."
+msgstr "프로젝트 업데이트."
+
+#. Name of a DocType
+#: erpnext/projects/doctype/project_user/project_user.json
+msgid "Project User"
+msgstr "프로젝트 사용자"
+
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:46
+msgid "Project Value"
+msgstr "프로젝트 가치"
+
+#: erpnext/config/projects.py:20
+msgid "Project activity / task."
+msgstr "프로젝트 활동/과제."
+
+#: erpnext/config/projects.py:13
+msgid "Project master."
+msgstr "프로젝트 책임자."
+
+#. Description of the 'Users' (Table) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Project will be accessible on the website to these users"
+msgstr ""
+
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Project wise Stock Tracking"
+msgstr ""
+
+#. Name of a report
+#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.json
+msgid "Project wise Stock Tracking "
+msgstr ""
+
+#: erpnext/controllers/trends.py:437
+msgid "Project-wise data is not available for Quotation"
+msgstr ""
+
+#. Label of the projected_on_hand (Float) field in DocType 'Material Request
+#. Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Projected On Hand"
+msgstr "손에 투영됨"
+
+#. Label of the projected_qty (Float) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the projected_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the projected_qty (Float) field in DocType 'Quotation Item'
+#. Label of the projected_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the projected_qty (Float) field in DocType 'Bin'
+#. Label of the projected_qty (Float) field in DocType 'Material Request Item'
+#. Label of the projected_qty (Float) field in DocType 'Packed Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:46
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/dashboard/item_dashboard_list.html:37
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:73
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:206
+#: erpnext/templates/emails/reorder_item.html:12
+msgid "Projected Qty"
+msgstr "예상 수량"
+
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:130
+msgid "Projected Quantity"
+msgstr "예상 수량"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:184
+msgid "Projected Quantity Formula"
+msgstr "예상 수량 공식"
+
+#: erpnext/stock/page/stock_balance/stock_balance.js:51
+msgid "Projected qty"
+msgstr "예상 수량"
+
+#. Label of a Desktop Icon
+#. Name of a Workspace
+#. Label of a Card Break in the Projects Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
+#: erpnext/projects/doctype/project/project.py:489
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/selling/doctype/customer/customer_dashboard.py:26
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
+#: erpnext/setup/doctype/company/company_dashboard.py:25
+#: erpnext/workspace_sidebar/projects.json
+msgid "Projects"
+msgstr "프로젝트"
+
+#. Name of a role
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/project_type/project_type.json
+#: erpnext/projects/doctype/task_type/task_type.json
+msgid "Projects Manager"
+msgstr "프로젝트 매니저"
+
+#. Name of a DocType
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Projects Settings"
+msgstr "프로젝트 설정"
+
+#. Title of the Module Onboarding 'Projects Onboarding'
+#: erpnext/projects/module_onboarding/projects_onboarding/projects_onboarding.json
+msgid "Projects Setup"
+msgstr "프로젝트 설정"
+
+#. Name of a role
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+#: erpnext/projects/doctype/activity_type/activity_type.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/project_type/project_type.json
+#: erpnext/projects/doctype/project_update/project_update.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/doctype/task_type/task_type.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Projects User"
+msgstr "프로젝트 사용자"
+
+#. Option for the 'Coupon Type' (Select) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Promotional"
+msgstr "홍보"
+
+#. Label of the promotional_scheme (Link) field in DocType 'Pricing Rule'
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Promotional Scheme"
+msgstr "프로모션 계획"
+
+#. Label of the promotional_scheme_id (Data) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Promotional Scheme Id"
+msgstr ""
+
+#. Label of the price_discount_slabs (Table) field in DocType 'Promotional
+#. Scheme'
+#. Name of a DocType
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "Promotional Scheme Price Discount"
+msgstr "프로모션 할인 가격"
+
+#. Label of the product_discount_slabs (Table) field in DocType 'Promotional
+#. Scheme'
+#. Name of a DocType
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Promotional Scheme Product Discount"
+msgstr "프로모션 상품 할인"
+
+#. Label of the prompt_qty (Check) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Prompt Qty"
+msgstr "즉시 수량"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:264
+msgid "Proposal Writing"
+msgstr "제안서 작성"
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:7
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:443
+msgid "Proposal/Price Quote"
+msgstr "제안서/가격 견적서"
+
+#. Label of the prorate (Check) field in DocType 'Subscription Settings'
+#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json
+msgid "Prorate"
+msgstr "비례 배분"
+
+#. Name of a DocType
+#. Label of a Link in the CRM Workspace
+#. Label of the prospect_name (Link) field in DocType 'Customer'
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/lead/lead.js:36 erpnext/crm/doctype/lead/lead.js:62
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "Prospect"
+msgstr "전망"
+
+#. Name of a DocType
+#: erpnext/crm/doctype/prospect_lead/prospect_lead.json
+msgid "Prospect Lead"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+msgid "Prospect Opportunity"
+msgstr "유망한 기회"
+
+#. Label of the prospect_owner (Link) field in DocType 'Prospect'
+#: erpnext/crm/doctype/prospect/prospect.json
+msgid "Prospect Owner"
+msgstr "잠재 소유주"
+
+#: erpnext/crm/doctype/lead/lead.py:315
+msgid "Prospect {0} already exists"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:1
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:437
+msgid "Prospecting"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/prospects_engaged_but_not_converted/prospects_engaged_but_not_converted.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Prospects Engaged But Not Converted"
+msgstr "관심은 있지만 전환되지 않은 잠재 고객"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
+msgid "Protected DocType"
+msgstr "보호된 문서 유형"
+
+#. Description of the 'Company Email' (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Provide Email Address registered in company"
+msgstr ""
+
+#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank
+#. Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Providing"
+msgstr "제공하는"
+
+#: erpnext/setup/doctype/company/company.py:577
+msgid "Provisional Account"
+msgstr "잠정 계정"
+
+#. Label of the provisional_expense_account (Link) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Provisional Expense Account"
+msgstr "잠정 비용 계정"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:159
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:160
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:227
+msgid "Provisional Profit / Loss (Credit)"
+msgstr ""
+
+#. Description of the 'Default Provisional Account (Service)' (Link) field in
+#. DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Provisional liability account used for service items before invoice is received"
+msgstr "청구서 수령 전 서비스 항목에 사용되는 임시 부채 계정"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Psi/1000 Feet"
+msgstr ""
+
+#. Label of the publish_date (Date) field in DocType 'Video'
+#: erpnext/utilities/doctype/video/video.json
+msgid "Publish Date"
+msgstr "게시일"
+
+#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:22
+msgid "Published Date"
+msgstr "게시일"
+
+#. Label of the publisher (Data) field in DocType 'Code List'
+#: erpnext/edi/doctype/code_list/code_list.json
+msgid "Publisher"
+msgstr "발행자"
+
+#. Label of the publisher_id (Data) field in DocType 'Code List'
+#: erpnext/edi/doctype/code_list/code_list.json
+msgid "Publisher ID"
+msgstr "게시자 ID"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:39
+msgid "Publishing"
+msgstr "출판"
+
+#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice
+#. Creation Tool'
+#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer'
+#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule'
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Option for the 'Default Material Request Type' (Select) field in DocType
+#. 'Item'
+#. Label of the section_break_fwyn (Section Break) field in DocType 'Item Lead
+#. Time'
+#. Option for the 'Material Request Type' (Select) field in DocType 'Item
+#. Reorder'
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:10
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:9
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:15
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:11
+#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:10
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/projects/doctype/project/project_dashboard.py:16
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Purchase"
+msgstr "구입"
+
+#. Label of the purchase_amount (Currency) field in DocType 'Loyalty Point
+#. Entry'
+#. Label of the purchase_amount (Currency) field in DocType 'Asset'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:160
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Purchase Amount"
+msgstr "구매 금액"
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Purchase Analytics"
+msgstr "구매 분석"
+
+#. Label of the purchase_date (Date) field in DocType 'Asset'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:211
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:491
+msgid "Purchase Date"
+msgstr "구매일"
+
+#. Label of the purchase_defaults (Section Break) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Purchase Defaults"
+msgstr ""
+
+#. Label of the purchase_details_section (Section Break) field in DocType
+#. 'Asset'
+#. Label of the section_break_6 (Section Break) field in DocType 'Asset
+#. Capitalization Stock Item'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+msgid "Purchase Details"
+msgstr "구매 내역"
+
+#. Label of the purchase_expense_section (Section Break) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Purchase Expense"
+msgstr "구매 비용"
+
+#. Label of the purchase_expense_account (Link) field in DocType 'Company'
+#. Label of the purchase_expense_account (Link) field in DocType 'Item Default'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Purchase Expense Account"
+msgstr ""
+
+#. Label of the purchase_expense_contra_account (Link) field in DocType
+#. 'Company'
+#. Label of the purchase_expense_contra_account (Link) field in DocType 'Item
+#. Default'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Purchase Expense Contra Account"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:361
+#: erpnext/controllers/buying_controller.py:375
+msgid "Purchase Expense for Item {0}"
+msgstr "품목 {0}에 대한 구매 비용"
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Option for the 'Invoice Type' (Select) field in DocType 'Payment
+#. Reconciliation Invoice'
+#. Name of a DocType
+#. Label of the purchase_invoice (Link) field in DocType 'Asset'
+#. Label of the purchase_invoice (Link) field in DocType 'Asset Repair Purchase
+#. Invoice'
+#. Label of a Link in the Buying Workspace
+#. Option for the 'Document Type' (Select) field in DocType 'Contract'
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Item'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Purchase Receipt'
+#. Label of the purchase_invoice (Link) field in DocType 'Purchase Receipt
+#. Item'
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/print_format/purchase_auditing_voucher/purchase_auditing_voucher.html:5
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.js:22
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:53
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:48
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:381
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:63
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:21
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:118
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:263
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:30
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:424
+#: erpnext/workspace_sidebar/buying.json
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Purchase Invoice"
+msgstr "구매 송장"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+msgid "Purchase Invoice Advance"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the purchase_invoice_item (Data) field in DocType 'Asset'
+#. Label of the purchase_invoice_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Purchase Invoice Item"
+msgstr "구매 송장 품목"
+
+#. Label of the purchase_invoice_settings_section (Section Break) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Purchase Invoice Settings"
+msgstr "구매 송장 설정"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/purchase_invoice_trends/purchase_invoice_trends.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Purchase Invoice Trends"
+msgstr "구매 송장 동향"
+
+#: erpnext/assets/doctype/asset/asset.py:337
+msgid "Purchase Invoice cannot be made against an existing asset {0}"
+msgstr "기존 자산에 대해서는 구매 송장을 발행할 수 없습니다 {0}"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:454
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:468
+msgid "Purchase Invoice {0} is already submitted"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1933
+msgid "Purchase Invoices"
+msgstr "구매 송장"
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Label of the purchase_order (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the purchase_order (Link) field in DocType 'Sales Invoice Item'
+#. Name of a DocType
+#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of a Link in the Buying Workspace
+#. Option for the 'Document Type' (Select) field in DocType 'Contract'
+#. Label of the purchase_order (Link) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the purchase_order (Link) field in DocType 'Sales Order Item'
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Label of the purchase_order (Link) field in DocType 'Delivery Note Item'
+#. Label of the purchase_order (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the purchase_order (Link) field in DocType 'Stock Entry'
+#. Label of the purchase_order (Link) field in DocType 'Subcontracting Receipt
+#. Item'
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:156
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:237
+#: erpnext/accounts/report/purchase_register/purchase_register.py:216
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:47
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:39
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_list.js:15
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:81
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:82
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.js:48
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:203
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/controllers/buying_controller.py:882
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:54
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:179
+#: erpnext/selling/doctype/sales_order/sales_order.js:1149
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request/material_request.js:196
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:217
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/buying.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Purchase Order"
+msgstr "구매 주문서"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:103
+msgid "Purchase Order Amount"
+msgstr "구매 주문 금액"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:109
+msgid "Purchase Order Amount(Company Currency)"
+msgstr "구매 주문 금액(회사 통화)"
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Purchase Order Analysis"
+msgstr "구매 주문 분석"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:76
+msgid "Purchase Order Date"
+msgstr "구매 주문 날짜"
+
+#. Label of the po_detail (Data) field in DocType 'Purchase Invoice Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Sales Invoice
+#. Item'
+#. Name of a DocType
+#. Label of the purchase_order_item (Data) field in DocType 'Sales Order Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Delivery Note
+#. Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting
+#. Order Service Item'
+#. Label of the purchase_order_item (Data) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Purchase Order Item"
+msgstr "구매 주문 품목"
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1051
+msgid "Purchase Order Item reference is missing in Subcontracting Receipt {0}"
+msgstr "하도급 영수증에 구매 주문 품목 참조가 누락되었습니다. {0}"
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:186
+msgid "Purchase Order Items not received on time"
+msgstr ""
+
+#. Label of the pricing_rules (Table) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Purchase Order Pricing Rule"
+msgstr "구매 주문 가격 결정 규칙"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:631
+msgid "Purchase Order Required"
+msgstr "구매 주문서 필요"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:626
+msgid "Purchase Order Required for item {}"
+msgstr ""
+
+#. Name of a report
+#. Label of a chart in the Buying Workspace
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Purchase Order Trends"
+msgstr "구매 주문 추세"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1670
+msgid "Purchase Order already created for all Sales Order items"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:340
+msgid "Purchase Order number required for Item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1362
+msgid "Purchase Order {0} created"
+msgstr "구매 주문서 {0} 가 생성되었습니다"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:669
+msgid "Purchase Order {0} is not submitted"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
+msgid "Purchase Orders"
+msgstr "구매 주문서"
+
+#. Label of a number card in the Buying Workspace
+#: erpnext/buying/workspace/buying/buying.json
+msgid "Purchase Orders Count"
+msgstr "구매 주문 건수"
+
+#. Label of the purchase_orders_items_overdue (Check) field in DocType 'Email
+#. Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Purchase Orders Items Overdue"
+msgstr "구매 주문서 기한 초과 품목"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
+msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
+msgstr ""
+
+#. Label of the purchase_orders_to_bill (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Purchase Orders to Bill"
+msgstr ""
+
+#. Label of the purchase_orders_to_receive (Check) field in DocType 'Email
+#. Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Purchase Orders to Receive"
+msgstr "수령할 구매 주문서"
+
+#: erpnext/controllers/accounts_controller.py:2017
+msgid "Purchase Orders {0} are un-linked"
+msgstr ""
+
+#: erpnext/stock/report/item_prices/item_prices.py:59
+msgid "Purchase Price List"
+msgstr "구매 가격표"
+
+#. Label of the purchase_receipt (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the purchase_receipt (Link) field in DocType 'Asset'
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Item'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Purchase Receipt'
+#. Name of a DocType
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:181
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:628
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:638
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:49
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:244
+#: erpnext/accounts/report/purchase_register/purchase_register.py:223
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.js:22
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:21
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:49
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:360
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:69
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:68
+#: erpnext/workspace_sidebar/stock.json
+msgid "Purchase Receipt"
+msgstr "구매 영수증"
+
+#. Description of the 'Auto create Purchase Receipt' (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Purchase Receipt (Draft) will be auto-created on submission of Subcontracting Receipt."
+msgstr "하도급 영수증 제출 시 구매 영수증(초안)이 자동으로 생성됩니다."
+
+#. Label of the pr_detail (Data) field in DocType 'Purchase Invoice Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+msgid "Purchase Receipt Detail"
+msgstr ""
+
+#. Label of the purchase_receipt_item (Data) field in DocType 'Asset'
+#. Label of the purchase_receipt_item (Data) field in DocType 'Asset
+#. Capitalization Stock Item'
+#. Label of the purchase_receipt_item (Data) field in DocType 'Landed Cost
+#. Item'
+#. Name of a DocType
+#. Label of the purchase_receipt_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Purchase Receipt Item"
+msgstr "구매 영수증 품목"
+
+#. Name of a DocType
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+msgid "Purchase Receipt Item Supplied"
+msgstr "구매 영수증, 공급 품목"
+
+#. Label of the purchase_receipt_no (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Purchase Receipt No"
+msgstr "구매 영수증 번호"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:652
+msgid "Purchase Receipt Required"
+msgstr "구매 영수증 필수"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:647
+msgid "Purchase Receipt Required for item {}"
+msgstr ""
+
+#. Label of a Link in the Buying Workspace
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Purchase Receipt Trends"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/buying.json
+msgid "Purchase Receipt Trends "
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:356
+msgid "Purchase Receipt doesn't have any Item for which Retain Sample is enabled."
+msgstr "구매 영수증에 샘플 보관 옵션이 활성화된 품목이 없습니다."
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1126
+msgid "Purchase Receipt {0} created."
+msgstr "구매 영수증 {0} 이 생성되었습니다."
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:676
+msgid "Purchase Receipt {0} is not submitted"
+msgstr ""
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/purchase_register/purchase_register.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Purchase Register"
+msgstr "구매 등록"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:253
+msgid "Purchase Return"
+msgstr "구매 반품"
+
+#. Label of the purchase_tax_template (Link) field in DocType 'Tax Rule'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/setup/doctype/company/company.js:161
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Purchase Tax Template"
+msgstr ""
+
+#. Label of the purchase_tax_withholding_category (Link) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Purchase Tax Withholding Category"
+msgstr ""
+
+#. Label of the taxes (Table) field in DocType 'Purchase Invoice'
+#. Name of a DocType
+#. Label of the taxes (Table) field in DocType 'Purchase Taxes and Charges
+#. Template'
+#. Label of the taxes (Table) field in DocType 'Purchase Order'
+#. Label of the taxes (Table) field in DocType 'Supplier Quotation'
+#. Label of the taxes (Table) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Purchase Taxes and Charges"
+msgstr ""
+
+#. Label of the purchase_taxes_and_charges_template (Link) field in DocType
+#. 'Payment Entry'
+#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Invoice'
+#. Name of a DocType
+#. Label of the purchase_tax_template (Link) field in DocType 'Subscription'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Order'
+#. Label of the taxes_and_charges (Link) field in DocType 'Supplier Quotation'
+#. Label of a Link in the Buying Workspace
+#. Label of the taxes_and_charges (Link) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Purchase Taxes and Charges Template"
+msgstr ""
+
+#. Label of the purchase_time (Int) field in DocType 'Item Lead Time'
+#. Label of the purchase_lead_time_tab (Tab Break) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Purchase Time"
+msgstr "구매 시간"
+
+#: erpnext/buying/report/purchase_order_trends/purchase_order_trends.py:57
+msgid "Purchase Value"
+msgstr "구매 가격"
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:35
+msgid "Purchase Voucher No"
+msgstr ""
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:29
+msgid "Purchase Voucher Type"
+msgstr ""
+
+#: erpnext/utilities/activation.py:105
+msgid "Purchase orders help you plan and follow up on your purchases"
+msgstr ""
+
+#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+msgid "Purchased"
+msgstr "구매함"
+
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143
+msgid "Purchases"
+msgstr "구매"
+
+#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order'
+#. Label of the purchasing_tab (Tab Break) field in DocType 'Item'
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:27
+#: erpnext/stock/doctype/item/item.json
+msgid "Purchasing"
+msgstr "구매"
+
+#. Label of the purpose (Select) field in DocType 'Asset Movement'
+#. Label of the material_request_type (Select) field in DocType 'Material
+#. Request'
+#. Label of the purpose (Select) field in DocType 'Pick List'
+#. Label of the purpose (Select) field in DocType 'Stock Entry'
+#. Label of the purpose (Select) field in DocType 'Stock Entry Type'
+#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Purpose"
+msgstr "목적"
+
+#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Purposes"
+msgstr "목적"
+
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:56
+msgid "Purposes Required"
+msgstr "목적 필요"
+
+#. Label of the putaway_rule (Link) field in DocType 'Purchase Receipt Item'
+#. Name of a DocType
+#. Label of the putaway_rule (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Putaway Rule"
+msgstr "수납 규칙"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:53
+msgid "Putaway Rule already exists for Item {0} in Warehouse {1}."
+msgstr "창고 {1}에 품목 {0} 에 대한 적재 규칙이 이미 존재합니다."
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:41
+msgid "Q1"
+msgstr "Q1"
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:49
+msgid "Q2"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:57
+msgid "Q3"
+msgstr "Q3"
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:65
+msgid "Q4"
+msgstr ""
+
+#. Label of the free_qty (Float) field in DocType 'Pricing Rule'
+#. Label of the free_qty (Float) field in DocType 'Promotional Scheme Product
+#. Discount'
+#. Label of the qty (Float) field in DocType 'Asset Capitalization Service
+#. Item'
+#. Label of the qty (Float) field in DocType 'Opportunity Item'
+#. Label of the qty (Float) field in DocType 'BOM Creator Item'
+#. Label of the qty (Float) field in DocType 'BOM Item'
+#. Label of the qty (Float) field in DocType 'BOM Secondary Item'
+#. Label of the qty (Float) field in DocType 'BOM Website Item'
+#. Label of the qty_section (Section Break) field in DocType 'Job Card Item'
+#. Label of the stock_qty (Float) field in DocType 'Job Card Secondary Item'
+#. Label of the qty (Float) field in DocType 'Production Plan Item Reference'
+#. Label of the qty_section (Section Break) field in DocType 'Work Order Item'
+#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
+#. Label of the qty (Float) field in DocType 'Product Bundle Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
+#. Option for the 'Distribute Charges Based On' (Select) field in DocType
+#. 'Landed Cost Voucher'
+#. Label of the qty (Float) field in DocType 'Packed Item'
+#. Label of the qty (Float) field in DocType 'Pick List Item'
+#. Label of the qty (Float) field in DocType 'Serial and Batch Entry'
+#. Label of the qty (Float) field in DocType 'Stock Entry Detail'
+#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Option for the 'Distribute Additional Costs Based On ' (Select) field in
+#. DocType 'Subcontracting Order'
+#. Option for the 'Distribute Additional Costs Based On ' (Select) field in
+#. DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+#: erpnext/accounts/report/gross_profit/gross_profit.py:345
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:240
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:224
+#: erpnext/controllers/trends.py:282 erpnext/controllers/trends.py:294
+#: erpnext/controllers/trends.py:299
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/bom/bom.js:1105
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/bom_website_item/bom_website_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:28
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:69
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:235
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:333
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:398
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:499
+#: erpnext/public/js/stock_reservation.js:134
+#: erpnext/public/js/stock_reservation.js:336 erpnext/public/js/utils.js:864
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:395
+#: erpnext/selling/doctype/sales_order/sales_order.js:532
+#: erpnext/selling/doctype/sales_order/sales_order.js:622
+#: erpnext/selling/doctype/sales_order/sales_order.js:669
+#: erpnext/selling/doctype/sales_order/sales_order.js:1344
+#: erpnext/selling/doctype/sales_order/sales_order.js:1506
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:195
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:74
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:270
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:369
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/templates/form_grid/item_grid.html:7
+#: erpnext/templates/form_grid/material_request_grid.html:9
+#: erpnext/templates/form_grid/stock_entry_grid.html:10
+#: erpnext/templates/generators/bom.html:50 erpnext/templates/pages/rfq.html:40
+msgid "Qty"
+msgstr "수량"
+
+#: erpnext/templates/pages/order.html:178
+msgid "Qty "
+msgstr "수량 "
+
+#. Label of the received_qty (Float) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Qty (As per BOM)"
+msgstr ""
+
+#. Label of the company_total_stock (Float) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the company_total_stock (Float) field in DocType 'Quotation Item'
+#. Label of the company_total_stock (Float) field in DocType 'Sales Order Item'
+#. Label of the company_total_stock (Float) field in DocType 'Delivery Note
+#. Item'
+#. Label of the company_total_stock (Float) field in DocType 'Pick List Item'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Qty (Company)"
+msgstr "수량 (회사)"
+
+#. Label of the actual_qty (Float) field in DocType 'Sales Invoice Item'
+#. Label of the actual_qty (Float) field in DocType 'Quotation Item'
+#. Label of the actual_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the actual_qty (Float) field in DocType 'Delivery Note Item'
+#. Label of the actual_qty (Float) field in DocType 'Pick List Item'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Qty (Warehouse)"
+msgstr "수량 (창고)"
+
+#. Label of the stock_qty (Float) field in DocType 'Pick List Item'
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Qty (in Stock UOM)"
+msgstr "수량 (재고 단위)"
+
+#. Label of the qty_after_transaction (Float) field in DocType 'Stock Ledger
+#. Entry'
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:66
+msgid "Qty After Transaction"
+msgstr "거래 후 수량"
+
+#. Label of the actual_qty (Float) field in DocType 'Stock Closing Balance'
+#. Label of the actual_qty (Float) field in DocType 'Stock Ledger Entry'
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:772
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:169
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:188
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:91
+msgid "Qty Change"
+msgstr "수량 변경"
+
+#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Explosion
+#. Item'
+#. Label of the qty_consumed_per_unit (Float) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Qty Consumed Per Unit"
+msgstr ""
+
+#. Label of the actual_qty (Float) field in DocType 'Material Request Plan
+#. Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "Qty In Stock"
+msgstr "재고 수량"
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:117
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:174
+msgid "Qty Per Unit"
+msgstr ""
+
+#. Label of the for_quantity (Float) field in DocType 'Job Card'
+#. Label of the qty (Float) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/bom/bom.js:405
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:82
+msgid "Qty To Manufacture"
+msgstr "생산할 수량"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
+msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
+msgid "Qty To Manufacture in the job card cannot be greater than Qty To Manufacture in the work order for the operation {0}. Solution: Either you can reduce the Qty To Manufacture in the job card or set the 'Overproduction Percentage For Work Order' in the {1}."
+msgstr ""
+
+#. Label of the qty_to_produce (Float) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Qty To Produce"
+msgstr "생산할 수량"
+
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:56
+msgid "Qty Wise Chart"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Asset
+#. Capitalization Service Item'
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+msgid "Qty and Rate"
+msgstr "수량 및 단가"
+
+#. Label of the tracking_section (Section Break) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Qty as Per Stock UOM"
+msgstr ""
+
+#. Label of the stock_qty (Float) field in DocType 'POS Invoice Item'
+#. Label of the stock_qty (Float) field in DocType 'Sales Invoice Item'
+#. Label of the stock_qty (Float) field in DocType 'Request for Quotation Item'
+#. Label of the stock_qty (Float) field in DocType 'Supplier Quotation Item'
+#. Label of the stock_qty (Float) field in DocType 'Quotation Item'
+#. Label of the stock_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the transfer_qty (Float) field in DocType 'Stock Entry Detail'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Qty as per Stock UOM"
+msgstr ""
+
+#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float)
+#. field in DocType 'Pricing Rule'
+#. Description of the 'Apply Recursion Over (As Per Transaction UOM)' (Float)
+#. field in DocType 'Promotional Scheme Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Qty for which recursion isn't applicable."
+msgstr "재귀 호출이 적용되지 않는 수량입니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
+msgid "Qty for {0}"
+msgstr "{0}의 수량"
+
+#. Label of the stock_qty (Float) field in DocType 'Purchase Order Item'
+#. Label of the stock_qty (Float) field in DocType 'Delivery Note Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:231
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+msgid "Qty in Stock UOM"
+msgstr "재고 수량 단위"
+
+#. Label of the for_qty (Float) field in DocType 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.js:201
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Qty of Finished Goods Item"
+msgstr "완제품 수량 품목"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:678
+msgid "Qty of Finished Goods Item should be greater than 0."
+msgstr "완제품 수량은 0보다 커야 합니다."
+
+#. Description of the 'Qty of Finished Goods Item' (Float) field in DocType
+#. 'Pick List'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+msgid "Qty of raw materials will be decided based on the qty of the Finished Goods Item"
+msgstr ""
+
+#. Label of the consumed_qty (Float) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+msgid "Qty to Be Consumed"
+msgstr "소비량"
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:268
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:283
+msgid "Qty to Bill"
+msgstr "청구할 수량"
+
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:133
+msgid "Qty to Build"
+msgstr "제작할 수량"
+
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:269
+msgid "Qty to Deliver"
+msgstr "배송할 수량"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:379
+msgid "Qty to Disassemble"
+msgstr "분해할 수량"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:385
+msgid "Qty to Fetch"
+msgstr "가져올 수량"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+msgid "Qty to Manufacture"
+msgstr "생산할 수량"
+
+#. Label of the qty (Float) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:168
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:259
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Qty to Order"
+msgstr "주문 수량"
+
+#. Label of the finished_good_qty (Float) field in DocType 'BOM Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:129
+msgid "Qty to Produce"
+msgstr "생산할 수량"
+
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:171
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:252
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:541
+msgid "Qty to Receive"
+msgstr "수령할 수량"
+
+#. Label of the qualification_tab (Section Break) field in DocType 'Lead'
+#. Label of the qualification (Data) field in DocType 'Employee Education'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/setup/doctype/employee_education/employee_education.json
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:2
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:438
+msgid "Qualification"
+msgstr "자격"
+
+#. Label of the qualification_status (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Qualification Status"
+msgstr "자격 상태"
+
+#. Option for the 'Qualification Status' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Qualified"
+msgstr "자격 있는"
+
+#. Label of the qualified_by (Link) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Qualified By"
+msgstr "자격 요건"
+
+#. Label of the qualified_on (Date) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Qualified on"
+msgstr "자격 요건을 충족함"
+
+#. Label of a Desktop Icon
+#. Name of a Workspace
+#. Label of the quality_tab (Tab Break) field in DocType 'Item'
+#. Label of the quality_tab (Tab Break) field in DocType 'Stock Settings'
+#. Title of a Workspace Sidebar
+#: erpnext/desktop_icon/quality.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/stock/doctype/batch/batch_dashboard.py:11
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality"
+msgstr "품질"
+
+#. Name of a DocType
+#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting
+#. Minutes'
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Action"
+msgstr "품질 조치"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
+msgid "Quality Action Resolution"
+msgstr "품질 조치 해결"
+
+#. Name of a DocType
+#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting
+#. Minutes'
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_feedback/quality_feedback.json
+#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Feedback"
+msgstr "품질 피드백"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_feedback_parameter/quality_feedback_parameter.json
+msgid "Quality Feedback Parameter"
+msgstr "품질 피드백 매개변수"
+
+#. Name of a DocType
+#. Label of a Link in the Quality Workspace
+#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json
+#: erpnext/quality_management/workspace/quality/quality.json
+msgid "Quality Feedback Template"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_feedback_template_parameter/quality_feedback_template_parameter.json
+msgid "Quality Feedback Template Parameter"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Goal"
+msgstr "품질 목표"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json
+msgid "Quality Goal Objective"
+msgstr "품질 목표 목적"
+
+#. Label of the quality_inspection (Link) field in DocType 'POS Invoice Item'
+#. Label of the quality_inspection (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the quality_inspection (Link) field in DocType 'Sales Invoice Item'
+#. Label of the quality_inspection_section_break (Section Break) field in
+#. DocType 'BOM'
+#. Label of the quality_inspection (Link) field in DocType 'Job Card'
+#. Label of the quality_inspection_section (Section Break) field in DocType
+#. 'Job Card'
+#. Label of a Link in the Quality Workspace
+#. Label of the quality_inspection (Link) field in DocType 'Delivery Note Item'
+#. Label of the quality_inspection (Link) field in DocType 'Purchase Receipt
+#. Item'
+#. Name of a DocType
+#. Group in Quality Inspection Template's connections
+#. Label of the quality_inspection (Link) field in DocType 'Stock Entry Detail'
+#. Label of a Link in the Stock Workspace
+#. Label of the quality_inspection (Link) field in DocType 'Subcontracting
+#. Receipt Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/manufacturing/doctype/bom/bom.js:274
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json
+msgid "Quality Inspection"
+msgstr "품질 검사"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:108
+msgid "Quality Inspection Analysis"
+msgstr "품질 검사 분석"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json
+msgid "Quality Inspection Parameter"
+msgstr "품질 검사 매개변수"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json
+msgid "Quality Inspection Parameter Group"
+msgstr "품질 검사 매개변수 그룹"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Quality Inspection Reading"
+msgstr "품질 검사 판독"
+
+#. Label of the inspection_required (Check) field in DocType 'BOM'
+#. Label of the quality_inspection_required (Check) field in DocType 'BOM
+#. Operation'
+#. Label of the quality_inspection_required (Check) field in DocType 'Work
+#. Order Operation'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Quality Inspection Required"
+msgstr "품질 검사 필요"
+
+#. Label of the quality_inspection_settings_section (Section Break) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Quality Inspection Settings"
+msgstr "품질 검사 설정"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Quality Inspection Summary"
+msgstr "품질 검사 요약"
+
+#. Label of the quality_inspection_template (Link) field in DocType 'BOM'
+#. Label of the quality_inspection_template (Link) field in DocType 'Job Card'
+#. Label of the quality_inspection_template (Link) field in DocType 'Operation'
+#. Label of the quality_inspection_template (Link) field in DocType 'Item'
+#. Label of the quality_inspection_template (Link) field in DocType 'Quality
+#. Inspection'
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/operation/operation.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/quality.json erpnext/workspace_sidebar/stock.json
+msgid "Quality Inspection Template"
+msgstr ""
+
+#. Label of the quality_inspection_template_name (Data) field in DocType
+#. 'Quality Inspection Template'
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+msgid "Quality Inspection Template Name"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
+msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
+msgid "Quality Inspection {0} is not submitted for the item: {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
+msgid "Quality Inspection {0} is rejected for the item: {1}"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:384
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:206
+msgid "Quality Inspection(s)"
+msgstr ""
+
+#. Label of a chart in the Quality Workspace
+#: erpnext/quality_management/workspace/quality/quality.json
+msgid "Quality Inspections"
+msgstr "품질 검사"
+
+#: erpnext/setup/doctype/company/company.py:508
+msgid "Quality Management"
+msgstr "품질 관리"
+
+#. Name of a role
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_activity/asset_activity.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_category/asset_category.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+msgid "Quality Manager"
+msgstr "품질 관리자"
+
+#. Name of a DocType
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_meeting/quality_meeting.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Meeting"
+msgstr "품질 회의"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_meeting_agenda/quality_meeting_agenda.json
+msgid "Quality Meeting Agenda"
+msgstr "품질 회의 의제"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json
+msgid "Quality Meeting Minutes"
+msgstr "품질 회의록"
+
+#. Name of a DocType
+#. Label of the quality_procedure_name (Data) field in DocType 'Quality
+#. Procedure'
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure_tree.js:10
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Procedure"
+msgstr "품질 절차"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json
+msgid "Quality Procedure Process"
+msgstr "품질 절차 프로세스"
+
+#. Option for the 'Document Type' (Select) field in DocType 'Quality Meeting
+#. Minutes'
+#. Name of a DocType
+#. Label of a Link in the Quality Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/quality_management/doctype/quality_meeting_minutes/quality_meeting_minutes.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/quality_management/workspace/quality/quality.json
+#: erpnext/workspace_sidebar/quality.json
+msgid "Quality Review"
+msgstr "품질 검토"
+
+#. Name of a DocType
+#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json
+msgid "Quality Review Objective"
+msgstr "품질 검토 목표"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:796
+msgid "Quantities updated successfully."
+msgstr "수량 업데이트가 완료되었습니다."
+
+#. Label of the qty (Data) field in DocType 'Opening Invoice Creation Tool
+#. Item'
+#. Label of the qty (Float) field in DocType 'POS Invoice Item'
+#. Label of the qty (Float) field in DocType 'Sales Invoice Item'
+#. Label of the qty (Int) field in DocType 'Subscription Plan Detail'
+#. Label of the stock_qty (Float) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the qty (Float) field in DocType 'Purchase Order Item'
+#. Label of the qty (Float) field in DocType 'Request for Quotation Item'
+#. Label of the qty (Float) field in DocType 'Supplier Quotation Item'
+#. Label of the qty (Float) field in DocType 'Blanket Order Item'
+#. Label of the qty (Float) field in DocType 'BOM Creator'
+#. Label of the section_break_4rxf (Section Break) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#. Label of the qty (Float) field in DocType 'Quotation Item'
+#. Label of the qty (Float) field in DocType 'Sales Order Item'
+#. Label of the qty (Float) field in DocType 'Delivery Note Item'
+#. Label of the qty (Float) field in DocType 'Material Request Item'
+#. Label of the quantity_section (Section Break) field in DocType 'Packing Slip
+#. Item'
+#. Label of the qty (Float) field in DocType 'Packing Slip Item'
+#. Label of the quantity_section (Section Break) field in DocType 'Pick List
+#. Item'
+#. Label of the quantity_section (Section Break) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the qty (Float) field in DocType 'Stock Reconciliation Item'
+#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order Item'
+#. Label of the quantity_section (Section Break) field in DocType
+#. 'Subcontracting Inward Order Item'
+#. Label of the qty (Float) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Label of the qty (Float) field in DocType 'Subcontracting Order Item'
+#. Label of the qty (Float) field in DocType 'Subcontracting Order Service
+#. Item'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:47
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:751
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:54
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:66
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:28
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:211
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/manufacturing/doctype/bom/bom.js:493
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:76
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/public/js/controllers/buying.js:613
+#: erpnext/public/js/stock_analytics.js:50
+#: erpnext/public/js/utils/serial_no_batch_selector.js:500
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:51
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:43
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:44
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:39
+#: erpnext/stock/dashboard/item_dashboard.js:248
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request/material_request.js:368
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:807
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:36
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:154
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:480
+#: erpnext/stock/report/stock_analytics/stock_analytics.js:27
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/templates/emails/reorder_item.html:10
+#: erpnext/templates/generators/bom.html:30
+#: erpnext/templates/pages/material_request_info.html:48
+#: erpnext/templates/pages/order.html:97
+msgid "Quantity"
+msgstr "수량"
+
+#. Description of the 'Packing Unit' (Int) field in DocType 'Item Price'
+#: erpnext/stock/doctype/item_price/item_price.json
+msgid "Quantity that must be bought or sold per UOM"
+msgstr ""
+
+#. Label of the quantity (Section Break) field in DocType 'Request for
+#. Quotation Item'
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+msgid "Quantity & Stock"
+msgstr "수량 및 재고"
+
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:53
+msgid "Quantity (A - B)"
+msgstr "수량 (A - B)"
+
+#. Label of the quantity (Float) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Quantity (Output Qty)"
+msgstr "수량 (출력 수량)"
+
+#. Label of the quantity_difference (Read Only) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Quantity Difference"
+msgstr "수량 차이"
+
+#. Label of the section_break_19 (Section Break) field in DocType 'Pricing
+#. Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Quantity and Amount"
+msgstr "수량 및 금액"
+
+#. Label of the section_break_9 (Section Break) field in DocType 'Production
+#. Plan Item'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+msgid "Quantity and Description"
+msgstr "수량 및 설명"
+
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Purchase
+#. Order Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the quantity_and_rate_section (Section Break) field in DocType
+#. 'Opportunity Item'
+#. Label of the quantity_and_rate_section (Section Break) field in DocType 'BOM
+#. Creator Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'BOM Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Job Card
+#. Secondary Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Quotation
+#. Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Sales Order
+#. Item'
+#. Label of the quantity_and_rate (Section Break) field in DocType 'Delivery
+#. Note Item'
+#. Label of the quantity_and_rate_section (Tab Break) field in DocType 'Serial
+#. and Batch Bundle'
+#. Label of the quantity_and_rate_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Quantity and Rate"
+msgstr "수량 및 비율"
+
+#. Label of the quantity_and_warehouse (Section Break) field in DocType
+#. 'Material Request Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+msgid "Quantity and Warehouse"
+msgstr "수량 및 창고"
+
+#: erpnext/stock/doctype/material_request/material_request.py:212
+msgid "Quantity cannot be greater than {0} for Item {1}"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:563
+msgid "Quantity is mandatory for the selected items."
+msgstr "선택한 품목의 수량은 필수 입력 사항입니다."
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:274
+msgid "Quantity is required"
+msgstr "수량이 필요합니다"
+
+#: erpnext/stock/dashboard/item_dashboard.js:285
+msgid "Quantity must be greater than zero"
+msgstr ""
+
+#: erpnext/stock/dashboard/item_dashboard.js:290
+msgid "Quantity must be less than or equal to {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
+#: erpnext/stock/doctype/pick_list/pick_list.js:209
+msgid "Quantity must not be more than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:780
+msgid "Quantity required for Item {0} in row {1}"
+msgstr "행 {1}의 품목 {0} 에 필요한 수량"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:724
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
+#: erpnext/manufacturing/doctype/workstation/workstation.js:303
+msgid "Quantity should be greater than 0"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
+msgid "Quantity to Manufacture"
+msgstr "생산 수량"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
+msgid "Quantity to Manufacture can not be zero for the operation {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
+msgid "Quantity to Manufacture must be greater than 0."
+msgstr "생산 수량은 0보다 커야 합니다."
+
+#: erpnext/public/js/utils/barcode_scanner.js:257
+msgid "Quantity to Scan"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Quart (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Quart Dry (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Quart Liquid (US)"
+msgstr ""
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
+msgid "Quarter {0} {1}"
+msgstr "분기 {0} {1}"
+
+#. Label of the query_route (Data) field in DocType 'Support Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Query Route String"
+msgstr "쿼리 경로 문자열"
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:192
+msgid "Queue Size should be between 5 and 100"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:625
+msgid "Quick Journal Entry"
+msgstr "간단한 일기 작성"
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:152
+msgid "Quick Ratio"
+msgstr "빠른 비율"
+
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Quick Stock Balance"
+msgstr "빠른 재고 잔액 확인"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Quintal"
+msgstr ""
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:22
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:28
+msgid "Quot Count"
+msgstr "인용 횟수"
+
+#: erpnext/crm/report/campaign_efficiency/campaign_efficiency.py:26
+#: erpnext/crm/report/lead_owner_efficiency/lead_owner_efficiency.py:32
+msgid "Quot/Lead %"
+msgstr "견적/리드 %"
+
+#. Option for the 'Document Type' (Select) field in DocType 'Contract'
+#. Label of the quotation_section (Section Break) field in DocType 'CRM
+#. Settings'
+#. Option for the 'Status' (Select) field in DocType 'Lead'
+#. Option for the 'Status' (Select) field in DocType 'Opportunity'
+#. Name of a DocType
+#. Label of the prevdoc_docname (Link) field in DocType 'Sales Order Item'
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:383
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:51
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.html:20
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+#: erpnext/crm/doctype/lead/lead.js:34 erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.js:108
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/report/lead_details/lead_details.js:37
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:38
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1229
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.js:49
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Quotation"
+msgstr "인용"
+
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:36
+msgid "Quotation Amount"
+msgstr "견적 금액"
+
+#. Name of a DocType
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+msgid "Quotation Item"
+msgstr "견적 항목"
+
+#. Name of a DocType
+#. Label of the order_lost_reason (Data) field in DocType 'Quotation Lost
+#. Reason'
+#. Label of the lost_reason (Link) field in DocType 'Quotation Lost Reason
+#. Detail'
+#: erpnext/setup/doctype/quotation_lost_reason/quotation_lost_reason.json
+#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json
+msgid "Quotation Lost Reason"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/quotation_lost_reason_detail/quotation_lost_reason_detail.json
+msgid "Quotation Lost Reason Detail"
+msgstr ""
+
+#. Label of the quotation_number (Data) field in DocType 'Supplier Quotation'
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+msgid "Quotation Number"
+msgstr "견적 번호"
+
+#. Label of the quotation_to (Link) field in DocType 'Quotation'
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Quotation To"
+msgstr "견적서"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/quotation_trends/quotation_trends.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Quotation Trends"
+msgstr "견적 동향"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
+msgid "Quotation {0} is cancelled"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
+msgid "Quotation {0} not of type {1}"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:351
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:57
+msgid "Quotations"
+msgstr ""
+
+#: erpnext/utilities/activation.py:87
+msgid "Quotations are proposals, bids you have sent to your customers"
+msgstr ""
+
+#: erpnext/templates/pages/rfq.html:73
+msgid "Quotations: "
+msgstr ""
+
+#. Label of the quote_status (Select) field in DocType 'Request for Quotation
+#. Supplier'
+#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json
+msgid "Quote Status"
+msgstr "견적 상태"
+
+#: erpnext/selling/report/quotation_trends/quotation_trends.py:57
+msgid "Quoted Amount"
+msgstr "견적 금액"
+
+#. Label of the rfq_and_purchase_order_settings_section (Section Break) field
+#. in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "RFQ and Purchase Order Settings"
+msgstr "견적 요청 및 구매 주문 설정"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:133
+msgid "RFQs are not allowed for {0} due to a scorecard standing of {1}"
+msgstr ""
+
+#. Label of the auto_indent (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Raise Material Request When Stock Reaches Re-order Level"
+msgstr ""
+
+#. Label of the complaint_raised_by (Data) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Raised By"
+msgstr "키워진"
+
+#. Label of the raised_by (Data) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Raised By (Email)"
+msgstr ""
+
+#. Label of the rate (Currency) field in DocType 'POS Invoice Item'
+#. Option for the 'Rate or Discount' (Select) field in DocType 'Pricing Rule'
+#. Label of the rate (Currency) field in DocType 'Pricing Rule'
+#. Option for the 'Discount Type' (Select) field in DocType 'Promotional Scheme
+#. Price Discount'
+#. Label of the rate (Currency) field in DocType 'Promotional Scheme Price
+#. Discount'
+#. Label of the free_item_rate (Currency) field in DocType 'Promotional Scheme
+#. Product Discount'
+#. Label of the rate (Currency) field in DocType 'Purchase Invoice Item'
+#. Label of the rate (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the rate (Currency) field in DocType 'Share Balance'
+#. Label of the rate (Currency) field in DocType 'Share Transfer'
+#. Label of the rate (Currency) field in DocType 'Asset Capitalization Service
+#. Item'
+#. Label of the rate (Currency) field in DocType 'Purchase Order Item'
+#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the rate (Currency) field in DocType 'Supplier Quotation Item'
+#. Label of the rate (Currency) field in DocType 'Opportunity Item'
+#. Label of the rate (Currency) field in DocType 'Blanket Order Item'
+#. Label of the rate (Currency) field in DocType 'BOM Creator Item'
+#. Label of the rate (Currency) field in DocType 'BOM Explosion Item'
+#. Label of the rate (Currency) field in DocType 'BOM Item'
+#. Label of the rate (Currency) field in DocType 'BOM Secondary Item'
+#. Label of the rate (Currency) field in DocType 'Work Order Item'
+#. Label of the rate (Float) field in DocType 'Product Bundle Item'
+#. Label of the rate (Currency) field in DocType 'Quotation Item'
+#. Label of the rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the price_list_rate (Currency) field in DocType 'Item Price'
+#. Label of the rate (Currency) field in DocType 'Landed Cost Item'
+#. Label of the rate (Currency) field in DocType 'Material Request Item'
+#. Label of the rate (Currency) field in DocType 'Packed Item'
+#. Label of the rate (Currency) field in DocType 'Purchase Receipt Item'
+#. Option for the 'Update Price List Based On' (Select) field in DocType 'Stock
+#. Settings'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order
+#. Received Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Order Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Order Service
+#. Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Order Supplied
+#. Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt Item'
+#. Label of the rate (Currency) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:78
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:266
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:320
+#: erpnext/accounts/report/share_ledger/share_ledger.py:56
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:67
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/public/js/utils.js:874
+#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:46
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:41
+#: erpnext/stock/dashboard/item_dashboard.js:255
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:155
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/templates/form_grid/item_grid.html:8
+#: erpnext/templates/pages/order.html:100 erpnext/templates/pages/rfq.html:43
+msgid "Rate"
+msgstr "비율"
+
+#. Label of the rate_amount_section (Section Break) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Rate & Amount"
+msgstr "비율 및 금액"
+
+#. Label of the base_rate (Currency) field in DocType 'POS Invoice Item'
+#. Label of the base_rate (Currency) field in DocType 'Purchase Invoice Item'
+#. Label of the base_rate (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the base_rate (Currency) field in DocType 'Purchase Order Item'
+#. Label of the base_rate (Currency) field in DocType 'Supplier Quotation Item'
+#. Label of the base_rate (Currency) field in DocType 'Opportunity Item'
+#. Label of the base_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the base_rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the base_rate (Currency) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Rate (Company Currency)"
+msgstr "환율 (회사 통화)"
+
+#. Label of the rm_cost_as_per (Select) field in DocType 'BOM'
+#. Label of the rm_cost_as_per (Select) field in DocType 'BOM Creator'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Rate Of Materials Based On"
+msgstr ""
+
+#. Label of the rate (Percent) field in DocType 'Lower Deduction Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Rate Of TDS As Per Certificate"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Serial and
+#. Batch Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+msgid "Rate Section"
+msgstr ""
+
+#. Label of the rate_with_margin (Currency) field in DocType 'POS Invoice Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Quotation Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Sales Order Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Delivery Note
+#. Item'
+#. Label of the rate_with_margin (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Rate With Margin"
+msgstr ""
+
+#. Label of the base_rate_with_margin (Currency) field in DocType 'POS Invoice
+#. Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales
+#. Invoice Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase
+#. Order Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Quotation
+#. Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Sales Order
+#. Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Delivery
+#. Note Item'
+#. Label of the base_rate_with_margin (Currency) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Rate With Margin (Company Currency)"
+msgstr "마진 포함 환율 (회사 통화 기준)"
+
+#. Label of the rate_and_amount (Section Break) field in DocType 'Purchase
+#. Receipt Item'
+#. Label of the rate_and_amount (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Rate and Amount"
+msgstr "비율 및 금액"
+
+#. Description of the 'Exchange Rate' (Float) field in DocType 'POS Invoice'
+#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Rate at which Customer Currency is converted to customer's base currency"
+msgstr "고객 통화를 고객의 기본 통화로 환산하는 환율"
+
+#. Description of the 'Price List Exchange Rate' (Float) field in DocType
+#. 'Quotation'
+#. Description of the 'Price List Exchange Rate' (Float) field in DocType
+#. 'Sales Order'
+#. Description of the 'Price List Exchange Rate' (Float) field in DocType
+#. 'Delivery Note'
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Rate at which Price list currency is converted to company's base currency"
+msgstr "가격표 통화를 회사 기준 통화로 환산하는 환율"
+
+#. Description of the 'Price List Exchange Rate' (Float) field in DocType 'POS
+#. Invoice'
+#. Description of the 'Price List Exchange Rate' (Float) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Rate at which Price list currency is converted to customer's base currency"
+msgstr "가격표 통화를 고객의 기본 통화로 변환하는 환율"
+
+#. Description of the 'Exchange Rate' (Float) field in DocType 'Quotation'
+#. Description of the 'Exchange Rate' (Float) field in DocType 'Sales Order'
+#. Description of the 'Exchange Rate' (Float) field in DocType 'Delivery Note'
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Rate at which customer's currency is converted to company's base currency"
+msgstr "고객의 통화를 회사의 기준 통화로 환산하는 환율"
+
+#. Description of the 'Exchange Rate' (Float) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Rate at which supplier's currency is converted to company's base currency"
+msgstr ""
+
+#. Description of the 'Tax Rate' (Float) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Rate at which this tax is applied"
+msgstr "이 세금이 적용되는 세율"
+
+#: erpnext/controllers/accounts_controller.py:3931
+msgid "Rate of '{}' items cannot be changed"
+msgstr ""
+
+#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset
+#. Depreciation Schedule'
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+msgid "Rate of Depreciation"
+msgstr ""
+
+#. Label of the rate_of_depreciation (Percent) field in DocType 'Asset Finance
+#. Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Rate of Depreciation (%)"
+msgstr ""
+
+#. Label of the rate_of_interest (Float) field in DocType 'Dunning'
+#. Label of the rate_of_interest (Float) field in DocType 'Dunning Type'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+msgid "Rate of Interest (%) Yearly"
+msgstr ""
+
+#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Invoice Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Order
+#. Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Delivery Note Item'
+#. Label of the stock_uom_rate (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Rate of Stock UOM"
+msgstr ""
+
+#. Label of the rate_or_discount (Select) field in DocType 'Pricing Rule'
+#. Label of the rate_or_discount (Data) field in DocType 'Pricing Rule Detail'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+msgid "Rate or Discount"
+msgstr "요금 또는 할인"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:184
+msgid "Rate or Discount is required for the price discount."
+msgstr "가격 할인을 받으려면 비율 또는 할인율이 필요합니다."
+
+#. Label of the rates (Table) field in DocType 'Tax Withholding Category'
+#. Label of the rates_section (Section Break) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Rates"
+msgstr "요금"
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:48
+msgid "Ratios"
+msgstr "비율"
+
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:52
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:46
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:216
+msgid "Raw Material"
+msgstr "원료"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:407
+msgid "Raw Material Code"
+msgstr "원자재 코드"
+
+#. Label of the raw_material_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Raw Material Cost"
+msgstr "원자재 비용"
+
+#. Label of the base_raw_material_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Raw Material Cost (Company Currency)"
+msgstr "원자재 비용(회사 통화 기준)"
+
+#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting
+#. Order Item'
+#. Label of the rm_cost_per_qty (Currency) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Raw Material Cost Per Qty"
+msgstr ""
+
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:132
+msgid "Raw Material Item"
+msgstr "원자재 품목"
+
+#. Label of the rm_item_code (Link) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the rm_item_code (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Raw Material Item Code"
+msgstr "원자재 품목 코드"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:414
+msgid "Raw Material Name"
+msgstr ""
+
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:112
+msgid "Raw Material Value"
+msgstr "원자재 가격"
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:36
+msgid "Raw Material Voucher No"
+msgstr "원자재 영수증 번호"
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.js:30
+msgid "Raw Material Voucher Type"
+msgstr "원자재 영수증 종류"
+
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.js:65
+msgid "Raw Material Warehouse"
+msgstr "원자재 창고"
+
+#. Label of the section_break_8 (Section Break) field in DocType 'Job Card'
+#. Label of the mr_items (Table) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/bom/bom.js:446
+#: erpnext/manufacturing/doctype/bom/bom.js:1078
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:462
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:379
+msgid "Raw Materials"
+msgstr "원자재"
+
+#. Label of the raw_materials_consumed_section (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Raw Materials Actions"
+msgstr "원자재 관련 조치"
+
+#. Label of the raw_material_details (Section Break) field in DocType 'Purchase
+#. Receipt'
+#. Label of the raw_material_details (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Raw Materials Consumed"
+msgstr "원자재 소비량"
+
+#. Label of the raw_materials_consumption_section (Section Break) field in
+#. DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Raw Materials Consumption"
+msgstr "원자재 소비량"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
+msgid "Raw Materials Missing"
+msgstr "원자재 부족"
+
+#. Label of the raw_materials_received_section (Section Break) field in DocType
+#. 'Subcontracting Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Raw Materials Required"
+msgstr "필요한 원자재"
+
+#. Label of the raw_materials_supplied (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the raw_materials_supplied_section (Section Break) field in DocType
+#. 'Subcontracting Order'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Raw Materials Supplied"
+msgstr "공급된 원자재"
+
+#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the rm_supp_cost (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the rm_supp_cost (Currency) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Raw Materials Supplied Cost"
+msgstr "원자재 공급 비용"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:772
+msgid "Raw Materials cannot be blank."
+msgstr "원자재 항목은 비워둘 수 없습니다."
+
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:136
+msgid "Raw Materials to Customer"
+msgstr "원자재부터 고객까지"
+
+#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
+#. in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Raw materials consumed qty will be validated based on FG BOM required qty"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
+#: erpnext/selling/doctype/sales_order/sales_order.js:1012
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:70
+#: erpnext/stock/doctype/material_request/material_request.js:243
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:116
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:163
+msgid "Re-open"
+msgstr "다시 열다"
+
+#. Label of the warehouse_reorder_level (Float) field in DocType 'Item Reorder'
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+msgid "Re-order Level"
+msgstr ""
+
+#. Label of the warehouse_reorder_qty (Float) field in DocType 'Item Reorder'
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+msgid "Re-order Qty"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.py:227
+msgid "Reached Root"
+msgstr "뿌리에 도달함"
+
+#. Label of the reading_1 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 1"
+msgstr "읽기 1"
+
+#. Label of the reading_10 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 10"
+msgstr "읽기 10"
+
+#. Label of the reading_2 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 2"
+msgstr "읽기 2"
+
+#. Label of the reading_3 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 3"
+msgstr "읽기 3"
+
+#. Label of the reading_4 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 4"
+msgstr "읽기 4"
+
+#. Label of the reading_5 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 5"
+msgstr "읽기 5"
+
+#. Label of the reading_6 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 6"
+msgstr "읽기 6"
+
+#. Label of the reading_7 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 7"
+msgstr "읽기 7"
+
+#. Label of the reading_8 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 8"
+msgstr "읽기 8"
+
+#. Label of the reading_9 (Data) field in DocType 'Quality Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading 9"
+msgstr "읽기 9"
+
+#. Label of the reading_value (Data) field in DocType 'Quality Inspection
+#. Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Reading Value"
+msgstr "읽기 값"
+
+#. Label of the readings (Table) field in DocType 'Quality Inspection'
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Readings"
+msgstr "읽기"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:40
+msgid "Real Estate"
+msgstr "부동산"
+
+#. Label of the hold_comment (Small Text) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:285
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Reason For Putting On Hold"
+msgstr "보류 사유"
+
+#. Label of the failed_reason (Data) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Reason for Failure"
+msgstr "실패 원인"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:660
+#: erpnext/selling/doctype/sales_order/sales_order.js:1841
+msgid "Reason for Hold"
+msgstr "보류 사유"
+
+#. Label of the reason_for_leaving (Small Text) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Reason for Leaving"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1856
+msgid "Reason for hold:"
+msgstr "보류 사유:"
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:93
+msgid "Rebuilding BTree for period ..."
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.js:26
+msgid "Recalculate Batch Qty"
+msgstr ""
+
+#: erpnext/stock/doctype/bin/bin.js:10
+msgid "Recalculate Bin Qty"
+msgstr ""
+
+#. Label of the recalculate_rate (Check) field in DocType 'Stock Ledger Entry'
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "Recalculate Incoming/Outgoing Rate"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement'
+#. Option for the 'Asset Status' (Select) field in DocType 'Serial No'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:24
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Receipt"
+msgstr "영수증"
+
+#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost
+#. Item'
+#. Label of the receipt_document (Dynamic Link) field in DocType 'Landed Cost
+#. Purchase Receipt'
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+msgid "Receipt Document"
+msgstr "영수증 문서"
+
+#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost
+#. Item'
+#. Label of the receipt_document_type (Select) field in DocType 'Landed Cost
+#. Purchase Receipt'
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+msgid "Receipt Document Type"
+msgstr "영수증 문서 유형"
+
+#. Label of the items (Table) field in DocType 'Landed Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Receipt Items"
+msgstr "영수증 품목"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Option for the 'Account Type' (Select) field in DocType 'Payment Ledger
+#. Entry'
+#. Option for the 'Account Type' (Select) field in DocType 'Party Type'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/report/account_balance/account_balance.js:55
+#: erpnext/setup/doctype/party_type/party_type.json
+msgid "Receivable"
+msgstr "받을 수 있는"
+
+#. Label of the receivable_payable_account (Link) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Receivable / Payable Account"
+msgstr "수취채권/지급채권 계정"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
+#: erpnext/accounts/report/sales_register/sales_register.py:217
+#: erpnext/accounts/report/sales_register/sales_register.py:271
+msgid "Receivable Account"
+msgstr ""
+
+#. Label of the receivable_payable_account (Link) field in DocType 'Process
+#. Payment Reconciliation'
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "Receivable/Payable Account"
+msgstr "수입/지급 계정"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:51
+msgid "Receivable/Payable Account: {0} doesn't belong to company {1}"
+msgstr ""
+
+#. Label of the invoiced_amount (Check) field in DocType 'Email Digest'
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/doctype/email_digest/email_digest.json
+#: erpnext/workspace_sidebar/invoicing.json
+msgid "Receivables"
+msgstr ""
+
+#. Option for the 'Payment Type' (Select) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:153
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:171
+msgid "Receive"
+msgstr "받다"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:120
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Receive from Customer"
+msgstr "고객으로부터 수령함"
+
+#. Label of the received_amount (Currency) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Received Amount"
+msgstr ""
+
+#. Label of the base_received_amount (Currency) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Received Amount (Company Currency)"
+msgstr ""
+
+#. Label of the received_amount_after_tax (Currency) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Received Amount After Tax"
+msgstr ""
+
+#. Label of the base_received_amount_after_tax (Currency) field in DocType
+#. 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Received Amount After Tax (Company Currency)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:965
+msgid "Received Amount cannot be greater than Paid Amount"
+msgstr ""
+
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:9
+msgid "Received From"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.json
+msgid "Received Items To Be Billed"
+msgstr "청구 예정 품목 수령"
+
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:8
+msgid "Received On"
+msgstr "수신일"
+
+#. Label of the received_qty (Float) field in DocType 'Purchase Invoice Item'
+#. Label of the received_qty (Float) field in DocType 'Purchase Order Item'
+#. Label of the received_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the received_qty (Float) field in DocType 'Delivery Note Item'
+#. Label of the received_qty (Float) field in DocType 'Material Request Item'
+#. Label of the received_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the received_qty (Float) field in DocType 'Subcontracting Order
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:77
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:247
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:170
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:245
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:135
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Received Qty"
+msgstr "수령 수량"
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:299
+msgid "Received Qty Amount"
+msgstr "수령 수량 금액"
+
+#. Label of the received_stock_qty (Float) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Received Qty in Stock UOM"
+msgstr ""
+
+#. Label of the received_qty (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:121
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:49
+#: erpnext/manufacturing/notification/material_request_receipt_notification/material_request_receipt_notification.html:9
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Received Quantity"
+msgstr "수령 수량"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:355
+msgid "Received Stock Entries"
+msgstr "수령한 재고 항목"
+
+#. Label of the received_and_accepted (Section Break) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the received_and_accepted (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Received and Accepted"
+msgstr "접수 및 승인됨"
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:427
+msgid "Received from"
+msgstr ""
+
+#. Label of the receiver_list (Code) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Receiver List"
+msgstr "수신자 목록"
+
+#: erpnext/selling/doctype/sms_center/sms_center.py:166
+msgid "Receiver List is empty. Please create Receiver List"
+msgstr ""
+
+#. Option for the 'Bank Guarantee Type' (Select) field in DocType 'Bank
+#. Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Receiving"
+msgstr "전수"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:260
+#: erpnext/selling/page/point_of_sale/pos_controller.js:270
+#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:19
+msgid "Recent Orders"
+msgstr "최근 주문"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:913
+msgid "Recent Transactions"
+msgstr "최근 거래 내역"
+
+#. Label of the recipient_and_message (Section Break) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Recipient Message And Payment Details"
+msgstr "수신자 메시지 및 결제 정보"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:677
+msgid "Recommended Action"
+msgstr "권장 조치"
+
+#. Label of the section_break_1 (Section Break) field in DocType 'Bank
+#. Reconciliation Tool'
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:871
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:105
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:106
+msgid "Reconcile"
+msgstr "조정하다"
+
+#. Label of the reconcile_all_serial_batch (Check) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Reconcile All Serial Nos / Batches"
+msgstr "모든 일련번호/배치를 대조합니다"
+
+#. Label of the reconcile_effect_on (Date) field in DocType 'Payment Entry
+#. Reference'
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+msgid "Reconcile Effect On"
+msgstr "조정 효과에 대한"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:363
+msgid "Reconcile Entries"
+msgstr "항목 대조"
+
+#. Label of the reconcile_on_advance_payment_date (Check) field in DocType
+#. 'Payment Entry'
+#. Label of the reconcile_on_advance_payment_date (Check) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Reconcile on Advance Payment Date"
+msgstr ""
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:221
+msgid "Reconcile the Bank Transaction"
+msgstr "은행 거래를 대조하세요"
+
+#. Option for the 'Status' (Select) field in DocType 'Bank Transaction'
+#. Label of the reconciled (Check) field in DocType 'Process Payment
+#. Reconciliation Log'
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation Log'
+#. Label of the reconciled (Check) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:140
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:413
+#: banking/src/components/features/BankReconciliation/utils.ts:259
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:10
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+msgid "Reconciled"
+msgstr ""
+
+#. Label of the reconciled_entries (Int) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Reconciled Entries"
+msgstr "조정된 항목"
+
+#. Option for the 'Posting Date Inheritance for Exchange Gain / Loss' (Select)
+#. field in DocType 'Accounts Settings'
+#. Option for the 'Reconciliation Takes Effect On' (Select) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Reconciliation Date"
+msgstr "조정 날짜"
+
+#. Label of the error_log (Long Text) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Reconciliation Error Log"
+msgstr "조정 오류 로그"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:54
+#: banking/src/components/features/ActionLog/ActionLog.tsx:59
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:54
+msgid "Reconciliation History"
+msgstr "화해의 역사"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation_dashboard.py:9
+msgid "Reconciliation Logs"
+msgstr "조정 로그"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.js:13
+msgid "Reconciliation Progress"
+msgstr "화해 진행 상황"
+
+#. Label of the reconciliation_queue_size (Int) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Reconciliation Queue Size"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/banking.json
+msgid "Reconciliation Statement"
+msgstr "조정 명세서"
+
+#. Label of the reconciliation_takes_effect_on (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Reconciliation Takes Effect On"
+msgstr "화해 발효일"
+
+#. Label of the reconciliation_type (Select) field in DocType 'Bank Transaction
+#. Payments'
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:84
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+msgid "Reconciliation Type"
+msgstr "조정 유형"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:871
+msgid "Reconciling"
+msgstr "화해"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:442
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:499
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:48
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:22
+msgid "Record Payment"
+msgstr "결제 내역"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:422
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:515
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:15
+msgid "Record a bank journal entry for expenses, income or split transactions"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:428
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:521
+msgid "Record a journal entry for expenses, income or split transactions"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:42
+msgid "Record a journal entry for expenses, income or split transactions."
+msgstr ""
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:23
+msgid "Record a payment against a customer or supplier"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:440
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:446
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:497
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:503
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:631
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:50
+msgid "Record a payment entry against a customer or supplier"
+msgstr ""
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:31
+msgid "Record a transfer between two bank accounts"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:459
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:465
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:533
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:539
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:633
+msgid "Record an internal transfer to another bank/credit card/cash account"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:42
+msgid "Record an internal transfer to another bank/credit card/cash account."
+msgstr "다른 은행/신용카드/현금 계좌로의 내부 이체를 기록합니다."
+
+#. Label of the recording_html (HTML) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Recording HTML"
+msgstr "HTML 녹화"
+
+#. Label of the recording_url (Data) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Recording URL"
+msgstr "URL을 기록하세요"
+
+#. Group in Quality Feedback Template's connections
+#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json
+msgid "Records"
+msgstr "기록"
+
+#: erpnext/regional/united_arab_emirates/utils.py:193
+msgid "Recoverable Standard Rated expenses should not be set when Reverse Charge Applicable is Y"
+msgstr ""
+
+#. Label of the recreate_stock_ledgers (Check) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Recreate Stock Ledgers"
+msgstr "재고 장부 재구성"
+
+#. Label of the recurse_for (Float) field in DocType 'Pricing Rule'
+#. Label of the recurse_for (Float) field in DocType 'Promotional Scheme
+#. Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Recurse Every (As Per Transaction UOM)"
+msgstr "(거래 단위에 따라) 매번 재귀 호출"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:240
+msgid "Recurse Over Qty cannot be less than 0"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:316
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:231
+msgid "Recursive Discounts with Mixed condition is not supported by the system"
+msgstr ""
+
+#. Label of the redeem_against (Link) field in DocType 'Loyalty Point Entry'
+#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
+msgid "Redeem Against"
+msgstr ""
+
+#. Label of the redeem_loyalty_points (Check) field in DocType 'POS Invoice'
+#. Label of the redeem_loyalty_points (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/page/point_of_sale/pos_payment.js:614
+msgid "Redeem Loyalty Points"
+msgstr "로열티 포인트 사용하기"
+
+#. Label of the redeemed_points (Int) field in DocType 'Loyalty Point Entry
+#. Redemption'
+#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json
+msgid "Redeemed Points"
+msgstr "사용한 포인트"
+
+#. Label of the redemption (Section Break) field in DocType 'Loyalty Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Redemption"
+msgstr "구원"
+
+#. Label of the loyalty_redemption_account (Link) field in DocType 'POS
+#. Invoice'
+#. Label of the loyalty_redemption_account (Link) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Redemption Account"
+msgstr "상환 계좌"
+
+#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'POS
+#. Invoice'
+#. Label of the loyalty_redemption_cost_center (Link) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Redemption Cost Center"
+msgstr "보상 비용 센터"
+
+#. Label of the redemption_date (Date) field in DocType 'Loyalty Point Entry
+#. Redemption'
+#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json
+msgid "Redemption Date"
+msgstr "사용일"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:310
+#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:63
+msgid "Ref"
+msgstr "참고"
+
+#. Label of the ref_code (Data) field in DocType 'Item Customer Detail'
+#: erpnext/stock/doctype/item_customer_detail/item_customer_detail.json
+msgid "Ref Code"
+msgstr "참조 코드"
+
+#: erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py:101
+msgid "Ref Date"
+msgstr "참조 날짜"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:236
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:303
+msgid "Ref."
+msgstr "참고."
+
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:155
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:82
+msgid "Reference #"
+msgstr "참조 #"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1036
+msgid "Reference #{0} dated {1}"
+msgstr "참조 #{0} 날짜 {1}"
+
+#: erpnext/public/js/controllers/transaction.js:2791
+msgid "Reference Date for Early Payment Discount"
+msgstr "조기 결제 할인 기준일"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:422
+msgid "Reference Date is required"
+msgstr ""
+
+#. Label of the reference_detail_no (Data) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Reference Detail No"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:659
+msgid "Reference Doctype must be one of {0}"
+msgstr ""
+
+#. Label of the reference_due_date (Date) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "Reference Due Date"
+msgstr "참고 마감일"
+
+#. Label of the ref_exchange_rate (Float) field in DocType 'Purchase Invoice
+#. Advance'
+#. Label of the ref_exchange_rate (Float) field in DocType 'Sales Invoice
+#. Advance'
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Reference Exchange Rate"
+msgstr "기준 환율"
+
+#. Label of the reference_no (Data) field in DocType 'Sales Invoice Payment'
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+msgid "Reference No"
+msgstr "참조 번호"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:650
+msgid "Reference No & Reference Date is required for {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1226
+msgid "Reference No and Reference Date is mandatory for Bank transaction"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:655
+msgid "Reference No is mandatory if you entered Reference Date"
+msgstr ""
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:265
+msgid "Reference No."
+msgstr ""
+
+#. Label of the reference_number (Small Text) field in DocType 'Bank
+#. Transaction'
+#. Label of the cheque_no (Data) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:83
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:130
+msgid "Reference Number"
+msgstr "참조 번호"
+
+#. Label of the reference_purchase_receipt (Link) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Reference Purchase Receipt"
+msgstr "참고 구매 영수증"
+
+#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation
+#. Allocation'
+#. Label of the reference_row (Data) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the reference_row (Data) field in DocType 'Process Payment
+#. Reconciliation Log Allocations'
+#. Label of the reference_row (Data) field in DocType 'Purchase Invoice
+#. Advance'
+#. Label of the reference_row (Data) field in DocType 'Sales Invoice Advance'
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Reference Row"
+msgstr "참조 행"
+
+#. Label of the row_id (Data) field in DocType 'Advance Taxes and Charges'
+#. Label of the row_id (Data) field in DocType 'Purchase Taxes and Charges'
+#. Label of the row_id (Data) field in DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Reference Row #"
+msgstr "참조 행 번호"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:846
+msgid "Reference date does not match the selected transaction"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:846
+msgid "Reference date matches the selected transaction"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:860
+msgid "Reference does not match the selected transaction"
+msgstr ""
+
+#. Label of the reference_for_reservation (Data) field in DocType 'Serial and
+#. Batch Entry'
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+msgid "Reference for Reservation"
+msgstr "예약 참고 자료"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:428
+msgid "Reference is required"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:860
+msgid "Reference matches the selected transaction"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:860
+msgid "Reference matches the selected transaction partially"
+msgstr ""
+
+#. Description of the 'Invoice Number' (Data) field in DocType 'Opening Invoice
+#. Creation Tool Item'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+msgid "Reference number of the invoice from the previous system"
+msgstr "이전 시스템의 송장 참조 번호"
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:142
+msgid "Reference: {0}, Item Code: {1} and Customer: {2}"
+msgstr ""
+
+#. Label of the edit_references (Section Break) field in DocType 'POS Invoice
+#. Item'
+#. Label of the references_section (Section Break) field in DocType 'POS
+#. Invoice Merge Log'
+#. Label of the edit_references (Section Break) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the references_section (Section Break) field in DocType 'Purchase
+#. Order Item'
+#. Label of the sb_references (Section Break) field in DocType 'Contract'
+#. Label of the references_section (Section Break) field in DocType 'Customer'
+#. Label of the references_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:10
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:15
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:14
+#: erpnext/accounts/doctype/share_type/share_type_dashboard.py:7
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan_dashboard.py:8
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/projects/doctype/timesheet/timesheet_dashboard.py:7
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "References"
+msgstr "참고 자료"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
+msgid "References to Sales Invoices are Incomplete"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
+msgid "References to Sales Orders are Incomplete"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:739
+msgid "References {0} of type {1} had no outstanding amount left before submitting the Payment Entry. Now they have a negative outstanding amount."
+msgstr "{0} 유형의 참조 {1} 에는 지급 전표를 제출하기 전에 미지급 금액이 없었습니다. 이제 미지급 금액이 마이너스가 되었습니다."
+
+#. Label of the referral_code (Data) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Referral Code"
+msgstr "추천 코드"
+
+#. Label of the referral_sales_partner (Link) field in DocType 'Quotation'
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Referral Sales Partner"
+msgstr "추천 판매 파트너"
+
+#: erpnext/accounts/doctype/bank/bank.js:18
+msgid "Refresh Plaid Link"
+msgstr ""
+
+#: erpnext/stock/reorder_item.py:390
+msgid "Regards,"
+msgstr "문안 인사,"
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.js:27
+msgid "Regenerate Stock Closing Entry"
+msgstr ""
+
+#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule
+#. Description Conditions'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:203
+#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
+msgid "Regex"
+msgstr ""
+
+#. Label of a Card Break in the Buying Workspace
+#: erpnext/buying/workspace/buying/buying.json
+msgid "Regional"
+msgstr "지역"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Registers"
+msgstr "등록"
+
+#. Label of the registration_details (Code) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Registration Details"
+msgstr "등록 정보"
+
+#. Option for the 'Cheque Size' (Select) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Regular"
+msgstr "정기적인"
+
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.py:214
+msgid "Rejected "
+msgstr "거절됨 "
+
+#. Label of the rejected_qty (Float) field in DocType 'Purchase Invoice Item'
+#. Label of the rejected_qty (Float) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Rejected Qty"
+msgstr "거부된 수량"
+
+#. Label of the rejected_qty (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Rejected Quantity"
+msgstr "불량 수량"
+
+#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the rejected_serial_no (Text) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the rejected_serial_no (Small Text) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Rejected Serial No"
+msgstr ""
+
+#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType
+#. 'Purchase Invoice Item'
+#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the rejected_serial_and_batch_bundle (Link) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Rejected Serial and Batch Bundle"
+msgstr ""
+
+#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice'
+#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt'
+#. Label of the rejected_warehouse (Link) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting
+#. Receipt'
+#. Label of the rejected_warehouse (Link) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Rejected Warehouse"
+msgstr "거부된 창고"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:671
+msgid "Rejected Warehouse and Accepted Warehouse cannot be same."
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:23
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:14
+#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:22
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:26
+msgid "Related"
+msgstr "관련된"
+
+#. Label of the relation (Data) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Relation"
+msgstr "관계"
+
+#. Label of the release_date (Date) field in DocType 'Purchase Invoice'
+#. Label of the release_date (Date) field in DocType 'Supplier'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:277
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:321
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1078
+msgid "Release Date"
+msgstr "출시일"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:318
+msgid "Release date must be in the future"
+msgstr ""
+
+#. Label of the relieving_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Relieving Date"
+msgstr "완화 날짜"
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:125
+msgid "Remaining"
+msgstr "남은"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:684
+msgid "Remaining Amount"
+msgstr "남은 금액"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
+msgid "Remaining Balance"
+msgstr "잔액"
+
+#. Label of the remark (Small Text) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:655
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/selling/page/point_of_sale/pos_payment.js:489
+msgid "Remark"
+msgstr "주목"
+
+#. Label of the remarks (Text) field in DocType 'GL Entry'
+#. Label of the remarks (Small Text) field in DocType 'Payment Entry'
+#. Label of the remarks (Text) field in DocType 'Payment Ledger Entry'
+#. Label of the remarks (Small Text) field in DocType 'Payment Reconciliation
+#. Payment'
+#. Label of the remarks (Small Text) field in DocType 'Period Closing Voucher'
+#. Label of the remarks (Small Text) field in DocType 'POS Invoice'
+#. Label of the remarks (Small Text) field in DocType 'Purchase Invoice'
+#. Label of the remarks (Text) field in DocType 'Purchase Invoice Advance'
+#. Label of the remarks (Small Text) field in DocType 'Sales Invoice'
+#. Label of the remarks (Text) field in DocType 'Sales Invoice Advance'
+#. Label of the remarks (Long Text) field in DocType 'Share Transfer'
+#. Label of the remarks (Text Editor) field in DocType 'BOM Creator'
+#. Label of the remarks_tab (Tab Break) field in DocType 'BOM Creator'
+#. Label of the remarks (Text) field in DocType 'Downtime Entry'
+#. Label of the remarks (Small Text) field in DocType 'Job Card'
+#. Label of the remarks (Small Text) field in DocType 'Installation Note'
+#. Label of the remarks (Small Text) field in DocType 'Purchase Receipt'
+#. Label of the remarks (Text) field in DocType 'Quality Inspection'
+#. Label of the remarks (Text) field in DocType 'Stock Entry'
+#. Label of the remarks (Small Text) field in DocType 'Subcontracting Receipt'
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:440
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:613
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:681
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1254
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:594
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:683
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation_payment/payment_reconciliation_payment.json
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:42
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:165
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:194
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:243
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:314
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/print_format/payment_receipt_voucher/payment_receipt_voucher.html:11
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:135
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:136
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
+#: 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:112
+#: erpnext/accounts/report/purchase_register/purchase_register.py:296
+#: erpnext/accounts/report/sales_register/sales_register.py:335
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:95
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Remarks"
+msgstr "비고"
+
+#. Label of the remarks_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Remarks Column Length"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:71
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:92
+msgid "Remarks:"
+msgstr "비고:"
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:130
+msgid "Remove Parent Row No in Items Table"
+msgstr "항목 테이블에서 상위 행 번호 제거"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:140
+msgid "Remove Zero Counts"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:21
+msgid "Remove item if charges is not applicable to that item"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:569
+msgid "Removed items with no change in quantity or value."
+msgstr "수량이나 가치에 변화가 없는 품목들을 제거했습니다."
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:161
+msgid "Removed {0} rows with zero document count. Please save to persist changes."
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:88
+msgid "Removing rows without exchange gain or loss"
+msgstr ""
+
+#. Description of the 'Allow Rename Attribute Value' (Check) field in DocType
+#. 'Item Variant Settings'
+#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
+msgid "Rename Attribute Value in Item Attribute."
+msgstr "항목 속성의 속성 값을 변경합니다."
+
+#. Label of the rename_log (HTML) field in DocType 'Rename Tool'
+#: erpnext/utilities/doctype/rename_tool/rename_tool.json
+msgid "Rename Log"
+msgstr "로그 이름 변경"
+
+#: erpnext/accounts/doctype/account/account.py:568
+msgid "Rename Not Allowed"
+msgstr "이름 변경은 허용되지 않습니다"
+
+#. Name of a DocType
+#: erpnext/utilities/doctype/rename_tool/rename_tool.json
+msgid "Rename Tool"
+msgstr "이름 변경 도구"
+
+#: erpnext/utilities/doctype/rename_tool/rename_tool.js:26
+msgid "Rename jobs for doctype {0} have been enqueued."
+msgstr ""
+
+#: erpnext/utilities/doctype/rename_tool/rename_tool.js:39
+msgid "Rename jobs for doctype {0} have not been enqueued."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:560
+msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/test_workstation.py:78
+#: erpnext/manufacturing/doctype/workstation/test_workstation.py:89
+#: erpnext/manufacturing/doctype/workstation/test_workstation.py:116
+#: erpnext/patches/v16_0/make_workstation_operating_components.py:49
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:316
+msgid "Rent"
+msgstr ""
+
+#. Option for the 'Permanent Address Is' (Select) field in DocType 'Employee'
+#. Option for the 'Current Address Is' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Rented"
+msgstr ""
+
+#. Label of the reorder_level (Float) field in DocType 'Material Request Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:64
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:213
+msgid "Reorder Level"
+msgstr ""
+
+#. Label of the reorder_qty (Float) field in DocType 'Material Request Item'
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:220
+msgid "Reorder Qty"
+msgstr ""
+
+#. Label of the reorder_levels (Table) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Reorder level based on Warehouse"
+msgstr ""
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:95
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Repack"
+msgstr ""
+
+#. Group in Asset's connections
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Repair"
+msgstr "수리하다"
+
+#. Label of the repair_cost (Currency) field in DocType 'Asset Repair'
+#. Label of the repair_cost (Currency) field in DocType 'Asset Repair Purchase
+#. Invoice'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/assets/doctype/asset_repair_purchase_invoice/asset_repair_purchase_invoice.json
+msgid "Repair Cost"
+msgstr "수리 비용"
+
+#. Label of the invoices (Table) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Repair Purchase Invoices"
+msgstr "수리 구매 송장"
+
+#. Label of the repair_status (Select) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Repair Status"
+msgstr "수리 상태"
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:37
+msgid "Repeat Customer Revenue"
+msgstr ""
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:22
+msgid "Repeat Customers"
+msgstr ""
+
+#. Label of the replace (Button) field in DocType 'BOM Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Replace"
+msgstr "바꾸다"
+
+#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log'
+#. Label of the replace_bom_section (Section Break) field in DocType 'BOM
+#. Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Replace BOM"
+msgstr "BOM 교체"
+
+#. Description of a DocType
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Replace a particular BOM in all other BOMs where it is used. It will replace the old BOM link, update cost and regenerate \"BOM Explosion Item\" table as per new BOM.\n"
+"It also updates latest price in all the BOMs."
+msgstr ""
+
+#. Label of the report_date (Date) field in DocType 'Quality Inspection'
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:120
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:121
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:75
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Report Date"
+msgstr "보고서 날짜"
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:225
+msgid "Report Error"
+msgstr "오류 보고"
+
+#. Label of the rows (Table) field in DocType 'Financial Report Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+msgid "Report Line Items"
+msgstr "보고서 항목"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:230
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:13
+#: erpnext/accounts/report/cash_flow/cash_flow.js:22
+#: erpnext/accounts/report/custom_financial_statement/custom_financial_statement.js:13
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:13
+msgid "Report Template"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:462
+msgid "Report Type is mandatory"
+msgstr ""
+
+#: erpnext/setup/install.py:248
+msgid "Report an Issue"
+msgstr "문제 신고하기"
+
+#. Label of the reporting_currency (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Reporting Currency"
+msgstr "보고 통화"
+
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:164
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:311
+msgid "Reporting Currency Exchange Not Found"
+msgstr ""
+
+#. Label of the reporting_currency_exchange_rate (Float) field in DocType
+#. 'Account Closing Balance'
+#. Label of the reporting_currency_exchange_rate (Float) field in DocType 'GL
+#. Entry'
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Reporting Currency Exchange Rate"
+msgstr "환율 보고"
+
+#. Label of the reports_to (Link) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Reports to"
+msgstr "보고 대상"
+
+#. Label of the repost_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Repost"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Repost Accounting Ledger"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json
+msgid "Repost Accounting Ledger Items"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/accounts_setup.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Repost Accounting Ledger Settings"
+msgstr "회계 원장 설정 다시 게시"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/repost_allowed_types/repost_allowed_types.json
+msgid "Repost Allowed Types"
+msgstr ""
+
+#. Label of the repost_error_log (Long Text) field in DocType 'Repost Payment
+#. Ledger'
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+msgid "Repost Error Log"
+msgstr "오류 로그 다시 게시"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Repost Item Valuation"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:367
+msgid "Repost Item Valuation restarted for selected failed records."
+msgstr ""
+
+#. Label of the repost_only_accounting_ledgers (Check) field in DocType 'Repost
+#. Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Repost Only Accounting Ledgers"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Repost Payment Ledger"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json
+msgid "Repost Payment Ledger Items"
+msgstr ""
+
+#. Label of the repost_status (Select) field in DocType 'Repost Payment Ledger'
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+msgid "Repost Status"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:149
+msgid "Repost has started in the background"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:40
+msgid "Repost in background"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.py:118
+msgid "Repost started in the background"
+msgstr ""
+
+#. Label of the reposting_data_file (Attach) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Reposting Data File"
+msgstr ""
+
+#. Label of the reposting_info_section (Section Break) field in DocType 'Repost
+#. Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Reposting Item and Warehouse"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:131
+msgid "Reposting Progress"
+msgstr ""
+
+#. Label of the reposting_reference (Data) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Reposting Reference"
+msgstr ""
+
+#. Label of the vouchers_based_on_item_and_warehouse_section (Section Break)
+#. field in DocType 'Repost Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Reposting Vouchers"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:149
+msgid "Reposting Vouchers Progress"
+msgstr ""
+
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:216
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:327
+msgid "Reposting entries created: {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:123
+msgid "Reposting for Item-Wh Completed {0}%"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:141
+msgid "Reposting for Vouchers Completed {0}%"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:109
+msgid "Reposting has been started in the background."
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:49
+msgid "Reposting in the background."
+msgstr ""
+
+#. Label of the represents_company (Link) field in DocType 'Purchase Invoice'
+#. Label of the represents_company (Link) field in DocType 'Sales Invoice'
+#. Label of the represents_company (Link) field in DocType 'Purchase Order'
+#. Label of the represents_company (Link) field in DocType 'Supplier'
+#. Label of the represents_company (Link) field in DocType 'Customer'
+#. Label of the represents_company (Link) field in DocType 'Sales Order'
+#. Label of the represents_company (Link) field in DocType 'Delivery Note'
+#. Label of the represents_company (Link) field in DocType 'Purchase Receipt'
+#. Label of the represents_company (Link) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Represents Company"
+msgstr "회사를 대표합니다"
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "Represents a Financial Year. All accounting entries and other major transactions are tracked against the Fiscal Year."
+msgstr ""
+
+#: erpnext/templates/form_grid/material_request_grid.html:25
+msgid "Reqd By Date"
+msgstr "필요 날짜"
+
+#. Label of the required_bom_qty (Float) field in DocType 'Material Request
+#. Plan Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "Reqd Qty (BOM)"
+msgstr "필요 수량 (BOM)"
+
+#: erpnext/public/js/utils.js:890
+msgid "Reqd by date"
+msgstr "필요한 날짜"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:489
+msgid "Reqired Qty"
+msgstr "필요 수량"
+
+#: erpnext/crm/doctype/opportunity/opportunity.js:89
+msgid "Request For Quotation"
+msgstr "견적 요청"
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Currency
+#. Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Request Parameters"
+msgstr "요청 매개변수"
+
+#. Label of the request_type (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Request Type"
+msgstr "요청 유형"
+
+#. Label of the warehouse (Link) field in DocType 'Item Reorder'
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+msgid "Request for"
+msgstr "요청"
+
+#. Option for the 'Request Type' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Request for Information"
+msgstr "정보 요청"
+
+#. Label of the request_for_quotation_tab (Tab Break) field in DocType 'Buying
+#. Settings'
+#. Name of a DocType
+#. Label of the request_for_quotation (Link) field in DocType 'Supplier
+#. Quotation Item'
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:46
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:270
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/stock/doctype/material_request/material_request.js:202
+#: erpnext/workspace_sidebar/buying.json
+msgid "Request for Quotation"
+msgstr "견적 요청"
+
+#. Name of a DocType
+#. Label of the request_for_quotation_item (Data) field in DocType 'Supplier
+#. Quotation Item'
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+msgid "Request for Quotation Item"
+msgstr "견적 요청 품목"
+
+#. Name of a DocType
+#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json
+msgid "Request for Quotation Supplier"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1136
+msgid "Request for Raw Materials"
+msgstr "원자재 요청"
+
+#. Option for the 'Status' (Select) field in DocType 'Payment Request'
+#. Option for the 'Advance Payment Status' (Select) field in DocType 'Sales
+#. Order'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Requested"
+msgstr "요청됨"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/requested_items_to_be_transferred/requested_items_to_be_transferred.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Requested Items To Be Transferred"
+msgstr "이송 요청 품목"
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Requested Items to Order and Receive"
+msgstr "주문 및 수령 요청 품목"
+
+#. Label of the requested_qty (Float) field in DocType 'Job Card'
+#. Label of the requested_qty (Float) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the requested_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the indented_qty (Float) field in DocType 'Bin'
+#. Label of the requested_qty (Float) field in DocType 'Packed Item'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:44
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:157
+msgid "Requested Qty"
+msgstr "요청 수량"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:202
+msgid "Requested Qty: Quantity requested for purchase, but not ordered."
+msgstr "요청 수량: 구매를 요청했으나 주문하지 않은 수량입니다."
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:46
+msgid "Requesting Site"
+msgstr "요청 사이트"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:53
+msgid "Requestor"
+msgstr ""
+
+#. Label of the schedule_date (Date) field in DocType 'Purchase Order'
+#. Label of the schedule_date (Date) field in DocType 'Purchase Order Item'
+#. Label of the schedule_date (Date) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the schedule_date (Date) field in DocType 'Material Request'
+#. Label of the schedule_date (Date) field in DocType 'Material Request Item'
+#. Label of the schedule_date (Date) field in DocType 'Purchase Receipt Item'
+#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order'
+#. Label of the schedule_date (Date) field in DocType 'Subcontracting Order
+#. Item'
+#. Label of the schedule_date (Date) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:201
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:191
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:532
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Required By"
+msgstr "필수 사항"
+
+#. Label of the schedule_date (Date) field in DocType 'Request for Quotation'
+#. Label of the schedule_date (Date) field in DocType 'Request for Quotation
+#. Item'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+msgid "Required Date"
+msgstr "필수 날짜"
+
+#. Label of the section_break_ndpq (Section Break) field in DocType 'Work
+#. Order'
+#. Label of the received_items (Table) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Required Items"
+msgstr "필수 품목"
+
+#: erpnext/templates/form_grid/material_request_grid.html:7
+msgid "Required On"
+msgstr "필수 항목"
+
+#. Label of the required_qty (Float) field in DocType 'Job Card Item'
+#. Label of the quantity (Float) field in DocType 'Material Request Plan Item'
+#. Label of the required_qty (Float) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the required_qty (Float) field in DocType 'Work Order Item'
+#. Label of the required_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the required_qty (Float) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the required_qty (Float) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:143
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:119
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:58
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1058
+#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:426
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:139
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Required Qty"
+msgstr "필요 수량"
+
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:43
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:36
+msgid "Required Quantity"
+msgstr "필요 수량"
+
+#. Label of the requirement (Data) field in DocType 'Contract Fulfilment
+#. Checklist'
+#. Label of the requirement (Data) field in DocType 'Contract Template
+#. Fulfilment Terms'
+#: erpnext/crm/doctype/contract_fulfilment_checklist/contract_fulfilment_checklist.json
+#: erpnext/crm/doctype/contract_template_fulfilment_terms/contract_template_fulfilment_terms.json
+msgid "Requirement"
+msgstr "요구 사항"
+
+#. Label of the requires_fulfilment (Check) field in DocType 'Contract'
+#. Label of the requires_fulfilment (Check) field in DocType 'Contract
+#. Template'
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/crm/doctype/contract_template/contract_template.json
+msgid "Requires Fulfilment"
+msgstr "이행이 필요합니다"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:263
+msgid "Research"
+msgstr "연구"
+
+#: erpnext/setup/doctype/company/company.py:514
+msgid "Research & Development"
+msgstr "연구 개발"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:27
+msgid "Researcher"
+msgstr "연구원"
+
+#. Description of the 'Supplier Primary Address' (Link) field in DocType
+#. 'Supplier'
+#. Description of the 'Customer Primary Address' (Link) field in DocType
+#. 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Reselect, if the chosen address is edited after save"
+msgstr ""
+
+#. Description of the 'Supplier Primary Contact' (Link) field in DocType
+#. 'Supplier'
+#. Description of the 'Customer Primary Contact' (Link) field in DocType
+#. 'Customer'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Reselect, if the chosen contact is edited after save"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:7
+msgid "Reseller"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.js:47
+msgid "Resend Payment Email"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:13
+msgid "Reservation"
+msgstr "예약"
+
+#. Label of the reservation_based_on (Select) field in DocType 'Stock
+#. Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:118
+msgid "Reservation Based On"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
+#: erpnext/selling/doctype/sales_order/sales_order.js:107
+#: erpnext/stock/doctype/pick_list/pick_list.js:153
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
+msgid "Reserve"
+msgstr "예약하다"
+
+#. Label of the reserve_stock (Check) field in DocType 'Production Plan'
+#. Label of the reserve_stock (Check) field in DocType 'Work Order'
+#. Label of the reserve_stock (Check) field in DocType 'Sales Order'
+#. Label of the reserve_stock (Check) field in DocType 'Sales Order Item'
+#. Label of the reserve_stock (Check) field in DocType 'Packed Item'
+#. Label of the reserve_stock (Check) field in DocType 'Subcontracting Order'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/public/js/stock_reservation.js:15
+#: erpnext/selling/doctype/sales_order/sales_order.js:408
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:277
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Reserve Stock"
+msgstr "예비 재고"
+
+#. Label of the reserve_warehouse (Link) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+msgid "Reserve Warehouse"
+msgstr "예비 창고"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:287
+msgid "Reserve for Raw Materials"
+msgstr "원자재 비축"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:261
+msgid "Reserve for Sub-assembly"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Reserved"
+msgstr "예약된"
+
+#: erpnext/controllers/stock_controller.py:1330
+msgid "Reserved Batch Conflict"
+msgstr "예약 배치 충돌"
+
+#. Label of the reserved_inventory_section (Section Break) field in DocType
+#. 'Bin'
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Reserved Inventory"
+msgstr "예약 재고"
+
+#. Label of the reserved_qty (Float) field in DocType 'Bin'
+#. Label of the reserved_qty (Float) field in DocType 'Stock Reservation Entry'
+#. Label of the stock_reserved_qty (Float) field in DocType 'Subcontracting
+#. Order Supplied Item'
+#: erpnext/manufacturing/doctype/plant_floor/stock_summary_template.html:29
+#: erpnext/stock/dashboard/item_dashboard_list.html:20
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:124
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:171
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+msgid "Reserved Qty"
+msgstr "예약 수량"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:263
+msgid "Reserved Qty ({0}) cannot be a fraction. To allow this, disable '{1}' in UOM {3}."
+msgstr ""
+
+#. Label of the reserved_qty_for_production (Float) field in DocType 'Material
+#. Request Plan Item'
+#. Label of the reserved_qty_for_production (Float) field in DocType 'Bin'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Reserved Qty for Production"
+msgstr "생산 예약 수량"
+
+#. Label of the reserved_qty_for_production_plan (Float) field in DocType 'Bin'
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Reserved Qty for Production Plan"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:211
+msgid "Reserved Qty for Production: Raw materials quantity to make manufacturing items."
+msgstr "생산 예약 수량: 제조 품목을 만드는 데 필요한 원자재 수량."
+
+#. Label of the reserved_qty_for_sub_contract (Float) field in DocType 'Bin'
+#: erpnext/stock/doctype/bin/bin.json
+msgid "Reserved Qty for Subcontract"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:214
+msgid "Reserved Qty for Subcontract: Raw materials quantity to make subcontracted items."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:655
+msgid "Reserved Qty should be greater than Delivered Qty."
+msgstr "예약 수량은 납품 수량보다 많아야 합니다."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:208
+msgid "Reserved Qty: Quantity ordered for sale, but not delivered."
+msgstr ""
+
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:116
+msgid "Reserved Quantity"
+msgstr "예약 수량"
+
+#: erpnext/stock/report/item_shortage_report/item_shortage_report.py:123
+msgid "Reserved Quantity for Production"
+msgstr "생산 예약 수량"
+
+#: erpnext/stock/stock_ledger.py:2306
+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:941
+#: erpnext/public/js/stock_reservation.js:236
+#: erpnext/selling/doctype/sales_order/sales_order.js:128
+#: erpnext/selling/doctype/sales_order/sales_order.js:495
+#: erpnext/stock/dashboard/item_dashboard_list.html:15
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/pick_list/pick_list.js:173
+#: erpnext/stock/report/reserved_stock/reserved_stock.json
+#: erpnext/stock/report/stock_balance/stock_balance.py:576
+#: erpnext/stock/stock_ledger.py:2290
+#: 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:2335
+msgid "Reserved Stock for Batch"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:301
+msgid "Reserved Stock for Raw Materials"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:275
+msgid "Reserved Stock for Sub-assembly"
+msgstr ""
+
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:199
+msgid "Reserved for POS Transactions"
+msgstr ""
+
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:178
+msgid "Reserved for Production"
+msgstr ""
+
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:185
+msgid "Reserved for Production Plan"
+msgstr ""
+
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:192
+msgid "Reserved for Sub Contracting"
+msgstr "하도급 업체 전용"
+
+#: erpnext/stock/page/stock_balance/stock_balance.js:53
+msgid "Reserved for manufacturing"
+msgstr ""
+
+#: erpnext/stock/page/stock_balance/stock_balance.js:52
+msgid "Reserved for sale"
+msgstr "판매 예약됨"
+
+#: erpnext/stock/page/stock_balance/stock_balance.js:54
+msgid "Reserved for sub contracting"
+msgstr ""
+
+#: erpnext/public/js/stock_reservation.js:203
+#: erpnext/selling/doctype/sales_order/sales_order.js:421
+#: erpnext/stock/doctype/pick_list/pick_list.js:298
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:292
+msgid "Reserving Stock..."
+msgstr "주식 예약 중..."
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:172
+msgid "Reset Clearing Date"
+msgstr "초기화 날짜"
+
+#. Label of the reset_company_default_values_status (Select) field in DocType
+#. 'Transaction Deletion Record'
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Reset Company Default Values"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:19
+msgid "Reset Plaid Link"
+msgstr ""
+
+#. Label of the reset_raw_materials_table (Button) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Reset Raw Materials Table"
+msgstr "원자재 테이블 초기화"
+
+#. Label of the reset_service_level_agreement (Button) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.js:48
+#: erpnext/support/doctype/issue/issue.json
+msgid "Reset Service Level Agreement"
+msgstr ""
+
+#: erpnext/support/doctype/issue/issue.js:65
+msgid "Resetting Service Level Agreement."
+msgstr ""
+
+#. Label of the resignation_letter_date (Date) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Resignation Letter Date"
+msgstr "사직서 제출일"
+
+#. Label of the sb_00 (Section Break) field in DocType 'Quality Action'
+#. Label of the resolution (Text Editor) field in DocType 'Quality Action
+#. Resolution'
+#. Label of the resolution_section (Section Break) field in DocType 'Warranty
+#. Claim'
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Resolution"
+msgstr "해결"
+
+#. Label of the sla_resolution_by (Datetime) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Resolution By"
+msgstr "결의안"
+
+#. Label of the sla_resolution_date (Datetime) field in DocType 'Issue'
+#. Label of the resolution_date (Datetime) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Resolution Date"
+msgstr "결의일"
+
+#. Label of the section_break_19 (Section Break) field in DocType 'Issue'
+#. Label of the resolution_details (Text Editor) field in DocType 'Issue'
+#. Label of the resolution_details (Text) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Resolution Details"
+msgstr "해상도 세부 정보"
+
+#. Option for the 'Service Level Agreement Status' (Select) field in DocType
+#. 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Resolution Due"
+msgstr "결의안"
+
+#. Label of the resolution_time (Duration) field in DocType 'Issue'
+#. Label of the resolution_time (Duration) field in DocType 'Service Level
+#. Priority'
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/service_level_priority/service_level_priority.json
+msgid "Resolution Time"
+msgstr "해상도 시간"
+
+#. Label of the resolutions (Table) field in DocType 'Quality Action'
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+msgid "Resolutions"
+msgstr "결의안"
+
+#: erpnext/accounts/doctype/dunning/dunning.js:45
+msgid "Resolve"
+msgstr "해결하다"
+
+#. Option for the 'Status' (Select) field in DocType 'Dunning'
+#. Option for the 'Status' (Select) field in DocType 'Non Conformance'
+#. Option for the 'Status' (Select) field in DocType 'Issue'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning/dunning_list.js:4
+#: erpnext/quality_management/doctype/non_conformance/non_conformance.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/report/issue_analytics/issue_analytics.js:57
+#: erpnext/support/report/issue_summary/issue_summary.js:45
+#: erpnext/support/report/issue_summary/issue_summary.py:378
+msgid "Resolved"
+msgstr "해결됨"
+
+#. Label of the resolved_by (Link) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Resolved By"
+msgstr "해결됨"
+
+#. Label of the response_by (Datetime) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Response By"
+msgstr ""
+
+#. Label of the response (Section Break) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Response Details"
+msgstr "응답 세부 정보"
+
+#. Label of the response_key_list (Data) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Response Key List"
+msgstr "응답 키 목록"
+
+#. Label of the response_options_sb (Section Break) field in DocType 'Support
+#. Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Response Options"
+msgstr "응답 옵션"
+
+#. Label of the response_result_key_path (Data) field in DocType 'Support
+#. Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Response Result Key Path"
+msgstr "응답 결과 키 경로"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:99
+msgid "Response Time for {0} priority in row {1} can't be greater than Resolution Time."
+msgstr "행 {1} 의 {0} 우선순위에 대한 응답 시간은 해결 시간보다 클 수 없습니다."
+
+#. Label of the response_and_resolution_time_section (Section Break) field in
+#. DocType 'Service Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Response and Resolution"
+msgstr "대응 및 해결"
+
+#. Label of the responsible (Link) field in DocType 'Quality Action Resolution'
+#: erpnext/quality_management/doctype/quality_action_resolution/quality_action_resolution.json
+msgid "Responsible"
+msgstr "책임이 있는"
+
+#: erpnext/setup/setup_wizard/operations/defaults_setup.py:108
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:158
+msgid "Rest Of The World"
+msgstr "나머지 세계"
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:90
+msgid "Restart"
+msgstr ""
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation_list.js:23
+msgid "Restart Failed Entries"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.js:54
+msgid "Restart Subscription"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:178
+msgid "Restore Asset"
+msgstr "자산 복원"
+
+#. Option for the 'Allow Or Restrict Dimension' (Select) field in DocType
+#. 'Accounting Dimension Filter'
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.json
+msgid "Restrict"
+msgstr "얽매다"
+
+#. Label of the restrict_based_on (Select) field in DocType 'Party Specific
+#. Item'
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+msgid "Restrict Items Based On"
+msgstr ""
+
+#. Label of the section_break_6 (Section Break) field in DocType 'Shipping
+#. Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Restrict to Countries"
+msgstr "국가 제한"
+
+#. Label of the result_key (Table) field in DocType 'Currency Exchange
+#. Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Result Key"
+msgstr "결과 키"
+
+#. Label of the result_preview_field (Data) field in DocType 'Support Search
+#. Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Result Preview Field"
+msgstr ""
+
+#. Label of the result_route_field (Data) field in DocType 'Support Search
+#. Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Result Route Field"
+msgstr "결과 경로 필드"
+
+#. Label of the result_title_field (Data) field in DocType 'Support Search
+#. Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Result Title Field"
+msgstr "결과 제목 필드"
+
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.js:43
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:320
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:63
+#: erpnext/selling/doctype/sales_order/sales_order.js:998
+msgid "Resume"
+msgstr "재개하다"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
+msgid "Resume Job"
+msgstr "이력서 제출"
+
+#: erpnext/projects/doctype/timesheet/timesheet.js:65
+msgid "Resume Timer"
+msgstr "타이머 재개"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:41
+msgid "Retail & Wholesale"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/sales_partner_type.txt:5
+msgid "Retailer"
+msgstr "소매업체"
+
+#. Label of the retain_sample (Check) field in DocType 'Item'
+#. Label of the retain_sample (Check) field in DocType 'Purchase Receipt Item'
+#. Label of the retain_sample (Check) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Retain Sample"
+msgstr "샘플을 보관하세요"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+msgid "Retained Earnings"
+msgstr ""
+
+#. Label of the retried (Int) field in DocType 'Bulk Transaction Log Detail'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "Retried"
+msgstr ""
+
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:27
+msgid "Retry Failed Transactions"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Delivery Note'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:79
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:286
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:16
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:15
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:138
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:167
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:175
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Return"
+msgstr "반품"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:111
+msgid "Return / Credit Note"
+msgstr "반품/환불 영수증"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:131
+msgid "Return / Debit Note"
+msgstr "반환/차변 전표"
+
+#. Label of the return_against (Link) field in DocType 'POS Invoice'
+#. Label of the return_against (Link) field in DocType 'POS Invoice Reference'
+#. Label of the return_against (Link) field in DocType 'Sales Invoice'
+#. Label of the return_against (Link) field in DocType 'Sales Invoice
+#. Reference'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_invoice_reference/pos_invoice_reference.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+msgid "Return Against"
+msgstr "수익률"
+
+#. Label of the return_against (Link) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Return Against Delivery Note"
+msgstr "반품 배송 확인서"
+
+#. Label of the return_against (Link) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Return Against Purchase Invoice"
+msgstr "구매 송장에 대한 반품"
+
+#. Label of the return_against (Link) field in DocType 'Purchase Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Return Against Purchase Receipt"
+msgstr "구매 영수증에 대한 반품"
+
+#. Label of the return_against (Link) field in DocType 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Return Against Subcontracting Receipt"
+msgstr "하도급 영수증에 대한 반환"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
+msgid "Return Components"
+msgstr "반환 구성 요소"
+
+#. Option for the 'Status' (Select) field in DocType 'Delivery Note'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Receipt'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:20
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:19
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Return Issued"
+msgstr "반품 발행됨"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:327
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:127
+msgid "Return Qty"
+msgstr "반품 수량"
+
+#. Label of the return_qty_from_rejected_warehouse (Check) field in DocType
+#. 'Purchase Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:303
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:103
+msgid "Return Qty from Rejected Warehouse"
+msgstr ""
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:126
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Return Raw Material to Customer"
+msgstr "원자재를 고객에게 반환"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
+msgid "Return invoice of asset cancelled"
+msgstr "자산 반환 송장 취소됨"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:82
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:592
+msgid "Return of Components"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:173
+msgid "Return on Asset Ratio"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:174
+msgid "Return on Equity Ratio"
+msgstr ""
+
+#. Option for the 'Tracking Status' (Select) field in DocType 'Shipment'
+#. Option for the 'Status' (Select) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:139
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Returned"
+msgstr ""
+
+#. Label of the returned_against (Data) field in DocType 'Serial and Batch
+#. Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Returned Against"
+msgstr ""
+
+#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:58
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:58
+msgid "Returned Amount"
+msgstr "반환 금액"
+
+#. Label of the returned_qty (Float) field in DocType 'Purchase Order Item'
+#. Label of the returned_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Item'
+#. Label of the returned_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order
+#. Item'
+#. Label of the returned_qty (Float) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the returned_qty (Float) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:146
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:154
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Returned Qty"
+msgstr "반품 수량"
+
+#. Label of the returned_qty (Float) field in DocType 'Work Order Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Returned Qty "
+msgstr "반품 수량 "
+
+#. Label of the returned_qty (Float) field in DocType 'Delivery Note Item'
+#. Label of the returned_qty (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Returned Qty in Stock UOM"
+msgstr "반품 수량 재고 단위"
+
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:43
+msgid "Returned Quantity"
+msgstr "반품 수량"
+
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.py:101
+msgid "Returned exchange rate is neither integer not float."
+msgstr ""
+
+#. Label of the returns (Float) field in DocType 'Cashier Closing'
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:25
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:35
+#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:24
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:33
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt_dashboard.py:27
+msgid "Returns"
+msgstr "보고"
+
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:151
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:113
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:183
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:141
+msgid "Revaluation Journals"
+msgstr "재평가 저널"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
+msgid "Revaluation Surplus"
+msgstr "재평가 잉여금"
+
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:88
+msgid "Revenue"
+msgstr "수익"
+
+#. Description of the 'Deferred Revenue Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Revenue received in advance (e.g. annual subscription) is held here and recognized gradually over time"
+msgstr ""
+
+#. Label of the reversal_of (Link) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Reversal Of"
+msgstr "반전"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:100
+msgid "Reverse Journal Entry"
+msgstr ""
+
+#. Label of the reverse_sign (Check) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Reverse Sign"
+msgstr "반전 부호"
+
+#. Label of the review (Link) field in DocType 'Quality Action'
+#. Group in Quality Goal's connections
+#. Label of the sb_00 (Section Break) field in DocType 'Quality Review'
+#. Group in Quality Review's connections
+#. Label of the review (Text Editor) field in DocType 'Quality Review
+#. Objective'
+#. Label of the sb_00 (Section Break) field in DocType 'Quality Review
+#. Objective'
+#. Name of a report
+#: erpnext/quality_management/doctype/quality_action/quality_action.json
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json
+#: erpnext/quality_management/report/review/review.json
+msgid "Review"
+msgstr "검토"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review Accounts Settings'
+#: erpnext/accounts/onboarding_step/review_accounts_settings/review_accounts_settings.json
+msgid "Review Accounts Settings"
+msgstr "계정 설정 검토"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review Buying Settings'
+#: erpnext/buying/onboarding_step/review_buying_settings/review_buying_settings.json
+msgid "Review Buying Settings"
+msgstr "구매 설정 검토"
+
+#. Title of an Onboarding Step
+#: erpnext/accounts/onboarding_step/chart_of_accounts/chart_of_accounts.json
+msgid "Review Chart of Accounts"
+msgstr ""
+
+#. Label of the review_date (Date) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Review Date"
+msgstr "검토 날짜"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review Manufacturing Settings'
+#: erpnext/manufacturing/onboarding_step/review_manufacturing_settings/review_manufacturing_settings.json
+msgid "Review Manufacturing Settings"
+msgstr "제조 설정 검토"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review Selling Settings'
+#: erpnext/selling/onboarding_step/review_selling_settings/review_selling_settings.json
+msgid "Review Selling Settings"
+msgstr "판매 설정 검토"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review Stock Settings'
+#: erpnext/stock/onboarding_step/review_stock_settings/review_stock_settings.json
+msgid "Review Stock Settings"
+msgstr "주식 설정 검토"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Review System Settings'
+#: erpnext/setup/onboarding_step/review_system_settings/review_system_settings.json
+msgid "Review System Settings"
+msgstr "시스템 설정 검토"
+
+#. Label of a Card Break in the Quality Workspace
+#: erpnext/quality_management/workspace/quality/quality.json
+msgid "Review and Action"
+msgstr "검토 및 조치"
+
+#. Group in Quality Procedure's connections
+#. Label of the reviews (Table) field in DocType 'Quality Review'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+#: erpnext/quality_management/doctype/quality_review/quality_review.json
+msgid "Reviews"
+msgstr "리뷰"
+
+#: erpnext/accounts/doctype/budget/budget.js:37
+msgid "Revise Budget"
+msgstr "예산 수정"
+
+#. Label of the revision_of (Data) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+msgid "Revision Of"
+msgstr "수정"
+
+#: erpnext/accounts/doctype/budget/budget.js:98
+msgid "Revision cancelled"
+msgstr "수정 취소됨"
+
+#. Label of the rgt (Int) field in DocType 'Account'
+#. Label of the rgt (Int) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Rgt"
+msgstr "Rgt"
+
+#. Label of the right_child (Link) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Right Child"
+msgstr "올바른 아이"
+
+#. Label of the rgt (Int) field in DocType 'Quality Procedure'
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.json
+msgid "Right Index"
+msgstr "오른쪽 인덱스"
+
+#. Option for the 'Status' (Select) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Ringing"
+msgstr "울리는"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Rod"
+msgstr "막대"
+
+#. Label of the role_allowed_to_create_edit_back_dated_transactions (Link)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Role Allowed to Create/Edit Back-dated Transactions"
+msgstr "과거 거래 내역을 생성/편집할 수 있는 역할"
+
+#. Label of the stock_auth_role (Link) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Role Allowed to Edit Frozen Stock"
+msgstr ""
+
+#. Label of the role_allowed_to_over_bill (Link) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Role Allowed to Over Bill "
+msgstr "역할이 청구서를 초과하도록 허용됨 "
+
+#. Label of the role_allowed_to_over_deliver_receive (Link) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Role Allowed to Over Deliver/Receive"
+msgstr ""
+
+#. Label of the role_to_override_stop_action (Link) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Role Allowed to Override Stop Action"
+msgstr ""
+
+#. Label of the credit_controller (Link) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Role allowed to bypass Credit Limit"
+msgstr ""
+
+#. Description of the 'Exempted Role' (Link) field in DocType 'Accounting
+#. Period'
+#: erpnext/accounts/doctype/accounting_period/accounting_period.json
+msgid "Role allowed to bypass period restrictions."
+msgstr ""
+
+#. Label of the role_to_override_stop_action (Link) field in DocType 'Buying
+#. Settings'
+#. Label of the role_to_override_stop_action (Link) field in DocType 'Selling
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Role allowed to override stop action"
+msgstr ""
+
+#. Label of the role_to_notify_on_depreciation_failure (Link) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Role to Notify on Depreciation Failure"
+msgstr ""
+
+#. Label of the role_allowed_for_frozen_entries (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Roles Allowed to Set and Edit Frozen Account Entries"
+msgstr "동결된 계정 항목을 설정하고 편집할 수 있는 역할"
+
+#. Label of the root (Link) field in DocType 'Bisect Nodes'
+#: erpnext/accounts/doctype/bisect_nodes/bisect_nodes.json
+msgid "Root"
+msgstr "뿌리"
+
+#: erpnext/accounts/doctype/account/account_tree.js:48
+msgid "Root Company"
+msgstr ""
+
+#. Label of the root_type (Select) field in DocType 'Account'
+#. Label of the root_type (Select) field in DocType 'Account Category'
+#. Label of the root_type (Select) field in DocType 'Ledger Merge'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account_tree.js:147
+#: erpnext/accounts/doctype/account_category/account_category.json
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
+#: erpnext/accounts/report/account_balance/account_balance.js:22
+msgid "Root Type"
+msgstr "루트 유형"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:401
+msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:459
+msgid "Root Type is mandatory"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:219
+msgid "Root cannot be edited."
+msgstr "루트는 편집할 수 없습니다."
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:47
+msgid "Root cannot have a parent cost center"
+msgstr ""
+
+#. Label of the round_free_qty (Check) field in DocType 'Pricing Rule'
+#. Label of the round_free_qty (Check) field in DocType 'Promotional Scheme
+#. Product Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Round Free Qty"
+msgstr "라운드 무료 수량"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the round_off_section (Section Break) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/report/account_balance/account_balance.js:56
+#: erpnext/setup/doctype/company/company.json
+msgid "Round Off"
+msgstr "반올림"
+
+#. Label of the round_off_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Round Off Account"
+msgstr "반올림 계정"
+
+#. Label of the round_off_cost_center (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Round Off Cost Center"
+msgstr "반올림 비용 센터"
+
+#. Label of the round_off_tax_amount (Check) field in DocType 'Tax Withholding
+#. Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Round Off Tax Amount"
+msgstr "세금 금액 반올림"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the round_off_for_opening (Link) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Round Off for Opening"
+msgstr "개장 전 마무리"
+
+#. Label of the round_row_wise_tax (Check) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Round Tax Amount Row-wise"
+msgstr ""
+
+#. Label of the rounded_total (Currency) field in DocType 'POS Invoice'
+#. Label of the base_rounded_total (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the rounded_total (Currency) field in DocType 'Purchase Invoice'
+#. Label of the base_rounded_total (Currency) field in DocType 'Sales Invoice'
+#. Label of the rounded_total (Currency) field in DocType 'Sales Invoice'
+#. Label of the base_rounded_total (Currency) field in DocType 'Purchase Order'
+#. Label of the rounded_total (Currency) field in DocType 'Purchase Order'
+#. Label of the rounded_total (Currency) field in DocType 'Supplier Quotation'
+#. Label of the base_rounded_total (Currency) field in DocType 'Quotation'
+#. Label of the rounded_total (Currency) field in DocType 'Quotation'
+#. Label of the base_rounded_total (Currency) field in DocType 'Sales Order'
+#. Label of the rounded_total (Currency) field in DocType 'Sales Order'
+#. Label of the base_rounded_total (Currency) field in DocType 'Delivery Note'
+#. Label of the rounded_total (Currency) field in DocType 'Delivery Note'
+#. Label of the base_rounded_total (Currency) field in DocType 'Purchase
+#. Receipt'
+#. Label of the rounded_total (Currency) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/purchase_register/purchase_register.py:282
+#: erpnext/accounts/report/sales_register/sales_register.py:312
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Rounded Total"
+msgstr ""
+
+#. Label of the base_rounded_total (Currency) field in DocType 'POS Invoice'
+#. Label of the base_rounded_total (Currency) field in DocType 'Supplier
+#. Quotation'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+msgid "Rounded Total (Company Currency)"
+msgstr ""
+
+#. Label of the rounding_adjustment (Currency) field in DocType 'POS Invoice'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales
+#. Invoice'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Invoice'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase
+#. Order'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase
+#. Order'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Supplier
+#. Quotation'
+#. Label of the base_rounding_adjustment (Currency) field in DocType
+#. 'Quotation'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Quotation'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Sales
+#. Order'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Sales Order'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Delivery
+#. Note'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Delivery Note'
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Purchase
+#. Receipt'
+#. Label of the rounding_adjustment (Currency) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Rounding Adjustment"
+msgstr "반올림 조정"
+
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'Supplier
+#. Quotation'
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+msgid "Rounding Adjustment (Company Currency"
+msgstr ""
+
+#. Label of the base_rounding_adjustment (Currency) field in DocType 'POS
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+msgid "Rounding Adjustment (Company Currency)"
+msgstr "반올림 조정 (회사 통화 기준)"
+
+#. Label of the rounding_loss_allowance (Float) field in DocType 'Exchange Rate
+#. Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Rounding Loss Allowance"
+msgstr ""
+
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js:45
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py:49
+msgid "Rounding Loss Allowance should be between 0 and 1"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:793
+#: erpnext/controllers/stock_controller.py:808
+msgid "Rounding gain/loss Entry for Stock Transfer"
+msgstr ""
+
+#. Label of the routing (Link) field in DocType 'BOM'
+#. Label of the routing (Link) field in DocType 'BOM Creator'
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.js:101
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/routing/routing.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Routing"
+msgstr ""
+
+#. Label of the routing_name (Data) field in DocType 'Routing'
+#: erpnext/manufacturing/doctype/routing/routing.json
+msgid "Routing Name"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:225
+msgid "Row # {0}: Cannot return more than {1} for Item {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:191
+msgid "Row # {0}: Please add Serial and Batch Bundle for Item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:210
+msgid "Row # {0}: Please enter quantity for Item {1} as it is not zero."
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:150
+msgid "Row # {0}: Rate cannot be greater than the rate used in {1} {2}"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:134
+msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
+msgid "Row #1: Sequence ID must be 1 for Operation {0}."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
+msgid "Row #{0} (Payment Table): Amount must be negative"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
+msgid "Row #{0} (Payment Table): Amount must be positive"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:581
+msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:331
+msgid "Row #{0}: Acceptance Criteria Formula is incorrect."
+msgstr "행 #{0}: 승인 기준 수식이 잘못되었습니다."
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:311
+msgid "Row #{0}: Acceptance Criteria Formula is required."
+msgstr "행 #{0}: 승인 기준 수식이 필요합니다."
+
+#: erpnext/controllers/subcontracting_controller.py:115
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:604
+msgid "Row #{0}: Accepted Warehouse and Rejected Warehouse cannot be same"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:597
+msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1295
+msgid "Row #{0}: Account {1} does not belong to company {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:397
+msgid "Row #{0}: Allocated Amount cannot be greater than Outstanding Amount of Payment Request {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:373
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:478
+msgid "Row #{0}: Allocated Amount cannot be greater than outstanding amount."
+msgstr "행 #{0}: 할당된 금액은 미지급 금액보다 클 수 없습니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:490
+msgid "Row #{0}: Allocated amount:{1} is greater than outstanding amount:{2} for Payment Term {3}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:275
+msgid "Row #{0}: Amount must be a positive number"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:419
+msgid "Row #{0}: Asset {1} cannot be sold, it is already {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:424
+msgid "Row #{0}: Asset {1} is already sold"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:304
+msgid "Row #{0}: BOM not found for FG Item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:441
+msgid "Row #{0}: Batch No {1} is already selected."
+msgstr "행 #{0}: 배치 번호 {1} 가 이미 선택되었습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:435
+msgid "Row #{0}: Batch No(s) {1} is not a part of the linked Subcontracting Inward Order. Please select valid Batch No(s)."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:869
+msgid "Row #{0}: Cannot allocate more than {1} against payment term {2}"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:637
+msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as billed quantity of Item {1} cannot be greater than consumed quantity."
+msgstr "행 #{0}: 품목 {1} 의 청구 수량이 소비 수량보다 클 수 없으므로 이 제조 재고 항목을 취소할 수 없습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:616
+msgid "Row #{0}: Cannot cancel this Manufacturing Stock Entry as quantity of Secondary Item {1} produced cannot be less than quantity delivered."
+msgstr "행 #{0}: 보조 품목 {1} 의 생산 수량이 납품 수량보다 적을 수 없으므로 이 제조 재고 항목을 취소할 수 없습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:483
+msgid "Row #{0}: Cannot cancel this Stock Entry as returned quantity cannot be greater than delivered quantity for Item {1} in the linked Subcontracting Inward Order"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:78
+msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3808
+msgid "Row #{0}: Cannot delete item {1} which has already been billed."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3782
+msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3801
+msgid "Row #{0}: Cannot delete item {1} which has already been received"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3788
+msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3794
+msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3942
+msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
+msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
+msgstr ""
+
+#: erpnext/selling/doctype/product_bundle/product_bundle.py:87
+msgid "Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:250
+msgid "Row #{0}: Consumed Asset {1} cannot be Draft"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:253
+msgid "Row #{0}: Consumed Asset {1} cannot be cancelled"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:235
+msgid "Row #{0}: Consumed Asset {1} cannot be the same as the Target Asset"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:244
+msgid "Row #{0}: Consumed Asset {1} cannot be {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:258
+msgid "Row #{0}: Consumed Asset {1} does not belong to company {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.py:110
+msgid "Row #{0}: Cost Center {1} does not belong to company {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:212
+msgid "Row #{0}: Could not find enough {1} entries to match. Remaining amount: {2}"
+msgstr "행 #{0}: 일치하는 {1} 항목을 충분히 찾지 못했습니다. 남은 항목 수: {2}"
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:88
+msgid "Row #{0}: Cumulative threshold cannot be less than Single Transaction threshold"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:90
+msgid "Row #{0}: Customer Provided Item {1} against Subcontracting Inward Order Item {2} ({3}) cannot be added multiple times."
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:178
+#: erpnext/controllers/subcontracting_inward_controller.py:304
+#: erpnext/controllers/subcontracting_inward_controller.py:352
+msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
+msgstr "행 #{0}: 고객 제공 품목 {1} 은 하도급 입고 프로세스에서 여러 번 추가할 수 없습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
+msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
+msgstr "행 #{0}: 고객 제공 항목 {1} 은 여러 번 추가할 수 없습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
+msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
+msgstr "행 #{0}: 고객 제공 품목 {1} 이 하도급 입고 주문에 연결된 필수 품목 테이블에 존재하지 않습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:288
+msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
+msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
+msgstr "행 #{0}: 고객 제공 품목 {1} 의 하도급 입고 주문 수량이 부족합니다. 사용 가능한 수량은 {2}입니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:315
+msgid "Row #{0}: Customer Provided Item {1} is not a part of Subcontracting Inward Order {2}"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:220
+#: erpnext/controllers/subcontracting_inward_controller.py:363
+msgid "Row #{0}: Customer Provided Item {1} is not a part of Work Order {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:61
+msgid "Row #{0}: Dates overlapping with other row in group {1}"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
+msgid "Row #{0}: Default BOM not found for FG Item {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:685
+msgid "Row #{0}: Depreciation Start Date is required"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:334
+msgid "Row #{0}: Duplicate entry in References {1} {2}"
+msgstr "행 #{0}: 참조 {1} {2}에 중복 항목 있음"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:334
+msgid "Row #{0}: Expected Delivery Date cannot be before Purchase Order Date"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:924
+msgid "Row #{0}: Expense Account not set for the Item {1}. {2}"
+msgstr "행 #{0}: 항목 {1}에 대해 비용 계정이 설정되지 않았습니다. {2}"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:146
+msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
+msgstr "행 #{0}: 비용 계정 {1} 은 구매 송장 {2}에 유효하지 않습니다. 재고 품목이 아닌 품목에 대한 비용 계정만 허용됩니다."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
+#: erpnext/selling/doctype/sales_order/sales_order.py:307
+msgid "Row #{0}: Finished Good Item Qty can not be zero"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
+#: erpnext/selling/doctype/sales_order/sales_order.py:287
+msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
+#: erpnext/selling/doctype/sales_order/sales_order.py:294
+msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
+msgid "Row #{0}: Finished Good must be {1}"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:585
+msgid "Row #{0}: Finished Good reference is mandatory for Secondary Item {1}."
+msgstr "행 #{0}: 완료됨. 보조 항목 {1}에 대한 양호한 참조가 필수입니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:170
+#: erpnext/controllers/subcontracting_inward_controller.py:294
+msgid "Row #{0}: For Customer Provided Item {1}, Source Warehouse must be {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:698
+msgid "Row #{0}: For {1}, you can select reference document only if account gets credited"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:708
+msgid "Row #{0}: For {1}, you can select reference document only if account gets debited"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:668
+msgid "Row #{0}: Frequency of Depreciation must be greater than zero"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:50
+msgid "Row #{0}: From Date cannot be before To Date"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
+msgid "Row #{0}: From Time and To Time fields are required"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:427
+msgid "Row #{0}: Item added"
+msgstr "행 #{0}: 항목이 추가되었습니다"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
+msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
+msgstr ""
+
+#: erpnext/buying/utils.py:98
+msgid "Row #{0}: Item {1} does not exist"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1637
+msgid "Row #{0}: Item {1} has been picked, please reserve stock from the Pick List."
+msgstr "행 #{0}: 품목 {1} 이 선택되었습니다. 선택 목록에서 재고를 예약해 주십시오."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:450
+msgid "Row #{0}: Item {1} has no stock in warehouse {2}."
+msgstr "행 #{0}: 품목 {1} 은 창고 {2}에 재고가 없습니다."
+
+#: erpnext/controllers/stock_controller.py:153
+msgid "Row #{0}: Item {1} has zero rate but '{2}' is not enabled."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:457
+msgid "Row #{0}: Item {1} in warehouse {2}: Available {3}, Needed {4}."
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:65
+msgid "Row #{0}: Item {1} is not a Customer Provided Item."
+msgstr "행 #{0}: 항목 {1} 은 고객이 제공한 항목이 아닙니다."
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
+msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
+msgstr "행 #{0}: 품목 {1} 은 일련번호/배치번호가 부여된 품목이 아닙니다. 따라서 일련번호/배치번호를 지정할 수 없습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:115
+#: erpnext/controllers/subcontracting_inward_controller.py:496
+msgid "Row #{0}: Item {1} is not a part of Subcontracting Inward Order {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:269
+msgid "Row #{0}: Item {1} is not a service item"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:223
+msgid "Row #{0}: Item {1} is not a stock item"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:79
+msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted, add another row instead."
+msgstr "행 #{0}: 항목 {1} 이 일치하지 않습니다. 항목 코드 변경은 허용되지 않으므로, 대신 다른 행을 추가하십시오."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:128
+msgid "Row #{0}: Item {1} mismatch. Changing of item code is not permitted."
+msgstr "행 #{0}: 항목 {1} 이 일치하지 않습니다. 항목 코드 변경은 허용되지 않습니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:765
+msgid "Row #{0}: Journal Entry {1} does not have account {2} or already matched against another voucher"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:149
+msgid "Row #{0}: Missing {1} for company {2} ."
+msgstr "행 #{0}: 회사 {2} 에 대한 {1} 이 누락되었습니다."
+
+#: erpnext/assets/doctype/asset/asset.py:679
+msgid "Row #{0}: Next Depreciation Date cannot be before Available-for-use Date"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:674
+msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
+msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1720
+msgid "Row #{0}: Only {1} available to reserve for the Item {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:642
+msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:208
+#: erpnext/controllers/subcontracting_inward_controller.py:342
+msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
+msgstr "행 #{0}: 작업 지시서 {2} 에 대한 고객 제공 품목 {1} 의 과소비는 하도급 입고 프로세스에서 허용되지 않습니다."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1055
+msgid "Row #{0}: Please select Item Code in Assembly Items"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1058
+msgid "Row #{0}: Please select the BOM No in Assembly Items"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:106
+msgid "Row #{0}: Please select the Finished Good Item against which this Customer Provided Item will be used."
+msgstr "행 #{0}: 고객이 제공한 품목을 사용할 완제품 품목을 선택하십시오."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1052
+msgid "Row #{0}: Please select the Sub Assembly Warehouse"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:588
+msgid "Row #{0}: Please set reorder quantity"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:618
+msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:347
+#, python-format
+msgid "Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:425
+msgid "Row #{0}: Qty increased by {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:226
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:272
+msgid "Row #{0}: Qty must be a positive number"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:429
+msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
+msgstr "행 #{0}: 수량은 창고 {4}의 배치 {3} 에 대한 품목 {2} 의 예약 가능 수량(실제 수량 - 예약 수량) {1} 보다 작거나 같아야 합니다."
+
+#: erpnext/controllers/stock_controller.py:1467
+msgid "Row #{0}: Quality Inspection is required for Item {1}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1482
+msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1497
+msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
+msgstr ""
+
+#: erpnext/selling/doctype/product_bundle/product_bundle.py:96
+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:1458
+msgid "Row #{0}: Quantity for Item {1} cannot be zero."
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:537
+msgid "Row #{0}: Quantity of Item {1} cannot be more than {2} {3} against Subcontracting Inward Order {4}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:340
+msgid "Row #{0}: Quantity should be greater than 0 for {1} Item {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1705
+msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
+msgstr "행 #{0}: 품목 {1} 에 대해 예약할 수량은 0보다 커야 합니다."
+
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
+#: erpnext/utilities/transaction_base.py:172
+#: erpnext/utilities/transaction_base.py:178
+msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
+msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
+msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:578
+msgid "Row #{0}: Rejected Qty cannot be set for Secondary Item {1}."
+msgstr "행 #{0}: 보조 품목 {1}에 대해 거부 수량을 설정할 수 없습니다."
+
+#: erpnext/controllers/subcontracting_controller.py:108
+msgid "Row #{0}: Rejected Warehouse is mandatory for the rejected Item {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:164
+msgid "Row #{0}: Repair cost {1} exceeds available amount {2} for Purchase Invoice {3} and Account {4}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:427
+msgid "Row #{0}: Return Against is required for returning asset"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:142
+msgid "Row #{0}: Returned quantity cannot be greater than available quantity for Item {1}"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:155
+msgid "Row #{0}: Returned quantity cannot be greater than available quantity to return for Item {1}"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:573
+msgid "Row #{0}: Secondary Item Qty cannot be zero"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:296
+msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n"
+"\t\t\t\t\tSelling {3} should be atleast {4}. Alternatively,\n"
+"\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n"
+"\t\t\t\t\tthis validation."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
+msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:308
+msgid "Row #{0}: Serial No {1} does not belong to Batch {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:378
+msgid "Row #{0}: Serial No {1} for Item {2} is not available in {3} {4} or might be reserved in another {5}."
+msgstr "행 #{0}: 품목 {2} 의 일련 번호 {1} 는 {3} {4} 에서 사용할 수 없거나 다른 {5}에서 예약되었을 수 있습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:394
+msgid "Row #{0}: Serial No {1} is already selected."
+msgstr "행 #{0}: 일련 번호 {1} 가 이미 선택되었습니다."
+
+#: erpnext/controllers/subcontracting_inward_controller.py:424
+msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:646
+msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:640
+msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:634
+msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
+msgid "Row #{0}: Set Supplier for item {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1062
+msgid "Row #{0}: Since 'Track Semi Finished Goods' is enabled, the BOM {1} cannot be used for Sub Assembly Items"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:403
+msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
+msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
+msgstr "행 #{0}: 품목 {2} 의 소스 창고 {1} 는 고객 창고일 수 없습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
+msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
+msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
+msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:108
+msgid "Row #{0}: Start Time must be before End Time"
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:211
+msgid "Row #{0}: Status is mandatory"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:460
+msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
+msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1650
+msgid "Row #{0}: Stock cannot be reserved for a non-stock Item {1}"
+msgstr "행 #{0}: 재고가 없는 품목에 대해서는 재고를 예약할 수 없습니다 {1}"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1663
+msgid "Row #{0}: Stock cannot be reserved in group warehouse {1}."
+msgstr "행 #{0}: 그룹 창고 {1}에서 재고를 예약할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1677
+msgid "Row #{0}: Stock is already reserved for the Item {1}."
+msgstr "행 #{0}: 품목 {1}에 대한 재고가 이미 예약되어 있습니다."
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
+msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
+msgstr "행 #{0}: 창고 {2}에서 품목 {1} 에 대한 재고가 예약되었습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:413
+msgid "Row #{0}: Stock not available to reserve for Item {1} against Batch {2} in Warehouse {3}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1243
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1691
+msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
+msgstr "행 #{0}: 창고 {2}에서 품목 {1} 에 대한 예약 가능한 재고가 없습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
+msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:397
+msgid "Row #{0}: Target Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:321
+msgid "Row #{0}: The batch {1} has already expired."
+msgstr "행 #{0}: 배치 {1} 가 이미 만료되었습니다."
+
+#: erpnext/stock/doctype/item/item.py:597
+msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:181
+msgid "Row #{0}: Timings conflicts with row {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:655
+msgid "Row #{0}: Total Number of Depreciations cannot be less than or equal to Opening Number of Booked Depreciations"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:664
+msgid "Row #{0}: Total Number of Depreciations must be greater than zero"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:105
+msgid "Row #{0}: Warehouse {1} does not match with the warehouse {2} in Serial and Batch Bundle {3}."
+msgstr "행 #{0}: 창고 {1} 가 직렬 및 배치 번들 {3}의 창고 {2} 와 일치하지 않습니다."
+
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.py:94
+msgid "Row #{0}: Withholding Amount {1} does not match calculated amount {2}."
+msgstr ""
+
+#: erpnext/controllers/subcontracting_inward_controller.py:577
+msgid "Row #{0}: Work Order exists against full or partial quantity of Item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:104
+msgid "Row #{0}: You cannot use the inventory dimension '{1}' in Stock Reconciliation to modify the quantity or valuation rate. Stock reconciliation with inventory dimensions is intended solely for performing opening entries."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:431
+msgid "Row #{0}: You must select an Asset for Item {1}."
+msgstr "행 #{0}: 항목 {1}에 대한 자산을 선택해야 합니다."
+
+#: erpnext/public/js/controllers/buying.js:261
+msgid "Row #{0}: {1} can not be negative for item {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:324
+msgid "Row #{0}: {1} is not a valid reading field. Please refer to the field description."
+msgstr "행 #{0}: {1} 는 유효한 읽기 필드가 아닙니다. 필드 설명을 참조하십시오."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:131
+msgid "Row #{0}: {1} is required to create the Opening {2} Invoices"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:89
+msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4048
+msgid "Row #{0}:Quantity for Item {1} cannot be zero."
+msgstr ""
+
+#: erpnext/buying/utils.py:106
+msgid "Row #{1}: Warehouse is mandatory for stock Item {0}"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:310
+msgid "Row #{idx}: Cannot select Supplier Warehouse while suppling raw materials to subcontractor."
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:573
+msgid "Row #{idx}: Item rate has been updated as per valuation rate since its an internal stock transfer."
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:1022
+msgid "Row #{idx}: Please enter a location for the asset item {item_code}."
+msgstr "행 #{idx}: 자산 항목 {item_code}의 위치를 입력하십시오."
+
+#: erpnext/controllers/buying_controller.py:666
+msgid "Row #{idx}: Received Qty must be equal to Accepted + Rejected Qty for Item {item_code}."
+msgstr "행 #{idx}: 수령 수량은 품목 {item_code}에 대한 승인 수량 + 거부 수량과 같아야 합니다."
+
+#: erpnext/controllers/buying_controller.py:679
+msgid "Row #{idx}: {field_label} can not be negative for item {item_code}."
+msgstr "행 #{idx}: {field_label} 은 항목 {item_code}에 대해 음수일 수 없습니다."
+
+#: erpnext/controllers/buying_controller.py:632
+msgid "Row #{idx}: {field_label} is mandatory."
+msgstr "행 #{idx}: {field_label} 은 필수입니다."
+
+#: erpnext/controllers/buying_controller.py:301
+msgid "Row #{idx}: {from_warehouse_field} and {to_warehouse_field} cannot be same."
+msgstr "행 #{idx}: {from_warehouse_field} 및 {to_warehouse_field} 는 같을 수 없습니다."
+
+#: erpnext/controllers/buying_controller.py:1139
+msgid "Row #{idx}: {schedule_date} cannot be before {transaction_date}."
+msgstr "행 #{idx}: {schedule_date} 는 {transaction_date} 앞에 있을 수 없습니다."
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:66
+msgid "Row #{}: Currency of {} - {} doesn't matches company currency."
+msgstr "행 번호 {}: {} - {}의 통화가 회사 통화와 일치하지 않습니다."
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:113
+msgid "Row #{}: Either Party ID or Party Name is required"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:422
+msgid "Row #{}: Finance Book should not be empty since you're using multiple."
+msgstr "행 번호 {}: 재무 장부는 여러 개를 사용하고 있으므로 비어 있으면 안 됩니다."
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:92
+msgid "Row #{}: POS Invoice {} has been {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:73
+msgid "Row #{}: POS Invoice {} is not against customer {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:88
+msgid "Row #{}: POS Invoice {} is not submitted yet"
+msgstr ""
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:123
+msgid "Row #{}: Party ID is required"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:43
+msgid "Row #{}: Please assign task to a member."
+msgstr "행 번호 {}: 팀원에게 작업을 할당해 주세요."
+
+#: erpnext/assets/doctype/asset/asset.py:414
+msgid "Row #{}: Please use a different Finance Book."
+msgstr "행 번호 {}: 다른 재무 서적을 사용하십시오."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:525
+msgid "Row #{}: Serial No {} cannot be returned since it was not transacted in original invoice {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:103
+msgid "Row #{}: The original Invoice {} of return invoice {} is not consolidated."
+msgstr "행 번호 {}: 반품 송장 {}의 원래 송장 {}이 통합되지 않았습니다."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:498
+msgid "Row #{}: You cannot add positive quantities in a return invoice. Please remove item {} to complete the return."
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:236
+msgid "Row #{}: item {} has been picked already."
+msgstr "행 번호 {}: 항목 {}이 이미 선택되었습니다."
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:142
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:207
+msgid "Row #{}: {}"
+msgstr "열 #{}: {}"
+
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.py:126
+msgid "Row #{}: {} {} does not exist."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1524
+msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:441
+msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
+msgid "Row {0} : Operation is required against the raw material item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:266
+msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
+msgstr "행 {0} 에서 선택한 수량이 필요한 수량보다 적습니다. 추가로 {1} {2} 가 필요합니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
+msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:277
+msgid "Row {0}: Accepted Qty and Rejected Qty can't be zero at the same time."
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:613
+msgid "Row {0}: Account {1} and Party Type {2} have different account types"
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet/timesheet.py:164
+msgid "Row {0}: Activity Type is mandatory."
+msgstr "행 {0}: 활동 유형은 필수입니다."
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:679
+msgid "Row {0}: Advance against Customer must be credit"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:681
+msgid "Row {0}: Advance against Supplier must be debit"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:739
+msgid "Row {0}: Allocated amount {1} must be less than or equal to invoice outstanding amount {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:731
+msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
+msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
+msgstr "행 {0}: {1} 이 활성화되어 있으므로 {2} 항목에 원자재를 추가할 수 없습니다. 원자재를 소모하려면 {3} 항목을 사용하십시오."
+
+#: erpnext/stock/doctype/material_request/material_request.py:861
+msgid "Row {0}: Bill of Materials not found for the Item {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:932
+msgid "Row {0}: Both Debit and Credit values cannot be zero"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:620
+msgid "Row {0}: Consumed Qty {1} {2} must be less than or equal to Available Qty For Consumption\n"
+"\t\t\t\t\t{3} {4} in Consumed Items Table."
+msgstr "행 {0}: 소비된 수량 {1} {2} 은 소비된 품목 테이블의 소비 가능 수량\n"
+"\t\t\t\t\t{3} {4} 보다 작거나 같아야 합니다."
+
+#: erpnext/controllers/selling_controller.py:288
+msgid "Row {0}: Conversion Factor is mandatory"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3239
+msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:177
+msgid "Row {0}: Cost center is required for an item {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:778
+msgid "Row {0}: Credit entry can not be linked with a {1}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:580
+msgid "Row {0}: Currency of the BOM #{1} should be equal to the selected currency {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:773
+msgid "Row {0}: Debit entry can not be linked with a {1}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:880
+msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_controller.py:148
+msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
+msgstr "행 {0}: 품목 {1}에 대해 배송 창고가 고객 창고와 동일할 수 없습니다."
+
+#: erpnext/controllers/accounts_controller.py:2737
+msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:128
+msgid "Row {0}: Either Delivery Note Item or Packed Item reference is mandatory."
+msgstr "행 {0}: 납품서 품목 또는 포장 품목 참조는 필수 입력 사항입니다."
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1023
+#: erpnext/controllers/taxes_and_totals.py:1373
+msgid "Row {0}: Exchange Rate is mandatory"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:613
+msgid "Row {0}: Expected Value After Useful Life cannot be negative"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:616
+msgid "Row {0}: Expected Value After Useful Life must be less than Net Purchase Amount"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:189
+msgid "Row {0}: Expense Account {1} is linked to company {2}. Please select an account belonging to company {3}."
+msgstr "행 {0}: 경비 계정 {1} 은 회사 {2}에 연결되어 있습니다. 회사 {3}에 속한 계정을 선택하십시오."
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:531
+msgid "Row {0}: Expense Head changed to {1} as no Purchase Receipt is created against Item {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:488
+msgid "Row {0}: Expense Head changed to {1} because account {2} is not linked to warehouse {3} or it is not the default inventory account"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:513
+msgid "Row {0}: Expense Head changed to {1} because expense is booked against this account in Purchase Receipt {2}"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:156
+msgid "Row {0}: For Supplier {1}, Email Address is Required to send an email"
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet/timesheet.py:161
+msgid "Row {0}: From Time and To Time is mandatory."
+msgstr "행 {0}: 시작 시간과 종료 시간은 필수 입력 사항입니다."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
+#: erpnext/projects/doctype/timesheet/timesheet.py:225
+msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1563
+msgid "Row {0}: From Warehouse is mandatory for internal transfers"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
+msgid "Row {0}: From time must be less than to time"
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet/timesheet.py:167
+msgid "Row {0}: Hours value must be greater than zero."
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:798
+msgid "Row {0}: Invalid reference {1}"
+msgstr "행 {0}: 잘못된 참조 {1}"
+
+#: erpnext/controllers/taxes_and_totals.py:134
+msgid "Row {0}: Item Tax template updated as per validity and rate applied"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:645
+msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
+msgstr ""
+
+#: erpnext/controllers/subcontracting_controller.py:141
+msgid "Row {0}: Item {1} must be a stock item."
+msgstr "행 {0}: 항목 {1} 은 재고 품목이어야 합니다."
+
+#: erpnext/controllers/subcontracting_controller.py:156
+msgid "Row {0}: Item {1} must be a subcontracted item."
+msgstr "행 {0}: 항목 {1} 은 하청 품목이어야 합니다."
+
+#: erpnext/controllers/subcontracting_controller.py:173
+msgid "Row {0}: Item {1} must be linked to a {2}."
+msgstr "행 {0}: 항목 {1} 은 {2}에 연결되어야 합니다."
+
+#: erpnext/controllers/subcontracting_controller.py:194
+msgid "Row {0}: Item {1}'s quantity cannot be higher than the available quantity."
+msgstr "행 {0}: 항목 {1}의 수량은 사용 가능한 수량보다 많을 수 없습니다."
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1254
+msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
+msgid "Row {0}: Packed Qty must be equal to {1} Qty."
+msgstr "행 {0}: 포장 수량은 {1} 수량과 같아야 합니다."
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:147
+msgid "Row {0}: Packing Slip is already created for Item {1}."
+msgstr "행 {0}: 품목 {1}에 대한 포장 전표가 이미 생성되었습니다."
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:824
+msgid "Row {0}: Party / Account does not match with {1} / {2} in {3} {4}"
+msgstr "행 {0}: 당사자/계정이 {1} / {2} 와 일치하지 않습니다. {3} {4}"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:602
+msgid "Row {0}: Party Type and Party is required for Receivable / Payable account {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:45
+msgid "Row {0}: Payment Term is mandatory"
+msgstr "행 {0}: 지불 조건은 필수입니다"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:672
+msgid "Row {0}: Payment against Sales/Purchase Order should always be marked as advance"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:665
+msgid "Row {0}: Please check 'Is Advance' against Account {1} if this is an advance entry."
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:141
+msgid "Row {0}: Please provide a valid Delivery Note Item or Packed Item reference."
+msgstr "행 {0}: 유효한 배송 전표 품목 또는 포장 품목 참조 번호를 제공해 주십시오."
+
+#: erpnext/controllers/subcontracting_controller.py:219
+msgid "Row {0}: Please select a BOM for Item {1}."
+msgstr "행 {0}: 품목 {1}에 대한 BOM을 선택하십시오."
+
+#: erpnext/controllers/subcontracting_controller.py:207
+msgid "Row {0}: Please select an active BOM for Item {1}."
+msgstr "행 {0}: 품목 {1}에 대해 활성화된 BOM을 선택하십시오."
+
+#: erpnext/controllers/subcontracting_controller.py:213
+msgid "Row {0}: Please select an valid BOM for Item {1}."
+msgstr "행 {0}: 품목 {1}에 대한 유효한 BOM을 선택하십시오."
+
+#: erpnext/regional/italy/utils.py:290
+msgid "Row {0}: Please set at Tax Exemption Reason in Sales Taxes and Charges"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:317
+msgid "Row {0}: Please set the Mode of Payment in Payment Schedule"
+msgstr ""
+
+#: erpnext/regional/italy/utils.py:322
+msgid "Row {0}: Please set the correct code on Mode of Payment {1}"
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:114
+msgid "Row {0}: Project must be same as the one set in the Timesheet: {1}."
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:154
+msgid "Row {0}: Purchase Invoice {1} has no stock impact."
+msgstr "행 {0}: 구매 송장 {1} 은 재고에 영향을 미치지 않습니다."
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:153
+msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
+msgstr "행 {0}: 품목 {2}의 수량은 {1} 보다 클 수 없습니다."
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
+msgid "Row {0}: Qty in Stock UOM can not be zero."
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:124
+msgid "Row {0}: Qty must be greater than 0."
+msgstr "행 {0}: 수량은 0보다 커야 합니다."
+
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.py:124
+msgid "Row {0}: Quantity cannot be negative."
+msgstr "행 {0}: 수량은 음수일 수 없습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
+msgid "Row {0}: Sales Invoice {1} is already created for {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:57
+msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
+msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1554
+msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:125
+msgid "Row {0}: Task {1} does not belong to Project {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:178
+msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
+msgstr "행 {0}: {2} 의 계정 {1} 에 대한 전체 비용 금액이 이미 할당되었습니다."
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
+msgid "Row {0}: The item {1}, quantity must be positive number"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3216
+msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:217
+msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
+msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
+msgstr "행 {0}: 전송 수량은 요청 수량보다 클 수 없습니다."
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
+msgid "Row {0}: UOM Conversion Factor is mandatory"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:172
+msgid "Row {0}: Warehouse is required"
+msgstr "행 {0}: 창고가 필요합니다"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:181
+msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehouse belonging to company {3}."
+msgstr "행 {0}: 창고 {1} 는 회사 {2}에 연결되어 있습니다. 회사 {3}에 속한 창고를 선택하십시오."
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1248
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
+msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1177
+msgid "Row {0}: user has not applied the rule {1} on the item {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension_filter/accounting_dimension_filter.py:63
+msgid "Row {0}: {1} account already applied for Accounting Dimension {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:41
+msgid "Row {0}: {1} must be greater than 0"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:783
+msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:838
+msgid "Row {0}: {1} {2} does not match with {3}"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:136
+msgid "Row {0}: {1} {2} is linked to company {3}. Please select a document belonging to company {4}."
+msgstr "행 {0}: {1} {2} 는 회사 {3}에 연결되어 있습니다. 회사 {4}에 속한 문서를 선택하십시오."
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:110
+msgid "Row {0}: {2} Item {1} does not exist in {2} {3}"
+msgstr ""
+
+#: erpnext/utilities/transaction_base.py:623
+msgid "Row {1}: Quantity ({0}) cannot be a fraction. To allow this, disable '{2}' in UOM {3}."
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:1004
+msgid "Row {idx}: Asset Naming Series is mandatory for the auto creation of assets for item {item_code}."
+msgstr ""
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:84
+msgid "Row({0}): Outstanding Amount cannot be greater than actual Outstanding Amount {1} in {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.py:74
+msgid "Row({0}): {1} is already discounted in {2}"
+msgstr ""
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:200
+msgid "Rows Added in {0}"
+msgstr "추가된 행 수 {0}"
+
+#: erpnext/manufacturing/page/bom_comparison_tool/bom_comparison_tool.js:201
+msgid "Rows Removed in {0}"
+msgstr "{0}에서 제거된 행 수"
+
+#. Description of the 'Merge Similar Account Heads' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Rows with Same Account heads will be merged on Ledger"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2748
+msgid "Rows with duplicate due dates in other rows were found: {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:148
+msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:284
+msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
+msgstr ""
+
+#. Label of the rule_applied (Check) field in DocType 'Pricing Rule Detail'
+#: erpnext/accounts/doctype/pricing_rule_detail/pricing_rule_detail.json
+msgid "Rule Applied"
+msgstr "규칙 적용"
+
+#. Label of the rule_description (Small Text) field in DocType 'Bank
+#. Transaction Rule'
+#. Label of the rule_description (Small Text) field in DocType 'Pricing Rule'
+#. Label of the rule_description (Small Text) field in DocType 'Promotional
+#. Scheme Price Discount'
+#. Label of the rule_description (Small Text) field in DocType 'Promotional
+#. Scheme Product Discount'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:47
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Rule Description"
+msgstr "규칙 설명"
+
+#. Label of the rule_name (Data) field in DocType 'Bank Transaction Rule'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:28
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Rule Name"
+msgstr "규칙 이름"
+
+#: banking/src/components/features/BankReconciliation/Rules/CreateNewRule.tsx:41
+msgid "Rule created successfully"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:149
+msgid "Rule deleted."
+msgstr "규칙이 삭제되었습니다."
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:661
+msgid "Rule matched based on transaction description and other criteria."
+msgstr "규칙은 거래 설명 및 기타 기준에 따라 일치합니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:39
+msgid "Rule name is required"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:174
+msgid "Rule priorities updated"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/EditRule.tsx:30
+msgid "Rule updated."
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:56
+msgid "Rules evaluation completed"
+msgstr "규칙 평가 완료"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:56
+msgid "Rules evaluation started"
+msgstr "규칙 평가가 시작되었습니다"
+
+#: erpnext/public/js/utils/naming_series.js:54
+msgid "Rules for configuring series"
+msgstr "시리즈 구성 규칙"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:189
+msgid "Rules to match against the transaction description"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:75
+msgid "Run Rules"
+msgstr "실행 규칙"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:81
+msgid "Run on new transactions"
+msgstr "새로운 거래에서 실행됩니다"
+
+#. Description of the 'Job Capacity' (Int) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Run parallel job cards in a workstation"
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:125
+msgid "Run rules automatically"
+msgstr "규칙을 자동으로 실행합니다"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:79
+msgid "Run rules on unreconciled transactions that haven't been evaluated yet"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation'
+#. Option for the 'Status' (Select) field in DocType 'Process Payment
+#. Reconciliation Log'
+#. Option for the 'Status' (Select) field in DocType 'Process Period Closing
+#. Voucher'
+#. Option for the 'Status' (Select) field in DocType 'Process Period Closing
+#. Voucher Detail'
+#. Option for the 'Status' (Select) field in DocType 'Transaction Deletion
+#. Record'
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+#: erpnext/accounts/doctype/process_period_closing_voucher/process_period_closing_voucher.json
+#: erpnext/accounts/doctype/process_period_closing_voucher_detail/process_period_closing_voucher_detail.json
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Running"
+msgstr "달리기"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:75
+msgid "Running..."
+msgstr "달리기..."
+
+#. Description of the 'Preview Mode' (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Runs a preview check on save before submission without making any actual changes."
+msgstr ""
+
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:28
+msgid "S.O. No."
+msgstr "그래서 아니요."
+
+#. Label of the scio_detail (Data) field in DocType 'Sales Invoice Item'
+#. Label of the scio_detail (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "SCIO Detail"
+msgstr ""
+
+#. Label of the sco_rm_detail (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "SCO Supplied Item"
+msgstr "SCO 제공 품목"
+
+#. Label of the sla_fulfilled_on (Table) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "SLA Fulfilled On"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/support/doctype/sla_fulfilled_on_status/sla_fulfilled_on_status.json
+msgid "SLA Fulfilled On Status"
+msgstr "SLA 충족됨 상태"
+
+#. Label of the pause_sla_on (Table) field in DocType 'Service Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "SLA Paused On"
+msgstr "SLA 일시 중지됨"
+
+#: erpnext/public/js/utils.js:1250
+msgid "SLA is on hold since {0}"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:52
+msgid "SLA will be applied if {1} is set as {2}{3}"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:32
+msgid "SLA will be applied on every {0}"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/sms_center/sms_center.json
+#: erpnext/workspace_sidebar/crm.json
+msgid "SMS Center"
+msgstr "SMS 센터"
+
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:43
+msgid "SO Qty"
+msgstr "SO 수량"
+
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:107
+msgid "SO Total Qty"
+msgstr "SO 총 수량"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:26
+msgid "STATEMENT OF ACCOUNTS"
+msgstr "계정 명세서"
+
+#. Label of the swift_number (Read Only) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "SWIFT Number"
+msgstr "SWIFT 번호"
+
+#. Label of the swift_number (Data) field in DocType 'Bank'
+#. Label of the swift_number (Data) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank/bank.json
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "SWIFT number"
+msgstr "SWIFT 번호"
+
+#. Label of the safety_stock (Float) field in DocType 'Material Request Plan
+#. Item'
+#. Label of the safety_stock (Float) field in DocType 'Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1053
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:58
+msgid "Safety Stock"
+msgstr "안전 재고"
+
+#. Label of the salary_information (Tab Break) field in DocType 'Employee'
+#. Label of the salary (Currency) field in DocType 'Employee External Work
+#. History'
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
+msgid "Salary"
+msgstr ""
+
+#. Label of the salary_currency (Link) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Salary Currency"
+msgstr "급여 통화"
+
+#. Label of the salary_mode (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Salary Mode"
+msgstr "급여 방식"
+
+#. Option for the 'Invoice Type' (Select) field in DocType 'Opening Invoice
+#. Creation Tool'
+#. Option for the 'Tax Type' (Select) field in DocType 'Tax Rule'
+#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
+#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
+#. Label of the sales_details (Tab Break) field in DocType 'Item'
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
+#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template_dashboard.py:14
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule_dashboard.py:10
+#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:9
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/crm/doctype/opportunity/opportunity.js:288
+#: erpnext/crm/doctype/opportunity/opportunity.py:159
+#: erpnext/projects/doctype/project/project_dashboard.py:15
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:143
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
+#: erpnext/setup/doctype/company/company_dashboard.py:9
+#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
+#: erpnext/setup/install.py:431
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
+#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
+msgid "Sales"
+msgstr "매상"
+
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
+msgid "Sales Account"
+msgstr "판매 계정"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/sales_analytics/sales_analytics.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json
+msgid "Sales Analytics"
+msgstr "판매 분석"
+
+#. Label of the sales_team (Table) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Sales Contributions and Incentives"
+msgstr ""
+
+#. Label of the selling_defaults (Section Break) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Sales Defaults"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+msgid "Sales Expenses"
+msgstr "판매 비용"
+
+#. Label of the sales_forecast (Link) field in DocType 'Master Production
+#. Schedule'
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Sales Forecast"
+msgstr "판매 예측"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+msgid "Sales Forecast Item"
+msgstr "판매 예측 항목"
+
+#. Label of a Link in the CRM Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:7
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:49
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json
+msgid "Sales Funnel"
+msgstr ""
+
+#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the sales_incoming_rate (Currency) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Sales Incoming Rate"
+msgstr ""
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Label of the sales_invoice (Data) field in DocType 'Loyalty Point Entry
+#. Redemption'
+#. Label of the sales_invoice (Link) field in DocType 'Overdue Payment'
+#. Option for the 'Invoice Type' (Select) field in DocType 'Payment
+#. Reconciliation Invoice'
+#. Option for the 'Invoice Type Created via POS Screen' (Select) field in
+#. DocType 'POS Settings'
+#. Name of a DocType
+#. Label of the sales_invoice (Link) field in DocType 'Sales Invoice Reference'
+#. Option for the 'Document Type' (Select) field in DocType 'Contract'
+#. Label of the sales_invoice (Link) field in DocType 'Timesheet'
+#. Label of the sales_invoice (Link) field in DocType 'Timesheet Detail'
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Label of a shortcut in the Home Workspace
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/loyalty_point_entry_redemption/loyalty_point_entry_redemption.json
+#: erpnext/accounts/doctype/overdue_payment/overdue_payment.json
+#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+#: erpnext/accounts/print_format/sales_auditing_voucher/sales_auditing_voucher.html:5
+#: erpnext/accounts/report/gross_profit/gross_profit.js:30
+#: erpnext/accounts/report/gross_profit/gross_profit.py:287
+#: erpnext/accounts/report/gross_profit/gross_profit.py:294
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/selling/doctype/quotation/quotation_list.js:22
+#: erpnext/selling/doctype/sales_order/sales_order.js:1115
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:75
+#: erpnext/selling/doctype/selling_settings/selling_settings.js:51
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:347
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:67
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/workspace_sidebar/home.json erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Invoice"
+msgstr "판매 송장"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
+msgid "Sales Invoice Advance"
+msgstr ""
+
+#. Label of the sales_invoice_item (Data) field in DocType 'Purchase Invoice
+#. Item'
+#. Name of a DocType
+#. Label of the sales_invoice_item (Data) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Sales Invoice Item"
+msgstr "판매 송장 품목"
+
+#. Label of the sales_invoice_no (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Sales Invoice No"
+msgstr "판매 송장 번호"
+
+#. Label of the payments (Table) field in DocType 'POS Invoice'
+#. Label of the payments (Table) field in DocType 'Sales Invoice'
+#. Name of a DocType
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice_payment/sales_invoice_payment.json
+msgid "Sales Invoice Payment"
+msgstr "매출 송장 결제"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/sales_invoice_reference/sales_invoice_reference.json
+msgid "Sales Invoice Reference"
+msgstr "판매 송장 참조 번호"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+msgid "Sales Invoice Timesheet"
+msgstr "판매 송장 작업 시간표"
+
+#. Label of the sales_invoices (Table) field in DocType 'POS Closing Entry'
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+msgid "Sales Invoice Transactions"
+msgstr "매출 송장 거래"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/sales_invoice_trends/sales_invoice_trends.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Invoice Trends"
+msgstr "매출 송장 동향"
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:184
+msgid "Sales Invoice does not have Payments"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:180
+msgid "Sales Invoice is already consolidated"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:186
+msgid "Sales Invoice is not created using POS"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:192
+msgid "Sales Invoice is not submitted"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:195
+msgid "Sales Invoice isn't created by user {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:470
+msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
+msgstr "POS 시스템에서 매출 송장 모드가 활성화되어 있습니다. 매출 송장을 직접 생성해 주십시오."
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
+msgid "Sales Invoice {0} has already been submitted"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
+msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
+msgstr ""
+
+#. Label of the sales_monthly_history (Small Text) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Sales Monthly History"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:153
+msgid "Sales Opportunities by Campaign"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:155
+msgid "Sales Opportunities by Medium"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:151
+msgid "Sales Opportunities by Source"
+msgstr ""
+
+#. Option for the 'Reference Type' (Select) field in DocType 'Journal Entry
+#. Account'
+#. Label of the sales_order (Link) field in DocType 'POS Invoice Item'
+#. Label of the sales_order (Link) field in DocType 'Sales Invoice Item'
+#. Label of the sales_order (Link) field in DocType 'Purchase Order Item'
+#. Label of the sales_order (Link) field in DocType 'Supplier Quotation Item'
+#. Option for the 'Document Type' (Select) field in DocType 'Contract'
+#. Label of the sales_order (Link) field in DocType 'Maintenance Schedule Item'
+#. Label of the sales_order (Link) field in DocType 'Material Request Plan
+#. Item'
+#. Option for the 'Get Items From' (Select) field in DocType 'Production Plan'
+#. Label of the sales_order (Link) field in DocType 'Production Plan Item'
+#. Label of the sales_order (Link) field in DocType 'Production Plan Sales
+#. Order'
+#. Label of the sales_order (Link) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the sales_order (Link) field in DocType 'Work Order'
+#. Label of the sales_order (Link) field in DocType 'Project'
+#. Label of the sales_order (Link) field in DocType 'Delivery Schedule Item'
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Option for the 'Transaction' (Select) field in DocType 'Authorization Rule'
+#. Label of the sales_order (Link) field in DocType 'Material Request Item'
+#. Label of the sales_order (Link) field in DocType 'Pick List Item'
+#. Label of the sales_order (Link) field in DocType 'Purchase Receipt Item'
+#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation
+#. Entry'
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:361
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:284
+#: erpnext/accounts/report/sales_register/sales_register.py:238
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/controllers/selling_controller.py:495
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:65
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:122
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.js:24
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:32
+#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:155
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.py:217
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/quotation/quotation.js:134
+#: erpnext/selling/doctype/quotation/quotation_dashboard.py:11
+#: erpnext/selling/doctype/quotation/quotation_list.js:16
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.js:50
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:60
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:13
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.js:41
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:222
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:157
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:223
+#: erpnext/stock/doctype/material_request/material_request.js:236
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.js:30
+#: erpnext/stock/report/delayed_item_report/delayed_item_report.py:159
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.js:30
+#: erpnext/stock/report/delayed_order_report/delayed_order_report.py:74
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/selling.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Sales Order"
+msgstr "판매 주문"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Order Analysis"
+msgstr "판매 주문 분석"
+
+#. Label of the sales_order_date (Date) field in DocType 'Production Plan Sales
+#. Order'
+#. Label of the transaction_date (Date) field in DocType 'Sales Order Item'
+#: erpnext/manufacturing/doctype/production_plan_sales_order/production_plan_sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Sales Order Date"
+msgstr "판매 주문 날짜"
+
+#. Label of the so_detail (Data) field in DocType 'POS Invoice Item'
+#. Label of the so_detail (Data) field in DocType 'Sales Invoice Item'
+#. Label of the sales_order_item (Data) field in DocType 'Purchase Order Item'
+#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item'
+#. Label of the sales_order_item (Data) field in DocType 'Production Plan Item
+#. Reference'
+#. Label of the sales_order_item (Data) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the sales_order_item (Data) field in DocType 'Work Order'
+#. Label of the sales_order_item (Data) field in DocType 'Delivery Schedule
+#. Item'
+#. Name of a DocType
+#. Label of the sales_order_item (Data) field in DocType 'Material Request
+#. Item'
+#. Label of the sales_order_item (Data) field in DocType 'Pick List Item'
+#. Label of the sales_order_item (Data) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward
+#. Order Item'
+#. Label of the sales_order_item (Data) field in DocType 'Subcontracting Inward
+#. Order Service Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1351
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+msgid "Sales Order Item"
+msgstr "판매 주문 품목"
+
+#. Label of the sales_order_packed_item (Data) field in DocType 'Purchase Order
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "Sales Order Packed Item"
+msgstr "판매 주문 포장 품목"
+
+#. Label of the sales_order (Link) field in DocType 'Production Plan Item
+#. Reference'
+#: erpnext/manufacturing/doctype/production_plan_item_reference/production_plan_item_reference.json
+msgid "Sales Order Reference"
+msgstr "판매 주문 참조 번호"
+
+#. Label of the sales_order_schedule_section (Section Break) field in DocType
+#. 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Sales Order Schedule"
+msgstr "판매 주문 일정"
+
+#. Label of the sales_order_status (Select) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Sales Order Status"
+msgstr "판매 주문 상태"
+
+#. Name of a report
+#. Label of a chart in the Selling Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/sales_order_trends/sales_order_trends.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Order Trends"
+msgstr "판매 주문 추세"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:286
+msgid "Sales Order required for Item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
+msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
+msgid "Sales Order {0} is not available for production"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
+msgid "Sales Order {0} is not submitted"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
+msgid "Sales Order {0} is not valid"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
+msgid "Sales Order {0} is {1}"
+msgstr ""
+
+#. Label of the sales_orders (Table) field in DocType 'Master Production
+#. Schedule'
+#. Label of the sales_orders_detail (Section Break) field in DocType
+#. 'Production Plan'
+#. Label of the sales_orders (Table) field in DocType 'Production Plan'
+#. Label of a number card in the Selling Workspace
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:42
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Sales Orders"
+msgstr "판매 주문"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:343
+msgid "Sales Orders Required"
+msgstr "판매 주문서 필요"
+
+#. Label of the sales_orders_to_bill (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Sales Orders to Bill"
+msgstr ""
+
+#. Label of the sales_orders_to_deliver (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Sales Orders to Deliver"
+msgstr "판매 주문 배송"
+
+#. Label of the sales_partner (Link) field in DocType 'POS Invoice'
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the sales_partner (Link) field in DocType 'Pricing Rule'
+#. Option for the 'Select Customers By' (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the sales_partner (Link) field in DocType 'Process Statement Of
+#. Accounts'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the sales_partner (Table MultiSelect) field in DocType 'Promotional
+#. Scheme'
+#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
+#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
+#. Label of the sales_partner (Link) field in DocType 'Sales Order'
+#. Label of the sales_partner (Link) field in DocType 'SMS Center'
+#. Label of a Link in the Selling Workspace
+#. Name of a DocType
+#. Label of the sales_partner (Link) field in DocType 'Delivery Note'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:130
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:114
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:196
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:74
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sms_center/sms_center.json
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:16
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:166
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:16
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:45
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Partner"
+msgstr "판매 파트너"
+
+#. Label of the sales_partner (Link) field in DocType 'Sales Partner Item'
+#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json
+msgid "Sales Partner "
+msgstr "판매 파트너 "
+
+#. Name of a report
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.json
+msgid "Sales Partner Commission Summary"
+msgstr "판매 파트너 수수료 요약"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/sales_partner_item/sales_partner_item.json
+msgid "Sales Partner Item"
+msgstr "판매 파트너 품목"
+
+#. Label of the partner_name (Data) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Sales Partner Name"
+msgstr "판매 파트너 이름"
+
+#. Label of the partner_target_details_section_break (Section Break) field in
+#. DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Sales Partner Target"
+msgstr "영업 파트너 대상"
+
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Partner Target Variance Based On Item Group"
+msgstr ""
+
+#. Name of a report
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.json
+msgid "Sales Partner Target Variance based on Item Group"
+msgstr ""
+
+#. Name of a report
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.json
+msgid "Sales Partner Transaction Summary"
+msgstr "판매 파트너 거래 요약"
+
+#. Name of a DocType
+#. Label of the sales_partner_type (Data) field in DocType 'Sales Partner Type'
+#: erpnext/selling/doctype/sales_partner_type/sales_partner_type.json
+msgid "Sales Partner Type"
+msgstr "판매 파트너 유형"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/sales_partners_commission/sales_partners_commission.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Partners Commission"
+msgstr "판매 파트너 수수료"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Sales Payment Summary"
+msgstr "판매 대금 요약"
+
+#. Option for the 'Select Customers By' (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the sales_person (Link) field in DocType 'Process Statement Of
+#. Accounts'
+#. Label of a Link in the CRM Workspace
+#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule
+#. Detail'
+#. Label of the sales_person (Link) field in DocType 'Maintenance Schedule
+#. Item'
+#. Label of the service_person (Link) field in DocType 'Maintenance Visit
+#. Purpose'
+#. Label of the sales_person (Link) field in DocType 'Sales Team'
+#. Label of a Link in the Selling Workspace
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:158
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:136
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:120
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:193
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:80
+#: erpnext/accounts/report/gross_profit/gross_profit.js:50
+#: erpnext/accounts/report/gross_profit/gross_profit.py:402
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+#: erpnext/selling/doctype/sales_team/sales_team.json
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:8
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:68
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:8
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:116
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json
+msgid "Sales Person"
+msgstr "판매원"
+
+#: erpnext/controllers/selling_controller.py:270
+msgid "Sales Person {0} is disabled."
+msgstr ""
+
+#. Name of a report
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.json
+msgid "Sales Person Commission Summary"
+msgstr "영업 사원 수수료 요약"
+
+#. Label of the sales_person_name (Data) field in DocType 'Sales Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Sales Person Name"
+msgstr "판매 담당자 이름"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Person Target Variance Based On Item Group"
+msgstr ""
+
+#. Label of the target_details_section_break (Section Break) field in DocType
+#. 'Sales Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Sales Person Targets"
+msgstr "영업 사원 목표"
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Person-wise Transaction Summary"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:50
+#: erpnext/workspace_sidebar/crm.json
+msgid "Sales Pipeline"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.json
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Sales Pipeline Analytics"
+msgstr ""
+
+#: erpnext/selling/page/sales_funnel/sales_funnel.js:157
+msgid "Sales Pipeline by Stage"
+msgstr ""
+
+#: erpnext/stock/report/item_prices/item_prices.py:58
+msgid "Sales Price List"
+msgstr "판매 가격표"
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/sales_register/sales_register.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Sales Register"
+msgstr "판매 등록"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:28
+msgid "Sales Representative"
+msgstr "영업 담당자"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
+msgid "Sales Return"
+msgstr "판매 반품"
+
+#. Label of the sales_stage (Link) field in DocType 'Opportunity'
+#. Name of a DocType
+#. Label of a Link in the CRM Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/sales_stage/sales_stage.json
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:57
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:69
+#: erpnext/crm/workspace/crm/crm.json erpnext/workspace_sidebar/crm.json
+msgid "Sales Stage"
+msgstr "판매 단계"
+
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:8
+msgid "Sales Summary"
+msgstr "판매 요약"
+
+#. Label of the sales_tax_template (Link) field in DocType 'Tax Rule'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/setup/doctype/company/company.js:149
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Sales Tax Template"
+msgstr ""
+
+#. Label of the sales_tax_withholding_category (Link) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Sales Tax Withholding Category"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Sales Taxes"
+msgstr ""
+
+#. Label of the taxes (Table) field in DocType 'POS Invoice'
+#. Label of the taxes (Table) field in DocType 'Sales Invoice'
+#. Name of a DocType
+#. Label of the taxes (Table) field in DocType 'Sales Taxes and Charges
+#. Template'
+#. Label of the taxes (Table) field in DocType 'Quotation'
+#. Label of the taxes (Table) field in DocType 'Sales Order'
+#. Label of the taxes (Table) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Sales Taxes and Charges"
+msgstr ""
+
+#. Label of the sales_taxes_and_charges_template (Link) field in DocType
+#. 'Payment Entry'
+#. Label of the taxes_and_charges (Link) field in DocType 'POS Invoice'
+#. Label of the taxes_and_charges (Link) field in DocType 'Sales Invoice'
+#. Name of a DocType
+#. Label of the sales_tax_template (Link) field in DocType 'Subscription'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the taxes_and_charges (Link) field in DocType 'Quotation'
+#. Label of the taxes_and_charges (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Label of the taxes_and_charges (Link) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Sales Taxes and Charges Template"
+msgstr ""
+
+#. Label of the section_break2 (Section Break) field in DocType 'POS Invoice'
+#. Label of the sales_team (Table) field in DocType 'POS Invoice'
+#. Label of the sales_team_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the sales_team (Table) field in DocType 'Customer'
+#. Label of the sales_team_tab (Tab Break) field in DocType 'Customer'
+#. Label of the section_break1 (Section Break) field in DocType 'Sales Order'
+#. Label of the sales_team (Table) field in DocType 'Sales Order'
+#. Name of a DocType
+#. Label of the section_break1 (Section Break) field in DocType 'Delivery Note'
+#. Label of the sales_team (Table) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_team/sales_team.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:247
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Sales Team"
+msgstr ""
+
+#: erpnext/selling/report/sales_order_trends/sales_order_trends.py:56
+msgid "Sales Value"
+msgstr "판매 가치"
+
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:25
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:41
+msgid "Sales and Returns"
+msgstr "판매 및 반품"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:216
+msgid "Sales orders are not available for production"
+msgstr ""
+
+#. Label of the expected_value_after_useful_life (Currency) field in DocType
+#. 'Asset Finance Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Salvage Value"
+msgstr ""
+
+#. Label of the salvage_value_percentage (Percent) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Salvage Value Percentage"
+msgstr ""
+
+#: erpnext/accounts/doctype/mode_of_payment/mode_of_payment.py:41
+msgid "Same Company is entered more than once"
+msgstr ""
+
+#. Label of the same_item (Check) field in DocType 'Pricing Rule'
+#. Label of the same_item (Check) field in DocType 'Promotional Scheme Product
+#. Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Same Item"
+msgstr "동일 상품"
+
+#: banking/src/components/features/Settings/Preferences.tsx:69
+msgid "Same day"
+msgstr "당일"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
+msgid "Same item and warehouse combination already entered."
+msgstr "동일한 품목 및 창고 조합이 이미 입력되었습니다."
+
+#: erpnext/buying/utils.py:64
+msgid "Same item cannot be entered multiple times."
+msgstr "동일한 품목을 두 번 입력할 수 없습니다."
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:125
+msgid "Same supplier has been entered multiple times"
+msgstr ""
+
+#. Label of the sample_quantity (Int) field in DocType 'Purchase Receipt Item'
+#. Label of the sample_quantity (Int) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Sample Quantity"
+msgstr "샘플 수량"
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:269
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:535
+msgid "Sample Retention Stock Entry"
+msgstr "샘플 보관 재고 입력"
+
+#. Label of the sample_retention_warehouse (Link) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Sample Retention Warehouse"
+msgstr "시료 보관 창고"
+
+#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
+#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
+#: erpnext/public/js/controllers/transaction.js:2848
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Sample Size"
+msgstr "표본 크기"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
+msgid "Sample quantity {0} cannot be more than received quantity {1}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:7
+msgid "Sanctioned"
+msgstr "승인됨"
+
+#. Option for the 'Action on New Invoice' (Select) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Save Changes and Load New Invoice"
+msgstr "변경 사항을 저장하고 새 송장을 불러오세요"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:47
+msgid "Save the currently opened form"
+msgstr "현재 열려 있는 양식을 저장하세요"
+
+#: erpnext/templates/includes/order/order_taxes.html:34
+#: erpnext/templates/includes/order/order_taxes.html:85
+msgid "Savings"
+msgstr "저금"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Sazhen"
+msgstr "사젠"
+
+#. Label of the scan_barcode (Data) field in DocType 'POS Invoice'
+#. Label of the scan_barcode (Data) field in DocType 'Purchase Invoice'
+#. Label of the scan_barcode (Data) field in DocType 'Sales Invoice'
+#. Label of the scan_barcode (Data) field in DocType 'Purchase Order'
+#. Label of the scan_barcode (Data) field in DocType 'Quotation'
+#. Label of the scan_barcode (Data) field in DocType 'Sales Order'
+#. Label of the scan_barcode (Data) field in DocType 'Delivery Note'
+#. Label of the scan_barcode (Data) field in DocType 'Material Request'
+#. Label of the scan_barcode (Data) field in DocType 'Pick List'
+#. Label of the scan_barcode (Data) field in DocType 'Purchase Receipt'
+#. Label of the scan_barcode (Data) field in DocType 'Stock Entry'
+#. Label of the scan_barcode (Data) field in DocType 'Stock Reconciliation'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/public/js/utils/barcode_scanner.js:236
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Scan Barcode"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:171
+msgid "Scan Batch No"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:127
+#: erpnext/manufacturing/doctype/workstation/workstation.js:154
+msgid "Scan Job Card Qrcode"
+msgstr ""
+
+#. Label of the scan_mode (Check) field in DocType 'Pick List'
+#. Label of the scan_mode (Check) field in DocType 'Stock Reconciliation'
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "Scan Mode"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:156
+msgid "Scan Serial No"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:200
+msgid "Scan barcode for item {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js:111
+msgid "Scan mode enabled, existing quantity will not be fetched."
+msgstr ""
+
+#. Label of the scanned_cheque (Attach) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Scanned Cheque"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:268
+msgid "Scanned Quantity"
+msgstr ""
+
+#. Label of the schedule_date (Date) field in DocType 'Depreciation Schedule'
+#. Label of the schedule_date (Datetime) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#: erpnext/assets/doctype/asset/asset.js:378
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Schedule Date"
+msgstr "일정 날짜"
+
+#: erpnext/public/js/controllers/transaction.js:492
+msgid "Schedule Name"
+msgstr ""
+
+#. Label of the scheduled_date (Date) field in DocType 'Maintenance Schedule
+#. Detail'
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.js:118
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+msgid "Scheduled Date"
+msgstr "예정일"
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:427
+msgid "Scheduled Date is required."
+msgstr "예약 날짜를 입력해주세요."
+
+#. Label of the scheduled_time (Datetime) field in DocType 'Appointment'
+#. Label of the scheduled_time_section (Section Break) field in DocType 'Job
+#. Card'
+#. Label of the scheduled_time_tab (Tab Break) field in DocType 'Job Card'
+#: erpnext/crm/doctype/appointment/appointment.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Scheduled Time"
+msgstr "예정된 시간"
+
+#. Label of the scheduled_time_logs (Table) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Scheduled Time Logs"
+msgstr "예정된 시간 기록"
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:115
+msgid "Scheduled job disabled. Transactions will not be auto classified."
+msgstr ""
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:115
+msgid "Scheduled job enabled. Transactions will be auto classified."
+msgstr "예약 작업이 활성화되었습니다. 거래는 자동으로 분류됩니다."
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:188
+msgid "Scheduler is Inactive. Can't trigger job now."
+msgstr ""
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.py:240
+msgid "Scheduler is Inactive. Can't trigger jobs now."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:681
+msgid "Scheduler is inactive. Cannot enqueue job."
+msgstr ""
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.py:39
+msgid "Scheduler is inactive. Cannot merge accounts."
+msgstr ""
+
+#. Label of the schedules (Table) field in DocType 'Maintenance Schedule'
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+msgid "Schedules"
+msgstr "일정"
+
+#. Label of the scheduling_section (Section Break) field in DocType 'Stock
+#. Reposting Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Scheduling"
+msgstr "일정 관리"
+
+#: erpnext/utilities/doctype/rename_tool/rename_tool.js:23
+msgid "Scheduling..."
+msgstr "일정 조정..."
+
+#. Label of the school_univ (Small Text) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "School/University"
+msgstr "학교/대학교"
+
+#. Label of the score (Percent) field in DocType 'Supplier Scorecard Scoring
+#. Criteria'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Score"
+msgstr "점수"
+
+#. Label of the scorecard_actions (Section Break) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Scorecard Actions"
+msgstr ""
+
+#. Description of the 'Weighting Function' (Small Text) field in DocType
+#. 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Scorecard variables can be used, as well as:\n"
+"{total_score} (the total score from that period),\n"
+"{period_number} (the number of periods to present day)\n"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:10
+msgid "Scorecards"
+msgstr ""
+
+#. Label of the criteria (Table) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Scoring Criteria"
+msgstr "채점 기준"
+
+#. Label of the scoring_setup (Section Break) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Scoring Setup"
+msgstr "득점 설정"
+
+#. Label of the standings (Table) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Scoring Standings"
+msgstr "득점 순위"
+
+#. Option for the 'Type' (Select) field in DocType 'BOM Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Job Card Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Stock Entry Detail'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Option for the 'Type' (Select) field in DocType 'Subcontracting Receipt
+#. Item'
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Scrap"
+msgstr "권투 시합"
+
+#: erpnext/assets/doctype/asset/asset.js:163
+msgid "Scrap Asset"
+msgstr "폐기 자산"
+
+#. Label of the scrap_warehouse (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Scrap Warehouse"
+msgstr "고철 창고"
+
+#: erpnext/assets/doctype/asset/depreciation.py:389
+msgid "Scrap date cannot be before purchase date"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:16
+msgid "Scrapped"
+msgstr "폐기됨"
+
+#. Label of the search_apis_sb (Section Break) field in DocType 'Support
+#. Settings'
+#. Label of the search_apis (Table) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Search APIs"
+msgstr "검색 API"
+
+#: erpnext/stock/report/bom_search/bom_search.js:38
+msgid "Search Sub Assemblies"
+msgstr ""
+
+#. Label of the search_term_param_name (Data) field in DocType 'Support Search
+#. Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Search Term Param Name"
+msgstr "검색어 매개변수 이름"
+
+#: banking/src/components/common/AccountsDropdown.tsx:155
+msgid "Search account..."
+msgstr "계정 검색..."
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:323
+msgid "Search by customer name, phone, email."
+msgstr "고객 이름, 전화번호, 이메일로 검색하세요."
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_list.js:60
+msgid "Search by invoice id or customer name"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:205
+msgid "Search by item code, serial number or barcode"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/CompanySelector.tsx:64
+msgid "Search company..."
+msgstr "회사 검색..."
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:338
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:146
+msgid "Search transactions"
+msgstr "검색 거래"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Second"
+msgstr ""
+
+#. Label of the second_email (Time) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Second Email"
+msgstr "두 번째 이메일"
+
+#. Label of the item_code (Link) field in DocType 'Job Card Secondary Item'
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+msgid "Secondary Item Code"
+msgstr "보조 품목 코드"
+
+#. Label of the item_name (Data) field in DocType 'Job Card Secondary Item'
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+msgid "Secondary Item Name"
+msgstr ""
+
+#. Label of the secondary_items (Table) field in DocType 'BOM'
+#. Label of the secondary_items (Table) field in DocType 'Job Card'
+#. Label of the secondary_items_section (Tab Break) field in DocType 'Job Card'
+#. Label of the secondary_items (Table) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Secondary Items"
+msgstr "보조 항목"
+
+#. Label of the secondary_items_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Secondary Items Cost"
+msgstr "보조 품목 비용"
+
+#. Label of the base_secondary_items_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Secondary Items Cost (Company Currency)"
+msgstr "부가 항목 비용(회사 통화)"
+
+#. Label of the secondary_items_cost_per_qty (Currency) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Secondary Items Cost Per Qty"
+msgstr ""
+
+#. Label of the scrap_items_generated_section (Section Break) field in DocType
+#. 'Subcontracting Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Secondary Items Generated"
+msgstr ""
+
+#. Label of the secondary_party (Dynamic Link) field in DocType 'Party Link'
+#: erpnext/accounts/doctype/party_link/party_link.json
+msgid "Secondary Party"
+msgstr "보조 정당"
+
+#. Label of the secondary_role (Link) field in DocType 'Party Link'
+#: erpnext/accounts/doctype/party_link/party_link.json
+msgid "Secondary Role"
+msgstr "보조 역할"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:29
+msgid "Secretary"
+msgstr "비서"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
+msgid "Secured Loans"
+msgstr "담보 대출"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:42
+msgid "Securities & Commodity Exchanges"
+msgstr "증권 및 상품 거래소"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:31
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:44
+msgid "Securities and Deposits"
+msgstr "증권 및 예금"
+
+#: erpnext/templates/pages/help.html:29
+msgid "See All Articles"
+msgstr "모든 기사 보기"
+
+#: erpnext/templates/pages/help.html:56
+msgid "See all open tickets"
+msgstr "모든 열린 티켓 보기"
+
+#: banking/src/components/common/AccountsDropdown.tsx:132
+#: banking/src/components/common/AccountsDropdown.tsx:148
+msgid "Select Account"
+msgstr "계정을 선택하세요"
+
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.py:23
+msgid "Select Accounting Dimension."
+msgstr "회계 차원을 선택하세요."
+
+#: erpnext/public/js/utils.js:555
+msgid "Select Alternate Item"
+msgstr "대체 항목을 선택하세요"
+
+#: erpnext/selling/doctype/quotation/quotation.js:341
+msgid "Select Alternative Items for Sales Order"
+msgstr "판매 주문에 사용할 대체 품목을 선택하세요"
+
+#: erpnext/stock/doctype/item/item.js:801
+msgid "Select Attribute Values"
+msgstr "속성 값을 선택하세요"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1334
+msgid "Select BOM"
+msgstr "BOM을 선택하세요"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1311
+msgid "Select BOM and Qty for Production"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:234
+#: erpnext/public/js/utils/sales_common.js:443
+#: erpnext/stock/doctype/pick_list/pick_list.js:390
+msgid "Select Batch No"
+msgstr "배치 번호를 선택하세요"
+
+#. Label of the billing_address (Link) field in DocType 'Purchase Invoice'
+#. Label of the billing_address (Link) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Select Billing Address"
+msgstr "청구지 주소를 선택하세요"
+
+#: erpnext/public/js/stock_analytics.js:61
+msgid "Select Brand..."
+msgstr "브랜드를 선택하세요..."
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:110
+msgid "Select Columns and Filters"
+msgstr "열 및 필터 선택"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:156
+msgid "Select Company"
+msgstr "회사 선택"
+
+#: erpnext/public/js/print.js:118
+msgid "Select Company Address"
+msgstr "회사 주소를 선택하세요"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
+msgid "Select Corrective Operation"
+msgstr "교정 작업을 선택하십시오"
+
+#. Label of the customer_collection (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Select Customers By"
+msgstr "고객 선택 기준"
+
+#: erpnext/setup/doctype/employee/employee.js:244
+msgid "Select Date of Birth. This will validate Employees age and prevent hiring of under-age staff."
+msgstr "생년월일을 선택하세요. 이를 통해 직원의 나이를 확인하고 미성년자 채용을 방지할 수 있습니다."
+
+#: erpnext/setup/doctype/employee/employee.js:251
+msgid "Select Date of joining. It will have impact on the first salary calculation, Leave allocation on pro-rata bases."
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:116
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:147
+msgid "Select Default Supplier"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:276
+msgid "Select Difference Account"
+msgstr ""
+
+#: erpnext/accounts/report/dimension_wise_accounts_balance_report/dimension_wise_accounts_balance_report.js:57
+msgid "Select Dimension"
+msgstr "치수를 선택하세요"
+
+#. Label of the dispatch_address (Link) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Select Dispatch Address "
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
+msgid "Select Employees"
+msgstr "직원 선택"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:174
+#: erpnext/selling/doctype/sales_order/sales_order.js:862
+msgid "Select Finished Good"
+msgstr "완제품을 선택하세요"
+
+#. Label of the select_items (Table MultiSelect) field in DocType 'Master
+#. Production Schedule'
+#. Label of the selected_items (Table MultiSelect) field in DocType 'Sales
+#. Forecast'
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/sales_forecast/sales_forecast.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1677
+#: erpnext/selling/doctype/sales_order/sales_order.js:1705
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:492
+msgid "Select Items"
+msgstr "항목을 선택하세요"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1563
+msgid "Select Items based on Delivery Date"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:2887
+msgid "Select Items for Quality Inspection"
+msgstr ""
+
+#. Label of the select_items_to_manufacture_section (Section Break) field in
+#. DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1363
+msgid "Select Items to Manufacture"
+msgstr "제조할 품목을 선택하세요"
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:499
+msgid "Select Items to Receive"
+msgstr "받으실 물품을 선택하세요"
+
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:87
+msgid "Select Items up to Delivery Date"
+msgstr ""
+
+#. Label of the supplier_address (Link) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Select Job Worker Address"
+msgstr "작업자 주소를 선택하세요"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1203
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:955
+msgid "Select Loyalty Program"
+msgstr "로열티 프로그램을 선택하세요"
+
+#: erpnext/public/js/controllers/transaction.js:478
+msgid "Select Payment Schedule"
+msgstr "지불 일정을 선택하세요"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:411
+msgid "Select Possible Supplier"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
+#: erpnext/stock/doctype/pick_list/pick_list.js:219
+msgid "Select Quantity"
+msgstr "수량을 선택하세요"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:234
+#: erpnext/public/js/utils/sales_common.js:443
+#: erpnext/stock/doctype/pick_list/pick_list.js:390
+msgid "Select Serial No"
+msgstr "일련번호를 선택하세요"
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.js:237
+#: erpnext/public/js/utils/sales_common.js:446
+#: erpnext/stock/doctype/pick_list/pick_list.js:393
+msgid "Select Serial and Batch"
+msgstr ""
+
+#. Label of the shipping_address (Link) field in DocType 'Purchase Invoice'
+#. Label of the shipping_address (Link) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Select Shipping Address"
+msgstr "배송 주소를 선택하세요"
+
+#. Label of the supplier_address (Link) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Select Supplier Address"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.js:150
+msgid "Select Target Warehouse"
+msgstr "대상 창고를 선택하세요"
+
+#: erpnext/www/book_appointment/index.js:73
+msgid "Select Time"
+msgstr "시간을 선택하세요"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:28
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:28
+msgid "Select View"
+msgstr "보기 선택"
+
+#: erpnext/public/js/bank_reconciliation_tool/dialog_manager.js:251
+msgid "Select Vouchers to Match"
+msgstr "해당되는 상품권을 선택하세요"
+
+#: erpnext/public/js/stock_analytics.js:72
+msgid "Select Warehouse..."
+msgstr "창고를 선택하세요..."
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:551
+msgid "Select Warehouses to get Stock for Materials Planning"
+msgstr ""
+
+#: erpnext/public/js/communication.js:80
+msgid "Select a Company"
+msgstr "회사를 선택하세요"
+
+#: erpnext/setup/doctype/employee/employee.js:239
+msgid "Select a Company this Employee belongs to."
+msgstr "이 직원이 소속된 회사를 선택하세요."
+
+#: erpnext/buying/doctype/supplier/supplier.js:180
+msgid "Select a Customer"
+msgstr "고객을 선택하세요"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:115
+msgid "Select a Default Priority."
+msgstr "기본 우선순위를 선택하세요."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:146
+msgid "Select a Payment Method."
+msgstr "결제 방법을 선택하세요."
+
+#: erpnext/selling/doctype/customer/customer.js:253
+msgid "Select a Supplier"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:49
+msgid "Select a bank account to reconcile"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:161
+msgid "Select a company"
+msgstr "회사를 선택하세요"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:342
+msgid "Select a transaction to match and reconcile with vouchers"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:607
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:702
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1198
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:588
+msgid "Select all"
+msgstr "모두 선택하세요"
+
+#: erpnext/stock/doctype/item/item.js:1137
+msgid "Select an Item Group."
+msgstr "품목 그룹을 선택하세요."
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:36
+msgid "Select an account to print in account currency"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:21
+msgid "Select an invoice to load summary data"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.js:356
+msgid "Select an item from each set to be used in the Sales Order."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
+
+#: erpnext/public/js/utils/party.js:379
+msgid "Select company first"
+msgstr "먼저 회사를 선택하세요"
+
+#. Description of the 'Parent Sales Person' (Link) field in DocType 'Sales
+#. Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Select company name first."
+msgstr "먼저 회사 이름을 선택하세요."
+
+#: banking/src/components/ui/form-elements.tsx:159
+msgid "Select date"
+msgstr "날짜를 선택하세요"
+
+#: erpnext/controllers/accounts_controller.py:2989
+msgid "Select finance book for the item {0} at row {1}"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_selector.js:215
+msgid "Select item group"
+msgstr "항목 그룹을 선택하세요"
+
+#: banking/src/components/features/Settings/Preferences.tsx:66
+msgid "Select number of days"
+msgstr "일수를 선택하세요"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:626
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:722
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1215
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:632
+msgid "Select row {0}"
+msgstr "행 선택 {0}"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:473
+msgid "Select template item"
+msgstr ""
+
+#. Description of the 'Bank Account' (Link) field in DocType 'Bank Clearance'
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.json
+msgid "Select the Bank Account to reconcile."
+msgstr "대조할 은행 계좌를 선택하세요."
+
+#: erpnext/manufacturing/doctype/operation/operation.js:25
+msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
+msgid "Select the Item to be manufactured."
+msgstr "제조할 품목을 선택하십시오."
+
+#: erpnext/manufacturing/doctype/bom/bom.js:985
+msgid "Select the Item to be manufactured. The Item name, UoM, Company, and Currency will be fetched automatically."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:432
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:445
+msgid "Select the Warehouse"
+msgstr "창고를 선택하세요"
+
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.py:47
+msgid "Select the customer or supplier."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:931
+msgid "Select the date"
+msgstr "날짜를 선택하세요"
+
+#: erpnext/www/book_appointment/index.html:16
+msgid "Select the date and your timezone"
+msgstr "날짜와 시간대를 선택하세요"
+
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:1004
+msgid "Select the raw materials (Items) required to manufacture the Item"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:528
+msgid "Select variant item code for the template item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:707
+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 "판매 주문 또는 자재 요청에서 품목을 가져올지 선택하십시오. 현재는 판매 주문 을 선택하십시오.\n"
+" 생산 계획을 수동으로 생성하여 제조할 품목을 선택할 수도 있습니다."
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.js:65
+msgid "Select your weekly off day"
+msgstr ""
+
+#. Description of the 'Primary Address and Contact' (Section Break) field in
+#. DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select, to make the customer searchable with these fields"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
+msgid "Selected POS Opening Entry should be open."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
+msgid "Selected Price List should have buying and selling fields checked."
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.py:121
+msgid "Selected Print Format does not exist."
+msgstr "선택한 인쇄 형식이 존재하지 않습니다."
+
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:163
+msgid "Selected Serial and Batch Bundle entries have been fixed."
+msgstr ""
+
+#. Label of the repost_vouchers (Table) field in DocType 'Repost Payment
+#. Ledger'
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+msgid "Selected Vouchers"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:43
+msgid "Selected date is"
+msgstr "선택한 날짜는"
+
+#: erpnext/public/js/bulk_transaction_processing.js:34
+msgid "Selected document must be in submitted state"
+msgstr ""
+
+#. Option for the 'Pickup Type' (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Self delivery"
+msgstr "직접 배송"
+
+#: erpnext/assets/doctype/asset/asset.js:642
+#: erpnext/stock/doctype/batch/batch_dashboard.py:9
+#: erpnext/stock/doctype/item/item_dashboard.py:20
+msgid "Sell"
+msgstr "팔다"
+
+#: erpnext/assets/doctype/asset/asset.js:171
+#: erpnext/assets/doctype/asset/asset.js:631
+msgid "Sell Asset"
+msgstr "자산 매각"
+
+#: erpnext/assets/doctype/asset/asset.js:636
+msgid "Sell Qty"
+msgstr "판매 수량"
+
+#: erpnext/assets/doctype/asset/asset.js:652
+msgid "Sell quantity cannot exceed the asset quantity"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
+msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:648
+msgid "Sell quantity must be greater than zero"
+msgstr ""
+
+#. Label of the selling (Check) field in DocType 'Pricing Rule'
+#. Label of the selling (Check) field in DocType 'Promotional Scheme'
+#. Option for the 'Shipping Rule Type' (Select) field in DocType 'Shipping
+#. Rule'
+#. Group in Subscription's connections
+#. Label of a Desktop Icon
+#. Option for the 'Order Type' (Select) field in DocType 'Blanket Order'
+#. Name of a Workspace
+#. Label of a Card Break in the Selling Workspace
+#. Group in Incoterm's connections
+#. Label of the selling (Check) field in DocType 'Terms and Conditions'
+#. Label of the selling (Check) field in DocType 'Item Price'
+#. Label of the selling (Check) field in DocType 'Price List'
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/desktop_icon/selling.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/price_list/price_list.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Selling"
+msgstr "판매"
+
+#: erpnext/accounts/report/gross_profit/gross_profit.py:361
+msgid "Selling Amount"
+msgstr "판매 금액"
+
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:48
+msgid "Selling Price List"
+msgstr "판매 가격표"
+
+#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:36
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:54
+msgid "Selling Rate"
+msgstr "판매 가격"
+
+#. Name of a DocType
+#. Label of a Link in the Selling Workspace
+#. Label of a shortcut in the ERPNext Settings Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:258
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Selling Settings"
+msgstr "판매 설정"
+
+#. Title of the Module Onboarding 'Selling Onboarding'
+#: erpnext/selling/module_onboarding/selling_onboarding/selling_onboarding.json
+msgid "Selling Setup"
+msgstr "판매 설정"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:214
+msgid "Selling must be checked, if Applicable For is selected as {0}"
+msgstr ""
+
+#. Label of the semi_finished_good__finished_good_section (Section Break) field
+#. in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Semi Finished Good / Finished Good"
+msgstr ""
+
+#. Label of the finished_good (Link) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Semi Finished Goods / Finished Goods"
+msgstr ""
+
+#. Label of the send_after_days (Int) field in DocType 'Campaign Email
+#. Schedule'
+#: erpnext/crm/doctype/campaign_email_schedule/campaign_email_schedule.json
+msgid "Send After (days)"
+msgstr "(일) 후에 발송"
+
+#. Label of the send_attached_files (Check) field in DocType 'Request for
+#. Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Send Attached Files"
+msgstr "첨부 파일 보내기"
+
+#. Label of the send_document_print (Check) field in DocType 'Request for
+#. Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Send Document Print"
+msgstr "문서 전송 인쇄"
+
+#. Label of the send_email (Check) field in DocType 'Request for Quotation
+#. Supplier'
+#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json
+msgid "Send Email"
+msgstr "이메일 보내기"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.js:11
+msgid "Send Emails"
+msgstr "이메일 보내기"
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:48
+msgid "Send Emails to Suppliers"
+msgstr ""
+
+#. Label of the send_sms (Button) field in DocType 'SMS Center'
+#: erpnext/public/js/controllers/transaction.js:697
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Send SMS"
+msgstr "SMS 보내기"
+
+#. Label of the send_to (Select) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Send To"
+msgstr "보내기"
+
+#. Label of the primary_mandatory (Check) field in DocType 'Process Statement
+#. Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+msgid "Send To Primary Contact"
+msgstr "주요 연락처로 보내기"
+
+#. Description of a DocType
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Send regular summary reports via Email."
+msgstr "정기적인 요약 보고서를 이메일로 보내드립니다."
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:102
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Send to Subcontractor"
+msgstr ""
+
+#. Label of the send_with_attachment (Check) field in DocType 'Delivery
+#. Settings'
+#: erpnext/stock/doctype/delivery_settings/delivery_settings.json
+msgid "Send with Attachment"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Separate columns for withdrawal and deposit"
+msgstr ""
+
+#. Label of the sequence_id (Int) field in DocType 'BOM Operation'
+#. Label of the sequence_id (Int) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Sequence ID"
+msgstr ""
+
+#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call
+#. Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+msgid "Sequential"
+msgstr "잇달아 일어나는"
+
+#. Label of the serial_and_batch_item_settings_tab (Tab Break) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Serial & Batch Item"
+msgstr "일련번호 및 배치 품목"
+
+#. Label of the section_break_7 (Section Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Serial & Batch Item Settings"
+msgstr ""
+
+#. Label of the section_break_jcmx (Section Break) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Serial / Batch"
+msgstr "일련번호/배치"
+
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock
+#. Reconciliation Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting
+#. Receipt Supplied Item'
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Serial / Batch Bundle"
+msgstr "시리얼/배치 번들"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:489
+msgid "Serial / Batch Bundle Missing"
+msgstr "시리얼/배치 번들 누락"
+
+#. Label of the serial_no_and_batch_no_tab (Section Break) field in DocType
+#. 'Serial and Batch Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+msgid "Serial / Batch No"
+msgstr "일련번호/배치번호"
+
+#: erpnext/public/js/utils.js:217
+msgid "Serial / Batch Nos"
+msgstr "일련번호/배치번호"
+
+#. Label of the serial_no (Text) field in DocType 'POS Invoice Item'
+#. Label of the serial_no (Text) field in DocType 'Purchase Invoice Item'
+#. Label of the serial_no (Text) field in DocType 'Sales Invoice Item'
+#. Label of the serial_no (Text) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the serial_no (Small Text) field in DocType 'Asset Repair Consumed
+#. Item'
+#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule
+#. Detail'
+#. Label of the serial_no (Small Text) field in DocType 'Maintenance Schedule
+#. Item'
+#. Label of the serial_no (Link) field in DocType 'Maintenance Visit Purpose'
+#. Label of the serial_no (Small Text) field in DocType 'Job Card'
+#. Label of the serial_no (Small Text) field in DocType 'Installation Note
+#. Item'
+#. Label of the serial_no (Text) field in DocType 'Delivery Note Item'
+#. Label of the serial_no (Text) field in DocType 'Packed Item'
+#. Label of the serial_no (Small Text) field in DocType 'Pick List Item'
+#. Label of the serial_no (Text) field in DocType 'Purchase Receipt Item'
+#. Label of the serial_no (Link) field in DocType 'Serial and Batch Entry'
+#. Name of a DocType
+#. Label of the serial_no (Data) field in DocType 'Serial No'
+#. Label of the serial_no (Text) field in DocType 'Stock Entry Detail'
+#. Label of the serial_no (Long Text) field in DocType 'Stock Ledger Entry'
+#. Label of the serial_no (Long Text) field in DocType 'Stock Reconciliation
+#. Item'
+#. Label of a Link in the Stock Workspace
+#. Label of the serial_no (Small Text) field in DocType 'Subcontracting Receipt
+#. Item'
+#. Label of the serial_no (Text) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#. Label of the serial_no (Link) field in DocType 'Warranty Claim'
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+#: erpnext/maintenance/doctype/maintenance_schedule_detail/maintenance_schedule_detail.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
+#: erpnext/public/js/controllers/transaction.js:2861
+#: erpnext/public/js/utils/serial_no_batch_selector.js:433
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:189
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:65
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:151
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:37
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial No"
+msgstr "일련번호"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:140
+msgid "Serial No (In/Out)"
+msgstr "일련번호 (입고/출고)"
+
+#. Label of the serial_no_batch (Section Break) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Serial No / Batch"
+msgstr "일련번호/배치번호"
+
+#: erpnext/controllers/selling_controller.py:106
+msgid "Serial No Already Assigned"
+msgstr ""
+
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:33
+msgid "Serial No Count"
+msgstr "일련번호 개수"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial No Ledger"
+msgstr "일련번호 원장"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:271
+msgid "Serial No Range"
+msgstr "일련번호 범위"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2686
+msgid "Serial No Reserved"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:494
+msgid "Serial No Series Overlap"
+msgstr "일련번호 시리즈 중복"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#: erpnext/stock/report/serial_no_service_contract_expiry/serial_no_service_contract_expiry.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Serial No Service Contract Expiry"
+msgstr "일련번호 서비스 계약 만료일"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/serial_no_status/serial_no_status.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial No Status"
+msgstr "일련번호 상태"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/serial_no_warranty_expiry/serial_no_warranty_expiry.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial No Warranty Expiry"
+msgstr ""
+
+#. Label of the serial_no_and_batch_section (Section Break) field in DocType
+#. 'Pick List Item'
+#. Label of the serial_no_and_batch_section (Section Break) field in DocType
+#. 'Stock Reconciliation Item'
+#. Label of a Card Break in the Stock Workspace
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Serial No and Batch"
+msgstr "일련번호 및 배치 번호"
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:34
+msgid "Serial No and Batch Selector cannot be use when Use Serial / Batch Fields is enabled."
+msgstr "'일련번호/배치 필드 사용' 옵션이 활성화된 경우 일련번호 및 배치 선택기를 사용할 수 없습니다."
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial No and Batch Traceability"
+msgstr "일련번호 및 배치 추적 기능"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1179
+msgid "Serial No is mandatory"
+msgstr ""
+
+#: erpnext/selling/doctype/installation_note/installation_note.py:77
+msgid "Serial No is mandatory for Item {0}"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:604
+msgid "Serial No {0} already exists"
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:342
+msgid "Serial No {0} already scanned"
+msgstr ""
+
+#: erpnext/selling/doctype/installation_note/installation_note.py:94
+msgid "Serial No {0} does not belong to Delivery Note {1}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:321
+msgid "Serial No {0} does not belong to Item {1}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.py:52
+#: erpnext/selling/doctype/installation_note/installation_note.py:84
+msgid "Serial No {0} does not exist"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:3477
+msgid "Serial No {0} does not exists"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:378
+msgid "Serial No {0} is already Delivered. You cannot use them again in Manufacture / Repack entry."
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:435
+msgid "Serial No {0} is already added"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:103
+msgid "Serial No {0} is already assigned to customer {1}. Can only be returned against the customer {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:483
+msgid "Serial No {0} is not present in the {1} {2}, hence you can't return it against the {1} {2}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:338
+msgid "Serial No {0} is under maintenance contract upto {1}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:331
+msgid "Serial No {0} is under warranty upto {1}"
+msgstr ""
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:317
+msgid "Serial No {0} not found"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:855
+msgid "Serial No: {0} has already been transacted into another POS Invoice."
+msgstr "일련번호: {0} 는 이미 다른 POS 송장에 반영되었습니다."
+
+#: erpnext/public/js/utils/barcode_scanner.js:292
+#: erpnext/public/js/utils/serial_no_batch_selector.js:16
+#: erpnext/public/js/utils/serial_no_batch_selector.js:201
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:50
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:169
+msgid "Serial Nos"
+msgstr "일련번호"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:20
+#: erpnext/public/js/utils/serial_no_batch_selector.js:205
+msgid "Serial Nos / Batch Nos"
+msgstr ""
+
+#. Label of the serial_nos_and_batches (Section Break) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Serial Nos / Batches"
+msgstr "일련번호/배치"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1958
+msgid "Serial Nos are created successfully"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2296
+msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
+msgstr "일련번호는 재고 예약 항목에 예약되어 있으므로, 진행하기 전에 예약을 해제해야 합니다."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:384
+msgid "Serial Nos {0} are already Delivered. You cannot use them again in Manufacture / Repack entry."
+msgstr ""
+
+#. Label of the serial_no_series (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Serial Number Series"
+msgstr "일련번호 시리즈"
+
+#. Label of the item_details_tab (Tab Break) field in DocType 'Serial and Batch
+#. Bundle'
+#. Option for the 'Reservation Based On' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Serial and Batch"
+msgstr ""
+
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'POS Invoice
+#. Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset
+#. Capitalization Stock Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Asset Repair
+#. Consumed Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Maintenance
+#. Schedule Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Job Card'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Installation
+#. Note Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Delivery Note
+#. Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Packed Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Pick List
+#. Item'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Purchase
+#. Receipt Item'
+#. Name of a DocType
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Stock Ledger
+#. Entry'
+#. Label of the serial_and_batch_bundle (Link) field in DocType 'Subcontracting
+#. Receipt Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+#: erpnext/maintenance/doctype/maintenance_schedule_item/maintenance_schedule_item.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Serial and Batch Bundle"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2194
+msgid "Serial and Batch Bundle created"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:2266
+msgid "Serial and Batch Bundle updated"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:201
+msgid "Serial and Batch Bundle {0} is already used in {1} {2}."
+msgstr "직렬 및 배치 번들 {0} 은 이미 {1} {2}에서 사용되었습니다."
+
+#: erpnext/stock/serial_batch_bundle.py:394
+msgid "Serial and Batch Bundle {0} is not submitted"
+msgstr ""
+
+#. Label of the section_break_45 (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Serial and Batch Details"
+msgstr "일련번호 및 배치 정보"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+msgid "Serial and Batch Entry"
+msgstr "일련번호 및 배치 입력"
+
+#. Label of the section_break_40 (Section Break) field in DocType 'Delivery
+#. Note Item'
+#. Label of the section_break_45 (Section Break) field in DocType 'Purchase
+#. Receipt Item'
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Serial and Batch No"
+msgstr "일련번호 및 배치 번호"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:152
+msgid "Serial and Batch No for Item Disabled"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:53
+msgid "Serial and Batch Nos"
+msgstr "일련번호 및 배치 번호"
+
+#. Description of the 'Auto Reserve Serial and Batch Nos' (Check) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Serial and Batch Nos will be auto-reserved based on Pick Serial / Batch Based On "
+msgstr ""
+
+#. Label of the serial_and_batch_reservation_section (Tab Break) field in
+#. DocType 'Stock Reservation Entry'
+#. Label of the serial_and_batch_reservation_section (Section Break) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Serial and Batch Reservation"
+msgstr "일련번호 및 배치 예약"
+
+#. Name of a report
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.json
+msgid "Serial and Batch Summary"
+msgstr ""
+
+#: erpnext/stock/utils.py:407
+msgid "Serial number {0} entered more than once"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_item_details.js:451
+msgid "Serial numbers unavailable for Item {0} under warehouse {1}. Please try changing warehouse."
+msgstr "창고 {1}에서 품목 {0} 의 일련 번호를 찾을 수 없습니다. 창고를 변경해 보세요."
+
+#. Label of the naming_series (Select) field in DocType 'Bank Transaction'
+#. Label of the naming_series (Select) field in DocType 'Budget'
+#. Label of the naming_series (Select) field in DocType 'Cashier Closing'
+#. Label of the naming_series (Select) field in DocType 'Dunning'
+#. Label of the naming_series (Select) field in DocType 'Journal Entry'
+#. Label of the naming_series (Select) field in DocType 'Journal Entry
+#. Template'
+#. Label of the naming_series (Select) field in DocType 'Payment Entry'
+#. Label of the naming_series (Select) field in DocType 'Payment Order'
+#. Label of the naming_series (Select) field in DocType 'Payment Request'
+#. Label of the naming_series (Select) field in DocType 'POS Invoice'
+#. Label of the naming_series (Select) field in DocType 'Purchase Invoice'
+#. Label of the naming_series (Select) field in DocType 'Sales Invoice'
+#. Label of the naming_series (Select) field in DocType 'Asset'
+#. Label of the naming_series (Select) field in DocType 'Asset Capitalization'
+#. Label of the naming_series (Select) field in DocType 'Asset Maintenance Log'
+#. Label of the naming_series (Select) field in DocType 'Asset Repair'
+#. Label of the naming_series (Select) field in DocType 'Purchase Order'
+#. Label of the naming_series (Select) field in DocType 'Request for Quotation'
+#. Label of the naming_series (Select) field in DocType 'Supplier'
+#. Label of the naming_series (Select) field in DocType 'Supplier Quotation'
+#. Label of the naming_series (Select) field in DocType 'Lead'
+#. Label of the naming_series (Select) field in DocType 'Opportunity'
+#. Label of the naming_series (Select) field in DocType 'Maintenance Schedule'
+#. Label of the naming_series (Select) field in DocType 'Maintenance Visit'
+#. Label of the naming_series (Select) field in DocType 'Blanket Order'
+#. Label of the naming_series (Select) field in DocType 'Work Order'
+#. Label of the naming_series (Select) field in DocType 'Project'
+#. Label of the naming_series (Data) field in DocType 'Project Update'
+#. Label of the naming_series (Select) field in DocType 'Timesheet'
+#. Label of the naming_series (Select) field in DocType 'Customer'
+#. Label of the naming_series (Select) field in DocType 'Installation Note'
+#. Label of the naming_series (Select) field in DocType 'Quotation'
+#. Label of the naming_series (Select) field in DocType 'Sales Order'
+#. Label of the naming_series (Select) field in DocType 'Driver'
+#. Label of the naming_series (Select) field in DocType 'Employee'
+#. Label of the naming_series (Select) field in DocType 'Delivery Note'
+#. Label of the naming_series (Select) field in DocType 'Delivery Trip'
+#. Label of the naming_series (Select) field in DocType 'Item'
+#. Label of the naming_series (Select) field in DocType 'Landed Cost Voucher'
+#. Label of the naming_series (Select) field in DocType 'Material Request'
+#. Label of the naming_series (Select) field in DocType 'Packing Slip'
+#. Label of the naming_series (Select) field in DocType 'Pick List'
+#. Label of the naming_series (Select) field in DocType 'Purchase Receipt'
+#. Label of the naming_series (Select) field in DocType 'Quality Inspection'
+#. Label of the naming_series (Select) field in DocType 'Stock Entry'
+#. Label of the naming_series (Select) field in DocType 'Stock Reconciliation'
+#. Label of the naming_series (Select) field in DocType 'Subcontracting Inward
+#. Order'
+#. Label of the naming_series (Select) field in DocType 'Subcontracting Order'
+#. Label of the naming_series (Select) field in DocType 'Subcontracting
+#. Receipt'
+#. Label of the naming_series (Select) field in DocType 'Issue'
+#. Label of the naming_series (Select) field in DocType 'Warranty Claim'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.js:659
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/project_update/project_update.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/public/js/utils/naming_series.js:34
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Series"
+msgstr "시리즈"
+
+#. Label of the series_for_depreciation_entry (Data) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Series for Asset Depreciation Entry (Journal Entry)"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier/supplier.py:143
+msgid "Series is mandatory"
+msgstr ""
+
+#. Label of the service_address (Small Text) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Service Address"
+msgstr "서비스 주소"
+
+#. Label of the service_cost_per_qty (Currency) field in DocType
+#. 'Subcontracting Order Item'
+#. Label of the service_cost_per_qty (Currency) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Service Cost Per Qty"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/support/doctype/service_day/service_day.json
+msgid "Service Day"
+msgstr "봉사의 날"
+
+#. Label of the service_end_date (Date) field in DocType 'POS Invoice Item'
+#. Label of the end_date (Date) field in DocType 'Process Deferred Accounting'
+#. Label of the service_end_date (Date) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the service_end_date (Date) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:405
+msgid "Service End Date"
+msgstr "서비스 종료일"
+
+#. Label of the service_expense_account (Link) field in DocType 'Company'
+#. Label of the service_expense_account (Link) field in DocType 'Subcontracting
+#. Receipt Item'
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Service Expense Account"
+msgstr "서비스 비용 계정"
+
+#. Label of the service_items_total (Currency) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Service Expense Total Amount"
+msgstr "서비스 비용 총액"
+
+#. Label of the service_expenses_section (Section Break) field in DocType
+#. 'Asset Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Service Expenses"
+msgstr "서비스 비용"
+
+#. Label of the service_item (Link) field in DocType 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Service Item"
+msgstr "서비스 항목"
+
+#. Label of the service_item_qty (Float) field in DocType 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Service Item Qty"
+msgstr "서비스 품목 수량"
+
+#. Description of the 'Conversion Factor' (Float) field in DocType
+#. 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Service Item Qty / Finished Good Qty"
+msgstr "서비스 품목 수량 / 완제품 수량"
+
+#. Label of the service_item_uom (Link) field in DocType 'Subcontracting BOM'
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+msgid "Service Item UOM"
+msgstr "서비스 항목 단위"
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:64
+msgid "Service Item {0} is disabled."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:67
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:162
+msgid "Service Item {0} must be a non-stock item."
+msgstr "서비스 항목 {0} 은 재고 품목이 아니어야 합니다."
+
+#. Label of the service_items_section (Section Break) field in DocType
+#. 'Subcontracting Inward Order'
+#. Label of the service_items (Table) field in DocType 'Subcontracting Inward
+#. Order'
+#. Label of the service_items_section (Section Break) field in DocType
+#. 'Subcontracting Order'
+#. Label of the service_items (Table) field in DocType 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Service Items"
+msgstr "서비스 항목"
+
+#. Label of the service_level_agreement (Link) field in DocType 'Issue'
+#. Name of a DocType
+#. Label of a Card Break in the Support Workspace
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "Service Level Agreement"
+msgstr "서비스 수준 계약"
+
+#. Label of the service_level_agreement_creation (Datetime) field in DocType
+#. 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Service Level Agreement Creation"
+msgstr "서비스 수준 계약서 작성"
+
+#. Label of the service_level_section (Section Break) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Service Level Agreement Details"
+msgstr "서비스 수준 계약 세부 정보"
+
+#. Label of the agreement_status (Select) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Service Level Agreement Status"
+msgstr "서비스 수준 계약 상태"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:176
+msgid "Service Level Agreement for {0} {1} already exists."
+msgstr "{0} {1} 에 대한 서비스 수준 계약이 이미 존재합니다."
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:771
+msgid "Service Level Agreement has been changed to {0}."
+msgstr ""
+
+#: erpnext/support/doctype/issue/issue.js:79
+msgid "Service Level Agreement was reset."
+msgstr ""
+
+#. Label of the sb_00 (Section Break) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Service Level Agreements"
+msgstr "서비스 수준 계약"
+
+#. Label of the service_level (Data) field in DocType 'Service Level Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Service Level Name"
+msgstr "서비스 레벨 이름"
+
+#. Name of a DocType
+#: erpnext/support/doctype/service_level_priority/service_level_priority.json
+msgid "Service Level Priority"
+msgstr "서비스 수준 우선순위"
+
+#. Label of the service_provider (Select) field in DocType 'Currency Exchange
+#. Settings'
+#. Label of the service_provider (Data) field in DocType 'Shipment'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Service Provider"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Service Received But Not Billed"
+msgstr ""
+
+#. Label of the service_start_date (Date) field in DocType 'POS Invoice Item'
+#. Label of the start_date (Date) field in DocType 'Process Deferred
+#. Accounting'
+#. Label of the service_start_date (Date) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the service_start_date (Date) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.py:397
+msgid "Service Start Date"
+msgstr "서비스 시작일"
+
+#. Label of the service_stop_date (Date) field in DocType 'POS Invoice Item'
+#. Label of the service_stop_date (Date) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the service_stop_date (Date) field in DocType 'Sales Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Service Stop Date"
+msgstr "서비스 중단 날짜"
+
+#: erpnext/accounts/deferred_revenue.py:44
+#: erpnext/public/js/controllers/transaction.js:1775
+msgid "Service Stop Date cannot be after Service End Date"
+msgstr ""
+
+#: erpnext/accounts/deferred_revenue.py:41
+#: erpnext/public/js/controllers/transaction.js:1772
+msgid "Service Stop Date cannot be before Service Start Date"
+msgstr ""
+
+#. Label of the service_items (Table) field in DocType 'Asset Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:52
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:204
+msgid "Services"
+msgstr "서비스"
+
+#. Label of the set_warehouse (Link) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Set Accepted Warehouse"
+msgstr "설정 승인된 창고"
+
+#. Label of the allocate_advances_automatically (Check) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Set Advances and Allocate (FIFO)"
+msgstr ""
+
+#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
+#. Detail'
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Set Basic Rate Manually"
+msgstr ""
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:180
+msgid "Set Default Supplier"
+msgstr ""
+
+#. Label of the set_delivery_warehouse (Link) field in DocType 'Subcontracting
+#. Inward Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Set Delivery Warehouse"
+msgstr "배송 창고 설정"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:717
+msgid "Set Dropship Items Delivered Quantity"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
+msgid "Set Finished Good Quantity"
+msgstr ""
+
+#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Invoice'
+#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Order'
+#. Label of the set_from_warehouse (Link) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Set From Warehouse"
+msgstr "창고에서 세트로 구성"
+
+#. Label of the set_grand_total_to_default_mop (Check) field in DocType 'POS
+#. Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Set Grand Total to Default Payment Method"
+msgstr "총액을 기본 결제 방식으로 설정"
+
+#. Description of the 'Territory Targets' (Section Break) field in DocType
+#. 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Set Item Group-wise budgets on this Territory. You can also include seasonality by setting the Distribution."
+msgstr ""
+
+#. Label of the set_landed_cost_based_on_purchase_invoice_rate (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Set Landed Cost Based on Purchase Invoice Rate"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1215
+msgid "Set Loyalty Program"
+msgstr "로열티 프로그램 설정"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:315
+msgid "Set New Release Date"
+msgstr ""
+
+#. Label of the set_op_cost_and_secondary_items_from_sub_assemblies (Check)
+#. field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Set Operating Cost / Secondary Items From Sub-assemblies"
+msgstr ""
+
+#. Label of the set_cost_based_on_bom_qty (Check) field in DocType 'BOM
+#. Operation'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+msgid "Set Operating Cost Based On BOM Quantity"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:124
+msgid "Set Parent Row No in Items Table"
+msgstr ""
+
+#. Label of the set_posting_date (Check) field in DocType 'POS Opening Entry'
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.json
+msgid "Set Posting Date"
+msgstr "게시 날짜 설정"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:1031
+msgid "Set Process Loss Item Quantity"
+msgstr "설정 공정 손실 품목 수량"
+
+#: erpnext/projects/doctype/project/project.js:149
+#: erpnext/projects/doctype/project/project.js:157
+#: erpnext/projects/doctype/project/project.js:171
+msgid "Set Project Status"
+msgstr "프로젝트 상태 설정"
+
+#: erpnext/projects/doctype/project/project.js:194
+msgid "Set Project and all Tasks to status {0}?"
+msgstr "프로젝트 및 모든 작업을 {0} 상태로 설정하시겠습니까?"
+
+#. Label of the set_reserve_warehouse (Link) field in DocType 'Purchase Order'
+#. Label of the set_reserve_warehouse (Link) field in DocType 'Subcontracting
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Set Reserve Warehouse"
+msgstr "예약 창고 설정"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:82
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:90
+msgid "Set Response Time for Priority {0} in row {1}."
+msgstr "{1} 행의 우선순위 {0} 에 대한 응답 시간을 설정합니다."
+
+#. Label of the set_serial_and_batch_bundle_naming_based_on_naming_series
+#. (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Set Serial and Batch Bundle Naming Based on Naming Series"
+msgstr ""
+
+#. Label of the set_warehouse (Link) field in DocType 'Sales Order'
+#. Label of the set_warehouse (Link) field in DocType 'Delivery Note'
+#. Label of the set_from_warehouse (Link) field in DocType 'Material Request'
+#: erpnext/public/js/utils/sales_common.js:568
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Set Source Warehouse"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1683
+msgid "Set Supplier"
+msgstr ""
+
+#. Label of the set_target_warehouse (Link) field in DocType 'Sales Invoice'
+#. Label of the set_warehouse (Link) field in DocType 'Purchase Order'
+#. Label of the set_target_warehouse (Link) field in DocType 'Delivery Note'
+#. Label of the set_warehouse (Link) field in DocType 'Material Request'
+#. Label of the set_warehouse (Link) field in DocType 'Subcontracting Order'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/public/js/utils/sales_common.js:565
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Set Target Warehouse"
+msgstr "목표 창고 설정"
+
+#. Label of the set_rate_based_on_warehouse (Check) field in DocType 'BOM
+#. Creator'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Set Valuation Rate Based on Source Warehouse"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:254
+msgid "Set Warehouse"
+msgstr ""
+
+#: erpnext/crm/doctype/opportunity/opportunity_list.js:17
+#: erpnext/support/doctype/issue/issue_list.js:12
+msgid "Set as Closed"
+msgstr "닫힘으로 설정"
+
+#: erpnext/projects/doctype/task/task_list.js:20
+msgid "Set as Completed"
+msgstr "완료로 설정"
+
+#: erpnext/public/js/utils/sales_common.js:592
+#: erpnext/selling/doctype/quotation/quotation.js:146
+msgid "Set as Lost"
+msgstr "분실로 설정"
+
+#: erpnext/crm/doctype/opportunity/opportunity_list.js:13
+#: erpnext/projects/doctype/task/task_list.js:16
+#: erpnext/support/doctype/issue/issue_list.js:8
+msgid "Set as Open"
+msgstr "열림으로 설정"
+
+#. Label of the set_by_item_tax_template (Check) field in DocType 'Advance
+#. Taxes and Charges'
+#. Label of the set_by_item_tax_template (Check) field in DocType 'Purchase
+#. Taxes and Charges'
+#. Label of the set_by_item_tax_template (Check) field in DocType 'Sales Taxes
+#. and Charges'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Set by Item Tax Template"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:248
+msgid "Set closing balance as per bank statement"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:550
+msgid "Set default inventory account for perpetual inventory"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:576
+msgid "Set default {0} account for non stock items"
+msgstr ""
+
+#. Description of the 'Fetch Value From' (Select) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Set fieldname from which you want to fetch the data from the parent form."
+msgstr "상위 폼에서 데이터를 가져올 필드 이름을 설정하세요."
+
+#. Label of the set_zero_rate_for_expired_batch (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Set incoming rate as zero for expired Batch"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:1021
+msgid "Set quantity of process loss item:"
+msgstr ""
+
+#. Label of the set_rate_of_sub_assembly_item_based_on_bom (Check) field in
+#. DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Set rate of sub-assembly item based on BOM"
+msgstr ""
+
+#. Description of the 'Sales Person Targets' (Section Break) field in DocType
+#. 'Sales Person'
+#: erpnext/setup/doctype/sales_person/sales_person.json
+msgid "Set targets Item Group-wise for this Sales Person."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
+msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:261
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:306
+msgid "Set the clearance date for this voucher without reconciling with a bank transaction."
+msgstr ""
+
+#. Description of the 'Manual Inspection' (Check) field in DocType 'Quality
+#. Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Set the status manually."
+msgstr "상태를 수동으로 설정하세요."
+
+#: erpnext/regional/italy/setup.py:231
+msgid "Set this if the customer is a Public Administration company."
+msgstr ""
+
+#. Description of the 'Close Issue After Days' (Int) field in DocType 'Support
+#. Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Set this value to 0 to disable the feature."
+msgstr ""
+
+#: banking/src/components/features/Settings/MatchingRules.tsx:37
+msgid "Set up rules to automatically classify transactions. Drag and drop rules to reorder their priority."
+msgstr ""
+
+#. Label of the set_valuation_rate_for_rejected_materials (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Set valuation rate for rejected Materials"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:901
+msgid "Set {0} in asset category {1} for company {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:1236
+msgid "Set {0} in asset category {1} or company {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:1233
+msgid "Set {0} in company {1}"
+msgstr ""
+
+#. Description of the 'Accepted Warehouse' (Link) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Sets 'Accepted Warehouse' in each row of the Items table."
+msgstr ""
+
+#. Description of the 'Rejected Warehouse' (Link) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Sets 'Rejected Warehouse' in each row of the Items table."
+msgstr ""
+
+#. Description of the 'Set Reserve Warehouse' (Link) field in DocType
+#. 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Sets 'Reserve Warehouse' in each row of the Supplied Items table."
+msgstr ""
+
+#. Description of the 'Default Source Warehouse' (Link) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Sets 'Source Warehouse' in each row of the items table."
+msgstr ""
+
+#. Description of the 'Default Target Warehouse' (Link) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Sets 'Target Warehouse' in each row of the items table."
+msgstr ""
+
+#. Description of the 'Set Target Warehouse' (Link) field in DocType
+#. 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Sets 'Warehouse' in each row of the Items table."
+msgstr "Items 테이블의 각 행에 'Warehouse' 값을 설정합니다."
+
+#. Description of the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Setting Account Type helps in selecting this Account in transactions."
+msgstr "계좌 유형을 설정하면 거래 시 해당 계좌를 선택하는 데 도움이 됩니다."
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:129
+msgid "Setting Events to {0}, since the Employee attached to the below Sales Persons does not have a User ID{1}"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.js:98
+msgid "Setting Item Locations..."
+msgstr "아이템 위치 설정 중..."
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:25
+msgid "Setting defaults"
+msgstr ""
+
+#. Description of the 'Is Company Account' (Check) field in DocType 'Bank
+#. Account'
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+msgid "Setting the account as a Company Account is necessary for Bank Reconciliation"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/setup_wizard.py:20
+msgid "Setting up company"
+msgstr "회사 설립"
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1227
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+msgid "Setting {0} is required"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Settings for Selling Module"
+msgstr "판매 모듈 설정"
+
+#. Option for the 'Status' (Select) field in DocType 'Bank Transaction'
+#. Option for the 'Status' (Select) field in DocType 'Invoice Discounting'
+#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:11
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Settled"
+msgstr "안정된"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr "신용장으로 결제됨"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Setup Company'
+#: erpnext/setup/onboarding_step/setup_company/setup_company.json
+msgid "Setup Company"
+msgstr "회사 설립"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Setup Email Account'
+#: erpnext/setup/onboarding_step/setup_email_account/setup_email_account.json
+msgid "Setup Email Account"
+msgstr "이메일 계정 설정"
+
+#. Title of the Module Onboarding 'Organization Onboarding'
+#: erpnext/setup/module_onboarding/organization_onboarding/organization_onboarding.json
+msgid "Setup Organization"
+msgstr "조직 설정"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'Setup Role Permissions'
+#: erpnext/setup/onboarding_step/setup_role_permissions/setup_role_permissions.json
+msgid "Setup Role Permissions"
+msgstr "역할 권한 설정"
+
+#. Label of an action in the Onboarding Step 'Setup Sales taxes'
+#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json
+msgid "Setup Sales Taxes"
+msgstr ""
+
+#. Title of an Onboarding Step
+#: erpnext/accounts/onboarding_step/setup_sales_taxes/setup_sales_taxes.json
+msgid "Setup Sales taxes"
+msgstr ""
+
+#. Title of an Onboarding Step
+#: erpnext/stock/onboarding_step/setup_warehouse/setup_warehouse.json
+msgid "Setup Warehouse"
+msgstr "창고 설정"
+
+#: erpnext/public/js/setup_wizard.js:25
+msgid "Setup your organization"
+msgstr "조직을 설정하세요"
+
+#. Name of a DocType
+#. Label of the section_break_3 (Section Break) field in DocType 'Shareholder'
+#. Label of the share_balance (Table) field in DocType 'Shareholder'
+#. Name of a report
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/shareholder/shareholder.js:21
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/accounts/report/share_balance/share_balance.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/share_management.json
+msgid "Share Balance"
+msgstr "주식 잔액"
+
+#. Name of a report
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/shareholder/shareholder.js:27
+#: erpnext/accounts/report/share_ledger/share_ledger.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/share_management.json
+msgid "Share Ledger"
+msgstr "주식 원장"
+
+#. Label of a Card Break in the Invoicing Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/desktop_icon/share_management.json
+#: erpnext/workspace_sidebar/share_management.json
+msgid "Share Management"
+msgstr "주식 관리"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/report/share_ledger/share_ledger.py:59
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/share_management.json
+msgid "Share Transfer"
+msgstr "주식 양도"
+
+#. Label of the share_type (Link) field in DocType 'Share Balance'
+#. Label of the share_type (Link) field in DocType 'Share Transfer'
+#. Name of a DocType
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/doctype/share_type/share_type.json
+#: erpnext/accounts/report/share_balance/share_balance.py:58
+#: erpnext/accounts/report/share_ledger/share_ledger.py:54
+msgid "Share Type"
+msgstr "공유 유형"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/shareholder/shareholder.json
+#: erpnext/accounts/report/share_balance/share_balance.js:16
+#: erpnext/accounts/report/share_balance/share_balance.py:57
+#: erpnext/accounts/report/share_ledger/share_ledger.js:16
+#: erpnext/accounts/report/share_ledger/share_ledger.py:51
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/share_management.json
+msgid "Shareholder"
+msgstr "주주"
+
+#. Label of the shelf_life_in_days (Int) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Shelf Life In Days"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.py:216
+msgid "Shelf Life in Days"
+msgstr ""
+
+#. Label of the shift (Link) field in DocType 'Depreciation Schedule'
+#: erpnext/assets/doctype/asset/asset.js:391
+#: erpnext/assets/doctype/depreciation_schedule/depreciation_schedule.json
+msgid "Shift"
+msgstr "옮기다"
+
+#. Label of the shift_factor (Float) field in DocType 'Asset Shift Factor'
+#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json
+msgid "Shift Factor"
+msgstr ""
+
+#. Label of the shift_name (Data) field in DocType 'Asset Shift Factor'
+#: erpnext/assets/doctype/asset_shift_factor/asset_shift_factor.json
+msgid "Shift Name"
+msgstr "교대 근무 이름"
+
+#. Label of the shift_time_in_hours (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Shift Time (In Hours)"
+msgstr "근무 시간 (시간)"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:246
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment"
+msgstr "선적"
+
+#. Label of the shipment_amount (Currency) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment Amount"
+msgstr "선적 금액"
+
+#. Label of the shipment_delivery_note (Table) field in DocType 'Shipment'
+#. Name of a DocType
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/shipment_delivery_note/shipment_delivery_note.json
+msgid "Shipment Delivery Note"
+msgstr "배송 완료 메모"
+
+#. Label of the shipment_id (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment ID"
+msgstr "배송 ID"
+
+#. Label of the shipment_information_section (Section Break) field in DocType
+#. 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment Information"
+msgstr "배송 정보"
+
+#. Label of the shipment_parcel (Table) field in DocType 'Shipment'
+#. Name of a DocType
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
+msgid "Shipment Parcel"
+msgstr "배송 소포"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Shipment Parcel Template"
+msgstr ""
+
+#. Label of the shipment_type (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment Type"
+msgstr "배송 유형"
+
+#. Label of the shipment_details_section (Section Break) field in DocType
+#. 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Shipment details"
+msgstr "배송 정보"
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
+msgid "Shipments"
+msgstr "배송"
+
+#. Label of the account (Link) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Shipping Account"
+msgstr "배송 계정"
+
+#. Label of the shipping_address_display (Text Editor) field in DocType
+#. 'Purchase Order'
+#. Label of the shipping_address_display (Text Editor) field in DocType
+#. 'Request for Quotation'
+#. Label of the shipping_address_display (Text Editor) field in DocType
+#. 'Supplier Quotation'
+#. Label of the shipping_address_display (Text Editor) field in DocType
+#. 'Subcontracting Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Shipping Address Details"
+msgstr ""
+
+#. Label of the shipping_address_name (Link) field in DocType 'POS Invoice'
+#. Label of the shipping_address_name (Link) field in DocType 'Sales Invoice'
+#. Label of the shipping_address_name (Link) field in DocType 'Sales Order'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Shipping Address Name"
+msgstr "배송 주소 이름"
+
+#. Label of the shipping_address (Link) field in DocType 'Purchase Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Shipping Address Template"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:577
+msgid "Shipping Address does not belong to the {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:134
+msgid "Shipping Address does not have country, which is required for this Shipping Rule"
+msgstr ""
+
+#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule'
+#. Label of the shipping_amount (Currency) field in DocType 'Shipping Rule
+#. Condition'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json
+msgid "Shipping Amount"
+msgstr ""
+
+#. Label of the shipping_city (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Shipping City"
+msgstr "배송 도시"
+
+#. Label of the shipping_country (Link) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Shipping Country"
+msgstr "배송 국가"
+
+#. Label of the shipping_county (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Shipping County"
+msgstr ""
+
+#. Label of the shipping_rule (Link) field in DocType 'POS Invoice'
+#. Label of the shipping_rule (Link) field in DocType 'Purchase Invoice'
+#. Label of the shipping_rule (Link) field in DocType 'Sales Invoice'
+#. Name of a DocType
+#. Label of the shipping_rule (Link) field in DocType 'Purchase Order'
+#. Label of the shipping_rule (Link) field in DocType 'Supplier Quotation'
+#. Label of the shipping_rule (Link) field in DocType 'Quotation'
+#. Label of the shipping_rule (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Label of the shipping_rule (Link) field in DocType 'Delivery Note'
+#. Label of the shipping_rule (Link) field in DocType 'Purchase Receipt'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/selling.json erpnext/workspace_sidebar/stock.json
+msgid "Shipping Rule"
+msgstr "배송 규정"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json
+msgid "Shipping Rule Condition"
+msgstr "배송 규정 조건"
+
+#. Label of the rule_conditions_section (Section Break) field in DocType
+#. 'Shipping Rule'
+#. Label of the conditions (Table) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Shipping Rule Conditions"
+msgstr "배송 규정 조건"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/shipping_rule_country/shipping_rule_country.json
+msgid "Shipping Rule Country"
+msgstr "배송 규정 국가"
+
+#. Label of the label (Data) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Shipping Rule Label"
+msgstr ""
+
+#. Label of the shipping_rule_type (Select) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Shipping Rule Type"
+msgstr "배송 규칙 유형"
+
+#. Label of the shipping_state (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Shipping State"
+msgstr "배송 상태"
+
+#. Label of the shipping_zipcode (Data) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Shipping Zipcode"
+msgstr "배송 우편번호"
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:138
+msgid "Shipping rule not applicable for country {0} in Shipping Address"
+msgstr ""
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:157
+msgid "Shipping rule only applicable for Buying"
+msgstr ""
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:152
+msgid "Shipping rule only applicable for Selling"
+msgstr ""
+
+#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
+#. Label of the shopping_cart_section (Section Break) field in DocType
+#. 'Quotation Item'
+#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
+#. Label of the shopping_cart_section (Section Break) field in DocType 'Sales
+#. Order Item'
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Shopping Cart"
+msgstr "쇼핑 카트"
+
+#. Label of the short_name (Data) field in DocType 'Manufacturer'
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+msgid "Short Name"
+msgstr "약칭"
+
+#. Label of the short_term_loan (Link) field in DocType 'Invoice Discounting'
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+msgid "Short Term Loan Account"
+msgstr "단기 대출 계좌"
+
+#. Description of the 'Bio / Cover Letter' (Text Editor) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Short biography for website and other publications."
+msgstr "웹사이트 및 기타 출판물에 사용할 간략한 약력."
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:35
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:55
+msgid "Short-term Investments"
+msgstr "단기 투자"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+msgid "Short-term Provisions"
+msgstr "단기 조항"
+
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:227
+msgid "Shortage Qty"
+msgstr "부족 수량"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:85
+msgid "Shortcut"
+msgstr "지름길"
+
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:70
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:103
+msgid "Show Aggregate Value from Subsidiary Companies"
+msgstr "자회사들의 총 가치를 표시합니다"
+
+#. Label of the show_balance_in_coa (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Show Balances in Chart Of Accounts"
+msgstr ""
+
+#. Label of the show_barcode_field (Check) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Show Barcode Field in Stock Transactions"
+msgstr "재고 거래에 바코드 필드 표시"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:199
+msgid "Show Cancelled Entries"
+msgstr ""
+
+#: erpnext/templates/pages/projects.js:61
+msgid "Show Completed"
+msgstr "쇼 완료"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:209
+msgid "Show Credit / Debit in Company Currency"
+msgstr ""
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:106
+msgid "Show Cumulative Amount"
+msgstr "누적 금액 표시"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:137
+msgid "Show Dimension Wise Stock"
+msgstr ""
+
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:29
+msgid "Show Disabled Items"
+msgstr ""
+
+#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.js:16
+msgid "Show Disabled Warehouses"
+msgstr "장애인 접근 불가 창고 보기"
+
+#. Label of the show_failed_logs (Check) field in DocType 'Bank Statement
+#. Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Show Failed Logs"
+msgstr "실패 로그 표시"
+
+#. Label of the show_future_payments (Check) field in DocType 'Process
+#. Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:141
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:158
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:131
+msgid "Show Future Payments"
+msgstr "향후 결제 금액 보기"
+
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:118
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:136
+msgid "Show GL Balance"
+msgstr "GL 잔액 표시"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:97
+#: erpnext/accounts/report/trial_balance/trial_balance.js:117
+msgid "Show Group Accounts"
+msgstr "그룹 계정 보기"
+
+#. Label of the show_in_website (Check) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "Show In Website"
+msgstr "웹사이트에 표시"
+
+#. Label of the show_inclusive_tax_in_print (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Show Inclusive Tax in Print"
+msgstr ""
+
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:86
+msgid "Show Item Name"
+msgstr "항목 이름 표시"
+
+#. Label of the show_items (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Show Items"
+msgstr "상품 보기"
+
+#. Label of the show_latest_forum_posts (Check) field in DocType 'Support
+#. Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Show Latest Forum Posts"
+msgstr ""
+
+#: erpnext/accounts/report/purchase_register/purchase_register.js:64
+#: erpnext/accounts/report/sales_register/sales_register.js:76
+msgid "Show Ledger View"
+msgstr "원장 보기 표시"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:163
+msgid "Show Linked Delivery Notes"
+msgstr "연결된 배송 메모 표시"
+
+#. Label of the show_net_values_in_party_account (Check) field in DocType
+#. 'Process Statement Of Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/general_ledger/general_ledger.js:204
+msgid "Show Net Values in Party Account"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchFilters.tsx:32
+msgid "Show Only Exact Amount"
+msgstr "정확한 금액만 표시"
+
+#: erpnext/templates/pages/projects.js:63
+msgid "Show Open"
+msgstr "쇼 오픈"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.js:187
+msgid "Show Opening Entries"
+msgstr ""
+
+#: erpnext/accounts/report/cash_flow/cash_flow.js:43
+msgid "Show Opening and Closing Balance"
+msgstr ""
+
+#. Label of the show_operations (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Show Operations"
+msgstr "쇼 운영"
+
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:40
+msgid "Show Payment Details"
+msgstr "결제 정보 보기"
+
+#. Label of the show_payment_schedule_in_print (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Show Payment Schedule in Print"
+msgstr "지불 일정표를 인쇄물로 보여주세요"
+
+#. Label of the show_remarks (Check) field in DocType 'Process Statement Of
+#. Accounts'
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:136
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:173
+#: erpnext/accounts/report/general_ledger/general_ledger.js:219
+msgid "Show Remarks"
+msgstr "비고 표시"
+
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:65
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:65
+msgid "Show Return Entries"
+msgstr "반환 항목 표시"
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:168
+msgid "Show Sales Person"
+msgstr "판매 담당자를 보여주세요"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:120
+msgid "Show Stock Ageing Data"
+msgstr "재고 노후화 데이터 보기"
+
+#. Label of the show_taxes_as_table_in_print (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Show Taxes as Table in Print"
+msgstr "인쇄물에 세금을 표 형식으로 표시"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:115
+msgid "Show Variant Attributes"
+msgstr "변형 속성 표시"
+
+#: erpnext/stock/doctype/item/item.js:201
+msgid "Show Variants"
+msgstr "변형 보기"
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:64
+msgid "Show Warehouse-wise Stock"
+msgstr ""
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.js:26
+msgid "Show availability of exploded items"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:88
+msgid "Show in Bucket View"
+msgstr ""
+
+#. Label of the show_in_website (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Show in Website"
+msgstr "웹사이트에 표시"
+
+#. Description of the 'Reverse Sign' (Check) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Show negative values as positive (for expenses in P&L)"
+msgstr ""
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:91
+#: erpnext/accounts/report/trial_balance/trial_balance.js:111
+msgid "Show net values in opening and closing columns"
+msgstr ""
+
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.js:35
+msgid "Show only POS"
+msgstr "POS만 표시"
+
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:107
+msgid "Show only the Immediate Upcoming Term"
+msgstr "바로 다음 학기만 표시하세요"
+
+#. Label of the show_pay_button (Check) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Show pay button in Purchase Order portal"
+msgstr "구매 주문 포털에 결제 버튼 표시"
+
+#: erpnext/stock/utils.py:569
+msgid "Show pending entries"
+msgstr "보류 중인 항목 표시"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:80
+#: erpnext/accounts/report/trial_balance/trial_balance.js:100
+msgid "Show unclosed fiscal year's P&L balances"
+msgstr ""
+
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:96
+msgid "Show with upcoming revenue/expense"
+msgstr "향후 수익/지출을 보여주는 화면"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.js:51
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:137
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:75
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.js:52
+#: erpnext/accounts/report/profitability_analysis/profitability_analysis.js:71
+#: erpnext/accounts/report/trial_balance/trial_balance.js:95
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.js:81
+msgid "Show zero values"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.js:35
+msgid "Show {0}"
+msgstr "{0} 표시"
+
+#. Label of the signatory_position (Column Break) field in DocType 'Cheque
+#. Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Signatory Position"
+msgstr ""
+
+#. Label of the is_signed (Check) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signed"
+msgstr "서명함"
+
+#. Label of the signed_by_company (Link) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signed By (Company)"
+msgstr ""
+
+#. Label of the signed_on (Datetime) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signed On"
+msgstr ""
+
+#. Label of the signee (Data) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signee"
+msgstr ""
+
+#. Label of the signee_company (Signature) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signee (Company)"
+msgstr ""
+
+#. Label of the sb_signee (Section Break) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Signee Details"
+msgstr ""
+
+#. Description of the 'No of Workstations' (Int) field in DocType 'Item Lead
+#. Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Similar types of workstations where the same operations run in parallel."
+msgstr ""
+
+#. Description of the 'Condition' (Code) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Simple Python Expression, Example: doc.status == 'Open' and doc.issue_type == 'Bug'"
+msgstr ""
+
+#. Description of the 'Condition' (Code) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Simple Python Expression, Example: territory != 'All Territories'"
+msgstr ""
+
+#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType
+#. 'Item Quality Inspection Parameter'
+#. Description of the 'Acceptance Criteria Formula' (Code) field in DocType
+#. 'Quality Inspection Reading'
+#: erpnext/stock/doctype/item_quality_inspection_parameter/item_quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Simple Python formula applied on Reading fields. Numeric eg. 1: reading_1 > 0.2 and reading_1 < 0.5 \n"
+"Numeric eg. 2: mean > 3.5 (mean of populated fields) \n"
+"Value based eg.: reading_value in (\"A\", \"B\", \"C\") "
+msgstr "읽기 필드에 적용된 간단한 Python 수식입니다. 숫자 예시 1: reading_1 > 0.2 및 reading_1 < 0.5 \n"
+"숫자 예시 2: 평균 > 3.5 (입력된 필드의 평균) \n"
+"값 기반 예: (\"A\", \"B\", \"C\")의 reading_value "
+
+#. Option for the 'Call Routing' (Select) field in DocType 'Incoming Call
+#. Settings'
+#: erpnext/telephony/doctype/incoming_call_settings/incoming_call_settings.json
+msgid "Simultaneous"
+msgstr "동시"
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:183
+msgid "Since there are active depreciable assets under this category, the following accounts are required. "
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
+msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:324
+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:132
+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:112
+msgid "Since {0} has 'Update Stock' disabled, you cannot create repost item valuation against it"
+msgstr ""
+
+#. Option for the 'Marital Status' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Single"
+msgstr "하나의"
+
+#. Option for the 'Bank Entry Type' (Select) field in DocType 'Bank Transaction
+#. Rule'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:282
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+msgid "Single Account"
+msgstr "단일 계정"
+
+#. Option for the 'Loyalty Program Type' (Select) field in DocType 'Loyalty
+#. Program'
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.json
+msgid "Single Tier Program"
+msgstr "단일 등급 프로그램"
+
+#: erpnext/stock/doctype/item/item.js:226
+msgid "Single Variant"
+msgstr "단일 변형"
+
+#. Label of the skip_delivery_note (Check) field in DocType 'Sales Order'
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Skip Delivery Note"
+msgstr "배송 건너뛰기 메모"
+
+#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
+#. Operation'
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:454
+msgid "Skip Material Transfer"
+msgstr "재료 이송 건너뛰기"
+
+#. Label of the skip_material_transfer (Check) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Skip Material Transfer to WIP"
+msgstr "WIP로의 자재 이송을 건너뛰세요"
+
+#. Label of the skip_transfer (Check) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Skip Material Transfer to WIP Warehouse"
+msgstr "WIP 창고로의 자재 이송을 건너뛰세요"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:565
+msgid "Skipped {0} DocType(s): {1}"
+msgstr ""
+
+#. Label of the customer_skype (Data) field in DocType 'Appointment'
+#: erpnext/crm/doctype/appointment/appointment.json
+msgid "Skype ID"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Slug/Cubic Foot"
+msgstr "민달팽이/입방피트"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:272
+msgid "Small"
+msgstr "작은"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.js:67
+msgid "Smoothing Constant"
+msgstr "평활 상수"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:44
+msgid "Soap & Detergent"
+msgstr "비누 및 세제"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/setup/setup_wizard/data/industry_type.txt:45
+msgid "Software"
+msgstr "소프트웨어"
+
+#: erpnext/setup/setup_wizard/data/designation.txt:30
+msgid "Software Developer"
+msgstr "소프트웨어 개발자"
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:10
+msgid "Sold"
+msgstr "판매된"
+
+#: erpnext/selling/page/point_of_sale/pos_past_order_summary.js:89
+msgid "Sold by"
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:168
+msgid "Solvency Ratios"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4379
+msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
+msgstr "필수 회사 정보 중 일부가 누락되었습니다. 해당 정보를 업데이트할 권한이 없습니다. 시스템 관리자에게 문의하십시오."
+
+#: erpnext/www/book_appointment/index.js:248
+msgid "Something went wrong please try again"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:756
+msgid "Sorry, this coupon code is no longer valid"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:754
+msgid "Sorry, this coupon code's validity has expired"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:752
+msgid "Sorry, this coupon code's validity has not started"
+msgstr ""
+
+#. Label of the source_doctype (Link) field in DocType 'Support Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Source DocType"
+msgstr "소스 문서 유형"
+
+#. Label of the source_document_section (Section Break) field in DocType
+#. 'Serial No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Source Document"
+msgstr "원본 문서"
+
+#. Label of the reference_name (Dynamic Link) field in DocType 'Batch'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Serial No'
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Source Document Name"
+msgstr "원본 문서 이름"
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:492
+msgid "Source Document No"
+msgstr "원본 문서 번호"
+
+#. Label of the reference_doctype (Link) field in DocType 'Batch'
+#. Label of the reference_doctype (Link) field in DocType 'Serial No'
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Source Document Type"
+msgstr "원본 문서 유형"
+
+#. Label of the source_exchange_rate (Float) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Source Exchange Rate"
+msgstr "출처 환율"
+
+#. Label of the source_fieldname (Data) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Source Fieldname"
+msgstr "소스 필드 이름"
+
+#. Label of the source_location (Link) field in DocType 'Asset Movement Item'
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+msgid "Source Location"
+msgstr "출처 위치"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
+msgid "Source Manufacture Entry"
+msgstr "출처 제조업체 입력"
+
+#. Label of the source_stock_entry (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Source Stock Entry (Manufacture)"
+msgstr "원천 재고 입력(제조)"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
+msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
+msgid "Source Stock Entry {0} has no finished goods quantity"
+msgstr ""
+
+#. Label of the source_type (Select) field in DocType 'Support Search Source'
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Source Type"
+msgstr "소스 유형"
+
+#. Label of the set_warehouse (Link) field in DocType 'POS Invoice'
+#. Label of the set_warehouse (Link) field in DocType 'Sales Invoice'
+#. Label of the source_warehouse (Link) field in DocType 'BOM Explosion Item'
+#. Label of the source_warehouse (Link) field in DocType 'BOM Item'
+#. Label of the source_warehouse (Link) field in DocType 'BOM Operation'
+#. Label of the source_warehouse (Link) field in DocType 'Job Card'
+#. Label of the source_warehouse (Link) field in DocType 'Job Card Item'
+#. Label of the source_warehouse (Link) field in DocType 'Work Order'
+#. Label of the source_warehouse (Link) field in DocType 'Work Order Item'
+#. Label of the source_warehouse (Link) field in DocType 'Work Order Operation'
+#. Label of the warehouse (Link) field in DocType 'Sales Order Item'
+#. Label of the from_warehouse (Link) field in DocType 'Material Request Item'
+#. Label of the s_warehouse (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/manufacturing/doctype/bom/bom.js:500
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:126
+#: erpnext/public/js/utils/sales_common.js:564
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/dashboard/item_dashboard.js:227
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:798
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Source Warehouse"
+msgstr ""
+
+#. Label of the source_address_display (Text Editor) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Source Warehouse Address"
+msgstr "출처 창고 주소"
+
+#. Label of the source_warehouse_address (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Source Warehouse Address Link"
+msgstr "출처 창고 주소 링크"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1173
+msgid "Source Warehouse is mandatory for the Item {0}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
+msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:85
+msgid "Source and Target Location cannot be same"
+msgstr ""
+
+#: erpnext/stock/dashboard/item_dashboard.js:295
+msgid "Source and target warehouse must be different"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
+msgid "Source of Funds (Liabilities)"
+msgstr "자금 출처 (부채)"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr "재고 품목 {0}에 필요한 공급 창고"
+
+#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
+#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
+#. Item'
+#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Item'
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+msgid "Sourced by Supplier"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/south_africa_vat_account/south_africa_vat_account.json
+msgid "South Africa VAT Account"
+msgstr "남아프리카공화국 부가가치세 계정"
+
+#. Name of a DocType
+#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json
+msgid "South Africa VAT Settings"
+msgstr "남아프리카공화국 부가가치세 설정"
+
+#. Description of a DocType
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+msgid "Specify Exchange Rate to convert one currency into another"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Specify conditions to calculate shipping amount"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:215
+msgid "Spending for Account {0} ({1}) between {2} and {3} has already exceeded the new allocated budget. Spent: {4}, Budget: {5}"
+msgstr "계정 {0} ({1})의 {2} 와 {3} 사이의 지출이 이미 새로 할당된 예산을 초과했습니다. 지출액: {4}, 예산: {5}"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:186
+#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:55
+msgid "Spent"
+msgstr "소비됨"
+
+#: erpnext/assets/doctype/asset/asset.js:692
+#: erpnext/stock/doctype/batch/batch.js:104
+#: erpnext/stock/doctype/batch/batch.js:185
+#: erpnext/support/doctype/issue/issue.js:114
+msgid "Split"
+msgstr "나뉘다"
+
+#: erpnext/assets/doctype/asset/asset.js:147
+#: erpnext/assets/doctype/asset/asset.js:676
+msgid "Split Asset"
+msgstr "자산 분할"
+
+#: erpnext/stock/doctype/batch/batch.js:184
+msgid "Split Batch"
+msgstr "분할 배치"
+
+#. Description of the 'Book Tax Loss on Early Payment Discount' (Check) field
+#. in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Split Early Payment Discount Loss into Income and Tax Loss"
+msgstr "조기 상환 할인 손실을 소득 손실과 세금 손실로 분할"
+
+#. Label of the split_from (Link) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Split From"
+msgstr "분리됨"
+
+#: erpnext/support/doctype/issue/issue.js:91
+#: erpnext/support/doctype/issue/issue.js:102
+msgid "Split Issue"
+msgstr "분할 문제"
+
+#: erpnext/assets/doctype/asset/asset.js:682
+msgid "Split Qty"
+msgstr "수량 분할"
+
+#: erpnext/assets/doctype/asset/asset.py:1385
+msgid "Split Quantity must be less than Asset Quantity"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:235
+msgid "Split across {} accounts"
+msgstr ""
+
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
+msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:46
+msgid "Sports"
+msgstr "스포츠"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Centimeter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Foot"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Inch"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Kilometer"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Meter"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Mile"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Square Yard"
+msgstr ""
+
+#. Label of the stage (Data) field in DocType 'Prospect Opportunity'
+#: erpnext/crm/doctype/prospect_opportunity/prospect_opportunity.json
+msgid "Stage"
+msgstr "단계"
+
+#. Label of the stage_name (Data) field in DocType 'Sales Stage'
+#: erpnext/crm/doctype/sales_stage/sales_stage.json
+msgid "Stage Name"
+msgstr ""
+
+#. Label of the stale_days (Int) field in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Stale Days"
+msgstr "지루한 날들"
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:162
+msgid "Stale Days should start from 1."
+msgstr "Stale Days는 1부터 시작해야 합니다."
+
+#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:485
+#: erpnext/tests/utils.py:275
+msgid "Standard Buying"
+msgstr "표준 구매"
+
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:73
+msgid "Standard Description"
+msgstr "표준 설명"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
+msgid "Standard Rated Expenses"
+msgstr "표준 세율 적용 경비"
+
+#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
+#: erpnext/tests/utils.py:2518
+msgid "Standard Selling"
+msgstr "표준 판매"
+
+#. Label of the standard_rate (Currency) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Standard Selling Rate"
+msgstr "표준 판매 가격"
+
+#. Option for the 'Create Chart Of Accounts Based On' (Select) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Standard Template"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
+msgstr "판매 및 구매에 추가할 수 있는 표준 약관. 예시: 제안의 유효 기간, 지불 조건, 안전 및 사용 정책 등."
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
+msgid "Standard rated supplies in {0}"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json
+msgid "Standard tax template that can be applied to all Purchase Transactions. This template can contain a list of tax heads and also other expense heads like \"Shipping\", \"Insurance\", \"Handling\", etc."
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+msgid "Standard tax template that can be applied to all Sales Transactions. This template can contain a list of tax heads and also other expense/income heads like \"Shipping\", \"Insurance\", \"Handling\" etc."
+msgstr ""
+
+#. Label of the standing_name (Link) field in DocType 'Supplier Scorecard
+#. Scoring Standing'
+#. Label of the standing_name (Data) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Standing Name"
+msgstr "정식 명칭"
+
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.js:54
+msgid "Start / Resume"
+msgstr "시작/재개"
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:40
+msgid "Start Date cannot be before the current date"
+msgstr ""
+
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:80
+msgid "Start Date should be lower than End Date"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
+#: erpnext/manufacturing/doctype/workstation/workstation.js:124
+msgid "Start Job"
+msgstr "채용 공고 시작"
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:72
+msgid "Start Merge"
+msgstr "병합 시작"
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js:105
+msgid "Start Reposting"
+msgstr "다시 게시하기"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:129
+msgid "Start Time can't be greater than or equal to End Time for {0}."
+msgstr "{0}의 경우 시작 시간은 종료 시간보다 크거나 같을 수 없습니다."
+
+#: erpnext/projects/doctype/timesheet/timesheet.js:62
+msgid "Start Timer"
+msgstr "타이머 시작"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:234
+#: erpnext/accounts/report/balance_sheet/balance_sheet.html:144
+#: erpnext/accounts/report/cash_flow/cash_flow.html:144
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.js:56
+#: erpnext/accounts/report/deferred_revenue_and_expense/deferred_revenue_and_expense.js:56
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:17
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:144
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.js:81
+#: erpnext/public/js/financial_statements.js:422
+msgid "Start Year"
+msgstr "시작 연도"
+
+#: erpnext/accounts/report/financial_statements.py:130
+msgid "Start Year and End Year are mandatory"
+msgstr ""
+
+#. Description of the 'From Date' (Date) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Start date of current invoice's period"
+msgstr "현재 송장 기간의 시작일"
+
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.py:235
+msgid "Start date should be less than end date for Item {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_maintenance/asset_maintenance.py:39
+msgid "Start date should be less than end date for task {0}"
+msgstr ""
+
+#: erpnext/utilities/bulk_transaction.py:46
+msgid "Started a background job to create {1} {0}. {2}"
+msgstr ""
+
+#. Label of the date_dist_from_left_edge (Float) field in DocType 'Cheque Print
+#. Template'
+#. Label of the payer_name_from_left_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the amt_in_words_from_left_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the amt_in_figures_from_left_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the acc_no_dist_from_left_edge (Float) field in DocType 'Cheque
+#. Print Template'
+#. Label of the signatory_from_left_edge (Float) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Starting location from left edge"
+msgstr "왼쪽 가장자리에서 시작 위치"
+
+#. Label of the starting_position_from_top_edge (Float) field in DocType
+#. 'Cheque Print Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Starting position from top edge"
+msgstr "상단 가장자리에서 시작하는 위치"
+
+#. Option for the 'Check' (Select) field in DocType 'Bank Transaction Rule
+#. Description Conditions'
+#: erpnext/accounts/doctype/bank_transaction_rule_description_conditions/bank_transaction_rule_description_conditions.json
+msgid "Starts With"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:201
+msgid "Starts with"
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:120
+msgid "Statement Details"
+msgstr "명세서 세부 정보"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:151
+msgid "Statement File"
+msgstr "명세서 파일"
+
+#. Label of the statement_format_section (Section Break) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Statement Format"
+msgstr "명세서 형식"
+
+#: banking/src/pages/BankStatementImporter.tsx:139
+msgid "Statement Import Instructions"
+msgstr "명세서 가져오기 지침"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.html:124
+msgid "Statement Of Accounts"
+msgstr "계정 명세서"
+
+#: erpnext/accounts/report/general_ledger/general_ledger.html:145
+msgid "Statement Period"
+msgstr "진술 기간"
+
+#. Label of the status_details (Section Break) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Status Details"
+msgstr "상태 세부 정보"
+
+#. Label of the illustration_section (Section Break) field in DocType
+#. 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Status Illustration"
+msgstr "상태 일러스트"
+
+#. Label of the section_break_dfoc (Section Break) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Status and Reference"
+msgstr "상태 및 참조"
+
+#: erpnext/projects/doctype/project/project.py:754
+msgid "Status must be Cancelled or Completed"
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:17
+msgid "Status must be one of {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.py:277
+msgid "Status set to rejected as there are one or more rejected readings."
+msgstr ""
+
+#. Description of the 'Supplier Details' (Text) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Statutory info and other general information about your Supplier"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of a Desktop Icon
+#. Group in Incoterm's connections
+#. Label of a Card Break in the Home Workspace
+#. Name of a Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:11
+#: erpnext/accounts/report/account_balance/account_balance.js:57
+#: erpnext/desktop_icon/stock.json
+#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
+#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock"
+msgstr "재고"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
+#: erpnext/accounts/report/account_balance/account_balance.js:58
+msgid "Stock Adjustment"
+msgstr "재고 조정"
+
+#. Label of the stock_adjustment_account (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Adjustment Account"
+msgstr "재고 조정 계정"
+
+#. Label of the stock_ageing_section (Section Break) field in DocType 'Stock
+#. Closing Balance'
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/report/stock_ageing/stock_ageing.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Ageing"
+msgstr "재고 노후화"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/public/js/stock_analytics.js:7
+#: erpnext/stock/report/stock_analytics/stock_analytics.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Analytics"
+msgstr "주식 분석"
+
+#. Label of the stock_asset_account (Link) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Stock Asset Account"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:36
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:59
+msgid "Stock Assets"
+msgstr "주식 자산"
+
+#: erpnext/stock/report/item_price_stock/item_price_stock.py:34
+msgid "Stock Available"
+msgstr "재고 있음"
+
+#. Label of the stock_balance (Button) field in DocType 'Quotation Item'
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/stock/doctype/item/item.js:148
+#: erpnext/stock/doctype/warehouse/warehouse.js:62
+#: erpnext/stock/report/stock_balance/stock_balance.json
+#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:107
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Balance"
+msgstr "주식 잔액"
+
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.js:15
+msgid "Stock Balance Report"
+msgstr "주식 잔액 보고서"
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary_header.html:10
+msgid "Stock Capacity"
+msgstr "재고 용량"
+
+#. Label of the stock_closing_tab (Tab Break) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock Closing"
+msgstr "주식 마감"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+msgid "Stock Closing Balance"
+msgstr ""
+
+#. Label of the stock_closing_entry (Link) field in DocType 'Stock Closing
+#. Balance'
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json
+msgid "Stock Closing Entry"
+msgstr "주식 마감 입력"
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:79
+msgid "Stock Closing Entry {0} already exists for the selected date range"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py:100
+msgid "Stock Closing Entry {0} has been queued for processing, system will take sometime to complete it."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry_dashboard.py:9
+msgid "Stock Closing Log"
+msgstr "주식 마감 기록"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
+#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
+#. Invoice Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
+#. Invoice Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+msgid "Stock Details"
+msgstr ""
+
+#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
+#. Label of a Link in the Manufacturing Workspace
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Item'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Purchase Receipt'
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Name of a DocType
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/pick_list/pick_list.js:143
+#: 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/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/manufacturing.json
+#: erpnext/workspace_sidebar/stock.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Stock Entry"
+msgstr "주식 입력"
+
+#. Label of the outgoing_stock_entry (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Stock Entry (Outward GIT)"
+msgstr "재고 입고 (외부 GIT)"
+
+#. Label of the ste_detail (Data) field in DocType 'Stock Entry Detail'
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Stock Entry Child"
+msgstr "주식 입력 어린이"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Stock Entry Detail"
+msgstr ""
+
+#. Label of the stock_entry_item (Data) field in DocType 'Landed Cost Item'
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+msgid "Stock Entry Item"
+msgstr "재고 입력 품목"
+
+#. Label of the stock_entry_type (Link) field in DocType 'Stock Entry'
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Stock Entry Type"
+msgstr "재고 입력 유형"
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:1514
+msgid "Stock Entry has been already created against this Pick List"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.js:138
+msgid "Stock Entry {0} created"
+msgstr "재고 입력 {0} 생성됨"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
+msgid "Stock Entry {0} has created"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1317
+msgid "Stock Entry {0} is not submitted"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
+msgid "Stock Expenses"
+msgstr "재고 비용"
+
+#. Label of the stock_frozen_upto (Date) field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock Frozen Up To"
+msgstr "냉동 보관 가능"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:37
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:60
+msgid "Stock In Hand"
+msgstr "재고 보유 중"
+
+#. Label of the stock_items (Table) field in DocType 'Asset Capitalization'
+#. Label of the stock_items (Table) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Stock Items"
+msgstr "재고 품목"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/public/js/controllers/stock_controller.js:67
+#: erpnext/public/js/utils/ledger_preview.js:37
+#: erpnext/stock/doctype/item/item.js:158
+#: erpnext/stock/doctype/item/item_dashboard.py:8
+#: erpnext/stock/report/stock_ledger/stock_ledger.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:36
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Ledger"
+msgstr "주식 원장"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js:30
+msgid "Stock Ledger Entries and GL Entries are reposted for the selected Purchase Receipts"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:113
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:138
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:30
+msgid "Stock Ledger Entry"
+msgstr "재고 장부 항목"
+
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:98
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:139
+msgid "Stock Ledger ID"
+msgstr "재고 원장 ID"
+
+#. Name of a report
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.json
+msgid "Stock Ledger Invariant Check"
+msgstr "재고 원장 불변 확인"
+
+#. Name of a report
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.json
+msgid "Stock Ledger Variance"
+msgstr "재고 원장 차이"
+
+#. Description of the 'Repost Only Accounting Ledgers' (Check) field in DocType
+#. 'Repost Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Stock Ledgers won’t be reposted."
+msgstr ""
+
+#. Label of the stock_levels_section (Section Break) field in DocType 'Item'
+#: erpnext/stock/doctype/batch/batch.js:81 erpnext/stock/doctype/item/item.json
+msgid "Stock Levels"
+msgstr "재고 수준"
+
+#. Label of the stock_levels_html (HTML) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Stock Levels HTML"
+msgstr "재고 수준 HTML"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
+msgid "Stock Liabilities"
+msgstr "주식 부채"
+
+#. Name of a role
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/doctype/uom_category/uom_category.json
+#: erpnext/stock/doctype/warehouse_type/warehouse_type.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Stock Manager"
+msgstr "재고 관리자"
+
+#: erpnext/stock/doctype/item/item_dashboard.py:34
+msgid "Stock Movement"
+msgstr "주식 변동"
+
+#. Option for the 'Status' (Select) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Stock Partially Reserved"
+msgstr "일부 재고 예약됨"
+
+#. Label of the stock_planning_tab (Tab Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock Planning"
+msgstr "재고 계획"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/item/item.js:168
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Projected Qty"
+msgstr "예상 재고 수량"
+
+#. Label of the stock_qty (Float) field in DocType 'BOM Creator Item'
+#. Label of the stock_qty (Float) field in DocType 'BOM Explosion Item'
+#. Label of the stock_qty (Float) field in DocType 'BOM Item'
+#. Label of the stock_qty (Float) field in DocType 'BOM Secondary Item'
+#. Label of the stock_qty (Float) field in DocType 'Delivery Schedule Item'
+#. Label of the stock_qty (Float) field in DocType 'Material Request Item'
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:257
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:311
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:34
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:34
+msgid "Stock Qty"
+msgstr "재고 수량"
+
+#. Name of a report
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.json
+msgid "Stock Qty vs Batch Qty"
+msgstr "재고 수량 vs 배치 수량"
+
+#. Name of a report
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.json
+msgid "Stock Qty vs Serial No Count"
+msgstr "재고 수량 대 일련 번호 개수"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/report/account_balance/account_balance.js:59
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Received But Not Billed"
+msgstr ""
+
+#. Label of a Link in the Home Workspace
+#. Name of a DocType
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Reconciliation'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Reconciliation"
+msgstr "재고 조정"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+msgid "Stock Reconciliation Item"
+msgstr "재고 조정 항목"
+
+#: erpnext/stock/doctype/item/item.py:685
+msgid "Stock Reconciliations"
+msgstr "재고 조정"
+
+#. Label of a Card Break in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Stock Reports"
+msgstr "주식 보고서"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Reposting Settings"
+msgstr ""
+
+#. Label of the stock_reservation_tab (Tab Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:263
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:271
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:277
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:289
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:297
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:303
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:14
+#: erpnext/public/js/stock_reservation.js:12
+#: erpnext/selling/doctype/sales_order/sales_order.js:109
+#: erpnext/selling/doctype/sales_order/sales_order.js:124
+#: erpnext/selling/doctype/sales_order/sales_order.js:130
+#: erpnext/selling/doctype/sales_order/sales_order.js:248
+#: erpnext/stock/doctype/pick_list/pick_list.js:155
+#: erpnext/stock/doctype/pick_list/pick_list.js:170
+#: erpnext/stock/doctype/pick_list/pick_list.js:175
+#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1666
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1680
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1694
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1708
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1725
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:215
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:227
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:241
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:181
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:194
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:206
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:219
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order_dashboard.py:14
+msgid "Stock Reservation"
+msgstr "주식 예약"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1836
+msgid "Stock Reservation Entries Cancelled"
+msgstr "주식 예약 접수가 취소되었습니다"
+
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
+msgid "Stock Reservation Entries Created"
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py:409
+msgid "Stock Reservation Entries created"
+msgstr "주식 예약 항목이 생성되었습니다"
+
+#. Name of a DocType
+#: erpnext/public/js/stock_reservation.js:309
+#: erpnext/selling/doctype/sales_order/sales_order.js:505
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:388
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:53
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:171
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:342
+msgid "Stock Reservation Entry"
+msgstr "주식 예약 입력"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:571
+msgid "Stock Reservation Entry cannot be updated as it has been delivered."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:565
+msgid "Stock Reservation Entry created against a Pick List cannot be updated. If you need to make changes, we recommend canceling the existing entry and creating a new one."
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
+msgid "Stock Reservation Warehouse Mismatch"
+msgstr "재고 예약 창고 불일치"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:689
+msgid "Stock Reservation can only be created against {0}."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Stock Reserved"
+msgstr "재고 예약됨"
+
+#. Label of the stock_reserved_qty (Float) field in DocType 'Material Request
+#. Plan Item'
+#. Label of the stock_reserved_qty (Float) field in DocType 'Production Plan
+#. Sub Assembly Item'
+#. Label of the stock_reserved_qty (Float) field in DocType 'Work Order Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Stock Reserved Qty"
+msgstr "재고 예약 수량"
+
+#. Label of the stock_reserved_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the stock_reserved_qty (Float) field in DocType 'Pick List Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "Stock Reserved Qty (in Stock UOM)"
+msgstr "예약 재고 수량 (재고 단위)"
+
+#. Label of the auto_accounting_for_stock_settings (Section Break) field in
+#. DocType 'Company'
+#. Label of a shortcut in the ERPNext Settings Workspace
+#. Name of a DocType
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/doctype/selling_settings/selling_settings.py:115
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/workspace/erpnext_settings/erpnext_settings.json
+#: erpnext/stock/doctype/item/item.js:408
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:681
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Stock Settings"
+msgstr "기본 설정"
+
+#. Title of the Module Onboarding 'Stock Onboarding'
+#: erpnext/stock/module_onboarding/stock_onboarding/stock_onboarding.json
+msgid "Stock Setup"
+msgstr ""
+
+#. Label of the stock_summary_tab (Tab Break) field in DocType 'Plant Floor'
+#. Label of the stock_summary (HTML) field in DocType 'Plant Floor'
+#. Label of a Link in the Stock Workspace
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+#: erpnext/stock/page/stock_balance/stock_balance.js:4
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Stock Summary"
+msgstr "주식 요약"
+
+#. Label of a Card Break in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Stock Transactions"
+msgstr "주식 거래"
+
+#. Label of the section_break_9 (Section Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock Transactions Settings"
+msgstr "주식 거래 설정"
+
+#. Label of the stock_uom (Link) field in DocType 'POS Invoice Item'
+#. Label of the stock_uom (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the stock_uom (Link) field in DocType 'Sales Invoice Item'
+#. Label of the stock_uom (Link) field in DocType 'Asset Capitalization Stock
+#. Item'
+#. Label of the stock_uom (Link) field in DocType 'Purchase Order Item'
+#. Label of the stock_uom (Link) field in DocType 'Request for Quotation Item'
+#. Label of the stock_uom (Link) field in DocType 'Supplier Quotation Item'
+#. Label of the stock_uom (Link) field in DocType 'BOM Creator Item'
+#. Label of the stock_uom (Link) field in DocType 'BOM Explosion Item'
+#. Label of the stock_uom (Link) field in DocType 'BOM Item'
+#. Label of the stock_uom (Link) field in DocType 'BOM Secondary Item'
+#. Label of the stock_uom (Link) field in DocType 'Job Card Item'
+#. Label of the stock_uom (Link) field in DocType 'Job Card Secondary Item'
+#. Label of the stock_uom (Link) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#. Label of the stock_uom (Link) field in DocType 'Work Order'
+#. Label of the stock_uom (Link) field in DocType 'Work Order Item'
+#. Label of the stock_uom (Link) field in DocType 'Delivery Schedule Item'
+#. Label of the stock_uom (Link) field in DocType 'Quotation Item'
+#. Label of the stock_uom (Link) field in DocType 'Sales Order Item'
+#. Label of the stock_uom (Link) field in DocType 'Delivery Note Item'
+#. Label of the stock_uom (Link) field in DocType 'Item Lead Time'
+#. Label of the stock_uom (Link) field in DocType 'Material Request Item'
+#. Label of the stock_uom (Link) field in DocType 'Pick List Item'
+#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the stock_uom (Link) field in DocType 'Putaway Rule'
+#. Label of the stock_uom (Link) field in DocType 'Stock Closing Balance'
+#. Label of the stock_uom (Link) field in DocType 'Stock Entry Detail'
+#. Label of the stock_uom (Link) field in DocType 'Stock Ledger Entry'
+#. Label of the stock_uom (Link) field in DocType 'Stock Reconciliation Item'
+#. Label of the stock_uom (Link) field in DocType 'Stock Reservation Entry'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order
+#. Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order
+#. Received Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Inward Order
+#. Secondary Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt Item'
+#. Label of the stock_uom (Link) field in DocType 'Subcontracting Receipt
+#. Supplied Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:259
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:313
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:213
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:214
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_explosion_item/bom_explosion_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
+#: erpnext/stock/report/stock_balance/stock_balance.py:513
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Stock UOM"
+msgstr "주식 단위"
+
+#. Label of the conversion_factor_section (Section Break) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock UOM Quantity"
+msgstr "재고 단위 수량"
+
+#: erpnext/public/js/stock_reservation.js:230
+#: erpnext/selling/doctype/sales_order/sales_order.js:489
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:326
+msgid "Stock Unreservation"
+msgstr "재고 예약 없음"
+
+#. Label of the stock_uom (Link) field in DocType 'Purchase Receipt Item
+#. Supplied'
+#: erpnext/buying/doctype/purchase_receipt_item_supplied/purchase_receipt_item_supplied.json
+msgid "Stock Uom"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:737
+msgid "Stock Update Not Allowed"
+msgstr "재고 업데이트가 허용되지 않습니다"
+
+#. Name of a role
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/product_bundle/product_bundle.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/brand/brand.json
+#: erpnext/setup/doctype/company/company.json
+#: erpnext/setup/doctype/incoterm/incoterm.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/setup/doctype/territory/territory.json
+#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+#: erpnext/stock/doctype/item_manufacturer/item_manufacturer.json
+#: erpnext/stock/doctype/manufacturer/manufacturer.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/quality_inspection_parameter/quality_inspection_parameter.json
+#: erpnext/stock/doctype/quality_inspection_parameter_group/quality_inspection_parameter_group.json
+#: erpnext/stock/doctype/quality_inspection_template/quality_inspection_template.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/doctype/uom_category/uom_category.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/doctype/warehouse_type/warehouse_type.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Stock User"
+msgstr "주식 사용자"
+
+#. Label of the stock_validations_tab (Tab Break) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock Validations"
+msgstr "재고 검증"
+
+#. Label of the stock_value (Float) field in DocType 'Bin'
+#. Label of the value (Currency) field in DocType 'Quick Stock Balance'
+#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.py:37
+#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.py:52
+#: erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/quick_stock_balance/quick_stock_balance.json
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:134
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:160
+msgid "Stock Value"
+msgstr "주식 가치"
+
+#. Label of a chart in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Stock Value by Item Group"
+msgstr ""
+
+#. Description of the 'Default Inventory Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Stock account where inventory value for this item will be tracked"
+msgstr "해당 품목의 재고 가치를 추적할 재고 계정"
+
+#. Name of a report
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.json
+msgid "Stock and Account Value Comparison"
+msgstr "주식과 계좌 가치 비교"
+
+#. Label of the stock_tab (Tab Break) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock and Manufacturing"
+msgstr "재고 및 제조"
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:255
+msgid "Stock cannot be reserved in group warehouse {0}."
+msgstr "그룹 창고 {0}에서는 재고를 예약할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1598
+msgid "Stock cannot be reserved in the group warehouse {0}."
+msgstr "그룹 창고 {0}에서는 재고를 예약할 수 없습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
+msgid "Stock cannot be updated against the following Delivery Notes: {0}"
+msgstr "다음 배송 전표에 대해서는 재고를 업데이트할 수 없습니다: {0}"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
+msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:734
+msgid "Stock cannot be updated for Purchase Invoice {0} because a Purchase Receipt {1} has already been created for this transaction. Please disable the 'Update Stock' checkbox in the Purchase Invoice and save the invoice."
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:125
+msgid "Stock entries exist with the old account. Changing the account may lead to a mismatch between the warehouse closing balance and the account closing balance. The overall closing balance will still match, but not for the specific account."
+msgstr "기존 계정으로 재고 항목이 남아 있습니다. 계정을 변경하면 창고 마감 잔액과 계정 마감 잔액 간에 불일치가 발생할 수 있습니다. 전체 마감 잔액은 일치하지만 특정 계정의 마감 잔액은 일치하지 않을 수 있습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1140
+msgid "Stock has been unreserved for work order {0}."
+msgstr "재고가 작업 주문 {0}에 대한 예약 해제되었습니다."
+
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:359
+msgid "Stock not available for Item {0} in Warehouse {1}."
+msgstr "창고 {1}에서 품목 {0} 의 재고를 찾을 수 없습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:835
+msgid "Stock quantity not enough for Item Code: {0} under warehouse {1}. Available quantity {2} {3}."
+msgstr "창고 {1}에서 품목 코드 {0} 의 재고 수량이 부족합니다. 사용 가능한 수량은 {2} {3} 입니다."
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:255
+msgid "Stock transactions before {0} are frozen"
+msgstr ""
+
+#. Description of the 'Freeze Stocks Older Than (Days)' (Int) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock transactions that are older than the mentioned days cannot be modified."
+msgstr "명시된 일수보다 오래된 주식 거래는 수정할 수 없습니다."
+
+#. Description of the 'Auto Reserve Stock for Sales Order on Purchase' (Check)
+#. field in DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Stock will be reserved on submission of Purchase Receipt created against Material Request for Sales Order."
+msgstr ""
+
+#: erpnext/stock/utils.py:560
+msgid "Stock/Accounts can not be frozen as processing of backdated entries is going on. Please try again later."
+msgstr "소급 입력 처리가 진행 중이므로 재고/계정을 동결할 수 없습니다. 나중에 다시 시도해 주세요."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Stone"
+msgstr "결석"
+
+#. Label of the stop_reason (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:94
+msgid "Stop Reason"
+msgstr "정지 사유"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
+msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:387
+#: 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/tests/utils.py:248
+msgid "Stores"
+msgstr "백화점"
+
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Straight Line"
+msgstr "일직선"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:58
+msgid "Sub Assemblies"
+msgstr ""
+
+#. Label of the raw_materials_tab (Tab Break) field in DocType 'BOM Creator'
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Sub Assemblies & Raw Materials"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321
+msgid "Sub Assembly Item"
+msgstr ""
+
+#. Label of the production_item (Link) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Sub Assembly Item Code"
+msgstr ""
+
+#. Label of the sub_assembly_item_reference (Data) field in DocType 'Material
+#. Request Plan Item'
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+msgid "Sub Assembly Item Reference"
+msgstr ""
+
+#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430
+msgid "Sub Assembly Item is mandatory"
+msgstr ""
+
+#. Label of the section_break_24 (Section Break) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Sub Assembly Items"
+msgstr ""
+
+#. Label of the sub_assembly_warehouse (Link) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Sub Assembly Warehouse"
+msgstr "하위 조립 창고"
+
+#. Label of the operation (Link) field in DocType 'Job Card Time Log'
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
+msgid "Sub Operation"
+msgstr "하위 작업"
+
+#. Label of the sub_operations (Table) field in DocType 'Job Card'
+#. Label of the section_break_21 (Tab Break) field in DocType 'Job Card'
+#. Label of the sub_operations_section (Section Break) field in DocType
+#. 'Operation'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Sub Operations"
+msgstr "하위 작업"
+
+#. Label of the procedure (Link) field in DocType 'Quality Procedure Process'
+#: erpnext/quality_management/doctype/quality_procedure_process/quality_procedure_process.json
+msgid "Sub Procedure"
+msgstr "하위 절차"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:625
+msgid "Sub assembly item references are missing. Please fetch the sub assemblies and raw materials again."
+msgstr ""
+
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:127
+msgid "Sub-assembly BOM Count"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:34
+msgid "Sub-contracting"
+msgstr "하도급"
+
+#. Option for the 'Manufacturing Type' (Select) field in DocType 'Production
+#. Plan Sub Assembly Item'
+#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:17
+#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:12
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "Subcontract"
+msgstr "하청"
+
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.js:29
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:120
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:22
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:22
+msgid "Subcontract Order"
+msgstr "하도급 주문"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontract Order Summary"
+msgstr "하도급 발주 요약"
+
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:84
+msgid "Subcontract Return"
+msgstr "하도급 반환"
+
+#. Label of the subcontracted_item (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:128
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Subcontracted Item"
+msgstr "하청 품목"
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Link in the Subcontracting Workspace
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracted Item To Be Received"
+msgstr "하도급 물품 수령 예정"
+
+#: erpnext/stock/doctype/material_request/material_request.js:224
+msgid "Subcontracted Purchase Order"
+msgstr "하도급 구매 주문서"
+
+#. Label of the subcontracted_qty (Float) field in DocType 'Purchase Order
+#. Item'
+#. Label of the subcontracted_qty (Float) field in DocType 'Sales Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Subcontracted Quantity"
+msgstr "하도급 수량"
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Link in the Subcontracting Workspace
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracted Raw Materials To Be Transferred"
+msgstr "하청 원자재 이송 예정"
+
+#. Label of a Desktop Icon
+#. Option for the 'Type' (Select) field in DocType 'Material Request Plan Item'
+#. Label of the subcontracting_section (Section Break) field in DocType
+#. 'Production Plan Sub Assembly Item'
+#. Label of a Card Break in the Manufacturing Workspace
+#. Option for the 'Purpose' (Select) field in DocType 'Material Request'
+#. Name of a Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/desktop_icon/subcontracting.json
+#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:10
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting"
+msgstr "하도급"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting BOM"
+msgstr ""
+
+#. Label of the subcontracting_conversion_factor (Float) field in DocType
+#. 'Subcontracting Inward Order Item'
+#. Label of the subcontracting_conversion_factor (Float) field in DocType
+#. 'Subcontracting Order Item'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Subcontracting Conversion Factor"
+msgstr ""
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:132
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:158
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting Delivery"
+msgstr "하청 납품"
+
+#. Label of the subcontracting_inward_tab (Tab Break) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:33
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Subcontracting Inward"
+msgstr "내부 하청"
+
+#. Label of the subcontracting_inward_order (Link) field in DocType 'Work
+#. Order'
+#. Label of the subcontracting_inward_order (Link) field in DocType 'Stock
+#. Entry'
+#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation
+#. Entry'
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Name of a DocType
+#. Label of a Card Break in the Subcontracting Workspace
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1049
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting Inward Order"
+msgstr "하도급 주문"
+
+#. Label of a number card in the Subcontracting Workspace
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracting Inward Order Count"
+msgstr "하도급 수입 주문 건수"
+
+#. Label of the subcontracting_inward_order_item (Data) field in DocType 'Work
+#. Order'
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
+msgid "Subcontracting Inward Order Item"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+msgid "Subcontracting Inward Order Received Item"
+msgstr "하도급 수입 주문 접수 품목"
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+msgid "Subcontracting Inward Order Secondary Item"
+msgstr "하도급 수입 주문 보조 품목"
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+msgid "Subcontracting Inward Order Service Item"
+msgstr "하청 계약 매입 서비스 품목"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the subcontracting_order (Link) field in DocType 'Stock Entry'
+#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation
+#. Entry'
+#. Name of a DocType
+#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting
+#. Receipt Item'
+#. Label of the subcontracting_order (Link) field in DocType 'Subcontracting
+#. Receipt Supplied Item'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:369
+#: erpnext/controllers/subcontracting_controller.py:1151
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js:141
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting Order"
+msgstr "하도급 주문"
+
+#. Description of the 'Auto create Subcontracting Order' (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Subcontracting Order (Draft) will be auto-created on submission of Purchase Order."
+msgstr "구매 주문서 제출 시 하도급 발주서(초안)가 자동으로 생성됩니다."
+
+#. Name of a DocType
+#. Label of the subcontracting_order_item (Data) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:548
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Subcontracting Order Item"
+msgstr "하도급 주문 품목"
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_order_service_item/subcontracting_order_service_item.json
+msgid "Subcontracting Order Service Item"
+msgstr "하도급 주문 서비스 품목"
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:234
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+msgid "Subcontracting Order Supplied Item"
+msgstr "하도급 주문 공급 품목"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
+msgid "Subcontracting Order {0} created."
+msgstr "하도급 주문 {0} 이 생성되었습니다."
+
+#. Label of a chart in the Subcontracting Workspace
+#. Label of a Card Break in the Subcontracting Workspace
+#. Label of a Link in the Subcontracting Workspace
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracting Outward Order"
+msgstr "외부 주문 하도급"
+
+#. Label of a number card in the Subcontracting Workspace
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+msgid "Subcontracting Outward Order Count"
+msgstr "하도급 주문 건수"
+
+#. Label of the purchase_order (Link) field in DocType 'Subcontracting Order'
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Subcontracting Purchase Order"
+msgstr "하도급 구매 주문서"
+
+#. Label of a Link in the Manufacturing Workspace
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Item'
+#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
+#. Cost Purchase Receipt'
+#. Label of the subcontracting_receipt (Link) field in DocType 'Purchase
+#. Receipt'
+#. Option for the 'Reference Type' (Select) field in DocType 'Quality
+#. Inspection'
+#. Name of a DocType
+#. Label of a Link in the Subcontracting Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:642
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+#: erpnext/subcontracting/workspace/subcontracting/subcontracting.json
+#: erpnext/workspace_sidebar/subcontracting.json
+msgid "Subcontracting Receipt"
+msgstr "하도급 영수증"
+
+#. Label of the subcontracting_receipt_item (Data) field in DocType 'Purchase
+#. Receipt Item'
+#. Name of a DocType
+#. Label of the subcontracting_receipt_item (Data) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Subcontracting Receipt Item"
+msgstr "하도급 영수증 항목"
+
+#. Name of a DocType
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Subcontracting Receipt Supplied Item"
+msgstr "하도급 영수증 공급 품목"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
+#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:138
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
+msgid "Subcontracting Return"
+msgstr "하도급 반환"
+
+#. Label of the sales_order (Link) field in DocType 'Subcontracting Inward
+#. Order'
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.json
+msgid "Subcontracting Sales Order"
+msgstr "하청 판매 주문"
+
+#. Label of the subcontract (Tab Break) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Subcontracting Settings"
+msgstr "하청 설정"
+
+#. Title of the Module Onboarding 'Subcontracting Onboarding'
+#: erpnext/subcontracting/module_onboarding/subcontracting_onboarding/subcontracting_onboarding.json
+msgid "Subcontracting Setup"
+msgstr "하청 계약 설정"
+
+#. Label of the subdivision (Autocomplete) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Subdivision"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
+msgid "Submit Action Failed"
+msgstr "작업 제출 실패"
+
+#. Label of the submit_err_jv (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Submit ERR Journals?"
+msgstr "ERR 저널을 제출하시겠습니까?"
+
+#. Label of the submit_invoice (Check) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Submit Generated Invoices"
+msgstr "생성된 송장 제출"
+
+#. Label of the submit_journal_entries (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Submit Journal Entries"
+msgstr "일지 항목 제출"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
+msgid "Submit this Work Order for further processing."
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:310
+msgid "Submit your Quotation"
+msgstr "견적서를 제출하세요"
+
+#. Label of the subscription_section (Section Break) field in DocType 'Payment
+#. Request'
+#. Label of the subscription_section (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the subscription (Link) field in DocType 'Process Subscription'
+#. Label of the subscription_section (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the subscription (Link) field in DocType 'Purchase Invoice'
+#. Label of the subscription_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the subscription (Link) field in DocType 'Sales Invoice'
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Desktop Icon
+#. Title of a Workspace Sidebar
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/process_subscription/process_subscription.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_dashboard.py:26
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:36
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation_dashboard.py:16
+#: erpnext/desktop_icon/subscription.json
+#: erpnext/selling/doctype/quotation/quotation_dashboard.py:12
+#: erpnext/stock/doctype/delivery_note/delivery_note_dashboard.py:25
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_dashboard.py:34
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Subscription"
+msgstr "신청"
+
+#. Label of the end_date (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Subscription End Date"
+msgstr "구독 종료일"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:363
+msgid "Subscription End Date is mandatory to follow calendar months"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:353
+msgid "Subscription End Date must be after {0} as per the subscription plan"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/subscription_invoice/subscription_invoice.json
+msgid "Subscription Invoice"
+msgstr "구독 청구서"
+
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Subscription Management"
+msgstr "구독 관리"
+
+#. Label of the subscription_period (Section Break) field in DocType
+#. 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Subscription Period"
+msgstr "구독 기간"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Subscription Plan"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/subscription_plan_detail/subscription_plan_detail.json
+msgid "Subscription Plan Detail"
+msgstr ""
+
+#. Label of the subscription_plans (Table) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Subscription Plans"
+msgstr ""
+
+#. Label of the price_determination (Select) field in DocType 'Subscription
+#. Plan'
+#: erpnext/accounts/doctype/subscription_plan/subscription_plan.json
+msgid "Subscription Price Based On"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/subscription_settings/subscription_settings.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Subscription Settings"
+msgstr "구독 설정"
+
+#. Label of the start_date (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Subscription Start Date"
+msgstr "구독 시작일"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:735
+msgid "Subscription for Future dates cannot be processed."
+msgstr "향후 날짜에 대한 구독 신청을 처리할 수 없습니다."
+
+#: erpnext/selling/doctype/customer/customer_dashboard.py:28
+msgid "Subscriptions"
+msgstr "구독"
+
+#. Label of the succeeded (Int) field in DocType 'Bulk Transaction Log'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.json
+msgid "Succeeded"
+msgstr "성공했습니다"
+
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log/bulk_transaction_log.js:7
+msgid "Succeeded Entries"
+msgstr "성공한 항목"
+
+#. Label of the success_redirect_url (Data) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Success Redirect URL"
+msgstr ""
+
+#. Label of the success_details (Section Break) field in DocType 'Appointment
+#. Booking Settings'
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.json
+msgid "Success Settings"
+msgstr "성공 설정"
+
+#. Option for the 'Depreciation Entry Posting Status' (Select) field in DocType
+#. 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Successful"
+msgstr "성공적인"
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:580
+msgid "Successfully Reconciled"
+msgstr "성공적으로 조정되었습니다"
+
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:194
+msgid "Successfully Set Supplier"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:407
+msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:173
+msgid "Successfully imported {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:157
+msgid "Successfully imported {0} record."
+msgstr "{0} 레코드를 성공적으로 가져왔습니다."
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:169
+msgid "Successfully imported {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:156
+msgid "Successfully imported {0} records."
+msgstr "{0} 레코드를 성공적으로 가져왔습니다."
+
+#: erpnext/buying/doctype/supplier/supplier.js:202
+msgid "Successfully linked to Customer"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.js:275
+msgid "Successfully linked to Supplier"
+msgstr ""
+
+#: erpnext/accounts/doctype/ledger_merge/ledger_merge.js:99
+msgid "Successfully merged {0} out of {1}."
+msgstr "{0} 이 {1}에서 성공적으로 병합되었습니다."
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:184
+msgid "Successfully updated {0} record out of {1}. Click on Export Errored Rows, fix the errors and import again."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:162
+msgid "Successfully updated {0} record."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:180
+msgid "Successfully updated {0} records out of {1}. Click on Export Errored Rows, fix the errors and import again."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.js:161
+msgid "Successfully updated {0} records."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:263
+msgid "Suggest creating a"
+msgstr "생성을 제안합니다"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:876
+msgid "Suggested"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:506
+msgid "Suggested Transfer to {0}"
+msgstr ""
+
+#. Option for the 'Request Type' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Suggestions"
+msgstr "제안"
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:183
+msgid "Summary for this month and pending activities"
+msgstr "이번 달 요약 및 향후 계획"
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:180
+msgid "Summary for this week and pending activities"
+msgstr "이번 주 요약 및 향후 계획"
+
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:137
+msgid "Supplied Item"
+msgstr "제공된 품목"
+
+#. Label of the supplied_items (Table) field in DocType 'Purchase Invoice'
+#. Label of the supplied_items (Table) field in DocType 'Subcontracting Order'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+msgid "Supplied Items"
+msgstr "제공된 품목"
+
+#. Label of the supplied_qty (Float) field in DocType 'Subcontracting Order
+#. Supplied Item'
+#: erpnext/buying/report/subcontract_order_summary/subcontract_order_summary.py:144
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+msgid "Supplied Qty"
+msgstr "공급 수량"
+
+#. Label of the supplier (Link) field in DocType 'Bank Guarantee'
+#. Label of the party (Link) field in DocType 'Payment Order'
+#. Label of the supplier (Link) field in DocType 'Payment Order Reference'
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the supplier (Link) field in DocType 'Pricing Rule'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the supplier (Table MultiSelect) field in DocType 'Promotional
+#. Scheme'
+#. Label of the supplier (Link) field in DocType 'Purchase Invoice'
+#. Label of the supplier (Link) field in DocType 'Supplier Item'
+#. Label of the supplier (Link) field in DocType 'Tax Rule'
+#. Option for the 'Asset Owner' (Select) field in DocType 'Asset'
+#. Label of the supplier (Link) field in DocType 'Asset'
+#. Label of the supplier (Link) field in DocType 'Purchase Order'
+#. Label of the vendor (Link) field in DocType 'Request for Quotation'
+#. Label of the supplier (Link) field in DocType 'Request for Quotation
+#. Supplier'
+#. Name of a DocType
+#. Label of the supplier (Link) field in DocType 'Supplier Quotation'
+#. Label of the supplier (Link) field in DocType 'Supplier Scorecard'
+#. Label of the supplier (Link) field in DocType 'Supplier Scorecard Period'
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Link in the Buying Workspace
+#. Option for the 'Party Type' (Select) field in DocType 'Contract'
+#. Label of the supplier (Link) field in DocType 'Blanket Order'
+#. Label of the supplier (Link) field in DocType 'Production Plan Sub Assembly
+#. Item'
+#. Label of the supplier (Link) field in DocType 'Lower Deduction Certificate'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
+#. Label of the supplier (Link) field in DocType 'Sales Order Item'
+#. Label of the supplier (Link) field in DocType 'SMS Center'
+#. Label of a Link in the Home Workspace
+#. Label of a shortcut in the Home Workspace
+#. Label of the supplier (Link) field in DocType 'Batch'
+#. Label of the supplier (Link) field in DocType 'Item Price'
+#. Label of the supplier (Link) field in DocType 'Item Supplier'
+#. Label of the supplier (Link) field in DocType 'Landed Cost Purchase Receipt'
+#. Label of the supplier (Link) field in DocType 'Purchase Receipt'
+#. Option for the 'Pickup from' (Select) field in DocType 'Shipment'
+#. Label of the pickup_supplier (Link) field in DocType 'Shipment'
+#. Option for the 'Delivery to' (Select) field in DocType 'Shipment'
+#. Label of the delivery_supplier (Link) field in DocType 'Shipment'
+#. Label of the supplier (Link) field in DocType 'Stock Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+#: erpnext/accounts/doctype/payment_order/payment_order.js:112
+#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/accounts/doctype/payment_order_reference/payment_order_reference.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/supplier_item/supplier_item.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:113
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:112
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:134
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:60
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.js:34
+#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:189
+#: erpnext/accounts/report/purchase_register/purchase_register.js:21
+#: erpnext/accounts/report/purchase_register/purchase_register.py:171
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:29
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:37
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.js:44
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:185
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:270
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.js:47
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:94
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:89
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:211
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.js:8
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:29
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.js:8
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:29
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:51
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:195
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/crm/doctype/contract/contract.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/public/js/purchase_trends_filters.js:50
+#: erpnext/public/js/purchase_trends_filters.js:63
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/regional/report/irs_1099/irs_1099.py:77
+#: erpnext/selling/doctype/customer/customer.js:257
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:187
+#: erpnext/selling/doctype/sales_order/sales_order.js:1741
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/doctype/sms_center/sms_center.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/batch/batch.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/item_supplier/item_supplier.json
+#: erpnext/stock/doctype/landed_cost_purchase_receipt/landed_cost_purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/shipment/shipment.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.js:8
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:524
+#: erpnext/workspace_sidebar/buying.json erpnext/workspace_sidebar/home.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/subscription.json
+msgid "Supplier"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:98
+msgid "Supplier > Supplier Type"
+msgstr ""
+
+#. Label of the section_addresses (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the section_addresses (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the supplier_address (Link) field in DocType 'Purchase Order'
+#. Label of the supplier_address (Link) field in DocType 'Supplier Quotation'
+#. Label of the supplier_address_section (Section Break) field in DocType
+#. 'Supplier Quotation'
+#. Label of the section_addresses (Section Break) field in DocType 'Purchase
+#. Receipt'
+#. Label of the supplier_address (Link) field in DocType 'Purchase Receipt'
+#. Label of the supplier_address (Link) field in DocType 'Stock Entry'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Supplier Address"
+msgstr ""
+
+#. Label of the address_display (Text Editor) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Supplier Address Details"
+msgstr ""
+
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Addresses And Contacts"
+msgstr ""
+
+#. Label of the contact_person (Link) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+msgid "Supplier Contact"
+msgstr ""
+
+#. Label of the supplier_defaults_section (Section Break) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Supplier Defaults"
+msgstr ""
+
+#. Label of the supplier_delivery_note (Data) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Supplier Delivery Note"
+msgstr ""
+
+#. Label of the supplier_details (Text) field in DocType 'Supplier'
+#. Label of the supplier_details (Section Break) field in DocType 'Item'
+#. Label of the contact_section (Section Break) field in DocType 'Stock Entry'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Supplier Details"
+msgstr ""
+
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the supplier_group (Link) field in DocType 'Pricing Rule'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the supplier_group (Table MultiSelect) field in DocType
+#. 'Promotional Scheme'
+#. Label of the supplier_group (Link) field in DocType 'Purchase Invoice'
+#. Label of the supplier_group (Link) field in DocType 'Supplier Group Item'
+#. Label of the supplier_group (Link) field in DocType 'Tax Rule'
+#. Label of the supplier_group (Link) field in DocType 'Purchase Order'
+#. Label of the supplier_group (Link) field in DocType 'Supplier'
+#. Label of a Link in the Buying Workspace
+#. Label of the supplier_group (Link) field in DocType 'Import Supplier
+#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/report/accounts_payable/accounts_payable.js:119
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:102
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:200
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:178
+#: erpnext/accounts/report/purchase_register/purchase_register.js:27
+#: erpnext/accounts/report/purchase_register/purchase_register.py:186
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:55
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:503
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:107
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/public/js/purchase_trends_filters.js:51
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+#: erpnext/regional/report/irs_1099/irs_1099.js:26
+#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Group"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/supplier_group_item/supplier_group_item.json
+msgid "Supplier Group Item"
+msgstr ""
+
+#. Label of the supplier_group_name (Data) field in DocType 'Supplier Group'
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+msgid "Supplier Group Name"
+msgstr ""
+
+#. Label of the supplier_info_tab (Tab Break) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Supplier Info"
+msgstr ""
+
+#. Label of the supplier_invoice_details (Section Break) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Supplier Invoice"
+msgstr ""
+
+#. Label of the supplier_invoice_date (Date) field in DocType 'Opening Invoice
+#. Creation Tool Item'
+#. Label of the bill_date (Date) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:232
+msgid "Supplier Invoice Date"
+msgstr ""
+
+#. Label of the bill_no (Data) field in DocType 'Payment Entry Reference'
+#. Label of the bill_no (Data) field in DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.html:58
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/report/general_ledger/general_ledger.html:202
+#: erpnext/accounts/report/general_ledger/general_ledger.py:813
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:226
+msgid "Supplier Invoice No"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1775
+msgid "Supplier Invoice No exists in Purchase Invoice {0}"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/supplier_item/supplier_item.json
+msgid "Supplier Item"
+msgstr ""
+
+#. Label of the lead_time_days (Int) field in DocType 'Supplier Quotation Item'
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+msgid "Supplier Lead Time (days)"
+msgstr ""
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Supplier Ledger"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+msgid "Supplier Ledger Summary"
+msgstr ""
+
+#. Label of the supplier_name (Data) field in DocType 'Purchase Invoice'
+#. Option for the 'Supplier Naming By' (Select) field in DocType 'Buying
+#. Settings'
+#. Label of the supplier_name (Data) field in DocType 'Purchase Order'
+#. Label of the supplier_name (Read Only) field in DocType 'Request for
+#. Quotation Supplier'
+#. Label of the supplier_name (Data) field in DocType 'Supplier'
+#. Label of the supplier_name (Data) field in DocType 'Supplier Quotation'
+#. Label of the supplier_name (Data) field in DocType 'Blanket Order'
+#. Label of the supplier_name (Data) field in DocType 'Purchase Receipt'
+#. Label of the supplier_name (Data) field in DocType 'Stock Entry'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
+#: 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:177
+#: erpnext/accounts/report/received_items_to_be_billed/received_items_to_be_billed.py:35
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:73
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation_supplier/request_for_quotation_supplier.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:101
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Supplier Name"
+msgstr ""
+
+#. Label of the supp_master_name (Select) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Supplier Naming By"
+msgstr ""
+
+#. Label of the supplier_number (Data) field in DocType 'Supplier Number At
+#. Customer'
+#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json
+msgid "Supplier Number"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/selling/doctype/supplier_number_at_customer/supplier_number_at_customer.json
+msgid "Supplier Number At Customer"
+msgstr ""
+
+#. Label of the supplier_numbers (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Supplier Numbers"
+msgstr ""
+
+#. Label of the supplier_part_no (Data) field in DocType 'Request for Quotation
+#. Item'
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/templates/includes/rfq/rfq_macros.html:20
+msgid "Supplier Part No"
+msgstr ""
+
+#. Label of the supplier_part_no (Data) field in DocType 'Purchase Order Item'
+#. Label of the supplier_part_no (Data) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the supplier_part_no (Data) field in DocType 'Item Supplier'
+#. Label of the supplier_part_no (Data) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/stock/doctype/item_supplier/item_supplier.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Supplier Part Number"
+msgstr ""
+
+#. Label of the portal_users (Table) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Supplier Portal Users"
+msgstr ""
+
+#. Label of the supplier_primary_address (Link) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Supplier Primary Address"
+msgstr ""
+
+#. Label of the supplier_primary_contact (Link) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Supplier Primary Contact"
+msgstr ""
+
+#. Label of the ref_sq (Link) field in DocType 'Purchase Order'
+#. Label of the supplier_quotation (Link) field in DocType 'Purchase Order
+#. Item'
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of the supplier_quotation (Link) field in DocType 'Quotation'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:517
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/crm/doctype/opportunity/opportunity.js:81
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/stock/doctype/material_request/material_request.js:208
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Quotation"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:155
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Quotation Comparison"
+msgstr ""
+
+#. Label of the supplier_quotation_item (Link) field in DocType 'Purchase Order
+#. Item'
+#. Name of a DocType
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+msgid "Supplier Quotation Item"
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
+msgid "Supplier Quotation {0} Created"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:6
+msgid "Supplier Reference"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1765
+msgid "Supplier Required"
+msgstr ""
+
+#. Label of the supplier_score (Data) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Supplier Score"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Card Break in the Buying Workspace
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Scorecard"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Scorecard Criteria"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Supplier Scorecard Period"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/buying/doctype/supplier_scorecard_scoring_criteria/supplier_scorecard_scoring_criteria.json
+msgid "Supplier Scorecard Scoring Criteria"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+msgid "Supplier Scorecard Scoring Standing"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json
+msgid "Supplier Scorecard Scoring Variable"
+msgstr ""
+
+#. Label of the scorecard (Link) field in DocType 'Supplier Scorecard Period'
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Supplier Scorecard Setup"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Scorecard Standing"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Buying Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/workspace_sidebar/buying.json
+msgid "Supplier Scorecard Variable"
+msgstr ""
+
+#. Label of the supplier_type (Select) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Supplier Type"
+msgstr ""
+
+#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Invoice'
+#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Order'
+#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Supplier Warehouse"
+msgstr ""
+
+#. Label of the delivered_by_supplier (Check) field in DocType 'Sales Order
+#. Item'
+#. Label of the delivered_by_supplier (Check) field in DocType 'Packed Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "Supplier delivers to Customer"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1764
+msgid "Supplier is required for all selected Items"
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Supplier of Goods or Services."
+msgstr "재화 또는 용역 공급자."
+
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
+msgid "Supplier {0} not found in {1}"
+msgstr ""
+
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:67
+msgid "Supplier(s)"
+msgstr ""
+
+#. Label of the suppliers (Table) field in DocType 'Request for Quotation'
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+msgid "Suppliers"
+msgstr ""
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
+msgid "Supplies subject to the reverse charge provision"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:316
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:381
+msgid "Supply"
+msgstr "공급"
+
+#. Label of a Desktop Icon
+#. Name of a Workspace
+#. Title of a Workspace Sidebar
+#: erpnext/desktop_icon/support.json
+#: erpnext/selling/doctype/customer/customer_dashboard.py:23
+#: erpnext/setup/doctype/company/company_dashboard.py:24
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:298
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/support.json
+msgid "Support"
+msgstr "지원하다"
+
+#. Name of a report
+#: erpnext/support/report/support_hour_distribution/support_hour_distribution.json
+msgid "Support Hour Distribution"
+msgstr "지원 시간 배분"
+
+#. Label of the portal_sb (Section Break) field in DocType 'Support Settings'
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Support Portal"
+msgstr "지원 포털"
+
+#. Name of a DocType
+#: erpnext/support/doctype/support_search_source/support_search_source.json
+msgid "Support Search Source"
+msgstr "검색 소스 지원"
+
+#. Name of a DocType
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/support/doctype/support_settings/support_settings.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/erpnext_settings.json
+msgid "Support Settings"
+msgstr "지원 설정"
+
+#. Name of a role
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/doctype/issue_type/issue_type.json
+msgid "Support Team"
+msgstr ""
+
+#: erpnext/crm/report/lead_conversion_time/lead_conversion_time.py:68
+msgid "Support Tickets"
+msgstr "지원 티켓"
+
+#: erpnext/public/js/utils/naming_series.js:89
+msgid "Supported Variables:"
+msgstr "지원되는 변수:"
+
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:64
+msgid "Suspected Discount Amount"
+msgstr "예상 할인 금액"
+
+#. Option for the 'Status' (Select) field in DocType 'Driver'
+#. Option for the 'Status' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Suspended"
+msgstr "정지된"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:442
+msgid "Switch Between Payment Modes"
+msgstr "결제 방식 전환"
+
+#: banking/src/components/features/Settings/Preferences.tsx:186
+msgid "Switch between light, dark, or system theme"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:23
+msgid "Sync Now"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:36
+msgid "Sync Started"
+msgstr "동기화가 시작되었습니다"
+
+#. Label of the automatic_sync (Check) field in DocType 'Plaid Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "Synchronize all accounts every hour"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:673
+msgid "System In Use"
+msgstr "시스템 사용 중"
+
+#. Description of the 'User ID' (Link) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "System User (login) ID. If set, it will become default for all HR forms."
+msgstr ""
+
+#. Description of the 'Make Serial No / Batch from Work Order' (Check) field in
+#. DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "System will automatically create the serial numbers / batch for the Finished Good on submission of work order"
+msgstr ""
+
+#. Description of the 'Allow Implicit Pegged Currency Conversion' (Check) field
+#. in DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "System will do an implicit conversion using the pegged currency. \n"
+"Ex: Instead of AED -> INR, system will do AED -> USD -> INR using the pegged exchange rate of AED against USD."
+msgstr ""
+
+#. Description of the 'Invoice Limit' (Int) field in DocType 'Payment
+#. Reconciliation'
+#. Description of the 'Payment Limit' (Int) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "System will fetch all the entries if limit value is zero."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2230
+msgid "System will not check over billing since amount for Item {0} in {1} is zero"
+msgstr ""
+
+#. Description of the 'Threshold for Suggestion (In Percentage)' (Percent)
+#. field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "System will notify to increase or decrease quantity or amount "
+msgstr "시스템은 수량이나 금액을 늘리거나 줄이도록 알립니다. "
+
+#. 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 "TDS 계산 요약"
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1539
+msgid "TDS Deducted"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
+msgid "TDS Payable"
+msgstr ""
+
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
+#. Description of a DocType
+#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
+msgid "Table for Item that will be shown in Web Site"
+msgstr "웹사이트에 표시될 항목 표"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Tablespoon (US)"
+msgstr ""
+
+#. Label of the target_amount (Float) field in DocType 'Target Detail'
+#: erpnext/setup/doctype/target_detail/target_detail.json
+msgid "Target Amount"
+msgstr "목표 금액"
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:104
+msgid "Target ({})"
+msgstr "대상({})"
+
+#. Label of the target_asset (Link) field in DocType 'Asset Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Target Asset"
+msgstr "목표 자산"
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:208
+msgid "Target Asset {0} cannot be cancelled"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:206
+msgid "Target Asset {0} cannot be submitted"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:202
+msgid "Target Asset {0} cannot be {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:212
+msgid "Target Asset {0} does not belong to company {1}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:191
+msgid "Target Asset {0} needs to be composite asset"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/target_detail/target_detail.json
+msgid "Target Detail"
+msgstr "목표 세부 정보"
+
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year_dashboard.py:12
+#: erpnext/accounts/doctype/monthly_distribution/monthly_distribution_dashboard.py:13
+msgid "Target Details"
+msgstr "목표 세부 정보"
+
+#. Label of the distribution_id (Link) field in DocType 'Target Detail'
+#: erpnext/setup/doctype/target_detail/target_detail.json
+msgid "Target Distribution"
+msgstr "목표 분포"
+
+#. Label of the target_exchange_rate (Float) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Target Exchange Rate"
+msgstr "목표 환율"
+
+#. Label of the target_fieldname (Data) field in DocType 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Target Fieldname (Stock Ledger Entry)"
+msgstr "대상 필드 이름(재고 장부 항목)"
+
+#. Label of the target_fixed_asset_account (Link) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Target Fixed Asset Account"
+msgstr ""
+
+#. Label of the target_incoming_rate (Currency) field in DocType 'Asset
+#. Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Target Incoming Rate"
+msgstr ""
+
+#. Label of the target_item_code (Link) field in DocType 'Asset Capitalization'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+msgid "Target Item Code"
+msgstr "대상 품목 코드"
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:182
+msgid "Target Item {0} must be a Fixed Asset item"
+msgstr ""
+
+#. Label of the target_location (Link) field in DocType 'Asset Movement Item'
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+msgid "Target Location"
+msgstr "목표 위치"
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:83
+msgid "Target Location is required for transferring Asset {0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:89
+msgid "Target Location is required while receiving Asset {0}"
+msgstr ""
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/sales_partner_target_variance_based_on_item_group.js:41
+#: erpnext/selling/report/sales_person_target_variance_based_on_item_group/sales_person_target_variance_based_on_item_group.js:41
+#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.js:41
+msgid "Target On"
+msgstr ""
+
+#. Label of the target_qty (Float) field in DocType 'Target Detail'
+#: erpnext/setup/doctype/target_detail/target_detail.json
+msgid "Target Qty"
+msgstr "목표 수량"
+
+#. Label of the target_warehouse (Link) field in DocType 'Sales Invoice Item'
+#. Label of the warehouse (Link) field in DocType 'Purchase Order Item'
+#. Label of the target_warehouse (Link) field in DocType 'Job Card'
+#. Label of the fg_warehouse (Link) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#. Label of the fg_warehouse (Link) field in DocType 'Work Order'
+#. Label of the target_warehouse (Link) field in DocType 'Delivery Note Item'
+#. Label of the warehouse (Link) field in DocType 'Material Request Item'
+#. Label of the t_warehouse (Link) field in DocType 'Stock Entry Detail'
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/dashboard/item_dashboard.js:234
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:804
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+msgid "Target Warehouse"
+msgstr ""
+
+#. Label of the target_address_display (Text Editor) field in DocType 'Stock
+#. Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Target Warehouse Address"
+msgstr "대상 창고 주소"
+
+#. Label of the target_warehouse_address (Link) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Target Warehouse Address Link"
+msgstr "대상 창고 주소 링크"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
+msgid "Target Warehouse Reservation Error"
+msgstr "대상 창고 예약 오류"
+
+#: erpnext/controllers/subcontracting_inward_controller.py:232
+msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
+msgstr "완제품의 목표 창고는 하도급 입고 주문에 연결된 작업 주문 {2} 의 완제품 창고 {1} 와 동일해야 합니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
+msgid "Target Warehouse is required before Submit"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
+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:321
+msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
+msgstr "대상 창고 {0} 는 하도급 입고 품목의 납품 창고 {1} 와 동일해야 합니다."
+
+#. Label of the targets (Table) field in DocType 'Sales Partner'
+#. Label of the targets (Table) field in DocType 'Sales Person'
+#. Label of the targets (Table) field in DocType 'Territory'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Targets"
+msgstr "목표"
+
+#. Label of the tariff_number (Data) field in DocType 'Customs Tariff Number'
+#: erpnext/stock/doctype/customs_tariff_number/customs_tariff_number.json
+msgid "Tariff Number"
+msgstr "요금 번호"
+
+#. Label of the task_assignee_email (Data) field in DocType 'Asset Maintenance
+#. Log'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+msgid "Task Assignee Email"
+msgstr "업무 담당자 이메일"
+
+#. Option for the '% Complete Method' (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Task Completion"
+msgstr "작업 완료"
+
+#. Name of a DocType
+#: erpnext/projects/doctype/task_depends_on/task_depends_on.json
+msgid "Task Depends On"
+msgstr ""
+
+#. Label of the description (Text Editor) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Task Description"
+msgstr "업무 설명"
+
+#. Label of the task_name (Data) field in DocType 'Asset Maintenance Log'
+#: erpnext/assets/doctype/asset_maintenance_log/asset_maintenance_log.json
+msgid "Task Name"
+msgstr "작업 이름"
+
+#. Option for the '% Complete Method' (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Task Progress"
+msgstr "작업 진행 상황"
+
+#. Name of a DocType
+#: erpnext/projects/doctype/task_type/task_type.json
+msgid "Task Type"
+msgstr "작업 유형"
+
+#. Option for the '% Complete Method' (Select) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Task Weight"
+msgstr "작업 가중치"
+
+#: erpnext/projects/doctype/project_template/project_template.py:41
+msgid "Task {0} depends on Task {1}. Please add Task {1} to the Tasks list."
+msgstr ""
+
+#: erpnext/projects/report/project_summary/project_summary.py:68
+msgid "Tasks Completed"
+msgstr "완료된 작업"
+
+#: erpnext/projects/report/project_summary/project_summary.py:72
+msgid "Tasks Overdue"
+msgstr "기한이 지난 작업"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the tax_type (Link) field in DocType 'Item Tax Template Detail'
+#. Label of the tax_tab (Tab Break) field in DocType 'Supplier'
+#. Label of the tax_tab (Tab Break) field in DocType 'Customer'
+#. Label of the item_tax_section_break (Tab Break) field in DocType 'Item'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json
+#: erpnext/accounts/report/account_balance/account_balance.js:60
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/stock/doctype/item/item.json
+msgid "Tax"
+msgstr "세"
+
+#. Label of the tax_account (Link) field in DocType 'Import Supplier Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Tax Account"
+msgstr "세무 계정"
+
+#. Label of the amount (Currency) field in DocType 'Item Wise Tax Detail'
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:244
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:91
+msgid "Tax Amount"
+msgstr ""
+
+#. Label of the tax_amount_after_discount_amount (Currency) field in DocType
+#. 'Purchase Taxes and Charges'
+#. Label of the base_tax_amount_after_discount_amount (Currency) field in
+#. DocType 'Purchase Taxes and Charges'
+#. Label of the tax_amount_after_discount_amount (Currency) field in DocType
+#. 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Tax Amount After Discount Amount"
+msgstr "할인 후 세액"
+
+#. Label of the base_tax_amount_after_discount_amount (Currency) field in
+#. DocType 'Sales Taxes and Charges'
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+msgid "Tax Amount After Discount Amount (Company Currency)"
+msgstr "할인 후 세액 (회사 통화)"
+
+#. Description of the 'Round Tax Amount Row-wise' (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Tax Amount will be rounded on a row(items) level"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
+#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
+msgid "Tax Assets"
+msgstr "세금 자산"
+
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'POS Invoice'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the tax_breakup (Section Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Quotation'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Sales Order'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Delivery
+#. Note'
+#. Label of the sec_tax_breakup (Section Break) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Tax Breakup"
+msgstr "세금 분석"
+
+#. Label of the tax_category (Link) field in DocType 'POS Invoice'
+#. Label of the tax_category (Link) field in DocType 'POS Profile'
+#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
+#. Label of the tax_category (Link) field in DocType 'Purchase Taxes and
+#. Charges Template'
+#. Label of the tax_category (Link) field in DocType 'Sales Invoice'
+#. Label of the tax_category (Link) field in DocType 'Sales Taxes and Charges
+#. Template'
+#. Name of a DocType
+#. Label of the tax_category (Link) field in DocType 'Tax Rule'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the tax_category (Link) field in DocType 'Purchase Order'
+#. Label of the tax_category (Link) field in DocType 'Supplier'
+#. Label of the tax_category (Link) field in DocType 'Supplier Quotation'
+#. Label of the tax_category (Link) field in DocType 'Customer'
+#. Label of the tax_category (Link) field in DocType 'Quotation'
+#. Label of the tax_category (Link) field in DocType 'Sales Order'
+#. Label of the tax_category (Link) field in DocType 'Delivery Note'
+#. Label of the tax_category (Link) field in DocType 'Item Tax'
+#. Label of the tax_category (Link) field in DocType 'Purchase Receipt'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.json
+#: erpnext/accounts/doctype/tax_category/tax_category.json
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/item_tax/item_tax.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Tax Category"
+msgstr "세금 범주"
+
+#: erpnext/controllers/buying_controller.py:257
+msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
+msgid "Tax Expense"
+msgstr "세금 비용"
+
+#. Label of the tax_id (Data) field in DocType 'Tax Withholding Entry'
+#. Label of the tax_id (Data) field in DocType 'Supplier'
+#. Label of the tax_id (Data) field in DocType 'Customer'
+#. Label of the tax_id (Data) field in DocType 'Company'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/regional/report/irs_1099/irs_1099.py:82
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Tax ID"
+msgstr "세금 ID"
+
+#. Label of the tax_id (Data) field in DocType 'POS Invoice'
+#. Label of the tax_id (Read Only) field in DocType 'Purchase Invoice'
+#. Label of the tax_id (Data) field in DocType 'Sales Invoice'
+#. Label of the tax_id (Data) field in DocType 'Sales Order'
+#. Label of the tax_id (Data) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:86
+#: erpnext/accounts/report/general_ledger/general_ledger.js:142
+#: erpnext/accounts/report/purchase_register/purchase_register.py:192
+#: erpnext/accounts/report/sales_register/sales_register.py:215
+#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:67
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:205
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:57
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Tax Id"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:32
+msgid "Tax Id: {0}"
+msgstr ""
+
+#. Label of a Card Break in the Invoicing Workspace
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+msgid "Tax Masters"
+msgstr "세무 전문가"
+
+#. Label of the tax_rate (Float) field in DocType 'Account'
+#. Label of the rate (Float) field in DocType 'Advance Taxes and Charges'
+#. Label of the tax_rate (Float) field in DocType 'Item Tax Template Detail'
+#. Label of the rate (Float) field in DocType 'Item Wise Tax Detail'
+#. Label of the rate (Float) field in DocType 'Purchase Taxes and Charges'
+#. Label of the rate (Float) field in DocType 'Sales Taxes and Charges'
+#. Label of the tax_rate (Percent) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/account_tree.js:170
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/item_tax_template_detail/item_tax_template_detail.json
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:66
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Tax Rate"
+msgstr "세율"
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:237
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:84
+msgid "Tax Rate %"
+msgstr "세율 %"
+
+#. Label of the taxes (Table) field in DocType 'Item Tax Template'
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.json
+msgid "Tax Rates"
+msgstr "세율"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
+msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
+msgstr ""
+
+#. Label of the tax_row (Data) field in DocType 'Item Wise Tax Detail'
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+msgid "Tax Row"
+msgstr "세금 구역"
+
+#. Name of a DocType
+#. Label of a Link in the Invoicing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Tax Rule"
+msgstr "세금 규정"
+
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
+msgid "Tax Rule Conflicts with {0}"
+msgstr "세금 규정이 {0}와 충돌합니다"
+
+#. Label of the tax_settings_section (Section Break) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Tax Settings"
+msgstr "세금 설정"
+
+#. Label of a Workspace Sidebar Item
+#: erpnext/workspace_sidebar/selling.json
+msgid "Tax Template"
+msgstr ""
+
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
+msgid "Tax Template is mandatory."
+msgstr "세금 신고서 양식은 필수입니다."
+
+#: erpnext/accounts/report/sales_register/sales_register.py:295
+msgid "Tax Total"
+msgstr "세금 총액"
+
+#. Label of the tax_type (Select) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Tax Type"
+msgstr "세금 유형"
+
+#. Label of the tax_withholding_tab (Tab Break) field in DocType 'Journal
+#. Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Tax Withholding"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/tax_withholding_account/tax_withholding_account.json
+msgid "Tax Withholding Account"
+msgstr ""
+
+#. Label of the tax_withholding_category (Link) field in DocType 'Journal
+#. Entry'
+#. Label of the tax_withholding_category (Link) field in DocType 'Payment
+#. Entry'
+#. Label of the tax_withholding_category (Link) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the tax_withholding_category (Link) field in DocType 'Sales Invoice
+#. Item'
+#. Name of a DocType
+#. Label of the tax_withholding_category (Link) field in DocType 'Tax
+#. Withholding Entry'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the tax_withholding_category (Link) field in DocType 'Supplier'
+#. Label of the tax_withholding_category (Link) field in DocType 'Lower
+#. Deduction Certificate'
+#. Label of the tax_withholding_category (Link) field in DocType 'Customer'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:199
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:72
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Tax Withholding Category"
+msgstr ""
+
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Tax Withholding Details"
+msgstr ""
+
+#. Label of the tax_withholding_entries (Table) field in DocType 'Journal
+#. Entry'
+#. Label of the tax_withholding_entries (Table) field in DocType 'Payment
+#. Entry'
+#. Label of the tax_withholding_entries (Table) field in DocType 'Purchase
+#. Invoice'
+#. Label of the tax_withholding_entries (Table) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Tax Withholding Entries"
+msgstr ""
+
+#. Label of the section_tax_withholding_entry (Section Break) field in DocType
+#. 'Payment Entry'
+#. Label of the section_tax_withholding_entry (Section Break) field in DocType
+#. 'Purchase Invoice'
+#. Label of the section_tax_withholding_entry (Section Break) field in DocType
+#. 'Sales Invoice'
+#. Name of a DocType
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Tax Withholding Entry"
+msgstr ""
+
+#. Label of the tax_withholding_group (Link) field in DocType 'Journal Entry'
+#. Label of the tax_withholding_group (Link) field in DocType 'Payment Entry'
+#. Label of the tax_withholding_group (Link) field in DocType 'Purchase
+#. Invoice'
+#. Label of the tax_withholding_group (Link) field in DocType 'Sales Invoice'
+#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding
+#. Entry'
+#. Name of a DocType
+#. Label of the tax_withholding_group (Link) field in DocType 'Tax Withholding
+#. Rate'
+#. Label of the tax_withholding_group (Link) field in DocType 'Supplier'
+#. Label of the tax_withholding_group (Link) field in DocType 'Customer'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+#: erpnext/accounts/doctype/tax_withholding_group/tax_withholding_group.json
+#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/workspace_sidebar/taxes.json
+msgid "Tax Withholding Group"
+msgstr ""
+
+#. Name of a DocType
+#. Label of the tax_withholding_rate (Float) field in DocType 'Tax Withholding
+#. Rate'
+#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json
+msgid "Tax Withholding Rate"
+msgstr ""
+
+#. Label of the section_break_8 (Section Break) field in DocType 'Tax
+#. Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Tax Withholding Rates"
+msgstr ""
+
+#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Invoice
+#. Item'
+#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Order
+#. Item'
+#. Description of the 'Item Tax Rate' (Code) field in DocType 'Supplier
+#. Quotation Item'
+#. Description of the 'Item Tax Rate' (Code) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Tax detail table fetched from item master as a string and stored in this field.\n"
+"Used for Taxes and Charges"
+msgstr ""
+
+#. Description of the 'Only Deduct Tax On Excess Amount ' (Check) field in
+#. DocType 'Tax Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "Tax withheld only for amount exceeding cumulative threshold"
+msgstr ""
+
+#. Label of the taxable_amount (Currency) field in DocType 'Item Wise Tax
+#. Detail'
+#: erpnext/accounts/doctype/item_wise_tax_detail/item_wise_tax_detail.json
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:239
+#: erpnext/controllers/taxes_and_totals.py:1249
+msgid "Taxable Amount"
+msgstr "과세 대상 금액"
+
+#. Label of the taxable_date (Date) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Taxable Date"
+msgstr "과세 기준일"
+
+#. Label of the taxable_name (Dynamic Link) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Taxable Document Name"
+msgstr ""
+
+#. Label of the taxable_doctype (Link) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Taxable Document Type"
+msgstr "과세 대상 문서 유형"
+
+#. Label of the taxes (Table) field in DocType 'POS Closing Entry'
+#. Label of the taxes_section (Section Break) field in DocType 'POS Profile'
+#. Label of the sb_1 (Section Break) field in DocType 'Subscription'
+#. Label of a Desktop Icon
+#. Label of the taxes_section (Section Break) field in DocType 'Sales Order'
+#. Label of the taxes (Table) field in DocType 'Item Group'
+#. Label of the taxes (Table) field in DocType 'Item'
+#. Title of a Workspace Sidebar
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:60
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/tax_category/tax_category_dashboard.py:12
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:26
+#: erpnext/accounts/report/sales_payment_summary/sales_payment_summary.py:42
+#: erpnext/desktop_icon/taxes.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/stock/doctype/item/item.json erpnext/workspace_sidebar/taxes.json
+msgid "Taxes"
+msgstr "구실"
+
+#. Label of the taxes_and_charges_section (Section Break) field in DocType
+#. 'Payment Entry'
+#. Label of the taxes_and_charges_section (Section Break) field in DocType 'POS
+#. Closing Entry'
+#. Label of the taxes_and_charges (Link) field in DocType 'POS Profile'
+#. Label of the taxes_section (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the taxes_section (Section Break) field in DocType 'Sales Invoice'
+#. Label of the taxes_section (Section Break) field in DocType 'Purchase Order'
+#. Label of the taxes_section (Section Break) field in DocType 'Supplier
+#. Quotation'
+#. Label of the taxes_section (Section Break) field in DocType 'Quotation'
+#. Label of the taxes_section (Section Break) field in DocType 'Delivery Note'
+#. Label of the taxes_charges_section (Section Break) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py:72
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges"
+msgstr "세금 및 수수료"
+
+#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase
+#. Order'
+#. Label of the taxes_and_charges_added (Currency) field in DocType 'Supplier
+#. Quotation'
+#. Label of the taxes_and_charges_added (Currency) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges Added"
+msgstr "세금 및 수수료 추가됨"
+
+#. Label of the base_taxes_and_charges_added (Currency) field in DocType
+#. 'Purchase Invoice'
+#. Label of the base_taxes_and_charges_added (Currency) field in DocType
+#. 'Purchase Order'
+#. Label of the base_taxes_and_charges_added (Currency) field in DocType
+#. 'Supplier Quotation'
+#. Label of the base_taxes_and_charges_added (Currency) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges Added (Company Currency)"
+msgstr "세금 및 수수료 추가 (회사 통화 기준)"
+
+#. Label of the other_charges_calculation (Text Editor) field in DocType 'POS
+#. Invoice'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Purchase Invoice'
+#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales
+#. Invoice'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Purchase Order'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Supplier Quotation'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Quotation'
+#. Label of the other_charges_calculation (Text Editor) field in DocType 'Sales
+#. Order'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Delivery Note'
+#. Label of the other_charges_calculation (Text Editor) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges Calculation"
+msgstr "세금 및 수수료 계산"
+
+#. Label of the taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Invoice'
+#. Label of the taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Order'
+#. Label of the taxes_and_charges_deducted (Currency) field in DocType
+#. 'Supplier Quotation'
+#. Label of the taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges Deducted"
+msgstr "세금 및 수수료 공제"
+
+#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Invoice'
+#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Order'
+#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType
+#. 'Supplier Quotation'
+#. Label of the base_taxes_and_charges_deducted (Currency) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Taxes and Charges Deducted (Company Currency)"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:420
+msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Asset
+#. Maintenance Team'
+#: erpnext/assets/doctype/asset_maintenance_team/asset_maintenance_team.json
+msgid "Team"
+msgstr "팀"
+
+#. Label of the team_member (Link) field in DocType 'Maintenance Team Member'
+#: erpnext/assets/doctype/maintenance_team_member/maintenance_team_member.json
+msgid "Team Member"
+msgstr "팀원"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Teaspoon"
+msgstr "티스푼"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Technical Atmosphere"
+msgstr "기술적 분위기"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:47
+msgid "Technology"
+msgstr "기술"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:48
+msgid "Telecommunications"
+msgstr "통신"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+msgid "Telephone Expenses"
+msgstr "전화 요금"
+
+#. Name of a DocType
+#: erpnext/telephony/doctype/telephony_call_type/telephony_call_type.json
+msgid "Telephony Call Type"
+msgstr "전화 통화 유형"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:49
+msgid "Television"
+msgstr "텔레비전"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:452
+msgid "Template Item"
+msgstr ""
+
+#: erpnext/stock/get_item_details.py:346
+msgid "Template Item Selected"
+msgstr ""
+
+#. Label of the template_name (Data) field in DocType 'Financial Report
+#. Template'
+#. Label of the template_name (Data) field in DocType 'Payment Terms Template'
+#. Label of the template (Data) field in DocType 'Quality Feedback Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
+#: erpnext/quality_management/doctype/quality_feedback_template/quality_feedback_template.json
+msgid "Template Name"
+msgstr ""
+
+#. Label of the template_task (Data) field in DocType 'Task'
+#: erpnext/projects/doctype/task/task.json
+msgid "Template Task"
+msgstr ""
+
+#. Label of the template_title (Data) field in DocType 'Journal Entry Template'
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Template Title"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:29
+msgid "Temporarily on Hold"
+msgstr "일시적으로 중단됨"
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/report/account_balance/account_balance.js:61
+msgid "Temporary"
+msgstr "일시적인"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
+msgid "Temporary Accounts"
+msgstr "임시 계정"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
+msgid "Temporary Opening"
+msgstr "임시 개장"
+
+#. Label of the temporary_opening_account (Link) field in DocType 'Opening
+#. Invoice Creation Tool Item'
+#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
+msgid "Temporary Opening Account"
+msgstr "임시 계좌 개설"
+
+#. Label of the terms (Text Editor) field in DocType 'Quotation'
+#: erpnext/selling/doctype/quotation/quotation.json
+msgid "Term Details"
+msgstr "약관 세부 정보"
+
+#. Label of the tc_name (Link) field in DocType 'POS Invoice'
+#. Label of the terms_tab (Tab Break) field in DocType 'POS Invoice'
+#. Label of the tc_name (Link) field in DocType 'Purchase Invoice'
+#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Invoice'
+#. Label of the tc_name (Link) field in DocType 'Sales Invoice'
+#. Label of the terms_tab (Tab Break) field in DocType 'Sales Invoice'
+#. Label of the tc_name (Link) field in DocType 'Purchase Order'
+#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Order'
+#. Label of the tc_name (Link) field in DocType 'Request for Quotation'
+#. Label of the terms_tab (Tab Break) field in DocType 'Supplier Quotation'
+#. Label of the tc_name (Link) field in DocType 'Blanket Order'
+#. Label of the tc_name (Link) field in DocType 'Quotation'
+#. Label of the terms_tab (Tab Break) field in DocType 'Quotation'
+#. Label of the payment_schedule_section (Tab Break) field in DocType 'Sales
+#. Order'
+#. Label of the tc_name (Link) field in DocType 'Sales Order'
+#. Label of the tc_name (Link) field in DocType 'Delivery Note'
+#. Label of the terms_tab (Tab Break) field in DocType 'Delivery Note'
+#. Label of the tc_name (Link) field in DocType 'Material Request'
+#. Label of the terms_tab (Tab Break) field in DocType 'Material Request'
+#. Label of the tc_name (Link) field in DocType 'Purchase Receipt'
+#. Label of the terms_tab (Tab Break) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Terms"
+msgstr ""
+
+#. Label of the terms_section_break (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the terms_section_break (Section Break) field in DocType 'Sales
+#. Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Terms & Conditions"
+msgstr ""
+
+#. Label of the tc_name (Link) field in DocType 'Supplier Quotation'
+#. Label of a Workspace Sidebar Item
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Terms Template"
+msgstr ""
+
+#. Label of the terms_section_break (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the tc_name (Link) field in DocType 'POS Profile'
+#. Label of the terms_and_conditions (Link) field in DocType 'Process Statement
+#. Of Accounts'
+#. Label of the terms_section_break (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the terms (Text Editor) field in DocType 'Purchase Invoice'
+#. Label of the terms_section_break (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of a Link in the Invoicing Workspace
+#. Label of the terms (Text Editor) field in DocType 'Purchase Order'
+#. Label of the terms_section_break (Section Break) field in DocType 'Request
+#. for Quotation'
+#. Label of the terms (Text Editor) field in DocType 'Request for Quotation'
+#. Label of the terms (Text Editor) field in DocType 'Supplier Quotation'
+#. Label of the terms_and_conditions_section (Section Break) field in DocType
+#. 'Blanket Order'
+#. Label of the terms_and_conditions (Text) field in DocType 'Blanket Order
+#. Item'
+#. Label of the terms_section_break (Section Break) field in DocType
+#. 'Quotation'
+#. Name of a DocType
+#. Label of the terms (Text Editor) field in DocType 'Terms and Conditions'
+#. Label of the terms (Text Editor) field in DocType 'Purchase Receipt'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/workspace/invoicing/invoicing.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/manufacturing/doctype/blanket_order_item/blanket_order_item.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/workspace_sidebar/accounts_setup.json
+msgid "Terms and Conditions"
+msgstr ""
+
+#. Label of the terms (Text Editor) field in DocType 'Material Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Terms and Conditions Content"
+msgstr ""
+
+#. Label of the terms (Text Editor) field in DocType 'POS Invoice'
+#. Label of the terms (Text Editor) field in DocType 'Sales Invoice'
+#. Label of the terms (Text Editor) field in DocType 'Blanket Order'
+#. Label of the terms (Text Editor) field in DocType 'Sales Order'
+#. Label of the terms (Text Editor) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/manufacturing/doctype/blanket_order/blanket_order.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Terms and Conditions Details"
+msgstr ""
+
+#. Label of the terms_and_conditions_help (HTML) field in DocType 'Terms and
+#. Conditions'
+#: erpnext/setup/doctype/terms_and_conditions/terms_and_conditions.json
+msgid "Terms and Conditions Help"
+msgstr ""
+
+#. Label of a Link in the Buying Workspace
+#. Label of a Link in the Selling Workspace
+#: erpnext/buying/workspace/buying/buying.json
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Terms and Conditions Template"
+msgstr ""
+
+#. Label of the territory (Link) field in DocType 'POS Invoice'
+#. Option for the 'Applicable For' (Select) field in DocType 'Pricing Rule'
+#. Label of the territory (Link) field in DocType 'Pricing Rule'
+#. Option for the 'Select Customers By' (Select) field in DocType 'Process
+#. Statement Of Accounts'
+#. Label of the territory (Link) field in DocType 'Process Statement Of
+#. Accounts'
+#. Option for the 'Applicable For' (Select) field in DocType 'Promotional
+#. Scheme'
+#. Label of the territory (Table MultiSelect) field in DocType 'Promotional
+#. Scheme'
+#. Label of the territory (Link) field in DocType 'Sales Invoice'
+#. Label of the territory (Link) field in DocType 'Territory Item'
+#. Label of the territory (Link) field in DocType 'Lead'
+#. Label of the territory (Link) field in DocType 'Opportunity'
+#. Label of the territory (Link) field in DocType 'Prospect'
+#. Label of a Link in the CRM Workspace
+#. Label of the territory (Link) field in DocType 'Maintenance Schedule'
+#. Label of the territory (Link) field in DocType 'Maintenance Visit'
+#. Label of the territory (Link) field in DocType 'Customer'
+#. Label of the territory (Link) field in DocType 'Installation Note'
+#. Label of the territory (Link) field in DocType 'Quotation'
+#. Label of the territory (Link) field in DocType 'Sales Order'
+#. Label of a Link in the Selling Workspace
+#. Label of the territory (Link) field in DocType 'Sales Partner'
+#. Name of a DocType
+#. Label of a Link in the Home Workspace
+#. Label of the territory (Link) field in DocType 'Delivery Note'
+#. Option for the 'Entity Type' (Select) field in DocType 'Service Level
+#. Agreement'
+#. Label of the territory (Link) field in DocType 'Warranty Claim'
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/territory_item/territory_item.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:142
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.js:108
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:184
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:68
+#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.py:169
+#: erpnext/accounts/report/gross_profit/gross_profit.py:436
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js:8
+#: erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py:21
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:259
+#: erpnext/accounts/report/sales_register/sales_register.py:209
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/crm/doctype/prospect/prospect.json
+#: erpnext/crm/report/lead_details/lead_details.js:46
+#: erpnext/crm/report/lead_details/lead_details.py:34
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.js:36
+#: erpnext/crm/report/lost_opportunity/lost_opportunity.py:64
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+#: erpnext/public/js/sales_trends_filters.js:27
+#: erpnext/selling/doctype/customer/customer.json
+#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:103
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:76
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:88
+#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:42
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.js:47
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:160
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.js:59
+#: erpnext/selling/report/sales_partner_transaction_summary/sales_partner_transaction_summary.py:29
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.js:46
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:59
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.js:59
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:72
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.py:22
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+#: erpnext/setup/doctype/territory/territory.json
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/selling.json
+msgid "Territory"
+msgstr "지역"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/territory_item/territory_item.json
+msgid "Territory Item"
+msgstr "영토 항목"
+
+#. Label of the territory_manager (Link) field in DocType 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Territory Manager"
+msgstr "지역 관리자"
+
+#. Label of the territory_name (Data) field in DocType 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Territory Name"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Selling Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/selling/report/territory_target_variance_based_on_item_group/territory_target_variance_based_on_item_group.json
+#: erpnext/selling/workspace/selling/selling.json
+#: erpnext/workspace_sidebar/selling.json
+msgid "Territory Target Variance Based On Item Group"
+msgstr ""
+
+#. Label of the target_details_section_break (Section Break) field in DocType
+#. 'Territory'
+#: erpnext/setup/doctype/territory/territory.json
+msgid "Territory Targets"
+msgstr "영토 목표"
+
+#. Name of a report
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.json
+msgid "Territory-wise Sales"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Tesla"
+msgstr ""
+
+#. Description of the 'Display Name' (Data) field in DocType 'Financial Report
+#. Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Text displayed on the financial statement (e.g., 'Total Revenue', 'Cash and Cash Equivalents')"
+msgstr ""
+
+#: erpnext/stock/doctype/packing_slip/packing_slip.py:91
+msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
+msgstr "'출발 포장 번호' 필드는 비어 있거나 1보다 작은 값이어서는 안 됩니다."
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
+msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
+msgstr "포털에서 견적 요청 기능을 사용할 수 없습니다. 접근을 허용하려면 포털 설정에서 해당 기능을 활성화하십시오."
+
+#. Description of the 'Current BOM' (Link) field in DocType 'BOM Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "The BOM which will be replaced"
+msgstr "교체될 BOM"
+
+#: erpnext/stock/serial_batch_bundle.py:1546
+msgid "The Batch {0} has negative batch quantity {1}. To fix this, go to the batch and click on Recalculate Batch Qty. If the issue still persists, create an inward entry."
+msgstr ""
+
+#: erpnext/crm/doctype/email_campaign/email_campaign.py:71
+msgid "The Campaign '{0}' already exists for the {1} '{2}'"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.py:71
+msgid "The Company {0} of Sales Forecast {1} does not match with the Company {2} of Master Production Schedule {3}."
+msgstr "회사 {0} 의 매출 예측 {1} 이 회사 {2} 의 주 생산 계획 {3}과 일치하지 않습니다."
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:206
+msgid "The Document Type {0} must have a Status field to configure Service Level Agreement"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:345
+msgid "The Excluded Fee is bigger than the Deposit it is deducted from."
+msgstr ""
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:177
+msgid "The GL Entries and closing balances will be processed in the background, it can take a few minutes."
+msgstr ""
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:450
+msgid "The GL Entries will be cancelled in the background, it can take a few minutes."
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:179
+msgid "The Loyalty Program isn't valid for the selected company"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1269
+msgid "The Payment Request {0} is already paid, cannot process payment twice"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.py:50
+msgid "The Payment Term at row {0} is possibly a duplicate."
+msgstr "{0} 행의 지불 조건이 중복되었을 가능성이 있습니다."
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:344
+msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
+msgstr "재고 예약 항목이 포함된 선택 목록은 수정할 수 없습니다. 변경이 필요한 경우, 선택 목록을 수정하기 전에 기존 재고 예약 항목을 취소하는 것이 좋습니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
+msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.py:102
+msgid "The Sales Person is linked with {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:210
+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:2683
+msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
+msgstr "일련번호 {0} 는 {1} {2} 에 대해 예약되어 있으며 다른 거래에는 사용할 수 없습니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
+msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:17
+msgid "The Stock Entry of type 'Manufacture' is known as backflush. Raw materials being consumed to manufacture finished goods is known as backflushing. When creating Manufacture Entry, raw-material items are backflushed based on BOM of production item. If you want raw-material items to be backflushed based on Material Transfer entry made against that Work Order instead, then you can set it under this field."
+msgstr ""
+
+#. Description of the 'Closing Account Head' (Link) field in DocType 'Period
+#. Closing Voucher'
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+msgid "The account head under Liability or Equity, in which Profit/Loss will be booked"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1164
+msgid "The allocated amount is greater than the outstanding amount of Payment Request {0}"
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:185
+msgid "The amount format detected in the statement file. This is used to parse the deposit and withdrawal values from each row."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:219
+msgid "The amount of {0} set in this payment request is different from the calculated amount of all payment plans: {1}. Make sure this is correct before submitting the document."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:94
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:526
+msgid "The bank account is disabled. Please enable it"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:88
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:520
+msgid "The bank account is not a company account. Please select a company account"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1319
+msgid "The batch {0} is already reserved in {1} {2}. So, cannot proceed with the {3} {4}, which is created against the {5} {6}."
+msgstr ""
+
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.py:41
+msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
+msgstr ""
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr "회사 {0} 는 아랍에미리트에 소재하지 않습니다. UAE VAT 201 보고서는 아랍에미리트에 소재한 회사에만 제공됩니다."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
+msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
+msgstr "작업 {1} 의 완료된 수량 {0} 은 이전 작업 {3}의 완료된 수량 {2} 보다 클 수 없습니다."
+
+#: erpnext/accounts/doctype/dunning/dunning.py:87
+msgid "The currency of invoice {} ({}) is different from the currency of this dunning ({})."
+msgstr "송장 {}({})의 통화가 이 독촉장({})의 통화와 다릅니다."
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:209
+msgid "The current POS opening entry is outdated. Please close it and create a new one."
+msgstr "현재 POS 개시 입력 항목이 오래되었습니다. 해당 항목을 닫고 새 항목을 생성하십시오."
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:199
+msgid "The date format detected in the statement file. This is used to parse the date values."
+msgstr "명세서 파일에서 감지된 날짜 형식입니다. 이는 날짜 값을 구문 분석하는 데 사용됩니다."
+
+#: banking/src/pages/BankStatementImporter.tsx:155
+msgid "The date of the transaction"
+msgstr "거래 날짜"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
+msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:170
+msgid "The description of the transaction"
+msgstr "거래에 대한 설명"
+
+#: erpnext/crm/doctype/appointment_booking_settings/appointment_booking_settings.py:67
+msgid "The difference between from time and To Time must be a multiple of Appointment"
+msgstr ""
+
+#: banking/src/components/common/FileUploadBanner.tsx:11
+msgid "The document has been created and reconciled. Uploading attachments..."
+msgstr "문서가 생성 및 대조 완료되었습니다. 첨부 파일을 업로드하는 중..."
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:177
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:185
+msgid "The field Asset Account cannot be blank"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:192
+msgid "The field Equity/Liability Account cannot be blank"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:173
+msgid "The field From Shareholder cannot be blank"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:181
+msgid "The field To Shareholder cannot be blank"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
+msgid "The field {0} in row {1} is not set"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:188
+msgid "The fields From Shareholder and To Shareholder cannot be blank"
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:142
+msgid "The file should contain the following columns with a distinct header row. You can upload most bank statements as is without changing the columns."
+msgstr "해당 파일에는 헤더 행을 포함하여 다음과 같은 열이 있어야 합니다. 대부분의 은행 거래 내역서는 열을 변경하지 않고 그대로 업로드할 수 있습니다."
+
+#. Description of the 'Item to Manufacture' (Link) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "The final item that will be produced using this BOM."
+msgstr ""
+
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:40
+msgid "The fiscal year has been automatically created in a Disabled state to maintain consistency with the previous fiscal year's status."
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:240
+msgid "The folio numbers are not matching"
+msgstr ""
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:307
+msgid "The following Items, having Putaway Rules, could not be accomodated:"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:138
+msgid "The following Purchase Invoices are not submitted:"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:348
+msgid "The following assets have failed to automatically post depreciation entries: {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:308
+msgid "The following batches are expired, please restock them: {0}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:428
+msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:965
+msgid "The following deleted attributes exist in Variants but not in the Template. You can either delete the Variants or keep the attribute(s) in template."
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:289
+msgid "The following employees are currently still reporting to {0}:"
+msgstr ""
+
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.py:185
+msgid "The following invalid Pricing Rules are deleted:"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:783
+msgid "The following payment schedule(s) already exist:\n"
+"{0}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:112
+msgid "The following rows are duplicates:"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.py:871
+msgid "The following {0} were created: {1}"
+msgstr "다음 {0} 이 생성되었습니다: {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 "프로젝트 진행 상황 및 회사 거래 내역 업데이트 빈도를 설정합니다. 거래량이 많은 경우 매일 또는 매월로 설정하세요."
+
+#. Description of the 'Gross Weight' (Float) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "The gross weight of the package. Usually net weight + packaging material weight. (for print)"
+msgstr ""
+
+#: erpnext/setup/doctype/holiday_list/holiday_list.py:126
+msgid "The holiday on {0} is not between From Date and To Date"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:811
+msgid "The invoice is not fully allocated as there is a difference of {0}."
+msgstr "송장에 {0}만큼의 차이가 있으므로 송장이 완전히 할당되지 않았습니다."
+
+#: erpnext/controllers/buying_controller.py:1203
+msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
+msgstr "아이템 {item} 은 {type_of} 아이템으로 표시되어 있지 않습니다. 아이템 마스터에서 {type_of} 아이템으로 활성화할 수 있습니다."
+
+#: erpnext/stock/doctype/item/item.py:687
+msgid "The items {0} and {1} are present in the following {2} :"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:1196
+msgid "The items {items} are not marked as {type_of} item. You can enable them as {type_of} item from their Item masters."
+msgstr "{items} 아이템은 {type_of} 아이템으로 표시되어 있지 않습니다. 해당 아이템의 마스터에서 {type_of} 아이템으로 활성화할 수 있습니다."
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:549
+msgid "The job card {0} is in {1} state and you cannot complete."
+msgstr "작업 카드 {0} 가 {1} 상태이므로 완료할 수 없습니다."
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:543
+msgid "The job card {0} is in {1} state and you cannot start it again."
+msgstr "작업 카드 {0} 가 {1} 상태에 있으므로 다시 시작할 수 없습니다."
+
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:87
+msgid "The last account row must not have any debit or credit amounts set."
+msgstr ""
+
+#: erpnext/public/js/utils/barcode_scanner.js:533
+msgid "The last scanned warehouse has been cleared and won't be set in the subsequently scanned items"
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:48
+msgid "The lowest tier must have a minimum spent amount of 0. Customers need to be part of a tier as soon as they are enrolled in the program."
+msgstr "가장 낮은 등급의 최소 지출 금액은 0이어야 합니다. 고객은 프로그램 가입 즉시 등급에 속해야 합니다."
+
+#. Description of the 'Net Weight' (Float) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "The net weight of this package. (calculated automatically as sum of net weight of items)"
+msgstr ""
+
+#. Description of the 'New BOM' (Link) field in DocType 'BOM Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "The new BOM after replacement"
+msgstr "교체 후 새 BOM"
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:196
+msgid "The number of shares and the share numbers are inconsistent"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:927
+msgid "The opening balance might not match your bank statement. Would you like to reconcile them?"
+msgstr "개시 잔액이 은행 명세서와 일치하지 않을 수 있습니다. 잔액을 대조해 보시겠습니까?"
+
+#: erpnext/manufacturing/doctype/operation/operation.py:43
+msgid "The operation {0} can not add multiple times"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/operation/operation.py:48
+msgid "The operation {0} can not be the sub operation"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:107
+msgid "The original invoice should be consolidated before or along with the return invoice."
+msgstr "원래 송장은 반품 송장과 함께 또는 반품 송장 이전에 통합되어야 합니다."
+
+#: erpnext/controllers/accounts_controller.py:206
+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:231
+msgid "The parent account {0} does not exists in the uploaded template"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:208
+msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
+msgstr ""
+
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
+#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "The percentage you are allowed to bill more against the amount ordered. For example, if the order value is $100 for an item and tolerance is set as 10%, then you are allowed to bill up to $110 "
+msgstr "주문 금액 대비 청구 가능한 최대 비율입니다. 예를 들어, 특정 품목의 주문 금액이 100달러이고 허용 오차가 10%로 설정된 경우, 최대 110달러까지 청구할 수 있습니다. "
+
+#. Description of the 'Over Picking Allowance' (Percent) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "The percentage you are allowed to pick more items in the pick list than the ordered quantity."
+msgstr ""
+
+#. Description of the 'Over Delivery/Receipt Allowance (%)' (Float) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "The percentage you are allowed to receive or deliver more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed to receive 110 units."
+msgstr "주문 수량 대비 추가로 받을 수 있는 비율입니다. 예를 들어, 100개를 주문했고 추가 수량이 10%라면 110개를 받을 수 있습니다."
+
+#. Description of the 'Over Transfer Allowance' (Float) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "The percentage you are allowed to transfer more against the quantity ordered. For example, if you have ordered 100 units, and your Allowance is 10%, then you are allowed transfer 110 units."
+msgstr "주문 수량 대비 이체 가능한 비율입니다. 예를 들어, 100개를 주문했고 이체 허용량이 10%라면 110개까지 이체할 수 있습니다."
+
+#. Description of the 'Last Purchase Rate' (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "The rate at which this item was last purchased via a Purchase Invoice. Auto-updated by the system."
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:175
+msgid "The reference number of the transaction"
+msgstr "거래 참조 번호"
+
+#: erpnext/public/js/utils.js:958
+msgid "The reserved stock will be released when you update items. Are you certain you wish to proceed?"
+msgstr "예약된 재고는 아이템을 업데이트할 때 해제됩니다. 계속 진행하시겠습니까?"
+
+#: erpnext/stock/doctype/pick_list/pick_list.js:164
+msgid "The reserved stock will be released. Are you certain you wish to proceed?"
+msgstr "예약된 재고가 풀릴 예정입니다. 계속 진행하시겠습니까?"
+
+#: erpnext/accounts/doctype/account/account.py:222
+msgid "The root account {0} must be a group"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.py:87
+msgid "The selected BOMs are not for the same item"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:541
+msgid "The selected change account {} doesn't belongs to Company {}."
+msgstr "선택한 변경 계정 {}은 회사 {}에 속하지 않습니다."
+
+#: erpnext/stock/doctype/batch/batch.py:158
+msgid "The selected item cannot have Batch"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:657
+msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:194
+msgid "The seller and the buyer cannot be the same"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:186
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:198
+msgid "The serial and batch bundle {0} not linked to {1} {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/batch/batch.py:433
+msgid "The serial no {0} does not belong to item {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:230
+msgid "The shareholder does not belong to this company"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:160
+msgid "The shares already exist"
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:166
+msgid "The shares don't exist with the {0}"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:824
+msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
+msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
+msgstr "다음 품목 및 창고에 대해 재고가 예약되어 있습니다. 재고 조정에서 해당 품목 및 창고의 예약을 해제하십시오: {0} {1}"
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:37
+msgid "The sync has started in the background, please check the {0} list for new records."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:509
+msgid "The system found a mirror transaction ({0}) in another account with the same amount and date."
+msgstr ""
+
+#: banking/src/components/features/Settings/Preferences.tsx:106
+msgid "The system will attempt to automatically match a party to a bank transaction based on account number or IBAN."
+msgstr "시스템은 계좌 번호 또는 IBAN을 기반으로 거래 당사자와 은행 거래를 자동으로 연결하려고 시도합니다."
+
+#. Description of the 'Invoice Type Created via POS Screen' (Select) field in
+#. DocType 'POS Settings'
+#: erpnext/accounts/doctype/pos_settings/pos_settings.json
+msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
+msgstr "이 설정에 따라 시스템은 POS 인터페이스를 통해 판매 송장 또는 POS 송장을 생성합니다. 거래량이 많은 경우에는 POS 송장 사용을 권장합니다."
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
+msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
+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:351
+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:358
+msgid "The total Issue / Transfer quantity {0} in Material Request {1} cannot be greater than requested quantity {2} for Item {3}"
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:43
+msgid "The uploaded file could not be parsed as a genericode XML document."
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.py:153
+msgid "The uploaded file does not appear to be in valid MT940 format."
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.py:40
+msgid "The uploaded file does not match the selected Code List."
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.js:10
+msgid "The user cannot submit the Serial and Batch Bundle manually"
+msgstr ""
+
+#. Description of the 'Transfer Extra Raw Materials to WIP (%)' (Percent) field
+#. in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "The user will be able to transfer additional materials from the store to the Work in Progress (WIP) warehouse."
+msgstr "사용자는 상점에서 작업 진행 중(WIP) 창고로 추가 자재를 옮길 수 있습니다."
+
+#. Description of the 'Role Allowed to Edit Frozen Stock' (Link) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "The users with this Role are allowed to create/modify a stock transaction, even though the transaction is frozen."
+msgstr "이 역할을 가진 사용자는 거래가 동결된 경우에도 주식 거래를 생성/수정할 수 있습니다."
+
+#: erpnext/stock/doctype/item_alternative/item_alternative.py:57
+msgid "The value of {0} differs between Items {1} and {2}"
+msgstr ""
+
+#: erpnext/controllers/item_variant.py:154
+msgid "The value {0} is already assigned to an existing Item {1}."
+msgstr "값 {0} 은 이미 기존 항목 {1}에 할당되어 있습니다."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
+msgid "The warehouse where you store finished Items before they are shipped."
+msgstr "완성된 제품을 출하 전에 보관하는 창고."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
+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:1244
+msgid "The warehouse where your Items will be transferred when you begin production. Group Warehouse can also be selected as a Work in Progress warehouse."
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:165
+msgid "The withdrawal or deposit amounts - only required if there's no amount column."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
+msgid "The {0} ({1}) must be equal to {2} ({3})"
+msgstr ""
+
+#: erpnext/public/js/controllers/transaction.js:3330
+msgid "The {0} contains Unit Price Items."
+msgstr "{0} 에는 단가 항목이 포함되어 있습니다."
+
+#: erpnext/stock/doctype/item/item.py:491
+msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
+msgstr "{0} 접두사 '{1}'가 이미 존재합니다. 일련번호 시리즈를 변경해 주십시오. 그렇지 않으면 중복 항목 오류가 발생합니다."
+
+#: erpnext/stock/doctype/material_request/material_request.py:877
+msgid "The {0} {1} created successfully"
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:42
+msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
+msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
+msgstr "{0} {1} 는 완제품 {2}의 평가 비용을 계산하는 데 사용됩니다."
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:74
+msgid "Then Pricing Rules are filtered out based on Customer, Customer Group, Territory, Supplier, Supplier Type, Campaign, Sales Partner etc."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:731
+msgid "There are active maintenance or repairs against the asset. You must complete all of them before cancelling the asset."
+msgstr ""
+
+#: erpnext/accounts/doctype/share_transfer/share_transfer.py:201
+msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:207
+msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
+msgstr ""
+
+#: erpnext/utilities/bulk_transaction.py:69
+msgid "There are no Failed transactions"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankClearanceSummary.tsx:236
+#: banking/src/components/features/BankReconciliation/BankReconciliationStatement.tsx:226
+msgid "There are no accounting entries in the system for the selected account and dates."
+msgstr "선택한 계정 및 날짜에 해당하는 회계 항목이 시스템에 없습니다."
+
+#: erpnext/setup/demo.py:130
+msgid "There are no active Fiscal Years for which Demo Data can be generated."
+msgstr "데모 데이터를 생성할 수 있는 활성 회계연도가 없습니다."
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:220
+msgid "There are no entries in the system where the clearance date is before the posting date."
+msgstr ""
+
+#: erpnext/www/book_appointment/index.js:95
+msgid "There are no slots available on this date"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:289
+msgid "There are no transactions in the system for the selected bank account and dates that match the filters."
+msgstr "선택한 은행 계좌와 기간에 대해 필터 조건과 일치하는 거래 내역이 시스템에 없습니다."
+
+#: erpnext/stock/doctype/item/item.js:1161
+msgid "There are two options to maintain valuation of stock. FIFO (first in - first out) and Moving Average. To understand this topic in detail please visit Item Valuation, FIFO and Moving Average. "
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:922
+msgid "There are {0} unreconciled transactions before {1}."
+msgstr "{1} 이전에 조정되지 않은 거래가 {0} 건 있습니다."
+
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:25
+msgid "There aren't any item variants for the selected item"
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.js:21
+msgid "There can be multiple tiered collection factor based on the total spent. But the conversion factor for redemption will always be same for all the tier."
+msgstr ""
+
+#: erpnext/accounts/party.py:578
+msgid "There can only be 1 Account per Company in {0} {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.py:86
+msgid "There can only be one Shipping Rule Condition with 0 or blank value for \"To Value\""
+msgstr ""
+
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:65
+msgid "There is already a valid Lower Deduction Certificate {0} for Supplier {1} against category {2} for this time period."
+msgstr ""
+
+#: erpnext/subcontracting/doctype/subcontracting_bom/subcontracting_bom.py:77
+msgid "There is already an active Subcontracting BOM {0} for the Finished Good {1}."
+msgstr "완제품 {1}에 대한 활성 하청 BOM {0} 이 이미 있습니다."
+
+#: erpnext/stock/doctype/batch/batch.py:441
+msgid "There is no batch found against the {0}: {1}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:924
+msgid "There is one unreconciled transaction before {0}."
+msgstr "{0} 이전에 조정되지 않은 거래가 하나 있습니다."
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
+msgid "There must be atleast 1 Finished Good in this Stock Entry"
+msgstr ""
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:153
+msgid "There was an error creating Bank Account while linking with Plaid."
+msgstr "Plaid와 은행 계좌를 연동하는 과정에서 오류가 발생했습니다."
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:250
+msgid "There was an error syncing transactions."
+msgstr "거래 내역 동기화 중 오류가 발생했습니다."
+
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.py:175
+msgid "There was an error updating Bank Account {} while linking with Plaid."
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:81
+msgid "There was an error while importing the bank statement."
+msgstr "은행 거래 내역서를 불러오는 중 오류가 발생했습니다."
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:395
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:88
+msgid "There was an error while performing the action."
+msgstr "작업을 수행하는 동안 오류가 발생했습니다."
+
+#: erpnext/accounts/doctype/bank/bank.js:112
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.js:119
+msgid "There was an issue connecting to Plaid's authentication server. Check browser console for more information"
+msgstr ""
+
+#: erpnext/accounts/utils.py:1139
+msgid "There were issues unlinking payment entry {0}."
+msgstr "결제 항목 {0} 연결 해제에 문제가 발생했습니다."
+
+#. Description of the 'Zero Balance' (Check) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "This Account has '0' balance in either Base Currency or Account Currency"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankRecDateFilter.tsx:73
+msgid "This Fiscal Year"
+msgstr "이번 회계연도"
+
+#: erpnext/stock/doctype/item/item.js:194
+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:251
+msgid "This Item is a Variant of {0} (Template)."
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:182
+msgid "This Month's Summary"
+msgstr "이번 달 요약"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
+msgid "This Purchase Order has been fully subcontracted."
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
+msgid "This Sales Order has been fully subcontracted."
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:179
+msgid "This Week's Summary"
+msgstr "이번 주 요약"
+
+#: erpnext/accounts/doctype/subscription/subscription.js:63
+msgid "This action will stop future billing. Are you sure you want to cancel this subscription?"
+msgstr "이 작업을 수행하면 향후 요금 청구가 중단됩니다. 구독을 취소하시겠습니까?"
+
+#: erpnext/accounts/doctype/bank_account/bank_account.js:35
+msgid "This action will unlink this account from any external service integrating ERPNext with your bank accounts. It cannot be undone. Are you certain ?"
+msgstr ""
+
+#. Description of the 'Allow Sales Order creation for expired Quotation'
+#. (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "This allows creation of sales orders from quotations that have passed their expiration date, providing flexibility in processing orders despite outdated quotes."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:433
+msgid "This asset category is marked as non-depreciable. Please disable depreciation calculation or choose a different category."
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:160
+msgid "This can contain \"CR\"/\"DR\" values or positive/negative values. You could also have a separate column for CR/DR."
+msgstr "이 열에는 \"CR\"/\"DR\" 값 또는 양수/음수 값이 포함될 수 있습니다. CR/DR을 위한 별도의 열을 만들 수도 있습니다."
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard_dashboard.py:7
+msgid "This covers all scorecards tied to this Setup"
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:488
+msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:496
+msgid "This field is used to set the 'Customer'."
+msgstr ""
+
+#. Description of the 'Bank / Cash Account' (Link) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "This filter will be applied to Journal Entry."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:867
+msgid "This invoice has already been paid."
+msgstr "이 청구서는 이미 지불되었습니다."
+
+#: erpnext/manufacturing/doctype/bom/bom.js:307
+msgid "This is a Template BOM and will be used to make the work order for {0} of the item {1}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466
+msgid "This is a formula based value."
+msgstr "이 값은 수식에 기반한 값입니다."
+
+#. Description of the 'Target Warehouse' (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "This is a location where final product stored."
+msgstr "이곳은 완제품을 보관하는 장소입니다."
+
+#. Description of the 'Work-in-Progress Warehouse' (Link) field in DocType
+#. 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "This is a location where operations are executed."
+msgstr "이곳은 작업이 실행되는 장소입니다."
+
+#. Description of the 'Source Warehouse' (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "This is a location where raw materials are available."
+msgstr "이곳은 원자재를 구할 수 있는 곳입니다."
+
+#. Description of the 'Scrap Warehouse' (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "This is a location where scraped materials are stored."
+msgstr "이곳은 폐기된 자재들을 보관하는 장소입니다."
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:319
+msgid "This is a preview of the email to be sent. A PDF of the document will automatically be attached with the email."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.js:45
+msgid "This is a root account and cannot be edited."
+msgstr "이 계정은 루트 계정이므로 수정할 수 없습니다."
+
+#: erpnext/setup/doctype/customer_group/customer_group.js:44
+msgid "This is a root customer group and cannot be edited."
+msgstr ""
+
+#: erpnext/setup/doctype/department/department.js:14
+msgid "This is a root department and cannot be edited."
+msgstr "이곳은 루트 부서이므로 수정할 수 없습니다."
+
+#: erpnext/setup/doctype/item_group/item_group.js:98
+msgid "This is a root item group and cannot be edited."
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.js:46
+msgid "This is a root sales person and cannot be edited."
+msgstr "이 정보는 루트 영업 담당자 정보이므로 수정할 수 없습니다."
+
+#: erpnext/setup/doctype/supplier_group/supplier_group.js:43
+msgid "This is a root supplier group and cannot be edited."
+msgstr "이는 루트 공급자 그룹이므로 편집할 수 없습니다."
+
+#: erpnext/setup/doctype/territory/territory.js:22
+msgid "This is a root territory and cannot be edited."
+msgstr "이곳은 루트 영역이므로 편집할 수 없습니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:424
+msgid "This is auto computed to balance the journal entry."
+msgstr "이는 회계 전표의 균형을 맞추기 위해 자동으로 계산됩니다."
+
+#: erpnext/stock/doctype/item/item_dashboard.py:7
+msgid "This is based on stock movement. See {0} for details"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project_dashboard.py:7
+msgid "This is based on the Time Sheets created against this project"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:7
+msgid "This is based on transactions against this Sales Person. See timeline below for details"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:48
+msgid "This is considered dangerous from accounting point of view."
+msgstr "이는 회계 관점에서 위험한 것으로 간주됩니다."
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:537
+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:1225
+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:1149
+msgid "This is for raw material Items that'll be used to create finished goods. If the Item is an additional service like 'washing' that'll be used in the BOM, keep this unchecked."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:466
+msgid "This is not a valid formula. Check the variable used in the formula."
+msgstr "이 수식은 유효하지 않습니다. 수식에 사용된 변수를 확인하십시오."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:198
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:266
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:279
+msgid "This is required"
+msgstr "이것은 필수입니다"
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:620
+msgid "This is the bank account entry. You cannot edit it."
+msgstr "이것은 은행 계좌 입력 내역입니다. 수정할 수 없습니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:693
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:708
+msgid "This is the last row. It will be auto populated based on the bank transaction."
+msgstr "이것이 마지막 행입니다. 은행 거래 내역을 바탕으로 자동으로 채워집니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:600
+msgid "This is the row for the bank account. It will be auto populated based on the bank transaction."
+msgstr "이 항목은 은행 계좌 정보입니다. 은행 거래 내역에 따라 자동으로 입력됩니다."
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:77
+msgid "This is what the system expects the closing balance to be in your bank statement."
+msgstr "시스템은 은행 명세서의 최종 잔액이 이 값이어야 한다고 예상합니다."
+
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.py:35
+msgid "This item filter has already been applied for the {0}"
+msgstr ""
+
+#: erpnext/www/banking.py:35
+msgid "This method is only meant for developer mode"
+msgstr ""
+
+#. Header text in the CRM Workspace
+#: erpnext/crm/workspace/crm/crm.json
+msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe CRM instead."
+msgstr ""
+
+#. Header text in the Support Workspace
+#: erpnext/support/workspace/support/support.json
+msgid "This module is scheduled for deprecation and will be completely removed in version 17, please use Frappe Helpdesk instead."
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:509
+msgid "This option can be checked to edit the 'Posting Date' and 'Posting Time' fields."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:185
+msgid "This report shows all entries in the system where the clearance date is before the posting date which is incorrect."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:212
+msgid "This schedule was created when Asset {0} was adjusted through Asset Value Adjustment {1}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:475
+msgid "This schedule was created when Asset {0} was consumed through Asset Capitalization {1}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_repair/asset_repair.py:435
+msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
+msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
+msgstr "이 일정은 매출 송장 {1} 취소로 인해 자산 {0} 이 복원되었을 때 생성되었습니다."
+
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.py:584
+msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:464
+msgid "This schedule was created when Asset {0} was restored."
+msgstr "이 일정은 자산 {0} 이 복원되었을 때 생성되었습니다."
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
+msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset/depreciation.py:422
+msgid "This schedule was created when Asset {0} was scrapped."
+msgstr "이 일정은 자산 {0} 이 폐기되었을 때 생성되었습니다."
+
+#: erpnext/assets/doctype/asset/asset.py:1520
+msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
+msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.py:219
+msgid "This schedule was created when Asset {0}'s Asset Value Adjustment {1} was cancelled."
+msgstr "이 일정은 자산 {0}의 자산 가치 조정 {1} 이 취소되었을 때 생성되었습니다."
+
+#: erpnext/assets/doctype/asset_shift_allocation/asset_shift_allocation.py:206
+msgid "This schedule was created when Asset {0}'s shifts were adjusted through Asset Shift Allocation {1}."
+msgstr ""
+
+#: banking/src/pages/BankReconciliation.tsx:90
+msgid "This screen is not supported on mobile devices."
+msgstr "이 화면은 모바일 기기에서 지원되지 않습니다."
+
+#. Description of the 'Dunning Letter' (Section Break) field in DocType
+#. 'Dunning Type'
+#: erpnext/accounts/doctype/dunning_type/dunning_type.json
+msgid "This section allows the user to set the Body and Closing text of the Dunning Letter for the Dunning Type based on language, which can be used in Print."
+msgstr ""
+
+#. Description of the 'Default Supplier' (Link) field in DocType 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "This supplier will be auto-selected in new purchase transactions"
+msgstr ""
+
+#: erpnext/stock/doctype/delivery_note/delivery_note.js:502
+msgid "This table is used to set details about the 'Item', 'Qty', 'Basic Rate', etc."
+msgstr "이 표는 '품목', '수량', '기본 단가' 등에 대한 세부 정보를 설정하는 데 사용됩니다."
+
+#. Description of a DocType
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
+msgid "This tool helps you to update or fix the quantity and valuation of stock in the system. It is typically used to synchronise the system values and what actually exists in your warehouses."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:78
+msgid "This transaction has been reconciled with the following document(s):"
+msgstr ""
+
+#. Description of the 'Default Common Code' (Link) field in DocType 'Code List'
+#: erpnext/edi/doctype/code_list/code_list.json
+msgid "This value shall be used when no matching Common Code for a record is found."
+msgstr "해당 레코드에 대한 일치하는 공통 코드가 발견되지 않을 경우 이 값이 사용됩니다."
+
+#: banking/src/components/features/Settings/Preferences.tsx:86
+msgid "This will automatically run transaction matching rules on unreconciled transactions every hour."
+msgstr ""
+
+#. Description of the 'Abbreviation' (Data) field in DocType 'Item Attribute
+#. Value'
+#: erpnext/stock/doctype/item_attribute_value/item_attribute_value.json
+msgid "This will be appended to the Item Code of the variant. For example, if your abbreviation is \"SM\", and the item code is \"T-SHIRT\", the item code of the variant will be \"T-SHIRT-SM\""
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:371
+msgid "This will be auto-populated if not set."
+msgstr "이 필드는 설정되지 않은 경우 자동으로 채워집니다."
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:264
+msgid "This will just suggest creating a new entry, and will not automatically create it."
+msgstr "이는 새 항목을 만들도록 제안하는 것일 뿐, 자동으로 항목을 생성하지는 않습니다."
+
+#. Description of the 'Create User Permission' (Check) field in DocType
+#. 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "This will restrict user access to other employee records"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:887
+msgid "This {} will be treated as material transfer."
+msgstr "이것은 물질 이동으로 처리됩니다."
+
+#. Option for the 'Under Withheld Reason' (Select) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Threshold Exemption"
+msgstr ""
+
+#. Label of the threshold_percentage (Percent) field in DocType 'Promotional
+#. Scheme Price Discount'
+#. Label of the threshold_percentage (Percent) field in DocType 'Promotional
+#. Scheme Product Discount'
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+msgid "Threshold for Suggestion"
+msgstr ""
+
+#. Label of the threshold_percentage (Percent) field in DocType 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Threshold for Suggestion (In Percentage)"
+msgstr ""
+
+#. Label of the thumbnail (Data) field in DocType 'BOM'
+#. Label of the thumbnail (Data) field in DocType 'BOM Website Operation'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
+msgid "Thumbnail"
+msgstr ""
+
+#. Label of the tier_name (Data) field in DocType 'Loyalty Program Collection'
+#: erpnext/accounts/doctype/loyalty_program_collection/loyalty_program_collection.json
+msgid "Tier Name"
+msgstr ""
+
+#. Label of the time_in_mins (Float) field in DocType 'Job Card Scheduled Time'
+#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:125
+msgid "Time (In Mins)"
+msgstr "소요 시간(분)"
+
+#. Label of the mins_between_operations (Int) field in DocType 'Manufacturing
+#. Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Time Between Operations (Mins)"
+msgstr "수술 간 시간 간격(분)"
+
+#. Label of the time_in_mins (Float) field in DocType 'Job Card Time Log'
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+msgid "Time In Mins"
+msgstr ""
+
+#. Label of the time_logs (Table) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Time Logs"
+msgstr "시간 기록"
+
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:182
+msgid "Time Required (In Mins)"
+msgstr "소요 시간(분)"
+
+#. Label of the time_sheet (Link) field in DocType 'Sales Invoice Timesheet'
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+msgid "Time Sheet"
+msgstr "근무 시간표"
+
+#. Label of the time_sheet_list (Section Break) field in DocType 'POS Invoice'
+#. Label of the time_sheet_list (Section Break) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Time Sheet List"
+msgstr "근무 시간표 목록"
+
+#. Label of the timesheets (Table) field in DocType 'POS Invoice'
+#. Label of the timesheets (Table) field in DocType 'Sales Invoice'
+#. Label of the time_logs (Table) field in DocType 'Timesheet'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Time Sheets"
+msgstr "근무 시간표"
+
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:324
+msgid "Time Taken to Deliver"
+msgstr "배송 소요 시간"
+
+#. Label of a Card Break in the Projects Workspace
+#: erpnext/config/projects.py:50
+#: erpnext/projects/workspace/projects/projects.json
+msgid "Time Tracking"
+msgstr "시간 추적"
+
+#. Description of the 'Posting Time' (Time) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Time at which materials were received"
+msgstr "자재 수령 시점"
+
+#. Description of the 'Operation Time' (Float) field in DocType 'Sub Operation'
+#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
+msgid "Time in mins"
+msgstr ""
+
+#. Description of the 'Total Operation Time' (Float) field in DocType
+#. 'Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Time in mins."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
+msgid "Time logs are required for {0} {1}"
+msgstr ""
+
+#: erpnext/crm/doctype/appointment/appointment.py:60
+msgid "Time slot is not available"
+msgstr ""
+
+#: erpnext/templates/generators/bom.html:71
+msgid "Time(in mins)"
+msgstr "시간(분)"
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Project'
+#. Label of the sb_timeline (Section Break) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Timeline"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:36
+#: erpnext/public/js/projects/timer.js:5
+msgid "Timer"
+msgstr ""
+
+#: erpnext/public/js/projects/timer.js:151
+msgid "Timer exceeded the given hours."
+msgstr "타이머가 설정된 시간을 초과했습니다."
+
+#. Name of a DocType
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:283
+#: erpnext/projects/doctype/timesheet/timesheet.json
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:26
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:59
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/templates/pages/projects.html:65
+#: erpnext/workspace_sidebar/projects.json
+msgid "Timesheet"
+msgstr "근무 시간표"
+
+#. Name of a report
+#. Label of a Link in the Projects Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.json
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/workspace_sidebar/projects.json
+msgid "Timesheet Billing Summary"
+msgstr "근무 시간표 청구 요약"
+
+#. Label of the timesheet_detail (Data) field in DocType 'Sales Invoice
+#. Timesheet'
+#. Name of a DocType
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+msgid "Timesheet Detail"
+msgstr ""
+
+#: erpnext/config/projects.py:55
+msgid "Timesheet for tasks."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:895
+msgid "Timesheet {0} cannot be invoiced in its current state"
+msgstr ""
+
+#. Label of the timesheet_sb (Section Break) field in DocType 'Projects
+#. Settings'
+#: erpnext/projects/doctype/projects_settings/projects_settings.json
+#: erpnext/projects/doctype/timesheet/timesheet.py:581
+#: erpnext/templates/pages/projects.html:60
+msgid "Timesheets"
+msgstr "근무 시간표"
+
+#: erpnext/utilities/activation.py:125
+msgid "Timesheets help keep track of time, cost and billing for activities done by your team"
+msgstr ""
+
+#. Label of the timeslots_section (Section Break) field in DocType
+#. 'Communication Medium'
+#. Label of the timeslots (Table) field in DocType 'Communication Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Timeslots"
+msgstr "시간대"
+
+#. Option for the 'Status' (Select) field in DocType 'Purchase Order'
+#. Option for the 'Sales Order Status' (Select) field in DocType 'Production
+#. Plan'
+#. Option for the 'Status' (Select) field in DocType 'Sales Order'
+#. Option for the 'Status' (Select) field in DocType 'Delivery Note'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Receipt'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:39
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:58
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:60
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/delivery_note/delivery_note_list.js:22
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt_list.js:21
+msgid "To Bill"
+msgstr ""
+
+#. Label of the to_currency (Link) field in DocType 'Currency Exchange'
+#: erpnext/setup/doctype/currency_exchange/currency_exchange.json
+msgid "To Currency"
+msgstr "통화로"
+
+#: erpnext/controllers/accounts_controller.py:627
+#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
+msgid "To Date cannot be before From Date"
+msgstr ""
+
+#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:38
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:34
+#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:39
+msgid "To Date cannot be before From Date."
+msgstr ""
+
+#: erpnext/accounts/report/financial_statements.py:141
+msgid "To Date cannot be less than From Date"
+msgstr ""
+
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:29
+msgid "To Date is mandatory"
+msgstr ""
+
+#: erpnext/buying/report/subcontracted_item_to_be_received/subcontracted_item_to_be_received.py:11
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:11
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:15
+msgid "To Date must be greater than From Date"
+msgstr ""
+
+#: erpnext/accounts/report/trial_balance/trial_balance.py:77
+msgid "To Date should be within the Fiscal Year. Assuming To Date = {0}"
+msgstr ""
+
+#: erpnext/projects/report/daily_timesheet_summary/daily_timesheet_summary.py:30
+msgid "To Datetime"
+msgstr "날짜 및 시간"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:118
+msgid "To Delete list generated with {0} DocTypes"
+msgstr ""
+
+#. Option for the 'Sales Order Status' (Select) field in DocType 'Production
+#. Plan'
+#. Option for the 'Status' (Select) field in DocType 'Sales Order'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:37
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:50
+msgid "To Deliver"
+msgstr "전달하기 위해"
+
+#. Option for the 'Sales Order Status' (Select) field in DocType 'Production
+#. Plan'
+#. Option for the 'Status' (Select) field in DocType 'Sales Order'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:44
+msgid "To Deliver and Bill"
+msgstr "배송 및 청구"
+
+#. Label of the to_delivery_date (Date) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "To Delivery Date"
+msgstr ""
+
+#. Label of the to_doctype (Link) field in DocType 'Bulk Transaction Log
+#. Detail'
+#: erpnext/bulk_transaction/doctype/bulk_transaction_log_detail/bulk_transaction_log_detail.json
+msgid "To Doctype"
+msgstr "Doctype으로"
+
+#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.js:83
+msgid "To Due Date"
+msgstr ""
+
+#. Label of the to_employee (Link) field in DocType 'Asset Movement Item'
+#: erpnext/assets/doctype/asset_movement_item/asset_movement_item.json
+msgid "To Employee"
+msgstr "직원에게"
+
+#. Label of the to_fiscal_year (Link) field in DocType 'Budget'
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:51
+msgid "To Fiscal Year"
+msgstr "회계연도까지"
+
+#. Label of the to_folio_no (Data) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "To Folio No"
+msgstr ""
+
+#. Label of the to_invoice_date (Date) field in DocType 'Payment
+#. Reconciliation'
+#. Label of the to_invoice_date (Date) field in DocType 'Process Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "To Invoice Date"
+msgstr "송장 발행일"
+
+#. Label of the to_no (Int) field in DocType 'Share Balance'
+#. Label of the to_no (Int) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_balance/share_balance.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "To No"
+msgstr "아니요"
+
+#. Label of the to_case_no (Int) field in DocType 'Packing Slip'
+#: erpnext/stock/doctype/packing_slip/packing_slip.json
+msgid "To Package No."
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Sales Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:22
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/doctype/sales_order/sales_order_list.js:25
+msgid "To Pay"
+msgstr "지불하기"
+
+#. Label of the to_payment_date (Date) field in DocType 'Payment
+#. Reconciliation'
+#. Label of the to_payment_date (Date) field in DocType 'Process Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation/process_payment_reconciliation.json
+msgid "To Payment Date"
+msgstr ""
+
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:43
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.js:29
+msgid "To Posting Date"
+msgstr "게시 날짜까지"
+
+#. Label of the to_range (Float) field in DocType 'Item Attribute'
+#. Label of the to_range (Float) field in DocType 'Item Variant Attribute'
+#: erpnext/stock/doctype/item_attribute/item_attribute.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "To Range"
+msgstr "범위로"
+
+#. Option for the 'Status' (Select) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:32
+msgid "To Receive"
+msgstr "받으려면"
+
+#. Option for the 'Status' (Select) field in DocType 'Purchase Order'
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/purchase_order/purchase_order_list.js:26
+msgid "To Receive and Bill"
+msgstr "수령 및 청구"
+
+#. Label of the to_reference_date (Date) field in DocType 'Bank Reconciliation
+#. Tool'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.json
+msgid "To Reference Date"
+msgstr "참조 날짜"
+
+#. Label of the to_rename (Check) field in DocType 'GL Entry'
+#. Label of the to_rename (Check) field in DocType 'Stock Ledger Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+msgid "To Rename"
+msgstr "이름을 바꾸려면"
+
+#. Label of the to_shareholder (Link) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+msgid "To Shareholder"
+msgstr "주주 여러분께"
+
+#. Label of the time (Time) field in DocType 'Cashier Closing'
+#. Label of the to_time (Datetime) field in DocType 'Sales Invoice Timesheet'
+#. Label of the to_time (Time) field in DocType 'Communication Medium Timeslot'
+#. Label of the to_time (Time) field in DocType 'Appointment Booking Slots'
+#. Label of the to_time (Time) field in DocType 'Availability Of Slots'
+#. Label of the to_time (Datetime) field in DocType 'Downtime Entry'
+#. Label of the to_time (Datetime) field in DocType 'Job Card Scheduled Time'
+#. Label of the to_time (Datetime) field in DocType 'Job Card Time Log'
+#. Label of the to_time (Time) field in DocType 'Project'
+#. Label of the to_time (Datetime) field in DocType 'Timesheet Detail'
+#. Label of the to_time (Time) field in DocType 'Incoming Call Handling
+#. Schedule'
+#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
+#: erpnext/accounts/doctype/sales_invoice_timesheet/sales_invoice_timesheet.json
+#: erpnext/communication/doctype/communication_medium_timeslot/communication_medium_timeslot.json
+#: erpnext/crm/doctype/appointment_booking_slots/appointment_booking_slots.json
+#: erpnext/crm/doctype/availability_of_slots/availability_of_slots.json
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+#: erpnext/manufacturing/doctype/job_card_scheduled_time/job_card_scheduled_time.json
+#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
+#: erpnext/manufacturing/report/downtime_analysis/downtime_analysis.py:92
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:180
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.json
+#: erpnext/telephony/doctype/incoming_call_handling_schedule/incoming_call_handling_schedule.json
+#: erpnext/templates/pages/timelog_info.html:34
+msgid "To Time"
+msgstr "시간에"
+
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:108
+msgid "To Time cannot be before from date"
+msgstr ""
+
+#. Description of the 'Referral Code' (Data) field in DocType 'Sales Partner'
+#: erpnext/setup/doctype/sales_partner/sales_partner.json
+msgid "To Track inbound purchase"
+msgstr "구매 내역 추적"
+
+#. Label of the to_value (Float) field in DocType 'Shipping Rule Condition'
+#: erpnext/accounts/doctype/shipping_rule_condition/shipping_rule_condition.json
+msgid "To Value"
+msgstr "가치 평가"
+
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:224
+#: erpnext/stock/doctype/batch/batch.js:116
+msgid "To Warehouse"
+msgstr "창고로"
+
+#. Label of the target_warehouse (Link) field in DocType 'Packed Item'
+#: erpnext/stock/doctype/packed_item/packed_item.json
+msgid "To Warehouse (Optional)"
+msgstr "창고로 배송 (선택 사항)"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:999
+msgid "To add Operations tick the 'With Operations' checkbox."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:740
+msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:481
+msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
+msgstr "과다 청구를 허용하려면 계정 설정 또는 해당 항목에서 \"과다 청구 허용량\"을 업데이트하십시오."
+
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
+msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
+msgstr ""
+
+#. Description of the 'Mandatory Depends On' (Small Text) field in DocType
+#. 'Inventory Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "To apply condition on parent field use parent.field_name and to apply condition on child table use doc.field_name. Here field_name could be based on the actual column name of the respective field."
+msgstr "부모 필드에 조건을 적용하려면 parent.field_name을 사용하고, 자식 테이블의 필드에 조건을 적용하려면 doc.field_name을 사용합니다. 여기서 field_name은 해당 필드의 실제 열 이름을 기반으로 할 수 있습니다."
+
+#. Label of the delivered_by_supplier (Check) field in DocType 'Purchase Order
+#. Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "To be Delivered to Customer"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:559
+msgid "To cancel a {} you need to cancel the POS Closing Entry {}."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:572
+msgid "To cancel this Sales Invoice you need to cancel the POS Closing Entry {}."
+msgstr "이 매출 송장을 취소하려면 POS 마감 항목을 취소해야 합니다."
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:160
+msgid "To create a Payment Request reference document is required"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:120
+msgid "To enable Capital Work in Progress Accounting,"
+msgstr "자본 공사 진행 상황 회계 처리를 활성화하려면,"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:733
+msgid "To include non-stock items in the material request planning. i.e. Items for which 'Maintain Stock' checkbox is unticked."
+msgstr ""
+
+#. Description of the 'Set Operating Cost / Secondary Items From
+#. Sub-assemblies' (Check) field in DocType 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "To include sub-assembly costs and secondary items in Finished Goods on a work order without using a job card, when the 'Use Multi-Level BOM' option is enabled."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
+#: erpnext/controllers/accounts_controller.py:3249
+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:709
+msgid "To merge, following properties must be same for both items"
+msgstr ""
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.js:59
+msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:564
+msgid "To overrule this, enable '{0}' in company {1}"
+msgstr ""
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:80
+msgid "To select more than one transaction at a time, press and hold the shift key."
+msgstr "여러 거래를 한 번에 선택하려면 Shift 키를 길게 누르십시오."
+
+#: erpnext/controllers/item_variant.py:157
+msgid "To still proceed with editing this Attribute Value, enable {0} in Item Variant Settings."
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:628
+msgid "To submit the invoice without purchase order please set {0} as {1} in {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:649
+msgid "To submit the invoice without purchase receipt please set {0} as {1} in {2}"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:48
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:233
+msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
+#: erpnext/accounts/report/financial_statements.py:621
+#: erpnext/accounts/report/general_ledger/general_ledger.py:318
+#: erpnext/accounts/report/trial_balance/trial_balance.py:310
+msgid "To use a different finance book, please uncheck 'Include Default FB Entries'"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ton (Long)/Cubic Yard"
+msgstr "톤(롱)/입방야드"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ton (Short)/Cubic Yard"
+msgstr "톤(숏)/입방야드"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ton-Force (UK)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Ton-Force (US)"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Tonne"
+msgstr "톤"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Tonne-Force(Metric)"
+msgstr ""
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.html:8
+#: erpnext/accounts/report/cash_flow/cash_flow.html:8
+#: erpnext/accounts/report/financial_statements.html:6
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.html:8
+#: erpnext/accounts/report/trial_balance/trial_balance.html:8
+msgid "Too many columns. Export the report and print it using a spreadsheet application."
+msgstr "열이 너무 많습니다. 보고서를 내보내고 스프레드시트 프로그램을 사용하여 인쇄하십시오."
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Torr"
+msgstr ""
+
+#. Label of the base_total (Currency) field in DocType 'Advance Taxes and
+#. Charges'
+#. Label of the base_total (Currency) field in DocType 'POS Invoice'
+#. Label of the base_total (Currency) field in DocType 'Purchase Invoice'
+#. Label of the base_total (Currency) field in DocType 'Purchase Taxes and
+#. Charges'
+#. Label of the base_total (Currency) field in DocType 'Sales Invoice'
+#. Label of the base_total (Currency) field in DocType 'Sales Taxes and
+#. Charges'
+#. Label of the base_total (Currency) field in DocType 'Purchase Order'
+#. Label of the base_total (Currency) field in DocType 'Supplier Quotation'
+#. Label of the base_total (Currency) field in DocType 'Opportunity'
+#. Label of the base_total (Currency) field in DocType 'Quotation'
+#. Label of the base_total (Currency) field in DocType 'Sales Order'
+#. Label of the base_total (Currency) field in DocType 'Delivery Note'
+#. Label of the base_total (Currency) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/advance_taxes_and_charges/advance_taxes_and_charges.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_taxes_and_charges/sales_taxes_and_charges.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Total (Company Currency)"
+msgstr "총액 (회사 통화)"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:127
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:128
+msgid "Total (Credit)"
+msgstr "총액 (학점)"
+
+#: erpnext/templates/print_formats/includes/total.html:4
+msgid "Total (Without Tax)"
+msgstr "총액 (세금 제외)"
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:137
+msgid "Total Achieved"
+msgstr "총 달성도"
+
+#. Label of a number card in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Total Active Items"
+msgstr "활성 항목 총 개수"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:359
+msgid "Total Actual"
+msgstr "총 실제"
+
+#. Label of the total_additional_costs (Currency) field in DocType 'Stock
+#. Entry'
+#. Label of the total_additional_costs (Currency) field in DocType
+#. 'Subcontracting Order'
+#. Label of the total_additional_costs (Currency) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Total Additional Costs"
+msgstr "총 추가 비용"
+
+#. Label of the total_advance (Currency) field in DocType 'POS Invoice'
+#. Label of the total_advance (Currency) field in DocType 'Purchase Invoice'
+#. Label of the total_advance (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Total Advance"
+msgstr ""
+
+#. Label of the total_allocated_amount (Currency) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Total Allocated Amount"
+msgstr "총 할당 금액"
+
+#. Label of the base_total_allocated_amount (Currency) field in DocType
+#. 'Payment Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Total Allocated Amount (Company Currency)"
+msgstr "총 할당 금액(회사 통화)"
+
+#. Label of the total_allocations (Int) field in DocType 'Process Payment
+#. Reconciliation Log'
+#: erpnext/accounts/doctype/process_payment_reconciliation_log/process_payment_reconciliation_log.json
+msgid "Total Allocations"
+msgstr ""
+
+#. Label of the total_amount (Currency) field in DocType 'Invoice Discounting'
+#. Label of the total_amount (Currency) field in DocType 'Journal Entry'
+#. Label of the total_amount (Float) field in DocType 'Serial and Batch Bundle'
+#. Label of the total_amount (Currency) field in DocType 'Stock Entry'
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
+#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
+#: erpnext/templates/includes/order/order_taxes.html:54
+msgid "Total Amount"
+msgstr "총액"
+
+#. Label of the total_amount_currency (Link) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Total Amount Currency"
+msgstr "총 금액 통화"
+
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:176
+msgid "Total Amount Due"
+msgstr "총 지불 금액"
+
+#. Label of the total_amount_in_words (Data) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Total Amount in Words"
+msgstr "총 금액을 글자로 표기"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:264
+msgid "Total Applicable Charges in Purchase Receipt Items table must be same as Total Taxes and Charges"
+msgstr ""
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:217
+msgid "Total Asset"
+msgstr ""
+
+#. Label of the total_asset_cost (Currency) field in DocType 'Asset'
+#: erpnext/assets/doctype/asset/asset.json
+msgid "Total Asset Cost"
+msgstr ""
+
+#: erpnext/assets/dashboard_fixtures.py:158
+msgid "Total Assets"
+msgstr ""
+
+#. Label of the total_billable_amount (Currency) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Billable Amount"
+msgstr "총 청구 금액"
+
+#. Label of the total_billable_amount (Currency) field in DocType 'Project'
+#. Label of the total_billing_amount (Currency) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Total Billable Amount (via Timesheet)"
+msgstr "총 청구 가능 금액 (근무 시간표 기준)"
+
+#. Label of the total_billable_hours (Float) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Billable Hours"
+msgstr "총 청구 가능 시간"
+
+#. Label of the total_billed_amount (Currency) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Billed Amount"
+msgstr "총 청구 금액"
+
+#. Label of the total_billed_amount (Currency) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Total Billed Amount (via Sales Invoice)"
+msgstr "총 청구 금액 (판매 송장 기준)"
+
+#. Label of the total_billed_hours (Float) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Billed Hours"
+msgstr "총 청구 시간"
+
+#. Label of the total_billing_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the total_billing_amount (Currency) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Total Billing Amount"
+msgstr "총 청구 금액"
+
+#. Label of the total_billing_hours (Float) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Total Billing Hours"
+msgstr "총 청구 시간"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:359
+msgid "Total Budget"
+msgstr "총 예산"
+
+#. Label of the total_characters (Int) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Total Characters"
+msgstr "총 문자 수"
+
+#. Label of the total_commission (Currency) field in DocType 'POS Invoice'
+#. Label of the total_commission (Currency) field in DocType 'Sales Invoice'
+#. Label of the total_commission (Currency) field in DocType 'Sales Order'
+#. Label of the total_commission (Currency) field in DocType 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/report/sales_partner_commission_summary/sales_partner_commission_summary.py:170
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Total Commission"
+msgstr "총 수수료"
+
+#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
+msgid "Total Completed Qty"
+msgstr "총 완료 수량"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
+msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
+msgstr ""
+
+#. Label of the total_consumed_material_cost (Currency) field in DocType
+#. 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Total Consumed Material Cost (via Stock Entry)"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.js:17
+msgid "Total Contribution Amount Against Invoices: {0}"
+msgstr ""
+
+#: erpnext/setup/doctype/sales_person/sales_person.js:10
+msgid "Total Contribution Amount Against Orders: {0}"
+msgstr ""
+
+#. Label of the total_cost (Currency) field in DocType 'BOM'
+#. Label of the raw_material_cost (Currency) field in DocType 'BOM Creator'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+msgid "Total Cost"
+msgstr ""
+
+#. Label of the base_total_cost (Currency) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Total Cost (Company Currency)"
+msgstr "총 비용 (회사 통화 기준)"
+
+#. Label of the total_costing_amount (Currency) field in DocType 'Timesheet'
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Costing Amount"
+msgstr "총 비용 금액"
+
+#. Label of the total_costing_amount (Currency) field in DocType 'Project'
+#. Label of the total_costing_amount (Currency) field in DocType 'Task'
+#: erpnext/projects/doctype/project/project.json
+#: erpnext/projects/doctype/task/task.json
+msgid "Total Costing Amount (via Timesheet)"
+msgstr "총 비용 금액 (근무 시간표 기준)"
+
+#. Label of the total_credit (Currency) field in DocType 'Journal Entry'
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:809
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Total Credit"
+msgstr "총 학점"
+
+#. Label of the total_credit_transactions (Int) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Total Credit Transactions"
+msgstr "총 신용 거래 건수"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:344
+msgid "Total Credit/ Debit Amount should be same as linked Journal Entry"
+msgstr ""
+
+#. Label of the total_credits (Currency) field in DocType 'Bank Statement
+#. Import Log'
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:172
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Total Credits"
+msgstr "총 학점"
+
+#. Label of the total_debit (Currency) field in DocType 'Journal Entry'
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:805
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Total Debit"
+msgstr ""
+
+#. Label of the total_debit_transactions (Int) field in DocType 'Bank Statement
+#. Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Total Debit Transactions"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:938
+msgid "Total Debit must be equal to Total Credit. The difference is {0}"
+msgstr ""
+
+#. Label of the total_debits (Currency) field in DocType 'Bank Statement Import
+#. Log'
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:168
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Total Debits"
+msgstr ""
+
+#: erpnext/stock/report/delivery_note_trends/delivery_note_trends.py:51
+msgid "Total Delivered Amount"
+msgstr "총 배송 금액"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:247
+msgid "Total Demand (Past Data)"
+msgstr ""
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:224
+msgid "Total Equity"
+msgstr ""
+
+#. Label of the total_distance (Float) field in DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Total Estimated Distance"
+msgstr "총 예상 거리"
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:123
+msgid "Total Expense"
+msgstr "총 비용"
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:119
+msgid "Total Expense This Year"
+msgstr "올해 총 지출액"
+
+#: erpnext/accounts/doctype/budget/budget.py:574
+msgid "Total Expenses booked through"
+msgstr ""
+
+#. Label of the total_experience (Data) field in DocType 'Employee External
+#. Work History'
+#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
+msgid "Total Experience"
+msgstr "전체 경험"
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:260
+msgid "Total Forecast (Future Data)"
+msgstr ""
+
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:253
+msgid "Total Forecast (Past Data)"
+msgstr ""
+
+#. Label of the total_gain_loss (Currency) field in DocType 'Exchange Rate
+#. Revaluation'
+#: erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.json
+msgid "Total Gain/Loss"
+msgstr ""
+
+#. Label of the total_hold_time (Duration) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "Total Hold Time"
+msgstr "총 대기 시간"
+
+#. Label of the total_holidays (Int) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Total Holidays"
+msgstr "총 휴일 수"
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:122
+msgid "Total Income"
+msgstr ""
+
+#: erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py:118
+msgid "Total Income This Year"
+msgstr ""
+
+#. Label of the total_incoming_value (Currency) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Total Incoming Value (Receipt)"
+msgstr ""
+
+#. Label of the total_interest (Currency) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+msgid "Total Interest"
+msgstr "총 이자"
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:199
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:135
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:135
+msgid "Total Invoiced Amount"
+msgstr "총 청구 금액"
+
+#: erpnext/support/report/issue_summary/issue_summary.py:82
+msgid "Total Issues"
+msgstr "총 발행 건수"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:96
+msgid "Total Items"
+msgstr "총 항목 수"
+
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:24
+msgid "Total Landed Cost"
+msgstr "총 도착 비용"
+
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Landed
+#. Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Total Landed Cost (Company Currency)"
+msgstr "총 도착 비용(회사 통화)"
+
+#. Label of the total_vouchers (Int) field in DocType 'Repost Item Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Total Ledgers"
+msgstr "총 원장"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:220
+msgid "Total Liability"
+msgstr "총 책임"
+
+#. Label of the total_messages (Int) field in DocType 'SMS Center'
+#: erpnext/selling/doctype/sms_center/sms_center.json
+msgid "Total Message(s)"
+msgstr ""
+
+#. Label of the total_monthly_sales (Currency) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Total Monthly Sales"
+msgstr ""
+
+#. Label of the total_net_weight (Float) field in DocType 'POS Invoice'
+#. Label of the total_net_weight (Float) field in DocType 'Purchase Invoice'
+#. Label of the total_net_weight (Float) field in DocType 'Sales Invoice'
+#. Label of the total_net_weight (Float) field in DocType 'Purchase Order'
+#. Label of the total_net_weight (Float) field in DocType 'Supplier Quotation'
+#. Label of the total_net_weight (Float) field in DocType 'Quotation'
+#. Label of the total_net_weight (Float) field in DocType 'Sales Order'
+#. Label of the total_net_weight (Float) field in DocType 'Delivery Note'
+#. Label of the total_net_weight (Float) field in DocType 'Purchase Receipt'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Total Net Weight"
+msgstr ""
+
+#. Label of the total_number_of_booked_depreciations (Int) field in DocType
+#. 'Asset Finance Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Total Number of Booked Depreciations "
+msgstr ""
+
+#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset'
+#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the total_number_of_depreciations (Int) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Total Number of Depreciations"
+msgstr ""
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:96
+msgid "Total Only"
+msgstr "총액만"
+
+#. Label of the total_operating_cost (Currency) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Total Operating Cost"
+msgstr "총 운영 비용"
+
+#. Label of the total_operation_time (Float) field in DocType 'Operation'
+#: erpnext/manufacturing/doctype/operation/operation.json
+msgid "Total Operation Time"
+msgstr "총 작동 시간"
+
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:80
+msgid "Total Order Considered"
+msgstr ""
+
+#: erpnext/selling/report/inactive_customers/inactive_customers.py:79
+msgid "Total Order Value"
+msgstr "총 주문 금액"
+
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:628
+msgid "Total Other Charges"
+msgstr "기타 비용 총액"
+
+#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:62
+msgid "Total Outgoing"
+msgstr "총 지출액"
+
+#. Label of the total_outgoing_value (Currency) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Total Outgoing Value (Consumption)"
+msgstr ""
+
+#. Label of the total_outstanding (Currency) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool_dashboard.html:9
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:100
+#: erpnext/accounts/report/accounts_payable/accounts_payable.html:206
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.html:204
+msgid "Total Outstanding"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:208
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:138
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:138
+msgid "Total Outstanding Amount"
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:200
+#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.html:136
+#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.html:136
+msgid "Total Paid Amount"
+msgstr "총 지불 금액"
+
+#: erpnext/controllers/accounts_controller.py:2802
+msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:187
+msgid "Total Payment Request amount cannot be greater than {0} amount"
+msgstr ""
+
+#: erpnext/regional/report/irs_1099/irs_1099.py:83
+msgid "Total Payments"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
+msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
+msgstr ""
+
+#. Label of the total_planned_qty (Float) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Total Planned Qty"
+msgstr "총 계획 수량"
+
+#. Label of the total_produced_qty (Float) field in DocType 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "Total Produced Qty"
+msgstr "총 생산량"
+
+#. Label of the total_projected_qty (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Total Projected Qty"
+msgstr "총 예상 수량"
+
+#. Label of a number card in the Buying Workspace
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:274
+#: erpnext/buying/workspace/buying/buying.json
+msgid "Total Purchase Amount"
+msgstr "총 구매 금액"
+
+#. Label of the total_purchase_cost (Currency) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Total Purchase Cost (via Purchase Invoice)"
+msgstr "총 구매 비용 (구매 송장 기준)"
+
+#. Label of the total_qty (Float) field in DocType 'Serial and Batch Bundle'
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:65
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.py:139
+msgid "Total Qty"
+msgstr "총 수량"
+
+#. Label of the total_quantity (Float) field in DocType 'POS Closing Entry'
+#. Label of the total_qty (Float) field in DocType 'POS Invoice'
+#. Label of the total_qty (Float) field in DocType 'Purchase Invoice'
+#. Label of the total_qty (Float) field in DocType 'Sales Invoice'
+#. Label of the total_qty (Float) field in DocType 'Purchase Order'
+#. Label of the total_qty (Float) field in DocType 'Supplier Quotation'
+#. Label of the total_qty (Float) field in DocType 'Quotation'
+#. Label of the total_qty (Float) field in DocType 'Sales Order'
+#. Label of the total_qty (Float) field in DocType 'Delivery Note'
+#. Label of the total_qty (Float) field in DocType 'Purchase Receipt'
+#. Label of the total_qty (Float) field in DocType 'Subcontracting Order'
+#. Label of the total_qty (Float) field in DocType 'Subcontracting Receipt'
+#: erpnext/accounts/doctype/pos_closing_entry/closing_voucher_details.html:23
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/manufacturing/report/exponential_smoothing_forecasting/exponential_smoothing_forecasting.py:147
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:537
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:541
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Total Quantity"
+msgstr "총 수량"
+
+#: erpnext/stock/report/purchase_receipt_trends/purchase_receipt_trends.py:51
+msgid "Total Received Amount"
+msgstr ""
+
+#. Label of the total_repair_cost (Currency) field in DocType 'Asset Repair'
+#: erpnext/assets/doctype/asset_repair/asset_repair.json
+msgid "Total Repair Cost"
+msgstr "총 수리 비용"
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.py:44
+msgid "Total Revenue"
+msgstr "총 수익"
+
+#. Label of a number card in the Selling Workspace
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:257
+#: erpnext/selling/workspace/selling/selling.json
+msgid "Total Sales Amount"
+msgstr "총 매출액"
+
+#. Label of the total_sales_amount (Currency) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Total Sales Amount (via Sales Order)"
+msgstr "총 판매 금액 (판매 주문서 기준)"
+
+#. Name of a report
+#: erpnext/stock/report/total_stock_summary/total_stock_summary.json
+msgid "Total Stock Summary"
+msgstr "총 재고 요약"
+
+#. Label of a number card in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Total Stock Value"
+msgstr "총 주식 가치"
+
+#. Label of the total_supplied_qty (Float) field in DocType 'Subcontracting
+#. Order Supplied Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_supplied_item/subcontracting_order_supplied_item.json
+msgid "Total Supplied Qty"
+msgstr "총 공급량"
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:130
+msgid "Total Target"
+msgstr "총 목표"
+
+#: erpnext/projects/report/project_summary/project_summary.py:65
+#: erpnext/projects/report/project_summary/project_summary.py:102
+#: erpnext/projects/report/project_summary/project_summary.py:130
+msgid "Total Tasks"
+msgstr "총 작업 수"
+
+#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:621
+#: erpnext/accounts/report/purchase_register/purchase_register.py:263
+msgid "Total Tax"
+msgstr "총 세금"
+
+#: erpnext/accounts/report/tds_computation_summary/tds_computation_summary.py:86
+msgid "Total Taxable Amount"
+msgstr "총 과세 금액"
+
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Payment
+#. Entry'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS
+#. Closing Entry'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'POS
+#. Invoice'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales
+#. Invoice'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase
+#. Order'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Supplier
+#. Quotation'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Quotation'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Sales
+#. Order'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Delivery
+#. Note'
+#. Label of the total_taxes_and_charges (Currency) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Total Taxes and Charges"
+msgstr "총 세금 및 수수료"
+
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Payment Entry'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'POS
+#. Invoice'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Purchase Invoice'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales
+#. Invoice'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Purchase Order'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Supplier Quotation'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Quotation'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType 'Sales
+#. Order'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Delivery Note'
+#. Label of the base_total_taxes_and_charges (Currency) field in DocType
+#. 'Purchase Receipt'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Total Taxes and Charges (Company Currency)"
+msgstr "총 세금 및 수수료 (회사 통화 기준)"
+
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:130
+msgid "Total Time (in Mins)"
+msgstr "총 소요 시간(분)"
+
+#. Label of the total_time_in_mins (Float) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Total Time in Mins"
+msgstr ""
+
+#: erpnext/public/js/utils.js:193
+msgid "Total Unpaid: {0}"
+msgstr "미지급 총액: {0}"
+
+#. Label of the total_value (Currency) field in DocType 'Asset Capitalization'
+#. Label of the total_value (Currency) field in DocType 'Asset Repair Consumed
+#. Item'
+#: erpnext/assets/doctype/asset_capitalization/asset_capitalization.json
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+msgid "Total Value"
+msgstr "총 가치"
+
+#. Label of the value_difference (Currency) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Total Value Difference (Incoming - Outgoing)"
+msgstr "총 가치 차이 (수입 - 지출)"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:359
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:144
+msgid "Total Variance"
+msgstr "총 분산"
+
+#. Label of the total_vendor_invoices_cost (Currency) field in DocType 'Landed
+#. Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Total Vendor Invoices Cost (Company Currency)"
+msgstr ""
+
+#: erpnext/utilities/report/youtube_interactions/youtube_interactions.py:70
+msgid "Total Views"
+msgstr "총 조회수"
+
+#. Label of a number card in the Stock Workspace
+#: erpnext/stock/workspace/stock/stock.json
+msgid "Total Warehouses"
+msgstr ""
+
+#. Label of the total_weight (Float) field in DocType 'POS Invoice Item'
+#. Label of the total_weight (Float) field in DocType 'Purchase Invoice Item'
+#. Label of the total_weight (Float) field in DocType 'Sales Invoice Item'
+#. Label of the total_weight (Float) field in DocType 'Purchase Order Item'
+#. Label of the total_weight (Float) field in DocType 'Supplier Quotation Item'
+#. Label of the total_weight (Float) field in DocType 'Quotation Item'
+#. Label of the total_weight (Float) field in DocType 'Sales Order Item'
+#. Label of the total_weight (Float) field in DocType 'Delivery Note Item'
+#. Label of the total_weight (Float) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Total Weight"
+msgstr "총 중량"
+
+#. Label of the total_weight (Float) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Total Weight (kg)"
+msgstr "총 중량(kg)"
+
+#. Label of the total_working_hours (Float) field in DocType 'Workstation'
+#. Label of the total_hours (Float) field in DocType 'Timesheet'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/projects/doctype/timesheet/timesheet.json
+msgid "Total Working Hours"
+msgstr "총 근무 시간"
+
+#. Label of the total_workstation_time (Int) field in DocType 'Item Lead Time'
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+msgid "Total Workstation Time (In Hours)"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:256
+msgid "Total allocated percentage for sales team should be 100"
+msgstr ""
+
+#: erpnext/selling/doctype/customer/customer.py:184
+msgid "Total contribution percentage should be equal to 100"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:361
+msgid "Total distributed amount {0} must be equal to Budget Amount {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:368
+msgid "Total distribution percent must equal 100 (currently {0})"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project_dashboard.html:2
+msgid "Total hours: {0}"
+msgstr "총 시간: {0}"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:571
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:543
+msgid "Total payments amount can't be greater than {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:66
+msgid "Total percentage against cost centers should be 100"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:703
+msgid "Total quantity in delivery schedule cannot be greater than the item quantity"
+msgstr ""
+
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:760
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:761
+#: erpnext/accounts/report/financial_statements.py:352
+#: erpnext/accounts/report/financial_statements.py:353
+msgid "Total {0} ({1})"
+msgstr "총 {0} ({1})"
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:245
+msgid "Total {0} for all items is zero, may be you should change 'Distribute Charges Based On'"
+msgstr ""
+
+#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32
+msgid "Total(Amt)"
+msgstr "총액(금액)"
+
+#: erpnext/controllers/trends.py:25 erpnext/controllers/trends.py:32
+msgid "Total(Qty)"
+msgstr ""
+
+#. Label of the base_totals_section (Section Break) field in DocType 'Purchase
+#. Invoice'
+#. Label of the base_totals_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the base_totals_section (Section Break) field in DocType 'Purchase
+#. Order'
+#. Label of the base_totals_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the base_totals_section (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the base_totals_section (Section Break) field in DocType 'Delivery
+#. Note'
+#. Label of the base_totals_section (Section Break) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Totals (Company Currency)"
+msgstr "합계 (회사 통화 기준)"
+
+#: erpnext/stock/doctype/item/item_dashboard.py:33
+msgid "Traceability"
+msgstr ""
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:53
+msgid "Tracebility Direction"
+msgstr ""
+
+#. Label of the track_semi_finished_goods (Check) field in DocType 'BOM'
+#. Label of the track_semi_finished_goods (Check) field in DocType 'Job Card'
+#. Label of the track_semi_finished_goods (Check) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Track Semi Finished Goods"
+msgstr ""
+
+#. Label of the track_service_level_agreement (Check) field in DocType 'Support
+#. Settings'
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:147
+#: erpnext/support/doctype/support_settings/support_settings.json
+msgid "Track Service Level Agreement"
+msgstr "서비스 수준 계약 추적"
+
+#. Description of the 'Has Serial No' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Track each unit with a unique serial number for warranty and return tracking. Cannot be changed after a stock transaction exists."
+msgstr "보증 및 반품 추적을 위해 각 제품에는 고유한 일련 번호가 부여됩니다. 재고 거래가 발생한 후에는 변경할 수 없습니다."
+
+#. Description of a DocType
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+msgid "Track separate Income and Expense for product verticals or divisions."
+msgstr ""
+
+#. Description of the 'Has Batch No' (Check) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Track this item in batches. Cannot be changed after a stock transaction exists."
+msgstr ""
+
+#. Label of the tracking_status (Select) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Tracking Status"
+msgstr "추적 상태"
+
+#. Label of the tracking_status_info (Data) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Tracking Status Info"
+msgstr "추적 상태 정보"
+
+#. Label of the tracking_url (Small Text) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Tracking URL"
+msgstr "추적 URL"
+
+#. Option for the 'Apply On' (Select) field in DocType 'Pricing Rule'
+#. Option for the 'Apply On' (Select) field in DocType 'Promotional Scheme'
+#. Label of the transaction_tab (Tab Break) field in DocType 'Selling Settings'
+#. Label of the transaction (Select) field in DocType 'Authorization Rule'
+#. Option for the 'Based On' (Select) field in DocType 'Repost Item Valuation'
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/manufacturing/doctype/workstation/workstation_dashboard.py:10
+#: erpnext/public/js/utils/naming_series.js:219
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/setup/doctype/authorization_rule/authorization_rule.json
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Transaction"
+msgstr "거래"
+
+#. Label of the transaction_currency (Link) field in DocType 'GL Entry'
+#. Label of the currency (Link) field in DocType 'Payment Request'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/report/general_ledger/general_ledger.py:751
+msgid "Transaction Currency"
+msgstr "거래 통화"
+
+#. Label of the transaction_date (Date) field in DocType 'GL Entry'
+#. Label of the transaction_date (Date) field in DocType 'Payment Request'
+#. Label of the transaction_date (Date) field in DocType 'Period Closing
+#. Voucher'
+#. Label of the transaction_date (Datetime) field in DocType 'Asset Movement'
+#. Label of the transaction_date (Date) field in DocType 'Maintenance Schedule'
+#. Label of the transaction_date (Date) field in DocType 'Material Request'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:180
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.json
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:88
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:67
+#: erpnext/selling/report/territory_wise_sales/territory_wise_sales.js:9
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Transaction Date"
+msgstr "거래일"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:160
+#: banking/src/pages/BankStatementImporter.tsx:223
+msgid "Transaction Dates"
+msgstr "거래 날짜"
+
+#: erpnext/setup/doctype/company/company.py:1097
+msgid "Transaction Deletion Document {0} has been triggered for company {1}"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
+msgid "Transaction Deletion Record"
+msgstr "거래 삭제 기록"
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/transaction_deletion_record_details/transaction_deletion_record_details.json
+msgid "Transaction Deletion Record Details"
+msgstr "거래 삭제 기록 세부 정보"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/transaction_deletion_record_item/transaction_deletion_record_item.json
+msgid "Transaction Deletion Record Item"
+msgstr "거래 삭제 기록 항목"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/transaction_deletion_record_to_delete/transaction_deletion_record_to_delete.json
+msgid "Transaction Deletion Record To Delete"
+msgstr "삭제할 거래 기록"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
+msgid "Transaction Deletion Record {0} is already running. {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
+msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
+msgstr ""
+
+#. Label of the transaction_details_section (Section Break) field in DocType
+#. 'GL Entry'
+#. Label of the transaction_details (Section Break) field in DocType 'Payment
+#. Request'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_request/payment_request.json
+msgid "Transaction Details"
+msgstr "거래 내역"
+
+#. Label of the transaction_exchange_rate (Float) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+msgid "Transaction Exchange Rate"
+msgstr "거래 환율"
+
+#. Label of the transaction_id (Data) field in DocType 'Bank Transaction'
+#. Label of the transaction_references (Section Break) field in DocType
+#. 'Payment Entry'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Transaction ID"
+msgstr "거래 ID"
+
+#. Label of the section_break_xt4m (Section Break) field in DocType 'Stock
+#. Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Transaction Information"
+msgstr "거래 정보"
+
+#: banking/src/components/features/Settings/MatchingRules.tsx:34
+msgid "Transaction Matching Rules"
+msgstr ""
+
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:45
+msgid "Transaction Name"
+msgstr ""
+
+#: erpnext/stock/report/negative_batch_report/negative_batch_report.py:60
+msgid "Transaction Qty"
+msgstr "거래 수량"
+
+#. Label of the transaction_settings_section (Tab Break) field in DocType
+#. 'Buying Settings'
+#. Label of the sales_transactions_settings_section (Section Break) field in
+#. DocType 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Transaction Settings"
+msgstr "거래 설정"
+
+#. Label of the single_threshold (Float) field in DocType 'Tax Withholding
+#. Rate'
+#: erpnext/accounts/doctype/tax_withholding_rate/tax_withholding_rate.json
+msgid "Transaction Threshold"
+msgstr ""
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the transaction_type (Data) field in DocType 'Bank Transaction'
+#. Label of the transaction_type (Select) field in DocType 'Bank Transaction
+#. Rule'
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:106
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/report/calculated_discount_mismatch/calculated_discount_mismatch.py:38
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:259
+msgid "Transaction Type"
+msgstr "거래 유형"
+
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:62
+msgid "Transaction Unreconciled"
+msgstr "거래 내역이 확인되지 않았습니다"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:78
+msgid "Transaction actions work when one or more unreconciled transactions are selected."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:197
+msgid "Transaction currency must be same as Payment Gateway currency"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:73
+msgid "Transaction currency: {0} cannot be different from Bank Account({1}) currency: {2}"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:65
+msgid "Transaction date can't be earlier than previous movement date"
+msgstr ""
+
+#. Description of the 'Applicable For' (Section Break) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Transaction for which tax is withheld"
+msgstr ""
+
+#. Description of the 'Deducted From' (Section Break) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Transaction from which tax is withheld"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
+msgid "Transaction not allowed against stopped Work Order {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1252
+msgid "Transaction reference no {0} dated {1}"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Transaction type column has \"C\"/\"D\" values"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Transaction type column has \"CR\"/\"DR\" values"
+msgstr ""
+
+#. Option for the 'Detected Amount Format' (Select) field in DocType 'Bank
+#. Statement Import Log'
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.json
+msgid "Transaction type column has \"Deposit\"/\"Withdrawal\" values"
+msgstr ""
+
+#. Group in Bank Account's connections
+#: erpnext/accounts/doctype/bank_account/bank_account.json
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1054
+#: erpnext/accounts/doctype/purchase_taxes_and_charges_template/purchase_taxes_and_charges_template_dashboard.py:12
+#: erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template_dashboard.py:13
+#: erpnext/manufacturing/doctype/job_card/job_card_dashboard.py:9
+#: erpnext/manufacturing/doctype/production_plan/production_plan_dashboard.py:11
+#: erpnext/manufacturing/doctype/work_order/work_order_dashboard.py:12
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order_dashboard.py:9
+msgid "Transactions"
+msgstr "업무"
+
+#. Label of the transactions_annual_history (Code) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Transactions Annual History"
+msgstr "거래 내역 연간 기록"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.js:117
+msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
+msgstr ""
+
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
+msgid "Transactions to be imported into the system"
+msgstr "시스템으로 가져올 거래 내역"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
+msgid "Transactions using Sales Invoice in POS are disabled."
+msgstr ""
+
+#. Option for the 'Classify As' (Select) field in DocType 'Bank Transaction
+#. Rule'
+#. Option for the 'Transfer Type' (Select) field in DocType 'Share Transfer'
+#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement'
+#. Option for the 'Material Request Type' (Select) field in DocType 'Item
+#. Reorder'
+#. Option for the 'Asset Status' (Select) field in DocType 'Serial No'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:128
+#: banking/src/components/features/ActionLog/ActionLog.tsx:345
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:461
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:535
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:271
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:40
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:145
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:386
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:30
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+#: erpnext/stock/doctype/item_reorder/item_reorder.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:650
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:655
+msgid "Transfer"
+msgstr "옮기다"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:446
+msgid "Transfer Account"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.js:155
+msgid "Transfer Asset"
+msgstr "자산 이전"
+
+#. Label of the transfer_extra_materials_percentage (Percent) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Transfer Extra Raw Materials to WIP (%)"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:458
+msgid "Transfer From Warehouses"
+msgstr "창고에서 이송"
+
+#. Label of the transfer_material_against (Select) field in DocType 'BOM'
+#. Label of the transfer_material_against (Select) field in DocType 'Work
+#. Order'
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Transfer Material Against"
+msgstr "이물질을 이송하십시오"
+
+#: erpnext/manufacturing/doctype/workstation/workstation_job_card.html:92
+msgid "Transfer Materials"
+msgstr "전사 재료"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:453
+msgid "Transfer Materials For Warehouse {0}"
+msgstr "창고로 자재를 이송하세요 {0}"
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:109
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:228
+msgid "Transfer Recorded"
+msgstr "이체 기록됨"
+
+#. Label of the transfer_status (Select) field in DocType 'Material Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+msgid "Transfer Status"
+msgstr "전송 상태"
+
+#. Label of the transfer_type (Select) field in DocType 'Share Transfer'
+#: erpnext/accounts/doctype/share_transfer/share_transfer.json
+#: erpnext/accounts/report/share_ledger/share_ledger.py:53
+msgid "Transfer Type"
+msgstr "전송 유형"
+
+#. Option for the 'Purpose' (Select) field in DocType 'Asset Movement'
+#: erpnext/assets/doctype/asset_movement/asset_movement.json
+msgid "Transfer and Issue"
+msgstr "이체 및 발행"
+
+#. Option for the 'Status' (Select) field in DocType 'Material Request'
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request_list.js:42
+msgid "Transferred"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:531
+msgid "Transferred Out"
+msgstr ""
+
+#. Label of the transferred_qty (Float) field in DocType 'Job Card Item'
+#. Label of the transferred_qty (Float) field in DocType 'Work Order Item'
+#. Label of the transferred_qty (Float) field in DocType 'Stock Entry Detail'
+#. Label of the transferred_qty (Float) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:497
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.py:141
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+msgid "Transferred Qty"
+msgstr ""
+
+#: erpnext/buying/report/subcontracted_raw_materials_to_be_transferred/subcontracted_raw_materials_to_be_transferred.py:38
+msgid "Transferred Quantity"
+msgstr ""
+
+#. Label of the transferred_qty (Float) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+msgid "Transferred Raw Materials"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:331
+msgid "Transferred from"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:331
+msgid "Transferred to"
+msgstr ""
+
+#. Label of the transit_section (Section Break) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Transit"
+msgstr "운송"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.js:589
+msgid "Transit Entry"
+msgstr "환승 입장"
+
+#. Label of the lr_date (Date) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Transport Receipt Date"
+msgstr "운송 영수증 날짜"
+
+#. Label of the lr_no (Data) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Transport Receipt No"
+msgstr "운송 영수증 번호"
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:50
+msgid "Transportation"
+msgstr "운송"
+
+#. Label of the transporter (Link) field in DocType 'Driver'
+#. Label of the transporter (Link) field in DocType 'Delivery Note'
+#. Label of the transporter_info (Section Break) field in DocType 'Purchase
+#. Receipt'
+#: erpnext/setup/doctype/driver/driver.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+msgid "Transporter"
+msgstr ""
+
+#. Label of the transporter_info (Section Break) field in DocType
+#. 'Subcontracting Receipt'
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Transporter Details"
+msgstr ""
+
+#. Label of the transporter_info (Section Break) field in DocType 'Delivery
+#. Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Transporter Info"
+msgstr ""
+
+#. Label of the transporter_name (Data) field in DocType 'Delivery Note'
+#. Label of the transporter_name (Data) field in DocType 'Purchase Receipt'
+#. Label of the transporter_name (Data) field in DocType 'Subcontracting
+#. Receipt'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Transporter Name"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+msgid "Travel Expenses"
+msgstr "여행 경비"
+
+#. Label of the tree_details (Section Break) field in DocType 'Location'
+#. Label of the tree_details (Section Break) field in DocType 'Warehouse'
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Tree Details"
+msgstr "나무 세부 정보"
+
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:8
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:8
+msgid "Tree Type"
+msgstr "트리 유형"
+
+#. Label of a Link in the Quality Workspace
+#: erpnext/quality_management/workspace/quality/quality.json
+msgid "Tree of Procedures"
+msgstr "절차 트리"
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/trial_balance/trial_balance.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Trial Balance"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/trial_balance_simple/trial_balance_simple.json
+msgid "Trial Balance (Simple)"
+msgstr ""
+
+#. Name of a report
+#. Label of a Link in the Financial Reports Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/report/trial_balance_for_party/trial_balance_for_party.json
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "Trial Balance for Party"
+msgstr ""
+
+#. Label of the trial_period_end (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Trial Period End Date"
+msgstr "시험 기간 종료일"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:339
+msgid "Trial Period End Date Cannot be before Trial Period Start Date"
+msgstr ""
+
+#. Label of the trial_period_start (Date) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+msgid "Trial Period Start Date"
+msgstr "시험 기간 시작일"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:345
+msgid "Trial Period Start date cannot be after Subscription Start Date"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/subscription/subscription_list.js:4
+msgid "Trialing"
+msgstr "시험 중"
+
+#. Description of the 'General Ledger' (Int) field in DocType 'Accounts
+#. Settings'
+#. Description of the 'Accounts Receivable/Payable' (Int) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Truncates 'Remarks' column to set character length"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:223
+msgid "Try adjusting your search or filter criteria."
+msgstr "검색 또는 필터 조건을 조정해 보세요."
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:90
+msgid "Try the {0} for a better experience."
+msgstr ""
+
+#: erpnext/accounts/report/financial_ratios/financial_ratios.js:55
+#: erpnext/accounts/report/financial_ratios/financial_ratios.py:198
+msgid "Turnover Ratios"
+msgstr ""
+
+#. Option for the 'Frequency To Collect Progress' (Select) field in DocType
+#. 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Twice Daily"
+msgstr "하루 두 번"
+
+#. Label of the two_way (Check) field in DocType 'Item Alternative'
+#: erpnext/stock/doctype/item_alternative/item_alternative.json
+msgid "Two-way"
+msgstr "양방향"
+
+#. Label of the type_of_call (Link) field in DocType 'Call Log'
+#: erpnext/telephony/doctype/call_log/call_log.json
+msgid "Type Of Call"
+msgstr "통화 유형"
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:75
+msgid "Type of Material"
+msgstr "재질의 종류"
+
+#. Label of the type_of_payment (Section Break) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Type of Payment"
+msgstr "결제 방식"
+
+#. Label of the type_of_transaction (Select) field in DocType 'Inventory
+#. Dimension'
+#. Label of the type_of_transaction (Select) field in DocType 'Serial and Batch
+#. Bundle'
+#. Label of the type_of_transaction (Data) field in DocType 'Serial and Batch
+#. Entry'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+msgid "Type of Transaction"
+msgstr "거래 유형"
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:194
+msgid "Type of check"
+msgstr "수표 종류"
+
+#. Description of the 'Select DocType' (Link) field in DocType 'Rename Tool'
+#: erpnext/utilities/doctype/rename_tool/rename_tool.json
+msgid "Type of document to rename."
+msgstr "이름을 변경할 문서의 유형입니다."
+
+#. Description of the 'Report Type' (Select) field in DocType 'Financial Report
+#. Template'
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
+msgid "Type of financial statement this template generates"
+msgstr ""
+
+#: erpnext/config/projects.py:61
+msgid "Types of activities for Time Logs"
+msgstr "시간 기록 활동 유형"
+
+#. Label of a Link in the Financial Reports Workspace
+#. Name of a report
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/workspace/financial_reports/financial_reports.json
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.json
+#: erpnext/workspace_sidebar/financial_reports.json
+msgid "UAE VAT 201"
+msgstr "UAE 부가가치세 201"
+
+#. Name of a DocType
+#: erpnext/regional/doctype/uae_vat_account/uae_vat_account.json
+msgid "UAE VAT Account"
+msgstr "UAE 부가가치세 계정"
+
+#. Label of the uae_vat_accounts (Table) field in DocType 'UAE VAT Settings'
+#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json
+msgid "UAE VAT Accounts"
+msgstr "UAE 부가가치세 계정"
+
+#. Name of a DocType
+#: erpnext/regional/doctype/uae_vat_settings/uae_vat_settings.json
+msgid "UAE VAT Settings"
+msgstr "UAE 부가가치세 설정"
+
+#. Label of the uom (Link) field in DocType 'POS Invoice Item'
+#. Label of the free_item_uom (Link) field in DocType 'Pricing Rule'
+#. Label of the uom (Link) field in DocType 'Pricing Rule Brand'
+#. Label of the uom (Link) field in DocType 'Pricing Rule Item Code'
+#. Label of the uom (Link) field in DocType 'Pricing Rule Item Group'
+#. Label of the free_item_uom (Link) field in DocType 'Promotional Scheme
+#. Product Discount'
+#. Label of the uom (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the uom (Link) field in DocType 'Sales Invoice Item'
+#. Label of the uom (Link) field in DocType 'Asset Capitalization Service Item'
+#. Label of the uom (Link) field in DocType 'Purchase Order Item'
+#. Label of the uom (Link) field in DocType 'Request for Quotation Item'
+#. Label of the uom (Link) field in DocType 'Supplier Quotation Item'
+#. Label of the uom (Link) field in DocType 'Opportunity Item'
+#. Label of the uom (Link) field in DocType 'BOM Creator'
+#. Label of the uom (Link) field in DocType 'BOM Creator Item'
+#. Label of the uom (Link) field in DocType 'BOM Item'
+#. Label of the uom (Link) field in DocType 'BOM Secondary Item'
+#. Label of the uom (Link) field in DocType 'Job Card Item'
+#. Label of the uom (Link) field in DocType 'Master Production Schedule Item'
+#. Label of the uom (Link) field in DocType 'Material Request Plan Item'
+#. Label of the stock_uom (Link) field in DocType 'Production Plan Item'
+#. Label of the uom (Link) field in DocType 'Production Plan Sub Assembly Item'
+#. Label of the uom (Link) field in DocType 'Sales Forecast Item'
+#. Label of the uom (Link) field in DocType 'Quality Goal Objective'
+#. Label of the uom (Link) field in DocType 'Quality Review Objective'
+#. Label of the uom (Link) field in DocType 'Delivery Schedule Item'
+#. Label of the uom (Link) field in DocType 'Product Bundle Item'
+#. Label of the uom (Link) field in DocType 'Quotation Item'
+#. Label of the uom (Link) field in DocType 'Sales Order Item'
+#. Name of a DocType
+#. Label of the stock_uom (Link) field in DocType 'Bin'
+#. Label of the uom (Link) field in DocType 'Delivery Note Item'
+#. Label of the uom (Link) field in DocType 'Delivery Stop'
+#. Label of the uom_tab (Tab Break) field in DocType 'Item'
+#. Label of the uom (Link) field in DocType 'Item Barcode'
+#. Label of the uom (Link) field in DocType 'Item Price'
+#. Label of the uom (Link) field in DocType 'Material Request Item'
+#. Label of the uom (Link) field in DocType 'Packed Item'
+#. Label of the stock_uom (Link) field in DocType 'Packing Slip Item'
+#. Label of the uom (Link) field in DocType 'Pick List Item'
+#. Label of the uom (Link) field in DocType 'Purchase Receipt Item'
+#. Label of the uom (Link) field in DocType 'Putaway Rule'
+#. Label of the uom (Link) field in DocType 'Stock Entry Detail'
+#. Label of the uom (Link) field in DocType 'UOM Conversion Detail'
+#. Label of the uom (Link) field in DocType 'Subcontracting Inward Order
+#. Service Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/pricing_rule_brand/pricing_rule_brand.json
+#: erpnext/accounts/doctype/pricing_rule_item_code/pricing_rule_item_code.json
+#: erpnext/accounts/doctype/pricing_rule_item_group/pricing_rule_item_group.json
+#: erpnext/accounts/doctype/promotional_scheme_product_discount/promotional_scheme_product_discount.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/accounts/report/billed_items_to_be_received/billed_items_to_be_received.py:75
+#: erpnext/assets/doctype/asset_capitalization_service_item/asset_capitalization_service_item.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:758
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/buying/report/item_wise_purchase_history/item_wise_purchase_history.py:60
+#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:207
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:210
+#: erpnext/crm/doctype/opportunity_item/opportunity_item.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/manufacturing/doctype/bom_creator_item/bom_creator_item.json
+#: erpnext/manufacturing/doctype/bom_item/bom_item.json
+#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+#: erpnext/manufacturing/doctype/job_card_item/job_card_item.json
+#: erpnext/manufacturing/doctype/master_production_schedule_item/master_production_schedule_item.json
+#: erpnext/manufacturing/doctype/material_request_plan_item/material_request_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
+#: erpnext/manufacturing/doctype/workstation/workstation.js:480
+#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:70
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:110
+#: erpnext/public/js/stock_analytics.js:94 erpnext/public/js/utils.js:835
+#: erpnext/quality_management/doctype/quality_goal_objective/quality_goal_objective.json
+#: erpnext/quality_management/doctype/quality_review_objective/quality_review_objective.json
+#: erpnext/selling/doctype/delivery_schedule_item/delivery_schedule_item.json
+#: erpnext/selling/doctype/product_bundle_item/product_bundle_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1734
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py:44
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:138
+#: erpnext/setup/doctype/uom/uom.json erpnext/stock/doctype/bin/bin.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:101
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:87
+#: erpnext/stock/report/item_prices/item_prices.py:55
+#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
+#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
+#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
+#: erpnext/templates/emails/reorder_item.html:11
+#: erpnext/templates/includes/rfq/rfq_items.html:17
+msgid "UOM"
+msgstr "단위"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/uom_category/uom_category.json
+msgid "UOM Category"
+msgstr "UOM 카테고리"
+
+#. Name of a DocType
+#: erpnext/stock/doctype/uom_conversion_detail/uom_conversion_detail.json
+msgid "UOM Conversion Detail"
+msgstr ""
+
+#. Label of the uom_conversion_details_column (Column Break) field in DocType
+#. 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "UOM Conversion Details"
+msgstr "단위 변환 세부 정보"
+
+#. Label of the conversion_factor (Float) field in DocType 'POS Invoice Item'
+#. Label of the conversion_factor (Float) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Sales Invoice Item'
+#. Label of the conversion_factor (Float) field in DocType 'Purchase Order
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Request for
+#. Quotation Item'
+#. Label of the conversion_factor (Float) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Quotation Item'
+#. Label of the conversion_factor (Float) field in DocType 'Sales Order Item'
+#. Name of a DocType
+#. Label of the conversion_factor (Float) field in DocType 'Delivery Note Item'
+#. Label of the conversion_factor (Float) field in DocType 'Material Request
+#. Item'
+#. Label of the conversion_factor (Float) field in DocType 'Pick List Item'
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/setup/doctype/uom_conversion_factor/uom_conversion_factor.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "UOM Conversion Factor"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
+msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
+msgstr ""
+
+#: erpnext/buying/utils.py:43
+msgid "UOM Conversion factor is required in row {0}"
+msgstr ""
+
+#. Label of the uom_name (Data) field in DocType 'UOM'
+#: erpnext/setup/doctype/uom/uom.json
+msgid "UOM Name"
+msgstr "단위 이름"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
+msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/item_price/item_price.py:61
+msgid "UOM {0} not found in Item {1}"
+msgstr ""
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "UPC"
+msgstr "UPC"
+
+#. Option for the 'Barcode Type' (Select) field in DocType 'Item Barcode'
+#: erpnext/stock/doctype/item_barcode/item_barcode.json
+msgid "UPC-A"
+msgstr "UPC-A"
+
+#: erpnext/utilities/doctype/video/video.py:114
+msgid "URL can only be a string"
+msgstr ""
+
+#. Label of the utm_analytics_section (Section Break) field in DocType 'POS
+#. Invoice'
+#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#. Label of the utm_analytics_section (Section Break) field in DocType
+#. 'Quotation'
+#. Label of the utm_analytics_section (Section Break) field in DocType 'Sales
+#. Order'
+#. Label of the utm_analytics_section (Section Break) field in DocType
+#. 'Delivery Note'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "UTM Analytics"
+msgstr ""
+
+#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "UnBuffered Cursor"
+msgstr ""
+
+#: erpnext/public/js/utils/unreconcile.js:25
+#: erpnext/public/js/utils/unreconcile.js:133
+msgid "UnReconcile"
+msgstr "화해할 수 없는"
+
+#: erpnext/public/js/utils/unreconcile.js:130
+msgid "UnReconcile Allocations"
+msgstr "조정되지 않은 할당"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:468
+msgid "Unable to fetch DocType details. Please contact system administrator."
+msgstr "문서 유형 정보를 가져올 수 없습니다. 시스템 관리자에게 문의하십시오."
+
+#: erpnext/setup/utils.py:154
+msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually"
+msgstr ""
+
+#: erpnext/accounts/doctype/account_closing_balance/account_closing_balance.py:165
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:312
+msgid "Unable to find exchange rate for {0} to {1} for key date {2}. Please create a Currency Exchange record manually."
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:78
+msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
+msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:878
+#: banking/src/components/features/BankReconciliation/SelectedTransactionDetails.tsx:58
+msgid "Unallocated"
+msgstr "할당되지 않음"
+
+#. Label of the unallocated_amount (Currency) field in DocType 'Bank
+#. Transaction'
+#. Label of the unallocated_amount (Currency) field in DocType 'Payment Entry'
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:74
+msgid "Unallocated Amount"
+msgstr ""
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:325
+msgid "Unassigned Qty"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:647
+msgid "Unbilled Orders"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js:101
+msgid "Unblock Invoice"
+msgstr "청구서 차단 해제"
+
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:84
+#: erpnext/accounts/report/balance_sheet/balance_sheet.py:85
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:90
+#: erpnext/accounts/report/consolidated_financial_statement/consolidated_financial_statement.py:91
+msgid "Unclosed Fiscal Years Profit / Loss (Credit)"
+msgstr ""
+
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No'
+#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty
+#. Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Under AMC"
+msgstr "AMC 하에서"
+
+#. Option for the 'Level' (Select) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Under Graduate"
+msgstr ""
+
+#. Option for the 'Maintenance Status' (Select) field in DocType 'Serial No'
+#. Option for the 'Warranty / AMC Status' (Select) field in DocType 'Warranty
+#. Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Under Warranty"
+msgstr "보증 기간 내"
+
+#. Option for the 'Status' (Select) field in DocType 'Tax Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Under Withheld"
+msgstr "보류 중"
+
+#. Label of the under_withheld_reason (Select) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Under Withheld Reason"
+msgstr "보류 사유"
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:78
+msgid "Under Working Hours table, you can add start and end times for a Workstation. For example, a Workstation may be active from 9 am to 1 pm, then 2 pm to 5 pm. You can also specify the working hours based on shifts. While scheduling a Work Order, the system will check for the availability of the Workstation based on the working hours specified."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:30
+msgid "Undo Transaction Reconciliation"
+msgstr "거래 조정 취소"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:422
+msgid "Undo {}?"
+msgstr "실행 취소 {}?"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+msgid "Unexpected Naming Series Pattern"
+msgstr ""
+
+#. Option for the 'Fulfilment Status' (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Unfulfilled"
+msgstr "미완성"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Unit"
+msgstr "단위"
+
+#. Label of the uom (Link) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Unit Of Measure"
+msgstr "측정 단위"
+
+#: erpnext/controllers/accounts_controller.py:3931
+msgid "Unit Price"
+msgstr "단가"
+
+#: erpnext/buying/report/procurement_tracker/procurement_tracker.py:68
+msgid "Unit of Measure"
+msgstr "측정 단위"
+
+#. Label of a Link in the Home Workspace
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Unit of Measure (UOM)"
+msgstr "측정 단위(UOM)"
+
+#: erpnext/stock/doctype/item/item.py:452
+msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
+msgstr ""
+
+#: erpnext/public/js/call_popup/call_popup.js:110
+msgid "Unknown Caller"
+msgstr "알 수 없는 발신자"
+
+#. Label of the unlink_advance_payment_on_cancelation_of_order (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Unlink Advance Payment on Cancellation of Order"
+msgstr ""
+
+#. Label of the unlink_payment_on_cancellation_of_invoice (Check) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Unlink Payment on Cancellation of Invoice"
+msgstr "송장 취소 시 결제 연결 해제"
+
+#: erpnext/accounts/doctype/bank_account/bank_account.js:33
+msgid "Unlink external integrations"
+msgstr "외부 통합 연결 해제"
+
+#. Label of the unlinked (Check) field in DocType 'Unreconcile Payment Entries'
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+msgid "Unlinked"
+msgstr "연결되지 않음"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:422
+msgid "Unmatch Transaction?"
+msgstr "거래가 일치하지 않습니까?"
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:366
+msgid "Unmatched"
+msgstr "비교할 수 없는"
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Purchase Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Subscription'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:281
+#: erpnext/accounts/doctype/subscription/subscription.json
+#: erpnext/accounts/doctype/subscription/subscription_list.js:12
+msgid "Unpaid"
+msgstr "미지급"
+
+#. Option for the 'Status' (Select) field in DocType 'POS Invoice'
+#. Option for the 'Status' (Select) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Unpaid and Discounted"
+msgstr ""
+
+#. Option for the 'Stop Reason' (Select) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Unplanned machine maintenance"
+msgstr ""
+
+#. Option for the 'Qualification Status' (Select) field in DocType 'Lead'
+#: erpnext/crm/doctype/lead/lead.json
+msgid "Unqualified"
+msgstr "자격 미달"
+
+#. Label of the unrealized_exchange_gain_loss_account (Link) field in DocType
+#. 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Unrealized Exchange Gain/Loss Account"
+msgstr ""
+
+#. Label of the unrealized_profit_loss_account (Link) field in DocType
+#. 'Purchase Invoice'
+#. Label of the unrealized_profit_loss_account (Link) field in DocType 'Sales
+#. Invoice'
+#. Label of the unrealized_profit_loss_account (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Unrealized Profit / Loss Account"
+msgstr ""
+
+#. Description of the 'Unrealized Profit / Loss Account' (Link) field in
+#. DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Unrealized Profit / Loss account for intra-company transfers"
+msgstr ""
+
+#. Description of the 'Unrealized Profit / Loss Account' (Link) field in
+#. DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Unrealized Profit/Loss account for intra-company transfers"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankTransactionUnreconcileModal.tsx:119
+msgid "Unreconcile"
+msgstr "화해할 수 없는"
+
+#. Name of a DocType
+#. Label of a Workspace Sidebar Item
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+#: erpnext/workspace_sidebar/banking.json
+#: erpnext/workspace_sidebar/invoicing.json
+#: erpnext/workspace_sidebar/payments.json
+msgid "Unreconcile Payment"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/accounts/doctype/unreconcile_payment_entries/unreconcile_payment_entries.json
+msgid "Unreconcile Payment Entries"
+msgstr "일치하지 않는 지급 항목"
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.js:40
+msgid "Unreconcile Transaction"
+msgstr "불일치 거래"
+
+#. Option for the 'Status' (Select) field in DocType 'Bank Transaction'
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:414
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction_list.js:12
+msgid "Unreconciled"
+msgstr "화해하지 않은"
+
+#. Label of the unreconciled_amount (Currency) field in DocType 'Payment
+#. Reconciliation Allocation'
+#. Label of the unreconciled_amount (Currency) field in DocType 'Process
+#. Payment Reconciliation Log Allocations'
+#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
+#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
+msgid "Unreconciled Amount"
+msgstr ""
+
+#. Label of the sec_break1 (Section Break) field in DocType 'Payment
+#. Reconciliation'
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.json
+msgid "Unreconciled Entries"
+msgstr "일치하지 않는 항목"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:57
+msgid "Unreconciled Transactions"
+msgstr "미확인 거래"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
+#: erpnext/selling/doctype/sales_order/sales_order.js:122
+#: erpnext/stock/doctype/pick_list/pick_list.js:161
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
+msgid "Unreserve"
+msgstr "무조건"
+
+#: erpnext/public/js/stock_reservation.js:245
+#: erpnext/selling/doctype/sales_order/sales_order.js:540
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:377
+msgid "Unreserve Stock"
+msgstr "예약되지 않은 주식"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:295
+msgid "Unreserve for Raw Materials"
+msgstr "원자재에 대한 제한 없음"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:269
+msgid "Unreserve for Sub-assembly"
+msgstr ""
+
+#: erpnext/public/js/stock_reservation.js:281
+#: erpnext/selling/doctype/sales_order/sales_order.js:552
+#: erpnext/stock/doctype/pick_list/pick_list.js:313
+#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:389
+msgid "Unreserving Stock..."
+msgstr "예약 해제된 주식..."
+
+#. Option for the 'Status' (Select) field in DocType 'Dunning'
+#: erpnext/accounts/doctype/dunning/dunning.json
+#: erpnext/accounts/doctype/dunning/dunning_list.js:6
+msgid "Unresolved"
+msgstr ""
+
+#. Option for the 'Maintenance Type' (Select) field in DocType 'Maintenance
+#. Visit'
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
+msgid "Unscheduled"
+msgstr "예정되지 않은"
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
+msgid "Unsecured Loans"
+msgstr "무담보 대출"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
+msgid "Unset Matched Payment Request"
+msgstr "설정되지 않은 일치하는 결제 요청"
+
+#. Option for the 'Status' (Select) field in DocType 'Contract'
+#: erpnext/crm/doctype/contract/contract.json
+msgid "Unsigned"
+msgstr "서명되지 않음"
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:128
+msgid "Unsubscribe from this Email Digest"
+msgstr ""
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:257
+msgid "Unsupported Feature"
+msgstr "지원되지 않는 기능"
+
+#. Option for the 'Status' (Select) field in DocType 'Appointment'
+#: erpnext/crm/doctype/appointment/appointment.json
+msgid "Unverified"
+msgstr "미확인"
+
+#: erpnext/erpnext_integrations/utils.py:22
+msgid "Unverified Webhook Data"
+msgstr ""
+
+#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:17
+msgid "Up"
+msgstr "위로"
+
+#. Label of the calendar_events (Check) field in DocType 'Email Digest'
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Upcoming Calendar Events"
+msgstr "다가오는 캘린더 이벤트"
+
+#: erpnext/setup/doctype/email_digest/templates/default.html:97
+msgid "Upcoming Calendar Events "
+msgstr "다가오는 캘린더 이벤트 "
+
+#: erpnext/accounts/doctype/account/account.js:62
+msgid "Update Account Name / Number"
+msgstr "계좌명/계좌번호 업데이트"
+
+#: erpnext/accounts/doctype/account/account.js:176
+msgid "Update Account Number / Name"
+msgstr "계좌번호/이름 업데이트"
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:32
+msgid "Update Additional Information"
+msgstr "추가 정보 업데이트"
+
+#. Label of the update_auto_repeat_reference (Button) field in DocType 'POS
+#. Invoice'
+#. Label of the update_auto_repeat_reference (Button) field in DocType
+#. 'Purchase Invoice'
+#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales
+#. Invoice'
+#. Label of the update_auto_repeat_reference (Button) field in DocType
+#. 'Purchase Order'
+#. Label of the update_auto_repeat_reference (Button) field in DocType
+#. 'Supplier Quotation'
+#. Label of the update_auto_repeat_reference (Button) field in DocType
+#. 'Quotation'
+#. Label of the update_auto_repeat_reference (Button) field in DocType 'Sales
+#. Order'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/selling/doctype/sales_order/sales_order.json
+msgid "Update Auto Repeat Reference"
+msgstr "자동 반복 참조 업데이트"
+
+#. Label of the update_bom_costs_automatically (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.js:23
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Update BOM Cost Automatically"
+msgstr "BOM 비용 자동 업데이트"
+
+#. Description of the 'Update BOM Cost Automatically' (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Update BOM cost automatically via scheduler, based on the latest Valuation Rate/Price List Rate/Last Purchase Rate of raw materials"
+msgstr ""
+
+#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:32
+msgid "Update Batch Qty"
+msgstr "배치 수량 업데이트"
+
+#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType
+#. 'POS Invoice'
+#. Label of the update_billed_amount_in_delivery_note (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Update Billed Amount in Delivery Note"
+msgstr "배송 전표의 청구 금액을 업데이트하세요"
+
+#. Label of the update_billed_amount_in_purchase_order (Check) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Update Billed Amount in Purchase Order"
+msgstr ""
+
+#. Label of the update_billed_amount_in_purchase_receipt (Check) field in
+#. DocType 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Update Billed Amount in Purchase Receipt"
+msgstr "구매 영수증의 청구 금액 업데이트"
+
+#. Label of the update_billed_amount_in_sales_order (Check) field in DocType
+#. 'POS Invoice'
+#. Label of the update_billed_amount_in_sales_order (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Update Billed Amount in Sales Order"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:42
+#: erpnext/accounts/doctype/bank_clearance/bank_clearance.js:44
+msgid "Update Clearance Date"
+msgstr ""
+
+#. Label of the update_consumed_material_cost_in_project (Check) field in
+#. DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Update Consumed Material Cost In Project"
+msgstr ""
+
+#. Option for the 'Update Type' (Select) field in DocType 'BOM Update Log'
+#. Label of the update_cost_section (Section Break) field in DocType 'BOM
+#. Update Tool'
+#: erpnext/manufacturing/doctype/bom/bom.js:223
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Update Cost"
+msgstr "업데이트 비용"
+
+#: erpnext/accounts/doctype/cost_center/cost_center.js:19
+#: erpnext/accounts/doctype/cost_center/cost_center.js:52
+msgid "Update Cost Center Name / Number"
+msgstr "비용 센터 이름/번호 업데이트"
+
+#: erpnext/projects/doctype/project/project.js:91
+msgid "Update Costing and Billing"
+msgstr "비용 및 청구 업데이트"
+
+#: erpnext/stock/doctype/pick_list/pick_list.js:131
+msgid "Update Current Stock"
+msgstr "현재 재고 현황 업데이트"
+
+#. Label of the update_existing_price_list_rate (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Update Existing Price List Rate"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:300
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:43
+#: erpnext/public/js/utils.js:937
+#: erpnext/selling/doctype/quotation/quotation.js:136
+#: erpnext/selling/doctype/sales_order/sales_order.js:90
+#: erpnext/selling/doctype/sales_order/sales_order.js:984
+msgid "Update Items"
+msgstr "업데이트 항목"
+
+#. Label of the update_outstanding_for_self (Check) field in DocType 'Purchase
+#. Invoice'
+#. Label of the update_outstanding_for_self (Check) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/controllers/accounts_controller.py:199
+msgid "Update Outstanding for Self"
+msgstr "자신을 위한 뛰어난 업데이트"
+
+#. Label of the update_price_list_based_on (Select) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Update Price List Based On"
+msgstr ""
+
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.js:10
+msgid "Update Print Format"
+msgstr "업데이트 인쇄 형식"
+
+#. Label of the get_stock_and_rate (Button) field in DocType 'Stock Entry'
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Update Rate and Availability"
+msgstr "업데이트 요금 및 이용 가능 여부"
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.js:540
+msgid "Update Rate as per Last Purchase"
+msgstr "마지막 구매 시점 기준 업데이트 비율"
+
+#. Label of the update_stock (Check) field in DocType 'POS Invoice'
+#. Label of the update_stock (Check) field in DocType 'POS Profile'
+#. Label of the update_stock (Check) field in DocType 'Purchase Invoice'
+#. Label of the update_stock (Check) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Update Stock"
+msgstr "재고 업데이트"
+
+#. Label of the update_type (Select) field in DocType 'BOM Update Log'
+#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
+msgid "Update Type"
+msgstr "업데이트 유형"
+
+#. Label of the update_latest_price_in_all_boms (Button) field in DocType 'BOM
+#. Update Tool'
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.json
+msgid "Update latest price in all BOMs"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:475
+msgid "Update stock must be enabled for the purchase invoice {0}"
+msgstr "구매 송장에 대한 재고 업데이트 기능이 활성화되어 있어야 합니다 {0}"
+
+#. Description of the 'Update timestamp on new communication' (Check) field in
+#. DocType 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Update the modified timestamp on new communications received in Lead & Opportunity."
+msgstr ""
+
+#. Label of the update_timestamp_on_new_communication (Check) field in DocType
+#. 'CRM Settings'
+#: erpnext/crm/doctype/crm_settings/crm_settings.json
+msgid "Update timestamp on new communication"
+msgstr ""
+
+#. Description of the 'Actual Start Time' (Datetime) field in DocType 'Work
+#. Order Operation'
+#. Description of the 'Actual End Time' (Datetime) field in DocType 'Work Order
+#. Operation'
+#. Description of the 'Actual Operation Time' (Float) field in DocType 'Work
+#. Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Updated via 'Time Log' (In Minutes)"
+msgstr ""
+
+#: erpnext/accounts/doctype/account_category/account_category.py:55
+msgid "Updated {0} Financial Report Row(s) with new category name"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.js:137
+msgid "Updating Costing and Billing fields against this Project..."
+msgstr "이 프로젝트의 비용 및 청구 필드를 업데이트하는 중입니다..."
+
+#: erpnext/stock/doctype/item/item.py:1508
+msgid "Updating Variants..."
+msgstr "변형 업데이트 중..."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
+msgid "Updating Work Order status"
+msgstr "작업 지시 상태 업데이트"
+
+#: erpnext/public/js/print.js:156
+msgid "Updating details."
+msgstr "세부 정보를 업데이트합니다."
+
+#: banking/src/components/features/Settings/Rules/RuleList.tsx:114
+msgid "Updating..."
+msgstr "업데이트 중..."
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js:48
+msgid "Upload Bank Statement"
+msgstr "은행 거래 내역서를 업로드하세요"
+
+#. Label of the upload_xml_invoices_section (Section Break) field in DocType
+#. 'Import Supplier Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Upload XML Invoices"
+msgstr "XML 송장 업로드"
+
+#: banking/src/pages/BankStatementImporter.tsx:92
+msgid "Upload your bank statement file to start the import process. We support CSV, and XLSX files."
+msgstr "가져오기 프로세스를 시작하려면 은행 거래 내역 파일을 업로드하세요. CSV 및 XLSX 파일 형식을 지원합니다."
+
+#: banking/src/pages/BankStatementImporter.tsx:119
+msgid "Uploading..."
+msgstr "업로드 중..."
+
+#. Description of the 'Submit ERR Journals?' (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Upon enabling this, the JV will be submitted for a different exchange rate."
+msgstr "이 기능을 활성화하면 합작 투자 건은 다른 환율로 제출됩니다."
+
+#. Description of the 'Auto Reserve Stock' (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Upon submission of the Sales Order, Work Order, or Production Plan, the system will automatically reserve the stock."
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:311
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:428
+msgid "Upper Income"
+msgstr "고소득층"
+
+#. Option for the 'Priority' (Select) field in DocType 'Task'
+#. Option in a Select field in the tasks Web Form
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/web_form/tasks/tasks.json
+msgid "Urgent"
+msgstr "긴급한"
+
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.js:36
+msgid "Use 'Repost in background' button to trigger background job. Job can only be triggered when document is in Queued or Failed status."
+msgstr ""
+
+#. Description of the 'Advanced Filtering' (Check) field in DocType 'Financial
+#. Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Use Python filters to get Accounts"
+msgstr "Python 필터를 사용하여 계정을 가져오세요"
+
+#. Label of the use_batchwise_valuation (Check) field in DocType 'Batch'
+#: erpnext/stock/doctype/batch/batch.json
+msgid "Use Batch-wise Valuation"
+msgstr ""
+
+#. Label of the use_csv_sniffer (Check) field in DocType 'Bank Statement
+#. Import'
+#: erpnext/accounts/doctype/bank_statement_import/bank_statement_import.json
+msgid "Use CSV Sniffer"
+msgstr ""
+
+#. Label of the use_company_roundoff_cost_center (Check) field in DocType
+#. 'Purchase Invoice'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+msgid "Use Company Default Round Off Cost Center"
+msgstr ""
+
+#. Label of the use_company_roundoff_cost_center (Check) field in DocType
+#. 'Sales Invoice'
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Use Company default Cost Center for Round off"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:146
+msgid "Use Default Warehouse"
+msgstr ""
+
+#. Description of the 'Calculate Estimated Arrival Times' (Button) field in
+#. DocType 'Delivery Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Use Google Maps Direction API to calculate estimated arrival times"
+msgstr ""
+
+#. Description of the 'Optimize Route' (Button) field in DocType 'Delivery
+#. Trip'
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Use Google Maps Direction API to optimize route"
+msgstr ""
+
+#. Label of the use_http (Check) field in DocType 'Currency Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "Use HTTP Protocol"
+msgstr ""
+
+#. Label of the item_based_reposting (Check) field in DocType 'Stock Reposting
+#. Settings'
+#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
+msgid "Use Item based reposting"
+msgstr ""
+
+#. Label of the use_legacy_js_reactivity (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Use Legacy (Client side) Reactivity"
+msgstr ""
+
+#. Label of the use_legacy_budget_controller (Check) field in DocType 'Accounts
+#. Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Use Legacy Budget Controller"
+msgstr "기존 예산 관리자를 사용하세요"
+
+#. Label of the use_legacy_controller_for_pcv (Check) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Use Legacy Controller For Period Closing Voucher"
+msgstr ""
+
+#. Label of the use_multi_level_bom (Check) field in DocType 'Work Order'
+#. Label of the use_multi_level_bom (Check) field in DocType 'Stock Entry'
+#: erpnext/manufacturing/doctype/bom/bom.js:434
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+msgid "Use Multi-Level BOM"
+msgstr "다단계 BOM을 사용하세요"
+
+#. Label of the use_posting_datetime_for_naming_documents (Check) field in
+#. DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "Use Posting Datetime for Naming Documents"
+msgstr ""
+
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock
+#. Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Use Serial / Batch Fields"
+msgstr "시리얼/배치 필드를 사용하세요"
+
+#. Label of the use_serial_batch_fields (Check) field in DocType 'POS Invoice
+#. Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase
+#. Invoice Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Sales Invoice
+#. Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Asset
+#. Capitalization Stock Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Delivery Note
+#. Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Packed Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Pick List
+#. Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Purchase
+#. Receipt Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock Entry
+#. Detail'
+#. Label of the use_serial_batch_fields (Check) field in DocType 'Stock
+#. Reconciliation Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType
+#. 'Subcontracting Receipt Item'
+#. Label of the use_serial_batch_fields (Check) field in DocType
+#. 'Subcontracting Receipt Supplied Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/packed_item/packed_item.json
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
+msgid "Use Serial No / Batch Fields"
+msgstr "일련번호/배치 필드를 사용하세요"
+
+#: banking/src/components/features/BankReconciliation/TransferModal.tsx:543
+msgid "Use Suggestion"
+msgstr "사용 제안"
+
+#. Label of the use_transaction_date_exchange_rate (Check) field in DocType
+#. 'Purchase Invoice'
+#. Label of the use_transaction_date_exchange_rate (Check) field in DocType
+#. 'Buying Settings'
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Use Transaction Date Exchange Rate"
+msgstr "거래일 환율을 사용하세요"
+
+#: erpnext/projects/doctype/project/project.py:605
+msgid "Use a name that is different from previous project name"
+msgstr ""
+
+#. Label of the use_for_shopping_cart (Check) field in DocType 'Tax Rule'
+#: erpnext/accounts/doctype/tax_rule/tax_rule.json
+msgid "Use for Shopping Cart"
+msgstr "쇼핑 카트에 사용"
+
+#. Label of the fallback_to_default_price_list (Check) field in DocType
+#. 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Use prices from Default Price List as fallback"
+msgstr ""
+
+#. Label of the used (Int) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Used"
+msgstr "사용된"
+
+#. Description of the 'Sales Order Date' (Date) field in DocType 'Sales Order
+#. Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "Used for Production Plan"
+msgstr "생산 계획에 사용됨"
+
+#. Description of the 'Purchase Expense Contra Account' (Link) field in DocType
+#. 'Item Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "Used to balance the books when recording extra purchase costs like freight or customs"
+msgstr ""
+
+#. Description of the 'Opening Stock' (Float) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Used to create an opening Stock Entry with the Valuation Rate when the item is saved"
+msgstr ""
+
+#. Description of the 'Account Category' (Link) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+msgid "Used with Financial Report Template"
+msgstr ""
+
+#: erpnext/setup/install.py:236
+msgid "User Forum"
+msgstr "사용자 포럼"
+
+#: erpnext/setup/doctype/sales_person/sales_person.py:113
+msgid "User ID not set for Employee {0}"
+msgstr ""
+
+#. Label of the user_remark (Small Text) field in DocType 'Bank Transaction
+#. Rule Accounts'
+#. Label of the user_remark (Small Text) field in DocType 'Journal Entry'
+#. Label of the user_remark (Small Text) field in DocType 'Journal Entry
+#. Account'
+#: erpnext/accounts/doctype/bank_transaction_rule_accounts/bank_transaction_rule_accounts.json
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_account/journal_entry_account.json
+msgid "User Remark"
+msgstr "사용자 의견"
+
+#. Label of the user_resolution_time (Duration) field in DocType 'Issue'
+#: erpnext/support/doctype/issue/issue.json
+msgid "User Resolution Time"
+msgstr "사용자 해결 시간"
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:595
+msgid "User has not applied rule on the invoice {0}"
+msgstr "사용자가 송장에 규칙을 적용하지 않았습니다 {0}"
+
+#: erpnext/setup/doctype/employee/employee.py:301
+msgid "User {0} does not exist"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:140
+msgid "User {0} doesn't have any default POS Profile. Check Default at Row {1} for this User."
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:319
+msgid "User {0} is already assigned to Employee {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:357
+msgid "User {0}: Removed Employee Self Service role as there is no mapped employee."
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.py:352
+msgid "User {0}: Removed Employee role as there is no mapped employee."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:62
+msgid "User {} is disabled. Please select valid user/cashier"
+msgstr ""
+
+#. Description of the 'Set Landed Cost Based on Purchase Invoice Rate' (Check)
+#. field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Users can enable the checkbox If they want to adjust the incoming rate (set using purchase receipt) based on the purchase invoice rate."
+msgstr ""
+
+#. Description of the 'Track Semi Finished Goods' (Check) field in DocType
+#. 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Users can make manufacture entry against Job Cards"
+msgstr ""
+
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
+#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
+#. 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Users with this role are allowed to over bill above the allowance percentage"
+msgstr ""
+
+#. Description of the 'Role Allowed to Over Deliver/Receive' (Link) field in
+#. DocType 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Users with this role are allowed to over deliver/receive against orders above the allowance percentage"
+msgstr ""
+
+#. Description of the 'Role to Notify on Depreciation Failure' (Link) field in
+#. DocType 'Accounts Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+msgid "Users with this role will be notified if the asset depreciation gets failed"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.js:44
+msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
+msgstr ""
+
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
+msgid "Utility Expenses"
+msgstr ""
+
+#. Label of the vat_accounts (Table) field in DocType 'South Africa VAT
+#. Settings'
+#: erpnext/regional/doctype/south_africa_vat_settings/south_africa_vat_settings.json
+msgid "VAT Accounts"
+msgstr "부가가치세 계정"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
+msgid "VAT Amount (AED)"
+msgstr "부가가치세 금액 (AED)"
+
+#. Name of a report
+#: erpnext/regional/report/vat_audit_report/vat_audit_report.json
+msgid "VAT Audit Report"
+msgstr "부가가치세 감사 보고서"
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
+msgid "VAT on Expenses and All Other Inputs"
+msgstr ""
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
+msgid "VAT on Sales and All Other Outputs"
+msgstr "매출 및 기타 모든 산출물에 대한 부가가치세"
+
+#. Label of the valid_from (Date) field in DocType 'Cost Center Allocation'
+#. Label of the valid_from (Date) field in DocType 'Coupon Code'
+#. Label of the valid_from (Date) field in DocType 'Pricing Rule'
+#. Label of the valid_from (Date) field in DocType 'Promotional Scheme'
+#. Label of the valid_from (Date) field in DocType 'Lower Deduction
+#. Certificate'
+#. Label of the valid_from (Date) field in DocType 'Item Price'
+#. Label of the valid_from (Date) field in DocType 'Item Tax'
+#. Label of the agreement_details_section (Section Break) field in DocType
+#. 'Service Level Agreement'
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.json
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/stock/doctype/item_price/item_price.json
+#: erpnext/stock/doctype/item_tax/item_tax.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Valid From"
+msgstr "유효 기간 시작일"
+
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:45
+msgid "Valid From date not in Fiscal Year {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:82
+msgid "Valid From must be after {0} as last GL Entry against the cost center {1} posted on this date"
+msgstr ""
+
+#. Label of the valid_till (Date) field in DocType 'Supplier Quotation'
+#. Label of the valid_till (Date) field in DocType 'Quotation'
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:261
+#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:286
+#: erpnext/selling/doctype/quotation/quotation.json
+#: erpnext/templates/pages/order.html:59
+msgid "Valid Till"
+msgstr "유효한 계산대"
+
+#. Label of the valid_upto (Date) field in DocType 'Coupon Code'
+#. Label of the valid_upto (Date) field in DocType 'Pricing Rule'
+#. Label of the valid_upto (Date) field in DocType 'Promotional Scheme'
+#. Label of the valid_upto (Date) field in DocType 'Lower Deduction
+#. Certificate'
+#. Label of the valid_upto (Date) field in DocType 'Employee'
+#. Label of the valid_upto (Date) field in DocType 'Item Price'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme/promotional_scheme.json
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/stock/doctype/item_price/item_price.json
+msgid "Valid Up To"
+msgstr ""
+
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:40
+msgid "Valid Up To date cannot be before Valid From date"
+msgstr ""
+
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.py:48
+msgid "Valid Up To date not in Fiscal Year {0}"
+msgstr ""
+
+#. Label of the countries (Table) field in DocType 'Shipping Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "Valid for Countries"
+msgstr "유효 국가"
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:302
+msgid "Valid from and valid upto fields are mandatory for the cumulative"
+msgstr ""
+
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:170
+msgid "Valid till Date cannot be before Transaction Date"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:160
+msgid "Valid till date cannot be before transaction date"
+msgstr ""
+
+#. Label of the validate_applied_rule (Check) field in DocType 'Pricing Rule'
+#. Label of the validate_applied_rule (Check) field in DocType 'Promotional
+#. Scheme Price Discount'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+#: erpnext/accounts/doctype/promotional_scheme_price_discount/promotional_scheme_price_discount.json
+msgid "Validate Applied Rule"
+msgstr "적용된 규칙을 검증합니다"
+
+#. Label of the validate_components_quantities_per_bom (Check) field in DocType
+#. 'Manufacturing Settings'
+#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
+msgid "Validate Components and Quantities Per BOM"
+msgstr ""
+
+#. Label of the validate_material_transfer_warehouses (Check) field in DocType
+#. 'Stock Settings'
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Validate Material Transfer Warehouses"
+msgstr "자재 이송 창고 검증"
+
+#. Label of the validate_negative_stock (Check) field in DocType 'Inventory
+#. Dimension'
+#: erpnext/stock/doctype/inventory_dimension/inventory_dimension.json
+msgid "Validate Negative Stock"
+msgstr "마이너스 주식 검증"
+
+#. Label of the validate_pricing_rule_section (Section Break) field in DocType
+#. 'Pricing Rule'
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
+msgid "Validate Pricing Rule"
+msgstr "가격 규칙 유효성 검사"
+
+#. Label of the validate_stock_on_save (Check) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Validate Stock on Save"
+msgstr "저장 시 재고 유효성 검사"
+
+#. Label of the validate_consumed_qty (Check) field in DocType 'Buying
+#. Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Validate consumed quantity (as per BOM)"
+msgstr ""
+
+#. Label of the validate_selling_price (Check) field in DocType 'Selling
+#. Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Validate selling price for Item against purchase or valuation rate"
+msgstr ""
+
+#. Label of the validity_details_section (Section Break) field in DocType
+#. 'Lower Deduction Certificate'
+#: erpnext/regional/doctype/lower_deduction_certificate/lower_deduction_certificate.json
+msgid "Validity Details"
+msgstr ""
+
+#. Label of the uses (Section Break) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "Validity and Usage"
+msgstr "유효성 및 사용"
+
+#. Label of the validity (Int) field in DocType 'Bank Guarantee'
+#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
+msgid "Validity in Days"
+msgstr ""
+
+#: erpnext/selling/doctype/quotation/quotation.py:372
+msgid "Validity period of this quotation has ended."
+msgstr "이 견적서의 유효 기간이 만료되었습니다."
+
+#. Option for the 'Consider Tax or Charge for' (Select) field in DocType
+#. 'Purchase Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+msgid "Valuation"
+msgstr "평가"
+
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:63
+msgid "Valuation (I - K)"
+msgstr "평가 (I - K)"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.js:61
+#: erpnext/stock/report/stock_balance/stock_balance.js:101
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:114
+msgid "Valuation Field Type"
+msgstr "평가 필드 유형"
+
+#. Label of the valuation_method (Select) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:63
+msgid "Valuation Method"
+msgstr "평가 방법"
+
+#. Label of the valuation_rate (Currency) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the valuation_rate (Currency) field in DocType 'Asset
+#. Capitalization Stock Item'
+#. Label of the valuation_rate (Currency) field in DocType 'Asset Repair
+#. Consumed Item'
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM'
+#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
+#. Creator'
+#. Label of the valuation_rate (Currency) field in DocType 'Quotation Item'
+#. Label of the valuation_rate (Currency) field in DocType 'Sales Order Item'
+#. Label of the valuation_rate (Float) field in DocType 'Bin'
+#. Label of the valuation_rate (Currency) field in DocType 'Item'
+#. Label of the valuation_rate (Currency) field in DocType 'Purchase Receipt
+#. Item'
+#. Label of the incoming_rate (Float) field in DocType 'Serial and Batch Entry'
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
+#. Balance'
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
+#. Label of the valuation_rate (Currency) field in DocType 'Stock
+#. Reconciliation Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/report/gross_profit/gross_profit.py:354
+#: erpnext/assets/doctype/asset_capitalization_stock_item/asset_capitalization_stock_item.json
+#: erpnext/assets/doctype/asset_repair_consumed_item/asset_repair_consumed_item.json
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/bin/bin.json erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
+#: erpnext/stock/report/item_prices/item_prices.py:57
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
+#: erpnext/stock/report/stock_balance/stock_balance.py:566
+msgid "Valuation Rate"
+msgstr "평가 비율"
+
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:197
+msgid "Valuation Rate (In / Out)"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2041
+msgid "Valuation Rate Missing"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2019
+msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:313
+msgid "Valuation Rate is mandatory if Opening Stock entered"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
+msgid "Valuation Rate required for Item {0} at row {1}"
+msgstr ""
+
+#. Option for the 'Consider Tax or Charge for' (Select) field in DocType
+#. 'Purchase Taxes and Charges'
+#: erpnext/accounts/doctype/purchase_taxes_and_charges/purchase_taxes_and_charges.json
+msgid "Valuation and Total"
+msgstr "평가액 및 총액"
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
+msgid "Valuation rate for customer provided items has been set to zero."
+msgstr ""
+
+#. Description of the 'Sales Incoming Rate' (Currency) field in DocType
+#. 'Purchase Invoice Item'
+#. Description of the 'Sales Incoming Rate' (Currency) field in DocType
+#. 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Transfers)"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
+#: erpnext/controllers/accounts_controller.py:3273
+msgid "Valuation type charges can not be marked as Inclusive"
+msgstr ""
+
+#: erpnext/public/js/controllers/accounts.js:231
+msgid "Valuation type charges can not marked as Inclusive"
+msgstr ""
+
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:58
+msgid "Value (G - D)"
+msgstr "값(G - D)"
+
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
+msgid "Value ({0})"
+msgstr "값({0})"
+
+#. Label of the value_after_depreciation (Currency) field in DocType 'Asset'
+#. Label of the value_after_depreciation (Currency) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Label of the value_after_depreciation (Currency) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/accounts/report/asset_depreciation_ledger/asset_depreciation_ledger.py:184
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Value After Depreciation"
+msgstr ""
+
+#. Label of the section_break_3 (Section Break) field in DocType 'Quality
+#. Inspection Reading'
+#: erpnext/stock/doctype/quality_inspection_reading/quality_inspection_reading.json
+msgid "Value Based Inspection"
+msgstr "가치 기반 검사"
+
+#. Label of the value_details_section (Section Break) field in DocType 'Asset
+#. Value Adjustment'
+#: erpnext/assets/doctype/asset_value_adjustment/asset_value_adjustment.json
+msgid "Value Details"
+msgstr "값 세부 정보"
+
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:24
+#: erpnext/selling/report/sales_analytics/sales_analytics.js:40
+#: erpnext/stock/report/stock_analytics/stock_analytics.js:23
+msgid "Value Or Qty"
+msgstr "값 또는 수량"
+
+#: erpnext/setup/setup_wizard/data/sales_stage.txt:4
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:440
+msgid "Value Proposition"
+msgstr "가치 제안"
+
+#. Label of the fieldtype (Select) field in DocType 'Financial Report Row'
+#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
+msgid "Value Type"
+msgstr "값 유형"
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:840
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:870
+msgid "Value as on"
+msgstr "현재 가치"
+
+#: erpnext/controllers/item_variant.py:130
+msgid "Value for Attribute {0} must be within the range of {1} to {2} in the increments of {3} for Item {4}"
+msgstr ""
+
+#. Label of the value_of_goods (Currency) field in DocType 'Shipment'
+#: erpnext/stock/doctype/shipment/shipment.json
+msgid "Value of Goods"
+msgstr "상품 가치"
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:864
+msgid "Value of New Capitalized Asset"
+msgstr ""
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:846
+msgid "Value of New Purchase"
+msgstr "신규 구매 가격"
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:858
+msgid "Value of Scrapped Asset"
+msgstr "폐기 자산의 가치"
+
+#: erpnext/accounts/report/asset_depreciations_and_balances/asset_depreciations_and_balances.py:852
+msgid "Value of Sold Asset"
+msgstr "매각된 자산의 가치"
+
+#: erpnext/stock/doctype/shipment/shipment.py:88
+msgid "Value of goods cannot be 0"
+msgstr ""
+
+#: erpnext/public/js/stock_analytics.js:46
+msgid "Value or Qty"
+msgstr "값 또는 수량"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Vara"
+msgstr "바라"
+
+#. Label of the variable (Data) field in DocType 'Bank Statement Import Log
+#. Column Map'
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+msgid "Variable"
+msgstr "변하기 쉬운"
+
+#. Label of the variable_label (Link) field in DocType 'Supplier Scorecard
+#. Scoring Variable'
+#. Label of the variable_label (Data) field in DocType 'Supplier Scorecard
+#. Variable'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_variable/supplier_scorecard_scoring_variable.json
+#: erpnext/buying/doctype/supplier_scorecard_variable/supplier_scorecard_variable.json
+msgid "Variable Name"
+msgstr "변수 이름"
+
+#. Label of the variables (Table) field in DocType 'Supplier Scorecard Period'
+#: erpnext/buying/doctype/supplier_scorecard_period/supplier_scorecard_period.json
+msgid "Variables"
+msgstr "변수"
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:247
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:251
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:333
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:343
+msgid "Variance"
+msgstr "변화"
+
+#: erpnext/selling/report/sales_partner_target_variance_based_on_item_group/item_group_wise_sales_target_variance.py:118
+msgid "Variance ({})"
+msgstr "분산({})"
+
+#: erpnext/stock/doctype/item/item.js:241
+#: erpnext/stock/doctype/item/item_list.js:59
+#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
+msgid "Variant"
+msgstr "변종"
+
+#: erpnext/stock/doctype/item/item.py:980
+msgid "Variant Attribute Error"
+msgstr "변형 속성 오류"
+
+#. Label of the attributes (Table) field in DocType 'Item'
+#: erpnext/public/js/templates/item_quick_entry.html:1
+#: erpnext/stock/doctype/item/item.json
+msgid "Variant Attributes"
+msgstr "변형 속성"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:264
+msgid "Variant BOM"
+msgstr "변형 BOM"
+
+#. Label of the variant_based_on (Select) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Variant Based On"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1008
+msgid "Variant Based On cannot be changed"
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.js:217
+msgid "Variant Details Report"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/stock/doctype/variant_field/variant_field.json
+msgid "Variant Field"
+msgstr "변형 필드"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:387
+#: erpnext/manufacturing/doctype/bom/bom.js:467
+msgid "Variant Item"
+msgstr "변형 상품"
+
+#: erpnext/stock/doctype/item/item.py:978
+msgid "Variant Items"
+msgstr "변형 상품"
+
+#. Label of the variant_of (Link) field in DocType 'Item'
+#. Label of the variant_of (Link) field in DocType 'Item Variant Attribute'
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item_variant_attribute/item_variant_attribute.json
+msgid "Variant Of"
+msgstr "변형"
+
+#: erpnext/stock/doctype/item/item.js:838
+msgid "Variant creation has been queued."
+msgstr ""
+
+#. Label of the variants_section (Tab Break) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Variants"
+msgstr "변형"
+
+#. Name of a DocType
+#. Label of the vehicle (Link) field in DocType 'Delivery Trip'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+#: erpnext/stock/doctype/delivery_trip/delivery_trip.json
+msgid "Vehicle"
+msgstr "차량"
+
+#. Label of the lr_date (Date) field in DocType 'Purchase Receipt'
+#. Label of the lr_date (Date) field in DocType 'Subcontracting Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Vehicle Date"
+msgstr "차량 날짜"
+
+#. Label of the vehicle_no (Data) field in DocType 'Delivery Note'
+#: erpnext/stock/doctype/delivery_note/delivery_note.json
+msgid "Vehicle No"
+msgstr "차량 번호"
+
+#. Label of the lr_no (Data) field in DocType 'Purchase Receipt'
+#. Label of the lr_no (Data) field in DocType 'Subcontracting Receipt'
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
+msgid "Vehicle Number"
+msgstr "차량 번호"
+
+#. Label of the vehicle_value (Currency) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Vehicle Value"
+msgstr "차량 가치"
+
+#. Label of the vendor_invoice (Link) field in DocType 'Landed Cost Vendor
+#. Invoice'
+#: erpnext/stock/doctype/landed_cost_vendor_invoice/landed_cost_vendor_invoice.json
+#: erpnext/stock/report/landed_cost_report/landed_cost_report.py:42
+msgid "Vendor Invoice"
+msgstr ""
+
+#. Label of the vendor_invoices (Table) field in DocType 'Landed Cost Voucher'
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Vendor Invoices"
+msgstr ""
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:540
+msgid "Vendor Name"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/industry_type.txt:51
+msgid "Venture Capital"
+msgstr ""
+
+#: erpnext/www/book_appointment/verify/index.html:15
+msgid "Verification failed please check the link"
+msgstr ""
+
+#. Label of the verified_by (Data) field in DocType 'Quality Inspection'
+#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
+msgid "Verified By"
+msgstr ""
+
+#: erpnext/templates/emails/confirm_appointment.html:6
+#: erpnext/www/book_appointment/verify/index.html:4
+msgid "Verify Email"
+msgstr "이메일 인증"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Versta"
+msgstr ""
+
+#. Label of the via_customer_portal (Check) field in DocType 'Issue'
+#. Label of a field in the issues Web Form
+#: erpnext/support/doctype/issue/issue.json
+#: erpnext/support/web_form/issues/issues.json
+msgid "Via Customer Portal"
+msgstr "고객 포털을 통해"
+
+#. Label of the via_landed_cost_voucher (Check) field in DocType 'Repost Item
+#. Valuation'
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+msgid "Via Landed Cost Voucher"
+msgstr ""
+
+#: erpnext/setup/setup_wizard/data/designation.txt:31
+msgid "Vice President"
+msgstr "부사장"
+
+#. Name of a DocType
+#: erpnext/utilities/doctype/video/video.json
+msgid "Video"
+msgstr "동영상"
+
+#. Name of a DocType
+#: erpnext/utilities/doctype/video/video_list.js:3
+#: erpnext/utilities/doctype/video_settings/video_settings.json
+msgid "Video Settings"
+msgstr "동영상 설정"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_template.js:9
+msgid "View Account Coverage"
+msgstr "계정 보장 범위 보기"
+
+#: erpnext/manufacturing/doctype/bom_update_tool/bom_update_tool.js:25
+msgid "View BOM Update Log"
+msgstr "BOM 업데이트 로그 보기"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'View Balance Sheet'
+#. Description of a report in the Onboarding Step 'View Balance Sheet'
+#: erpnext/accounts/onboarding_step/view_balance_sheet/view_balance_sheet.json
+#: erpnext/assets/onboarding_step/view_balance_sheet/view_balance_sheet.json
+msgid "View Balance Sheet"
+msgstr ""
+
+#: erpnext/public/js/setup_wizard.js:47
+msgid "View Chart of Accounts"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.js:93
+msgid "View Data Based on"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:248
+msgid "View Exchange Gain/Loss Journals"
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:135
+msgid "View Instructions"
+msgstr "지침 보기"
+
+#: erpnext/crm/doctype/campaign/campaign.js:15
+msgid "View Leads"
+msgstr "잠재 고객 보기"
+
+#: erpnext/accounts/doctype/account/account_tree.js:274
+#: erpnext/stock/doctype/batch/batch.js:18
+msgid "View Ledger"
+msgstr "원장 보기"
+
+#: erpnext/stock/doctype/serial_no/serial_no.js:28
+msgid "View Ledgers"
+msgstr "장부 보기"
+
+#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:65
+msgid "View MRP"
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/email_digest.js:7
+msgid "View Now"
+msgstr "지금 보기"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'View Project Summary'
+#. Description of a report in the Onboarding Step 'View Project Summary'
+#: erpnext/projects/onboarding_step/view_project_summary/view_project_summary.json
+msgid "View Project Summary"
+msgstr "프로젝트 요약 보기"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'View Purchase Order Analysis'
+#. Description of a report in the Onboarding Step 'View Purchase Order
+#. Analysis'
+#: erpnext/buying/onboarding_step/view_purchase_order_analysis/view_purchase_order_analysis.json
+msgid "View Purchase Order Analysis"
+msgstr "구매 주문 분석 보기"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'View Sales Order Analysis'
+#. Description of a report in the Onboarding Step 'View Sales Order Analysis'
+#: erpnext/selling/onboarding_step/view_sales_order_analysis/view_sales_order_analysis.json
+msgid "View Sales Order Analysis"
+msgstr "판매 주문 분석 보기"
+
+#. Label of an action in the Onboarding Step 'View Stock Balance Report'
+#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:139
+msgid "View Stock Balance"
+msgstr "주식 잔액 보기"
+
+#. Title of an Onboarding Step
+#. Label of an action in the Onboarding Step 'View Stock Balance Report'
+#. Description of a report in the Onboarding Step 'View Stock Balance Report'
+#: erpnext/selling/onboarding_step/view_stock_balance_report/view_stock_balance_report.json
+#: erpnext/stock/onboarding_step/view_stock_balance_report/view_stock_balance_report.json
+msgid "View Stock Balance Report"
+msgstr "재고 잔액 보고서 보기"
+
+#: erpnext/stock/report/stock_balance/stock_balance.js:156
+msgid "View Stock Ledger"
+msgstr "주식 원장 보기"
+
+#: erpnext/selling/report/customer_acquisition_and_loyalty/customer_acquisition_and_loyalty.js:8
+msgid "View Type"
+msgstr "보기 유형"
+
+#. Label of an action in the Onboarding Step 'View Work Order Summary Report'
+#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json
+msgid "View Work Order Summary"
+msgstr "작업 지시 요약 보기"
+
+#. Title of an Onboarding Step
+#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json
+msgid "View Work Order Summary Report"
+msgstr "작업 지시 요약 보고서 보기"
+
+#: banking/src/components/features/Settings/KeyboardShortcuts.tsx:55
+msgid "View all reconciliation actions taken in this session"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:60
+msgid "View all reconciliation actions taken in this session."
+msgstr ""
+
+#. Label of the view_attachments (Check) field in DocType 'Project User'
+#: erpnext/projects/doctype/project_user/project_user.json
+msgid "View attachments"
+msgstr ""
+
+#: erpnext/public/js/call_popup/call_popup.js:192
+msgid "View call log"
+msgstr "통화 기록 보기"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:937
+msgid "View older transaction"
+msgstr "이전 거래 내역 보기"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:937
+msgid "View older transactions"
+msgstr "이전 거래 내역 보기"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:284
+msgid "View transaction"
+msgstr "거래 내역 보기"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:284
+msgid "View transactions"
+msgstr "거래 내역 보기"
+
+#. Option for the 'Provider' (Select) field in DocType 'Video'
+#: erpnext/utilities/doctype/video/video.json
+msgid "Vimeo"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:216
+msgid "Virtual DocType"
+msgstr "가상 문서 유형"
+
+#: erpnext/templates/pages/help.html:46
+msgid "Visit the forums"
+msgstr "포럼을 방문하세요"
+
+#. Label of the visited (Check) field in DocType 'Delivery Stop'
+#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
+msgid "Visited"
+msgstr "방문함"
+
+#. Group in Maintenance Schedule's connections
+#: erpnext/maintenance/doctype/maintenance_schedule/maintenance_schedule.json
+msgid "Visits"
+msgstr "방문"
+
+#. Option for the 'Communication Medium Type' (Select) field in DocType
+#. 'Communication Medium'
+#: erpnext/communication/doctype/communication_medium/communication_medium.json
+msgid "Voice"
+msgstr "목소리"
+
+#. Name of a DocType
+#: erpnext/telephony/doctype/voice_call_settings/voice_call_settings.json
+msgid "Voice Call Settings"
+msgstr "음성 통화 설정"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Volt-Ampere"
+msgstr "볼트-암페어"
+
+#: erpnext/accounts/report/purchase_register/purchase_register.py:163
+#: erpnext/accounts/report/sales_register/sales_register.py:179
+msgid "Voucher"
+msgstr "보증인"
+
+#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
+msgid "Voucher #"
+msgstr ""
+
+#. Option for the 'Reconciliation Type' (Select) field in DocType 'Bank
+#. Transaction Payments'
+#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
+msgid "Voucher Created"
+msgstr ""
+
+#. Label of the voucher_detail_no (Data) field in DocType 'GL Entry'
+#. Label of the voucher_detail_no (Data) field in DocType 'Payment Ledger
+#. Entry'
+#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch
+#. Bundle'
+#. Label of the voucher_detail_no (Data) field in DocType 'Serial and Batch
+#. Entry'
+#. Label of the voucher_detail_no (Data) field in DocType 'Stock Ledger Entry'
+#. Label of the voucher_detail_no (Data) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:51
+msgid "Voucher Detail No"
+msgstr ""
+
+#. Label of the voucher_detail_reference (Data) field in DocType 'Work Order
+#. Item'
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Voucher Detail Reference"
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.html:160
+msgid "Voucher Details"
+msgstr ""
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:438
+msgid "Voucher Name"
+msgstr ""
+
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Advance Payment
+#. Ledger Entry'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'GL Entry'
+#. Label of the voucher_no (Data) field in DocType 'Ledger Health'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Payment Ledger
+#. Entry'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Accounting
+#. Ledger Items'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Payment
+#. Ledger Items'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Unreconcile
+#. Payment'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Repost Item
+#. Valuation'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Serial and Batch
+#. Bundle'
+#. Label of the voucher_no (Data) field in DocType 'Serial and Batch Entry'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Ledger Entry'
+#. Label of the voucher_no (Dynamic Link) field in DocType 'Stock Reservation
+#. Entry'
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js:299
+#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json
+#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.js:56
+#: erpnext/accounts/report/general_and_payment_ledger_comparison/general_and_payment_ledger_comparison.py:221
+#: erpnext/accounts/report/general_ledger/general_ledger.js:49
+#: erpnext/accounts/report/general_ledger/general_ledger.py:768
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.js:41
+#: erpnext/accounts/report/invalid_ledger_entries/invalid_ledger_entries.py:33
+#: erpnext/accounts/report/payment_ledger/payment_ledger.js:65
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:174
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:19
+#: erpnext/public/js/utils/unreconcile.js:79
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:152
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:98
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:44
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:168
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:108
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:77
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:151
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:51
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:114
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:34
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:154
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:165
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:74
+msgid "Voucher No"
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1419
+msgid "Voucher No is mandatory"
+msgstr ""
+
+#. Label of the voucher_qty (Float) field in DocType 'Stock Reservation Entry'
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:117
+msgid "Voucher Qty"
+msgstr ""
+
+#. Label of the voucher_subtype (Small Text) field in DocType 'GL Entry'
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/report/general_ledger/general_ledger.py:762
+msgid "Voucher Subtype"
+msgstr ""
+
+#. Label of the voucher_type (Link) field in DocType 'Advance Payment Ledger
+#. Entry'
+#. Label of the voucher_type (Link) field in DocType 'GL Entry'
+#. Label of the voucher_type (Data) field in DocType 'Ledger Health'
+#. Label of the voucher_type (Link) field in DocType 'Payment Ledger Entry'
+#. Label of the voucher_type (Link) field in DocType 'Repost Accounting Ledger
+#. Items'
+#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger'
+#. Label of the voucher_type (Link) field in DocType 'Repost Payment Ledger
+#. Items'
+#. Label of the voucher_type (Link) field in DocType 'Unreconcile Payment'
+#. Label of the voucher_type (Link) field in DocType 'Repost Item Valuation'
+#. Label of the voucher_type (Link) field in DocType 'Serial and Batch Bundle'
+#. Label of the voucher_type (Data) field in DocType 'Serial and Batch Entry'
+#. Label of the voucher_type (Link) field in DocType 'Stock Ledger Entry'
+#. Label of the voucher_type (Select) field in DocType 'Stock Reservation
+#. Entry'
+#: banking/src/components/features/ActionLog/ActionLog.tsx:434
+#: erpnext/accounts/doctype/advance_payment_ledger_entry/advance_payment_ledger_entry.json
+#: erpnext/accounts/doctype/gl_entry/gl_entry.json
+#: erpnext/accounts/doctype/ledger_health/ledger_health.json
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
+#: erpnext/accounts/doctype/repost_accounting_ledger_items/repost_accounting_ledger_items.json
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+#: erpnext/accounts/doctype/repost_payment_ledger_items/repost_payment_ledger_items.json
+#: erpnext/accounts/doctype/unreconcile_payment/unreconcile_payment.json
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
+#: 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
+#: erpnext/accounts/report/payment_ledger/payment_ledger.py:165
+#: erpnext/accounts/report/purchase_register/purchase_register.py:158
+#: erpnext/accounts/report/sales_register/sales_register.py:174
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.py:17
+#: erpnext/public/js/utils/unreconcile.js:71
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.json
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
+#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/available_serial_no/available_serial_no.py:194
+#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:146
+#: erpnext/stock/report/incorrect_balance_qty_after_transaction/incorrect_balance_qty_after_transaction.py:91
+#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:38
+#: erpnext/stock/report/incorrect_serial_no_valuation/incorrect_serial_no_valuation.py:161
+#: erpnext/stock/report/incorrect_stock_value_report/incorrect_stock_value_report.py:106
+#: erpnext/stock/report/reserved_stock/reserved_stock.js:65
+#: erpnext/stock/report/reserved_stock/reserved_stock.py:145
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.js:40
+#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:109
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
+#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
+#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
+#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
+#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
+msgid "Voucher Type"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:208
+msgid "Voucher {0} is over-allocated by {1}"
+msgstr ""
+
+#. Name of a report
+#: erpnext/accounts/report/voucher_wise_balance/voucher_wise_balance.json
+msgid "Voucher-wise Balance"
+msgstr ""
+
+#. Label of the vouchers (Table) field in DocType 'Repost Accounting Ledger'
+#. Label of the selected_vouchers_section (Section Break) field in DocType
+#. 'Repost Payment Ledger'
+#. Label of the purchase_receipts (Table) field in DocType 'Landed Cost
+#. Voucher'
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.json
+#: erpnext/accounts/doctype/repost_payment_ledger/repost_payment_ledger.json
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
+msgid "Vouchers"
+msgstr "상품권"
+
+#: erpnext/patches/v15_0/remove_exotel_integration.py:32
+msgid "WARNING: Exotel app has been separated from ERPNext, please install the app to continue using Exotel integration."
+msgstr ""
+
+#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Order
+#. Item'
+#. Label of the wip_composite_asset (Link) field in DocType 'Material Request
+#. Item'
+#. Label of the wip_composite_asset (Link) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/stock/doctype/material_request_item/material_request_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "WIP Composite Asset"
+msgstr "WIP 복합 자산"
+
+#. Label of the wip_warehouse (Link) field in DocType 'Work Order Operation'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "WIP WH"
+msgstr "WIP WH"
+
+#. Label of the wip_warehouse (Link) field in DocType 'BOM Operation'
+#. Label of the wip_warehouse (Link) field in DocType 'Job Card'
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order_calendar.js:44
+msgid "WIP Warehouse"
+msgstr "WIP 창고"
+
+#. Label of a number card in the Manufacturing Workspace
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+msgid "WIP Work Orders"
+msgstr "진행 중인 작업 지시서"
+
+#: erpnext/manufacturing/doctype/workstation/test_workstation.py:125
+#: erpnext/patches/v16_0/make_workstation_operating_components.py:50
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:317
+msgid "Wages"
+msgstr "임금"
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:435
+msgid "Waiting for payment..."
+msgstr "결제를 기다리는 중..."
+
+#: erpnext/setup/setup_wizard/data/marketing_source.txt:10
+msgid "Walk In"
+msgstr ""
+
+#: erpnext/stock/page/warehouse_capacity_summary/warehouse_capacity_summary.js:4
+msgid "Warehouse Capacity Summary"
+msgstr "창고 용량 요약"
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:79
+msgid "Warehouse Capacity for Item '{0}' must be greater than the existing stock level of {1} {2}."
+msgstr "품목 '{0}'의 창고 용량은 기존 재고 수준 {1} {2}보다 커야 합니다."
+
+#. Label of the warehouse_contact_info (Section Break) field in DocType
+#. 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Warehouse Contact Info"
+msgstr "창고 연락처 정보"
+
+#. Label of the warehouse_detail (Section Break) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Warehouse Detail"
+msgstr ""
+
+#. Label of the warehouse_section (Section Break) field in DocType
+#. 'Subcontracting Order Item'
+#: erpnext/subcontracting/doctype/subcontracting_order_item/subcontracting_order_item.json
+msgid "Warehouse Details"
+msgstr ""
+
+#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.py:113
+msgid "Warehouse Disabled?"
+msgstr "창고가 폐쇄되었나요?"
+
+#. Label of the warehouse_name (Data) field in DocType 'Warehouse'
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "Warehouse Name"
+msgstr "창고 이름"
+
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Purchase Order Item'
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+msgid "Warehouse Settings"
+msgstr "창고 설정"
+
+#. Label of the warehouse_type (Link) field in DocType 'Warehouse'
+#. Name of a DocType
+#: erpnext/stock/doctype/warehouse/warehouse.json
+#: erpnext/stock/doctype/warehouse_type/warehouse_type.json
+#: erpnext/stock/report/available_batch_report/available_batch_report.js:57
+#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.js:45
+#: erpnext/stock/report/stock_ageing/stock_ageing.js:23
+#: erpnext/stock/report/stock_balance/stock_balance.js:94
+msgid "Warehouse Type"
+msgstr "창고 유형"
+
+#. Name of a report
+#. Label of a Link in the Stock Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/stock/report/warehouse_wise_stock_balance/warehouse_wise_stock_balance.json
+#: erpnext/stock/workspace/stock/stock.json
+#: erpnext/workspace_sidebar/stock.json
+msgid "Warehouse Wise Stock Balance"
+msgstr ""
+
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Request for Quotation Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Supplier Quotation Item'
+#. Label of the reference (Section Break) field in DocType 'Quotation Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
+#. Order Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Delivery Note Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Purchase Receipt Item'
+#. Label of the warehouse_and_reference (Section Break) field in DocType
+#. 'Subcontracting Receipt Item'
+#: erpnext/buying/doctype/request_for_quotation_item/request_for_quotation_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+msgid "Warehouse and Reference"
+msgstr "창고 및 참조"
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:101
+msgid "Warehouse can not be deleted as stock ledger entry exists for this warehouse."
+msgstr "해당 창고에 대한 재고 장부 항목이 존재하므로 창고를 삭제할 수 없습니다."
+
+#: erpnext/stock/doctype/serial_no/serial_no.py:85
+msgid "Warehouse cannot be changed for Serial No."
+msgstr ""
+
+#: erpnext/controllers/sales_and_purchase_return.py:160
+msgid "Warehouse is mandatory"
+msgstr ""
+
+#: erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py:286
+msgid "Warehouse is required to get producible FG Items"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:240
+msgid "Warehouse not found against the account {0}"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
+msgid "Warehouse required for stock Item {0}"
+msgstr ""
+
+#. Name of a report
+#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.json
+msgid "Warehouse wise Item Balance Age and Value"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:95
+msgid "Warehouse {0} can not be deleted as quantity exists for Item {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/putaway_rule/putaway_rule.py:67
+msgid "Warehouse {0} does not belong to Company {1}."
+msgstr "창고 {0} 는 회사 {1}에 속하지 않습니다."
+
+#: erpnext/stock/utils.py:421
+msgid "Warehouse {0} does not belong to company {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:289
+msgid "Warehouse {0} does not exist"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
+msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:821
+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 "창고 {0} 는 어떤 계정에도 연결되어 있지 않습니다. 창고 기록에 계정을 명시하거나 회사 {1}에서 기본 재고 계정을 설정하십시오."
+
+#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:20
+msgid "Warehouse: {0} does not belong to {1}"
+msgstr ""
+
+#. Label of the warehouses (Table MultiSelect) field in DocType 'Production
+#. Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:526
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+#: erpnext/stock/report/stock_balance/stock_balance.js:76
+#: erpnext/stock/report/stock_ledger/stock_ledger.js:30
+msgid "Warehouses"
+msgstr "창고"
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:148
+msgid "Warehouses with child nodes cannot be converted to ledger"
+msgstr ""
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:158
+msgid "Warehouses with existing transaction can not be converted to group."
+msgstr "기존 거래가 있는 창고는 그룹으로 전환할 수 없습니다."
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:150
+msgid "Warehouses with existing transaction can not be converted to ledger."
+msgstr "기존 거래 내역이 있는 창고는 원장으로 전환할 수 없습니다."
+
+#. Option for the 'Action if Same Rate is Not Maintained Throughout Internal
+#. Transaction' (Select) field in DocType 'Accounts Settings'
+#. Option for the 'Action if Annual Budget Exceeded on MR' (Select) field in
+#. DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on MR'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Annual Budget Exceeded on PO' (Select) field in
+#. DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on PO'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Annual Budget Exceeded on Actual' (Select) field
+#. in DocType 'Budget'
+#. Option for the 'Action if Accumulated Monthly Budget Exceeded on Actual'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Anual Budget Exceeded on Cumulative Expense'
+#. (Select) field in DocType 'Budget'
+#. Option for the 'Action if Accumulative Monthly Budget Exceeded on Cumulative
+#. Expense' (Select) field in DocType 'Budget'
+#. Option for the 'Action if same rate is not maintained' (Select) field in
+#. DocType 'Buying Settings'
+#. Option for the 'Action if same rate is not maintained throughout sales
+#. cycle' (Select) field in DocType 'Selling Settings'
+#. Option for the 'Action If Quality Inspection Is Not Submitted' (Select)
+#. field in DocType 'Stock Settings'
+#. Option for the 'Action If Quality Inspection Is Rejected' (Select) field in
+#. DocType 'Stock Settings'
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
+#: erpnext/accounts/doctype/budget/budget.json
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+#: erpnext/stock/doctype/stock_settings/stock_settings.json
+msgid "Warn"
+msgstr "경고하다"
+
+#. Label of the warn_pos (Check) field in DocType 'Supplier'
+#: erpnext/buying/doctype/supplier/supplier.json
+msgid "Warn POs"
+msgstr "구매 담당자에게 경고하세요"
+
+#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Scoring
+#. Standing'
+#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard Standing'
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Warn Purchase Orders"
+msgstr "구매 주문 경고"
+
+#. Label of the warn_rfqs (Check) field in DocType 'Supplier'
+#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard Scoring
+#. Standing'
+#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard
+#. Standing'
+#: erpnext/buying/doctype/supplier/supplier.json
+#: erpnext/buying/doctype/supplier_scorecard_scoring_standing/supplier_scorecard_scoring_standing.json
+#: erpnext/buying/doctype/supplier_scorecard_standing/supplier_scorecard_standing.json
+msgid "Warn RFQs"
+msgstr ""
+
+#. Label of the warn_pos (Check) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Warn for new Purchase Orders"
+msgstr "신규 구매 주문에 대한 경고"
+
+#. Label of the warn_rfqs (Check) field in DocType 'Supplier Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Warn for new Request for Quotations"
+msgstr "새로운 견적 요청에 대한 경고"
+
+#. Description of the 'Maintain same rate throughout sales cycle' (Check) field
+#. in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Warn or stop if Item rate is changed in Delivery Notes and Sales Invoices generated from a Sales Order."
+msgstr ""
+
+#. Description of the 'Maintain same rate throughout the purchase cycle'
+#. (Check) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Warn or stop if Item rate is changed in Purchase Invoice or Purchase Receipt generated from a Purchase Order."
+msgstr ""
+
+#: erpnext/projects/doctype/timesheet_detail/timesheet_detail.py:134
+msgid "Warning - Row {0}: Billing Hours are more than Actual Hours"
+msgstr "경고 - 행 {0}: 청구 시간이 실제 시간보다 많습니다"
+
+#: erpnext/stock/stock_ledger.py:834
+msgid "Warning on Negative Stock"
+msgstr "주가 하락에 대한 경고"
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:114
+msgid "Warning!"
+msgstr "경고!"
+
+#: erpnext/stock/doctype/warehouse/warehouse.py:123
+msgid "Warning: Account changed for warehouse"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1323
+msgid "Warning: Another {0} # {1} exists against stock entry {2}"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.js:534
+msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
+msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
+msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:75
+msgid "Warning: This action cannot be undone!"
+msgstr "경고: 이 작업은 되돌릴 수 없습니다!"
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_validation.py:74
+msgid "Warnings"
+msgstr "경고"
+
+#. Label of a Card Break in the Support Workspace
+#: erpnext/support/workspace/support/support.json
+msgid "Warranty"
+msgstr "보증"
+
+#. Label of the warranty_amc_details (Section Break) field in DocType 'Serial
+#. No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Warranty / AMC Details"
+msgstr "보증/유지보수 계약 세부 정보"
+
+#. Label of the warranty_amc_status (Select) field in DocType 'Warranty Claim'
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Warranty / AMC Status"
+msgstr "보증/유지보수 계약 상태"
+
+#. Label of a Link in the CRM Workspace
+#. Name of a DocType
+#. Label of a Link in the Support Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/crm/workspace/crm/crm.json
+#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:103
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+#: erpnext/support/workspace/support/support.json
+#: erpnext/workspace_sidebar/crm.json erpnext/workspace_sidebar/support.json
+msgid "Warranty Claim"
+msgstr "보증 청구"
+
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:546
+msgid "Warranty Expiry (Serial)"
+msgstr "보증 만료일(일련번호)"
+
+#. Label of the warranty_expiry_date (Date) field in DocType 'Serial No'
+#. Label of the warranty_expiry_date (Date) field in DocType 'Warranty Claim'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Warranty Expiry Date"
+msgstr "보증 만료일"
+
+#. Label of the warranty_period (Int) field in DocType 'Serial No'
+#: erpnext/stock/doctype/serial_no/serial_no.json
+msgid "Warranty Period (Days)"
+msgstr "보증 기간(일)"
+
+#. Label of the warranty_period (Data) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Warranty Period (in days)"
+msgstr "보증 기간(일)"
+
+#: erpnext/utilities/doctype/video/video.js:7
+msgid "Watch Video"
+msgstr "영상 보기"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Watt"
+msgstr "와트"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Watt-Hour"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Wavelength In Gigametres"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Wavelength In Kilometres"
+msgstr ""
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Wavelength In Megametres"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:194
+msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
+msgstr ""
+
+#: banking/src/pages/BankStatementImporter.tsx:140
+msgid "We support uploading CSV, XLSX and XLS files. Please make sure the file contains the correct columns."
+msgstr "CSV, XLSX 및 XLS 파일 업로드를 지원합니다. 파일에 올바른 열이 포함되어 있는지 확인하십시오."
+
+#: erpnext/www/support/index.html:7
+msgid "We're here to help!"
+msgstr "저희가 도와드리겠습니다!"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:122
+msgid "We've auto-detected the details of the statement file."
+msgstr "명세서 파일의 세부 정보를 자동으로 감지했습니다."
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:273
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:291
+msgid "We've found 1 existing transaction in the system that conflicts with the transactions in the statement file. Are you sure you want to proceed with the import?"
+msgstr "시스템에서 명세서 파일의 거래 내역과 충돌하는 기존 거래가 1건 발견되었습니다. 가져오기를 계속 진행하시겠습니까?"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:223
+msgid "We've found 1 transaction in the statement file that will be imported into the system. Please review the details below and click the 'Import' button to proceed."
+msgstr "명세서 파일에서 시스템으로 가져올 거래 내역 1건을 찾았습니다. 아래 세부 정보를 확인하시고 '가져오기' 버튼을 클릭하여 진행하십시오."
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:274
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:292
+msgid "We've found {0} existing transactions in the system that conflict with the transactions in the statement file. Are you sure you want to proceed with the import?"
+msgstr "시스템에서 명세서 파일의 거래와 충돌하는 기존 거래가 {0} 건 발견되었습니다. 가져오기를 계속 진행하시겠습니까?"
+
+#. Name of a DocType
+#: erpnext/portal/doctype/website_attribute/website_attribute.json
+msgid "Website Attribute"
+msgstr "웹사이트 속성"
+
+#. Label of the web_long_description (Text Editor) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Website Description"
+msgstr "웹사이트 설명"
+
+#. Name of a DocType
+#: erpnext/portal/doctype/website_filter_field/website_filter_field.json
+msgid "Website Filter Field"
+msgstr "웹사이트 필터 필드"
+
+#. Label of the website_image (Attach Image) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Website Image"
+msgstr "웹사이트 이미지"
+
+#. Name of a DocType
+#: erpnext/setup/doctype/website_item_group/website_item_group.json
+msgid "Website Item Group"
+msgstr "웹사이트 항목 그룹"
+
+#. Label of the sb_web_spec (Section Break) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "Website Specifications"
+msgstr "웹사이트 사양"
+
+#: erpnext/accounts/letterhead/company_letterhead.html:91
+#: erpnext/accounts/letterhead/company_letterhead_grey.html:109
+msgid "Website:"
+msgstr "웹사이트:"
+
+#: erpnext/public/js/utils/naming_series.js:95
+msgid "Week of the year"
+msgstr "연중 주차"
+
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
+#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
+msgid "Week {0} {1}"
+msgstr "주 {0} {1}"
+
+#. Label of the weekday (Select) field in DocType 'Quality Goal'
+#: erpnext/quality_management/doctype/quality_goal/quality_goal.json
+msgid "Weekday"
+msgstr "주일"
+
+#. Label of the weekly_off (Check) field in DocType 'Holiday'
+#. Label of the weekly_off (Select) field in DocType 'Holiday List'
+#: erpnext/setup/doctype/holiday/holiday.json
+#: erpnext/setup/doctype/holiday_list/holiday_list.json
+msgid "Weekly Off"
+msgstr ""
+
+#. Label of the weekly_time_to_send (Time) field in DocType 'Project'
+#: erpnext/projects/doctype/project/project.json
+msgid "Weekly Time to send"
+msgstr "매주 보내는 시간"
+
+#. Label of the weight (Float) field in DocType 'Shipment Parcel'
+#. Label of the weight (Float) field in DocType 'Shipment Parcel Template'
+#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Weight (kg)"
+msgstr "무게(kg)"
+
+#. Label of the weight_per_unit (Float) field in DocType 'POS Invoice Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Purchase Invoice
+#. Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Sales Invoice Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Purchase Order Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Supplier Quotation
+#. Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Quotation Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Sales Order Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Delivery Note Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Item'
+#. Label of the weight_per_unit (Float) field in DocType 'Purchase Receipt
+#. Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Weight Per Unit"
+msgstr ""
+
+#. Label of the weight_uom (Link) field in DocType 'POS Invoice Item'
+#. Label of the weight_uom (Link) field in DocType 'Purchase Invoice Item'
+#. Label of the weight_uom (Link) field in DocType 'Sales Invoice Item'
+#. Label of the weight_uom (Link) field in DocType 'Purchase Order Item'
+#. Label of the weight_uom (Link) field in DocType 'Supplier Quotation Item'
+#. Label of the weight_uom (Link) field in DocType 'Quotation Item'
+#. Label of the weight_uom (Link) field in DocType 'Sales Order Item'
+#. Label of the weight_uom (Link) field in DocType 'Delivery Note Item'
+#. Label of the weight_uom (Link) field in DocType 'Item'
+#. Label of the weight_uom (Link) field in DocType 'Packing Slip Item'
+#. Label of the weight_uom (Link) field in DocType 'Purchase Receipt Item'
+#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
+#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
+#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
+#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
+#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
+#: erpnext/selling/doctype/quotation_item/quotation_item.json
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
+#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/packing_slip_item/packing_slip_item.json
+#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
+msgid "Weight UOM"
+msgstr "무게 단위"
+
+#. Label of the weighting_function (Small Text) field in DocType 'Supplier
+#. Scorecard'
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.json
+msgid "Weighting Function"
+msgstr "가중 함수"
+
+#: erpnext/templates/pages/help.html:12
+msgid "What do you need help with?"
+msgstr "어떤 도움이 필요하신가요?"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:82
+msgid "What will be deleted:"
+msgstr "삭제될 내용:"
+
+#. Label of the whatsapp_no (Data) field in DocType 'Lead'
+#. Label of the whatsapp (Data) field in DocType 'Opportunity'
+#: erpnext/crm/doctype/lead/lead.json
+#: erpnext/crm/doctype/opportunity/opportunity.json
+msgid "WhatsApp"
+msgstr ""
+
+#. Label of the wheels (Int) field in DocType 'Vehicle'
+#: erpnext/setup/doctype/vehicle/vehicle.json
+msgid "Wheels"
+msgstr "바퀴"
+
+#. Description of the 'Sub Assembly Warehouse' (Link) field in DocType
+#. 'Production Plan'
+#: erpnext/manufacturing/doctype/production_plan/production_plan.json
+msgid "When a parent warehouse is chosen, the system conducts Project Qty checks against the associated child warehouses"
+msgstr ""
+
+#. Description of the 'Disable Transaction Threshold' (Check) field in DocType
+#. 'Tax Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "When checked, only cumulative threshold will be applied"
+msgstr ""
+
+#. Description of the 'Disable Cumulative Threshold' (Check) field in DocType
+#. 'Tax Withholding Category'
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
+msgid "When checked, only transaction threshold will be applied for transaction individually"
+msgstr ""
+
+#. Description of the 'Use Posting Datetime for Naming Documents' (Check) field
+#. in DocType 'Global Defaults'
+#: erpnext/setup/doctype/global_defaults/global_defaults.json
+msgid "When checked, the system will use the posting datetime of the document for naming the document instead of the creation datetime of the document."
+msgstr "이 옵션을 선택하면 시스템은 문서 생성 날짜/시간 대신 문서 게시 날짜/시간을 사용하여 문서 이름을 지정합니다."
+
+#: erpnext/stock/doctype/item/item.js:1168
+msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
+msgstr ""
+
+#. Description of the 'Enable cut-off date on creating bulk Delivery Notes'
+#. (Check) field in DocType 'Selling Settings'
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "When enabled, it adds a cutoff date filter to Delivery Notes created in bulk from Sales Orders. This allows you to process orders only with a transaction date up to the specified cutoff date, which is useful for period-end processing and batch fulfillment."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
+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 ""
+
+#. Description of the 'Deferred Expense Account' (Link) field in DocType 'Item
+#. Default'
+#: erpnext/stock/doctype/item_default/item_default.json
+msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
+msgstr ""
+
+#: erpnext/accounts/doctype/account/account.py:384
+msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
+msgstr "자식 회사 {0}에 대한 계정을 생성하는 동안 상위 계정 {1} 이 원장 계정으로 발견되었습니다."
+
+#: erpnext/accounts/doctype/account/account.py:374
+msgid "While creating account for Child Company {0}, parent account {1} not found. Please create the parent account in corresponding COA"
+msgstr ""
+
+#. Description of the 'Use Transaction Date Exchange Rate' (Check) field in
+#. DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "While making Purchase Invoice from Purchase Order, use Exchange Rate on Invoice's transaction date rather than inheriting it from Purchase Order. Only applies for Purchase Invoice."
+msgstr ""
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:286
+msgid "White"
+msgstr "하얀색"
+
+#. Option for the 'Marital Status' (Select) field in DocType 'Employee'
+#: erpnext/setup/doctype/employee/employee.json
+msgid "Widowed"
+msgstr "과부"
+
+#. Label of the width (Float) field in DocType 'Shipment Parcel'
+#. Label of the width (Float) field in DocType 'Shipment Parcel Template'
+#: erpnext/stock/doctype/shipment_parcel/shipment_parcel.json
+#: erpnext/stock/doctype/shipment_parcel_template/shipment_parcel_template.json
+msgid "Width (cm)"
+msgstr "너비(cm)"
+
+#. Label of the amt_in_word_width (Float) field in DocType 'Cheque Print
+#. Template'
+#: erpnext/accounts/doctype/cheque_print_template/cheque_print_template.json
+msgid "Width of amount in word"
+msgstr "단어로 표현된 금액의 너비"
+
+#. Description of the 'Taxes' (Table) field in DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Will also apply for variants"
+msgstr ""
+
+#. Description of the 'Reorder level based on Warehouse' (Table) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "Will also apply for variants unless overridden"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:616
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:621
+msgid "Will be auto-populated"
+msgstr "자동으로 채워집니다"
+
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:259
+msgid "Wire Transfer"
+msgstr "송금"
+
+#. Label of the with_operations (Check) field in DocType 'BOM'
+#: erpnext/manufacturing/doctype/bom/bom.json
+msgid "With Operations"
+msgstr "운영과 함께"
+
+#: erpnext/accounts/report/consolidated_trial_balance/consolidated_trial_balance.js:63
+#: erpnext/accounts/report/trial_balance/trial_balance.js:83
+msgid "With Period Closing Entry For Opening Balances"
+msgstr ""
+
+#. Option for the 'Maps To' (Select) field in DocType 'Bank Statement Import
+#. Log Column Map'
+#. Label of the withdrawal (Currency) field in DocType 'Bank Transaction'
+#. Option for the 'Transaction Type' (Select) field in DocType 'Bank
+#. Transaction Rule'
+#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:88
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:145
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:237
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:304
+#: banking/src/pages/BankStatementImporter.tsx:164
+#: erpnext/accounts/doctype/bank_statement_import_log_column_map/bank_statement_import_log_column_map.json
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
+#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.json
+#: erpnext/public/js/bank_reconciliation_tool/data_table_manager.js:67
+msgid "Withdrawal"
+msgstr "철수"
+
+#. Label of the withholding_date (Date) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Withholding Date"
+msgstr ""
+
+#: erpnext/accounts/report/tax_withholding_details/tax_withholding_details.py:278
+msgid "Withholding Document"
+msgstr ""
+
+#. Label of the withholding_name (Dynamic Link) field in DocType 'Tax
+#. Withholding Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Withholding Document Name"
+msgstr ""
+
+#. Label of the withholding_doctype (Link) field in DocType 'Tax Withholding
+#. Entry'
+#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
+msgid "Withholding Document Type"
+msgstr ""
+
+#: banking/src/components/features/Settings/Preferences.tsx:70
+msgid "Within 1 day"
+msgstr ""
+
+#: banking/src/components/features/Settings/Preferences.tsx:71
+msgid "Within 2 days"
+msgstr "2일 이내"
+
+#: banking/src/components/features/Settings/Preferences.tsx:72
+msgid "Within 3 days"
+msgstr "3일 이내"
+
+#: banking/src/components/features/Settings/Preferences.tsx:73
+msgid "Within 4 days"
+msgstr "4일 이내"
+
+#: banking/src/components/features/Settings/Preferences.tsx:74
+msgid "Within 5 days"
+msgstr "5일 이내"
+
+#. Label of a chart in the CRM Workspace
+#: erpnext/crm/workspace/crm/crm.json
+msgid "Won Opportunities"
+msgstr "획득한 기회"
+
+#. Label of a number card in the CRM Workspace
+#: erpnext/crm/workspace/crm/crm.json
+msgid "Won Opportunity (Last 1 Month)"
+msgstr "(지난 1개월간) 수주 기회"
+
+#. Label of the work_done (Small Text) field in DocType 'Maintenance Visit
+#. Purpose'
+#: erpnext/maintenance/doctype/maintenance_visit_purpose/maintenance_visit_purpose.json
+msgid "Work Done"
+msgstr "작업 완료"
+
+#. Option for the 'Status' (Select) field in DocType 'Asset'
+#. Option for the 'Status' (Select) field in DocType 'Job Card'
+#. Option for the 'Status' (Select) field in DocType 'Job Card Operation'
+#. Option for the 'Status' (Select) field in DocType 'Warranty Claim'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset/asset_list.js:12
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/job_card_operation/job_card_operation.json
+#: erpnext/setup/doctype/company/company.py:388
+#: erpnext/support/doctype/warranty_claim/warranty_claim.json
+msgid "Work In Progress"
+msgstr "작업 진행 중"
+
+#. Option for the 'Transfer Material Against' (Select) field in DocType 'BOM'
+#. Label of the work_order (Link) field in DocType 'Job Card'
+#. Name of a DocType
+#. Option for the 'Transfer Material Against' (Select) field in DocType 'Work
+#. Order'
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the work_order (Link) field in DocType 'Material Request'
+#. Label of the work_order (Link) field in DocType 'Pick List'
+#. Label of the work_order (Link) field in DocType 'Serial No'
+#. Label of the work_order (Link) field in DocType 'Stock Entry'
+#. Option for the 'Voucher Type' (Select) field in DocType 'Stock Reservation
+#. Entry'
+#. Option for the 'From Voucher Type' (Select) field in DocType 'Stock
+#. Reservation Entry'
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom/bom.js:255
+#: erpnext/manufacturing/doctype/bom/bom.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.js:14
+#: erpnext/manufacturing/report/bom_variance_report/bom_variance_report.py:19
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:43
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:93
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:145
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.js:22
+#: erpnext/manufacturing/report/process_loss_report/process_loss_report.py:67
+#: 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:104
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/selling/doctype/sales_order/sales_order.js:1094
+#: erpnext/stock/doctype/material_request/material_request.js:216
+#: erpnext/stock/doctype/material_request/material_request.json
+#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/pick_list/pick_list.json
+#: erpnext/stock/doctype/serial_no/serial_no.json
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
+#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.json
+#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:512
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.js:142
+#: erpnext/templates/pages/material_request_info.html:45
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Work Order"
+msgstr "작업 지시서"
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.js:144
+msgid "Work Order / Subcontract PO"
+msgstr "작업 지시서 / 하도급 구매 주문서"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:93
+msgid "Work Order Analysis"
+msgstr "작업 지시 분석"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/work_order_consumed_materials/work_order_consumed_materials.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Work Order Consumed Materials"
+msgstr "작업 지시서 소모 자재"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/work_order_item/work_order_item.json
+msgid "Work Order Item"
+msgstr "작업 지시 항목"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
+msgid "Work Order Mismatch"
+msgstr "작업 지시 불일치"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+msgid "Work Order Operation"
+msgstr "작업 지시 작업"
+
+#. Label of the work_order_qty (Float) field in DocType 'Sales Order Item'
+#. Label of the work_order_qty (Float) field in DocType 'Subcontracting Inward
+#. Order Received Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
+msgid "Work Order Qty"
+msgstr "작업 지시 수량"
+
+#: erpnext/manufacturing/dashboard_fixtures.py:152
+msgid "Work Order Qty Analysis"
+msgstr "작업 지시 수량 분석"
+
+#. Name of a report
+#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.json
+msgid "Work Order Stock Report"
+msgstr "작업 지시 재고 보고서"
+
+#. Name of a report
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/report/work_order_summary/work_order_summary.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Work Order Summary"
+msgstr "작업 지시 요약"
+
+#. Description of a report in the Onboarding Step 'View Work Order Summary
+#. Report'
+#: erpnext/manufacturing/onboarding_step/view_work_order_summary_report/view_work_order_summary_report.json
+msgid "Work Order Summary Report"
+msgstr "작업 지시 요약 보고서"
+
+#: erpnext/stock/doctype/material_request/material_request.py:884
+msgid "Work Order cannot be created for following reason: {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
+msgid "Work Order cannot be raised against a Item Template"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
+msgid "Work Order has been {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1297
+msgid "Work Order not created"
+msgstr ""
+
+#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1391
+msgid "Work Order {0} created"
+msgstr "작업 지시서 {0} 가 생성되었습니다"
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
+msgid "Work Order {0} has no produced qty"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
+
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
+#: erpnext/stock/doctype/material_request/material_request.py:872
+msgid "Work Orders"
+msgstr "작업 지시서"
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:1390
+msgid "Work Orders Created: {0}"
+msgstr "생성된 작업 지시서: {0}"
+
+#. Name of a report
+#: erpnext/manufacturing/report/work_orders_in_progress/work_orders_in_progress.json
+msgid "Work Orders in Progress"
+msgstr "진행 중인 작업 지시"
+
+#. Option for the 'Status' (Select) field in DocType 'Work Order Operation'
+#. Label of the work_in_progress (Column Break) field in DocType 'Email Digest'
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/setup/doctype/email_digest/email_digest.json
+msgid "Work in Progress"
+msgstr "작업 진행 중"
+
+#. Label of the wip_warehouse (Link) field in DocType 'Work Order'
+#: erpnext/manufacturing/doctype/work_order/work_order.json
+msgid "Work-in-Progress Warehouse"
+msgstr "작업 진행 중 창고"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
+msgid "Work-in-Progress Warehouse is required before Submit"
+msgstr ""
+
+#. Label of the workday (Select) field in DocType 'Service Day'
+#: erpnext/support/doctype/service_day/service_day.json
+msgid "Workday"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:137
+msgid "Workday {0} has been repeated."
+msgstr "근무일 {0} 이 반복되었습니다."
+
+#. Option for the 'Status' (Select) field in DocType 'Task'
+#. Option in a Select field in the tasks Web Form
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/projects/web_form/tasks/tasks.json
+#: erpnext/templates/pages/task_info.html:73
+msgid "Working"
+msgstr "일하고 있는"
+
+#. Label of the working_hours_section (Tab Break) field in DocType
+#. 'Workstation'
+#. Label of the working_hours (Table) field in DocType 'Workstation'
+#. Label of a number card in the Projects Workspace
+#. Label of the support_and_resolution_section_break (Section Break) field in
+#. DocType 'Service Level Agreement'
+#. Label of the support_and_resolution (Table) field in DocType 'Service Level
+#. Agreement'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/projects/report/timesheet_billing_summary/timesheet_billing_summary.py:65
+#: erpnext/projects/workspace/projects/projects.json
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.json
+msgid "Working Hours"
+msgstr "근무 시간"
+
+#. Label of the workstation (Link) field in DocType 'BOM Operation'
+#. Label of the workstation (Link) field in DocType 'BOM Website Operation'
+#. Label of the workstation (Link) field in DocType 'Job Card'
+#. Label of the workstation (Link) field in DocType 'Work Order Operation'
+#. Name of a DocType
+#. Label of a Link in the Manufacturing Workspace
+#. Label of the manufacturing_section (Section Break) field in DocType 'Item
+#. Lead Time'
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
+#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.py:119
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:62
+#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:117
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:74
+#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:160
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
+#: erpnext/templates/generators/bom.html:70
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Workstation"
+msgstr ""
+
+#. Label of the workstation (Link) field in DocType 'Downtime Entry'
+#: erpnext/manufacturing/doctype/downtime_entry/downtime_entry.json
+msgid "Workstation / Machine"
+msgstr "작업대/기계"
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+msgid "Workstation Cost"
+msgstr ""
+
+#. Label of the workstation_dashboard (HTML) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Workstation Dashboard"
+msgstr ""
+
+#. Label of the workstation_name (Data) field in DocType 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Workstation Name"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/workstation_operating_component/workstation_operating_component.json
+msgid "Workstation Operating Component"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/workstation_operating_component_account/workstation_operating_component_account.json
+msgid "Workstation Operating Component Account"
+msgstr ""
+
+#. Label of the workstation_status_tab (Tab Break) field in DocType
+#. 'Workstation'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+msgid "Workstation Status"
+msgstr ""
+
+#. Label of the workstation_type (Link) field in DocType 'BOM Operation'
+#. Label of the workstation_type (Link) field in DocType 'Job Card'
+#. Label of the workstation_type (Link) field in DocType 'Work Order Operation'
+#. Label of the workstation_type (Link) field in DocType 'Workstation'
+#. Name of a DocType
+#. Label of the workstation_type (Data) field in DocType 'Workstation Type'
+#. Label of a Link in the Manufacturing Workspace
+#. Label of a Workspace Sidebar Item
+#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
+#: erpnext/workspace_sidebar/manufacturing.json
+msgid "Workstation Type"
+msgstr ""
+
+#. Name of a DocType
+#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
+msgid "Workstation Working Hour"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.py:453
+msgid "Workstation is closed on the following dates as per Holiday List: {0}"
+msgstr ""
+
+#. Label of the workstations_tab (Tab Break) field in DocType 'Plant Floor'
+#: erpnext/manufacturing/doctype/plant_floor/plant_floor.json
+msgid "Workstations"
+msgstr ""
+
+#. Label of the write_off (Section Break) field in DocType 'Journal Entry'
+#. Label of the column_break4 (Section Break) field in DocType 'POS Invoice'
+#. Label of the write_off_section (Section Break) field in DocType 'POS
+#. Profile'
+#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
+#. Label of the write_off_section (Section Break) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/setup/doctype/company/company.py:671
+msgid "Write Off"
+msgstr "손실 처리"
+
+#. Label of the write_off_account (Link) field in DocType 'POS Invoice'
+#. Label of the write_off_account (Link) field in DocType 'POS Profile'
+#. Label of the write_off_account (Link) field in DocType 'Purchase Invoice'
+#. Label of the write_off_account (Link) field in DocType 'Sales Invoice'
+#. Label of the write_off_account (Link) field in DocType 'Company'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+#: erpnext/setup/doctype/company/company.json
+msgid "Write Off Account"
+msgstr ""
+
+#. Label of the write_off_amount (Currency) field in DocType 'Journal Entry'
+#. Label of the write_off_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the write_off_amount (Currency) field in DocType 'Purchase Invoice'
+#. Label of the write_off_amount (Currency) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Write Off Amount"
+msgstr ""
+
+#. Label of the base_write_off_amount (Currency) field in DocType 'POS Invoice'
+#. Label of the base_write_off_amount (Currency) field in DocType 'Purchase
+#. Invoice'
+#. Label of the base_write_off_amount (Currency) field in DocType 'Sales
+#. Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Write Off Amount (Company Currency)"
+msgstr ""
+
+#. Label of the write_off_based_on (Select) field in DocType 'Journal Entry'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+msgid "Write Off Based On"
+msgstr "손실 처리 기준"
+
+#. Label of the write_off_cost_center (Link) field in DocType 'POS Invoice'
+#. Label of the write_off_cost_center (Link) field in DocType 'POS Profile'
+#. Label of the write_off_cost_center (Link) field in DocType 'Purchase
+#. Invoice'
+#. Label of the write_off_cost_center (Link) field in DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Write Off Cost Center"
+msgstr ""
+
+#. Label of the write_off_difference_amount (Button) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Write Off Difference Amount"
+msgstr ""
+
+#. Option for the 'Entry Type' (Select) field in DocType 'Journal Entry'
+#. Option for the 'Journal Entry Type' (Select) field in DocType 'Journal Entry
+#. Template'
+#: erpnext/accounts/doctype/journal_entry/journal_entry.json
+#: erpnext/accounts/doctype/journal_entry_template/journal_entry_template.json
+msgid "Write Off Entry"
+msgstr "손실 항목"
+
+#. Label of the write_off_limit (Currency) field in DocType 'POS Profile'
+#: erpnext/accounts/doctype/pos_profile/pos_profile.json
+msgid "Write Off Limit"
+msgstr ""
+
+#. Label of the write_off_outstanding_amount_automatically (Check) field in
+#. DocType 'POS Invoice'
+#. Label of the write_off_outstanding_amount_automatically (Check) field in
+#. DocType 'Sales Invoice'
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
+msgid "Write Off Outstanding Amount"
+msgstr ""
+
+#. Label of the section_break_34 (Section Break) field in DocType 'Payment
+#. Entry'
+#: erpnext/accounts/doctype/payment_entry/payment_entry.json
+msgid "Writeoff"
+msgstr "손실 처리"
+
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Depreciation Schedule'
+#. Option for the 'Depreciation Method' (Select) field in DocType 'Asset
+#. Finance Book'
+#: erpnext/assets/doctype/asset/asset.json
+#: erpnext/assets/doctype/asset_depreciation_schedule/asset_depreciation_schedule.json
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "Written Down Value"
+msgstr ""
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:70
+msgid "Wrong Company"
+msgstr "잘못된 회사입니다"
+
+#: erpnext/setup/doctype/company/company.js:249
+msgid "Wrong Password"
+msgstr "잘못된 비밀번호"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:55
+msgid "Wrong Template"
+msgstr ""
+
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:66
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:69
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.py:72
+msgid "XML Files Processed"
+msgstr "XML 파일 처리됨"
+
+#. Name of a UOM
+#: erpnext/setup/setup_wizard/data/uom_data.json
+msgid "Yard"
+msgstr "마당"
+
+#. Label of the year_end_date (Date) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "Year End Date"
+msgstr "연말일"
+
+#. Label of the year (Data) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+#: erpnext/accounts/notification/notification_for_new_fiscal_year/notification_for_new_fiscal_year.html:9
+msgid "Year Name"
+msgstr "연도 이름"
+
+#. Label of the year_start_date (Date) field in DocType 'Fiscal Year'
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.json
+msgid "Year Start Date"
+msgstr "연도 시작일"
+
+#: erpnext/public/js/utils/naming_series.js:92
+msgid "Year in 2 digits"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:91
+msgid "Year in 4 digits"
+msgstr ""
+
+#. Label of the year_of_passing (Int) field in DocType 'Employee Education'
+#: erpnext/setup/doctype/employee_education/employee_education.json
+msgid "Year of Passing"
+msgstr "사망 연도"
+
+#: erpnext/accounts/doctype/fiscal_year/fiscal_year.py:91
+msgid "Year start date or end date is overlapping with {0}. To avoid please set company"
+msgstr ""
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:30
+msgid "You are importing data for the code list:"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4035
+msgid "You are not allowed to update as per the conditions set in {} Workflow."
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:817
+msgid "You are not authorized to add or update entries before {0}"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:337
+msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
+msgstr "귀하는 이 시간 이전에 창고 {1} 의 품목 {0} 에 대한 재고 거래를 생성/수정할 권한이 없습니다."
+
+#: erpnext/accounts/doctype/account/account.py:316
+msgid "You are not authorized to set Frozen value"
+msgstr ""
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:515
+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 "품목 {0}에 대해 필요한 수량보다 더 많이 선택하고 있습니다. 판매 주문 {1}에 대해 생성된 다른 선택 목록이 있는지 확인하십시오."
+
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:111
+msgid "You can add the original invoice {} manually to proceed."
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:743
+msgid "You can also add credit or debit values to pre-fill - these support both static values (like 200) or formulas (like transaction_amount * 0.25)."
+msgstr ""
+
+#: erpnext/templates/emails/confirm_appointment.html:10
+msgid "You can also copy-paste this link in your browser"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:123
+msgid "You can also set default CWIP account in Company {}"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:87
+msgid "You can also use variables in the series name by putting them between (.) dots"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
+msgid "You can change the parent account to a Balance Sheet account or select a different account."
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:186
+msgid "You can either configure default depreciation accounts in the Company or set the required accounts in the following rows: "
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:714
+msgid "You can not enter current voucher in 'Against Journal Entry' column"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:173
+msgid "You can only have Plans with the same billing cycle in a Subscription"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:423
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1023
+msgid "You can only redeem max {0} points in this order."
+msgstr "이 순서대로만 최대 {0} 포인트를 사용할 수 있습니다."
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:183
+msgid "You can only select one mode of payment as default"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:595
+msgid "You can redeem upto {0}."
+msgstr "최대 {0}까지 사용 가능합니다."
+
+#: banking/src/components/features/BankReconciliation/IncorrectlyClearedEntries.tsx:193
+msgid "You can reset the clearing dates of these entries here."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/workstation/workstation.js:59
+msgid "You can set it as a machine name or operation type. For example, stiching machine 12"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:742
+msgid "You can set up the rule to split the transaction across multiple accounts."
+msgstr "거래를 여러 계정으로 분할하는 규칙을 설정할 수 있습니다."
+
+#: erpnext/controllers/accounts_controller.py:215
+msgid "You can use {0} to reconcile against {1} later."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
+msgid "You can't make any changes to Job Card since Work Order is closed."
+msgstr "작업 지시가 마감되었으므로 작업 카드에 대한 변경은 불가능합니다."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:229
+msgid "You can't process the serial number {0} as it has already been used in the SABB {1}. {2} if you want to inward same serial number multiple times then enabled 'Allow existing Serial No to be Manufactured/Received again' in the {3}"
+msgstr ""
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:193
+msgid "You can't redeem Loyalty Points having more value than the Total Amount."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.js:773
+msgid "You cannot change the rate if BOM is mentioned against any Item."
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_period/accounting_period.py:136
+msgid "You cannot create a {0} within the closed Accounting Period {1}"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:182
+msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
+msgstr ""
+
+#: erpnext/accounts/general_ledger.py:837
+msgid "You cannot create/amend any accounting entries till this date."
+msgstr "이 날짜까지는 회계 전표를 생성/수정할 수 없습니다."
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:947
+msgid "You cannot credit and debit same account at the same time"
+msgstr ""
+
+#: erpnext/projects/doctype/project_type/project_type.py:25
+msgid "You cannot delete Project Type 'External'"
+msgstr ""
+
+#: erpnext/setup/doctype/department/department.js:19
+msgid "You cannot edit root node."
+msgstr "루트 노드는 편집할 수 없습니다."
+
+#: erpnext/accounts/doctype/accounts_settings/accounts_settings.py:197
+msgid "You cannot enable both the settings '{0}' and '{1}'."
+msgstr "'{0}' 설정과 '{1}' 설정을 동시에 활성화할 수는 없습니다."
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:167
+msgid "You cannot outward following {0} as either they are Delivered, Inactive or located in a different warehouse."
+msgstr "{0} 는 배송 완료, 비활성 상태이거나 다른 창고에 위치해 있으므로 외부로 이동할 수 없습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:625
+msgid "You cannot redeem more than {0}."
+msgstr "{0} 이상은 교환할 수 없습니다."
+
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:210
+msgid "You cannot repost item valuation before {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/subscription/subscription.py:719
+msgid "You cannot restart a Subscription that is not cancelled."
+msgstr "구독을 취소하지 않으면 다시 시작할 수 없습니다."
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:281
+msgid "You cannot submit empty order."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:280
+msgid "You cannot submit the order without payment."
+msgstr "결제가 완료되지 않으면 주문을 제출할 수 없습니다."
+
+#: erpnext/accounts/doctype/period_closing_voucher/period_closing_voucher.py:106
+msgid "You cannot {0} this document because another Period Closing Entry {1} exists after {2}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom_creator/bom_creator.py:580
+msgid "You do not have permission to edit this document"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:79
+msgid "You do not have permission to import and submit bank transactions"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:70
+#: erpnext/accounts/doctype/bank_statement_import_log/bank_statement_import_log.py:74
+msgid "You do not have permission to import bank transactions"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4011
+msgid "You do not have permissions to {} items in a {}."
+msgstr "{} 내의 {} 항목에 대한 권한이 없습니다."
+
+#: erpnext/accounts/doctype/loyalty_program/loyalty_program.py:187
+msgid "You don't have enough Loyalty Points to redeem"
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_payment.js:588
+msgid "You don't have enough points to redeem."
+msgstr "포인트가 부족하여 교환할 수 없습니다."
+
+#: erpnext/controllers/accounts_controller.py:4454
+msgid "You don't have permission to create a Company Address. Please contact your System Manager."
+msgstr "회사 주소를 생성할 권한이 없습니다. 시스템 관리자에게 문의하십시오."
+
+#: erpnext/controllers/accounts_controller.py:4434
+msgid "You don't have permission to update Company details. Please contact your System Manager."
+msgstr "귀하는 회사 정보를 업데이트할 권한이 없습니다. 시스템 관리자에게 문의하십시오."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
+msgid "You don't have permission to update Received Qty DocField for item {0}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:4428
+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:291
+msgid "You had {} errors while creating opening invoices. Check {} for more details"
+msgstr ""
+
+#: erpnext/public/js/utils.js:1037
+msgid "You have already selected items from {0} {1}"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project.py:400
+msgid "You have been invited to collaborate on the project {0}."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_settings/stock_settings.py:253
+msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted in the transaction price list."
+msgstr ""
+
+#: erpnext/selling/doctype/selling_settings/selling_settings.py:110
+msgid "You have enabled {0} and {1} in {2}. This can lead to prices from the default price list being inserted into the transaction price list."
+msgstr ""
+
+#: erpnext/stock/doctype/shipment/shipment.js:442
+msgid "You have entered a duplicate Delivery Note on Row"
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankPicker.tsx:64
+msgid "You have not added any bank accounts to your company."
+msgstr "회사에 은행 계좌를 추가하지 않으셨습니다."
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:104
+msgid "You have not performed any reconciliations in this session yet."
+msgstr ""
+
+#: erpnext/stock/doctype/item/item.py:1184
+msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
+msgstr ""
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:281
+msgid "You have unsaved changes. Do you want to save the invoice?"
+msgstr "저장하지 않은 변경 사항이 있습니다. 송장을 저장하시겠습니까?"
+
+#: erpnext/selling/page/point_of_sale/pos_controller.js:743
+msgid "You must select a customer before adding an item."
+msgstr "상품을 추가하기 전에 먼저 고객을 선택해야 합니다."
+
+#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:280
+msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3224
+msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
+msgstr ""
+
+#. Name of a report
+#: erpnext/utilities/report/youtube_interactions/youtube_interactions.json
+msgid "YouTube Interactions"
+msgstr ""
+
+#: erpnext/www/book_appointment/index.html:49
+msgid "Your Name (required)"
+msgstr "성함 (필수)"
+
+#: erpnext/www/book_appointment/verify/index.html:11
+msgid "Your email has been verified and your appointment has been scheduled"
+msgstr ""
+
+#: erpnext/patches/v11_0/add_default_dispatch_notification_template.py:22
+#: erpnext/setup/setup_wizard/operations/install_fixtures.py:342
+msgid "Your order is out for delivery!"
+msgstr "주문하신 상품이 배송 중입니다!"
+
+#: erpnext/templates/pages/help.html:52
+msgid "Your tickets"
+msgstr "티켓"
+
+#. Label of the youtube_video_id (Data) field in DocType 'Video'
+#: erpnext/utilities/doctype/video/video.json
+msgid "Youtube ID"
+msgstr ""
+
+#. Label of the youtube_tracking_section (Section Break) field in DocType
+#. 'Video'
+#: erpnext/utilities/doctype/video/video.json
+msgid "Youtube Statistics"
+msgstr ""
+
+#: erpnext/public/js/utils/contact_address_quick_entry.js:88
+msgid "ZIP Code"
+msgstr "우편 번호"
+
+#. Label of the zero_balance (Check) field in DocType 'Exchange Rate
+#. Revaluation Account'
+#: erpnext/accounts/doctype/exchange_rate_revaluation_account/exchange_rate_revaluation_account.json
+msgid "Zero Balance"
+msgstr ""
+
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
+msgid "Zero Rated"
+msgstr "제로 등급"
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
+msgid "Zero quantity"
+msgstr ""
+
+#. Label of the zero_quantity_line_items_section (Section Break) field in
+#. DocType 'Buying Settings'
+#. Label of the section_break_zero_qty (Section Break) field in DocType
+#. 'Selling Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+#: erpnext/selling/doctype/selling_settings/selling_settings.json
+msgid "Zero-Quantity Line Items"
+msgstr ""
+
+#. Label of the zip_file (Attach) field in DocType 'Import Supplier Invoice'
+#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
+msgid "Zip File"
+msgstr "압축 파일"
+
+#: erpnext/stock/reorder_item.py:373
+msgid "[Important] [ERPNext] Auto Reorder Errors"
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:304
+msgid "`Allow Negative rates for Items`"
+msgstr "'항목에 대해 음수 요금을 허용합니다'"
+
+#: erpnext/stock/stock_ledger.py:2033
+msgid "after"
+msgstr "~ 후에"
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:58
+msgid "as Code"
+msgstr "코드로"
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:74
+msgid "as Description"
+msgstr "설명으로"
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:49
+msgid "as Title"
+msgstr "제목으로"
+
+#: erpnext/manufacturing/doctype/bom/bom.js:1023
+msgid "as a percentage of finished item quantity"
+msgstr "완제품 수량 대비 백분율"
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1589
+msgid "as of {0}"
+msgstr "{0} 기준"
+
+#: erpnext/www/book_appointment/index.html:43
+msgid "at"
+msgstr "~에"
+
+#: erpnext/buying/report/purchase_analytics/purchase_analytics.js:16
+msgid "based_on"
+msgstr "기반"
+
+#: erpnext/edi/doctype/code_list/code_list_import.js:91
+msgid "by {}"
+msgstr "에 의해 {}"
+
+#: erpnext/public/js/utils/sales_common.js:336
+msgid "cannot be greater than 100"
+msgstr ""
+
+#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
+msgid "dated {0}"
+msgstr "날짜가 {0}"
+
+#. Label of the description (Small Text) field in DocType 'Production Plan Sub
+#. Assembly Item'
+#: erpnext/edi/doctype/code_list/code_list_import.js:81
+#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
+msgid "description"
+msgstr "설명"
+
+#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid
+#. Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "development"
+msgstr "개발"
+
+#: erpnext/selling/page/point_of_sale/pos_item_cart.js:451
+msgid "discount applied"
+msgstr "할인 적용됨"
+
+#: erpnext/selling/report/sales_person_commission_summary/sales_person_commission_summary.py:45
+#: erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py:58
+msgid "doc_type"
+msgstr "문서 유형"
+
+#. Description of the 'Coupon Name' (Data) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "e.g. \"Summer Holiday 2019 Offer 20\""
+msgstr ""
+
+#: banking/src/components/features/BankReconciliation/BankEntryModal.tsx:684
+#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:1256
+#: banking/src/components/features/BankReconciliation/Rules/RuleForm.tsx:685
+msgid "e.g. Bank Charges"
+msgstr "예: 은행 수수료"
+
+#. Description of the 'Shipping Rule Label' (Data) field in DocType 'Shipping
+#. Rule'
+#: erpnext/accounts/doctype/shipping_rule/shipping_rule.json
+msgid "example: Next Day Shipping"
+msgstr ""
+
+#. Option for the 'Service Provider' (Select) field in DocType 'Currency
+#. Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "exchangerate.host"
+msgstr ""
+
+#: erpnext/crm/report/sales_pipeline_analytics/sales_pipeline_analytics.py:183
+msgid "fieldname"
+msgstr "필드 이름"
+
+#: erpnext/public/js/utils/naming_series.js:97
+msgid "fieldname on the document e.g."
+msgstr ""
+
+#. Option for the 'Service Provider' (Select) field in DocType 'Currency
+#. Exchange Settings'
+#: erpnext/accounts/doctype/currency_exchange_settings/currency_exchange_settings.json
+msgid "frankfurter.dev"
+msgstr "frankfurter.dev"
+
+#: erpnext/templates/form_grid/item_grid.html:66
+#: erpnext/templates/form_grid/item_grid.html:80
+msgid "hidden"
+msgstr "숨겨진"
+
+#: erpnext/projects/doctype/project/project_dashboard.html:13
+msgid "hours"
+msgstr "시간"
+
+#. Label of the lft (Int) field in DocType 'Cost Center'
+#. Label of the lft (Int) field in DocType 'Location'
+#. Label of the lft (Int) field in DocType 'Task'
+#. Label of the lft (Int) field in DocType 'Customer Group'
+#. Label of the lft (Int) field in DocType 'Department'
+#. Label of the lft (Int) field in DocType 'Employee'
+#. Label of the lft (Int) field in DocType 'Item Group'
+#. Label of the lft (Int) field in DocType 'Sales Person'
+#. Label of the lft (Int) field in DocType 'Supplier Group'
+#. Label of the lft (Int) field in DocType 'Territory'
+#. Label of the lft (Int) field in DocType 'Warehouse'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/setup/doctype/territory/territory.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "lft"
+msgstr "왼쪽"
+
+#. Label of the material_request_item (Data) field in DocType 'Production Plan
+#. Item'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+msgid "material_request_item"
+msgstr "재료 요청 품목"
+
+#: erpnext/controllers/selling_controller.py:217
+msgid "must be between 0 and 100"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.js:676
+msgid "name"
+msgstr "이름"
+
+#: erpnext/templates/pages/task_info.html:90
+msgid "on"
+msgstr "~에"
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.js:50
+msgid "or its descendants"
+msgstr "또는 그 후손들"
+
+#: erpnext/templates/includes/macros.html:207
+#: erpnext/templates/includes/macros.html:211
+msgid "out of 5"
+msgstr "5점 만점에"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1245
+msgid "paid to"
+msgstr "지불됨"
+
+#: erpnext/public/js/utils.js:463
+msgid "payments app is not installed. Please install it from {0} or {1}"
+msgstr ""
+
+#: erpnext/utilities/__init__.py:47
+msgid "payments app is not installed. Please install it from {} or {}"
+msgstr ""
+
+#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation'
+#. Description of the 'Net Hour Rate' (Currency) field in DocType 'Workstation
+#. Type'
+#. Description of the 'Billing Rate' (Currency) field in DocType 'Activity
+#. Cost'
+#. Description of the 'Costing Rate' (Currency) field in DocType 'Activity
+#. Cost'
+#: erpnext/manufacturing/doctype/workstation/workstation.json
+#: erpnext/manufacturing/doctype/workstation_type/workstation_type.json
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+msgid "per hour"
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2034
+msgid "performing either one below:"
+msgstr "다음 중 하나를 수행하십시오:"
+
+#. Description of the 'Product Bundle Item' (Data) field in DocType 'Pick List
+#. Item'
+#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
+msgid "product bundle item row's name in sales order. Also indicates that picked item is to be used for a product bundle"
+msgstr ""
+
+#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid
+#. Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "production"
+msgstr "생산"
+
+#. Label of the quotation_item (Data) field in DocType 'Sales Order Item'
+#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
+msgid "quotation_item"
+msgstr "견적 항목"
+
+#: erpnext/templates/includes/macros.html:202
+msgid "ratings"
+msgstr "평가"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1245
+msgid "received from"
+msgstr "받은 것"
+
+#: banking/src/components/features/BankReconciliation/BankBalance.tsx:143
+msgid "reconciled"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
+msgid "returned"
+msgstr ""
+
+#. Label of the rgt (Int) field in DocType 'Cost Center'
+#. Label of the rgt (Int) field in DocType 'Location'
+#. Label of the rgt (Int) field in DocType 'Task'
+#. Label of the rgt (Int) field in DocType 'Customer Group'
+#. Label of the rgt (Int) field in DocType 'Department'
+#. Label of the rgt (Int) field in DocType 'Employee'
+#. Label of the rgt (Int) field in DocType 'Item Group'
+#. Label of the rgt (Int) field in DocType 'Sales Person'
+#. Label of the rgt (Int) field in DocType 'Supplier Group'
+#. Label of the rgt (Int) field in DocType 'Territory'
+#. Label of the rgt (Int) field in DocType 'Warehouse'
+#: erpnext/accounts/doctype/cost_center/cost_center.json
+#: erpnext/assets/doctype/location/location.json
+#: erpnext/projects/doctype/task/task.json
+#: erpnext/setup/doctype/customer_group/customer_group.json
+#: erpnext/setup/doctype/department/department.json
+#: erpnext/setup/doctype/employee/employee.json
+#: erpnext/setup/doctype/item_group/item_group.json
+#: erpnext/setup/doctype/sales_person/sales_person.json
+#: erpnext/setup/doctype/supplier_group/supplier_group.json
+#: erpnext/setup/doctype/territory/territory.json
+#: erpnext/stock/doctype/warehouse/warehouse.json
+msgid "rgt"
+msgstr "rgt"
+
+#. Option for the 'Plaid Environment' (Select) field in DocType 'Plaid
+#. Settings'
+#: erpnext/erpnext_integrations/doctype/plaid_settings/plaid_settings.json
+msgid "sandbox"
+msgstr "모래 상자"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
+msgid "sold"
+msgstr "판매된"
+
+#: erpnext/accounts/doctype/subscription/subscription.py:695
+msgid "subscription is already cancelled."
+msgstr "구독이 이미 취소되었습니다."
+
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
+msgid "target_ref_field"
+msgstr "타겟_참조_필드"
+
+#. Label of the temporary_name (Data) field in DocType 'Production Plan Item'
+#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
+msgid "temporary name"
+msgstr "임시 이름"
+
+#. Label of the title (Data) field in DocType 'Activity Cost'
+#: erpnext/projects/doctype/activity_cost/activity_cost.json
+msgid "title"
+msgstr "제목"
+
+#: erpnext/www/book_appointment/index.js:134
+msgid "to"
+msgstr "에게"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
+msgid "to unallocate the amount of this Return Invoice before cancelling it."
+msgstr "반품 송장을 취소하기 전에 해당 금액을 할당 해제해야 합니다."
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:169
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:173
+msgid "transaction"
+msgstr "거래"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:404
+msgid "transaction selected"
+msgstr "선택된 거래"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:169
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:173
+msgid "transactions"
+msgstr "업무"
+
+#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:404
+msgid "transactions selected"
+msgstr "선택된 거래"
+
+#. Description of the 'Coupon Code' (Data) field in DocType 'Coupon Code'
+#: erpnext/accounts/doctype/coupon_code/coupon_code.json
+msgid "unique e.g. SAVE20 To be used to get discount"
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
+msgid "updated delivered quantity for item {0} to {1}"
+msgstr ""
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.js:9
+msgid "variance"
+msgstr "변화"
+
+#. Description of the 'Increase In Asset Life (Months)' (Int) field in DocType
+#. 'Asset Finance Book'
+#: erpnext/assets/doctype/asset_finance_book/asset_finance_book.json
+msgid "via Asset Repair"
+msgstr "자산 수리를 통해"
+
+#: erpnext/manufacturing/doctype/bom_update_log/bom_updation_utils.py:41
+msgid "via BOM Update Tool"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_category/asset_category.py:121
+msgid "you must select Capital Work in Progress Account in accounts table"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:1287
+msgid "{0} '{1}' is disabled"
+msgstr ""
+
+#: erpnext/accounts/utils.py:198
+msgid "{0} '{1}' not in Fiscal Year {2}"
+msgstr "{0} '{1}' 회계연도 {2}에 포함되지 않음"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
+msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
+msgstr ""
+
+#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:387
+msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:2384
+msgid "{0} Account not found against Customer {1}."
+msgstr "{0} 고객 {1}에 해당하는 계정을 찾을 수 없습니다."
+
+#: erpnext/utilities/transaction_base.py:257
+msgid "{0} Account: {1} ({2}) must be in either customer billing currency: {3} or Company default currency: {4}"
+msgstr ""
+
+#: erpnext/accounts/doctype/budget/budget.py:545
+msgid "{0} Budget for Account {1} against {2} {3} is {4}. It is already exceeded by {5}."
+msgstr "{0} 계정 {1} 에 대한 예산은 {2} {3} 에 대해 {4}입니다. 이미 {5}에 의해 초과되었습니다."
+
+#: erpnext/accounts/doctype/budget/budget.py:548
+msgid "{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}."
+msgstr "{0} 계정 {1} 에 대한 예산은 {2} {3} 에 대해 {4}입니다. 이는 {5}만큼 초과될 것입니다."
+
+#: erpnext/accounts/doctype/pricing_rule/utils.py:771
+msgid "{0} Coupon used are {1}. Allowed quantity is exhausted"
+msgstr ""
+
+#: erpnext/setup/doctype/email_digest/email_digest.py:124
+msgid "{0} Digest"
+msgstr ""
+
+#: erpnext/public/js/utils/naming_series.js:263
+#: erpnext/public/js/utils/naming_series.js:403
+msgid "{0} Naming Series"
+msgstr ""
+
+#: erpnext/accounts/utils.py:1581
+msgid "{0} Number {1} is already used in {2} {3}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
+msgid "{0} Operating Cost for operation {1}"
+msgstr "{0} 운영 비용 {1}"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
+msgid "{0} Operations: {1}"
+msgstr "{0} 작업: {1}"
+
+#: erpnext/stock/doctype/material_request/material_request.py:230
+msgid "{0} Request for {1}"
+msgstr "{0} {1}에 대한 요청"
+
+#: erpnext/stock/doctype/item/item.py:391
+msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1048
+msgid "{0} Transaction(s) Reconciled"
+msgstr ""
+
+#: erpnext/setup/doctype/employee/employee.js:164
+msgid "{0} Year Work Anniversary"
+msgstr "{0} 근속 기념일"
+
+#: erpnext/setup/doctype/employee/employee.js:165
+msgid "{0} Years Work Anniversary"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:60
+msgid "{0} account is not of company {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:63
+msgid "{0} account is not of type {1}"
+msgstr ""
+
+#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:520
+msgid "{0} account not found while submitting purchase receipt"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1067
+msgid "{0} against Bill {1} dated {2}"
+msgstr "{0} 법안 {1} 에 대한 반대 의견, 날짜 {2}"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1076
+msgid "{0} against Purchase Order {1}"
+msgstr "구매 주문서 {1}에 대한 {0}"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1043
+msgid "{0} against Sales Invoice {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1050
+msgid "{0} against Sales Order {1}"
+msgstr ""
+
+#: erpnext/quality_management/doctype/quality_procedure/quality_procedure.py:69
+msgid "{0} already has a Parent Procedure {1}."
+msgstr ""
+
+#: erpnext/accounts/report/general_ledger/general_ledger.py:63
+#: erpnext/accounts/report/pos_register/pos_register.py:111
+msgid "{0} and {1} are mandatory"
+msgstr ""
+
+#: erpnext/assets/doctype/asset_movement/asset_movement.py:42
+msgid "{0} asset cannot be transferred"
+msgstr "{0} 자산은 이전할 수 없습니다"
+
+#: erpnext/controllers/trends.py:66
+msgid "{0} can be either {1} or {2}."
+msgstr "{0} 는 {1} 또는 {2}일 수 있습니다."
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:279
+msgid "{0} can not be negative"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_settings/pos_settings.py:53
+msgid "{0} cannot be changed with opened Opening Entries."
+msgstr "{0} 는 열린 시작 항목으로 변경할 수 없습니다."
+
+#: erpnext/accounts/doctype/cost_center_allocation/cost_center_allocation.py:136
+msgid "{0} cannot be used as a Main Cost Center because it has been used as child in Cost Center Allocation {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_request/payment_request.py:167
+msgid "{0} cannot be zero"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:922
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1038
+#: erpnext/stock/doctype/pick_list/pick_list.py:1334
+#: erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py:323
+msgid "{0} created"
+msgstr "{0} 생성됨"
+
+#: erpnext/utilities/bulk_transaction.py:33
+msgid "{0} creation for the following records will be skipped."
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:295
+msgid "{0} currency must be same as company's default currency. Please select another account."
+msgstr "{0} 통화는 회사 기본 통화와 동일해야 합니다. 다른 계정을 선택하십시오."
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
+msgstr ""
+
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:141
+msgid "{0} currently has a {1} Supplier Scorecard standing, and RFQs to this supplier should be issued with caution."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:157
+msgid "{0} does not belong to Company {1}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:354
+msgid "{0} does not belong to the Company {1}."
+msgstr "{0} 는 회사 {1}에 속하지 않습니다."
+
+#: erpnext/accounts/doctype/item_tax_template/item_tax_template.py:74
+msgid "{0} entered twice in Item Tax"
+msgstr ""
+
+#: erpnext/setup/doctype/item_group/item_group.py:47
+#: erpnext/stock/doctype/item/item.py:522
+msgid "{0} entered twice {1} in Item Taxes"
+msgstr "{0} 가 두 번 입력되었습니다. {1} 항목 세금"
+
+#: erpnext/accounts/utils.py:135
+#: erpnext/projects/doctype/activity_cost/activity_cost.py:40
+msgid "{0} for {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:453
+msgid "{0} has Payment Term based allocation enabled. Select a Payment Term for Row #{1} in Payment References section"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:807
+msgid "{0} has been modified after you pulled it. Please pull it again."
+msgstr "{0} 는 당기신 후 수정되었습니다. 다시 당겨주세요."
+
+#: erpnext/setup/default_success_action.py:15
+msgid "{0} has been submitted successfully"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project_dashboard.html:15
+msgid "{0} hours"
+msgstr "{0} 시간"
+
+#: erpnext/controllers/accounts_controller.py:2742
+msgid "{0} in row {1}"
+msgstr "{0} 행 {1}에 위치"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:454
+msgid "{0} is a child table and will be deleted automatically with its parent"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_profile/pos_profile.py:95
+msgid "{0} is a mandatory Accounting Dimension. Please set a value for {0} in Accounting Dimensions section."
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:102
+#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:155
+#: erpnext/accounts/doctype/pos_invoice_merge_log/pos_invoice_merge_log.py:60
+msgid "{0} is added multiple times on rows: {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:630
+msgid "{0} is already running for {1}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:176
+msgid "{0} is blocked so this transaction cannot proceed"
+msgstr ""
+
+#: erpnext/assets/doctype/asset/asset.py:509
+msgid "{0} is in Draft. Submit it before creating the Asset."
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
+msgid "{0} is mandatory for Item {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
+#: erpnext/accounts/general_ledger.py:861
+msgid "{0} is mandatory for account {1}"
+msgstr ""
+
+#: erpnext/public/js/controllers/taxes_and_totals.js:131
+msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
+msgstr ""
+
+#: erpnext/controllers/accounts_controller.py:3181
+msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
+msgstr ""
+
+#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1813
+msgid "{0} is not a CSV file."
+msgstr "{0} 는 CSV 파일이 아닙니다."
+
+#: erpnext/selling/doctype/customer/customer.py:226
+msgid "{0} is not a company bank account"
+msgstr ""
+
+#: erpnext/accounts/doctype/cost_center/cost_center.py:53
+msgid "{0} is not a group node. Please select a group node as parent cost center"
+msgstr ""
+
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
+msgid "{0} is not a stock Item"
+msgstr ""
+
+#: erpnext/accounts/report/budget_variance_report/budget_variance_report.py:419
+msgid "{0} is not a valid Accounting Dimension."
+msgstr "{0} 는 유효한 회계 차원이 아닙니다."
+
+#: erpnext/controllers/item_variant.py:147
+msgid "{0} is not a valid Value for Attribute {1} of Item {2}."
+msgstr "{0} 는 항목 {2}의 속성 {1} 에 대한 유효한 값이 아닙니다."
+
+#: erpnext/stock/utils.py:135
+msgid "{0} is not a valid {1} fieldname."
+msgstr "{0} 는 유효한 {1} 필드 이름이 아닙니다."
+
+#: erpnext/accounts/doctype/pricing_rule/pricing_rule.py:168
+msgid "{0} is not added in the table"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:146
+msgid "{0} is not enabled in {1}"
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:638
+msgid "{0} is not running. Cannot trigger events for this Document"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.py:660
+msgid "{0} is not the default supplier for any items."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2953
+msgid "{0} is on hold till {1}"
+msgstr ""
+
+#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:68
+msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
+msgstr "{0} 이 열려 있습니다. POS를 닫거나 기존 POS 개시 항목을 취소하여 새 POS 개시 항목을 생성하십시오."
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
+msgid "{0} items disassembled"
+msgstr "{0} 항목 분해됨"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
+msgid "{0} items in progress"
+msgstr "{0} 항목 진행 중"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
+msgid "{0} items lost during process."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
+msgid "{0} items produced"
+msgstr "{0} 개 항목 생산됨"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
+msgid "{0} items returned"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
+msgid "{0} items to return"
+msgstr "반환할 항목 {0} 개"
+
+#: erpnext/controllers/sales_and_purchase_return.py:218
+msgid "{0} must be negative in return document"
+msgstr ""
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
+msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/bom/bom.py:613
+msgid "{0} not found for item {1}"
+msgstr ""
+
+#: erpnext/support/doctype/service_level_agreement/service_level_agreement.py:706
+msgid "{0} parameter is invalid"
+msgstr ""
+
+#: erpnext/accounts/report/payment_period_based_on_invoice_date/payment_period_based_on_invoice_date.py:65
+msgid "{0} payment entries can not be filtered by {1}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1741
+msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
+msgstr ""
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:161
+msgctxt "Do MMMM YYYY"
+msgid "{0} to {1}"
+msgstr "{0} 에서 {1}까지"
+
+#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:225
+msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
+msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
+msgstr "{0} 단위가 창고 {2}의 품목 {1} 에 대해 예약되어 있습니다. 재고 조정을 위해 {3} 에서 예약을 해제해 주십시오."
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:1089
+msgid "{0} units of Item {1} is not available in any of the warehouses."
+msgstr "품목 {1} 의 {0} 수량이 어떤 창고에도 없습니다."
+
+#: erpnext/stock/doctype/pick_list/pick_list.py:1082
+msgid "{0} units of Item {1} is not available in any of the warehouses. Other Pick Lists exist for this item."
+msgstr ""
+
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:144
+msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
+msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
+msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
+msgstr ""
+
+#: erpnext/stock/stock_ledger.py:1680
+msgid "{0} units of {1} needed in {2} to complete this transaction."
+msgstr ""
+
+#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:36
+msgid "{0} until {1}"
+msgstr ""
+
+#: erpnext/stock/utils.py:412
+msgid "{0} valid serial nos for Item {1}"
+msgstr "품목 {1}에 대한 유효한 일련 번호 {0}"
+
+#: erpnext/stock/doctype/item/item.js:843
+msgid "{0} variants created."
+msgstr "{0} 변형이 생성되었습니다."
+
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:266
+msgid "{0} view is currently unsupported in Custom Financial Report."
+msgstr "{0} 보기는 현재 사용자 지정 재무 보고서에서 지원되지 않습니다."
+
+#: erpnext/accounts/doctype/payment_term/payment_term.js:19
+msgid "{0} will be given as discount."
+msgstr "{0} 는 할인으로 제공됩니다."
+
+#: erpnext/public/js/utils/barcode_scanner.js:523
+msgid "{0} will be set as the {1} in subsequently scanned items"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
+msgid "{0} {1}"
+msgstr "{0} {1}"
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:266
+msgid "{0} {1} Manually"
+msgstr "{0} {1} 수동으로"
+
+#: erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.py:1052
+msgid "{0} {1} Partially Reconciled"
+msgstr "{0} {1} 부분적으로 조정됨"
+
+#: 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} 는 업데이트할 수 없습니다. 변경이 필요한 경우 기존 항목을 삭제하고 새 항목을 생성하는 것이 좋습니다."
+
+#: erpnext/accounts/doctype/payment_order/payment_order.py:121
+msgid "{0} {1} created"
+msgstr "{0} {1} 생성됨"
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:613
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:666
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2691
+msgid "{0} {1} does not exist"
+msgstr ""
+
+#: erpnext/accounts/party.py:558
+msgid "{0} {1} has accounting entries in currency {2} for company {3}. Please select a receivable or payable account with currency {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:463
+msgid "{0} {1} has already been fully paid."
+msgstr "{0} {1} 는 이미 전액 지불되었습니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:473
+msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
+msgstr ""
+
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
+#: erpnext/stock/doctype/material_request/material_request.py:257
+msgid "{0} {1} has been modified. Please refresh."
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.py:284
+msgid "{0} {1} has not been submitted so the action cannot be completed"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:101
+msgid "{0} {1} is allocated twice in this Bank Transaction"
+msgstr ""
+
+#: erpnext/edi/doctype/common_code/common_code.py:54
+msgid "{0} {1} is already linked to Common Code {2}."
+msgstr "{0} {1} 는 이미 공통 코드 {2}에 연결되어 있습니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:696
+msgid "{0} {1} is associated with {2}, but Party Account is {3}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:495
+#: erpnext/controllers/subcontracting_controller.py:1151
+msgid "{0} {1} is cancelled or closed"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.py:436
+msgid "{0} {1} is cancelled or stopped"
+msgstr ""
+
+#: erpnext/stock/doctype/material_request/material_request.py:274
+msgid "{0} {1} is cancelled so the action cannot be completed"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:862
+msgid "{0} {1} is closed"
+msgstr ""
+
+#: erpnext/accounts/party.py:805
+msgid "{0} {1} is disabled"
+msgstr ""
+
+#: erpnext/accounts/party.py:811
+msgid "{0} {1} is frozen"
+msgstr "{0} {1} 가 얼어붙었습니다"
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:859
+msgid "{0} {1} is fully billed"
+msgstr ""
+
+#: erpnext/accounts/party.py:815
+msgid "{0} {1} is not active"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:673
+msgid "{0} {1} is not associated with {2} {3}"
+msgstr ""
+
+#: erpnext/accounts/utils.py:131
+msgid "{0} {1} is not in any active Fiscal Year"
+msgstr ""
+
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:856
+#: erpnext/accounts/doctype/journal_entry/journal_entry.py:895
+msgid "{0} {1} is not submitted"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:706
+msgid "{0} {1} is on hold"
+msgstr ""
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.py:712
+msgid "{0} {1} must be submitted"
+msgstr ""
+
+#: erpnext/accounts/doctype/repost_accounting_ledger/repost_accounting_ledger.py:274
+msgid "{0} {1} not allowed to be reposted. You can enable it by adding it '{2}' table in {3}."
+msgstr ""
+
+#: erpnext/buying/utils.py:116
+msgid "{0} {1} status is {2}"
+msgstr ""
+
+#: erpnext/public/js/utils/serial_no_batch_selector.js:242
+msgid "{0} {1} via CSV File"
+msgstr "{0} {1} CSV 파일을 통해"
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:225
+msgid "{0} {1}: 'Profit and Loss' type account {2} not allowed in Opening Entry"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:251
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:86
+msgid "{0} {1}: Account {2} does not belong to Company {3}"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:239
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:74
+msgid "{0} {1}: Account {2} is a Group Account and group accounts cannot be used in transactions"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:246
+#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:81
+msgid "{0} {1}: Account {2} is inactive"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:292
+msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:954
+msgid "{0} {1}: Cost Center is mandatory for Item {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:178
+msgid "{0} {1}: Cost Center is required for 'Profit and Loss' account {2}."
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:264
+msgid "{0} {1}: Cost Center {2} does not belong to Company {3}"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:271
+msgid "{0} {1}: Cost Center {2} is a group cost center and group cost centers cannot be used in transactions"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:144
+msgid "{0} {1}: Customer is required against Receivable account {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:166
+msgid "{0} {1}: Either debit or credit amount is required for {2}"
+msgstr ""
+
+#: erpnext/accounts/doctype/gl_entry/gl_entry.py:150
+msgid "{0} {1}: Supplier is required against Payable account {2}"
+msgstr ""
+
+#: erpnext/projects/doctype/project/project_list.js:6
+msgid "{0}%"
+msgstr "{0}%"
+
+#: erpnext/controllers/website_list_for_contact.py:203
+msgid "{0}% Billed"
+msgstr "{0}청구 비율"
+
+#: erpnext/controllers/website_list_for_contact.py:211
+msgid "{0}% Delivered"
+msgstr "{0}% 전달됨"
+
+#: erpnext/accounts/doctype/payment_term/payment_term.js:15
+#, python-format
+msgid "{0}% of total invoice value will be given as discount."
+msgstr "총 청구 금액의 {0}%가 할인으로 적용됩니다."
+
+#: erpnext/projects/doctype/task/task.py:130
+msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
+msgstr "{0}의 {1} 는 {2}의 예상 종료일 이후일 수 없습니다."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+msgid "{0}, complete the operation {1} before the operation {2}."
+msgstr ""
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:525
+msgid "{0}: Child table (auto-deleted with parent)"
+msgstr "{0}: 자식 테이블 (부모 테이블과 함께 자동 삭제됨)"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:520
+msgid "{0}: Not found"
+msgstr "{0}: 찾을 수 없음"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:516
+msgid "{0}: Protected DocType"
+msgstr "{0}: 보호된 문서 유형"
+
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:530
+msgid "{0}: Virtual DocType (no database table)"
+msgstr "{0}: 가상 문서 유형(데이터베이스 테이블 없음)"
+
+#: erpnext/controllers/accounts_controller.py:544
+msgid "{0}: {1} does not belong to the Company: {2}"
+msgstr ""
+
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
+msgid "{0}: {1} does not exist"
+msgstr "{0}: {1} 는 존재하지 않습니다"
+
+#: erpnext/accounts/party.py:79
+msgid "{0}: {1} does not exists"
+msgstr "{0}: {1} 는 존재하지 않습니다"
+
+#: erpnext/setup/doctype/company/company.py:282
+msgid "{0}: {1} is a group account."
+msgstr "{0}: {1} 는 그룹 계정입니다."
+
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
+msgid "{0}: {1} must be less than {2}"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:981
+msgid "{count} Assets created for {item_code}"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:881
+msgid "{doctype} {name} is cancelled or closed."
+msgstr "{doctype} {name} 가 취소되었거나 닫혔습니다."
+
+#: erpnext/controllers/stock_controller.py:2148
+msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:692
+msgid "{ref_doctype} {ref_name} is {status}."
+msgstr "{ref_doctype} {ref_name} 는 {status}입니다."
+
+#: erpnext/assets/report/fixed_asset_register/fixed_asset_register.py:431
+msgid "{}"
+msgstr "{}"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
+msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
+msgstr ""
+
+#: erpnext/controllers/buying_controller.py:285
+msgid "{} has submitted assets linked to it. You need to cancel the assets to create purchase return."
+msgstr "{}님이 자산을 연결하여 제출했습니다. 구매 반품을 생성하려면 해당 자산을 취소해야 합니다."
+
+#: banking/src/components/features/ActionLog/ActionLog.tsx:280
+msgid "{} invoices"
+msgstr "{} 송장"
+
+#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:66
+msgid "{} is a child company."
+msgstr "{}는 자회사입니다."
+
+#: erpnext/accounts/doctype/party_link/party_link.py:53
+#: erpnext/accounts/doctype/party_link/party_link.py:63
+msgid "{} {} is already linked with another {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/party_link/party_link.py:40
+msgid "{} {} is already linked with {} {}"
+msgstr ""
+
+#: erpnext/accounts/doctype/bank_transaction/bank_transaction.py:448
+msgid "{} {} is not affecting bank account {}"
+msgstr "{} {}는 은행 계좌에 영향을 미치지 않습니다 {}"
+
diff --git a/erpnext/locale/main.pot b/erpnext/locale/main.pot
index 58b7dd7d723..584ed33dfac 100644
--- a/erpnext/locale/main.pot
+++ b/erpnext/locale/main.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: ERPNext VERSION\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-24 10:11+0000\n"
-"PO-Revision-Date: 2026-05-24 10:11+0000\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 10:18+0000\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: hello@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -94,15 +94,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -271,7 +271,7 @@ msgstr ""
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -301,7 +301,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -313,9 +313,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -929,11 +929,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -1254,7 +1254,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:784
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1372,7 +1372,7 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1391,7 +1391,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:374
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1404,7 +1404,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:360
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1443,7 +1443,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:207
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1459,11 +1459,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:329
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:323
+#: 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 ""
@@ -1530,24 +1530,24 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:428
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:280
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:439
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:468
+#: erpnext/accounts/doctype/account/account.py:467
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:274
-#: erpnext/accounts/doctype/account/account.py:430
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1555,11 +1555,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:292
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:289
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1571,7 +1571,7 @@ msgstr ""
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:590
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1587,11 +1587,11 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:547
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:412
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
@@ -1924,8 +1924,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1148
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1168
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1949,8 +1949,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1100
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1114
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -2014,7 +2014,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2027,7 +2026,6 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
@@ -2338,7 +2336,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:412
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2584,7 +2582,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2593,7 +2591,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:675
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3124,11 +3122,6 @@ msgid ""
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3475,7 +3468,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3621,7 +3614,7 @@ msgstr ""
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:216
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3879,6 +3872,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3891,7 +3889,7 @@ msgstr ""
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:138
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
@@ -3899,11 +3897,11 @@ msgstr ""
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3940,7 +3938,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3950,7 +3948,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3980,7 +3978,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4037,7 +4035,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:545
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4224,16 +4222,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4359,6 +4347,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4435,10 +4433,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4450,6 +4446,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4921,7 +4922,7 @@ msgstr ""
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5461,7 +5462,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5611,7 +5612,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5889,7 +5890,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5921,7 +5922,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5929,20 +5930,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5962,7 +5963,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -6003,7 +6004,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6214,11 +6215,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6226,19 +6227,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6450,7 +6451,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6562,7 +6563,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:165
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6659,8 +6660,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:166
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:200
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6684,7 +6685,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6708,7 +6711,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -7146,7 +7149,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7211,7 +7214,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7657,11 +7660,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7818,7 +7821,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7982,7 +7985,7 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
@@ -8470,6 +8473,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8566,7 +8579,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8987,14 +9000,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9300,7 +9313,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2581
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9333,7 +9346,7 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
@@ -9389,9 +9402,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9419,7 +9432,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9463,7 +9476,7 @@ msgstr ""
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
@@ -9475,7 +9488,7 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr ""
@@ -9495,11 +9508,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:441
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9507,7 +9520,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2045
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9533,7 +9546,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9578,8 +9591,8 @@ msgstr ""
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:786
-#: erpnext/selling/doctype/sales_order/sales_order.py:809
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9623,7 +9636,7 @@ msgstr ""
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
@@ -9641,8 +9654,8 @@ msgstr ""
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
@@ -9658,7 +9671,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9957,7 +9970,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10062,7 +10075,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10080,7 +10093,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:378
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10402,6 +10415,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10544,11 +10562,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:547
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10805,6 +10823,12 @@ msgstr ""
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -11288,7 +11312,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11387,8 +11411,10 @@ msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11484,7 +11510,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2661
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11558,7 +11584,7 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:510
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
@@ -12040,7 +12066,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1767
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12323,6 +12349,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12383,7 +12414,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -13132,7 +13163,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13382,12 +13413,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:971
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:785
-#: erpnext/stock/doctype/item/item.js:829
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13418,8 +13449,8 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:812
-#: erpnext/stock/doctype/item/item.js:964
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
@@ -13695,12 +13726,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13969,7 +13994,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:347
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -14130,6 +14155,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14225,7 +14255,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14332,7 +14361,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14519,6 +14547,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14558,6 +14587,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14816,8 +14846,8 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:446
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -15275,13 +15305,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15409,8 +15439,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15458,11 +15487,11 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
@@ -15470,7 +15499,7 @@ msgstr ""
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2267
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15523,9 +15552,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15686,23 +15713,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15825,15 +15848,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15976,6 +15999,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16196,11 +16225,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:596
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:589
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16341,7 +16370,7 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
@@ -16810,7 +16839,7 @@ msgstr ""
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -17456,7 +17485,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -18153,7 +18182,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:172
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18626,7 +18655,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -19047,7 +19076,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1133
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19104,7 +19133,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1159
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19222,7 +19251,7 @@ msgid ""
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19268,7 +19297,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19573,7 +19602,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:429
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -20085,6 +20114,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20506,7 +20540,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:862
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20647,6 +20681,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20665,7 +20700,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20758,7 +20793,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:833
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20880,11 +20915,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20922,7 +20957,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20936,7 +20971,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2651
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20953,7 +20988,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:894
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20962,7 +20997,7 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
@@ -20986,7 +21021,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:773
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21590,7 +21625,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21850,7 +21885,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21908,7 +21943,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21947,7 +21982,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22130,7 +22165,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1379
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22313,7 +22348,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -23404,6 +23439,11 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -23506,7 +23546,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1145
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23691,7 +23731,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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
@@ -23854,7 +23894,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23978,7 +24018,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:1178
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24281,7 +24321,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24313,7 +24353,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24321,7 +24361,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:780
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24857,6 +24897,11 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24873,8 +24918,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
#: erpnext/controllers/accounts_controller.py:3219
@@ -24928,7 +24973,7 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
@@ -24942,7 +24987,7 @@ msgstr ""
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:431
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24980,7 +25025,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24994,7 +25039,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -25002,11 +25047,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:388
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25066,7 +25111,7 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:937
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
@@ -25108,7 +25153,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25134,8 +25179,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25143,7 +25188,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2434
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25379,7 +25424,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:2485
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -26054,7 +26099,7 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
@@ -26182,7 +26227,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26492,7 +26537,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:126
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26691,13 +26736,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:136
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26954,10 +26999,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:133
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27022,7 +27067,7 @@ 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:182
msgid "Item Price created at rate {0}"
msgstr ""
@@ -27213,11 +27258,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:994
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27318,11 +27363,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27367,11 +27412,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:563
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27388,7 +27433,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27412,15 +27457,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:793
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:582
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27432,15 +27477,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:568
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27448,7 +27493,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27456,11 +27501,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1302
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27484,7 +27529,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27492,7 +27537,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1384
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27817,7 +27862,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2706
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28165,7 +28210,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:661
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28247,7 +28292,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:173
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28514,7 +28559,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28573,7 +28618,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28634,7 +28679,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28655,12 +28700,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28668,7 +28713,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28974,6 +29019,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29285,7 +29335,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:683
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29344,11 +29394,11 @@ msgstr ""
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:791
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:793
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29392,7 +29442,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1962
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29491,8 +29541,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:696
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:713
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29571,7 +29621,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29807,6 +29857,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29913,7 +29969,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:697
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -30091,11 +30147,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1171
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1991
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30339,11 +30395,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1049
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1038
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30408,11 +30464,6 @@ msgstr ""
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30462,7 +30513,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:604
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30693,7 +30744,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:945
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30793,15 +30844,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1385
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2502
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3110
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30831,7 +30882,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:872
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30839,7 +30890,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:787
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -31129,7 +31180,7 @@ msgstr ""
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31155,7 +31206,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:879
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31295,7 +31346,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31304,7 +31355,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31854,7 +31905,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2607
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31918,7 +31969,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31947,15 +31998,15 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2591
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
@@ -31989,7 +32040,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:799
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32183,7 +32234,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32207,7 +32258,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32278,7 +32329,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32311,7 +32362,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2655
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32520,7 +32571,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32703,6 +32754,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32997,7 +33053,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:712
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33239,7 +33295,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33272,7 +33328,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2071
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33308,16 +33364,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33335,7 +33391,7 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
@@ -33451,7 +33507,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1505
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33811,7 +33867,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1018
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33927,7 +33983,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33965,7 +34021,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33984,6 +34040,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -34019,7 +34076,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34089,6 +34146,11 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -34099,7 +34161,7 @@ msgstr ""
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34119,7 +34181,7 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34423,7 +34485,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34444,7 +34506,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34480,7 +34542,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34498,11 +34560,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34752,7 +34814,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34973,7 +35035,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35964,7 +36026,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36114,6 +36176,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36128,6 +36191,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36185,7 +36249,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3114
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36483,7 +36547,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37084,7 +37148,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37132,7 +37196,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:234
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37148,7 +37212,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3255
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37227,7 +37291,7 @@ msgstr ""
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:385
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37251,11 +37315,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37263,7 +37327,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37299,11 +37363,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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
@@ -37312,7 +37376,7 @@ msgid "Please enter Difference Account or set default Stock Adjustment
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37320,15 +37384,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:435
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37336,7 +37400,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37381,7 +37445,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37398,7 +37462,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37518,7 +37582,7 @@ msgstr ""
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37577,7 +37641,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1906
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37593,7 +37657,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37665,11 +37729,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1908
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37799,11 +37863,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:556
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37881,7 +37949,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:364
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37910,7 +37978,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37919,11 +37987,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37935,7 +38003,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1962
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37965,7 +38033,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37983,7 +38051,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38066,19 +38134,19 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2499
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3107
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3109
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
@@ -38213,7 +38281,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38384,7 +38452,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38609,6 +38677,11 @@ msgstr ""
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38781,6 +38854,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38804,6 +38878,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -39564,8 +39639,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -40254,6 +40329,7 @@ msgstr ""
#: erpnext/projects/doctype/project/project_dashboard.py:16
#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40576,7 +40652,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:930
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40591,7 +40667,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40838,6 +40914,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -41564,7 +41641,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41719,7 +41796,7 @@ msgstr ""
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2644
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
@@ -41746,7 +41823,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41865,11 +41942,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:494
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:413
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -43483,7 +43560,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:559
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43500,7 +43577,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:551
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43620,7 +43697,7 @@ msgstr ""
msgid "Report Template"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:463
+#: erpnext/accounts/doctype/account/account.py:462
msgid "Report Type is mandatory"
msgstr ""
@@ -44634,7 +44711,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44961,11 +45038,11 @@ msgstr ""
msgid "Root Type for {0} must be one of the Asset, Liability, Income, Expense and Equity"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:460
+#: erpnext/accounts/doctype/account/account.py:459
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:216
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -45170,16 +45247,16 @@ msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2149
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45364,7 +45441,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45388,17 +45465,17 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
@@ -45468,7 +45545,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45509,7 +45586,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:678
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45542,7 +45619,7 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
@@ -45607,11 +45684,11 @@ msgstr ""
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45683,7 +45760,7 @@ msgstr ""
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:502
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45756,7 +45833,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45768,7 +45845,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45804,7 +45881,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45921,7 +45998,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45969,7 +46046,7 @@ msgstr ""
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:691
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr ""
@@ -46229,7 +46306,7 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:348
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
@@ -46568,10 +46645,15 @@ msgstr ""
#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46770,7 +46852,7 @@ msgstr ""
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:597
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46968,16 +47050,16 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1943
-#: erpnext/selling/doctype/sales_order/sales_order.py:1956
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
@@ -47030,6 +47112,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47384,7 +47467,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47421,7 +47504,7 @@ msgstr ""
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1021
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47664,7 +47747,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47822,7 +47905,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:807
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -48038,7 +48121,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48061,7 +48144,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1140
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48077,8 +48160,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:821
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48152,6 +48235,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48180,7 +48269,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2650
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48230,7 +48319,7 @@ msgstr ""
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
@@ -48507,7 +48596,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48552,7 +48641,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48762,7 +48851,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49176,7 +49265,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:706
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -50515,7 +50604,7 @@ msgstr ""
msgid "Source or Target Warehouse is required for item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:465
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
msgid "Source warehouse required for stock item {0}"
msgstr ""
@@ -50602,6 +50691,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50680,7 +50774,7 @@ msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50896,6 +50990,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51291,7 +51386,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51303,7 +51398,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51341,7 +51436,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51368,8 +51463,8 @@ msgstr ""
#: erpnext/controllers/subcontracting_inward_controller.py:1029
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2150
-#: erpnext/selling/doctype/sales_order/sales_order.py:887
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51437,7 +51532,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:413
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51552,7 +51647,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51685,11 +51780,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51751,7 +51846,7 @@ msgstr ""
#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -52071,7 +52166,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:973
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52160,7 +52255,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:969
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52335,7 +52430,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52359,7 +52454,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52519,7 +52614,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52617,6 +52712,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52641,6 +52737,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52760,8 +52857,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52948,11 +53043,6 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
@@ -53063,7 +53153,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:664
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53119,6 +53209,12 @@ msgstr ""
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53916,7 +54012,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -54341,7 +54437,7 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1428
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54358,7 +54454,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:934
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54504,7 +54600,7 @@ msgstr ""
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54553,7 +54649,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54623,6 +54719,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54664,7 +54766,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:219
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54713,7 +54815,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54735,11 +54837,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54811,7 +54913,7 @@ msgstr ""
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
@@ -54839,7 +54941,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:204
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54868,7 +54970,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:1164
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54908,7 +55010,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:871
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54964,11 +55066,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:982
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2209
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55002,7 +55104,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr ""
@@ -55109,7 +55211,7 @@ msgstr ""
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:1152
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55178,7 +55280,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55186,15 +55288,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55202,7 +55304,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55718,11 +55820,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55769,7 +55875,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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55777,7 +55883,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:555
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55802,7 +55908,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55952,7 +56058,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56378,7 +56484,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:727
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -57017,11 +57123,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57467,6 +57578,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57482,7 +57594,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:174
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57556,7 +57668,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1711
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57632,8 +57744,8 @@ msgstr ""
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57751,7 +57863,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57941,7 +58053,7 @@ msgstr ""
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58196,7 +58308,7 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
@@ -58508,6 +58620,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58750,7 +58867,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58766,14 +58882,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58789,11 +58903,11 @@ msgstr ""
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58803,7 +58917,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58829,7 +58943,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58948,12 +59062,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58972,7 +59086,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58990,7 +59104,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -59001,7 +59115,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:844
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59295,7 +59409,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59468,7 +59582,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59648,7 +59762,7 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59815,7 +59929,7 @@ msgstr ""
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59974,7 +60088,7 @@ msgstr ""
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60104,7 +60218,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:1171
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60114,7 +60228,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:703
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60124,11 +60238,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:381
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:371
+#: 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 ""
@@ -60393,8 +60507,8 @@ msgstr ""
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2508
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2588
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
@@ -60755,7 +60869,7 @@ msgstr ""
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60763,7 +60877,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:313
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60791,7 +60905,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60860,7 +60974,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60941,7 +61055,7 @@ msgstr ""
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:575
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
@@ -60981,7 +61095,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -61070,7 +61184,7 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
@@ -61115,7 +61229,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61297,7 +61411,7 @@ msgstr ""
msgid "reconciled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61332,7 +61446,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61340,8 +61454,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61359,7 +61473,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3257
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61386,7 +61500,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:605
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61469,7 +61583,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61561,7 +61675,7 @@ msgstr ""
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61582,7 +61696,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61637,12 +61751,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61734,7 +61848,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2447
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61763,7 +61877,7 @@ msgstr ""
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61800,7 +61914,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:849
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61854,8 +61968,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:413
-#: erpnext/selling/doctype/sales_order/sales_order.py:605
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -62051,7 +62165,7 @@ msgstr ""
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -62075,7 +62189,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2213
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/my.po b/erpnext/locale/my.po
index 384c3b62bab..d9e84cb9e2f 100644
--- a/erpnext/locale/my.po
+++ b/erpnext/locale/my.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Burmese\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr "'နေ့စွဲမှ' ကို ထည့်သွင်းရန
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "ကုန်ပစ္စည်းမဟုတ်သည့် အရာများတွင် 'Has Serial No' သည် 'Yes' မဖြစ်ရပါ။"
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "စာရင်းဖွင့်"
@@ -346,8 +346,8 @@ msgstr "'{0}' အကောင့်ကို {1}မှ အသုံးပြု
msgid "'{0}' has been already added."
msgstr "'{0}' ကို ထည့်သွင်းပြီးပါပြီ။"
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr "၁၀၀၀ +"
msgid "11-50"
msgstr "၁၁ - ၅၀"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "၁ {0}"
@@ -607,8 +607,8 @@ msgstr "၉၀ - ၁၂၀ ရက်"
msgid "90 Above"
msgstr "၉၀ အထက်"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr ""
@@ -760,7 +760,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -777,7 +777,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid " Cannot overbill for the following Items:
"
msgstr ""
@@ -821,7 +821,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -894,11 +894,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -943,7 +943,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1107,11 +1107,11 @@ msgstr ""
msgid "Abbreviation"
msgstr "အတိုကောက်"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1119,7 +1119,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "အတိုကောက်: {0} တစ်ကြိမ်သာ ပေါ်ရမည်"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1173,7 +1173,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1209,7 +1209,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1327,8 +1327,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1346,7 +1346,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1359,7 +1359,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1398,7 +1398,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1414,11 +1414,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1485,15 +1485,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1501,8 +1501,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1510,11 +1510,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1522,11 +1522,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1542,15 +1542,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1558,7 +1558,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1566,19 +1566,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1594,7 +1594,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1879,8 +1879,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1904,8 +1904,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1914,7 +1914,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1969,7 +1969,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1982,14 +1981,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "စာရင်းများ"
@@ -2019,8 +2017,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2120,15 +2118,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2293,7 +2291,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2417,7 +2415,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr "အမှန်တကယ် ပြီးဆုံးသည့်ရက်စွဲ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "အမှန်တကယ် ပြီးဆုံးသည့်ရက်စွဲသည် အမှန်တကယ် စတင်သည့်နေ့မတိုင်မီ မဖြစ်ရပါ။"
@@ -2539,7 +2537,7 @@ msgstr "နာရီအတွင်း အမှန်တကယ်အချိ
msgid "Actual qty in stock"
msgstr "ကုန်သိုလှောင်ရုံရှိ အမှန်တကယ်လက်ကျန်"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2548,7 +2546,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "စျေးနှုန်းများ ထည့်ရန် သို့ ပြင်ရန်"
@@ -3047,7 +3045,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3070,7 +3068,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3078,11 +3076,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3228,11 +3221,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3245,8 +3233,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3314,7 +3302,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3434,7 +3422,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3576,11 +3564,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3730,21 +3718,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3824,7 +3812,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3838,6 +3826,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3846,23 +3839,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3876,11 +3869,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3899,7 +3892,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3909,7 +3902,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3939,7 +3932,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3996,7 +3989,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4060,7 +4053,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4183,16 +4176,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4318,6 +4301,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4394,10 +4387,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4409,6 +4400,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4450,8 +4446,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4692,7 +4688,7 @@ msgstr ""
msgid "Amount"
msgstr "ပမာဏ"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4826,11 +4822,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4876,11 +4872,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5420,7 +5416,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5432,7 +5428,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Sub Assembly Items များ လုံလောက်စွာရှိသောကြောင့် Warehouse {0}အတွက် Work Order မလိုအပ်ပါ။"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5570,7 +5566,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5747,8 +5743,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5848,7 +5844,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5880,7 +5876,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5888,20 +5884,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5921,7 +5917,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5962,7 +5958,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6012,7 +6008,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6073,7 +6069,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6081,20 +6077,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6177,11 +6169,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6189,19 +6181,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6413,7 +6405,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6525,7 +6517,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6614,10 +6606,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6626,8 +6614,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6651,7 +6639,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6675,7 +6665,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6733,7 +6723,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6756,7 +6746,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6828,11 +6818,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6986,7 +6971,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7054,7 +7039,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7118,7 +7103,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7183,7 +7168,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7339,8 +7324,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7455,8 +7440,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7629,11 +7614,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7790,7 +7775,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7865,7 +7850,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7954,13 +7939,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7977,7 +7962,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8000,12 +7985,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8060,7 +8045,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8069,7 +8054,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8083,11 +8068,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8188,7 +8175,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8440,6 +8427,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8536,7 +8533,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8795,8 +8792,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8957,14 +8954,14 @@ msgstr ""
msgid "By-Product"
msgstr "ဘေးထွက်ပစ္စည်း"
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9014,8 +9011,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9270,7 +9267,7 @@ msgstr "ကမ်ပိန်း {0} ကို ရှာမတွေ့ပါ"
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9303,13 +9300,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9351,7 +9348,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9359,9 +9356,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9389,7 +9386,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9409,7 +9406,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9429,15 +9426,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9445,11 +9442,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9465,11 +9462,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9477,7 +9474,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9503,7 +9500,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9511,12 +9508,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9528,7 +9525,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9536,20 +9533,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9565,7 +9562,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9573,15 +9570,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9589,12 +9586,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9607,14 +9604,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9628,7 +9625,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9636,11 +9633,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr ""
@@ -9652,7 +9649,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9685,7 +9682,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9704,13 +9701,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9927,7 +9924,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10032,7 +10029,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10042,7 +10039,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10050,7 +10047,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10065,7 +10062,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10119,7 +10116,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10262,7 +10259,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10320,7 +10317,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10372,6 +10369,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10514,11 +10516,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10770,11 +10772,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10805,7 +10813,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11204,8 +11212,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11258,7 +11266,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11347,18 +11355,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11454,7 +11464,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr "ကုမ္ပဏီနှင့် အကောင့် စစ်ထုတ်မှုများ မသတ်မှတ်ထားပါ။"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11489,7 +11499,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "လုပ်ငန်းအမည် မတူသည်များ"
@@ -11528,12 +11538,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11575,7 +11585,7 @@ msgstr "ပြိုင်ဘက်အမည်"
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11622,12 +11632,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11816,7 +11826,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12010,7 +12020,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12039,7 +12049,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12167,7 +12177,7 @@ msgstr ""
msgid "Contact Person"
msgstr "ဆက်သွယ်ရမည့် သူ"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12293,6 +12303,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12353,7 +12368,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12361,15 +12376,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12446,13 +12461,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12619,7 +12634,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12752,7 +12767,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12795,17 +12810,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12885,7 +12896,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13074,7 +13085,7 @@ msgstr ""
msgid "Create Item"
msgstr "ကုန်ပစ္စည်း ထည့်သွင်းရန်"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13106,7 +13117,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13173,7 +13184,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13318,7 +13329,7 @@ msgstr ""
msgid "Create Tasks"
msgstr "လုပ်ဆောင်ချက်များ ထည့်သွင်းရန်"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13356,12 +13367,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13392,12 +13403,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13431,7 +13442,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13464,7 +13475,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13657,7 +13668,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13667,12 +13678,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13704,7 +13709,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13732,7 +13737,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13740,7 +13745,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13749,20 +13754,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13770,8 +13775,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13941,7 +13946,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13951,7 +13956,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14034,8 +14039,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14102,6 +14107,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14197,7 +14207,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14304,7 +14313,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14393,8 +14401,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14408,7 +14416,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14491,6 +14499,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14513,7 +14522,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14530,6 +14539,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14573,7 +14583,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14625,7 +14635,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14731,7 +14741,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14788,9 +14798,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14902,7 +14912,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -14993,7 +15003,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15219,7 +15229,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15247,13 +15257,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15381,8 +15391,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15408,14 +15417,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15430,19 +15439,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15495,9 +15504,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15613,6 +15620,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15648,23 +15665,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15787,15 +15800,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15847,7 +15860,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15938,6 +15951,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16020,12 +16039,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16046,8 +16065,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16158,11 +16177,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16243,7 +16262,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16303,11 +16322,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16393,10 +16412,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16516,8 +16531,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16610,7 +16625,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16768,15 +16783,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16888,15 +16903,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16977,6 +16992,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17013,11 +17033,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "ဤ {} သည် အတွင်းပိုင်းလွှဲပြောင်းမှုဖြစ်သောကြောင့် ဈေးနှုန်းစည်းမျဉ်းများကို ပိတ်ထားသည်"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17033,7 +17053,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17041,15 +17061,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17336,7 +17356,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17417,7 +17437,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17531,8 +17551,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17594,7 +17614,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17618,7 +17638,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17685,11 +17705,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17852,12 +17872,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17878,12 +17892,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18042,8 +18050,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18126,7 +18134,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18240,6 +18248,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18259,8 +18271,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18464,8 +18476,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18548,7 +18560,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18564,7 +18576,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18595,7 +18607,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18761,12 +18773,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18895,8 +18901,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18995,8 +19001,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19021,7 +19027,7 @@ msgstr "ပိတ်ရက်အမည် ထည့်သွင်းပါ"
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19033,7 +19039,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19076,7 +19082,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19084,7 +19090,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19096,8 +19102,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19121,8 +19127,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19183,7 +19189,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19193,7 +19199,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19239,7 +19245,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19258,7 +19264,7 @@ msgstr "ဥပမာ- ABCD။#####။ စီးရီးကို သတ်မ
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19268,7 +19274,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19276,7 +19282,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19307,17 +19313,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19456,7 +19462,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19543,7 +19549,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr "ခန့်မှန်းပို့ဆောင်မည့်နေ့"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19627,7 +19633,7 @@ msgstr ""
msgid "Expense"
msgstr "စရိတ်"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "ကုန်ကျစရိတ် / ကွာခြားချက် အကောင့် ({0}) သည် 'အမြတ် သို့မဟုတ် ဆုံးရှုံးမှု' အကောင့် ဖြစ်ရမည်"
@@ -19705,23 +19711,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19800,7 +19806,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19937,7 +19943,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20055,6 +20061,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20092,21 +20103,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20314,9 +20333,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20373,15 +20392,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20427,7 +20446,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20468,7 +20487,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20609,6 +20628,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20627,7 +20647,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20646,8 +20666,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20720,7 +20740,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20777,7 +20797,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20787,7 +20807,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20808,17 +20828,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20846,11 +20862,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20888,7 +20904,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20902,7 +20918,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20919,7 +20935,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20928,12 +20944,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20952,7 +20968,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -20999,11 +21015,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21049,7 +21060,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21094,8 +21105,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21529,8 +21540,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21547,13 +21558,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21561,7 +21572,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21646,9 +21657,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21821,7 +21832,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21879,7 +21890,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21918,7 +21929,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22092,7 +22103,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22101,7 +22112,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22284,7 +22295,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22727,7 +22738,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22755,7 +22766,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22954,7 +22965,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23122,6 +23133,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23339,7 +23356,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23365,13 +23382,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23380,7 +23402,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23390,7 +23412,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23467,7 +23489,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23481,7 +23503,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23565,7 +23587,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23652,12 +23674,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23815,7 +23837,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23939,7 +23961,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24170,8 +24192,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24242,7 +24264,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24274,7 +24296,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24282,7 +24304,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24416,15 +24438,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24492,14 +24514,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24516,8 +24538,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24547,7 +24569,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24586,11 +24608,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24598,13 +24620,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24724,13 +24745,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24738,8 +24759,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24759,7 +24780,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24767,7 +24788,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24775,7 +24796,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24806,7 +24827,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24819,7 +24840,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24835,12 +24861,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24861,7 +24887,7 @@ msgstr "မမှန်ကန်သော ပမာဏ"
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24874,7 +24900,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24890,21 +24916,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24942,7 +24968,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24956,7 +24982,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24964,11 +24990,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -24998,12 +25024,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25028,12 +25054,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25058,7 +25084,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25070,7 +25096,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25096,8 +25122,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25105,7 +25131,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25115,7 +25141,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25164,8 +25190,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25215,7 +25241,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25320,7 +25346,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25341,7 +25367,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25437,8 +25463,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25880,8 +25905,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25987,7 +26011,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26018,11 +26042,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26146,7 +26170,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26394,7 +26418,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26456,7 +26480,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26655,13 +26679,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26878,7 +26902,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26918,10 +26942,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26962,10 +26986,6 @@ msgstr ""
msgid "Item Price"
msgstr "ပစ္စည်းစျေးနှုန်း"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26981,19 +27001,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27180,11 +27201,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27285,11 +27306,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27315,11 +27336,7 @@ msgstr "ပစ္စည်းအမည်"
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27338,11 +27355,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27359,7 +27376,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27371,7 +27388,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27383,15 +27400,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "ပစ္စည်း {0} ကို ပိတ်ထားသည်"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27403,15 +27420,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27419,7 +27436,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27427,11 +27444,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27447,7 +27464,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27455,7 +27472,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27463,7 +27480,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27509,7 +27526,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27533,7 +27550,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27557,11 +27574,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27573,7 +27590,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27583,7 +27600,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27648,9 +27665,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27712,7 +27729,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27788,7 +27805,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28008,7 +28025,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28136,7 +28153,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28218,7 +28235,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28468,12 +28485,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28484,7 +28501,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28543,7 +28560,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28604,7 +28621,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28625,12 +28642,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28638,7 +28655,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28696,8 +28713,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28742,8 +28759,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28944,6 +28961,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28987,10 +29009,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29233,9 +29255,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29255,7 +29277,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29293,12 +29315,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29314,11 +29336,11 @@ msgstr ""
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29326,8 +29348,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29346,7 +29368,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29362,7 +29384,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29461,8 +29483,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29541,7 +29563,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29566,7 +29588,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29611,10 +29633,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29781,6 +29799,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29795,12 +29819,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29879,7 +29903,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29887,7 +29911,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29968,7 +29992,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30065,11 +30089,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30137,7 +30161,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30203,12 +30227,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30279,9 +30303,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30313,11 +30337,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30378,15 +30402,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30436,7 +30455,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30466,7 +30485,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30667,7 +30686,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30756,8 +30775,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30765,15 +30784,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30803,7 +30822,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30811,7 +30830,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30848,7 +30867,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31097,11 +31116,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31123,11 +31142,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31136,7 +31155,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31223,7 +31242,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31267,7 +31286,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31276,7 +31295,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31582,7 +31601,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31759,7 +31778,7 @@ msgstr ""
msgid "New Workplace"
msgstr "အလုပ်ခွင်အသစ်"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31813,7 +31832,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31826,7 +31845,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31839,7 +31858,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31855,7 +31874,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31890,7 +31909,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31919,19 +31938,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31961,7 +31980,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32155,7 +32174,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32179,7 +32198,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32250,7 +32269,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32283,7 +32302,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32328,8 +32347,8 @@ msgstr "အကျိုးအမြတ်မယူသော"
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32430,7 +32449,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32484,7 +32503,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32492,7 +32511,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32675,6 +32694,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32734,18 +32758,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32873,7 +32897,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32913,7 +32937,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32932,7 +32956,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32969,7 +32993,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33186,8 +33210,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33210,7 +33234,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33243,7 +33267,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33279,16 +33303,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33306,12 +33330,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33343,7 +33370,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33386,15 +33413,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33419,7 +33446,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33434,11 +33461,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33454,9 +33481,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33629,7 +33656,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33779,7 +33806,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33895,7 +33922,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33933,7 +33960,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33952,6 +33979,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33987,7 +34015,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33997,7 +34025,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34057,17 +34085,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34087,11 +34120,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34391,7 +34424,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34412,7 +34445,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34448,7 +34481,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34466,11 +34499,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34576,7 +34609,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34613,7 +34646,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34654,7 +34687,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34720,7 +34753,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34814,7 +34847,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34941,7 +34974,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35154,7 +35187,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35181,7 +35214,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35214,7 +35247,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35366,7 +35399,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35475,7 +35508,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35526,7 +35559,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35560,7 +35593,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35707,7 +35740,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35932,7 +35965,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35997,7 +36030,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36026,7 +36059,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36082,6 +36115,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36096,6 +36130,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36153,7 +36188,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36228,8 +36263,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36276,10 +36311,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36288,9 +36327,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36320,6 +36368,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36429,7 +36485,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36993,8 +37049,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37030,7 +37086,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37078,7 +37134,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37086,7 +37142,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37094,7 +37150,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37128,7 +37184,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37153,11 +37209,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37165,11 +37225,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37181,11 +37241,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37193,11 +37253,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37205,7 +37265,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37229,7 +37289,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37241,20 +37301,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37262,15 +37322,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37278,7 +37338,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37287,7 +37347,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37303,7 +37363,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37323,7 +37383,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37340,7 +37400,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37360,7 +37420,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37388,7 +37448,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37456,11 +37516,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37519,7 +37579,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37535,7 +37595,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37565,7 +37625,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37574,8 +37634,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37607,11 +37667,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37627,7 +37687,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37644,7 +37704,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37668,7 +37728,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37741,11 +37801,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37765,7 +37829,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37823,7 +37887,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37852,7 +37916,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37861,11 +37925,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37877,7 +37941,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37907,7 +37971,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37925,7 +37989,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37971,7 +38035,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38008,23 +38072,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38053,7 +38117,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38061,7 +38125,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38073,15 +38137,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38120,7 +38184,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38142,7 +38206,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38155,7 +38219,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38260,8 +38324,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38326,7 +38390,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38344,7 +38408,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38466,10 +38530,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38543,18 +38603,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38727,6 +38792,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38750,6 +38816,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38801,7 +38868,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39156,7 +39223,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39165,8 +39232,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39174,7 +39241,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39277,10 +39344,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39334,7 +39397,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "လုပ်ငန်းစဉ်ဆုံးရှုံးမှုပမာဏ"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39415,6 +39478,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39510,8 +39577,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39576,7 +39643,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39790,7 +39857,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39834,7 +39901,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39965,7 +40032,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40111,7 +40178,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40126,7 +40193,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40198,8 +40265,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40522,7 +40590,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40537,7 +40605,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40552,7 +40620,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40686,7 +40754,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40784,6 +40852,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40793,10 +40862,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40852,6 +40917,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40900,6 +40966,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41008,11 +41075,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41063,8 +41130,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41119,8 +41186,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41356,17 +41423,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41380,7 +41447,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41512,7 +41579,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41647,7 +41714,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41657,21 +41724,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "ပမာဏသည် ၀ ထက် ပိုများသင့်သည်"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41694,7 +41761,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41813,11 +41880,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42124,7 +42191,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42290,7 +42357,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42329,12 +42396,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42343,7 +42404,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42524,7 +42585,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42985,7 +43046,7 @@ msgstr ""
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43149,11 +43210,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43315,7 +43376,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43373,7 +43434,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43437,7 +43498,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43454,7 +43515,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43577,7 +43638,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43822,7 +43883,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44003,7 +44064,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44048,7 +44109,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44092,7 +44153,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44162,14 +44223,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44178,13 +44239,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44450,7 +44511,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44475,8 +44536,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44551,7 +44612,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44587,7 +44648,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44685,8 +44746,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44918,7 +44979,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44937,8 +44998,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45118,21 +45179,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45153,7 +45214,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45214,31 +45275,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45288,11 +45349,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45300,7 +45361,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45317,7 +45378,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45341,22 +45402,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45385,7 +45446,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45393,7 +45454,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45421,7 +45482,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45462,7 +45523,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45474,10 +45535,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45499,11 +45556,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "တန်း #{0}: Sub Assembly Warehouse ကို ရွေးချယ်ပါ။"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45525,15 +45582,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45541,7 +45598,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45557,18 +45614,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45607,7 +45664,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45627,19 +45684,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45651,19 +45708,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45679,6 +45736,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr ""
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45695,7 +45756,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45708,7 +45769,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45720,7 +45781,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45756,7 +45817,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45772,7 +45833,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45873,7 +45934,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45881,7 +45942,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45889,7 +45950,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45921,11 +45982,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45942,7 +46003,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45962,7 +46023,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45970,7 +46031,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46015,16 +46076,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46040,7 +46101,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46064,7 +46125,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46132,7 +46193,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46144,10 +46205,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46156,11 +46213,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46172,11 +46229,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46184,11 +46241,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46201,11 +46258,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46217,7 +46274,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46263,7 +46320,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46271,7 +46328,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46478,8 +46535,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46501,8 +46558,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46516,18 +46573,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46551,8 +46613,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46721,11 +46783,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46923,25 +46985,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46985,6 +47047,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46997,7 +47060,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47103,7 +47166,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47196,7 +47259,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "ကုန်ဝယ်ပြန်ပို့"
@@ -47220,7 +47283,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47339,7 +47402,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47371,12 +47434,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47618,7 +47681,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47737,8 +47800,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47776,7 +47839,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47818,7 +47881,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47854,7 +47917,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47879,7 +47942,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47917,7 +47980,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -47992,7 +48055,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48015,7 +48078,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48031,8 +48094,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48049,7 +48112,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48081,7 +48144,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48098,7 +48161,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48106,6 +48169,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48133,7 +48202,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48164,30 +48233,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48440,7 +48509,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48460,7 +48529,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48505,7 +48574,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48645,7 +48714,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48715,7 +48784,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49129,7 +49198,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49148,8 +49217,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49316,11 +49385,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49352,7 +49421,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49463,7 +49532,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49483,6 +49552,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49675,7 +49748,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49713,7 +49786,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49856,8 +49929,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50189,7 +50262,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50234,7 +50307,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50276,8 +50349,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50301,7 +50374,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50365,7 +50438,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50374,11 +50447,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50436,7 +50509,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50444,23 +50522,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50502,7 +50579,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50510,7 +50587,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50534,7 +50611,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50546,6 +50623,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50618,13 +50700,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50645,8 +50727,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50681,7 +50763,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50810,7 +50892,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50840,6 +50922,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50848,8 +50931,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50949,6 +51032,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50958,10 +51051,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51025,7 +51114,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51033,8 +51122,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51112,8 +51201,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51216,8 +51305,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51229,7 +51318,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51241,7 +51330,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51266,9 +51355,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51279,7 +51368,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51304,10 +51393,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51335,7 +51424,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51375,7 +51464,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51490,7 +51579,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51623,11 +51712,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51682,14 +51771,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51747,7 +51836,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52009,7 +52098,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52098,7 +52187,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52119,7 +52208,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52273,7 +52362,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52297,7 +52386,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52457,7 +52546,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52555,6 +52644,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52564,7 +52654,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52579,6 +52669,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52663,7 +52754,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52698,8 +52789,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52751,7 +52840,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52780,7 +52869,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52869,7 +52958,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52886,17 +52975,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52909,8 +52993,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53001,7 +53085,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53031,7 +53115,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53052,10 +53136,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53203,7 +53293,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53211,24 +53301,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53345,8 +53434,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53378,7 +53467,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53400,7 +53488,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53416,6 +53503,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53427,8 +53515,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53502,7 +53590,7 @@ msgstr ""
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53520,7 +53608,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53535,7 +53623,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53854,7 +53942,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53887,8 +53975,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53939,13 +54027,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54127,7 +54215,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54226,7 +54314,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "'From Package No.' အကွက်သည် ဗလာဖြစ်ရမည် သို့မဟုတ် ၎င်း၏တန်ဖိုးသည် ၁ ထက်နည်းရမည် မဟုတ်ပါ။"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54279,7 +54367,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54295,7 +54384,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54331,7 +54420,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54339,7 +54428,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54359,7 +54452,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54392,7 +54485,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54433,11 +54526,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54458,7 +54551,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54485,7 +54578,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54543,7 +54636,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54555,6 +54648,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54596,7 +54695,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54612,7 +54711,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54645,7 +54744,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54667,11 +54766,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54719,15 +54818,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "ပို့ဆောင်ခြင်းမပြုမီ ပြီးစီးသွားသောပစ္စည်းများကို သိမ်းဆည်းထားသည့် ဂိုဒေါင်။"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54735,19 +54834,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54755,7 +54854,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54771,7 +54870,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54800,7 +54899,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54840,7 +54939,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54896,11 +54995,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54934,7 +55033,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr ""
@@ -55037,11 +55136,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55110,7 +55209,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55118,15 +55217,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55134,7 +55233,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55203,7 +55302,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55314,7 +55413,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55423,7 +55522,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55650,11 +55749,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55697,11 +55800,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55709,7 +55812,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55734,7 +55837,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55884,7 +55987,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55991,12 +56094,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56298,7 +56401,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56310,7 +56413,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56593,7 +56696,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56768,7 +56871,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56792,11 +56895,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56901,7 +57004,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56948,11 +57052,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57133,8 +57242,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57398,6 +57507,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57413,7 +57523,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57474,7 +57584,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57487,7 +57597,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57559,12 +57669,12 @@ msgstr ""
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57646,7 +57756,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57665,7 +57775,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57682,7 +57792,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57827,7 +57937,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57867,12 +57977,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58048,7 +58158,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58127,11 +58237,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58333,7 +58443,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58375,7 +58485,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58439,6 +58549,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58461,8 +58576,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58472,7 +58587,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58482,12 +58597,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58681,7 +58796,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58697,14 +58811,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "တန်ဖိုးသင့်သည့် နှုန်း"
@@ -58712,19 +58824,19 @@ msgstr "တန်ဖိုးသင့်သည့် နှုန်း"
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58734,7 +58846,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58748,7 +58860,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58760,7 +58872,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58879,12 +58991,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58903,7 +59015,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58921,7 +59033,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58932,7 +59044,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59226,7 +59338,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59298,7 +59410,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59372,7 +59484,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59399,7 +59511,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59579,8 +59691,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59605,7 +59717,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59742,11 +59854,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59836,7 +59948,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59905,7 +60017,7 @@ msgstr "website:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60035,7 +60147,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60045,7 +60157,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60055,11 +60167,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60204,7 +60316,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60241,7 +60353,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60275,7 +60387,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60316,19 +60428,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60337,16 +60453,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60371,7 +60487,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60419,7 +60535,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60510,14 +60626,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60622,7 +60738,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60678,11 +60794,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60690,7 +60806,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60718,7 +60834,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60759,11 +60875,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60787,7 +60903,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60848,7 +60964,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60860,19 +60976,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "ကုမ္ပဏီလိပ်စာအသစ်ဖန်တီးခွင့် မရှိပါ။ ကျေးဇူးပြု၍ Admin သို့ ဆက်သွယ်ပါ။"
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60884,7 +61000,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60908,7 +61024,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60924,7 +61040,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60971,11 +61087,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60997,11 +61113,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61042,7 +61158,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61191,7 +61307,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61224,7 +61340,7 @@ msgstr ""
msgid "reconciled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61259,7 +61375,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61267,8 +61383,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61286,7 +61402,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61313,7 +61429,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61335,7 +61451,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61343,7 +61459,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61351,7 +61467,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61384,11 +61500,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61396,7 +61512,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61484,11 +61600,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61500,7 +61616,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61509,7 +61625,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61534,7 +61650,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61556,7 +61672,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61564,12 +61680,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61577,7 +61693,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61585,7 +61701,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61593,7 +61709,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61633,27 +61749,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61661,7 +61777,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61677,7 +61793,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61690,7 +61806,7 @@ msgstr "{0} မှ {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61706,16 +61822,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61727,7 +61843,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61743,7 +61859,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61781,8 +61897,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61892,7 +62008,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61941,8 +62057,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61962,11 +62078,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61974,11 +62090,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61990,7 +62106,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62002,7 +62118,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/nb.po b/erpnext/locale/nb.po
index c4ba3400375..1a8908e6198 100644
--- a/erpnext/locale/nb.po
+++ b/erpnext/locale/nb.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:22\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr "Delsammenstilling"
msgid " Summary"
msgstr "Sammendrag"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "Artikkel levert fra kunde kan ikke også være innkjøpsartikkel"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "Artikkel levert fra kunde kan ikke ha verdisats"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Er anleggsmiddel\" kan ikke fjernes, siden det finnes en anleggsmiddelpost for artikkelen"
@@ -268,11 +268,11 @@ msgstr "% av materialer levert i henhold til denne plukkelisten"
msgid "% of materials delivered against this Sales Order"
msgstr "% av materialer levert mot denne salgsordren"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "Konto i regnskapsseksjonen for kunde: {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "\"Tillat flere salgsordrer mot en kundes innkjøpsordre"
@@ -284,7 +284,7 @@ msgstr "«Basert på» og «Gruppér etter» kan ikke være det samme"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "\"Dager siden siste bestilling\" må være større enn eller lik null"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standard {0} konto' i Selskap {1}"
@@ -302,7 +302,7 @@ msgstr "\"Fra dato\" er påkrevd"
msgid "'From Date' must be after 'To Date'"
msgstr "'Fra Dato' må være etter 'Til Date'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "\"Har serienummer\" kan ikke være \"Ja\" for artikler som ikke er på lager"
@@ -314,9 +314,9 @@ msgstr "\"Inspeksjon påkrevd før levering\" er deaktivert for artikkelen {0},
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "\"Inspeksjon påkrevd før kjøp\" er deaktivert for artikkelen {0}, det er ikke nødvendig å opprette QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Åpning'"
@@ -346,8 +346,8 @@ msgstr "'{0}' kontoen er allerede brukt av {1}. Bruk en annen konto."
msgid "'{0}' has been already added."
msgstr "'{0}' er allerede lagt til."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' skal være i selskapets valuta {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90–120 dager"
msgid "90 Above"
msgstr "90 Over"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Datoinnstil
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Klareringsdato må være etter sjekkdato for rad(er): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikkel {0} i rad(er) {1} fakturert mer enn {2} "
@@ -820,7 +820,7 @@ msgstr "Betalingsdokument kreves for rad(er): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Kan ikke overfakturere for følgende artikler:
"
@@ -883,7 +883,7 @@ msgstr "Registringsdato {0} kan ikke være før bestillingsdatoen for følgen
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 "Listeprisen er ikke angitt som redigerbar i salgsinnstillingene. I dette scenariet vil det å sette Oppdater prisliste basert på til Listepris forhindre automatisk oppdatering av artikkelprisen.
Er du sikker på at du vil fortsette?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "For å tillate overfakturering, vennligst angi tillatelse i kontoinnstillingene.
"
@@ -971,11 +971,11 @@ msgstr "Dine snarveier\n"
msgid "Your Shortcuts "
msgstr "Snarveiene dine "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Totalsum: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Utestående beløp: {0}"
@@ -1045,7 +1045,7 @@ msgstr "A–B"
msgid "A - C"
msgstr "A–C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Det finnes en kundegruppe med samme navn, vennligst endre kundenavnet eller gi kundegruppen nytt navn"
@@ -1209,11 +1209,11 @@ msgstr "Forkortelse"
msgid "Abbreviation"
msgstr "Forkortelse"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1221,7 +1221,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Over"
@@ -1275,7 +1275,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1311,7 +1311,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "I henhold til stykklisten (BOM) {0} mangler artikkelen '{1}' i lageroppføringen."
@@ -1429,8 +1429,8 @@ msgstr "Konto"
msgid "Account Manager"
msgstr "Kundeansvarlig"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Konto Mangler"
@@ -1448,7 +1448,7 @@ msgstr "Konto Mangler"
msgid "Account Name"
msgstr "Konto Navn"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Konto Ikke Funnet"
@@ -1461,7 +1461,7 @@ msgstr "Konto Ikke Funnet"
msgid "Account Number"
msgstr "Konto Nummer"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1500,7 +1500,7 @@ msgstr "Konto undertype"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1516,11 +1516,11 @@ msgstr "Konto type"
msgid "Account Value"
msgstr "Konto verdi"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1587,15 +1587,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1603,8 +1603,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1612,11 +1612,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1624,11 +1624,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1644,15 +1644,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1660,7 +1660,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1668,19 +1668,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1696,7 +1696,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1981,8 +1981,8 @@ msgstr "Regnskapsposteringer"
msgid "Accounting Entry for Asset"
msgstr "Regnskapspostering for eiendeler"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Regnskapspostering for LCV i lagerpostering {0}"
@@ -2006,8 +2006,8 @@ msgstr "Regnskapspostering for tjeneste"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Regnskapspostering for lagerbeholdning"
@@ -2016,7 +2016,7 @@ msgstr "Regnskapspostering for lagerbeholdning"
msgid "Accounting Entry for {0}"
msgstr "Regnskapspostering for {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Regnskapspostering for {0}: {1} kan kun gjøres i valutaen: {2}"
@@ -2071,7 +2071,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2084,14 +2083,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Kontoer"
@@ -2121,8 +2119,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2222,15 +2220,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2395,7 +2393,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2519,7 +2517,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2641,7 +2639,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Faktisk avgiftstype kan ikke inkluderes i artikkelprisen i rad {0}"
@@ -2650,7 +2648,7 @@ msgstr "Faktisk avgiftstype kan ikke inkluderes i artikkelprisen i rad {0}"
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3149,7 +3147,7 @@ msgstr "Tilleggsinformasjon"
msgid "Additional Information updated successfully."
msgstr "Tilleggsinformasjon ble oppdatert."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3172,7 +3170,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3180,11 +3178,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Tilleggsinformasjon som gjelder kunden."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3330,11 +3323,6 @@ msgstr "Adresse må kobles til et selskap. Legg til en rad for Firma i tabellen
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresse som brukes til å bestemme skattekategori i transaksjoner"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3347,8 +3335,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3416,7 +3404,7 @@ msgstr "Status for forskuddsbetaling"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3536,7 +3524,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr "Mot blankettordre"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3678,11 +3666,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Alder (dager)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3832,21 +3820,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3926,7 +3914,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3940,6 +3928,11 @@ msgstr "Alle fordelinger er avstemt"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Alle artikler er allerede etterspurt"
@@ -3948,23 +3941,23 @@ msgstr "Alle artikler er allerede etterspurt"
msgid "All items have already been Invoiced/Returned"
msgstr "Alle artikler er allerede fakturert/returnert"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Alle artikler er allerede mottatt"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Alle artikler er allerede overført for denne arbeidsordren."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Alle artiklene i dette dokumentet har allerede en tilknyttet kvalitetskontroll."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3978,11 +3971,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr "Alle artiklene er allerede returnert."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Alle nødvendige artikler (råvarer) hentes fra stykklisten og fylles inn i denne tabellen. Her kan du også endre kildelageret for en hvilken som helst artikkel. Og under produksjonen kan du spore overførte råvarer fra denne tabellen."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Alle disse artiklene er allerede fakturert/returnert"
@@ -4001,7 +3994,7 @@ msgstr "Fordele"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Fordel forskudd automatisk (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Fordel innbetalingsbeløp"
@@ -4011,7 +4004,7 @@ msgstr "Fordel innbetalingsbeløp"
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -4041,7 +4034,7 @@ msgstr "Fordelt"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4098,7 +4091,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4162,7 +4155,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4285,16 +4278,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4420,6 +4403,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4496,10 +4489,8 @@ msgstr "Tillatte artikler"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4511,6 +4502,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4552,8 +4548,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Du kan heller ikke bytte tilbake til FIFO etter at verdsettelsesmetoden er satt til glidende gjennomsnitt for denne artikkelen."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4794,7 +4790,7 @@ msgstr ""
msgid "Amount"
msgstr "Beløp"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4928,11 +4924,11 @@ msgid "Amount to Bill"
msgstr "Beløp til faktura"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4978,11 +4974,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Det oppstod en feil under oppdateringsprosessen"
@@ -5522,7 +5518,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5534,7 +5530,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5672,7 +5668,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5849,8 +5845,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5950,7 +5946,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5982,7 +5978,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Eiendel mottatt på plassering {0} og utstedt til ansatt {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5990,20 +5986,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -6023,7 +6019,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -6064,7 +6060,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6114,7 +6110,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6175,7 +6171,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6183,20 +6179,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6279,11 +6271,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6291,19 +6283,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6515,7 +6507,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6627,7 +6619,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6716,10 +6708,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6728,8 +6716,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6753,7 +6741,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6777,7 +6767,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6835,7 +6825,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6858,7 +6848,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6930,11 +6920,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7088,7 +7073,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7156,7 +7141,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7220,7 +7205,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7285,7 +7270,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7441,8 +7426,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7557,8 +7542,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7731,11 +7716,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7892,7 +7877,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7967,7 +7952,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8056,13 +8041,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8079,7 +8064,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8102,12 +8087,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8162,7 +8147,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8171,7 +8156,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8185,11 +8170,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8290,7 +8277,7 @@ msgstr "Detaljer om faktureringsadresse"
msgid "Billing Address Name"
msgstr "Navn for faktureringsadresse"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Faktureringsadressen tilhører ikke {0}"
@@ -8542,6 +8529,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8638,7 +8635,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8897,8 +8894,8 @@ msgstr "Bygg trestruktur"
msgid "Buildable Qty"
msgstr "Byggbart antall"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Bygninger"
@@ -9059,14 +9056,14 @@ msgstr "Som standard er leverandørnavnet angitt i henhold til leverandørnavnet
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9116,8 +9113,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9372,7 +9369,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9405,13 +9402,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9453,7 +9450,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Kan ikke beregne ankomsttid da sjåførens startadresse mangler."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9461,9 +9458,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9491,7 +9488,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9511,7 +9508,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9531,15 +9528,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Kan ikke avbryte dette dokumentet da det er linket med innsendt eiendel {asset_link}. Avbryt eiendel for å fortsette."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Kan ikke endre referanse-dokumenttype (DocType)."
@@ -9547,11 +9544,11 @@ msgstr "Kan ikke endre referanse-dokumenttype (DocType)."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9567,11 +9564,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9579,7 +9576,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9605,7 +9602,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9613,12 +9610,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9630,7 +9627,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9638,20 +9635,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9667,7 +9664,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9675,15 +9672,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9691,12 +9688,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9709,14 +9706,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Kan ikke hente lenketoken. Sjekk feilloggen for mer informasjon."
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9730,7 +9727,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9738,11 +9735,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr ""
@@ -9754,7 +9751,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9787,7 +9784,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9806,13 +9803,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -10029,7 +10026,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10134,7 +10131,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10144,7 +10141,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10152,7 +10149,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10167,7 +10164,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10221,7 +10218,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10364,7 +10361,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10422,7 +10419,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10474,6 +10471,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10616,11 +10618,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10872,11 +10874,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10907,7 +10915,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11306,8 +11314,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11360,7 +11368,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11449,18 +11457,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11556,7 +11566,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11591,7 +11601,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11630,12 +11640,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11677,7 +11687,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11724,12 +11734,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11918,7 +11928,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12112,7 +12122,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12141,7 +12151,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12269,7 +12279,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12395,6 +12405,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12455,7 +12470,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12463,15 +12478,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12548,13 +12563,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12585,13 +12600,13 @@ msgstr ""
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "kostnadsfordeling"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "kostnadsfordeling %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12721,7 +12736,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12854,7 +12869,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12897,17 +12912,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12987,7 +12998,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13176,7 +13187,7 @@ msgstr ""
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13208,7 +13219,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13275,7 +13286,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13420,7 +13431,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13458,12 +13469,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13494,12 +13505,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13533,7 +13544,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13566,7 +13577,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13759,7 +13770,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13769,12 +13780,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13806,7 +13811,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13834,7 +13839,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13842,7 +13847,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13851,20 +13856,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13872,8 +13877,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -14043,7 +14048,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -14053,7 +14058,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14136,8 +14141,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14204,6 +14209,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14299,7 +14309,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14406,7 +14415,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14495,8 +14503,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14510,7 +14518,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14593,6 +14601,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14615,7 +14624,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14632,6 +14641,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14675,7 +14685,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14727,7 +14737,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14833,7 +14843,7 @@ msgstr "Levert fra kunde"
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14890,9 +14900,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -15004,7 +15014,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -15095,7 +15105,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15321,7 +15331,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15349,13 +15359,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15483,8 +15493,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15510,14 +15519,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15532,19 +15541,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15597,9 +15606,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15715,6 +15722,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15750,23 +15767,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15889,15 +15902,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15949,7 +15962,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -16040,6 +16053,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16122,12 +16141,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16148,8 +16167,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16260,11 +16279,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16345,7 +16364,7 @@ msgstr "Leveranseansvarlig"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16405,11 +16424,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16495,10 +16514,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16618,8 +16633,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16712,7 +16727,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16870,15 +16885,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16990,15 +17005,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -17079,6 +17094,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17115,11 +17135,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17135,7 +17155,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17143,15 +17163,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17438,7 +17458,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17519,7 +17539,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17633,8 +17653,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17696,7 +17716,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17720,7 +17740,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17787,11 +17807,11 @@ msgstr ""
msgid "Document Type "
msgstr "Dokumenttype (DocType)"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Dokumenttype (DocType) brukes allerede som en dimensjon"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17954,12 +17974,6 @@ msgstr "Førerkortkategorier"
msgid "Driving License Category"
msgstr "Førerkortkategori"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17980,12 +17994,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18144,8 +18152,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18228,7 +18236,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18342,6 +18350,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18361,8 +18373,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18566,8 +18578,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18650,7 +18662,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18666,7 +18678,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18697,7 +18709,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18863,12 +18875,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18997,8 +19003,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19097,8 +19103,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19123,7 +19129,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19135,7 +19141,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19178,7 +19184,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19186,7 +19192,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19198,8 +19204,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19223,8 +19229,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19285,7 +19291,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19295,7 +19301,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19341,7 +19347,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19360,7 +19366,7 @@ msgstr "Eksempel: ABCD.#####. Hvis serien er angitt og batchnummeret ikke er nev
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19370,7 +19376,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19378,7 +19384,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19409,17 +19415,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19558,7 +19564,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19645,7 +19651,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19729,7 +19735,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19807,23 +19813,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19902,7 +19908,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -20039,7 +20045,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20157,6 +20163,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20194,21 +20205,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20416,9 +20435,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 "Finansrapporter genereres ved hjelp av dokumenttyper for hovedbokposter (bør aktiveres hvis periodeavslutningsbilag ikke posteres for alle år sekvensielt eller mangler) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20475,15 +20494,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20529,7 +20548,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20570,7 +20589,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20711,6 +20730,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20729,7 +20749,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20748,8 +20768,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20822,7 +20842,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20879,7 +20899,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20889,7 +20909,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20910,17 +20930,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20948,11 +20964,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20990,7 +21006,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -21004,7 +21020,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -21021,7 +21037,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -21030,12 +21046,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -21054,7 +21070,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21101,11 +21117,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21151,7 +21162,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21196,8 +21207,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21631,8 +21642,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21649,13 +21660,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21663,7 +21674,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21748,9 +21759,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21923,7 +21934,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21981,7 +21992,7 @@ msgstr "Hent artikkelplasseringer"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22020,7 +22031,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Hent artikler fra buntartikkelen"
@@ -22194,7 +22205,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22203,7 +22214,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22386,7 +22397,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22829,7 +22840,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22857,7 +22868,7 @@ msgstr "Her er de ukentlige fridagene forhåndsutfylt basert på de tidligere va
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -23056,7 +23067,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23224,6 +23235,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23441,7 +23458,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23467,13 +23484,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23482,7 +23504,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23492,7 +23514,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23569,7 +23591,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23583,7 +23605,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23667,7 +23689,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23754,12 +23776,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23917,7 +23939,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -24041,7 +24063,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24272,8 +24294,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24344,7 +24366,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24376,7 +24398,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24384,7 +24406,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24518,15 +24540,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24594,14 +24616,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24618,8 +24640,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24649,7 +24671,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24688,11 +24710,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24700,13 +24722,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24826,13 +24847,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24840,8 +24861,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24861,7 +24882,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24869,7 +24890,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24877,7 +24898,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24908,7 +24929,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24921,7 +24942,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24937,12 +24963,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24963,7 +24989,7 @@ msgstr ""
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24976,7 +25002,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24992,21 +25018,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -25044,7 +25070,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -25058,7 +25084,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -25066,11 +25092,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25100,12 +25126,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25130,12 +25156,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Ugyldig serie-/partinummer-kombinasjon"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25160,7 +25186,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25172,7 +25198,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Ugyldig nummerserie (punktum mangler) for {0}"
@@ -25198,8 +25224,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25207,7 +25233,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25217,7 +25243,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25266,8 +25292,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25317,7 +25343,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr "Feil ved valg av faktura (DocType)"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25422,7 +25448,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25443,7 +25469,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25539,8 +25565,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Er faktureringskontakt"
@@ -25982,8 +26007,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -26089,7 +26113,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26120,11 +26144,11 @@ msgstr ""
msgid "Issuing Date"
msgstr "Utstedelsesdato"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26248,7 +26272,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26496,7 +26520,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26558,7 +26582,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26757,13 +26781,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26980,7 +27004,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27020,10 +27044,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27064,10 +27088,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27083,19 +27103,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27282,11 +27303,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27387,11 +27408,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27417,11 +27438,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27440,11 +27457,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27461,7 +27478,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27473,7 +27490,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27485,15 +27502,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27505,15 +27522,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27521,7 +27538,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27529,11 +27546,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27549,7 +27566,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27557,7 +27574,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27565,7 +27582,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27611,7 +27628,7 @@ msgstr "Varespesifikt salgsregister"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27635,7 +27652,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27659,11 +27676,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27675,7 +27692,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27685,7 +27702,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27750,9 +27767,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27814,7 +27831,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27890,7 +27907,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28110,7 +28127,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28238,7 +28255,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28320,7 +28337,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28571,12 +28588,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28587,7 +28604,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28646,7 +28663,7 @@ msgstr "Førerkort"
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28707,7 +28724,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28728,12 +28745,12 @@ msgstr ""
msgid "Linked Location"
msgstr "Koblet plassering"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28741,7 +28758,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28799,8 +28816,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28845,8 +28862,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29047,6 +29064,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29090,10 +29112,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29336,9 +29358,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29358,7 +29380,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29396,12 +29418,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29417,11 +29439,11 @@ msgstr ""
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29429,8 +29451,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29449,7 +29471,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29465,7 +29487,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29564,8 +29586,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29644,7 +29666,7 @@ msgstr "Produsent"
msgid "Manufacturer Part Number"
msgstr "Produsentens delenummer"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29669,7 +29691,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29714,10 +29736,6 @@ msgstr "Produksjonsdato"
msgid "Manufacturing Manager"
msgstr "Produksjonsleder"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Produksjonsmengde er påkrevet"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29884,6 +29902,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29898,12 +29922,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29982,7 +30006,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29990,7 +30014,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -30071,7 +30095,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30168,11 +30192,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30240,7 +30264,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30306,12 +30330,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30382,9 +30406,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30416,11 +30440,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30481,15 +30505,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30539,7 +30558,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30569,7 +30588,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30770,7 +30789,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30859,8 +30878,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30868,15 +30887,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30906,7 +30925,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30914,7 +30933,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30951,7 +30970,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31200,11 +31219,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31226,11 +31245,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31239,7 +31258,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31326,7 +31345,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31370,7 +31389,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31379,7 +31398,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31685,7 +31704,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31862,7 +31881,7 @@ msgstr ""
msgid "New Workplace"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31916,7 +31935,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31929,7 +31948,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31942,7 +31961,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31958,7 +31977,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31993,7 +32012,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -32022,19 +32041,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -32064,7 +32083,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32258,7 +32277,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32282,7 +32301,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32353,7 +32372,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32386,7 +32405,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32431,8 +32450,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32533,7 +32552,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32587,7 +32606,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32595,7 +32614,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32778,6 +32797,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32837,18 +32861,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32976,7 +33000,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -33016,7 +33040,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33035,7 +33059,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -33072,7 +33096,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33289,8 +33313,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33313,7 +33337,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33346,7 +33370,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33382,16 +33406,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33409,12 +33433,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33446,7 +33473,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33489,15 +33516,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33522,7 +33549,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33537,11 +33564,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33557,9 +33584,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33732,7 +33759,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33882,7 +33909,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33998,7 +34025,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -34036,7 +34063,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34055,6 +34082,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -34090,7 +34118,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34100,7 +34128,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34160,17 +34188,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34190,11 +34223,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34494,7 +34527,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34515,7 +34548,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34551,7 +34584,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34569,11 +34602,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34679,7 +34712,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34716,7 +34749,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34757,7 +34790,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34823,7 +34856,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34917,7 +34950,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -35044,7 +35077,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35257,7 +35290,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35284,7 +35317,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35317,7 +35350,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35469,7 +35502,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35578,7 +35611,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35629,7 +35662,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35663,7 +35696,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35810,7 +35843,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -36035,7 +36068,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36100,7 +36133,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36129,7 +36162,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36185,6 +36218,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36199,6 +36233,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36256,7 +36291,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36331,8 +36366,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36379,10 +36414,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36391,9 +36430,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36423,6 +36471,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36532,7 +36588,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37096,8 +37152,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37133,7 +37189,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37181,7 +37237,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37189,7 +37245,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37197,7 +37253,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37231,7 +37287,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37256,11 +37312,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37268,11 +37328,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37284,11 +37344,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37296,11 +37356,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Slett buntartikkelen {0}før du slår sammen {1} med {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Vennligst deaktiver arbeidsflyten midlertidig for journalregistrering {0}"
@@ -37308,7 +37368,7 @@ msgstr "Vennligst deaktiver arbeidsflyten midlertidig for journalregistrering {0
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37332,7 +37392,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37344,20 +37404,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37365,15 +37425,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37381,7 +37441,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37390,7 +37450,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37406,7 +37466,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37426,7 +37486,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37443,7 +37503,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37463,7 +37523,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37491,7 +37551,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37559,11 +37619,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37622,7 +37682,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37638,7 +37698,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37668,7 +37728,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37677,8 +37737,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37710,11 +37770,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37730,7 +37790,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37747,7 +37807,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37771,7 +37831,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37844,11 +37904,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37868,7 +37932,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37926,7 +37990,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37955,7 +38019,7 @@ msgstr "Vennligst velg gyldig dokumenttype (DocType)."
msgid "Please select weekly off day"
msgstr "Vennligst velg ukentlig fridag"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37964,11 +38028,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37980,7 +38044,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -38010,7 +38074,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -38028,7 +38092,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38074,7 +38138,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38111,23 +38175,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38156,7 +38220,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38164,7 +38228,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38176,15 +38240,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38223,7 +38287,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38245,7 +38309,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38258,7 +38322,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38363,8 +38427,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38429,7 +38493,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38447,7 +38511,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38569,10 +38633,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38646,18 +38706,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38830,6 +38895,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38853,6 +38919,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38904,7 +38971,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39259,7 +39326,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39268,8 +39335,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39277,7 +39344,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39380,10 +39447,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39437,7 +39500,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39518,6 +39581,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39613,8 +39680,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39679,7 +39746,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39893,7 +39960,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Invitasjon til prosjektsamarbeid"
@@ -39937,7 +40004,7 @@ msgstr "Status for prosjektet"
msgid "Project Summary"
msgstr "Prosjektsammendrag"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Prosjektsammendrag for {0}"
@@ -40068,7 +40135,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40214,7 +40281,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40229,7 +40296,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40301,8 +40368,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40625,7 +40693,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40640,7 +40708,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40655,7 +40723,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40789,7 +40857,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40887,6 +40955,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40896,10 +40965,6 @@ msgstr ""
msgid "Purpose"
msgstr "Formål"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Formålet må være ett av {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40955,6 +41020,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41003,6 +41069,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41111,11 +41178,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41166,8 +41233,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41222,8 +41289,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41459,17 +41526,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41483,7 +41550,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41615,7 +41682,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41750,7 +41817,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41760,21 +41827,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41797,7 +41864,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41916,11 +41983,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42227,7 +42294,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42393,7 +42460,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42432,12 +42499,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42446,7 +42507,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42627,7 +42688,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43088,7 +43149,7 @@ msgstr "Referanse #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43252,11 +43313,11 @@ msgstr ""
msgid "References"
msgstr "Referanser"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43418,7 +43479,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43476,7 +43537,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43540,7 +43601,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43557,7 +43618,7 @@ msgstr "Navngivingsjobber for dokumenttype (DocType) {0} er satt i kø."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Navngivingsjobber for dokumenttype (DocType) {0} er ikke satt i kø."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43680,7 +43741,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43925,7 +43986,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44106,7 +44167,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44151,7 +44212,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44195,7 +44256,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44265,14 +44326,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44281,13 +44342,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44553,7 +44614,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44578,8 +44639,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44654,7 +44715,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44690,7 +44751,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44788,8 +44849,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -45021,7 +45082,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -45040,8 +45101,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45221,21 +45282,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45256,7 +45317,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45317,31 +45378,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45391,11 +45452,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45403,7 +45464,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45420,7 +45481,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45444,22 +45505,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45488,7 +45549,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45496,7 +45557,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45524,7 +45585,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45565,7 +45626,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45577,10 +45638,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45602,11 +45659,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45628,15 +45685,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45644,7 +45701,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45660,18 +45717,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Rad #{0}: Dokumenttypen (DocType) referanse må være en av innkjøpsordre, Innkjøpsfaktura eller Journal Entry"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Rad #{0}: Dokumenttypen (DocType) referanse må være en av Salgsordre, Salgsfaktura, Journalregistrering eller Purring"
@@ -45710,7 +45767,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45730,19 +45787,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45754,19 +45811,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45782,6 +45839,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr ""
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45798,7 +45859,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45811,7 +45872,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45823,7 +45884,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45859,7 +45920,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45875,7 +45936,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45976,7 +46037,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45984,7 +46045,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45992,7 +46053,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -46024,11 +46085,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -46045,7 +46106,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -46065,7 +46126,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -46073,7 +46134,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46118,16 +46179,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46143,7 +46204,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46167,7 +46228,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46235,7 +46296,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46247,10 +46308,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46259,11 +46316,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46275,11 +46332,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46287,11 +46344,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46304,11 +46361,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46320,7 +46377,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46366,7 +46423,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46374,7 +46431,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46581,8 +46638,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46604,8 +46661,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46619,18 +46676,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46654,8 +46716,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46824,11 +46886,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -47026,25 +47088,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -47088,6 +47150,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47100,7 +47163,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47206,7 +47269,7 @@ msgstr "Sammendrag av innbetalinger fra salg"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47299,7 +47362,7 @@ msgstr "Salgsregister"
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47323,7 +47386,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47442,7 +47505,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47474,12 +47537,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47721,7 +47784,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47840,8 +47903,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47879,7 +47942,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47921,7 +47984,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47957,7 +48020,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47982,7 +48045,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -48020,7 +48083,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -48095,7 +48158,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48118,7 +48181,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48134,8 +48197,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48152,7 +48215,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48184,7 +48247,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48201,7 +48264,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48209,6 +48272,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48236,7 +48305,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48267,30 +48336,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48543,7 +48612,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48563,7 +48632,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48608,7 +48677,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48748,7 +48817,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48818,7 +48887,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49232,7 +49301,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49251,8 +49320,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49419,11 +49488,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49455,7 +49524,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49566,7 +49635,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49586,6 +49655,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49778,7 +49851,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49816,7 +49889,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49959,8 +50032,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50292,7 +50365,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50337,7 +50410,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50379,8 +50452,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50404,7 +50477,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50468,7 +50541,7 @@ msgstr ""
msgid "Source Location"
msgstr "Kildeplassering"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50477,11 +50550,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50539,7 +50612,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50547,23 +50625,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "Kilde- og måplassering kan ikke være den samme"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50605,7 +50682,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50613,7 +50690,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50637,7 +50714,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50649,6 +50726,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50721,13 +50803,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50748,8 +50830,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50784,7 +50866,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50913,7 +50995,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50943,6 +51025,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50951,8 +51034,8 @@ msgstr "Lager"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51052,6 +51135,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51061,10 +51154,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51128,7 +51217,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51136,8 +51225,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51215,8 +51304,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51319,8 +51408,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51332,7 +51421,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51344,7 +51433,7 @@ msgstr "Lageravstemming"
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51369,9 +51458,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51382,7 +51471,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51407,10 +51496,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51438,7 +51527,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51478,7 +51567,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51593,7 +51682,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51726,11 +51815,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51785,14 +51874,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51850,7 +51939,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52112,7 +52201,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52201,7 +52290,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52222,7 +52311,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52376,7 +52465,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52400,7 +52489,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52560,7 +52649,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52658,6 +52747,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52667,7 +52757,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52682,6 +52772,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52766,7 +52857,7 @@ msgstr "Sammendrag av leverandørreskontro"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52801,8 +52892,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52854,7 +52943,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52883,7 +52972,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52972,7 +53061,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52989,17 +53078,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -53012,8 +53096,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53104,7 +53188,7 @@ msgstr "Synkronisering startet"
msgid "Synchronize all accounts every hour"
msgstr "Synkroniser alle kontoer hver time"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53134,7 +53218,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53155,10 +53239,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53306,7 +53396,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53314,24 +53404,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53448,8 +53537,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53481,7 +53570,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53503,7 +53591,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53519,6 +53606,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53530,8 +53618,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53605,7 +53693,7 @@ msgstr ""
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53623,7 +53711,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53638,7 +53726,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53957,7 +54045,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53990,8 +54078,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -54042,13 +54130,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54230,7 +54318,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54329,7 +54417,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54382,7 +54470,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54398,7 +54487,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Serie-/partinummer-kombinasjonen {0} er ikke gyldig for denne transaksjonen. 'Transaksjonstype' skal være 'Utgående' i stedet for 'Inngående' i serie-/partinummer-kombinasjonen {0}"
@@ -54434,7 +54523,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54442,7 +54531,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54462,7 +54555,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54495,7 +54588,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54536,11 +54629,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54561,7 +54654,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54588,7 +54681,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54646,7 +54739,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54658,6 +54751,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54699,7 +54798,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54715,7 +54814,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54748,7 +54847,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54770,11 +54869,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54822,15 +54921,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54838,19 +54937,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54858,7 +54957,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54874,7 +54973,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54903,7 +55002,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54943,7 +55042,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54999,11 +55098,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55037,7 +55136,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr ""
@@ -55140,11 +55239,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55213,7 +55312,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55221,15 +55320,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55237,7 +55336,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55306,7 +55405,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55417,7 +55516,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55526,7 +55625,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55753,11 +55852,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55800,11 +55903,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55812,7 +55915,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55837,7 +55940,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55987,7 +56090,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56094,12 +56197,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56401,7 +56504,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56413,7 +56516,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56696,7 +56799,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56871,7 +56974,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56895,11 +56998,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -57004,7 +57107,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -57051,11 +57155,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57236,8 +57345,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57501,6 +57610,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57516,7 +57626,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57577,7 +57687,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57590,7 +57700,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57662,12 +57772,12 @@ msgstr ""
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57749,7 +57859,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57768,7 +57878,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57785,7 +57895,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr "Måleenhet (UOM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57930,7 +58040,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57970,12 +58080,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58151,7 +58261,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58230,11 +58340,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58436,7 +58546,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58478,7 +58588,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58542,6 +58652,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58564,8 +58679,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58575,7 +58690,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58585,12 +58700,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58784,7 +58899,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58800,14 +58914,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58815,19 +58927,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58837,7 +58949,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Verdisatsen for objekt levert fra kunde er satt til null."
@@ -58851,7 +58963,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58863,7 +58975,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58982,12 +59094,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -59006,7 +59118,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -59024,7 +59136,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -59035,7 +59147,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59329,7 +59441,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59401,7 +59513,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59475,7 +59587,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59502,7 +59614,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59682,8 +59794,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59708,7 +59820,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59845,11 +59957,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59939,7 +60051,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -60008,7 +60120,7 @@ msgstr "Nettsted:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Uke {0} {1}"
@@ -60138,7 +60250,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60148,7 +60260,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60158,11 +60270,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60307,7 +60419,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60344,7 +60456,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60378,7 +60490,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60419,19 +60531,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60440,16 +60556,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60474,7 +60590,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60522,7 +60638,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60613,14 +60729,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60725,7 +60841,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60781,11 +60897,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Du har ikke tillatelse til å oppdatere i henhold til betingelsene angitt i {} arbeidsflyt."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60793,7 +60909,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60821,7 +60937,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60862,11 +60978,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60890,7 +61006,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60951,7 +61067,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60963,19 +61079,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60987,7 +61103,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -61011,7 +61127,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -61027,7 +61143,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -61074,11 +61190,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61100,11 +61216,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61145,7 +61261,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61294,7 +61410,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61327,7 +61443,7 @@ msgstr ""
msgid "reconciled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61362,7 +61478,7 @@ msgstr ""
msgid "sandbox"
msgstr "sandkasse"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61370,8 +61486,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61389,7 +61505,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61416,7 +61532,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61438,7 +61554,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61446,7 +61562,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61454,7 +61570,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61487,11 +61603,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61499,7 +61615,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61587,11 +61703,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61603,7 +61719,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61612,7 +61728,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61637,7 +61753,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61659,7 +61775,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61667,12 +61783,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61680,7 +61796,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61688,7 +61804,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61696,7 +61812,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61736,27 +61852,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61764,7 +61880,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61780,7 +61896,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61793,7 +61909,7 @@ msgstr "{0} til {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61809,16 +61925,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61830,7 +61946,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61846,7 +61962,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61884,8 +62000,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61995,7 +62111,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -62044,8 +62160,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -62065,11 +62181,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62077,11 +62193,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -62093,7 +62209,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} er kansellert eller stengt."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62105,7 +62221,7 @@ msgstr "{ref_doctype} {ref_name} er {status}."
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/nl.po b/erpnext/locale/nl.po
index f234f54e548..3dcd0e75368 100644
--- a/erpnext/locale/nl.po
+++ b/erpnext/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:13\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Uitbesteed werk"
msgid " Summary"
msgstr " Samenvatting"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Door klant geleverd artikel\" kan niet ook Aankoop artikel zijn"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Door klant geleverd artikel\" kan geen waarderingstarief hebben"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "“Is Vast Activa” kan niet uitgevinkt worden, omdat er een activa-record bestaat voor het artikel."
@@ -268,11 +268,11 @@ msgstr "% van de materialen geleverd voor deze verkooporder"
msgid "% of materials delivered against this Sales Order"
msgstr "% van de materialen geleverd voor deze verkooporder"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "\"Rekening\" in het gedeelte Boekhouding van Klant {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "\"Meerdere verkooporders tegen een inkooporder van een klant toestaan"
@@ -284,7 +284,7 @@ msgstr "'Gebaseerd op' en 'Groepeer per' kunnen niet hetzelfde zijn"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Dagen sinds laatste opdracht' moet groter of gelijk zijn aan nul"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Standaard {0} rekening' in Bedrijf {1}"
@@ -302,7 +302,7 @@ msgstr "\"Vanaf datum\" is vereist"
msgid "'From Date' must be after 'To Date'"
msgstr "'Vanaf Datum' moet na 'Tot Datum' zijn"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Heeft serienummer' kan niet 'ja' zijn voor niet-voorraadartikel"
@@ -314,9 +314,9 @@ msgstr "'Inspectie vereist vóór levering' is uitgeschakeld voor het item {0},
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Inspectie vereist vóór levering' is uitgeschakeld voor het item {0}, het is niet nodig om de kwaliteitsinspectie aan te maken"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Opening'"
@@ -346,8 +346,8 @@ msgstr "'{0}' grootboek wordt al gebruikt door {1}. Gebruik een ander grootboek.
msgid "'{0}' has been already added."
msgstr "'{0}' is al toegevoegd."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' moet in de valuta van het bedrijf zijn {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90-120 dagen"
msgid "90 Above"
msgstr "90 en meer"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Datuminstel
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "De verrekeningsdatum moet na de cheque datum liggen voor de regel(s): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikel {0} in rij(en) {1} gefactureerd meer dan {2} "
@@ -820,7 +820,7 @@ msgstr "Betalingsdocument vereist voor rij(en): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Kan niet te veel in rekening gebracht worden voor de volgende artikelen:
"
@@ -883,7 +883,7 @@ msgstr "Boekingsdatum {0} mag niet vóór de datum van de inkooporder liggen
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 "De prijslijstprijs is niet ingesteld als bewerkbaar in de verkoopinstellingen. In dit scenario voorkomt het instellen van Prijslijst bijwerken op basis van op Prijslijstprijs dat de artikelprijs automatisch wordt bijgewerkt.
Weet u zeker dat u wilt doorgaan?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Om overfacturering toe te staan, dient u de limiet in te stellen in de accountinstellingen.
"
@@ -971,11 +971,11 @@ msgstr "Uw sneltoetsen\n"
msgid "Your Shortcuts "
msgstr "Jouw sneltoetsen "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Totaal: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Openstaand bedrag: {0}"
@@ -1045,7 +1045,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Een Klantgroep met dezelfde naam bestaat. Gelieve de naam van de Klant of de Klantgroep wijzigen"
@@ -1209,11 +1209,11 @@ msgstr "Afk."
msgid "Abbreviation"
msgstr "Afkorting"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Afkorting al gebruikt voor een ander bedrijf"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Afkorting is verplicht"
@@ -1221,7 +1221,7 @@ msgstr "Afkorting is verplicht"
msgid "Abbreviation: {0} must appear only once"
msgstr "Afkorting: {0} mag slechts één keer voorkomen"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Boven"
@@ -1275,7 +1275,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Geaccepteerde hoeveelheid in voorraad UOM"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Geaccepteerd Aantal"
@@ -1311,7 +1311,7 @@ msgstr "Toegangssleutel vereist voor serviceprovider: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Volgens CEFACT/ICG/2010/IC013 of CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Volgens de stuklijst {0}ontbreekt het artikel '{1}' in de voorraadadministratie."
@@ -1429,8 +1429,8 @@ msgstr "Accounthoofd"
msgid "Account Manager"
msgstr "Accountmanager"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Account ontbreekt"
@@ -1448,7 +1448,7 @@ msgstr "Account ontbreekt"
msgid "Account Name"
msgstr "Accountnaam"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Account niet gevonden"
@@ -1461,7 +1461,7 @@ msgstr "Account niet gevonden"
msgid "Account Number"
msgstr "Rekeningnummer"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Accountnummer {0} al gebruikt in account {1}"
@@ -1500,7 +1500,7 @@ msgstr "Accountsubtype"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1516,11 +1516,11 @@ msgstr "Rekening Type"
msgid "Account Value"
msgstr "Accountwaarde"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Accountbalans reeds in Credit, 'Balans moet zijn' mag niet als 'Debet' worden ingesteld"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Accountbalans reeds in Debet, 'Balans moet zijn' mag niet als 'Credit' worden ingesteld"
@@ -1587,15 +1587,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Rekening met onderliggende nodes kunnen niet worden omgezet naar grootboek"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Rekening met de onderliggende knooppunten kan niet worden ingesteld als grootboek"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Rekening met bestaande transactie kan niet worden omgezet naar een groep ."
@@ -1603,8 +1603,8 @@ msgstr "Rekening met bestaande transactie kan niet worden omgezet naar een groep
msgid "Account with existing transaction can not be deleted"
msgstr "Rekening met bestaande transactie kan niet worden verwijderd"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Rekening met bestaande transactie kan niet worden geconverteerd naar grootboek"
@@ -1612,11 +1612,11 @@ msgstr "Rekening met bestaande transactie kan niet worden geconverteerd naar gro
msgid "Account {0} added multiple times"
msgstr "Account {0} meerdere keren toegevoegd"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Account {0} kan niet worden omgezet naar Groep omdat het al is ingesteld als {1} voor {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Account {0} kan niet worden uitgeschakeld omdat het al is ingesteld als {1} voor {2}."
@@ -1624,11 +1624,11 @@ msgstr "Account {0} kan niet worden uitgeschakeld omdat het al is ingesteld als
msgid "Account {0} does not belong to company {1}"
msgstr "Account {0} behoort niet tot bedrijf {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Rekening {0} behoort niet tot bedrijf: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Rekening {0} bestaat niet"
@@ -1644,15 +1644,15 @@ msgstr "Rekening {0} komt niet overeen met Bedrijf {1} in Rekeningmodus: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Account {0} behoort niet tot bedrijf {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Account {0} bestaat in moederbedrijf {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Account {0} is toegevoegd in het onderliggende bedrijf {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Account {0} is uitgeschakeld."
@@ -1660,7 +1660,7 @@ msgstr "Account {0} is uitgeschakeld."
msgid "Account {0} is frozen"
msgstr "Rekening {0} is bevroren"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Account {0} is ongeldig. Account Valuta moet {1} zijn"
@@ -1668,19 +1668,19 @@ msgstr "Account {0} is ongeldig. Account Valuta moet {1} zijn"
msgid "Account {0} should be of type Expense"
msgstr "Rekening {0} moet van het type Uitgave zijn"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Rekening {0}: Bovenliggende rekening {1} kan geen grootboek zijn"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Rekening {0}: Bovenliggende rekening {1} hoort niet bij bedrijf: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Rekening {0}: Bovenliggende rekening {1} bestaat niet"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Rekening {0}: U kunt niet de rekening zelf toewijzen als bovenliggende rekening"
@@ -1696,7 +1696,7 @@ msgstr "Account: {0} kan alleen worden bijgewerkt via Voorraad Transacties"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Account: {0} is niet toegestaan onder Betaling invoeren"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Account: {0} met valuta: {1} kan niet worden geselecteerd"
@@ -1981,8 +1981,8 @@ msgstr "Boekhoudkundige boekingen"
msgid "Accounting Entry for Asset"
msgstr "Boekhoudingsinvoer voor activa"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Boekhoudkundige journaalpost voor LCV in voorraadboeking {0}"
@@ -2006,8 +2006,8 @@ msgstr "Boekhoudkundige invoer voor service"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Boekingen voor Voorraad"
@@ -2016,7 +2016,7 @@ msgstr "Boekingen voor Voorraad"
msgid "Accounting Entry for {0}"
msgstr "Boekhoudkundige journaalpost voor {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Rekening ingave voor {0}: {1} kan alleen worden gedaan in valuta: {2}"
@@ -2071,7 +2071,6 @@ msgstr "Boekhoudkundige transacties zijn tot deze datum geblokkeerd. Alleen gebr
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2084,14 +2083,13 @@ msgstr "Boekhoudkundige transacties zijn tot deze datum geblokkeerd. Alleen gebr
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Rekeningen"
@@ -2121,8 +2119,8 @@ msgstr "Ontbrekende accounts in het rapport"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2222,15 +2220,15 @@ msgstr "Rekeningtabel mag niet leeg zijn."
msgid "Accounts to Merge"
msgstr "Te fuseren accounts"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Opgelopen kosten"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Cumulatieve afschrijvingen"
@@ -2395,7 +2393,7 @@ msgstr "Uitgevoerde acties"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2519,7 +2517,7 @@ msgstr "Werkelijke Einddatum"
msgid "Actual End Date (via Timesheet)"
msgstr "Werkelijke einddatum (via urenregistratie)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "De daadwerkelijke einddatum mag niet vóór de daadwerkelijke startdatum liggen."
@@ -2641,7 +2639,7 @@ msgstr "Werkelijke tijd in uren (via urenregistratie)"
msgid "Actual qty in stock"
msgstr "Werkelijke hoeveelheid op voorraad"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Werkelijke soort belasting kan niet worden opgenomen in post tarief in rij {0}"
@@ -2650,7 +2648,7 @@ msgstr "Werkelijke soort belasting kan niet worden opgenomen in post tarief in r
msgid "Ad-hoc Qty"
msgstr "Ad-hoc hoeveelheid"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Toevoegen / bewerken Prijzen"
@@ -3149,7 +3147,7 @@ msgstr "Aanvullende informatie"
msgid "Additional Information updated successfully."
msgstr "Aanvullende informatie succesvol bijgewerkt."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Aanvullende materiaaloverdracht"
@@ -3172,7 +3170,7 @@ msgstr "Extra bedrijfskosten"
msgid "Additional Transferred Qty"
msgstr "Extra overgedragen hoeveelheid"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3184,11 +3182,6 @@ msgstr "Extra overgedragen hoeveelheid {0}\n"
"\t\t\t\t\tvan het veld 'Extra grondstoffen overdragen naar WIP'\n"
"\t\t\t\t\tin de productie-instellingen."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Aanvullende informatie over de klant."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Aanvullende {0} {1} van item {2} vereist volgens de stuklijst om deze transactie te voltooien"
@@ -3334,11 +3327,6 @@ msgstr "Adres moet aan een bedrijf zijn gekoppeld. Voeg een rij toe voor Bedrijf
msgid "Address used to determine Tax Category in transactions"
msgstr "Het adres wordt gebruikt om de belastingcategorie in transacties te bepalen."
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Aantal aanpassen"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Aanpassing ten opzichte van"
@@ -3351,8 +3339,8 @@ msgstr "Aanpassing op basis van het tarief op de inkoopfactuur"
msgid "Administrative Assistant"
msgstr "Administratief medewerker"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administratie Kosten"
@@ -3420,7 +3408,7 @@ msgstr "Status van vooruitbetaling"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Vooruitbetalingen"
@@ -3540,7 +3528,7 @@ msgstr "Tegen Rekening"
msgid "Against Blanket Order"
msgstr "Tegen een algemene beschikking"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Tegen klantorder {0}"
@@ -3682,11 +3670,11 @@ msgstr "Leeftijd"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Leeftijd (dagen)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Leeftijd ({0})"
@@ -3836,21 +3824,21 @@ msgstr "Alle Doelgroepen"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Alle afdelingen"
@@ -3930,7 +3918,7 @@ msgstr "Alle leveranciersgroepen"
msgid "All Territories"
msgstr "Alle gebieden"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Alle magazijnen"
@@ -3944,6 +3932,11 @@ msgstr "Alle toewijzingen zijn succesvol afgestemd."
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Alle communicatie, inclusief en daarboven, wordt verplaatst naar de nieuwe uitgave"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Alle artikelen zijn reeds aangevraagd."
@@ -3952,23 +3945,23 @@ msgstr "Alle artikelen zijn reeds aangevraagd."
msgid "All items have already been Invoiced/Returned"
msgstr "Alle items zijn al gefactureerd / geretourneerd"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Alle artikelen zijn reeds ontvangen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Alle items zijn al overgedragen voor deze werkbon."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Alle items in dit document hebben reeds een gekoppelde kwaliteitsinspectie."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Voor deze verkoopfactuur moeten alle artikelen gekoppeld zijn aan een verkooporder of een inkooporder van een onderaannemer."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Alle gekoppelde verkooporders moeten worden uitbesteed."
@@ -3982,11 +3975,11 @@ msgstr "Alle opmerkingen en e-mails worden gekopieerd van het ene document naar
msgid "All the items have been already returned."
msgstr "Alle artikelen zijn al geretourneerd."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Alle benodigde artikelen (grondstoffen) worden uit de stuklijst gehaald en in deze tabel ingevuld. Hier kunt u ook het bronmagazijn voor elk artikel wijzigen. Tijdens de productie kunt u de overgedragen grondstoffen vanuit deze tabel volgen."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Al deze items zijn al gefactureerd / geretourneerd"
@@ -4005,7 +3998,7 @@ msgstr "Toewijzen"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Voorschotten automatisch toewijzen (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Toewijzen Betaling Bedrag"
@@ -4015,7 +4008,7 @@ msgstr "Toewijzen Betaling Bedrag"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Betaling toewijzen op basis van betalingsvoorwaarden"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Betalingsverzoek toewijzen"
@@ -4045,7 +4038,7 @@ msgstr "Toegewezen"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4102,7 +4095,7 @@ msgstr "Toegewezen aantal"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4166,7 +4159,7 @@ msgstr "Toestaan bij retournering"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Sta interne transfers toe tegen marktconforme prijzen."
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Meerdere artikelen kunnen nu eenmaal aan een transactie worden toegevoegd."
@@ -4289,16 +4282,6 @@ msgstr "Sta Resetten Service Level Agreement toe vanuit ondersteuningsinstelling
msgid "Allow Sales"
msgstr "Verkoop toestaan"
-#. 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 "Verkoopfactuur aanmaken zonder leveringsbon toestaan"
-
-#. 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 "Verkoopfactuur aanmaken zonder verkooporder toestaan"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4424,6 +4407,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4500,10 +4493,8 @@ msgstr "Toegestane artikelen"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Toegestaan om mee te handelen"
@@ -4515,6 +4506,11 @@ msgstr "De toegestane primaire rollen zijn 'Klant' en 'Leverancier'. Selecteer s
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4556,8 +4552,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Je kunt ook niet meer terugschakelen naar FIFO nadat je de waarderingsmethode voor dit artikel hebt ingesteld op Voortschrijdend Gemiddelde."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4798,7 +4794,7 @@ msgstr "Vraag het altijd"
msgid "Amount"
msgstr "Bedrag"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Bedrag (AED)"
@@ -4932,12 +4928,12 @@ msgid "Amount to Bill"
msgstr "Te factureren bedrag"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Bedrag {0} {1} tegen {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Bedrag {0} {1} in mindering gebracht tegen {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4982,11 +4978,11 @@ msgstr "Bedrag"
msgid "An Item Group is a way to classify items based on types."
msgstr "Een artikelgroep is een manier om artikelen te classificeren op basis van type."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Er is een fout opgetreden tijdens het opnieuw plaatsen van de artikelwaardering via {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Er is een fout opgetreden tijdens het updateproces"
@@ -5526,7 +5522,7 @@ msgstr "Aangezien het veld {0} is ingeschakeld, is het veld {1} verplicht."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Aangezien het veld {0} is ingeschakeld, moet de waarde van het veld {1} groter zijn dan 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Omdat er al transacties zijn ingediend voor item {0}, kunt u de waarde van {1} niet wijzigen."
@@ -5538,7 +5534,7 @@ msgstr "Omdat er gereserveerde voorraad is, kunt u {0} niet uitschakelen."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Omdat er voldoende subassemblage-onderdelen zijn, is er geen werkorder nodig voor magazijn {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Omdat er voldoende grondstoffen beschikbaar zijn, is geen materiaal verzoek nodig voor magazijn {0}."
@@ -5676,7 +5672,7 @@ msgstr "Asset Categorie Account"
msgid "Asset Category Name"
msgstr "Naam van de activacategorie"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Asset Categorie is verplicht voor post der vaste activa"
@@ -5853,8 +5849,8 @@ msgstr "Aantal activa"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5954,7 +5950,7 @@ msgstr "Activa geannuleerd"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Asset kan niet worden geannuleerd, want het is al {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Een actief mag niet worden afgeschreven voordat de laatste afschrijvingsboeking is gemaakt."
@@ -5986,7 +5982,7 @@ msgstr "Apparaat buiten gebruik vanwege reparatie {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Activa ontvangen op locatie {0} en uitgegeven aan medewerker {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Activa hersteld"
@@ -5994,20 +5990,20 @@ msgstr "Activa hersteld"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Activa hersteld nadat activa-kapitalisatie {0} werd geannuleerd"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Activa geretourneerd"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Activa gesloopt"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Asset gesloopt via Journal Entry {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Activa verkocht"
@@ -6027,7 +6023,7 @@ msgstr "Asset bijgewerkt nadat deze is opgesplitst in Asset {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Asset bijgewerkt vanwege Assetreparatie {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Asset {0} kan niet worden gesloopt, want het is al {1}"
@@ -6068,7 +6064,7 @@ msgstr "Het activum {0} is niet ingesteld om afschrijvingen te berekenen."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Asset {0} is niet ingediend. Dien de asset in voordat u verdergaat."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Asset {0} moet worden ingediend"
@@ -6118,7 +6114,7 @@ msgstr "Assets zijn niet aangemaakt voor {item_code}. U moet de asset handmatig
msgid "Assets {assets_link} created for {item_code}"
msgstr "Activa {assets_link} gemaakt voor {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Wijs een taak toe aan een medewerker."
@@ -6179,7 +6175,7 @@ msgstr "Ten minste een van de toepasselijke modules moet worden geselecteerd"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Er moet ten minste één van de opties 'Verkopen' of 'Kopen' geselecteerd zijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Er moet ten minste één grondstofartikel aanwezig zijn in de voorraadpost voor het type {0}"
@@ -6187,21 +6183,17 @@ msgstr "Er moet ten minste één grondstofartikel aanwezig zijn in de voorraadpo
msgid "At least one row is required for a financial report template"
msgstr "Een sjabloon voor een financieel rapport moet minimaal één rij bevatten."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Minimaal één magazijn is verplicht."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "Bij rij #{0}: de verschilrekening mag geen rekening van het type 'Aandelen' zijn. Wijzig het rekeningtype voor rekening {1} of selecteer een andere rekening."
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "Op rij # {0}: de reeks-ID {1} mag niet kleiner zijn dan de vorige rij-reeks-ID {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "Op rij #{0}: u hebt de verschilrekening {1}geselecteerd, dit is een rekening van het type 'Kosten van verkochte goederen'. Selecteer een andere rekening."
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6283,11 +6275,11 @@ msgstr "Attribuutnaam"
msgid "Attribute Value"
msgstr "Attribuutwaarde"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Attributentabel is verplicht"
@@ -6295,19 +6287,19 @@ msgstr "Attributentabel is verplicht"
msgid "Attribute value: {0} must appear only once"
msgstr "Attribuutwaarde: {0} mag slechts één keer voorkomen"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Kenmerk {0} meerdere keren geselecteerd in Attributes Tabel"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Attributen"
@@ -6519,7 +6511,7 @@ msgstr "Automatisch matchen en de partij instellen in banktransacties"
msgid "Auto re-order"
msgstr "Automatisch opnieuw bestellen"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Automatisch herhaalde document bijgewerkt"
@@ -6631,7 +6623,7 @@ msgstr "Beschikbaar voor gebruik datum"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Beschikbaar aantal"
@@ -6720,10 +6712,6 @@ msgstr "Beschikbaar vanaf datum"
msgid "Available for use date is required"
msgstr "Beschikbaar voor gebruik datum is vereist"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Beschikbare hoeveelheid is {0}, u heeft {1} nodig"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Beschikbaar {0}"
@@ -6732,8 +6720,8 @@ msgstr "Beschikbaar {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Beschikbaar voor gebruik De datum moet na de aankoopdatum zijn"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Gemiddelde leeftijd"
@@ -6757,7 +6745,9 @@ msgstr "Gemiddelde orderwaarde"
msgid "Average Order Values"
msgstr "Gemiddelde orderwaarden"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Gemiddelde score"
@@ -6781,7 +6771,7 @@ msgid "Avg Rate"
msgstr "Gemiddeld tarief"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Gemiddeld tarief (Overschotvoorraad)"
@@ -6839,7 +6829,7 @@ msgstr "BIN Aantal"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6862,7 +6852,7 @@ msgstr "BOM"
msgid "BOM 1"
msgstr "BOM 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} en BOM 2 {1} mogen niet hetzelfde zijn"
@@ -6934,11 +6924,6 @@ msgstr "Stuklijst Uitklap Artikel"
msgid "BOM ID"
msgstr "BOM-ID"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "BOM-informatie"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7092,7 +7077,7 @@ msgstr "BOM-website-item"
msgid "BOM Website Operation"
msgstr "BOM-websitewerking"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "De stuklijst (BOM) en de hoeveelheid eindproduct zijn verplicht voor demontage."
@@ -7160,7 +7145,7 @@ msgstr "Voorraadinvoer met terugwerkende kracht"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Materialen terugspoelen uit het magazijn voor onderhanden werk."
@@ -7224,7 +7209,7 @@ msgstr "Saldo in basisvaluta"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Balans aantal"
@@ -7289,7 +7274,7 @@ msgstr "Balanstype"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Balans Waarde"
@@ -7445,8 +7430,8 @@ msgid "Bank Balance"
msgstr "Banksaldo"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bankkosten"
@@ -7561,8 +7546,8 @@ msgstr "Bankgarantietype"
msgid "Bank Name"
msgstr "Banknaam"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Bank Kredietrekening"
@@ -7735,11 +7720,11 @@ msgstr "Bankieren"
msgid "Barcode Type"
msgstr "Barcodetype"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Barcode {0} is al gebruikt in het Item {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Barcode {0} is geen geldige {1} code"
@@ -7896,7 +7881,7 @@ msgstr "Basistarief (conform voorraadeenheid)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7971,7 +7956,7 @@ msgstr "Batch Item Vervaldatum Status"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8060,13 +8045,13 @@ msgstr "Batchhoeveelheid bijgewerkt naar {0}"
msgid "Batch Quantity"
msgstr "Aantal per batch"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8083,7 +8068,7 @@ msgstr "Batch UOM"
msgid "Batch and Serial No"
msgstr "Batch- en serienummer"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Er is geen batch aangemaakt voor item {} omdat er geen batchreeks bestaat."
@@ -8106,12 +8091,12 @@ msgstr "Batch {0} en magazijn"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Batch {0} is niet beschikbaar in magazijn {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Batch {0} van item {1} is verlopen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Batch {0} van item {1} is uitgeschakeld."
@@ -8166,7 +8151,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8175,7 +8160,7 @@ msgstr "Factuurdatum"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8189,11 +8174,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Stuklijst"
@@ -8294,7 +8281,7 @@ msgstr "Factuuradresgegevens"
msgid "Billing Address Name"
msgstr "Factuuradres Naam"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Het factuuradres behoort niet tot de {0}"
@@ -8546,6 +8533,16 @@ msgstr "Blokfactuur"
msgid "Block Supplier"
msgstr "Blokleverancier"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8642,7 +8639,7 @@ msgstr "geboekt"
msgid "Booked Fixed Asset"
msgstr "Geboekte vaste activa"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "De boekingen zijn gesloten tot de periode die eindigt op {0}"
@@ -8901,8 +8898,8 @@ msgstr "Bouw een boom"
msgid "Buildable Qty"
msgstr "Bouwbare hoeveelheid"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Gebouwen"
@@ -9063,16 +9060,16 @@ msgstr "Standaard wordt de leveranciersnaam ingesteld op de ingevoerde leveranci
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Kredietlimietcontrole overslaan bij verkooporder"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Kredietcontrole overslaan bij verkooporder"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9120,8 +9117,8 @@ msgstr "CRM-notitie"
msgid "CRM Settings"
msgstr "CRM-instellingen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "CWIP-account"
@@ -9376,7 +9373,7 @@ msgstr "Campagne {0} niet gevonden"
msgid "Can be approved by {0}"
msgstr "Kan door {0} worden goedgekeurd"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Kan de werkorder niet sluiten. De {0} taakkaarten bevinden zich namelijk in de status 'In uitvoering'."
@@ -9409,13 +9406,13 @@ msgstr "Kan niet filteren op basis van vouchernummer, indien gegroepeerd per vou
msgid "Can only make payment against unbilled {0}"
msgstr "Kan alleen betaling uitvoeren voor ongefactureerde {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Kan de rij enkel verwijzen bij het aanrekeningstype 'Hoeveelheid vorige rij' of 'Totaal vorige rij'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "De waarderingsmethode kan niet worden gewijzigd, omdat er transacties zijn met artikelen waarvoor geen eigen waarderingsmethode bestaat."
@@ -9457,7 +9454,7 @@ msgstr "Kan geen kassier toewijzen"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Kan aankomsttijd niet berekenen omdat het adres van de bestuurder ontbreekt."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Kan de instellingen van het voorraadaccount niet wijzigen"
@@ -9465,9 +9462,9 @@ msgstr "Kan de instellingen van het voorraadaccount niet wijzigen"
msgid "Cannot Create Return"
msgstr "Kan geen retourzending aanmaken"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Samenvoegen is niet mogelijk"
@@ -9495,7 +9492,7 @@ msgstr "Kan {0} {1}niet wijzigen, maak in plaats daarvan een nieuwe aan."
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Het is niet mogelijk om TDS (Tax Deducted at Source) op meerdere partijen in één invoer toe te passen."
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Kan geen vast activumartikel zijn omdat het grootboek Voorraad wordt gecreëerd."
@@ -9515,7 +9512,7 @@ msgstr "Kan de voorraadreservering {0}niet annuleren, omdat deze al in de werkor
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Annuleren is niet mogelijk omdat de verwerking van geannuleerde documenten nog in behandeling is."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Kan niet annuleren omdat ingediende Voorraad Invoer {0} bestaat"
@@ -9535,15 +9532,15 @@ msgstr "Dit document kan niet worden geannuleerd omdat het is gekoppeld aan de i
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Dit document kan niet worden geannuleerd omdat het is gekoppeld aan het ingediende bestand {asset_link}. Annuleer het bestand om verder te gaan."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Kan transactie voor voltooide werkorder niet annuleren."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Kan attributen na beurstransactie niet wijzigen. Maak een nieuw artikel en breng aandelen over naar het nieuwe item"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Het referentiedocumenttype kan niet worden gewijzigd."
@@ -9551,11 +9548,11 @@ msgstr "Het referentiedocumenttype kan niet worden gewijzigd."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Kan de service-einddatum voor item in rij {0} niet wijzigen"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Variant-eigenschappen kunnen niet worden gewijzigd na beurstransactie. U moet een nieuw item maken om dit te doen."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Kan standaard valuta van het bedrijf niet veranderen want er zijn bestaande transacties. Transacties moeten worden geannuleerd om de standaard valuta te wijzigen."
@@ -9571,11 +9568,11 @@ msgstr "Kan kostenplaats niet omzetten naar grootboek vanwege onderliggende node
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Kan Taak niet converteren naar niet-groep omdat de volgende onderliggende taken bestaan: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Kan niet worden omgezet naar Groep omdat het accounttype is geselecteerd."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Kan niet omzetten naar groep omdat accounttype is geselecteerd."
@@ -9583,7 +9580,7 @@ msgstr "Kan niet omzetten naar groep omdat accounttype is geselecteerd."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Het is niet mogelijk om voorraadreserveringen aan te maken voor inkoopbonnen met een toekomstige datum."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Er kan geen picklijst worden aangemaakt voor verkooporder {0} omdat er voorraad is gereserveerd. Deblokkeer de voorraad om een picklijst te kunnen aanmaken."
@@ -9609,7 +9606,7 @@ msgstr "Kan niet als verloren instellen, omdat offerte is gemaakt."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Kan niet aftrekken als categorie is voor ' Valuation ' of ' Valuation en Total '"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Kan de rij met wisselkoerswinst/verlies niet verwijderen."
@@ -9617,12 +9614,12 @@ msgstr "Kan de rij met wisselkoerswinst/verlies niet verwijderen."
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Kan Serienummer {0} niet verwijderen, omdat het wordt gebruikt in voorraadtransacties"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Een besteld artikel kan niet worden verwijderd."
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Kan beveiligde kern DocType niet verwijderen: {0}"
@@ -9634,7 +9631,7 @@ msgstr "Virtueel documenttype kan niet worden verwijderd: {0}. Virtuele document
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Het is niet mogelijk om de permanente voorraadadministratie uit te schakelen, aangezien er al voorraadboekingen voor het bedrijf {0}bestaan. Annuleer eerst de voorraadtransacties en probeer het opnieuw."
@@ -9642,20 +9639,20 @@ msgstr "Het is niet mogelijk om de permanente voorraadadministratie uit te schak
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Het is niet mogelijk om meer exemplaren te demonteren dan er geproduceerd zijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Het is niet mogelijk om de voorraadadministratie per artikel in te schakelen, omdat er al voorraadboekingen voor het bedrijf {0} bestaan met een voorraadadministratie per magazijn. Annuleer eerst de voorraadtransacties en probeer het opnieuw."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Kan levering met serienummer niet garanderen, aangezien artikel {0} wordt toegevoegd met en zonder Levering met serienummer garanderen."
@@ -9671,7 +9668,7 @@ msgstr "Artikel of magazijn met deze barcode niet gevonden."
msgid "Cannot find Item with this Barcode"
msgstr "Kan item met deze streepjescode niet vinden"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Er kan geen standaardmagazijn worden gevonden voor artikel {0}. Stel er een in in de artikelstamgegevens of in de voorraadinstellingen."
@@ -9679,15 +9676,15 @@ msgstr "Er kan geen standaardmagazijn worden gevonden voor artikel {0}. Stel er
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Kan {0} '{1}' niet samenvoegen met '{2}' omdat beide bestaande boekhoudkundige posten in verschillende valuta's hebben voor bedrijf '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Kan niet meer artikelen {0} produceren dan de bestelhoeveelheid {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Kan geen extra items produceren voor {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Kan niet meer dan {0} items produceren voor {1}"
@@ -9695,12 +9692,12 @@ msgstr "Kan niet meer dan {0} items produceren voor {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Kan niet van klant ontvangen tegen een negatief openstaand saldo."
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "De hoeveelheid mag niet lager zijn dan de bestelde of gekochte hoeveelheid."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Kan niet verwijzen rij getal groter dan of gelijk aan de huidige rijnummer voor dit type Charge"
@@ -9713,14 +9710,14 @@ msgstr "Kan geen linktoken ophalen voor update. Raadpleeg het foutenlogboek voor
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Kan het linktoken niet ophalen. Raadpleeg het foutenlogboek voor meer informatie."
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9734,7 +9731,7 @@ msgstr "Kan niet als verloren instellen, omdat er al een verkooporder is gemaakt
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Kan de autorisatie niet instellen op basis van korting voor {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Kan niet meerdere item-standaardwaarden voor een bedrijf instellen."
@@ -9742,11 +9739,11 @@ msgstr "Kan niet meerdere item-standaardwaarden voor een bedrijf instellen."
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Kan hoeveelheid niet lager instellen dan geleverde hoeveelheid."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Kan hoeveelheid niet lager instellen dan ontvangen hoeveelheid."
@@ -9758,7 +9755,7 @@ msgstr "Kan veld {0} niet instellen voor het kopiëren in varianten"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Kan de verwijdering niet starten. Er is al een andere verwijdering {0} in de wachtrij/wordt al uitgevoerd. Wacht tot deze is voltooid."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9791,7 +9788,7 @@ msgstr "Capaciteit (voorraadeenheid)"
msgid "Capacity Planning"
msgstr "Capaciteitsplanning"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Capaciteitsplanningsfout, geplande starttijd kan niet hetzelfde zijn als eindtijd"
@@ -9810,13 +9807,13 @@ msgstr "Capaciteit in voorraadeenheid"
msgid "Capacity must be greater than 0"
msgstr "De capaciteit moet groter zijn dan 0."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Kapitaalgoederen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Kapitaal Stock"
@@ -10033,7 +10030,7 @@ msgstr "Categoriegegevens"
msgid "Category-wise Asset Value"
msgstr "Categorie-georiënteerde vermogenswaarde"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Voorzichtigheid"
@@ -10138,7 +10135,7 @@ msgstr "Wijzigingsdatum wijzigen"
msgid "Change in Stock Value"
msgstr "Verandering in aandelenwaarde"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Wijzig het rekeningtype in Te ontvangen of selecteer een andere rekening."
@@ -10148,7 +10145,7 @@ msgstr "Wijzig het rekeningtype in Te ontvangen of selecteer een andere rekening
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Wijzig deze datum handmatig om de startdatum voor de volgende synchronisatie in te stellen."
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "De klantnaam is gewijzigd naar '{}' omdat '{}' al bestaat."
@@ -10156,7 +10153,7 @@ msgstr "De klantnaam is gewijzigd naar '{}' omdat '{}' al bestaat."
msgid "Changes in {0}"
msgstr "Wijzigingen in {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Het wijzigen van de klantengroep voor de geselecteerde klant is niet toegestaan."
@@ -10171,7 +10168,7 @@ msgid "Channel Partner"
msgstr "Kanaalpartner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Kosten van het type 'Werkelijk' in rij {0} kunnen niet worden opgenomen in het artikeltarief of het betaalde bedrag."
@@ -10225,7 +10222,7 @@ msgstr "Diagramboom"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10368,7 +10365,7 @@ msgstr "Cheque breedte"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Cheque / Reference Data"
@@ -10426,7 +10423,7 @@ msgstr "Kinddocumentnaam"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referentie naar onderliggende rij"
@@ -10478,6 +10475,11 @@ msgstr "Classificatie van klanten per regio"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10620,11 +10622,11 @@ msgstr "Gesloten document"
msgid "Closed Documents"
msgstr "Gesloten documenten"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Een afgesloten werkorder kan niet worden stopgezet of heropend."
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Gesloten bestelling kan niet worden geannuleerd. Openmaken om te annuleren."
@@ -10876,11 +10878,17 @@ msgstr "Commissiepercentage"
msgid "Commission Rate (%)"
msgstr "Commissiepercentage (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Commissie op de verkoop"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10911,7 +10919,7 @@ msgstr "Communicatie Medium tijdslot"
msgid "Communication Medium Type"
msgstr "Communicatiemediumtype"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Compacte artikelafdruk"
@@ -11310,8 +11318,8 @@ msgstr "Bedrijven"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11364,7 +11372,7 @@ msgstr "Bedrijven"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11453,18 +11461,20 @@ msgstr "Bedrijfsadres weergeven"
msgid "Company Address Name"
msgstr "Bedrijfsadres Naam"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Het bedrijfsadres ontbreekt. U hebt geen toestemming om dit bij te werken. Neem contact op met uw systeembeheerder."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Bedrijfsbankrekening"
@@ -11560,7 +11570,7 @@ msgstr "Bedrijf en plaatsingsdatum zijn verplicht."
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Bedrijfsvaluta's van beide bedrijven moeten overeenkomen voor Inter Company Transactions."
@@ -11595,7 +11605,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Bedrijfslinkveldnaam gebruikt voor filtering (optioneel - laat leeg om alle records te verwijderen)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Bedrijfsnaam niet hetzelfde"
@@ -11634,12 +11644,12 @@ msgstr "Bedrijf dat door de interne leverancier wordt vertegenwoordigd"
msgid "Company {0} added multiple times"
msgstr "Bedrijf {0} heeft meerdere keren toegevoegd"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Company {0} bestaat niet"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Bedrijf {0} wordt meer dan eens toegevoegd"
@@ -11681,7 +11691,7 @@ msgstr "Naam van de concurrent"
msgid "Competitors"
msgstr "Concurrenten"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Voltooi de taak"
@@ -11728,12 +11738,12 @@ msgstr "Voltooide projecten"
msgid "Completed Qty"
msgstr "Voltooide hoeveelheid"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Voltooide hoeveelheid kan niet groter zijn dan 'Te vervaardigen aantal'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Voltooide hoeveelheid"
@@ -11922,7 +11932,7 @@ msgstr "Overweeg boekhoudkundige dimensies"
msgid "Consider Minimum Order Qty"
msgstr "Houd rekening met de minimale bestelhoeveelheid."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Houd rekening met procesverlies."
@@ -12116,7 +12126,7 @@ msgstr "Kosten van verbruikte artikelen"
msgid "Consumed Qty"
msgstr "Verbruikt aantal"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "De verbruikte hoeveelheid mag niet groter zijn dan de gereserveerde hoeveelheid voor artikel {0}"
@@ -12145,7 +12155,7 @@ msgstr "Verbruikte voorraadartikelen, verbruikte activa of verbruikte diensten m
msgid "Consumed Stock Total Value"
msgstr "Totale waarde van de verbruikte voorraad"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "De verbruikte hoeveelheid van artikel {0} overschrijdt de overgedragen hoeveelheid."
@@ -12273,7 +12283,7 @@ msgstr "Contactnummer"
msgid "Contact Person"
msgstr "Contactpersoon"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "De contactpersoon behoort niet tot de {0}"
@@ -12399,6 +12409,11 @@ msgstr "Beheer historische aandelentransacties"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12459,7 +12474,7 @@ msgstr "Conversiefactor"
msgid "Conversion Rate"
msgstr "Conversiepercentage"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Conversiefactor voor Standaard meeteenheid moet 1 zijn in rij {0}"
@@ -12467,15 +12482,15 @@ msgstr "Conversiefactor voor Standaard meeteenheid moet 1 zijn in rij {0}"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "De omrekeningsfactor voor artikel {0} is teruggezet naar 1,0 omdat de eenheid {1} hetzelfde is als de voorraadeenheid {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "De conversieratio mag niet 0 zijn."
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "De wisselkoers is 1,00, maar de documentvaluta is anders dan de bedrijfsvaluta."
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "De wisselkoers moet 1,00 zijn als de documentvaluta gelijk is aan de bedrijfsvaluta."
@@ -12552,13 +12567,13 @@ msgstr "Correctie"
msgid "Corrective Action"
msgstr "Corrigerende maatregelen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Correctiewerkkaart"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Correctieve operatie"
@@ -12725,7 +12740,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12858,7 +12873,7 @@ msgstr "Kostenplaats {} is een groepskostenplaats en groepskostenplaatsen kunnen
msgid "Cost Center: {0} does not exist"
msgstr "Kostenplaats: {0} bestaat niet"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Kostenplaatsen"
@@ -12901,17 +12916,13 @@ msgstr "Kosten van geleverde zaken"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Kostprijs verkochte goederen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Kosten van verkochte goederen (Rekening in artikelen) Tabel"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Kosten van Items Afgegeven"
@@ -12991,7 +13002,7 @@ msgstr "Demo-gegevens konden niet worden verwijderd."
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Klant kan niet automatisch worden aangemaakt vanwege de volgende ontbrekende verplichte velden:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Kan creditnota niet automatisch maken. Verwijder het vinkje bij 'Kredietnota uitgeven' en verzend het opnieuw"
@@ -13180,7 +13191,7 @@ msgstr "Facturen maken"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Maak een opdrachtkaart"
@@ -13212,7 +13223,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Grootboekposten aanmaken voor het wisselgeld"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Link maken"
@@ -13279,7 +13290,7 @@ msgstr "Maak een betalingsinvoer aan voor geconsolideerde POS-facturen."
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Maak een keuzelijst"
@@ -13424,7 +13435,7 @@ msgstr "Maak taak"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Maak een BTW-sjabloon"
@@ -13462,12 +13473,12 @@ msgstr "Gebruikersmachtigingen aanmaken"
msgid "Create Users"
msgstr "Gebruikers maken"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Maak een variant"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Maak varianten"
@@ -13498,12 +13509,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Maak een variant met de sjabloonafbeelding."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Maak een inkomende voorraadtransactie voor het artikel."
@@ -13537,7 +13548,7 @@ msgstr "Maak {0} {1}?"
msgid "Created By Migration"
msgstr "Aangemaakt door migratie"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Scorekaarten {0} aangemaakt voor {1} tussen:"
@@ -13570,7 +13581,7 @@ msgstr "Het opstellen van een leveringsbon..."
msgid "Creating Delivery Schedule..."
msgstr "Leveringsschema opstellen..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Dimensies maken ..."
@@ -13765,7 +13776,7 @@ msgstr "Studiedagen"
msgid "Credit Limit"
msgstr "Kredietlimiet"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Kredietlimiet overschreden"
@@ -13775,12 +13786,6 @@ msgstr "Kredietlimiet overschreden"
msgid "Credit Limit Settings"
msgstr "Instellingen voor kredietlimiet"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Kredietlimiet en betalingsvoorwaarden"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Kredietlimiet:"
@@ -13812,7 +13817,7 @@ msgstr "Kredietmaanden"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13840,7 +13845,7 @@ msgstr "Credit Note uitgegeven"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "De creditnota zal zijn eigen openstaande bedrag bijwerken, zelfs als 'Terugbetaling' is geselecteerd."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Kredietnota {0} is automatisch aangemaakt"
@@ -13848,7 +13853,7 @@ msgstr "Kredietnota {0} is automatisch aangemaakt"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Met dank aan"
@@ -13857,20 +13862,20 @@ msgstr "Met dank aan"
msgid "Credit in Company Currency"
msgstr "Krediet in de valuta van het bedrijf"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Kredietlimiet is overschreden voor klant {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Kredietlimiet is al gedefinieerd voor het bedrijf {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Kredietlimiet bereikt voor klant {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13878,8 +13883,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Crediteurenomloopsnelheid"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "crediteuren"
@@ -14049,7 +14054,7 @@ msgstr "Valutawissel moet van toepassing zijn voor Kopen of Verkopen."
msgid "Currency and Price List"
msgstr "Valuta- en prijslijst"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Valuta kan niet na het maken van data met behulp van een andere valuta worden veranderd"
@@ -14059,7 +14064,7 @@ msgstr "Valutafilters worden momenteel niet ondersteund in aangepaste financiël
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Munt voor {0} moet {1}"
@@ -14142,8 +14147,8 @@ msgstr "Huidige factuurdatum"
msgid "Current Level"
msgstr "Huidig niveau"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Kortlopende Schulden"
@@ -14210,6 +14215,11 @@ msgstr "Huidige voorraad"
msgid "Current Valuation Rate"
msgstr "Huidige waarderingskoers"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Krommen"
@@ -14305,7 +14315,6 @@ msgstr "Aangepaste scheidingstekens"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14412,7 +14421,6 @@ msgstr "Aangepaste scheidingstekens"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14501,8 +14509,8 @@ msgstr "Klantadres"
msgid "Customer Addresses And Contacts"
msgstr "Klant adressen en contacten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Klantvoorschotten"
@@ -14516,7 +14524,7 @@ msgstr "Klantcode"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14599,6 +14607,7 @@ msgstr "Klantenfeedback"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14621,7 +14630,7 @@ msgstr "Klantenfeedback"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14638,6 +14647,7 @@ msgstr "Klantenfeedback"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14681,7 +14691,7 @@ msgstr "Klantartikel"
msgid "Customer Items"
msgstr "Klantartikelen"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Klant-LPO"
@@ -14733,7 +14743,7 @@ msgstr "Mobiel nummer van de klant"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14839,7 +14849,7 @@ msgstr "Door de klant verstrekt"
msgid "Customer Provided Item Cost"
msgstr "Klant verstrekte artikelkosten"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Klantenservice"
@@ -14896,9 +14906,9 @@ msgstr "Klant of artikel"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Klant nodig voor 'Klantgebaseerde Korting'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Klant {0} behoort niet tot project {1}"
@@ -15010,7 +15020,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Dagelijkse projectsamenvatting voor {0}"
@@ -15101,7 +15111,7 @@ msgstr "Geboortedatum mag niet groter zijn dan vandaag."
msgid "Date of Commencement"
msgstr "Aanvangsdatum"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Aanvangsdatum moet groter zijn dan de datum van oprichting"
@@ -15327,7 +15337,7 @@ msgstr "Debetbedrag in transactievaluta"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15355,13 +15365,13 @@ msgstr "De debetnota zal het openstaande bedrag bijwerken, zelfs als 'Terugbetal
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debiteren aan"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Debet Om vereist"
@@ -15489,8 +15499,7 @@ msgstr "Standaardaccount"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15516,14 +15525,14 @@ msgstr "Standaard voorschotrekening"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Standaard vooruitbetaalde rekening"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Standaard voorschot ontvangen rekening"
@@ -15538,19 +15547,19 @@ msgstr "Standaard verouderingsbereik"
msgid "Default BOM"
msgstr "Standaard stuklijst"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Default BOM ({0}) moet actief voor dit artikel of zijn template"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Standaard BOM voor {0} niet gevonden"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Standaard BOM niet gevonden voor FG-item {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Standaard BOM niet gevonden voor Item {0} en Project {1}"
@@ -15603,9 +15612,7 @@ msgid "Default Company"
msgstr "Standaardbedrijf"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Standaard bedrijfsbankrekening"
@@ -15721,6 +15728,16 @@ msgstr "Standaard itemgroep"
msgid "Default Item Manufacturer"
msgstr "Standaardartikelfabrikant"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15756,23 +15773,19 @@ msgid "Default Payment Request Message"
msgstr "Standaard betalingsverzoekbericht"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Standaard betalingsvoorwaarden sjabloon"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15895,15 +15908,15 @@ msgstr "Standaardgebied"
msgid "Default Unit of Measure"
msgstr "Standaard meeteenheid"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "De standaard meeteenheid voor artikel {0} kan niet direct worden gewijzigd, omdat u al transacties met een andere meeteenheid hebt uitgevoerd. U moet de gekoppelde documenten annuleren of een nieuw artikel aanmaken."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Standaard maateenheid voor post {0} kan niet direct worden gewijzigd, omdat je al enkele transactie (s) met een andere UOM hebben gemaakt. U moet een nieuwe post naar een andere Standaard UOM gebruik maken."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Standaard maateenheid voor Variant '{0}' moet hetzelfde zijn als in zijn Template '{1}'"
@@ -15955,7 +15968,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Standaardinstellingen voor uw aandelentransacties"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Er worden standaard belastingtemplates aangemaakt voor verkopen, aankopen en artikelen."
@@ -16046,6 +16059,12 @@ msgstr "Definieer projecttype."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16128,12 +16147,12 @@ msgstr "Leads en adressen verwijderen"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Transacties verwijderen"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Verwijder alle transacties voor dit bedrijf"
@@ -16154,8 +16173,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Het verwijderen van {0} en alle bijbehorende Common Code-documenten..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Verwijdering bezig!"
@@ -16266,11 +16285,11 @@ msgstr "Geleverd aantal"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Geleverde hoeveelheid (in voorraadeenheid)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16351,7 +16370,7 @@ msgstr "Bezorgmanager"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16411,11 +16430,11 @@ msgstr "Leveringsbon Verpakt artikel"
msgid "Delivery Note Trends"
msgstr "Vrachtbrief Trends"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Vrachtbrief {0} is niet ingediend"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Pakbonnen"
@@ -16501,10 +16520,6 @@ msgstr "Leveringsmagazijn"
msgid "Delivery to"
msgstr "Bezorging aan"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Levering magazijn vereist voor voorraad artikel {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16624,8 +16639,8 @@ msgstr "Afgeschreven bedrag"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16718,7 +16733,7 @@ msgstr "Afschrijvingsopties"
msgid "Depreciation Posting Date"
msgstr "Datum van afschrijvingsboeking"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "De datum waarop de afschrijvingen worden geboekt, mag niet vóór de datum liggen waarop ze beschikbaar zijn voor gebruik."
@@ -16876,15 +16891,15 @@ msgstr "Verschil (Debet - Credit)"
msgid "Difference Account"
msgstr "Verschillenrekening"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Verschilrekening in artikelentabel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "De verschilrekening moet een activa-/passivarekening zijn (tijdelijke opening), aangezien deze voorraadboeking een openingsboeking is."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Verschil moet Account een type Asset / Liability rekening zijn, aangezien dit Stock Verzoening is een opening Entry"
@@ -16996,15 +17011,15 @@ msgstr "Afmetingen"
msgid "Direct Expense"
msgstr "Directe kosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Directe kosten"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Directe Inkomsten"
@@ -17085,6 +17100,11 @@ msgstr "Afronding van het totaal uitschakelen"
msgid "Disable Serial No And Batch Selector"
msgstr "Schakel de serienummer- en batchselector uit."
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17121,11 +17141,11 @@ msgstr "Uitgeschakeld magazijn {0} kan niet voor deze transactie worden gebruikt
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Prijsregels zijn uitgeschakeld omdat dit {} een interne overdracht is."
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Prijzen inclusief belasting voor gehandicapten, aangezien dit {} een interne overdracht is."
@@ -17141,7 +17161,7 @@ msgstr "Schakelt het automatisch ophalen van bestaande hoeveelheden uit."
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17149,15 +17169,15 @@ msgstr "Schakelt het automatisch ophalen van bestaande hoeveelheden uit."
msgid "Disassemble"
msgstr "Demonteren"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Demontageopdracht"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "De hoeveelheid demonteren kan niet kleiner of gelijk zijn aan 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "De hoeveelheid demonteren kan niet kleiner of gelijk zijn aan 0 ."
@@ -17444,7 +17464,7 @@ msgstr "Discretionaire reden"
msgid "Dislikes"
msgstr "Houdt niet van"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Verzenden"
@@ -17525,7 +17545,7 @@ msgstr "Weergavenaam"
msgid "Disposal Date"
msgstr "Datum van verwijdering"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "De datum van afstoting {0} mag niet vóór de datum {1} {2} van het actief liggen."
@@ -17639,8 +17659,8 @@ msgstr "Distributienaam"
msgid "Distributor"
msgstr "Distributeur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Dividenden betaald"
@@ -17702,7 +17722,7 @@ msgstr "Toon geen symbolen zoals $ etc. naast valuta."
msgid "Do not update variants on save"
msgstr "Varianten niet bijwerken tijdens het opslaan"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Wilt u deze schrapte activa echt herstellen?"
@@ -17726,7 +17746,7 @@ msgstr "Wilt u alle klanten per e-mail op de hoogte stellen?"
msgid "Do you want to submit the material request"
msgstr "Wilt u het materiële verzoek indienen?"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Wilt u de aandeleninvoer indienen?"
@@ -17793,11 +17813,11 @@ msgstr ""
msgid "Document Type "
msgstr "Documenttype "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Documenttype wordt al als dimensie gebruikt"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Documentatie"
@@ -17960,12 +17980,6 @@ msgstr "Categorieën rijbewijzen"
msgid "Driving License Category"
msgstr "Rijbewijscategorie"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Annuleringsprocedures"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17986,12 +18000,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Verwijdert bestaande SQL-procedures en functies die zijn ingesteld door het rapport Debiteurenbeheer."
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "De vervaldatum mag niet na {0} liggen."
@@ -18150,8 +18158,8 @@ msgstr "Duur (dagen)"
msgid "Duration in Days"
msgstr "Duur in dagen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Invoerrechten en Belastingen"
@@ -18234,7 +18242,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Elke transactie"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Vroegst"
@@ -18348,6 +18356,10 @@ msgstr "Ofwel doelwit aantal of streefbedrag is verplicht"
msgid "Either target qty or target amount is mandatory."
msgstr "Ofwel doelwit aantal of streefbedrag is verplicht."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18367,8 +18379,8 @@ msgstr "Elektriciteit"
msgid "Electricity down"
msgstr "Stroomuitval"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronische apparatuur"
@@ -18572,8 +18584,8 @@ msgstr "Voorschot voor werknemers"
msgid "Employee Advances"
msgstr "Voorschotten voor werknemers"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Verplichting inzake werknemersvoordelen"
@@ -18656,7 +18668,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "Werknemer {0} behoort niet tot het bedrijf {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Medewerker {0} werkt momenteel op een ander werkstation. Wijs een andere medewerker toe."
@@ -18672,7 +18684,7 @@ msgstr "werknemers"
msgid "Empty"
msgstr "Leeg"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Leegmaken om te verwijderen. Lijst met te verwijderen objecten"
@@ -18703,7 +18715,7 @@ msgstr "Afspraken plannen inschakelen"
msgid "Enable Auto Email"
msgstr "Automatische e-mail inschakelen"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Automatisch opnieuw bestellen inschakelen"
@@ -18869,12 +18881,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19003,8 +19009,8 @@ msgstr "Einddatum kan niet vóór Startdatum zijn."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19103,8 +19109,8 @@ msgstr "Handmatig invoeren"
msgid "Enter Serial Nos"
msgstr "Voer de serienummers in"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Waarde invoeren"
@@ -19129,7 +19135,7 @@ msgstr "Geef een naam op voor deze vakantielijst."
msgid "Enter amount to be redeemed."
msgstr "Voer het in te wisselen bedrag in."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Voer een artikelcode in; de naam wordt automatisch ingevuld, gelijk aan de artikelcode, wanneer u in het veld 'Artikelnaam' klikt."
@@ -19141,7 +19147,7 @@ msgstr "Voer het e-mailadres van de klant in"
msgid "Enter customer's phone number"
msgstr "Voer het telefoonnummer van de klant in"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Voer de datum in waarop het activum moet worden afgeschreven"
@@ -19185,7 +19191,7 @@ msgstr "Vul de naam van de begunstigde in voordat u het formulier verzendt."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Vul de naam van de bank of kredietverstrekker in voordat u het formulier verzendt."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Voer de beginvoorraad in eenheden in."
@@ -19193,7 +19199,7 @@ msgstr "Voer de beginvoorraad in eenheden in."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Voer de hoeveelheid in van het artikel dat op basis van deze materiaallijst geproduceerd zal worden."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Voer de te produceren hoeveelheid in. Grondstoffen worden alleen opgehaald als dit is ingesteld."
@@ -19205,8 +19211,8 @@ msgstr "Voer {0} bedrag in."
msgid "Entertainment & Leisure"
msgstr "Vermaak en vrije tijd"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Representatiekosten"
@@ -19230,8 +19236,8 @@ msgstr "Invoertype"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19292,7 +19298,7 @@ msgstr "Fout bij het boeken van afschrijvingsboekingen"
msgid "Error while processing deferred accounting for {0}"
msgstr "Fout tijdens het verwerken van uitgestelde boekhouding voor {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Fout bij het opnieuw boeken van de artikelwaardering"
@@ -19304,7 +19310,7 @@ msgstr "Fout: Voor dit activum zijn al {0} afschrijvingsperioden geboekt.\n"
"\t\t\t\t\tDe startdatum van de afschrijving moet minimaal {1} perioden na de datum van ingebruikname liggen.\n"
"\t\t\t\t\tCorrigeer de datums dienovereenkomstig."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Fout: {0} is verplicht veld"
@@ -19350,7 +19356,7 @@ msgstr "Ex Works"
msgid "Example URL"
msgstr "Voorbeeld-URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Voorbeeld van een gekoppeld document: {0}"
@@ -19370,7 +19376,7 @@ msgstr "Voorbeeld: ABCD.#####. Als de serie is ingesteld en het batchnummer niet
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Voorbeeld: Serienummer {0} gereserveerd in {1}."
@@ -19380,7 +19386,7 @@ msgstr "Voorbeeld: Serienummer {0} gereserveerd in {1}."
msgid "Exception Budget Approver Role"
msgstr "Rol van budgetgoedkeurder bij uitzonderingen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19388,7 +19394,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Overtollige materialen verbruikt"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Overtollige overdracht"
@@ -19419,17 +19425,17 @@ msgstr "Wisselwinst of -verlies"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Exchange winst / verlies"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Het bedrag van de wisselkoerswinst/het wisselkoersverlies is geboekt via {0}"
@@ -19568,7 +19574,7 @@ msgstr "Directieassistent"
msgid "Executive Search"
msgstr "Executive Search"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Vrijgestelde leveringen"
@@ -19655,7 +19661,7 @@ msgstr "Verwachte sluitingsdatum"
msgid "Expected Delivery Date"
msgstr "Verwachte leverdatum"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Verwachte leveringsdatum moet na verkoopdatum zijn"
@@ -19739,7 +19745,7 @@ msgstr "Verwachte waarde na gebruiksduur"
msgid "Expense"
msgstr "Kosten"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Kosten- / Verschillenrekening ({0}) moet een 'Winst of Verlies' rekening zijn."
@@ -19817,23 +19823,23 @@ msgstr "Kostenrekening is verplicht voor artikel {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "uitgaven"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Kosten opgenomen in inventariswaardering"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Kosten inbegrepen in waardering"
@@ -19912,7 +19918,7 @@ msgstr "Externe werkervaring"
msgid "Extra Consumed Qty"
msgstr "Extra verbruikte hoeveelheid"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Extra aantal werkkaarten"
@@ -20049,7 +20055,7 @@ msgstr "Kan bedrijf niet instellen"
msgid "Failed to setup defaults"
msgstr "Kan standaardinstellingen niet instellen"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Het instellen van de standaardinstellingen voor land {0}is mislukt. Neem contact op met de ondersteuning."
@@ -20167,6 +20173,11 @@ msgstr "Waarde ophalen van"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Haal uitgeklapte Stuklijst op (inclusief onderdelen)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Alleen de beschikbare serienummers {0} zijn opgehaald."
@@ -20204,21 +20215,29 @@ msgstr "Veldkartering"
msgid "Field in Bank Transaction"
msgstr "Veld in banktransactie"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "De velden worden pas gekopieerd op het moment van aanmaken."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Dit bestand hoort niet bij dit transactieverwijderingsrecord."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Bestand niet gevonden"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Bestand niet gevonden op de server"
@@ -20426,9 +20445,9 @@ msgstr "Het financiële jaar begint op"
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 "Financiële rapporten worden gegenereerd met behulp van GL Entry-documenttypen (moeten worden ingeschakeld als de Period Closing Voucher niet voor alle jaren achtereenvolgens is geboekt of ontbreekt). "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Afwerking"
@@ -20485,15 +20504,15 @@ msgstr "Aantal afgewerkte producten"
msgid "Finished Good Item Quantity"
msgstr "Aantal afgewerkte producten"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Het eindproduct is niet gespecificeerd voor het serviceartikel {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Eindproduct {0} Aantal mag niet nul zijn"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Het eindproduct {0} moet een uitbestede productie zijn."
@@ -20539,7 +20558,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Het eindproduct {0} moet een uitbestede productie zijn."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Gereed Product"
@@ -20580,7 +20599,7 @@ msgstr "Magazijn voor afgewerkte goederen"
msgid "Finished Goods based Operating Cost"
msgstr "Bedrijfskosten gebaseerd op eindproducten"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Voltooide product {0} komt niet overeen met werkorder {1}"
@@ -20721,6 +20740,7 @@ msgstr "Vast"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Vast Activum"
@@ -20739,7 +20759,7 @@ msgstr "Vaste activa-rekening"
msgid "Fixed Asset Defaults"
msgstr "Wanbetalingen op vaste activa"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Fixed Asset punt moet een niet-voorraad artikel zijn."
@@ -20758,8 +20778,8 @@ msgstr "Omloopsnelheid van vaste activa"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Vaste activa-item {0} kan niet in stuklijsten worden gebruikt."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Vaste activa"
@@ -20832,7 +20852,7 @@ msgstr "Volg de kalendermaanden"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Volgende Material Aanvragen werden automatisch verhoogd op basis van re-order niveau-item"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "De volgende velden zijn verplicht om een adres te maken:"
@@ -20889,7 +20909,7 @@ msgstr "Voor het bedrijf"
msgid "For Item"
msgstr "Voor artikel"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Voor artikel {0} kunnen niet meer dan {1} stuks worden ontvangen ten opzichte van de {2} {3}"
@@ -20899,7 +20919,7 @@ msgid "For Job Card"
msgstr "Voor werkkaart"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Voor gebruik"
@@ -20920,17 +20940,13 @@ msgstr "Voor de prijslijst"
msgid "For Production"
msgstr "Voor productie"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Voor Hoeveelheid (Geproduceerd Aantal) is verplicht"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Voor grondstoffen"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Voor retourfacturen met voorraadeffect zijn artikelen met een hoeveelheid van '0' niet toegestaan. De volgende regels worden beïnvloed: {0}"
@@ -20958,11 +20974,11 @@ msgstr "Voor magazijn"
msgid "For Work Order"
msgstr "Voor werkorder"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Voor een artikel {0} moet het aantal negatief zijn"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Voor een artikel {0} moet het aantal positief zijn"
@@ -21000,7 +21016,7 @@ msgstr "Voor individuele leverancier"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Voor item {0} zijn alleen de assets {1} aangemaakt of gekoppeld aan {2} . Maak of koppel alstublieft nog {3} aan het betreffende document."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Voor item {0}moet het tarief een positief getal zijn. Om negatieve tarieven toe te staan, moet u {1} inschakelen in {2}."
@@ -21014,7 +21030,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Voor bewerking {0} op rij {1}, voeg grondstoffen toe of stel een stuklijst in."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Voor bewerking {0}: Hoeveelheid ({1}) mag niet groter zijn dan de in afwachting zijnde hoeveelheid ({2})"
@@ -21031,7 +21047,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Voor geprojecteerde en voorspelde hoeveelheden houdt het systeem rekening met alle onderliggende magazijnen van het geselecteerde hoofdmagazijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "De hoeveelheid {0} mag niet groter zijn dan de toegestane hoeveelheid {1}"
@@ -21040,12 +21056,12 @@ msgstr "De hoeveelheid {0} mag niet groter zijn dan de toegestane hoeveelheid {1
msgid "For reference"
msgstr "Ter referentie"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Voor rij {0} in {1}. Om {2} onder in punt tarief, rijen {3} moet ook opgenomen worden"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Voor rij {0}: Voer het geplande aantal in"
@@ -21064,7 +21080,7 @@ msgstr "Voor de voorwaarde 'Regel toepassen op andere' is het veld {0} v
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Voor het gemak van de klant kunnen deze codes worden gebruikt in gedrukte documenten zoals facturen en leveringsbonnen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Voor het artikel {0}moet de verbruikte hoeveelheid {1} zijn volgens de stuklijst {2}."
@@ -21111,11 +21127,6 @@ msgstr "Voorspelling"
msgid "Forecast Demand"
msgstr "Vraagvoorspelling"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Voorspelde hoeveelheid"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21161,7 +21172,7 @@ msgstr "Forumberichten"
msgid "Forum URL"
msgstr "Forum-URL"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe School"
@@ -21206,8 +21217,8 @@ msgstr "Gratis item niet ingesteld in de prijsregel {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Vries voorraden in die ouder zijn dan (dagen)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Vracht-en verzendkosten"
@@ -21641,8 +21652,8 @@ msgstr "Volledig betaald"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Meubels en inrichting"
@@ -21659,13 +21670,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Verder nodes kunnen alleen worden gemaakt op grond van het type nodes 'Groep'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Toekomstig betalingsbedrag"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Toekomstige betaling Ref"
@@ -21673,7 +21684,7 @@ msgstr "Toekomstige betaling Ref"
msgid "Future Payments"
msgstr "Toekomstige betalingen"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Een datum in de toekomst is niet toegestaan."
@@ -21758,9 +21769,9 @@ msgstr "Reeds geboekte winst/verlies"
msgid "Gain/Loss from Revaluation"
msgstr "Winst/verlies door herwaardering"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Winst / verlies op de verkoop van activa"
@@ -21933,7 +21944,7 @@ msgstr "Balans bereiken"
msgid "Get Current Stock"
msgstr "Actuele voorraad opvragen"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Klantgroepgegevens opvragen"
@@ -21991,7 +22002,7 @@ msgstr "Locaties van items opvragen"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22030,7 +22041,7 @@ msgstr "Artikelen ophalen van Stuklijst"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Artikelen ophalen uit materiaal verzoeken voor deze leverancier"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Krijg Items uit Product Bundle"
@@ -22204,7 +22215,7 @@ msgstr "Doelen"
msgid "Goods"
msgstr "Goederen"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Goederen onderweg"
@@ -22213,7 +22224,7 @@ msgstr "Goederen onderweg"
msgid "Goods Transferred"
msgstr "Goederen overgedragen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Goederen zijn al ontvangen tegen de uitgaande invoer {0}"
@@ -22396,7 +22407,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "Subsidiecommissie"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Groter dan bedrag"
@@ -22839,7 +22850,7 @@ msgstr "Hiermee kunt u het budget/de doelstelling over de maanden verdelen als u
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Hieronder vindt u de foutenlogboeken voor de eerdergenoemde mislukte afschrijvingsvermeldingen: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Hieronder vindt u de mogelijkheden om verder te gaan:"
@@ -22867,7 +22878,7 @@ msgstr "Hier worden je wekelijkse vrije dagen automatisch ingevuld op basis van
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Hoi,"
@@ -23066,7 +23077,7 @@ msgstr "Hoe formatteer en presenteer ik waarden in het financiële rapport (alle
msgid "Hrs"
msgstr "Uren"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Personeelszaken"
@@ -23235,6 +23246,12 @@ msgstr "Indien aangevinkt, wordt het belastingbedrag geacht reeds te zijn opgeno
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Indien aangevinkt, wordt het belastingbedrag geacht reeds in het afdruktarief/afdrukbedrag te zijn inbegrepen."
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Indien aangevinkt, maken we demogegevens voor u aan om het systeem te verkennen. Deze demogegevens kunnen later worden verwijderd."
@@ -23455,7 +23472,7 @@ msgstr ""
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Als er geen belastingen zijn ingesteld en de sjabloon 'Belastingen en heffingen' is geselecteerd, past het systeem automatisch de belastingen uit de gekozen sjabloon toe."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Zo niet, dan kunt u deze inzending annuleren/verzenden."
@@ -23481,13 +23498,18 @@ msgstr ""
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 "Als de geselecteerde prijsregel is ingesteld voor 'Tarief', overschrijft deze de prijslijst. Het tarief van de prijsregel is het definitieve tarief, dus er mogen geen verdere kortingen worden toegepast. Daarom wordt in transacties zoals verkooporders, inkooporders, enz. het tarief weergegeven in het veld 'Tarief' in plaats van in het veld 'Prijslijsttarief'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Indien ingesteld, gebruikt het systeem niet het e-mailadres van de gebruiker of het standaard uitgaande e-mailaccount voor het verzenden van offerteaanvragen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Als de stuklijst afvalmateriaal oplevert, moet het afvalmagazijn worden geselecteerd."
@@ -23496,7 +23518,7 @@ msgstr "Als de stuklijst afvalmateriaal oplevert, moet het afvalmagazijn worden
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Als het account geblokkeerd is, hebben alleen gebruikers met beperkte toegang toegang."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Als het item een transactie uitvoert als een item met een nulwaarderingstarief in dit item, schakel dan 'Nulwaarderingspercentage toestaan' in de tabel {0} Item in."
@@ -23506,7 +23528,7 @@ msgstr "Als het item een transactie uitvoert als een item met een nulwaarderings
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 "Als de herbestellingscontrole is ingesteld op het niveau van het groepsmagazijn, wordt de beschikbare hoeveelheid de som van de verwachte hoeveelheden van alle onderliggende magazijnen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Als de geselecteerde stuklijst bewerkingen bevat, haalt het systeem alle bewerkingen uit de stuklijst op; deze waarden kunnen worden gewijzigd."
@@ -23583,7 +23605,7 @@ msgstr "Als de loyaliteitspunten onbeperkt geldig zijn, laat het veld 'Vervaldat
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Indien ja, dan zal dit magazijn worden gebruikt voor de opslag van afgekeurde materialen."
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Als u dit artikel in uw inventaris bijhoudt, zal ERPNext voor elke transactie met dit artikel een voorraadboekingspost aanmaken."
@@ -23597,7 +23619,7 @@ msgstr "Als u specifieke transacties met elkaar wilt afstemmen, selecteer dan de
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Als u toch wilt doorgaan, schakel dan het selectievakje 'Beschikbare subassemblageonderdelen overslaan' uit."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Als je toch wilt doorgaan, schakel dan {0} in."
@@ -23681,7 +23703,7 @@ msgstr "Negeer de journaalposten voor wisselkoersherwaardering en winst/verlies.
msgid "Ignore Existing Ordered Qty"
msgstr "Negeer bestaand bestelde aantal"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Negeer bestaande geprojecteerde hoeveelheid"
@@ -23768,12 +23790,12 @@ msgstr "Negeer overlapping van werkstationtijden"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Negeert het verouderde veld 'Is Opening' in de grootboekboeking, waarmee het mogelijk is om het beginsaldo toe te voegen nadat het systeem in gebruik is genomen tijdens het genereren van rapporten."
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "De afbeelding in de beschrijving is verwijderd. Om dit gedrag uit te schakelen, vinkt u \"{0}\" uit in {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Beperking"
@@ -23931,7 +23953,7 @@ msgstr "In de maak"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "in Aantal"
@@ -24055,7 +24077,7 @@ msgstr "Bij een programma met meerdere niveaus worden klanten automatisch toegew
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "In dit gedeelte kunt u voor dit artikel bedrijfsbrede transactiegerelateerde standaardinstellingen definiëren. Bijvoorbeeld: standaardmagazijn, standaardprijslijst, leverancier, enzovoort."
@@ -24286,8 +24308,8 @@ msgstr "Inclusief onderdelen voor subassemblages"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24358,7 +24380,7 @@ msgstr "Inkomende betaling"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24390,7 +24412,7 @@ msgstr "Onjuist saldo na transactie"
msgid "Incorrect Batch Consumed"
msgstr "Onjuiste batch verbruikt"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Onjuiste check-in (groep) magazijn voor herbestelling"
@@ -24398,7 +24420,7 @@ msgstr "Onjuiste check-in (groep) magazijn voor herbestelling"
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Onjuiste componenthoeveelheid"
@@ -24532,15 +24554,15 @@ msgstr "Geeft aan dat het pakket onderdeel is van deze levering (alleen concept)
msgid "Indirect Expense"
msgstr "Indirecte kosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirecte kosten"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirecte Inkomsten"
@@ -24608,14 +24630,14 @@ msgstr "geïnitieerd"
msgid "Inspected By"
msgstr "Geïnspecteerd door"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspectie afgewezen"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspectie Verplicht"
@@ -24632,8 +24654,8 @@ msgstr "Inspectie vereist vóór levering"
msgid "Inspection Required before Purchase"
msgstr "Inspectie vereist vóór aankoop"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Inspectieaanvraag"
@@ -24663,7 +24685,7 @@ msgstr "Installatie opmerking"
msgid "Installation Note Item"
msgstr "Installatie Opmerking Item"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Installatie Opmerking {0} is al ingediend"
@@ -24702,11 +24724,11 @@ msgstr "Instructie"
msgid "Insufficient Capacity"
msgstr "Onvoldoende capaciteit"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Onvoldoende machtigingen"
@@ -24714,13 +24736,12 @@ msgstr "Onvoldoende machtigingen"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "onvoldoende Stock"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Onvoldoende voorraad voor de batch"
@@ -24840,13 +24861,13 @@ msgstr "Inter Transfer Reference"
msgid "Interest"
msgstr "Interesse"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Rentekosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Rente-inkomsten"
@@ -24854,8 +24875,8 @@ msgstr "Rente-inkomsten"
msgid "Interest and/or dunning fee"
msgstr "Rente en/of incassokosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Rente op vaste deposito's"
@@ -24875,7 +24896,7 @@ msgstr "Intern"
msgid "Internal Customer Accounting"
msgstr "Interne klantboekhouding"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Interne klant voor bedrijf {0} bestaat al"
@@ -24883,7 +24904,7 @@ msgstr "Interne klant voor bedrijf {0} bestaat al"
msgid "Internal Purchase Order"
msgstr "Interne inkooporder"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Intern verkoop- of leveringsreferentie ontbreekt."
@@ -24891,7 +24912,7 @@ msgstr "Intern verkoop- of leveringsreferentie ontbreekt."
msgid "Internal Sales Order"
msgstr "Interne verkooporder"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Intern verkoopreferentie ontbreekt"
@@ -24922,7 +24943,7 @@ msgstr "Interne leverancier voor bedrijf {0} bestaat al"
msgid "Internal Transfer"
msgstr "Interne overplaatsing"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Interne overplaatsingsreferentie ontbreekt"
@@ -24935,7 +24956,12 @@ msgstr "Interne overplaatsingen"
msgid "Internal Work History"
msgstr "Interne werkgeschiedenis"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interne overboekingen kunnen alleen worden uitgevoerd in de standaardvaluta van het bedrijf."
@@ -24951,12 +24977,12 @@ msgstr "Het interval moet tussen de 1 en 59 minuten liggen."
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Ongeldig account"
@@ -24977,7 +25003,7 @@ msgstr "Ongeldig bedrag"
msgid "Invalid Attribute"
msgstr "ongeldige attribuut"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Ongeldige datum voor automatisch herhalen"
@@ -24990,7 +25016,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Ongeldige streepjescode. Er is geen artikel aan deze streepjescode gekoppeld."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Ongeldige algemene bestelling voor de geselecteerde klant en artikel"
@@ -25006,21 +25032,21 @@ msgstr "Ongeldige kindprocedure"
msgid "Invalid Company Field"
msgstr "Ongeldig bedrijfsveld"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Ongeldig bedrijf voor interbedrijfstransactie."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Ongeldig kostenplaats"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Ongeldige leverdatum"
@@ -25058,7 +25084,7 @@ msgstr "Ongeldige groepering"
msgid "Invalid Item"
msgstr "Ongeldig item"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Ongeldige itemstandaardwaarden"
@@ -25072,7 +25098,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Ongeldig netto aankoopbedrag"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Ongeldige openingsinvoer"
@@ -25080,11 +25106,11 @@ msgstr "Ongeldige openingsinvoer"
msgid "Invalid POS Invoices"
msgstr "Ongeldige POS-facturen"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Ongeldig ouderaccount"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Ongeldig onderdeelnummer"
@@ -25114,12 +25140,12 @@ msgstr "Ongeldige configuratie voor procesverlies"
msgid "Invalid Purchase Invoice"
msgstr "Ongeldige aankoopfactuur"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Ongeldige hoeveelheid"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Ongeldige hoeveelheid"
@@ -25144,12 +25170,12 @@ msgstr "Ongeldig rooster"
msgid "Invalid Selling Price"
msgstr "Ongeldige verkoopprijs"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Ongeldige serie- en batchbundel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Ongeldige bron- en doelmagazijn"
@@ -25174,7 +25200,7 @@ msgstr "Ongeldig bedrag in de boekhoudkundige posten van {} {} voor rekening {}:
msgid "Invalid condition expression"
msgstr "Ongeldige voorwaarde-uitdrukking"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Ongeldige bestands-URL"
@@ -25186,7 +25212,7 @@ msgstr "Ongeldige filterformule. Controleer de syntaxis."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Ongeldige verloren reden {0}, maak een nieuwe verloren reden aan"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Ongeldige naamreeks (. Ontbreekt) voor {0}"
@@ -25212,8 +25238,8 @@ msgstr "Ongeldige zoekopdracht"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Ongeldige waarde {0} voor {1} ten opzichte van account {2}"
@@ -25221,7 +25247,7 @@ msgstr "Ongeldige waarde {0} voor {1} ten opzichte van account {2}"
msgid "Invalid {0}"
msgstr "Ongeldige {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Ongeldige {0} voor interbedrijfstransactie."
@@ -25231,7 +25257,7 @@ msgid "Invalid {0}: {1}"
msgstr "Ongeldige {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Inventaris"
@@ -25280,8 +25306,8 @@ msgstr "Voorraadwaardering"
msgid "Investment Banking"
msgstr "Investeringsbankieren"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investeringen"
@@ -25331,7 +25357,7 @@ msgstr "Factuurkorting"
msgid "Invoice Document Type Selection Error"
msgstr "Fout bij het selecteren van het factuurdocumenttype"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Totaal factuurbedrag"
@@ -25436,7 +25462,7 @@ msgstr "De factuur kan niet worden gemaakt voor uren facturering"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25457,7 +25483,7 @@ msgstr "Gefactureerde hoeveelheid"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25553,8 +25579,7 @@ msgstr "Is alternatief"
msgid "Is Billable"
msgstr "Is factureerbaar"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Is dit het factureringscontact?"
@@ -25996,8 +26021,7 @@ msgstr "Is sjabloon"
msgid "Is Transporter"
msgstr "Is Transporter"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Is uw bedrijfsadres"
@@ -26103,8 +26127,8 @@ msgstr "Uitgiftetype"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Een debetnota met een hoeveelheid van 0 opstellen tegen een bestaande verkoopfactuur."
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26134,11 +26158,11 @@ msgstr "Tickets"
msgid "Issuing Date"
msgstr "Uitgiftedatum"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Het kan enkele uren duren voordat de juiste voorraadwaarden zichtbaar zijn na het samenvoegen van artikelen."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Het is nodig om Item Details halen."
@@ -26262,7 +26286,7 @@ msgstr "Cursieve tekst voor subtotalen of aantekeningen"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26510,7 +26534,7 @@ msgstr "Winkelwagen"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26572,7 +26596,7 @@ msgstr "Winkelwagen"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26771,13 +26795,13 @@ msgstr "Artikeldetails"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26994,7 +27018,7 @@ msgstr "Fabrikant van het artikel"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27034,10 +27058,10 @@ msgstr "Fabrikant van het artikel"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27078,10 +27102,6 @@ msgstr "Artikel niet op voorraad"
msgid "Item Price"
msgstr "Artikelprijs"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27097,19 +27117,20 @@ msgstr "Prijsinstellingen voor artikelen"
msgid "Item Price Stock"
msgstr "Artikel Prijs Voorraad"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Item Prijs toegevoegd {0} in de prijslijst {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "De artikelprijs verschijnt meerdere keren, afhankelijk van de prijslijst, leverancier/klant, valuta, artikel, batch, meeteenheid, hoeveelheid en datums."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Item Prijs bijgewerkt voor {0} in prijslijst {1}"
@@ -27296,11 +27317,11 @@ msgstr "Artikel Variant Details"
msgid "Item Variant Settings"
msgstr "Instellingen voor artikelvarianten"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Artikel Variant {0} bestaat al met dezelfde kenmerken"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Artikelvarianten bijgewerkt"
@@ -27401,11 +27422,11 @@ msgstr "Artikel en magazijn"
msgid "Item and Warranty Details"
msgstr "Artikel- en garantiegegevens"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Artikel voor rij {0} komt niet overeen met materiaal verzoek"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Item heeft varianten."
@@ -27431,11 +27452,7 @@ msgstr "Artikelnaam"
msgid "Item operation"
msgstr "Artikelbewerking"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "De artikelhoeveelheid kan niet worden bijgewerkt, omdat de grondstoffen al zijn verwerkt."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "De artikelprijs is bijgewerkt naar nul omdat 'Nulwaardering toestaan' is aangevinkt voor artikel {0}"
@@ -27454,11 +27471,11 @@ msgstr "De waarderingsratio van het artikel wordt opnieuw berekend rekening houd
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "De waardebepaling van het artikel wordt opnieuw verwerkt. Het rapport kan een onjuiste waardebepaling van het artikel weergeven."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Artikel variant {0} bestaat met dezelfde kenmerken"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27475,7 +27492,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikel {0} kan niet vaker dan {1} besteld worden in het kader van raamovereenkomst {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Artikel {0} bestaat niet"
@@ -27487,7 +27504,7 @@ msgstr "Artikel {0} bestaat niet in het systeem of is verlopen"
msgid "Item {0} does not exist."
msgstr "Item {0} bestaat niet."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Item {0} is meerdere keren ingevoerd."
@@ -27499,15 +27516,15 @@ msgstr "Artikel {0} is al geretourneerd"
msgid "Item {0} has been disabled"
msgstr "Item {0} is uitgeschakeld"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Artikel {0} heeft geen serienummer. Alleen artikelen met een serienummer kunnen worden bezorgd op basis van het serienummer."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Artikel {0} heeft het einde van zijn levensduur bereikt op {1}"
@@ -27519,15 +27536,15 @@ msgstr "Artikel {0} genegeerd omdat het niet een voorraadartikel is"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Artikel {0} is reeds gereserveerd/geleverd voor verkooporder {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Artikel {0} is geannuleerd"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Punt {0} is uitgeschakeld"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27535,7 +27552,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Artikel {0} is geen seriegebonden artikel"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Artikel {0} is geen voorraadartikel"
@@ -27543,11 +27560,11 @@ msgstr "Artikel {0} is geen voorraadartikel"
msgid "Item {0} is not a subcontracted item"
msgstr "Artikel {0} is geen uitbested artikel."
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "ARtikel {0} is niet actief of heeft einde levensduur bereikt"
@@ -27563,7 +27580,7 @@ msgstr "Artikel {0} moet een niet-voorraadartikel zijn."
msgid "Item {0} must be a non-stock item"
msgstr "Item {0} moet een niet-voorraad artikel zijn"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Artikel {0} niet gevonden in de tabel 'Geleverde grondstoffen' in {1} {2}"
@@ -27571,7 +27588,7 @@ msgstr "Artikel {0} niet gevonden in de tabel 'Geleverde grondstoffen' in {1} {2
msgid "Item {0} not found."
msgstr "Item {0} niet gevonden."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Item {0}: Bestelde aantal {1} kan niet kleiner dan de minimale afname {2} (gedefinieerd in punt) zijn."
@@ -27579,7 +27596,7 @@ msgstr "Item {0}: Bestelde aantal {1} kan niet kleiner dan de minimale afname {2
msgid "Item {0}: {1} qty produced. "
msgstr "Artikel {0}: {1} aantal geproduceerd."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Item {} bestaat niet."
@@ -27625,7 +27642,7 @@ msgstr "Artikelgebaseerde Verkoop Register"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Artikel/artikelcode vereist om het artikelbelastingsjabloon te verkrijgen."
@@ -27649,7 +27666,7 @@ msgstr "Artikelcatalogus"
msgid "Items Filter"
msgstr "Items filteren"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Items vereist"
@@ -27673,11 +27690,11 @@ msgstr "Aan te vragen artikelen"
msgid "Items and Pricing"
msgstr "Artikelen en prijzen"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Artikelen kunnen niet worden bijgewerkt omdat er onderaannemingsorders bestaan voor deze onderaannemingsorder."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Artikelen kunnen niet worden bijgewerkt omdat de onderaannemingsopdracht is aangemaakt op basis van de inkooporder {0}."
@@ -27689,7 +27706,7 @@ msgstr "Artikelen voor grondstofverzoek"
msgid "Items not found."
msgstr "Artikelen niet gevonden."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "De waardering van de artikelen is bijgewerkt naar nul, omdat 'Nulwaardering toestaan' is aangevinkt voor de volgende artikelen: {0}"
@@ -27699,7 +27716,7 @@ msgstr "De waardering van de artikelen is bijgewerkt naar nul, omdat 'Nulwaarder
msgid "Items to Be Repost"
msgstr "Items die opnieuw geplaatst zullen worden"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Te vervaardigen artikelen zijn vereist om de bijbehorende grondstoffen te trekken."
@@ -27764,9 +27781,9 @@ msgstr "Werkcapaciteit"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27828,7 +27845,7 @@ msgstr "Tijdkaart taakkaart"
msgid "Job Card and Capacity Planning"
msgstr "Taakkaart en capaciteitsplanning"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "De taakkaart {0} is voltooid."
@@ -27904,7 +27921,7 @@ msgstr "Functie Werknemer Naam"
msgid "Job Worker Warehouse"
msgstr "Magazijnmedewerker"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Taakkaart {0} gemaakt"
@@ -28124,7 +28141,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowattuur"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Annuleer eerst de productie-invoer voor de werkorder {0}."
@@ -28252,7 +28269,7 @@ msgstr "Laatste voltooiingsdatum"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "De laatste GL-update is uitgevoerd {}. Deze bewerking is niet toegestaan terwijl het systeem actief in gebruik is. Wacht 5 minuten voordat u het opnieuw probeert."
@@ -28334,7 +28351,7 @@ msgstr "De laatste carbon check-datum kan geen toekomstige datum zijn"
msgid "Last transacted"
msgstr "Laatst uitgevoerde transactie"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "laatst"
@@ -28585,12 +28602,12 @@ msgstr "Oude velden"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Juridische entiteit / dochteronderneming met een eigen rekeningschema, behorend tot de organisatie."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Juridische Kosten"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legende"
@@ -28601,7 +28618,7 @@ msgstr "Legende"
msgid "Length (cm)"
msgstr "Lengte (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Minder dan bedrag"
@@ -28660,7 +28677,7 @@ msgstr "Licentienummer"
msgid "License Plate"
msgstr "Kentekenplaat"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Grens overschreden"
@@ -28721,7 +28738,7 @@ msgstr "Link naar materiële verzoeken"
msgid "Link with Customer"
msgstr "Contact met de klant"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Contact met leverancier"
@@ -28742,12 +28759,12 @@ msgstr "Gekoppelde facturen"
msgid "Linked Location"
msgstr "Gekoppelde locatie"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Gekoppeld aan ingediende documenten"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Koppelen mislukt"
@@ -28755,7 +28772,7 @@ msgstr "Koppelen mislukt"
msgid "Linking to Customer Failed. Please try again."
msgstr "Verbinding met klant mislukt. Probeer het opnieuw."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Verbinding met leverancier mislukt. Probeer het opnieuw."
@@ -28813,8 +28830,8 @@ msgstr "Startdatum van de lening"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "De startdatum en de uitleentermijn van de lening zijn verplicht om de korting op de factuur op te slaan"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Leningen (Passiva)"
@@ -28859,8 +28876,8 @@ msgstr "Registreer de verkoop- en inkoopkoers van een artikel."
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Langetermijnvoorzieningen"
@@ -29061,6 +29078,11 @@ msgstr "Loyaliteitsprogramma-niveau"
msgid "Loyalty Program Type"
msgstr "Type loyaliteitsprogramma"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29104,10 +29126,10 @@ msgstr "Machinestoring"
msgid "Machine operator errors"
msgstr "Fouten van machinebedieners"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Hoofd"
@@ -29350,9 +29372,9 @@ msgstr "Hoofdvakken/Keuzevakken"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Maken"
@@ -29372,7 +29394,7 @@ msgstr "Maak een afschrijvingsboeking"
msgid "Make Difference Entry"
msgstr "Maak het verschil"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Maak doorlooptijd"
@@ -29410,12 +29432,12 @@ msgstr "Verkoopfactuur opstellen"
msgid "Make Serial No / Batch from Work Order"
msgstr "Maak een serienummer/batchnummer aan op basis van de werkorder."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Voorraad invoeren"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Maak een inkooporder voor onderaanneming"
@@ -29431,11 +29453,11 @@ msgstr "Gesprek starten"
msgid "Make project from a template."
msgstr "Maak een project van een sjabloon."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Maak {0} variant"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Maak {0} varianten"
@@ -29443,8 +29465,8 @@ msgstr "Maak {0} varianten"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Het is niet aan te raden om journaalposten te maken voor voorschotrekeningen: {0} . Deze journaalposten zijn niet beschikbaar voor afstemming."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Beheren"
@@ -29463,7 +29485,7 @@ msgstr "Beheer de commissies van verkooppartners en het verkoopteam."
msgid "Manage your orders"
msgstr "Beheer uw bestellingen"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Beheer"
@@ -29479,7 +29501,7 @@ msgstr "Directeur"
msgid "Mandatory Accounting Dimension"
msgstr "Verplichte boekhoudkundige dimensie"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Verplicht veld"
@@ -29578,8 +29600,8 @@ msgstr "Handmatige invoer kan niet worden gemaakt! Schakel automatische invoer v
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29658,7 +29680,7 @@ msgstr "Fabrikant"
msgid "Manufacturer Part Number"
msgstr "Onderdeelnummer fabrikant"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Artikelnummer van fabrikant {0} is ongeldig"
@@ -29683,7 +29705,7 @@ msgstr "Fabrikanten die in de artikelen worden gebruikt"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29728,10 +29750,6 @@ msgstr "Productiedatum"
msgid "Manufacturing Manager"
msgstr "Productie Manager"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Productie Aantal is verplicht"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29898,6 +29916,12 @@ msgstr "Burgerlijke staat"
msgid "Mark As Closed"
msgstr "Markeren als gesloten"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29912,12 +29936,12 @@ msgstr "Markeren als gesloten"
msgid "Market Segment"
msgstr "Marktsegment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Marketingkosten"
@@ -29996,7 +30020,7 @@ msgstr ""
msgid "Material"
msgstr "Materiaal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Materiale consumptie"
@@ -30004,7 +30028,7 @@ msgstr "Materiale consumptie"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Materiaalverbruik voor de productie"
@@ -30085,7 +30109,7 @@ msgstr "Ontvangst van materiaal"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30182,11 +30206,11 @@ msgstr "Artikel plan voor artikelaanvraag"
msgid "Material Request Type"
msgstr "Materiaalaanvraagtype"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Materiaalaanvraag niet gecreëerd, als hoeveelheid voor grondstoffen al beschikbaar."
@@ -30254,7 +30278,7 @@ msgstr "Materiaal teruggestuurd vanuit WIP"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30320,12 +30344,12 @@ msgstr "Materiaal aan Leverancier"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Materialen zijn reeds ontvangen tegen de {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Materialen moeten worden overgebracht naar het magazijn voor onderhanden werk voor de orderkaart {0}"
@@ -30396,9 +30420,9 @@ msgstr "Maximale score"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Maximale korting toegestaan voor artikel: {0} is {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30430,11 +30454,11 @@ msgstr "Maximale betalingssom"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maximum aantal voorbeelden - {0} kan worden bewaard voor batch {1} en item {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maximale voorbeelden - {0} zijn al bewaard voor Batch {1} en Item {2} in Batch {3}."
@@ -30495,15 +30519,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Vermeld waarderingspercentage in het artikelmodel."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Vermeld of het een niet-standaard debiteurenrekening betreft."
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30553,7 +30572,7 @@ msgstr "Samenvoegen met een bestaand account"
msgid "Merged"
msgstr "Samengevoegd"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Samenvoegen is alleen mogelijk als de volgende eigenschappen in beide records hetzelfde zijn: Groep, Hoofdtype, Bedrijf en Rekeningvaluta."
@@ -30583,7 +30602,7 @@ msgstr "Er wordt een bericht naar de gebruikers gestuurd om hun status binnen he
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Berichten langer dan 160 tekens worden opgesplitst in meerdere berichten."
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30784,7 +30803,7 @@ msgstr "Min Aantal kan niet groter zijn dan Max Aantal zijn"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Min Qty moet groter zijn dan Recursie Over Qty"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Minimumwaarde: {0}, Maximumwaarde: {1}, in stappen van: {2}"
@@ -30873,8 +30892,8 @@ msgstr "Notulen"
msgid "Miscellaneous"
msgstr "Gemengd"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Diverse Kosten"
@@ -30882,15 +30901,15 @@ msgstr "Diverse Kosten"
msgid "Mismatch"
msgstr "Mismatch"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Vermist"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Account ontbreekt"
@@ -30920,7 +30939,7 @@ msgstr "Ontbrekende filters"
msgid "Missing Finance Book"
msgstr "Financieel boek vermist"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Ontbrekend, voltooid, goed"
@@ -30928,7 +30947,7 @@ msgstr "Ontbrekend, voltooid, goed"
msgid "Missing Formula"
msgstr "Ontbrekende formule"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Ontbrekend item"
@@ -30965,7 +30984,7 @@ msgid "Missing required filter: {0}"
msgstr "Vereist filter ontbreekt: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Ontbrekende waarde"
@@ -31214,11 +31233,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Er zijn meerdere loyaliteitsprogramma's gevonden voor klant {}. Selecteer handmatig."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Meerdere POS-openingsinvoer"
@@ -31240,11 +31259,11 @@ msgstr "Meerdere varianten"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Meerdere bedrijfsvelden beschikbaar: {0}. Selecteer handmatig."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Meerdere fiscale jaar bestaan voor de datum {0}. Stel onderneming in het fiscale jaar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Meerdere artikelen kunnen niet als voltooid artikel worden gemarkeerd."
@@ -31253,7 +31272,7 @@ msgid "Music"
msgstr "Muziek"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31340,7 +31359,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "De naamgevingsreeks '{0}' voor documenttype '{1}' bevat geen standaard scheidingsteken '.' of '{{'. Er wordt gebruikgemaakt van een alternatieve extractiemethode."
@@ -31384,7 +31403,7 @@ msgstr "Analyse nodig"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negatieve hoeveelheid is niet toegestaan"
@@ -31393,7 +31412,7 @@ msgstr "Negatieve hoeveelheid is niet toegestaan"
msgid "Negative Stock Error"
msgstr "Negatieve voorraadfout"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negatieve Waarderingstarief is niet toegestaan"
@@ -31699,7 +31718,7 @@ msgstr "Nettogewicht"
msgid "Net Weight UOM"
msgstr "Nettogewicht UOM"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Netto totaal verlies aan rekenprecisie"
@@ -31876,7 +31895,7 @@ msgstr "Nieuwe Warehouse Naam"
msgid "New Workplace"
msgstr "Nieuwe werkplek"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "New kredietlimiet lager is dan de huidige uitstaande bedrag voor de klant. Kredietlimiet moet minstens zijn {0}"
@@ -31930,7 +31949,7 @@ msgstr "De volgende e-mail wordt verzonden op:"
msgid "No Account Data row found"
msgstr "Geen Accountgegevens rij gevonden"
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Geen account komt overeen met deze filters: {}"
@@ -31943,7 +31962,7 @@ msgstr "Geen actie"
msgid "No Answer"
msgstr "Geen antwoord"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Geen klant gevonden voor transacties tussen bedrijven die het bedrijf vertegenwoordigen {0}"
@@ -31956,7 +31975,7 @@ msgstr "Geen klanten gevonden met de geselecteerde opties."
msgid "No Delivery Note selected for Customer {}"
msgstr "Geen leveringsbewijs geselecteerd voor klant {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Er staan geen documenttypen in de lijst 'Te verwijderen'. Genereer of importeer de lijst voordat u deze indient."
@@ -31972,7 +31991,7 @@ msgstr "Geen Artikel met Barcode {0}"
msgid "No Item with Serial No {0}"
msgstr "Geen artikel met serienummer {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Geen artikelen geselecteerd voor overdracht."
@@ -32007,7 +32026,7 @@ msgstr "Er is geen POS-profiel gevonden. Maak eerst een nieuw POS-profiel aan."
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Geen toestemming"
@@ -32036,19 +32055,19 @@ msgstr "Momenteel niet op voorraad."
msgid "No Summary"
msgstr "Geen samenvatting"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Geen leverancier gevonden voor transacties tussen bedrijven die het bedrijf vertegenwoordigen {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Er zijn geen gegevens over loonheffing gevonden voor de huidige boekingsdatum."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Er is geen belastinginhoudingsrekening ingesteld voor bedrijf {0} in belastinginhoudingscategorie {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Geen voorwaarden"
@@ -32078,7 +32097,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Geen actieve stuklijst gevonden voor artikel {0}. Levering met serienummer kan niet worden gegarandeerd"
@@ -32272,7 +32291,7 @@ msgstr "Aantal werkstations"
msgid "No open Material Requests found for the given criteria."
msgstr "Er zijn geen open materiaalaanvragen gevonden die aan de opgegeven criteria voldoen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Geen open POS-openingsitem gevonden voor POS-profiel {0}."
@@ -32296,7 +32315,7 @@ msgstr "Er zijn geen openstaande facturen waarvoor een herwaardering van de wiss
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Er zijn geen uitstekende {0} gevonden voor de {1} {2} die voldoen aan de door u opgegeven filters."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Geen uitstaande artikelaanvragen gevonden om te linken voor de gegeven items."
@@ -32367,7 +32386,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Er zijn geen voorraadboekingen aangemaakt. Stel de hoeveelheid of waarderingswaarde voor de artikelen correct in en probeer het opnieuw."
@@ -32400,7 +32419,7 @@ msgstr "Geen waarden"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Geen {0} gevonden voor transacties tussen bedrijven."
@@ -32445,8 +32464,8 @@ msgstr "Non-profit"
msgid "Non stock items"
msgstr "Niet op voorraad items"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Langlopende verplichtingen"
@@ -32547,7 +32566,7 @@ msgstr "Het vroegste fiscale jaar voor het betreffende bedrijf kon niet worden g
msgid "Not allow to set alternative item for the item {0}"
msgstr "Niet toestaan om alternatief item in te stellen voor het item {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Mag geen boekhoudingsdimensie maken voor {0}"
@@ -32601,7 +32620,7 @@ msgstr "Opmerking: Als u het eindproduct {0} als grondstof wilt gebruiken, schak
msgid "Note: Item {0} added multiple times"
msgstr "Opmerking: item {0} meerdere keren toegevoegd"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Opmerking: De betaling wordt niet aangemaakt, aangezien de 'Kas- of Bankrekening' niet gespecificeerd is."
@@ -32609,7 +32628,7 @@ msgstr "Opmerking: De betaling wordt niet aangemaakt, aangezien de 'Kas- of Bank
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Opmerking: Deze kostenplaats is een groep. Kan geen boekingen aanmaken voor groepen."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Opmerking: om de artikelen samen te voegen, moet u een aparte voorraadafstemming aanmaken voor het oude artikel {0}"
@@ -32792,6 +32811,11 @@ msgstr "Nummer van nieuwe account, deze zal als een prefix in de accountnaam wor
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Aantal nieuwe kostenplaatsen, dit wordt als voorvoegsel opgenomen in de naam van de kostenplaats"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32851,18 +32875,18 @@ msgstr "Kilometerstand (laatst)"
msgid "Offer Date"
msgstr "Aanbiedingsdatum"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Kantoorapparatuur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Gebouwen Onderhoudskosten"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Kantoorhuur"
@@ -32990,7 +33014,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Zodra deze factuur is ingesteld, blijft deze in de wacht staan tot de ingestelde datum."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Zodra een werkorder is afgesloten, kan deze niet meer worden hervat."
@@ -33030,7 +33054,7 @@ msgstr "Alleen 'betalingsboekingen' die op deze voorschotrekening zijn gedaan, w
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Alleen CSV- en Excel-bestanden kunnen worden gebruikt voor het importeren van gegevens. Controleer het bestandsformaat van het bestand dat u probeert te uploaden."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Alleen CSV-bestanden zijn toegestaan."
@@ -33049,7 +33073,7 @@ msgstr "Trek alleen belasting af over het excessieve bedrag. "
msgid "Only Include Allocated Payments"
msgstr "Alleen toegewezen betalingen opnemen"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Alleen de ouder kan van het type {0} zijn."
@@ -33086,7 +33110,7 @@ msgstr "Bij het toepassen van een uitgesloten vergoeding mag slechts één van d
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "Er kan slechts één bewerking de optie 'Is eindproduct' aangevinkt hebben wanneer 'Halffabricage bijhouden' is ingeschakeld."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Er kan slechts één {0} -item worden aangemaakt voor de werkorder {1}"
@@ -33304,8 +33328,8 @@ msgstr "Beginsaldo = begin van de periode, Eindsaldo = einde van de periode, Per
msgid "Opening Balance Details"
msgstr "Beginsaldogegevens"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Beginsaldo eigen vermogen"
@@ -33328,7 +33352,7 @@ msgstr "Openingsdatum"
msgid "Opening Entry"
msgstr "Openingsingang"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Een openingsboeking kan niet worden aangemaakt nadat een periodeafsluitingsvoucher is aangemaakt."
@@ -33361,7 +33385,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "De openingsfactuur heeft een afrondingscorrectie van {0}. '{1}' is vereist om deze waarden te boeken. Stel dit in bij Bedrijf: {2}. Of, '{3}' kan worden ingeschakeld om geen afrondingscorrectie te boeken."
@@ -33397,16 +33421,16 @@ msgstr "De eerste verkoopfacturen zijn aangemaakt."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Beginvoorraad"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33424,12 +33448,15 @@ msgstr "opening Value"
msgid "Opening and Closing"
msgstr "Openen en sluiten"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "De aanmaak van de beginvoorraad is in de wachtrij geplaatst en wordt op de achtergrond verwerkt. Controleer de voorraadgegevens na enige tijd."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Bedrijfscomponent"
@@ -33461,7 +33488,7 @@ msgstr "Bedrijfskosten (valuta van het bedrijf)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Bedrijfskosten per stuklijsthoeveelheid"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Bedrijfskosten per werkorder / stuklijst"
@@ -33504,15 +33531,15 @@ msgstr "Beschrijving van de bewerking"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Operatie-ID"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Operation ID"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33537,7 +33564,7 @@ msgstr "Bewerking rijnummer"
msgid "Operation Time"
msgstr "Bedrijfstijd"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Operatie tijd moet groter zijn dan 0 voor de operatie zijn {0}"
@@ -33552,11 +33579,11 @@ msgstr "Voor hoeveel eindproducten is de bewerking voltooid?"
msgid "Operation time does not depend on quantity to produce"
msgstr "De verwerkingstijd is niet afhankelijk van de te produceren hoeveelheid."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Bewerking {0} meerdere keren toegevoegd aan de werkorder {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Bewerking {0} hoort niet bij de werkorder {1}"
@@ -33572,9 +33599,9 @@ msgstr "Operation {0} langer dan alle beschikbare werktijd in werkstation {1}, b
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33747,7 +33774,7 @@ msgstr "Mogelijkheid {0} gemaakt"
msgid "Optimize Route"
msgstr "Optimaliseer de route"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33897,7 +33924,7 @@ msgstr "Bestelde hoeveelheid"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Bestellingen"
@@ -34013,7 +34040,7 @@ msgstr "Ounce/Gallon (VS)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "out Aantal"
@@ -34051,7 +34078,7 @@ msgstr "Buiten de garantie"
msgid "Out of stock"
msgstr "Niet op voorraad"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Verouderde POS-openingsingang"
@@ -34070,6 +34097,7 @@ msgstr "Uitgaande betaling"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Uitgaand tarief"
@@ -34105,7 +34133,7 @@ msgstr "Uitstaande bedragen (valuta van het bedrijf)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34115,7 +34143,7 @@ msgstr "Uitstaande bedragen (valuta van het bedrijf)"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34175,17 +34203,22 @@ msgstr "De factureringslimiet voor inkoopbonitem {0} ({1}) is met {2} % overschr
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Toeslag voor overlevering/ontvangst (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Overmatige pluktoeslag"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Te veel ontvangen"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Overontvangst/levering van {0} {1} genegeerd voor item {2} omdat je de rol {3} hebt."
@@ -34205,11 +34238,11 @@ msgstr "Overboekingstoeslag (%)"
msgid "Over Withheld"
msgstr "Overig"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Overfacturering van {0} {1} genegeerd voor item {2} omdat je de rol {3} hebt."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Overfacturering van {} wordt genegeerd omdat u de rol {} heeft."
@@ -34509,7 +34542,7 @@ msgstr "POS-artikelselector"
msgid "POS Opening Entry"
msgstr "POS-openingsingang"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "De POS-openingsinvoer {0} is verouderd. Sluit de POS en maak een nieuwe POS-openingsinvoer aan."
@@ -34530,7 +34563,7 @@ msgstr "Details voor het openen van het POS-systeem"
msgid "POS Opening Entry Exists"
msgstr "Er bestaat een POS-openingsingang."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "POS-openingsinvoer ontbreekt"
@@ -34566,7 +34599,7 @@ msgstr "POS-betaalmethode"
msgid "POS Profile"
msgstr "POS Profiel"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "POS-profiel - {0} heeft meerdere openstaande POS-openingsitems. Sluit of annuleer de bestaande items voordat u verdergaat."
@@ -34584,11 +34617,11 @@ msgstr "POS-profielgebruiker"
msgid "POS Profile doesn't match {}"
msgstr "Het POS-profiel komt niet overeen met {}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Een POS-profiel is verplicht om deze factuur als POS-transactie te markeren."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "POS profiel nodig om POS Entry maken"
@@ -34694,7 +34727,7 @@ msgstr "Levering Opmerking Verpakking Item"
msgid "Packed Items"
msgstr "Ingepakte artikelen"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Verpakte artikelen kunnen niet intern worden verplaatst."
@@ -34731,7 +34764,7 @@ msgstr "Pakbon"
msgid "Packing Slip Item"
msgstr "Pakbon Artikel"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Pakbon(nen) geannuleerd"
@@ -34772,7 +34805,7 @@ msgstr "Betaald"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34838,7 +34871,7 @@ msgid "Paid To Account Type"
msgstr "Betaald aan rekeningtype"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Betaald bedrag + Afgeschreven bedrag kan niet groter zijn dan Eindtotaal"
@@ -34932,7 +34965,7 @@ msgstr "Ouderbatch"
msgid "Parent Company"
msgstr "Moederbedrijf"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Moederbedrijf moet een groepsmaatschappij zijn"
@@ -35059,7 +35092,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Gedeeltelijk materiaal overgedragen"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Gedeeltelijke betalingen bij POS-transacties zijn niet toegestaan."
@@ -35272,7 +35305,7 @@ msgstr "Deeltjes per miljoen"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35299,7 +35332,7 @@ msgstr "Partij"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Partijrekening"
@@ -35332,7 +35365,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Partijrekeningnummer (bankafschrift)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "De valuta van de partijrekening {0} ({1}) en de documentvaluta ({2}) moeten gelijk zijn."
@@ -35484,7 +35517,7 @@ msgstr "Feestspecifiek artikel"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35593,7 +35626,7 @@ msgstr "Voorbije evenementen"
msgid "Pause"
msgstr "Pauze"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Werk pauzeren"
@@ -35644,7 +35677,7 @@ msgid "Payable"
msgstr "betaalbaar"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35678,7 +35711,7 @@ msgstr "Betalerinstellingen"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35825,7 +35858,7 @@ msgstr "Betaling Bericht is gewijzigd nadat u het getrokken. Neem dan trekt het
msgid "Payment Entry is already created"
msgstr "Betaling Entry is al gemaakt"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Betalingsboeking {0} is gekoppeld aan order {1}. Controleer of deze als voorschot in deze factuur moet worden opgenomen."
@@ -36050,7 +36083,7 @@ msgstr "Betalingsreferenties"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36115,7 +36148,7 @@ msgstr "Betalingsverzoeken die voortvloeien uit verkoop-/inkoopfacturen worden e
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36144,7 +36177,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36200,6 +36233,7 @@ msgstr "Status van de betalingsvoorwaarden voor de verkooporder"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36214,6 +36248,7 @@ msgstr "Status van de betalingsvoorwaarden voor de verkooporder"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36271,7 +36306,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Betaalmethoden zijn verplicht. Voeg ten minste één betaalmethode toe."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36346,8 +36381,8 @@ msgstr "Betalingen bijgewerkt."
msgid "Payroll Entry"
msgstr "Salarisinvoer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Loonkosten te betalen"
@@ -36394,10 +36429,14 @@ msgstr "Afwachting Activiteiten"
msgid "Pending Amount"
msgstr "In afwachting van Bedrag"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36406,9 +36445,18 @@ msgstr "In afwachting Aantal"
#: 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:273
msgid "Pending Quantity"
msgstr "In afwachting van hoeveelheid"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36438,6 +36486,14 @@ msgstr "Afwachting van activiteiten voor vandaag"
msgid "Pending processing"
msgstr "In behandeling"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Pensioenfondsen"
@@ -36548,7 +36604,7 @@ msgstr "Perceptie Analyse"
msgid "Period Based On"
msgstr "Periode gebaseerd op"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Periode gesloten"
@@ -37112,8 +37168,8 @@ msgstr "Plant Dashboard"
msgid "Plant Floor"
msgstr "Plantenvloer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Installaties en Machines"
@@ -37149,7 +37205,7 @@ msgstr "Stel de prioriteit in."
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Gelieve Leveranciergroep in te stellen in Koopinstellingen."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Geef het account op."
@@ -37197,7 +37253,7 @@ msgstr "Voeg de kolom 'Bankrekening' toe."
msgid "Please add the account to root level Company - {0}"
msgstr "Voeg het account toe aan het hoofdniveau van het bedrijf - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Voeg het account toe aan Bedrijf op hoofdniveau - {}"
@@ -37205,7 +37261,7 @@ msgstr "Voeg het account toe aan Bedrijf op hoofdniveau - {}"
msgid "Please add {1} role to user {0}."
msgstr "Voeg de rol {1} toe aan gebruiker {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Pas de hoeveelheid aan of bewerk {0} om verder te gaan."
@@ -37213,7 +37269,7 @@ msgstr "Pas de hoeveelheid aan of bewerk {0} om verder te gaan."
msgid "Please attach CSV file"
msgstr "Voeg het CSV-bestand bij."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Annuleer en wijzig de betalingsinvoer."
@@ -37247,7 +37303,7 @@ msgstr "Neem contact op met de operationele afdeling of raadpleeg de FG Based Op
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Controleer het foutbericht en neem de nodige maatregelen om de fout te herstellen. Start daarna het opnieuw plaatsen van het bericht."
@@ -37272,11 +37328,15 @@ msgstr "Klik op 'Genereer Planning' om serienummer op te halen voor Artikel {0}"
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Klik op 'Genereer Planning' om planning te krijgen"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Neem contact op met een van de volgende gebruikers om de kredietlimieten voor {0}te verhogen: {1}"
@@ -37284,11 +37344,11 @@ msgstr "Neem contact op met een van de volgende gebruikers om de kredietlimieten
msgid "Please contact any of the following users to {} this transaction."
msgstr "Neem contact op met een van de volgende gebruikers om deze transactie af te ronden."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Neem contact op met uw beheerder om de kredietlimieten voor {0} te verhogen."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Converteer het bovenliggende account in het corresponderende onderliggende bedrijf naar een groepsaccount."
@@ -37300,11 +37360,11 @@ msgstr "Maak een klant op basis van lead {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Maak inkoopbonnen aan voor facturen waarvoor 'Voorraad bijwerken' is ingeschakeld."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Maak indien nodig een nieuwe boekhouddimensie aan."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Maak de aankoop aan vanuit het interne verkoop- of leveringsdocument zelf."
@@ -37312,11 +37372,11 @@ msgstr "Maak de aankoop aan vanuit het interne verkoop- of leveringsdocument zel
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Maak een aankoopbevestiging of een inkoopfactuur voor het artikel {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Verwijder productbundel {0}voordat u {1} samenvoegt met {2}."
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Schakel de workflow tijdelijk uit voor journaalpost {0}"
@@ -37324,7 +37384,7 @@ msgstr "Schakel de workflow tijdelijk uit voor journaalpost {0}"
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Boek de kosten van meerdere activa niet op één enkele activa."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Maak niet meer dan 500 items tegelijk"
@@ -37348,7 +37408,7 @@ msgstr "Schakel deze functie alleen in als u de gevolgen ervan begrijpt."
msgid "Please enable {0} in the {1}."
msgstr "Schakel {0} in de {1} in."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Schakel {} in {} in om hetzelfde item in meerdere rijen toe te staan."
@@ -37360,20 +37420,20 @@ msgstr "Zorg ervoor dat de {0} -rekening een balansrekening is. U kunt de hoofdr
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 "Zorg ervoor dat de {0} rekening {1} een crediteurenrekening is. U kunt het rekeningtype wijzigen naar Crediteuren of een andere rekening selecteren."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Zorg ervoor dat de {} rekening een balansrekening is."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Zorg ervoor dat rekening {} een debiteurenrekening is."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Voer een verschilaccount in of stel de standaard voorraadaanpassingsaccount in voor bedrijf {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Vul Account for Change Bedrag"
@@ -37381,15 +37441,15 @@ msgstr "Vul Account for Change Bedrag"
msgid "Please enter Approving Role or Approving User"
msgstr "Vul de Goedkeurders Rol of Goedkeurende Gebruiker in"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Voer het batchnummer in."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Vul kostenplaats in"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Vul de Leveringsdatum in"
@@ -37397,7 +37457,7 @@ msgstr "Vul de Leveringsdatum in"
msgid "Please enter Employee Id of this sales person"
msgstr "Vul Employee Id van deze verkoper"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Vul Kostenrekening in"
@@ -37406,7 +37466,7 @@ msgstr "Vul Kostenrekening in"
msgid "Please enter Item Code to get Batch Number"
msgstr "Vul de artikelcode voor Batch Number krijgen"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Vul de artikelcode in om batchnummer op te halen"
@@ -37422,7 +37482,7 @@ msgstr "Voer eerst de onderhoudsgegevens in."
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Vul Gepland Aantal in voor artikel {0} op rij {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Vul eerst Productie Artikel in"
@@ -37442,7 +37502,7 @@ msgstr "Vul Peildatum in"
msgid "Please enter Root Type for account- {0}"
msgstr "Voer het roottype voor het account in: {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Voer het serienummer in."
@@ -37459,7 +37519,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Voer Magazijn en datum in"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Voer Afschrijvingenrekening in"
@@ -37479,7 +37539,7 @@ msgstr "Voer minimaal één leverdatum en het gewenste aantal in."
msgid "Please enter company name first"
msgstr "Vul aub eerst de naam van het bedrijf in"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Vul de standaard valuta in in Bedrijfsstam"
@@ -37507,7 +37567,7 @@ msgstr "Vul het verlichten datum ."
msgid "Please enter serial nos"
msgstr "Voer de serienummers in."
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Voer de bedrijfsnaam in om te bevestigen"
@@ -37575,11 +37635,11 @@ msgstr "Zorg ervoor dat de bovenstaande medewerkers zich melden bij een andere a
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Zorg ervoor dat het bestand dat u gebruikt een kolom 'Ouderaccount' in de header bevat."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Zorg ervoor dat u echt wilt alle transacties voor dit bedrijf te verwijderen. Uw stamgegevens zal blijven zoals het is. Deze actie kan niet ongedaan gemaakt worden."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Vermeld bij het gewicht de 'Gewichtseenheid'."
@@ -37638,7 +37698,7 @@ msgstr "Selecteer het sjabloontype om de sjabloon te downloaden"
msgid "Please select Apply Discount On"
msgstr "Selecteer Apply Korting op"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Selecteer een stuklijst met item {0}"
@@ -37654,7 +37714,7 @@ msgstr "Selecteer Bankrekening"
msgid "Please select Category first"
msgstr "Selecteer eerst een Categorie"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37684,7 +37744,7 @@ msgstr "Selecteer de voltooiingsdatum voor het uitgevoerde onderhoudslogboek"
msgid "Please select Customer first"
msgstr "Selecteer eerst Klant"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Kies een bestaand bedrijf voor het maken van Rekeningschema"
@@ -37693,8 +37753,8 @@ msgstr "Kies een bestaand bedrijf voor het maken van Rekeningschema"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Selecteer het afgewerkte product voor het serviceartikel {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Selecteer eerst de artikelcode"
@@ -37726,11 +37786,11 @@ msgstr "Selecteer Boekingsdatum eerste"
msgid "Please select Price List"
msgstr "Selecteer Prijslijst"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Selecteer alstublieft aantal tegen item {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Selecteer eerst Sample Retention Warehouse in Stock Settings"
@@ -37746,7 +37806,7 @@ msgstr "Selecteer Start- en Einddatum voor Artikel {0}"
msgid "Please select Stock Asset Account"
msgstr "Selecteer de rekening voor voorraadactiva."
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Selecteer de rekening 'Niet-gerealiseerde winst/verlies' of voeg een standaardrekening voor niet-gerealiseerde winst/verlies toe voor het bedrijf {0}"
@@ -37763,7 +37823,7 @@ msgstr "Selecteer aub een andere vennootschap"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Selecteer eerst een bedrijf."
@@ -37787,7 +37847,7 @@ msgstr "Selecteer een leverancier"
msgid "Please select a Warehouse"
msgstr "Selecteer een magazijn."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Selecteer eerst een werkorder."
@@ -37860,11 +37920,15 @@ msgstr "Selecteer een waarde voor {0} quotation_to {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Selecteer een artikelcode voordat u het magazijn instelt."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Selecteer ten minste één filter: Artikelcode, Batchnummer of Serienummer."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37884,7 +37948,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr "Selecteer ten minste één item om verder te gaan."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Selecteer ten minste één bewerking om een werkbon aan te maken."
@@ -37942,7 +38006,7 @@ msgstr "Selecteer het bedrijf"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Selecteer het Multiple Tier-programmatype voor meer dan één verzamelregel."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Selecteer eerst het magazijn."
@@ -37971,7 +38035,7 @@ msgstr "Selecteer een geldig documenttype."
msgid "Please select weekly off day"
msgstr "Selecteer wekelijkse vrije dag"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Selecteer eerst {0}"
@@ -37980,11 +38044,11 @@ msgstr "Selecteer eerst {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Stel 'Solliciteer Extra Korting op'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Stel 'Asset Afschrijvingen Cost Center' in Company {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Stel 'winst / verliesrekening op de verkoop van activa in Company {0}"
@@ -37996,7 +38060,7 @@ msgstr "Stel '{0}' in bij Bedrijf: {1}"
msgid "Please set Account"
msgstr "Stel uw account in."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Stel de rekening in voor het wisselbedrag."
@@ -38026,7 +38090,7 @@ msgstr "Stel alsjeblieft bedrijf in"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Vul het klantadres in om te bepalen of het een exporttransactie betreft."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Stel afschrijvingen gerelateerd Accounts in Vermogensbeheer categorie {0} of Company {1}"
@@ -38044,7 +38108,7 @@ msgstr "Stel de fiscale code in voor de klant '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Stel de fiscale code in voor de openbare administratie '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Stel de rekening voor vaste activa in bij de activacategorie {0}"
@@ -38090,7 +38154,7 @@ msgstr "Stel een bedrijf in"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Stel een kostenplaats in voor het activum of stel een afschrijvingskostenplaats in voor het bedrijf {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Stel een standaard vakantielijst in voor bedrijf {0}"
@@ -38127,23 +38191,23 @@ msgstr "Stel ten minste één rij in de tabel Belastingen en kosten in"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Stel zowel het belastingnummer als de fiscale code in voor het bedrijf {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Stel een standaard Kas- of Bankrekening in bij Betaalwijze {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Stel een standaard contant of bankrekening in in Betalingsmethode {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Stel standaard contant geld of bankrekening in in Betalingsmethode {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Stel de standaardrekening voor wisselkoerswinsten/-verliezen in bij bedrijf {}."
@@ -38172,7 +38236,7 @@ msgstr "Stel default {0} in Company {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Stel filter op basis van artikel of Warehouse"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Selecteer een van de volgende opties:"
@@ -38180,7 +38244,7 @@ msgstr "Selecteer een van de volgende opties:"
msgid "Please set opening number of booked depreciations"
msgstr "Stel het openingsaantal geboekte afschrijvingen in."
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Stel terugkerende na het opslaan"
@@ -38192,15 +38256,15 @@ msgstr "Stel het klantadres in"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Stel het standaard kostenplaatsadres in {0} bedrijf in."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Stel eerst de productcode in"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Stel het doelmagazijn in op de werkbon."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Stel het WIP-magazijn in op de taakkaart."
@@ -38239,7 +38303,7 @@ msgstr "Stel {0} in bij BOM Creator {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Stel {0} in bij Bedrijf {1} om rekening te houden met wisselkoerswinst/verlies."
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Stel {0} in op {1}, hetzelfde account dat werd gebruikt in de oorspronkelijke factuur {2}."
@@ -38261,7 +38325,7 @@ msgstr "Specificeer Bedrijf"
msgid "Please specify Company to proceed"
msgstr "Specificeer Bedrijf om verder te gaan"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Geef een geldige rij-ID voor rij {0} in tabel {1}"
@@ -38274,7 +38338,7 @@ msgstr "Geef eerst een {0} op."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Gelieve ten minste één attribuut in de tabel attributen opgeven"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Specificeer ofwel Hoeveelheid of Waarderingstarief of beide"
@@ -38379,8 +38443,8 @@ msgstr "Postroute String"
msgid "Post Title Key"
msgstr "Legenda voor berichttitels"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Portokosten"
@@ -38445,7 +38509,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38463,7 +38527,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38585,10 +38649,6 @@ msgstr "Publicatiedatum en -tijd"
msgid "Posting Time"
msgstr "Plaatsing Time"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Plaatsingsdatum en -tijd is verplicht"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38662,18 +38722,23 @@ msgstr "Mogelijk gemaakt door {0}"
msgid "Pre Sales"
msgstr "Voorverkoop"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Voorkeur"
@@ -38846,6 +38911,7 @@ msgstr "Prijskortingsplaten"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38869,6 +38935,7 @@ msgstr "Prijskortingsplaten"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38920,7 +38987,7 @@ msgstr "Prijslijst Land"
msgid "Price List Currency"
msgstr "Prijslijst Valuta"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Prijslijst Valuta nog niet geselecteerd"
@@ -39275,7 +39342,7 @@ msgstr "Printbon"
msgid "Print Receipt on Order Complete"
msgstr "Print de bon na voltooiing van de bestelling."
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Druk maateenheid af na aantal"
@@ -39284,8 +39351,8 @@ msgstr "Druk maateenheid af na aantal"
msgid "Print Without Amount"
msgstr "Afdrukken zonder bedrag"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Print en stationaire"
@@ -39293,7 +39360,7 @@ msgstr "Print en stationaire"
msgid "Print settings updated in respective print format"
msgstr "Print instellingen bijgewerkt in de respectievelijke gedrukte vorm"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Afdrukbelasting met nulbedrag"
@@ -39396,10 +39463,6 @@ msgstr "Probleem"
msgid "Procedure"
msgstr "Procedure"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Procedures stopgezet"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39453,7 +39516,7 @@ msgstr "Het procesverliespercentage mag niet hoger zijn dan 100."
msgid "Process Loss Qty"
msgstr "Procesverlieshoeveelheid"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Procesverlieshoeveelheid"
@@ -39534,6 +39597,10 @@ msgstr "Procesabonnement"
msgid "Process in Single Transaction"
msgstr "Verwerking in één transactie"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39629,8 +39696,8 @@ msgstr "Product"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39695,7 +39762,7 @@ msgstr "Productprijs-ID"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Productie"
@@ -39909,7 +39976,7 @@ msgstr "Het voortgangspercentage voor een taak mag niet hoger zijn dan 100%."
msgid "Progress (%)"
msgstr "Voortgang (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Project Uitnodiging Collaboration"
@@ -39953,7 +40020,7 @@ msgstr "Project status"
msgid "Project Summary"
msgstr "Project samenvatting"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Projectsamenvatting voor {0}"
@@ -40084,7 +40151,7 @@ msgstr "Geprojecteerde aantal"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40230,7 +40297,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Vooruitzichten betrokken maar niet omgezet"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Beveiligd documenttype"
@@ -40245,7 +40312,7 @@ msgstr "Geef het e-mailadres op dat bij het bedrijf is geregistreerd."
msgid "Providing"
msgstr "Het verstrekken van"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Voorlopige rekening"
@@ -40317,8 +40384,9 @@ msgstr "Uitgeverij"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40641,7 +40709,7 @@ msgstr "Inkooporder {0} aangemaakt"
msgid "Purchase Order {0} is not submitted"
msgstr "Inkooporder {0} is niet ingediend"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Inkooporders"
@@ -40656,7 +40724,7 @@ msgstr "Aantal inkooporders"
msgid "Purchase Orders Items Overdue"
msgstr "Inkooporders Artikelen die te laat zijn"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Aankooporders zijn niet toegestaan voor {0} door een scorecard van {1}."
@@ -40671,7 +40739,7 @@ msgstr "Inkooporders te factureren"
msgid "Purchase Orders to Receive"
msgstr "Te ontvangen inkooporders"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Inkooporders {0} zijn niet gekoppeld"
@@ -40805,7 +40873,7 @@ msgstr "Inkoop Retour"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Kopen Tax Template"
@@ -40903,6 +40971,7 @@ msgstr "inkoop"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40912,10 +40981,6 @@ msgstr "inkoop"
msgid "Purpose"
msgstr "Doel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Doel moet één zijn van {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40971,6 +41036,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41019,6 +41085,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41127,11 +41194,11 @@ msgstr "Aantal per eenheid"
msgid "Qty To Manufacture"
msgstr "Aantal te produceren"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "De hoeveelheid die geproduceerd moet worden ({0}) mag geen breuk zijn voor de meeteenheid {2}. Om dit toe te staan, moet u '{1}' uitschakelen in de meeteenheid {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "De hoeveelheid die op de taakkaart moet worden geproduceerd, mag niet groter zijn dan de hoeveelheid die op de werkorder voor de bewerking moet worden geproduceerd {0}. Oplossing: U kunt de hoeveelheid die op de taakkaart moet worden geproduceerd verlagen of het 'Overproductiepercentage voor werkorder' instellen in de {1}."
@@ -41182,8 +41249,8 @@ msgstr "Aantal volgens voorraadeenheid"
msgid "Qty for which recursion isn't applicable."
msgstr "Aantal waarvoor recursie niet van toepassing is."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Aantal voor {0}"
@@ -41238,8 +41305,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Aantal op te halen"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Aantal te produceren"
@@ -41475,17 +41542,17 @@ msgstr "Kwaliteitscontrolesjabloon"
msgid "Quality Inspection Template Name"
msgstr "Naam van het sjabloon voor kwaliteitsinspectie"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Kwaliteitscontrole is vereist voor het artikel {0} voordat de werkkaart {1} wordt voltooid."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Kwaliteitsinspectie {0} is niet ingediend voor het artikel: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Kwaliteitsinspectie {0} is afgekeurd voor het artikel: {1}"
@@ -41499,7 +41566,7 @@ msgstr "Kwaliteitsinspectie(s)"
msgid "Quality Inspections"
msgstr "Kwaliteitsinspecties"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Kwaliteitsmanagement"
@@ -41631,7 +41698,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41766,7 +41833,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Hoeveelheid mag niet meer zijn dan {0}"
@@ -41776,21 +41843,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Benodigde hoeveelheid voor item {0} in rij {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Hoeveelheid moet groter zijn dan 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Te produceren hoeveelheid"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Te produceren hoeveelheid kan niet nul zijn voor de bewerking {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Hoeveelheid voor fabricage moet groter dan 0 zijn."
@@ -41813,7 +41880,7 @@ msgstr "Kwart droog (VS)"
msgid "Quart Liquid (US)"
msgstr "Kwart liter vloeistof (VS)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Kwart {0} {1}"
@@ -41932,11 +41999,11 @@ msgstr "Offerte aan"
msgid "Quotation Trends"
msgstr "Offerte Trends"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Offerte {0} is geannuleerd"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Offerte {0} niet van het type {1}"
@@ -42243,7 +42310,7 @@ msgstr "De koers waartegen de valuta van de leverancier wordt omgerekend naar de
msgid "Rate at which this tax is applied"
msgstr "Tarief waartegen deze belasting wordt toegepast"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "De prijs van '{}' artikelen kan niet worden gewijzigd."
@@ -42409,7 +42476,7 @@ msgstr "Verbruikte grondstoffen"
msgid "Raw Materials Consumption"
msgstr "Verbruik van grondstoffen"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Grondstoffen ontbreken"
@@ -42448,12 +42515,6 @@ msgstr "Grondstoffen kan niet leeg zijn."
msgid "Raw Materials to Customer"
msgstr "Grondstoffen rechtstreeks aan de klant"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Ruwe SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42462,7 +42523,7 @@ msgstr "De verbruikte hoeveelheid grondstoffen wordt gevalideerd op basis van de
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42643,7 +42704,7 @@ msgid "Receivable / Payable Account"
msgstr "Debiteuren-/crediteurenrekening"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43104,7 +43165,7 @@ msgstr "Referentie #"
msgid "Reference #{0} dated {1}"
msgstr "Referentie #{0} gedateerd {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Referentiedatum voor korting bij vroegtijdige betaling"
@@ -43268,11 +43329,11 @@ msgstr "Referentie: {0}, Artikelcode: {1} en Klant: {2}"
msgid "References"
msgstr "Referenties"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "De verwijzingen naar verkoopfacturen zijn onvolledig."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "De verwijzingen naar verkooporders zijn onvolledig."
@@ -43434,7 +43495,7 @@ msgid "Remaining Amount"
msgstr "Resterend bedrag"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Resterende saldo"
@@ -43492,7 +43553,7 @@ msgstr "Opmerking"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43556,7 +43617,7 @@ msgstr "De naam van de attribuutwaarde in het itemattribuut wijzigen."
msgid "Rename Log"
msgstr "Logboek hernoemen"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Naam wijzigen niet toegestaan"
@@ -43573,7 +43634,7 @@ msgstr "Hernoemtaken voor doctype {0} zijn in de wachtrij geplaatst."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Hernoemtaken voor doctype {0} zijn niet in de wachtrij geplaatst."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Hernoemen is alleen toegestaan via moederbedrijf {0}, om mismatch te voorkomen."
@@ -43697,7 +43758,7 @@ msgstr "Rapportsjabloon"
msgid "Report Type is mandatory"
msgstr "Rapport type is verplicht"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Een probleem melden"
@@ -43942,7 +44003,7 @@ msgstr "Verzoek om informatie"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44123,7 +44184,7 @@ msgstr "Vereist vervulling"
msgid "Research"
msgstr "Onderzoek"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Onderzoek en ontwikkeling"
@@ -44168,7 +44229,7 @@ msgstr "Reservering"
msgid "Reservation Based On"
msgstr "Reservering gebaseerd op"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44212,7 +44273,7 @@ msgstr "Reserveer voor subassemblage"
msgid "Reserved"
msgstr "Gereserveerd"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Conflict in gereserveerde batch"
@@ -44282,14 +44343,14 @@ msgstr "Gereserveerde Hoeveelheid"
msgid "Reserved Quantity for Production"
msgstr "Gereserveerde hoeveelheid voor productie"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Gereserveerd serienummer."
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44298,13 +44359,13 @@ msgstr "Gereserveerd serienummer."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Gereserveerde voorraad"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Gereserveerde voorraad voor de batch"
@@ -44570,7 +44631,7 @@ msgstr "Resultaattitelveld"
msgid "Resume"
msgstr "Hervat"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "CV voor een baan"
@@ -44595,8 +44656,8 @@ msgstr "Detailhandelaar"
msgid "Retain Sample"
msgstr "Bewaar monster"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Ingehouden winsten"
@@ -44671,7 +44732,7 @@ msgstr "Retourneren op basis van aankoopbewijs"
msgid "Return Against Subcontracting Receipt"
msgstr "Retourzending op basis van ontvangstbewijs voor onderaanneming"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Retourcomponenten"
@@ -44707,7 +44768,7 @@ msgstr "Retourhoeveelheid uit afgekeurd magazijn"
msgid "Return Raw Material to Customer"
msgstr "Retourneren van grondstoffen aan de klant"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Retourfactuur van geannuleerd actief"
@@ -44805,8 +44866,8 @@ msgstr "opbrengst"
msgid "Revaluation Journals"
msgstr "Herwaarderingsjournaals"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Herwaarderingsoverschot"
@@ -45038,7 +45099,7 @@ msgstr "Het basistype voor {0} moet een van de volgende zijn: Activa, Passiva, I
msgid "Root Type is mandatory"
msgstr "Root Type is verplicht"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Root kan niet worden bewerkt ."
@@ -45057,8 +45118,8 @@ msgstr "Ronde gratis hoeveelheid"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45238,21 +45299,21 @@ msgstr "Rij # {0}: De tarief kan niet groter zijn dan de tarief die wordt gebrui
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Rij # {0}: geretourneerd item {1} bestaat niet in {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Rij #1: Volgnummer-ID moet 1 zijn voor bewerking {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Rij # {0} (betalingstabel): bedrag moet negatief zijn"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Rij # {0} (betalingstabel): bedrag moet positief zijn"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Rij #{0}: Er bestaat al een herbestelling voor magazijn {1} met herbestellingstype {2}."
@@ -45273,7 +45334,7 @@ msgstr "Rij #{0}: Het geaccepteerde magazijn en het afgewezen magazijn mogen nie
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Rij #{0}: Geaccepteerd magazijn is verplicht voor het geaccepteerde artikel {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Rij # {0}: account {1} hoort niet bij bedrijf {2}"
@@ -45334,31 +45395,31 @@ msgstr "Rij #{0}: Deze voorraadboeking kan niet worden geannuleerd omdat de gere
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Rij #{0}: Het is niet mogelijk om een item aan te maken met verschillende links naar belastbare documenten EN documenten voor inhouding."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Rij # {0}: kan item {1} dat al is gefactureerd niet verwijderen."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Rij # {0}: kan item {1} dat al is afgeleverd niet verwijderen"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Rij # {0}: kan item {1} dat al is ontvangen niet verwijderen"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Rij # {0}: kan item {1} niet verwijderen waaraan een werkorder is toegewezen."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Rij #{0}: Artikel {1} kan niet worden verwijderd, omdat het al is besteld voor deze verkooporder."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Rij #{0}: Tarief kan niet worden ingesteld als het gefactureerde bedrag groter is dan het bedrag voor artikel {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Rij #{0}: Kan niet meer dan de vereiste hoeveelheid {1} overdragen voor artikel {2} tegen werkbon {3}"
@@ -45408,11 +45469,11 @@ msgstr "Rij #{0}: Klant geleverd artikel {1} tegen onderaannemingsorder artikel
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Rij #{0}: Door de klant geleverd artikel {1} kan niet meerdere keren worden toegevoegd in het proces voor het ontvangen van onderaannemingsgoederen."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Rij #{0}: Door de klant aangeleverd artikel {1} kan niet meerdere keren worden toegevoegd."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Rij #{0}: Door de klant geleverd artikel {1} bestaat niet in de tabel 'Vereiste artikelen' die is gekoppeld aan de inkooporder voor onderaanneming."
@@ -45420,7 +45481,7 @@ msgstr "Rij #{0}: Door de klant geleverd artikel {1} bestaat niet in de tabel 'V
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Rij #{0}: Door de klant geleverd artikel {1} overschrijdt de beschikbare hoeveelheid via de onderaannemingsopdracht"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Rij #{0}: Door de klant geleverd artikel {1} heeft onvoldoende hoeveelheid in de onderaannemingsorder. Beschikbare hoeveelheid is {2}."
@@ -45437,7 +45498,7 @@ msgstr "Rij #{0}: Door de klant geleverd artikel {1} maakt geen deel uit van wer
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Rij #{0}: Datums die overlappen met een andere rij in groep {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Rij #{0}: Standaard stuklijst niet gevonden voor FG-item {1}"
@@ -45461,22 +45522,22 @@ msgstr "Rij #{0}: Kostenrekening niet ingesteld voor het item {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Rij #{0}: Kostenrekening {1} is niet geldig voor inkoopfactuur {2}. Alleen kostenrekeningen van niet-voorraadartikelen zijn toegestaan."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Rij #{0}: Aantal afgewerkte artikelen mag niet nul zijn"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Rij #{0}: Afgewerkt product is niet gespecificeerd voor serviceartikel {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Rij #{0}: Afgewerkt product {1} moet een uitbestede productie zijn"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Rij #{0}: Afgerond Goed moet {1} zijn"
@@ -45505,7 +45566,7 @@ msgstr "Rij #{0}: De afschrijvingsfrequentie moet groter zijn dan nul"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Rij #{0}: Van datum mag niet vóór de einddatum liggen"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Rij #{0}: De velden 'Van tijd' en 'Tot tijd' zijn verplicht."
@@ -45513,7 +45574,7 @@ msgstr "Rij #{0}: De velden 'Van tijd' en 'Tot tijd' zijn verplicht."
msgid "Row #{0}: Item added"
msgstr "Rij # {0}: item toegevoegd"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Rij #{0}: Item {1} kan niet meer dan {2} worden overgeplaatst naar {3} {4}"
@@ -45541,7 +45602,7 @@ msgstr "Rij #{0}: Artikel {1} in magazijn {2}: Beschikbaar {3}, Nodig {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Rij #{0}: Artikel {1} is geen door de klant geleverd artikel."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Rij # {0}: artikel {1} is geen geserialiseerd / batch artikel. Het kan geen serienummer / batchnummer hebben."
@@ -45582,7 +45643,7 @@ msgstr "Rij #{0}: De volgende afschrijvingsdatum mag niet vóór de datum van be
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Rij #{0}: De volgende afschrijvingsdatum mag niet vóór de aankoopdatum liggen."
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Rij # {0}: Niet toegestaan om van leverancier te veranderen als bestelling al bestaat"
@@ -45594,10 +45655,6 @@ msgstr "Rij #{0}: Alleen {1} beschikbaar om te reserveren voor item {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Rij #{0}: De beginwaarde van de geaccumuleerde afschrijving moet kleiner dan of gelijk aan {1} zijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Rij # {0}: bewerking {1} is niet voltooid voor {2} aantal voltooide goederen in werkorder {3}. Werk de bedieningsstatus bij via opdrachtkaart {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45619,11 +45676,11 @@ msgstr "Rij #{0}: Selecteer het eindproduct waarvoor dit door de klant aangeleve
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Rij #{0}: Selecteer het magazijn voor de subassemblage"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Rij # {0}: Stel nabestelling hoeveelheid"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Rij #{0}: Werk de rekening voor uitgestelde opbrengsten/kosten in de artikelregel of de standaardrekening in de bedrijfsstamgegevens bij."
@@ -45645,15 +45702,15 @@ msgstr "Rij #{0}: Aantal moet een positief getal zijn"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Rij #{0}: De hoeveelheid moet kleiner of gelijk zijn aan de beschikbare hoeveelheid om te reserveren (werkelijke hoeveelheid - gereserveerde hoeveelheid) {1} voor artikel {2} tegen batch {3} in magazijn {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Rij #{0}: Kwaliteitsinspectie is vereist voor artikel {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Rij #{0}: Kwaliteitsinspectie {1} is niet ingediend voor het artikel: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Rij #{0}: Kwaliteitsinspectie {1} werd afgekeurd voor artikel {2}"
@@ -45661,7 +45718,7 @@ msgstr "Rij #{0}: Kwaliteitsinspectie {1} werd afgekeurd voor artikel {2}"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Rij #{0}: De hoeveelheid mag geen niet-positief getal zijn. Verhoog de hoeveelheid of verwijder het item {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Rij # {0}: Artikelhoeveelheid voor item {1} kan niet nul zijn."
@@ -45677,18 +45734,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Rij #{0}: De hoeveelheid die voor het artikel {1} gereserveerd moet worden, moet groter zijn dan 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Rij #{0}: Tarief moet hetzelfde zijn als {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Rij # {0}: Reference document moet een van Purchase Order, Purchase Invoice of Inboeken zijn"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Rij # {0}: het type referentiedocument moet een verkooporder, verkoopfactuur, journaalboeking of aanmaning zijn"
@@ -45730,7 +45787,7 @@ msgstr "Rij #{0}: De verkoopprijs voor artikel {1} is lager dan die van {2}.\n"
"\t\t\t\t\tkunt u '{5}' in {6} uitschakelen om\n"
"\t\t\t\t\tdeze validatie te omzeilen."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Rij #{0}: Volgorde-ID moet {1} of {2} zijn voor bewerking {3}."
@@ -45750,19 +45807,19 @@ msgstr "Rij #{0}: Serienummer {1} is al geselecteerd."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Rij #{0}: Serienummer(s) {1} maken geen deel uit van de gekoppelde onderaannemingsopdracht. Selecteer de geldige serienummer(s)."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Rij # {0}: Einddatum van de service kan niet vóór de boekingsdatum van de factuur liggen"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Rij # {0}: Service startdatum kan niet groter zijn dan service einddatum"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Rij # {0}: Service-start- en einddatum is vereist voor uitgestelde boekhouding"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Rij # {0}: Stel Leverancier voor punt {1}"
@@ -45774,19 +45831,19 @@ msgstr "Rij #{0}: Omdat 'Halfafgewerkte producten volgen' is ingeschakeld, kan d
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Rij #{0}: Bronmagazijn moet hetzelfde zijn als klantmagazijn {1} uit de gekoppelde onderaannemingsorder."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Rij #{0}: Bronmagazijn {1} voor artikel {2} mag geen klantmagazijn zijn."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Rij #{0}: Bronmagazijn {1} voor artikel {2} moet hetzelfde zijn als bronmagazijn {3} in de werkorder."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Rij #{0}: Bron- en doelmagazijn mogen niet hetzelfde zijn voor materiaaloverdracht"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Rij #{0}: Bron-, doelmagazijn- en voorraadafmetingen mogen niet exact hetzelfde zijn voor materiaaloverdracht."
@@ -45802,6 +45859,10 @@ msgstr "Rij #{0}: Status is verplicht"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Rij # {0}: Status moet {1} zijn voor factuurkorting {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Rij #{0}: Er kan geen voorraad worden gereserveerd voor artikel {1} tegen een uitgeschakelde batch {2}."
@@ -45818,7 +45879,7 @@ msgstr "Rij #{0}: Voorraad kan niet worden gereserveerd in groepsmagazijn {1}."
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Rij #{0}: De voorraad voor artikel {1} is al gereserveerd."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Rij #{0}: Voorraad is gereserveerd voor artikel {1} in magazijn {2}."
@@ -45831,7 +45892,7 @@ msgstr "Rij #{0}: Voorraad niet beschikbaar om te reserveren voor Artikel {1} te
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Rij #{0}: Er is geen voorraad beschikbaar om te reserveren voor artikel {1} in magazijn {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Rij #{0}: Voorraadhoeveelheid {1} ({2}) voor artikel {3} mag niet groter zijn dan {4}"
@@ -45843,7 +45904,7 @@ msgstr "Rij #{0}: Het doelmagazijn moet hetzelfde zijn als het klantmagazijn {1}
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Rij # {0}: de batch {1} is al verlopen."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Rij #{0}: Het magazijn {1} is geen ondergeschikt magazijn van een groepsmagazijn {2}"
@@ -45879,7 +45940,7 @@ msgstr "Rij #{0}: U kunt de voorraaddimensie '{1}' niet gebruiken in voorraadafs
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Rij #{0}: U moet een activum selecteren voor item {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Row # {0}: {1} kan niet negatief voor producten van post {2}"
@@ -45895,7 +45956,7 @@ msgstr "Rij #{0}: {1} is vereist om de openingsfacturen {2} te maken"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Rij #{0}: {1} van {2} moet {3}zijn. Werk de {1} bij of selecteer een ander account."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45996,7 +46057,7 @@ msgstr "Rij # {}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Rij # {}: {} {} bestaat niet."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Rijnummer {}: {} {} behoort niet tot bedrijf {}. Selecteer een geldige {}."
@@ -46004,7 +46065,7 @@ msgstr "Rijnummer {}: {} {} behoort niet tot bedrijf {}. Selecteer een geldige {
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Rijnummer {0}: Magazijn is vereist. Stel een standaardmagazijn in voor artikel {1} en bedrijf {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Rij {0}: bewerking vereist ten opzichte van het artikel met de grondstof {1}"
@@ -46012,7 +46073,7 @@ msgstr "Rij {0}: bewerking vereist ten opzichte van het artikel met de grondstof
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "De hoeveelheid die in rij {0} is verzameld, is kleiner dan de vereiste hoeveelheid; er is een extra hoeveelheid van {1} {2} nodig."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Rij {0}# Item {1} niet gevonden in tabel 'Geleverde grondstoffen' in {2} {3}"
@@ -46044,11 +46105,11 @@ msgstr "Rij {0}: Toegewezen bedrag {1} moet kleiner of gelijk zijn aan het opens
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Rij {0}: Toegewezen bedrag {1} moet kleiner of gelijk zijn aan het resterende betalingsbedrag {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Rij {0}: Omdat {1} is ingeschakeld, kunnen er geen grondstoffen worden toegevoegd aan item {2} . Gebruik item {3} om grondstoffen te verbruiken."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Rij {0}: Bill of Materials niet gevonden voor het artikel {1}"
@@ -46066,7 +46127,7 @@ msgstr "Rij {0}: Verbruikte hoeveelheid {1} {2} moet kleiner of gelijk zijn aan
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Rij {0}: Conversie Factor is verplicht"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Rij {0}: Kostenplaats {1} behoort niet tot bedrijf {2}"
@@ -46086,7 +46147,7 @@ msgstr "Rij {0}: Munt van de BOM # {1} moet gelijk zijn aan de geselecteerde val
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Rij {0}: debitering niet kan worden verbonden met een {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Rij {0}: Delivery Warehouse ({1}) en Customer Warehouse ({2}) kunnen niet hetzelfde zijn"
@@ -46094,7 +46155,7 @@ msgstr "Rij {0}: Delivery Warehouse ({1}) en Customer Warehouse ({2}) kunnen nie
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Rij {0}: Het leveringsmagazijn mag niet hetzelfde zijn als het klantmagazijn voor artikel {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Rij {0}: de vervaldatum in de tabel met betalingsvoorwaarden mag niet vóór de boekingsdatum liggen"
@@ -46139,16 +46200,16 @@ msgstr "Rij {0}: voor leverancier {1} is het e-mailadres vereist om een e-mail t
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Rij {0}: Van tijd en binnen Tijd is verplicht."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Rij {0}: Van tijd en de tijd van de {1} overlapt met {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Rij {0}: Vanuit magazijn is verplicht voor interne overdrachten"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Rij {0}: van tijd moet korter zijn dan tot tijd"
@@ -46164,7 +46225,7 @@ msgstr "Rij {0}: Invalid referentie {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Rij {0}: Artikelbelastingsjabloon bijgewerkt volgens geldigheidsdatum en toegepast tarief"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Rij {0}: De artikelprijs is bijgewerkt volgens de waarderingskoers, aangezien het een interne voorraadoverdracht betreft."
@@ -46188,7 +46249,7 @@ msgstr "Rij {0}: De hoeveelheid van item {1}mag niet hoger zijn dan de beschikba
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Rij {0}: De verpakte hoeveelheid moet gelijk zijn aan de hoeveelheid in {1}."
@@ -46256,7 +46317,7 @@ msgstr "Rij {0}: Inkoopfactuur {1} heeft geen invloed op de voorraad."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Rij {0}: De hoeveelheid mag niet groter zijn dan {1} voor het artikel {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Rij {0}: Aantal in voorraad UOM mag niet nul zijn."
@@ -46268,10 +46329,6 @@ msgstr "Rij {0}: Aantal moet groter zijn dan 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Rij {0}: De hoeveelheid mag niet negatief zijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Rij {0}: hoeveelheid niet beschikbaar voor {4} in magazijn {1} op het moment van boeking ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Rij {0}: Verkoopfactuur {1} is al aangemaakt voor {2}"
@@ -46280,11 +46337,11 @@ msgstr "Rij {0}: Verkoopfactuur {1} is al aangemaakt voor {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Rij {0}: De shift kan niet worden gewijzigd omdat de afschrijving al is verwerkt."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Rij {0}: uitbesteed artikel is verplicht voor de grondstof {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Rij {0}: Doelmagazijn is verplicht voor interne overdrachten"
@@ -46296,11 +46353,11 @@ msgstr "Rij {0}: Taak {1} behoort niet tot Project {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Rij {0}: Het volledige uitgavenbedrag voor rekening {1} in {2} is reeds toegewezen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Rij {0}: het artikel {1}, de hoeveelheid moet een positief getal zijn"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Rij {0}: De {3} rekening {1} behoort niet tot het bedrijf {2}"
@@ -46308,11 +46365,11 @@ msgstr "Rij {0}: De {3} rekening {1} behoort niet tot het bedrijf {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Rij {0}: Om de periodiciteit {1} in te stellen, moet het verschil tussen de begin- en einddatum groter dan of gelijk aan {2} zijn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Rij {0}: De overgedragen hoeveelheid mag niet groter zijn dan de gevraagde hoeveelheid."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Rij {0}: Verpakking Conversie Factor is verplicht"
@@ -46325,11 +46382,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Rij {0}: Werkstation of werkstationtype is verplicht voor een bewerking {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Rij {0}: gebruiker heeft regel {1} niet toegepast op item {2}"
@@ -46341,7 +46398,7 @@ msgstr "Rij {0}: {1} rekening reeds toegepast voor boekhouddimensie {2}"
msgid "Row {0}: {1} must be greater than 0"
msgstr "Rij {0}: {1} moet groter zijn dan 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Rij {0}: {1} {2} mag niet hetzelfde zijn als {3} (Partijrekening) {4}"
@@ -46387,7 +46444,7 @@ msgstr "Rijen verwijderd in {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Rijen met dezelfde rekeningnamen worden in het grootboek samengevoegd."
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Rijen met dubbele vervaldatums in andere rijen zijn gevonden: {0}"
@@ -46395,7 +46452,7 @@ msgstr "Rijen met dubbele vervaldatums in andere rijen zijn gevonden: {0}"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Rijen: {0} hebben 'Betalingsinvoer' als referentietype. Dit mag niet handmatig worden ingesteld."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Rijen: {0} in sectie {1} zijn ongeldig. De referentienaam moet verwijzen naar een geldige betalingsboeking of journaalpost."
@@ -46602,8 +46659,8 @@ msgstr "Veiligheidsvoorraad"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46625,8 +46682,8 @@ msgstr "Salarismodus"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46640,18 +46697,23 @@ msgstr "Salarismodus"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "verkoop"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Verkoopaccount"
@@ -46675,8 +46737,8 @@ msgstr "Verkoopbijdragen en -bonussen"
msgid "Sales Defaults"
msgstr "Verkoopwanbetalingen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Verkoopkosten"
@@ -46845,11 +46907,11 @@ msgstr "De verkoopfactuur is niet aangemaakt door gebruiker {}."
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "De modus voor verkoopfacturen is geactiveerd in het kassasysteem. Maak in plaats daarvan een verkoopfactuur aan."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Verkoopfactuur {0} is al ingediend"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Verkoopfactuur {0} moet worden verwijderd voordat deze verkooporder kan worden geannuleerd."
@@ -47047,25 +47109,25 @@ msgstr "Verkooporder Trends"
msgid "Sales Order required for Item {0}"
msgstr "Verkooporder nodig voor Artikel {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Verkooporder {0} bestaat al voor de inkooporder van de klant {1}. Om meerdere verkooporders toe te staan, schakelt u {2} in via {3}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Verkooporder {0} is niet ingediend"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Verkooporder {0} is niet geldig"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Verkooporder {0} is {1}"
@@ -47109,6 +47171,7 @@ msgstr "Te leveren verkooporders"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47121,7 +47184,7 @@ msgstr "Te leveren verkooporders"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47227,7 +47290,7 @@ msgstr "Samenvatting verkoopbetaling"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47320,7 +47383,7 @@ msgstr "Verkoopregister"
msgid "Sales Representative"
msgstr "Verkoopvertegenwoordiger"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Terugkerende verkoop"
@@ -47344,7 +47407,7 @@ msgstr "Verkoopoverzicht"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Omzetbelastingsjabloon"
@@ -47463,7 +47526,7 @@ msgstr "Hetzelfde artikel"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Dezelfde artikel- en magazijncombinatie is al ingevoerd."
@@ -47495,12 +47558,12 @@ msgstr "Monsterbewaringsmagazijn"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Monster grootte"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Voorbeeldhoeveelheid {0} kan niet meer dan ontvangen aantal {1} zijn"
@@ -47744,7 +47807,7 @@ msgstr "Schrootactiva"
msgid "Scrap Warehouse"
msgstr "Schrootmagazijn"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "De datum waarop het afval wordt verwijderd, mag niet vóór de aankoopdatum liggen."
@@ -47863,8 +47926,8 @@ msgstr "Secundaire rol"
msgid "Secretary"
msgstr "Secretaris"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Leningen met onderpand"
@@ -47902,7 +47965,7 @@ msgstr "Selecteer alternatief item"
msgid "Select Alternative Items for Sales Order"
msgstr "Selecteer alternatieve artikelen voor de verkooporder"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Selecteer kenmerkwaarden"
@@ -47944,7 +48007,7 @@ msgstr "Selecteer Bedrijf"
msgid "Select Company Address"
msgstr "Selecteer het bedrijfsadres"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Selecteer Correctieve bewerking"
@@ -47980,7 +48043,7 @@ msgstr "Selecteer dimensie"
msgid "Select Dispatch Address "
msgstr "Selecteer verzendadres "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Selecteer Medewerkers"
@@ -48005,7 +48068,7 @@ msgstr "Selecteer items"
msgid "Select Items based on Delivery Date"
msgstr "Selecteer items op basis van leveringsdatum"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Selecteer artikelen voor kwaliteitscontrole"
@@ -48043,7 +48106,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Stel mogelijke Leverancier"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Kies aantal"
@@ -48118,7 +48181,7 @@ msgstr "Selecteer een standaardprioriteit."
msgid "Select a Payment Method."
msgstr "Kies een betaalmethode."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Selecteer een leverancier"
@@ -48141,7 +48204,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Selecteer een artikelgroep."
@@ -48157,9 +48220,9 @@ msgstr "Selecteer een factuur om samenvattende gegevens te laden."
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Selecteer uit elke set een artikel dat in de verkooporder moet worden gebruikt."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Selecteer ten minste één waarde uit elk van de kenmerken."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48175,7 +48238,7 @@ msgstr "Selecteer eerst de bedrijfsnaam."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Selecteer financieringsboek voor het artikel {0} op rij {1}"
@@ -48207,7 +48270,7 @@ msgstr "Selecteer de bankrekening die u wilt afstemmen."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Selecteer het standaardwerkstation waar de bewerking zal worden uitgevoerd. Deze informatie wordt automatisch opgehaald in stuklijsten en werkorders."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Selecteer het te produceren artikel."
@@ -48224,7 +48287,7 @@ msgstr "Selecteer het magazijn"
msgid "Select the customer or supplier."
msgstr "Selecteer de klant of leverancier."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Selecteer de datum"
@@ -48232,6 +48295,12 @@ msgstr "Selecteer de datum"
msgid "Select the date and your timezone"
msgstr "Selecteer de datum en uw tijdzone."
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Selecteer de grondstoffen (items) die nodig zijn om het item te vervaardigen."
@@ -48260,7 +48329,7 @@ msgstr "Selecteer deze velden om de klant doorzoekbaar te maken."
msgid "Selected POS Opening Entry should be open."
msgstr "Het geselecteerde POS-openingsitem moet open zijn."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "In de geselecteerde prijslijst moeten de velden voor kopen en verkopen worden gecontroleerd."
@@ -48291,30 +48360,30 @@ msgstr "Het geselecteerde document moet in de ingediende staat zijn."
msgid "Self delivery"
msgstr "Zelf bezorgen"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Verkopen"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Verkoop activa"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Verkoophoeveelheid"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "De verkoophoeveelheid mag de hoeveelheid activa niet overschrijden."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "De verkoophoeveelheid mag de hoeveelheid van het actief niet overschrijden. Actief {0} heeft slechts {1} item(s)."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "De verkoophoeveelheid moet groter zijn dan nul."
@@ -48567,7 +48636,7 @@ msgstr "Serie-/batchnummers"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48587,7 +48656,7 @@ msgstr "Serie-/batchnummers"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48632,7 +48701,7 @@ msgstr "Serienummerbereik"
msgid "Serial No Reserved"
msgstr "Serienummer gereserveerd"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Serienummerreeks overlapt"
@@ -48772,7 +48841,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Serienummers zijn succesvol aangemaakt."
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Serienummers zijn gereserveerd in de voorraadreservering; u moet deze reservering deblokkeren voordat u verder kunt gaan."
@@ -48842,7 +48911,7 @@ msgstr "Serieel en batchgewijs"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49256,7 +49325,7 @@ msgstr "Voorschotten instellen en toewijzen (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Stel het basistarief handmatig in"
@@ -49275,8 +49344,8 @@ msgstr "Set Delivery Warehouse"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Set voltooid, goede hoeveelheid"
@@ -49443,11 +49512,11 @@ msgstr "Instellen per artikel Belastingsjabloon"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Stel standaard inventaris rekening voor permanente inventaris"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Stel de standaard {0} rekening in voor artikelen die niet op voorraad zijn."
@@ -49479,7 +49548,7 @@ msgstr "Stel de prijs van het subassemblageonderdeel in op basis van de stuklijs
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Stel per artikelgroep doelstellingen in voor deze verkoper."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Stel de geplande startdatum in (een geschatte datum waarop u wilt dat de productie begint)."
@@ -49590,7 +49659,7 @@ msgid "Setting up company"
msgstr "Bedrijf oprichten"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Instellen {0} is vereist"
@@ -49610,6 +49679,10 @@ msgstr "Instellingen voor de verkoopmodule"
msgid "Settled"
msgstr "verrekend"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49802,7 +49875,7 @@ msgstr "Verzendtype"
msgid "Shipment details"
msgstr "Verzendgegevens"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Zendingen"
@@ -49840,7 +49913,7 @@ msgstr "Naam van het verzendadres"
msgid "Shipping Address Template"
msgstr "Verzendadressjabloon"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Het verzendadres hoort niet bij de {0}"
@@ -49983,8 +50056,8 @@ msgstr "Korte biografie voor website en andere publicaties."
msgid "Short-term Investments"
msgstr "Kortetermijninvesteringen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kortetermijnvoorzieningen"
@@ -50318,7 +50391,7 @@ msgstr "Gelijktijdig"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Omdat er een procesverlies is van {0} eenheden voor het eindproduct {1}, moet u de hoeveelheid met {0} eenheden verminderen voor het eindproduct {1} in de artikeltabel."
@@ -50363,7 +50436,7 @@ msgstr "Sla de bezorgnota over"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50405,8 +50478,8 @@ msgstr "Egaliserende constante"
msgid "Soap & Detergent"
msgstr "Zeep en wasmiddel"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Software"
@@ -50430,7 +50503,7 @@ msgstr "Verkocht door"
msgid "Solvency Ratios"
msgstr "Oplosbaarheidsverhoudingen"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Er ontbreken enkele verplichte bedrijfsgegevens. U hebt geen toestemming om deze bij te werken. Neem contact op met uw systeembeheerder."
@@ -50494,7 +50567,7 @@ msgstr "Bronveldnaam"
msgid "Source Location"
msgstr "Bronlocatie"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50503,11 +50576,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50565,7 +50638,12 @@ msgstr "Link naar het adres van het bronmagazijn"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Het bronmagazijn is verplicht voor het item {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Het bronmagazijn {0} moet hetzelfde zijn als het klantmagazijn {1} in de onderaannemingsopdracht."
@@ -50573,24 +50651,23 @@ msgstr "Het bronmagazijn {0} moet hetzelfde zijn als het klantmagazijn {1} in de
msgid "Source and Target Location cannot be same"
msgstr "Bron en doellocatie kunnen niet hetzelfde zijn"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Bron- en doelmagazijn kan niet hetzelfde zijn voor de rij {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Bron en doel magazijn moet verschillen"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Bron van Kapitaal (Passiva)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Bron magazijn is verplicht voor rij {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50631,7 +50708,7 @@ msgstr "De uitgaven voor rekening {0} ({1}) tussen {2} en {3} hebben het nieuwe
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50639,7 +50716,7 @@ msgid "Split"
msgstr "spleet"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Gesplitst vermogen"
@@ -50663,7 +50740,7 @@ msgstr "Afgesplitst van"
msgid "Split Issue"
msgstr "Gesplitste probleem"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Gesplitste hoeveelheid"
@@ -50675,6 +50752,11 @@ msgstr "De gesplitste hoeveelheid moet kleiner zijn dan de hoeveelheid activa."
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Splitsen van {0} {1} in {2} rijen volgens de betalingsvoorwaarden"
@@ -50747,13 +50829,13 @@ msgstr "Standard kopen"
msgid "Standard Description"
msgstr "Standaardbeschrijving"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Standaardtariefkosten"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standaard Verkoop"
@@ -50774,8 +50856,8 @@ msgstr "Standaardsjabloon"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standaard algemene voorwaarden die aan verkoop- en inkoopovereenkomsten kunnen worden toegevoegd. Voorbeelden: Geldigheid van het aanbod, betalingsvoorwaarden, veiligheid en gebruik, enz."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Standaard benodigdheden in {0}"
@@ -50810,7 +50892,7 @@ msgstr "Startdatum kan niet vóór de huidige datum liggen"
msgid "Start Date should be lower than End Date"
msgstr "De begindatum moet lager zijn dan de einddatum."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Beginnen met de baan"
@@ -50939,7 +51021,7 @@ msgstr "Statusillustratie"
msgid "Status and Reference"
msgstr "Status en referentie"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status moet worden geannuleerd of voltooid"
@@ -50969,6 +51051,7 @@ msgstr "Wettelijke informatie en andere algemene informatie over uw leverancier"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50977,8 +51060,8 @@ msgstr "Voorraad"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51078,6 +51161,16 @@ msgstr "De transactie voor het afsluiten van de voorraad {0} is in de wachtrij g
msgid "Stock Closing Log"
msgstr "Logboek voor voorraadafsluiting"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51087,10 +51180,6 @@ msgstr "Logboek voor voorraadafsluiting"
msgid "Stock Details"
msgstr "Voorraadgegevens"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Reeds aangemaakte voorraadboekingen voor werkorder {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51154,7 +51243,7 @@ msgstr "Voorraadinvoer is al gemaakt op basis van deze keuzelijst"
msgid "Stock Entry {0} created"
msgstr "Stock Entry {0} aangemaakt"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Stock Entry {0} heeft aangemaakt"
@@ -51162,8 +51251,8 @@ msgstr "Stock Entry {0} heeft aangemaakt"
msgid "Stock Entry {0} is not submitted"
msgstr "Stock Entry {0} is niet ingediend"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Voorraadkosten"
@@ -51241,8 +51330,8 @@ msgstr "Voorraadniveaus"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Voorraad Verplichtingen"
@@ -51345,8 +51434,8 @@ msgstr "Voorraadaantal versus serienummer"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51358,7 +51447,7 @@ msgstr "Voorraad ontvangen maar nog niet gefactureerd"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51370,7 +51459,7 @@ msgstr "Voorraad Aflettering"
msgid "Stock Reconciliation Item"
msgstr "Voorraad Afletteren Artikel"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Voorraadafstemmingen"
@@ -51395,9 +51484,9 @@ msgstr "Instellingen voor het opnieuw plaatsen van aandelen"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51408,7 +51497,7 @@ msgstr "Instellingen voor het opnieuw plaatsen van aandelen"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51433,10 +51522,10 @@ msgstr "Voorraadreservering"
msgid "Stock Reservation Entries Cancelled"
msgstr "Aandelenreserveringsinschrijvingen geannuleerd"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Aangemaakte reserveringsposten voor voorraden"
@@ -51464,7 +51553,7 @@ msgstr "De voorraadreservering kan niet worden bijgewerkt omdat het artikel is g
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 "Een voorraadreservering die is aangemaakt op basis van een picklijst kan niet worden gewijzigd. Als u wijzigingen wilt aanbrengen, raden we u aan de bestaande reservering te annuleren en een nieuwe aan te maken."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Voorraadreservering Magazijn Mismatch"
@@ -51504,7 +51593,7 @@ msgstr "Gereserveerde voorraadhoeveelheid (in voorraadeenheid)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51619,7 +51708,7 @@ msgstr "Instellingen voor aandelentransacties"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51752,11 +51841,11 @@ msgstr "Voorraad kan niet worden gereserveerd in een groepsmagazijn {0}."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Voorraad kan niet worden gereserveerd in het groepsmagazijn {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "De voorraad kan niet worden bijgewerkt op basis van de volgende leveringsbonnen: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "De voorraad kan niet worden bijgewerkt omdat de factuur een dropshipping-artikel bevat. Schakel 'Voorraad bijwerken' uit of verwijder het dropshipping-artikel."
@@ -51811,14 +51900,14 @@ msgstr "Steen"
msgid "Stop Reason"
msgstr "Stop reden"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Stopped Work Order kan niet geannuleerd worden, laat het eerst annuleren om te annuleren"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Winkels"
@@ -51876,7 +51965,7 @@ msgstr "Subassemblagemagazijn"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52138,7 +52227,7 @@ msgstr "Ondercontracteringsopdracht Serviceartikel"
msgid "Subcontracting Order Supplied Item"
msgstr "Ondercontractuele opdracht, geleverd artikel"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Ondercontracteringsopdracht {0} aangemaakt."
@@ -52227,7 +52316,7 @@ msgstr ""
msgid "Subdivision"
msgstr "Onderverdeling"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Actie verzenden mislukt"
@@ -52248,7 +52337,7 @@ msgstr "Facturen indienen"
msgid "Submit Journal Entries"
msgstr "Dagboeknotities indienen"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Dien deze werkbon in voor verdere verwerking."
@@ -52402,7 +52491,7 @@ msgstr "Succesvol Afgeletterd"
msgid "Successfully Set Supplier"
msgstr "Leverancier met succes instellen"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "De artikeleenheid is succesvol gewijzigd. Definieer de conversiefactoren opnieuw voor de nieuwe eenheid."
@@ -52426,7 +52515,7 @@ msgstr "Succesvol {0} records geïmporteerd."
msgid "Successfully linked to Customer"
msgstr "Succesvol gekoppeld aan klant"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Succesvol gekoppeld aan leverancier"
@@ -52586,7 +52675,7 @@ msgstr "Meegeleverde Aantal"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52684,6 +52773,7 @@ msgstr "Leveranciersgegevens"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52693,7 +52783,7 @@ msgstr "Leveranciersgegevens"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52708,6 +52798,7 @@ msgstr "Leveranciersgegevens"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52792,7 +52883,7 @@ msgstr "Overzicht leveranciersboek"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52827,8 +52918,6 @@ msgid "Supplier Number At Customer"
msgstr "Leveranciersnummer bij de klant"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Leveranciersnummers"
@@ -52880,7 +52969,7 @@ msgstr "Primaire contactpersoon leverancier"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52909,7 +52998,7 @@ msgstr "Vergelijking van offertes van leveranciers"
msgid "Supplier Quotation Item"
msgstr "Leverancier Offerte Artikel"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Offerte van leverancier {0} gemaakt"
@@ -52998,7 +53087,7 @@ msgstr "Leverancierstype"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Leveranciersmagazijn"
@@ -53015,17 +53104,12 @@ msgstr "Leverancier levert aan klant"
msgid "Supplier is required for all selected Items"
msgstr "Voor alle geselecteerde artikelen is een leverancier vereist."
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Leveranciersnummers toegewezen door de klant"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Leverancier van goederen of diensten."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Leverancier {0} niet gevonden in {1}"
@@ -53038,8 +53122,8 @@ msgstr "Leverancier(s)"
msgid "Suppliers"
msgstr "Leveranciers"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Leveringen waarop de verleggingsregeling van toepassing is."
@@ -53130,7 +53214,7 @@ msgstr "Synchronisatie gestart"
msgid "Synchronize all accounts every hour"
msgstr "Synchroniseer alle accounts elk uur."
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Systeem in gebruik"
@@ -53161,7 +53245,7 @@ msgstr "Het systeem voert een impliciete conversie uit met behulp van de gekoppe
msgid "System will fetch all the entries if limit value is zero."
msgstr "Het systeem haalt alle items op als de limietwaarde nul is."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Het systeem zal de facturering niet controleren, aangezien het bedrag voor artikel {0} in {1} nul is."
@@ -53182,10 +53266,16 @@ msgstr "Samenvatting van de TDS-berekening"
msgid "TDS Deducted"
msgstr "Ingehouden bronbelasting"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Te betalen bronbelasting"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53333,7 +53423,7 @@ msgstr "Doeladres van het magazijn"
msgid "Target Warehouse Address Link"
msgstr "Link naar het adres van het Target-magazijn"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Fout bij het reserveren van het doelmagazijn"
@@ -53341,24 +53431,23 @@ msgstr "Fout bij het reserveren van het doelmagazijn"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Het doelmagazijn voor het eindproduct moet hetzelfde zijn als het magazijn voor het eindproduct {1} in de werkorder {2} die is gekoppeld aan de inkomende order voor de onderaanneming."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Het doelmagazijn is vereist voordat u kunt indienen."
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Het doelmagazijn is ingesteld voor sommige artikelen, maar de klant is geen interne klant."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Het doelmagazijn {0} moet hetzelfde zijn als het leveringsmagazijn {1} in het artikel van de onderaannemingsorder."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Doel magazijn is verplicht voor rij {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53475,8 +53564,8 @@ msgstr "Belastingbedrag na aftrek van korting (valuta van het bedrijf)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Het belastingbedrag wordt afgerond op regel-/artikelniveau."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Belastingvorderingen"
@@ -53508,7 +53597,6 @@ msgstr "Belastingvorderingen"
msgid "Tax Breakup"
msgstr "Belastingsplitsing"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53530,7 +53618,6 @@ msgstr "Belastingsplitsing"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53546,6 +53633,7 @@ msgstr "Belastingsplitsing"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53557,8 +53645,8 @@ msgstr "Belastingcategorie"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Belastingcategorie is gewijzigd in "Totaal" omdat alle items niet-voorraad items zijn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Belastingkosten"
@@ -53632,7 +53720,7 @@ msgstr "Belastingtarief %"
msgid "Tax Rates"
msgstr "Belastingtarieven"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Belastingteruggave aan toeristen in het kader van de regeling voor belastingteruggave aan toeristen."
@@ -53650,7 +53738,7 @@ msgstr "Belastingrij"
msgid "Tax Rule"
msgstr "Belasting Regel"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Belasting Regel Conflicten met {0}"
@@ -53665,7 +53753,7 @@ msgstr "Belastinginstellingen"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Belasting Template is verplicht."
@@ -53985,7 +54073,7 @@ msgstr "Afgetrokken belastingen en heffingen"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Ingehouden belastingen en heffingen (valuta van het bedrijf)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Belastingen rij #{0}: {1} kan niet kleiner zijn dan {2}"
@@ -54018,8 +54106,8 @@ msgstr "Technologie"
msgid "Telecommunications"
msgstr "Telecommunicatie"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefoonkosten"
@@ -54070,13 +54158,13 @@ msgstr "Tijdelijk in de wacht"
msgid "Temporary"
msgstr "tijdelijk"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Tijdelijke accounts"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Tijdelijke opening"
@@ -54258,7 +54346,7 @@ msgstr "Sjabloon voor algemene voorwaarden"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54357,7 +54445,7 @@ msgstr "Tekst die op de jaarrekening wordt weergegeven (bijv. 'Totale omzet', 'K
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Het 'Van pakketnummer' veld mag niet leeg zijn of de waarde is kleiner dan 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "De toegang tot offerteaanvragen via de portal is uitgeschakeld. Om toegang toe te staan, schakelt u deze in via de portaalinstellingen."
@@ -54410,7 +54498,8 @@ msgstr "De betalingstermijn op rij {0} is mogelijk een duplicaat."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "De picklijst met voorraadreserveringen kan niet worden bijgewerkt. Als u wijzigingen wilt aanbrengen, raden we u aan de bestaande voorraadreserveringen te annuleren voordat u de picklijst bijwerkt."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "De hoeveelheid procesverlies is gereset volgens de werkbonnen."
@@ -54426,7 +54515,7 @@ msgstr "Het serienummer op rij #{0}: {1} is niet beschikbaar in magazijn {2}."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Het serienummer {0} is gereserveerd voor de {1} {2} en kan niet voor andere transacties worden gebruikt."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "De Serial and Batch Bundle {0} is niet geldig voor deze transactie. Het 'Type of Transaction' moet 'Outward' zijn in plaats van 'Inward' in Serial and Batch Bundle {0}."
@@ -54463,7 +54552,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "De batch {0} is al gereserveerd in {1} {2}. Daarom kan niet verder met {3} {4}, die is aangemaakt voor {5} {6}."
@@ -54471,7 +54560,11 @@ msgstr "De batch {0} is al gereserveerd in {1} {2}. Daarom kan niet verder met {
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "De voltooide hoeveelheid {0} van een bewerking {1} kan niet groter zijn dan de voltooide hoeveelheid {2} van een vorige bewerking {3}."
@@ -54491,7 +54584,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "De standaard stuklijst (BOM) voor dat artikel wordt door het systeem opgehaald. U kunt de stuklijst ook wijzigen."
@@ -54524,7 +54617,7 @@ msgstr "Het veld Van Aandeelhouder mag niet leeg zijn"
msgid "The field To Shareholder cannot be blank"
msgstr "Het veld Naar aandeelhouder mag niet leeg zijn"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Het veld {0} in rij {1} is niet ingesteld."
@@ -54565,11 +54658,11 @@ msgstr "De volgende activa hebben geen automatische afschrijvingsboekingen kunne
msgid "The following batches are expired, please restock them: {0}"
msgstr "De volgende batches zijn verlopen, vul ze alstublieft weer aan: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "De volgende geannuleerde herplaatsingsberichten bestaan voor {0} : {1} Verwijder deze berichten voordat u verdergaat."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "De volgende verwijderde attributen bestaan in varianten maar niet in de sjabloon. U kunt de varianten verwijderen of het / de attribuut (en) in de sjabloon behouden."
@@ -54590,7 +54683,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr "De volgende rijen zijn duplicaten:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "De volgende {0} zijn gemaakt: {1}"
@@ -54617,7 +54710,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Het item {item} is niet gemarkeerd als {type_of} item. U kunt het als {type_of} item inschakelen via de itemmaster."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "De items {0} en {1} zijn aanwezig in het volgende {2}:"
@@ -54675,7 +54768,7 @@ msgstr "De bewerking {0} kan niet de subbewerking zijn."
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "De originele factuur moet worden samengevoegd met of vóór de retourfactuur."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Het openstaande bedrag {0} in {1} is lager dan {2}. Het openstaande bedrag van deze factuur wordt bijgewerkt."
@@ -54687,6 +54780,12 @@ msgstr "Het bovenliggende account {0} bestaat niet in de geüploade sjabloon"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Het betalingsgateway-account in plan {0} verschilt van het betalingsgateway-account in dit betalingsverzoek"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54728,7 +54827,7 @@ msgstr "De gereserveerde voorraad wordt vrijgegeven zodra u de artikelen bijwerk
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "De gereserveerde voorraad wordt vrijgegeven. Weet u zeker dat u wilt doorgaan?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Het root-account {0} moet een groep zijn"
@@ -54744,7 +54843,7 @@ msgstr "Het geselecteerde wijzigingsaccount {} behoort niet tot Bedrijf {}."
msgid "The selected item cannot have Batch"
msgstr "Het geselecteerde item kan niet Batch hebben"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "De verkoophoeveelheid is kleiner dan de totale hoeveelheid activa. De resterende hoeveelheid wordt verdeeld over een nieuw actief. Deze actie kan niet ongedaan worden gemaakt. Wilt u doorgaan? "
@@ -54777,7 +54876,7 @@ msgstr "De shares bestaan niet met de {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "De voorraad van het artikel {0} in het magazijn {1} was negatief op de {2}. U dient een positieve boeking {3} te maken vóór de datum {4} en tijd {5} om de juiste waarderingskoers te boeken. Raadpleeg voor meer informatie de documentatie ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "De volgende artikelen en magazijnen zijn gereserveerd. Deblokkeer deze reservering om de voorraadafstemming te voltooien: {0} {1}"
@@ -54799,11 +54898,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Het systeem genereert op basis van deze instelling een verkoopfactuur of een kassabonfactuur via de kassainterface. Voor transacties met een hoog volume wordt het gebruik van de kassabon aanbevolen."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "De taak is in de wacht gezet als achtergrondtaak. Als er een probleem is met de verwerking op de achtergrond, zal het systeem een opmerking toevoegen over de fout bij deze voorraadafstemming en terugkeren naar de conceptfase"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "De taak is als achtergrondtaak in de wachtrij geplaatst. Als er zich een probleem voordoet tijdens de verwerking op de achtergrond, voegt het systeem een opmerking over de fout toe aan deze voorraadafstemming en keert terug naar de status 'Ingediend'."
@@ -54851,15 +54950,15 @@ msgstr "De waarde van {0} verschilt tussen items {1} en {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "De waarde {0} is al toegewezen aan een bestaand item {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Het magazijn waar u afgewerkte producten opslaat voordat ze worden verzonden."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "Het magazijn waar u uw grondstoffen opslaat. Elk benodigd artikel kan een apart bronmagazijn hebben. Ook een groepsmagazijn kan als bronmagazijn worden geselecteerd. Na het indienen van de werkorder worden de grondstoffen in deze magazijnen gereserveerd voor productiegebruik."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Het magazijn waar uw artikelen naartoe worden overgebracht wanneer u met de productie begint. Groepsmagazijn kan ook worden geselecteerd als magazijn voor onderhanden werk."
@@ -54867,19 +54966,19 @@ msgstr "Het magazijn waar uw artikelen naartoe worden overgebracht wanneer u met
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "De {0} ({1}) moet gelijk zijn aan {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "De {0} bevat artikelen met een eenheidsprijs."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Het voorvoegsel {0} '{1}' bestaat al. Wijzig de serienummerreeks, anders krijgt u een foutmelding 'Dubbele invoer'."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "De {0} {1} is succesvol aangemaakt"
@@ -54887,7 +54986,7 @@ msgstr "De {0} {1} is succesvol aangemaakt"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "De {0} {1} komt niet overeen met de {0} {2} in de {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "De {0} {1} wordt gebruikt om de waarderingskosten voor het eindproduct te berekenen {2}."
@@ -54903,7 +55002,7 @@ msgstr "Er zijn actief onderhoud of reparaties aan het activum. U moet ze allema
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Er zijn inconsistenties tussen de koers, aantal aandelen en het berekende bedrag"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Er zijn grootboekposten gekoppeld aan deze rekening. Het wijzigen van {0} naar een niet-{1} in het live systeem zal leiden tot onjuiste uitvoer in het rapport 'Rekeningen {2}'."
@@ -54932,7 +55031,7 @@ msgstr "Er zijn geen plaatsen meer beschikbaar op deze datum."
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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Er zijn twee opties om de waardering van aandelen te handhaven: FIFO (first in - first out) en het voortschrijdend gemiddelde. Voor een gedetailleerde uitleg van dit onderwerp kunt u terecht op Item Waardering, FIFO en Voortschrijdend gemiddelde. "
@@ -54972,7 +55071,7 @@ msgstr "Er is geen batch gevonden voor de {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Deze voorraadpost moet minimaal één afgewerkt product bevatten."
@@ -55028,11 +55127,11 @@ msgstr "Dit artikel is een variant van {0} (Sjabloon)."
msgid "This Month's Summary"
msgstr "Samenvatting van deze maand"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Deze inkooporder is volledig uitbesteed."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Deze verkooporder is volledig uitbesteed."
@@ -55066,7 +55165,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Dit omvat alle scorecards die aan deze Setup zijn gekoppeld"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Dit document is dan limiet van {0} {1} voor punt {4}. Bent u het maken van een andere {3} tegen dezelfde {2}?"
@@ -55169,11 +55268,11 @@ msgstr "Dit wordt vanuit boekhoudkundig oogpunt als gevaarlijk beschouwd."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Dit wordt gedaan om de boekhouding af te handelen voor gevallen waarin inkoopontvangst wordt aangemaakt na inkoopfactuur"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Deze functie is standaard ingeschakeld. Als u materialen wilt plannen voor subassemblages van het product dat u produceert, laat u deze optie ingeschakeld. Als u de subassemblages afzonderlijk plant en produceert, kunt u dit selectievakje uitschakelen."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Dit is voor grondstoffen die gebruikt worden om eindproducten te maken. Als het artikel een extra dienst betreft, zoals 'wassen', die in de stuklijst wordt opgenomen, laat u dit vakje uitgeschakeld."
@@ -55242,7 +55341,7 @@ msgstr "Dit schema is aangemaakt toen Activa {0} werd verbruikt via Activa-kapit
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Dit schema is aangemaakt toen Asset {0} werd gerepareerd via Asset Repair {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Dit schema is aangemaakt toen Activa {0} werd hersteld vanwege de annulering van Verkoopfactuur {1}."
@@ -55250,15 +55349,15 @@ msgstr "Dit schema is aangemaakt toen Activa {0} werd hersteld vanwege de annule
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Dit schema is aangemaakt toen Activa {0} werd hersteld bij de annulering van Activa-kapitalisatie {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Dit schema is aangemaakt toen Asset {0} werd hersteld."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Dit schema is aangemaakt toen Activa {0} werd geretourneerd via Verkoopfactuur {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Dit schema is gemaakt toen Asset {0} werd gesloopt."
@@ -55266,7 +55365,7 @@ msgstr "Dit schema is gemaakt toen Asset {0} werd gesloopt."
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Dit schema is gemaakt toen Asset {0} werd {1} in nieuwe Asset {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Dit schema is aangemaakt toen Activa {0} {1} was tot en met Verkoopfactuur {2}."
@@ -55335,7 +55434,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Dit beperkt de toegang van gebruikers tot andere personeelsdossiers."
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Deze accolades worden beschouwd als materiaaloverdracht."
@@ -55446,7 +55545,7 @@ msgstr "Tijd in minuten"
msgid "Time in mins."
msgstr "Tijd in minuten."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Tijdlogboeken zijn vereist voor {0} {1}"
@@ -55555,7 +55654,7 @@ msgstr "Bill"
msgid "To Currency"
msgstr "Naar valuta"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Tot Datum kan niet eerder zijn dan Van Datum"
@@ -55782,11 +55881,15 @@ msgstr "Om bewerkingen toe te voegen, vinkt u het selectievakje 'Met bewerkingen
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Om de grondstoffen van uitbestede artikelen toe te voegen als de optie 'Uitgeklapte artikelen opnemen' is uitgeschakeld."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Als u overfacturering wilt toestaan, werkt u "Overfactureringstoeslag" bij in Accountinstellingen of het item."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Om overontvangst / aflevering toe te staan, werkt u "Overontvangst / afleveringstoeslag" in Voorraadinstellingen of het Artikel bij."
@@ -55829,11 +55932,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Om Belastingen op te nemen in het Artikeltarief in rij {0}, moeten de belastingen in rijen {1} ook worden opgenomen"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Om samen te voegen, moeten de volgende eigenschappen hetzelfde zijn voor beide artikelen"
@@ -55841,7 +55944,7 @@ msgstr "Om samen te voegen, moeten de volgende eigenschappen hetzelfde zijn voor
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Om een prijsregel niet toe te passen op een bepaalde transactie, moeten alle toepasselijke prijsregels worden uitgeschakeld."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Schakel '{0}' in bedrijf {1} in om dit te negeren"
@@ -55866,7 +55969,7 @@ msgstr "Om de factuur zonder aankoopbewijs in te dienen, stelt u {0} in als {1}
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Om een ander financieel boek te gebruiken, moet u 'Standaard FB-activa opnemen' uitschakelen."
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56016,7 +56119,7 @@ msgstr "Totale toewijzingen"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56123,12 +56226,12 @@ msgstr "Totaal Commissie"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Totaal voltooid aantal"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Het totale aantal voltooide opdrachten is vereist voor de werkbon {0}. Begin en voltooi de werkbon voordat u deze indient."
@@ -56430,7 +56533,7 @@ msgstr "Totale uitstaande bedrag"
msgid "Total Paid Amount"
msgstr "Totale betaalde bedrag"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Het totale betalingsbedrag in het betalingsschema moet gelijk zijn aan het groot / afgerond totaal"
@@ -56442,7 +56545,7 @@ msgstr "Het totale bedrag van het betalingsverzoek mag niet groter zijn dan {0}"
msgid "Total Payments"
msgstr "Totaal betalingen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "De totale gepickte hoeveelheid {0} is groter dan de bestelde hoeveelheid {1}. U kunt de overpicktoeslag instellen in de voorraadinstellingen."
@@ -56725,7 +56828,7 @@ msgstr "Totale werktijd (in uren)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Totaal toegewezen percentage voor verkoopteam moet 100 zijn"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Het totale bijdragepercentage moet gelijk zijn aan 100"
@@ -56900,7 +57003,7 @@ msgstr "transactie datum"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Transactie voor verwijdering van document {0} is geactiveerd voor bedrijf {1}"
@@ -56924,11 +57027,11 @@ msgstr "Transactieverwijderingsrecorditem"
msgid "Transaction Deletion Record To Delete"
msgstr "Transactieverwijderingsrecord om te verwijderen"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Het transactieverwijderingsrecord {0} wordt al uitgevoerd. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Transactieverwijderingsrecord {0} verwijdert momenteel {1}. Documenten kunnen niet worden opgeslagen totdat de verwijdering is voltooid."
@@ -57033,7 +57136,8 @@ msgstr "Transactie waarvoor belasting wordt ingehouden"
msgid "Transaction from which tax is withheld"
msgstr "Transactie waarover belasting wordt ingehouden"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transactie niet toegestaan tegen gestopte werkorder {0}"
@@ -57080,11 +57184,16 @@ msgstr "Transacties Jaargeschiedenis"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Er bestaan al transacties met betrekking tot het bedrijf! Het rekeningschema kan alleen worden geïmporteerd voor een bedrijf zonder transacties."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transacties met verkoopfacturen in het kassasysteem zijn uitgeschakeld."
@@ -57265,8 +57374,8 @@ msgstr "Informatie over de vervoerder"
msgid "Transporter Name"
msgstr "Naam van de vervoerder"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Reiskosten"
@@ -57530,6 +57639,7 @@ msgstr "BTW-instellingen van de VAE"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57545,7 +57655,7 @@ msgstr "BTW-instellingen van de VAE"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57606,7 +57716,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Eenheid Omrekeningsfactor"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "UOM-conversiefactor ({0} -> {1}) niet gevonden voor item: {2}"
@@ -57619,7 +57729,7 @@ msgstr "Eenheid Omrekeningsfactor is vereist in rij {0}"
msgid "UOM Name"
msgstr "Eenheidsnaam"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Vereiste omrekeningsfactor voor UOM: {0} in Artikel: {1}"
@@ -57691,13 +57801,13 @@ msgstr "Kan wisselkoers voor {0} tot {1} niet vinden voor de sleuteldatum {2}. C
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Kan geen score beginnen bij {0}. Je moet een score hebben van 0 tot 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Het is niet mogelijk om een tijdslot te vinden in de komende {0} dagen voor de bewerking {1}. Verhoog de 'Capaciteitsplanning voor (dagen)' in de {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Variabele niet gevonden:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57778,7 +57888,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Onverwacht patroon voor naamgevingsreeksen"
@@ -57797,7 +57907,7 @@ msgstr "Eenheid"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Eenheidsprijs"
@@ -57814,7 +57924,7 @@ msgstr "Meeteenheid"
msgid "Unit of Measure (UOM)"
msgstr "Hoeveelheidseenheid (HE)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Eenheid {0} is meer dan eens ingevoerd in Conversie Factor Tabel"
@@ -57959,7 +58069,7 @@ msgstr "Niet-geharmoniseerde boekingen"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57999,12 +58109,12 @@ msgstr "Niet opgelost"
msgid "Unscheduled"
msgstr "Niet gepland"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Leningen zonder onderpand"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Niet-afgestemd betalingsverzoek"
@@ -58180,7 +58290,7 @@ msgstr "Items bijwerken"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Update Uitzonderlijk voor Zelf"
@@ -58259,11 +58369,11 @@ msgstr "Bijgewerkte {0} rij(en) in het financieel rapport met nieuwe categoriena
msgid "Updating Costing and Billing fields against this Project..."
msgstr "De velden Kosten en Facturering voor dit project bijwerken..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Varianten bijwerken ..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Werkorderstatus bijwerken"
@@ -58465,7 +58575,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Gebruik de wisselkoers van de transactiedatum"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Gebruik een naam die verschilt van de vorige projectnaam"
@@ -58507,7 +58617,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Te gebruiken met sjabloon voor financiële rapportage"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Gebruikersforum"
@@ -58571,6 +58681,11 @@ msgstr "Gebruikers kunnen het selectievakje inschakelen als ze het inkomende tar
msgid "Users can make manufacture entry against Job Cards"
msgstr "Gebruikers kunnen productiegegevens invoeren aan de hand van werkbonnen."
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58593,8 +58708,8 @@ msgstr "Gebruikers met deze rol worden op de hoogte gesteld als de afschrijving
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Het gebruik van negatieve voorraad schakelt de FIFO-/voortschrijdende gemiddelde waardering uit wanneer de voorraad negatief is."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Utiliteitskosten"
@@ -58604,7 +58719,7 @@ msgstr "Utiliteitskosten"
msgid "VAT Accounts"
msgstr "BTW-rekeningen"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "BTW-bedrag (AED)"
@@ -58614,12 +58729,12 @@ msgid "VAT Audit Report"
msgstr "BTW-auditrapport"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "BTW op kosten en alle overige inputkosten"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "BTW op verkopen en alle andere output"
@@ -58813,7 +58928,6 @@ msgstr "Waardering Methode"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58829,14 +58943,12 @@ msgstr "Waardering Methode"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Waardering Tarief"
@@ -58844,19 +58956,19 @@ msgstr "Waardering Tarief"
msgid "Valuation Rate (In / Out)"
msgstr "Waarderingspercentage (In / Uit)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Waarderingstarief ontbreekt"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Waarderingstarief voor het item {0}, is vereist om boekhoudkundige gegevens voor {1} {2} te doen."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Valuation Rate is verplicht als Opening Stock ingevoerd"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Waarderingspercentage vereist voor artikel {0} op rij {1}"
@@ -58866,7 +58978,7 @@ msgstr "Waarderingspercentage vereist voor artikel {0} op rij {1}"
msgid "Valuation and Total"
msgstr "Waardering en totaal"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "De waarderingsgraad voor door de klant aangeleverde artikelen is op nul gezet."
@@ -58880,7 +58992,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Waarderingskoers voor het artikel volgens verkoopfactuur (alleen voor interne overboekingen)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Kosten van het taxatietype kunnen niet als inclusief worden gemarkeerd"
@@ -58892,7 +59004,7 @@ msgstr "Soort waardering kosten kunnen niet zo Inclusive gemarkeerd"
msgid "Value (G - D)"
msgstr "Waarde (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Waarde ({0})"
@@ -59011,12 +59123,12 @@ msgid "Variance ({})"
msgstr "Variantie ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variant"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Fout bij variantkenmerk"
@@ -59035,7 +59147,7 @@ msgstr "Variant stuklijst"
msgid "Variant Based On"
msgstr "Variant gebaseerd op"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Variant op basis kan niet worden gewijzigd"
@@ -59053,7 +59165,7 @@ msgstr "Variantveld"
msgid "Variant Item"
msgstr "Variant item"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Variantartikelen"
@@ -59064,7 +59176,7 @@ msgstr "Variantartikelen"
msgid "Variant Of"
msgstr "Variant van"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Het maken van varianten is in de wachtrij geplaatst."
@@ -59358,7 +59470,7 @@ msgstr "Voucher"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Coupon #"
@@ -59430,7 +59542,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59504,7 +59616,7 @@ msgstr "Voucher-subtype"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59531,7 +59643,7 @@ msgstr "Voucher-subtype"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59711,8 +59823,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Magazijn niet gevonden voor account {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Magazijn nodig voor voorraad Artikel {0}"
@@ -59737,7 +59849,7 @@ msgstr "Magazijn {0} behoort niet tot bedrijf {1}"
msgid "Warehouse {0} does not exist"
msgstr "Magazijn {0} bestaat niet"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Magazijn {0} is niet toegestaan voor verkooporder {1}, het moet {2} zijn."
@@ -59874,11 +59986,11 @@ msgstr "Waarschuwing: Een andere {0} # {1} bestaat tegen voorraad binnenkomst {2
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Waarschuwing: de aangevraagde materiaalhoeveelheid is kleiner dan de minimale bestelhoeveelheid"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Waarschuwing: De hoeveelheid overschrijdt de maximaal produceerbare hoeveelheid op basis van de hoeveelheid grondstoffen die via de onderaannemingsopdracht {0} zijn ontvangen."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Waarschuwing: Sales Order {0} bestaat al tegen Klant Bestelling {1}"
@@ -59968,7 +60080,7 @@ msgstr "Golflengte in kilometers"
msgid "Wavelength In Megametres"
msgstr "Golflengte in megameters"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "We kunnen zien dat {0} is gemaakt ten opzichte van {1}. Als u wilt dat de openstaande waarde van {1}wordt bijgewerkt, schakelt u het selectievakje '{2}' uit."
@@ -60037,7 +60149,7 @@ msgstr "Website:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Week {0} {1}"
@@ -60167,7 +60279,7 @@ msgstr "Indien aangevinkt, wordt alleen de transactiedrempel voor elke transacti
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 "Indien aangevinkt, gebruikt het systeem de boekingsdatum en -tijd van het document voor de naamgeving in plaats van de aanmaakdatum en -tijd van het document."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Wanneer je een artikel aanmaakt, zal het invoeren van een waarde in dit veld automatisch een artikelprijs genereren in de backend."
@@ -60177,7 +60289,7 @@ msgstr "Wanneer je een artikel aanmaakt, zal het invoeren van een waarde in dit
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Wanneer er meerdere eindproducten ({0}) in een herverpakte voorraadpost staan, moet het basistarief voor alle eindproducten handmatig worden ingesteld. Om het tarief handmatig in te stellen, vinkt u het selectievakje 'Basistarief handmatig instellen' aan in de betreffende regel van het eindproduct."
@@ -60187,11 +60299,11 @@ msgstr "Wanneer er meerdere eindproducten ({0}) in een herverpakte voorraadpost
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Bij het aanmaken van een account voor kindbedrijf {0}, werd bovenliggende account {1} gevonden als grootboekrekening."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Bij het maken van een account voor het onderliggende bedrijf {0}, is het bovenliggende account {1} niet gevonden. Maak het ouderaccount aan in het bijbehorende COA"
@@ -60336,7 +60448,7 @@ msgstr "Werk voltooid"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Onderhanden Werk"
@@ -60373,7 +60485,7 @@ msgstr "Onderhanden Werk"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60407,7 +60519,7 @@ msgstr "Verbruikte materialen volgens werkorder"
msgid "Work Order Item"
msgstr "Werkorderitem"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60448,19 +60560,23 @@ msgstr "Werkorderoverzicht"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Werkopdracht kan om de volgende reden niet worden aangemaakt: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Werkopdracht kan niet worden verhoogd met een itemsjabloon"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Werkorder is {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Werkorder niet gemaakt"
@@ -60469,16 +60585,16 @@ msgstr "Werkorder niet gemaakt"
msgid "Work Order {0} created"
msgstr "Werkorder {0} aangemaakt"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Werkorder {0}: opdrachtkaart niet gevonden voor de bewerking {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Werkorders"
@@ -60503,7 +60619,7 @@ msgstr "Werk in uitvoering"
msgid "Work-in-Progress Warehouse"
msgstr "Magazijn in aanbouw"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Werk in uitvoering Magazijn is vereist alvorens in te dienen"
@@ -60551,7 +60667,7 @@ msgstr "Werkuren"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60642,14 +60758,14 @@ msgstr "Werkstations"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Afschrijven"
@@ -60754,7 +60870,7 @@ msgstr "Afgeschreven waarde"
msgid "Wrong Company"
msgstr "Verkeerd bedrijf"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Verkeerd wachtwoord"
@@ -60810,11 +60926,11 @@ msgstr "Jaar begindatum of einddatum overlapt met {0}. Om te voorkomen dat stel
msgid "You are importing data for the code list:"
msgstr "U importeert gegevens voor de codelijst:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "U mag niet updaten volgens de voorwaarden die zijn ingesteld in {} Workflow."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "U bent niet bevoegd om items toe te voegen of bij te werken voor {0}"
@@ -60822,7 +60938,7 @@ msgstr "U bent niet bevoegd om items toe te voegen of bij te werken voor {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "U bent niet gemachtigd om voorraadtransacties voor artikel {0} onder magazijn {1} vóór dit tijdstip aan te maken/bewerken."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "U bent niet bevoegd om Bevroren waarde in te stellen"
@@ -60850,7 +60966,7 @@ msgstr "U kunt ook een standaard CWIP-account instellen in Bedrijf {}"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "U kunt de bovenliggende rekening wijzigen in een balansrekening of een andere rekening selecteren."
@@ -60891,11 +61007,11 @@ msgstr "Je kunt het instellen als machinenaam of bewerkingstype. Bijvoorbeeld: n
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Je kunt {0} gebruiken om later af te stemmen met {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Je kunt geen wijzigingen meer aanbrengen in de taakkaart, omdat de werkorder is afgesloten."
@@ -60919,7 +61035,7 @@ msgstr "U kunt geen {0} aanmaken binnen de afgesloten boekhoudperiode {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "U kunt geen boekingen maken of annuleren met in de afgesloten boekhoudperiode {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "U kunt tot op heden geen boekhoudkundige transacties aanmaken of wijzigen."
@@ -60980,7 +61096,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "U heeft geen rechten voor {} items in een {}."
@@ -60992,19 +61108,19 @@ msgstr "Je hebt geen genoeg loyaliteitspunten om in te wisselen"
msgid "You don't have enough points to redeem."
msgstr "U heeft niet genoeg punten om in te wisselen."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61016,7 +61132,7 @@ msgstr "Er zijn {} fouten opgetreden bij het aanmaken van openingsfacturen. Raad
msgid "You have already selected items from {0} {1}"
msgstr "U heeft reeds geselecteerde items uit {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Je bent uitgenodigd om mee te werken aan het project {0}."
@@ -61040,7 +61156,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "U moet automatisch opnieuw bestellen inschakelen in Voorraadinstellingen om opnieuw te bestellen."
@@ -61056,7 +61172,7 @@ msgstr "U moet een klant selecteren voordat u een artikel toevoegt."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "U moet de POS-afsluitingsboeking {} annuleren om dit document te kunnen annuleren."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "U hebt de accountgroep {1} geselecteerd als {2} -account in rij {0}. Selecteer één account."
@@ -61103,11 +61219,11 @@ msgstr "Postcode"
msgid "Zero Balance"
msgstr "Nulbalans"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Nul beoordeling"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Nul hoeveelheid"
@@ -61129,11 +61245,11 @@ msgstr "Zip-bestand"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Belangrijk] [ERPNext] Fouten bij automatisch opnieuw ordenen"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Negatieve tarieven voor artikelen toestaan`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "na"
@@ -61174,7 +61290,7 @@ msgid "cannot be greater than 100"
msgstr "kan niet groter zijn dan 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "gedateerd {0}"
@@ -61323,7 +61439,7 @@ msgstr "De betaalapp is niet geïnstalleerd. Installeer deze via {} of {}."
msgid "per hour"
msgstr "per uur"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "Een van de onderstaande opties uitvoeren:"
@@ -61356,7 +61472,7 @@ msgstr "Gekregen van"
msgid "reconciled"
msgstr "verzoend"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "teruggekeerd"
@@ -61391,7 +61507,7 @@ msgstr "rgt"
msgid "sandbox"
msgstr "zandbak"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "verkocht"
@@ -61399,8 +61515,8 @@ msgstr "verkocht"
msgid "subscription is already cancelled."
msgstr "Het abonnement is reeds geannuleerd."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "doel_ref_veld"
@@ -61418,7 +61534,7 @@ msgstr "titel"
msgid "to"
msgstr "naar"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "Het bedrag van deze retourfactuur moet worden teruggeboekt voordat deze wordt geannuleerd."
@@ -61445,7 +61561,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "unieke code, bijvoorbeeld SAVE20. Te gebruiken voor korting."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61467,7 +61583,7 @@ msgstr "via BOM Update Tool"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "u moet Capital Work in Progress Account selecteren in de rekeningentabel"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}'is uitgeschakeld"
@@ -61475,7 +61591,7 @@ msgstr "{0} '{1}'is uitgeschakeld"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1} ' niet in het boekjaar {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) kan niet groter zijn dan de geplande hoeveelheid ({2}) in werkorder {3}"
@@ -61483,7 +61599,7 @@ msgstr "{0} ({1}) kan niet groter zijn dan de geplande hoeveelheid ({2}) in werk
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} heeft activa ingediend. Verwijder item {2} uit de tabel om verder te gaan."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Account niet gevonden voor klant {1}."
@@ -61516,11 +61632,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Nummer {1} wordt al gebruikt in {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} Bedrijfskosten voor de werking {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Bewerkingen: {1}"
@@ -61528,7 +61644,7 @@ msgstr "{0} Bewerkingen: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Verzoek om {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Bewaar monster is gebaseerd op batch. Controleer Heeft batchnummer om een monster van het artikel te behouden"
@@ -61616,11 +61732,11 @@ msgstr "{0} aangemaakt"
msgid "{0} creation for the following records will be skipped."
msgstr "{0} Het aanmaken van de volgende records wordt overgeslagen."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} De valuta moet dezelfde zijn als de standaardvaluta van het bedrijf. Selecteer een andere rekening."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} heeft momenteel een {1} Leveranciersscorekaart, en er dienen voorzichtige waarborgen te worden uitgegeven bij inkooporders."
@@ -61632,7 +61748,7 @@ msgstr "{0} heeft momenteel een {1} leverancierscorekaart, en RFQs aan deze leve
msgid "{0} does not belong to Company {1}"
msgstr "{0} behoort niet tot Bedrijf {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} behoort niet tot het bedrijf {1}."
@@ -61641,7 +61757,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} twee keer opgenomen in Artikel BTW"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} tweemaal ingevoerd {1} in Artikelbelastingen"
@@ -61666,7 +61782,7 @@ msgstr "{0} is succesvol ingediend"
msgid "{0} hours"
msgstr "{0} uur"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} in rij {1}"
@@ -61688,7 +61804,7 @@ msgstr "{0} wordt meerdere keren toegevoegd aan rijen: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} draait al voor {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} is geblokkeerd, dus deze transactie kan niet doorgaan"
@@ -61696,12 +61812,12 @@ msgstr "{0} is geblokkeerd, dus deze transactie kan niet doorgaan"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} bevindt zich in concept. Dien het in voordat u het asset aanmaakt."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} is verplicht voor Artikel {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} is verplicht voor account {1}"
@@ -61709,7 +61825,7 @@ msgstr "{0} is verplicht voor account {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} is verplicht. Misschien is er geen valutawisselrecord gemaakt voor {1} tot {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1} naar {2}."
@@ -61717,7 +61833,7 @@ msgstr "{0} is verplicht. Misschien is Valuta Koers record niet gemaakt voor {1}
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} is geen zakelijke bankrekening"
@@ -61725,7 +61841,7 @@ msgstr "{0} is geen zakelijke bankrekening"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} is geen groepsknooppunt. Selecteer een groepsknooppunt als bovenliggende kostenplaats"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} is geen voorraad artikel"
@@ -61765,27 +61881,27 @@ msgstr "{0} staat in de wacht totdat {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} is open. Sluit de POS of annuleer de bestaande POS-openingsinvoer om een nieuwe POS-openingsinvoer aan te maken."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} items in uitvoering"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} items verloren gegaan tijdens het proces."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} items geproduceerd"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61793,7 +61909,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} moet negatief zijn in teruggave document"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} mag geen transacties uitvoeren met {1}. Wijzig het bedrijf of voeg het bedrijf toe in het gedeelte 'Toegestaan om transacties uit te voeren met' in het klantrecord."
@@ -61809,7 +61925,7 @@ msgstr "{0} parameter is ongeldig"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} betaling items kunnen niet worden gefilterd door {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} aantal van Artikel {1} wordt ontvangen in Magazijn {2} met capaciteit {3}."
@@ -61822,7 +61938,7 @@ msgstr "{0} tot {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} eenheden zijn gereserveerd voor Artikel {1} in Magazijn {2}, gelieve deze reservering te deblokkeren in {3} de Voorraadafstemming."
@@ -61838,16 +61954,16 @@ msgstr ""
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} eenheden van {1} zijn vereist in {2} met de inventarisdimensie: {3} op {4} {5} voor {6} om de transactie te voltooien."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} eenheden van {1} die nodig zijn in {2} op {3} {4} te {5} om deze transactie te voltooien."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} eenheden van {1} nodig in {2} op {3} {4} om deze transactie te voltooien."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} eenheden van {1} die nodig zijn in {2} om deze transactie te voltooien."
@@ -61859,7 +61975,7 @@ msgstr "{0} tot {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} geldig serienummers voor Artikel {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varianten gemaakt."
@@ -61875,7 +61991,7 @@ msgstr "{0} wordt als korting gegeven."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} wordt ingesteld als {1} in de daaropvolgende gescande items."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61913,8 +62029,8 @@ msgstr "{0} {1} is reeds volledig betaald."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} is al gedeeltelijk betaald. Gebruik de knop 'Openstaande factuur opvragen' of 'Openstaande bestellingen opvragen' om de meest recente openstaande bedragen te bekijken."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} is gewijzigd. Vernieuw aub."
@@ -62024,7 +62140,7 @@ msgstr "{0} {1}: Account {2} is niet actief"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Accounting Entry voor {2} kan alleen worden gemaakt in valuta: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: kostenplaats is verplicht voor artikel {2}"
@@ -62073,8 +62189,8 @@ msgstr "{0}% van de totale factuurwaarde wordt als korting gegeven."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0}'s {1} kan niet na de verwachte einddatum van {2}liggen."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, voltooi de bewerking {1} vóór de bewerking {2}."
@@ -62094,11 +62210,11 @@ msgstr "{0}: Beveiligd documenttype"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtueel documenttype (geen databasetabel)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} behoort niet tot het bedrijf: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62106,11 +62222,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} bestaat niet"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} is een groepsaccount."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} moet kleiner zijn dan {2}"
@@ -62122,7 +62238,7 @@ msgstr "{count} Assets gemaakt voor {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} is geannuleerd of gesloten."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "{item_name}De steekproefomvang ({sample_size}) mag niet groter zijn dan de geaccepteerde hoeveelheid ({accepted_quantity})."
@@ -62134,7 +62250,7 @@ msgstr "{ref_doctype} {ref_name} is {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} kan niet worden geannuleerd omdat de verdiende loyaliteitspunten zijn ingewisseld. Annuleer eerst de {} Nee {}"
diff --git a/erpnext/locale/pl.po b/erpnext/locale/pl.po
index d09dd7ab0bb..d99446e1cca 100644
--- a/erpnext/locale/pl.po
+++ b/erpnext/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -153,7 +153,7 @@ msgstr "% Ukończony"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "% Cost Allocation"
-msgstr ""
+msgstr "% Przydział kosztów"
#. Label of the per_delivered (Percent) field in DocType 'Pick List'
#. Label of the per_delivered (Percent) field in DocType 'Subcontracting Inward
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr "% materiałów dostarczonych w ramach tego Zamówienia Sprzedaży"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "„Domyślne konto {0} ” w firmie {1}"
@@ -302,7 +302,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -346,8 +346,8 @@ msgstr "Konto '{0}' jest już używane przez {1}. Proszę użyć innego konta."
msgid "'{0}' has been already added."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr ""
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr ""
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "Powyżej 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -785,7 +785,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -802,7 +802,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid " Cannot overbill for the following Items:
"
msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -919,11 +919,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -993,7 +993,7 @@ msgstr "A-B"
msgid "A - C"
msgstr "A-C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Grupa Odbiorców posiada taką nazwę - wprowadź inną nazwę Odbiorcy lub zmień nazwę Grupy"
@@ -1157,11 +1157,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1169,7 +1169,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "Skrót: {0} może pojawić się tylko raz."
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1223,7 +1223,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1259,7 +1259,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1377,8 +1377,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1396,7 +1396,7 @@ msgstr ""
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1409,7 +1409,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1448,7 +1448,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1464,11 +1464,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1535,15 +1535,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Konto z istniejącymi zapisami nie może być konwertowane na Grupę (konto dzielone)."
@@ -1551,8 +1551,8 @@ msgstr "Konto z istniejącymi zapisami nie może być konwertowane na Grupę (ko
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1560,11 +1560,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1572,11 +1572,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1592,15 +1592,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1608,7 +1608,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1616,19 +1616,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1644,7 +1644,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1929,8 +1929,8 @@ msgstr "Zapisy księgowe"
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1954,8 +1954,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1964,7 +1964,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -2019,7 +2019,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2032,14 +2031,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr ""
@@ -2069,8 +2067,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2170,15 +2168,15 @@ msgstr "Tabela kont nie może być pusta."
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Umorzenia (skumulowana amortyzacja)"
@@ -2343,7 +2341,7 @@ msgstr "Wykonane akcje"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2467,7 +2465,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr "Faktyczna data zakończenia (przez czas arkuszu)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2589,7 +2587,7 @@ msgstr "Rzeczywisty czas (w godzinach)"
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2598,7 +2596,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3097,7 +3095,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3120,7 +3118,7 @@ msgstr "Dodatkowy koszt operacyjny"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3128,11 +3126,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3278,11 +3271,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr "Adres używany do określenia kategorii podatku w transakcjach"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Dostosuj ilość"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3295,8 +3283,8 @@ msgstr "Korekta w oparciu o kurs faktury zakupu"
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3364,7 +3352,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3484,7 +3472,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr "Przeciw Kocowi"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3626,11 +3614,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3780,21 +3768,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3874,7 +3862,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3888,6 +3876,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3896,23 +3889,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3926,11 +3919,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3949,7 +3942,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Automatycznie przydzielaj zaliczki (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3959,7 +3952,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr "Przydziel płatność na podstawie warunków płatności"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3989,7 +3982,7 @@ msgstr "Przydzielone"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4046,7 +4039,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4110,7 +4103,7 @@ msgstr "Zezwalaj na zwroty"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Zezwalaj na wielokrotne dodawanie przedmiotu w transakcji"
@@ -4233,16 +4226,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "Zezwalaj na tworzenie faktur sprzedaży bez potwierdzenia dostawy"
-
-#. 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 "Zezwalaj na tworzenie faktur sprzedaży bez zamówienia sprzedaży"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4368,6 +4351,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4444,10 +4437,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4459,6 +4450,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4500,8 +4496,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4742,7 +4738,7 @@ msgstr ""
msgid "Amount"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4876,11 +4872,11 @@ msgid "Amount to Bill"
msgstr "Kwota rachunku"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4926,11 +4922,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5470,7 +5466,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5482,7 +5478,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Ponieważ w magazynie {0} znajduje się wystarczająca ilość półproduktów, zlecenie produkcyjne nie jest wymagane."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5620,7 +5616,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr "Zaleta Nazwa kategorii"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Kategoria atutem jest obowiązkowe dla Fixed pozycja aktywów"
@@ -5797,8 +5793,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5898,7 +5894,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5930,7 +5926,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5938,20 +5934,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Zaleta złomowany poprzez Journal Entry {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5971,7 +5967,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -6012,7 +6008,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Zasób {0} nie został przesłany. Proszę przesłać zasób przed kontynuowaniem."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6062,7 +6058,7 @@ msgstr "Zasoby nie zostały utworzone dla {item_code}. Będziesz musiał utworzy
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6123,7 +6119,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6131,20 +6127,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6227,11 +6219,11 @@ msgstr ""
msgid "Attribute Value"
msgstr "Wartość atrybutu"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6239,19 +6231,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6463,7 +6455,7 @@ msgstr ""
msgid "Auto re-order"
msgstr "Automatyczne ponowne zamówienie"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6575,7 +6567,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6664,10 +6656,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6676,8 +6664,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6701,7 +6689,9 @@ msgstr "Średnia wartość zamówienia"
msgid "Average Order Values"
msgstr "Średnie wartości zamówienia"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6725,7 +6715,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6783,7 +6773,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6806,7 +6796,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6878,11 +6868,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7036,7 +7021,7 @@ msgstr "BOM Website Element"
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7104,7 +7089,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7168,7 +7153,7 @@ msgstr "Saldo w walucie podstawowej"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7233,7 +7218,7 @@ msgstr "Typ bilansu"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7389,8 +7374,8 @@ msgid "Bank Balance"
msgstr "Saldo bankowe"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Opłaty bankowe"
@@ -7505,8 +7490,8 @@ msgstr "Rodzaj gwarancji bankowej"
msgid "Bank Name"
msgstr "Nazwa banku"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7679,11 +7664,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7840,7 +7825,7 @@ msgstr "Stawki podstawowej (zgodnie Stock UOM)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7915,7 +7900,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8004,13 +7989,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr "Ilość partii"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8027,7 +8012,7 @@ msgstr "UOM partii"
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8050,12 +8035,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Batch {0} pozycji {1} wygasł."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8110,7 +8095,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8119,7 +8104,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8133,11 +8118,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8238,7 +8225,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr "Nazwa Adresu do Faktury"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8490,6 +8477,16 @@ msgstr ""
msgid "Block Supplier"
msgstr "Blokuj dostawcę"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8586,7 +8583,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr "Zarezerwowany środek trwały"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8845,8 +8842,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -9007,14 +9004,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Pomiń limit kredytowy w zleceniu klienta"
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9064,8 +9061,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9320,7 +9317,7 @@ msgstr "Nie znaleziono kampanii {0}"
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9353,13 +9350,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr "Mogą jedynie wpłaty przed Unbilled {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Może odnosić się do wierdza tylko wtedy, gdy typ opłata jest \"Poprzedniej Wartości Wiersza Suma\" lub \"poprzedniego wiersza Razem\""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9401,7 +9398,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9409,9 +9406,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9439,7 +9436,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9459,7 +9456,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9479,15 +9476,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9495,11 +9492,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9515,11 +9512,11 @@ msgstr "Nie można przekonwertować centrum kosztów do księgi głównej, jak t
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9527,7 +9524,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9553,7 +9550,7 @@ msgstr "Nie można zadeklarować jako zagubiony z powodu utworzenia kwotacji"
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9561,12 +9558,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Nie można usunąć zamówionego elementu"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9578,7 +9575,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9586,20 +9583,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Nie można zapewnić dostawy według numeru seryjnego, ponieważ pozycja {0} jest dodawana zi bez opcji Zapewnij dostawę według numeru seryjnego."
@@ -9615,7 +9612,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9623,15 +9620,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9639,12 +9636,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9657,14 +9654,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9678,7 +9675,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9686,11 +9683,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr "Nie można ustawić wielu wierszy konta dla tej samej firmy"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Nie można ustawić ilości mniejszej niż dostarczona ilość."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Nie można ustawić ilości mniejszej niż ilość odebrana."
@@ -9702,7 +9699,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9735,7 +9732,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr "Planowanie Pojemności"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9754,13 +9751,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9977,7 +9974,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10082,7 +10079,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Zmień typ konta na Odbywalne lub wybierz inne konto."
@@ -10092,7 +10089,7 @@ msgstr "Zmień typ konta na Odbywalne lub wybierz inne konto."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Zmień tę datę ręcznie, aby ustawić następną datę rozpoczęcia synchronizacji"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10100,7 +10097,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr "Zmiany w {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10115,7 +10112,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10169,7 +10166,7 @@ msgstr "Drzewo wykresów"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10312,7 +10309,7 @@ msgstr "Czek Szerokość"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Czek / Reference Data"
@@ -10370,7 +10367,7 @@ msgstr "Nazwa dziecka"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10422,6 +10419,11 @@ msgstr "Klasyfikacja Klientów od regionu"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10564,11 +10566,11 @@ msgstr ""
msgid "Closed Documents"
msgstr "Zamknięte dokumenty"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Kolejność Zamknięty nie mogą być anulowane. Unclose aby anulować."
@@ -10820,11 +10822,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10855,7 +10863,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr "Typ medium komunikacyjnego"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11254,8 +11262,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11308,7 +11316,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11397,18 +11405,20 @@ msgstr ""
msgid "Company Address Name"
msgstr "Nazwa firmy"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Konto bankowe firmy"
@@ -11504,7 +11514,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr "Nie ustawiono filtrów firmy i konta!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11539,7 +11549,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11578,12 +11588,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11625,7 +11635,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11672,12 +11682,12 @@ msgstr "Zakończone projekty"
msgid "Completed Qty"
msgstr "Ukończona wartość"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11866,7 +11876,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12060,7 +12070,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12089,7 +12099,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12217,7 +12227,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12343,6 +12353,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12403,7 +12418,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12411,15 +12426,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 "Współczynnik przeliczeniowy dla przedmiotu {0} został zresetowany na 1,0, ponieważ jm {1} jest taka sama jak magazynowa jm {2} "
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12496,13 +12511,13 @@ msgstr "Poprawczy"
msgid "Corrective Action"
msgstr "Działania naprawcze"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12669,7 +12684,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12802,7 +12817,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12845,17 +12860,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12935,7 +12946,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13124,7 +13135,7 @@ msgstr ""
msgid "Create Item"
msgstr "Utwórz przedmiot"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13156,7 +13167,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13223,7 +13234,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr "Utwórz żądanie płatności"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13368,7 +13379,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13406,12 +13417,12 @@ msgstr "Utwórz uprawnienia użytkownika"
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13442,12 +13453,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13481,7 +13492,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13514,7 +13525,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13708,7 +13719,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13718,12 +13729,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Limit kredytowy i warunki płatności"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13755,7 +13760,7 @@ msgstr "Miesiące kredytowe"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13783,7 +13788,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13791,7 +13796,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13800,20 +13805,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr "Kredyt w walucie Spółki"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13821,8 +13826,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13992,7 +13997,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr "Waluta i cennik"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -14002,7 +14007,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14085,8 +14090,8 @@ msgstr "Aktualna data rozpoczęcia faktury"
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14153,6 +14158,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr "Aktualny Wycena Cena"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14248,7 +14258,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14355,7 +14364,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14444,8 +14452,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14459,7 +14467,7 @@ msgstr "Kod Klienta"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14542,6 +14550,7 @@ msgstr "Informacja zwrotna Klienta"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14564,7 +14573,7 @@ msgstr "Informacja zwrotna Klienta"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14581,6 +14590,7 @@ msgstr "Informacja zwrotna Klienta"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14624,7 +14634,7 @@ msgstr ""
msgid "Customer Items"
msgstr "Pozycje klientów"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14676,7 +14686,7 @@ msgstr "Komórka klienta Nie"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14782,7 +14792,7 @@ msgstr "Dostarczony Klient"
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14839,9 +14849,9 @@ msgstr "Klient lub przedmiotu"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Klient wymagany dla „Rabat klientowy” "
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14953,7 +14963,7 @@ msgstr "D - E "
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -15044,7 +15054,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr "Data rozpoczęcia"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15270,7 +15280,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15298,13 +15308,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15432,8 +15442,7 @@ msgstr "Domyślne konto"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15459,14 +15468,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15481,19 +15490,19 @@ msgstr ""
msgid "Default BOM"
msgstr "Domyślne Zestawienie Materiałów"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15546,9 +15555,7 @@ msgid "Default Company"
msgstr "Domyślna Firma"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Domyślne firmowe konto bankowe"
@@ -15664,6 +15671,16 @@ msgstr "Domyślna grupa elementów"
msgid "Default Item Manufacturer"
msgstr "Domyślny producent pozycji"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15699,23 +15716,19 @@ msgid "Default Payment Request Message"
msgstr "Domyślnie Płatność Zapytanie Wiadomość"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Domyślny szablon warunków płatności"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15838,15 +15851,15 @@ msgstr "Domyślne terytorium"
msgid "Default Unit of Measure"
msgstr "Domyślna jednostka miary"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15898,7 +15911,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15989,6 +16002,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16071,12 +16090,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16097,8 +16116,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16209,11 +16228,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16294,7 +16313,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16354,11 +16373,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16444,10 +16463,6 @@ msgstr "Magazyn Dostawa"
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16567,8 +16582,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16661,7 +16676,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16819,15 +16834,15 @@ msgstr "Różnica (Dr - Cr)"
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Konto różnicowe musi być kontem typu Aktywa/Zobowiązania, ponieważ ta rekonsyliacja magazynowa jest wpisem otwarcia"
@@ -16939,15 +16954,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -17028,6 +17043,11 @@ msgstr "Wyłącz Zaokrąglanie Sumy"
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17064,11 +17084,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Wyłączone reguły cenowe, ponieważ jest to transfer wewnętrzny"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17084,7 +17104,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17092,15 +17112,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17387,7 +17407,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17468,7 +17488,7 @@ msgstr "Wyświetlana nazwa"
msgid "Disposal Date"
msgstr "Utylizacja Data"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17582,8 +17602,8 @@ msgstr "Nazwa Dystrybucji"
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17645,7 +17665,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17669,7 +17689,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17681,7 +17701,7 @@ msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447
msgid "DocType {0} does not exist"
-msgstr ""
+msgstr "DocType {0} nie istnieje"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295
msgid "DocType {0} with company field '{1}' is already in the list"
@@ -17736,11 +17756,11 @@ msgstr "Nr dokumentu"
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17903,12 +17923,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17929,12 +17943,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18093,8 +18101,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18177,7 +18185,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18291,6 +18299,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18310,8 +18322,8 @@ msgstr ""
msgid "Electricity down"
msgstr "Brak prądu"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18515,8 +18527,8 @@ msgstr "Advance pracownika"
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18599,7 +18611,7 @@ msgstr "Pracownik {0} ma już połączonego użytkownika"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Pracownik {0} nie należy do firmy {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18615,7 +18627,7 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18646,7 +18658,7 @@ msgstr "Włącz harmonogram spotkań"
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18812,12 +18824,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18946,8 +18952,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19046,8 +19052,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19072,7 +19078,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Podaj kod pozycji, nazwa zostanie automatycznie wypełniona jako taka sama jak kod pozycji po kliknięciu w pole nazwy pozycji"
@@ -19084,7 +19090,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19127,7 +19133,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19135,7 +19141,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19147,8 +19153,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr "Rozrywka i relaks"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19172,8 +19178,8 @@ msgstr "Rodzaj wpisu"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19234,7 +19240,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19244,7 +19250,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19290,7 +19296,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19309,7 +19315,7 @@ msgstr "Przykład: ABCD. #####. Jeśli seria jest ustawiona, a numer partii nie
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19319,7 +19325,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr "Rola zatwierdzającego wyjątku dla budżetu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19327,7 +19333,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19358,17 +19364,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19507,7 +19513,7 @@ msgstr ""
msgid "Executive Search"
msgstr "Szukanie wykonawcze"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19594,7 +19600,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19678,7 +19684,7 @@ msgstr "Przewidywany okres użytkowania wartości po"
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19756,23 +19762,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19851,7 +19857,7 @@ msgstr "Historia Zewnętrzna Pracy"
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19988,7 +19994,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20106,6 +20112,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20143,21 +20154,29 @@ msgstr "Mapowanie pola"
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Pola będą kopiowane tylko w momencie tworzenia."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Plik nie został znaleziony"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Nie znaleziono pliku na serwerze"
@@ -20365,9 +20384,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 "Raporty finansowe będą generowane przy użyciu typu dokumentu GL Entry (powinny być włączone, jeśli dla wszystkich lat sekwencyjnych nie zaksięgowano dokumentu zamknięcia okresu)"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20424,15 +20443,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20478,7 +20497,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20519,7 +20538,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20660,6 +20679,7 @@ msgstr "Naprawiony"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20678,7 +20698,7 @@ msgstr "Konto trwałego"
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20697,8 +20717,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20771,7 +20791,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20828,7 +20848,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20838,7 +20858,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20859,17 +20879,13 @@ msgstr "Dla Listy Cen"
msgid "For Production"
msgstr "Dla Produkcji"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20897,11 +20913,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20939,7 +20955,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20953,7 +20969,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20970,7 +20986,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20979,12 +20995,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -21003,7 +21019,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Dla wygody klientów, te kody mogą być użyte w formacie drukowania jak faktury czy dowody dostawy"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21050,11 +21066,6 @@ msgstr "Prognoza"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21100,7 +21111,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21145,8 +21156,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr "Zatrzymaj zapasy starsze niż (dni)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21580,8 +21591,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21598,13 +21609,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21612,7 +21623,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21697,9 +21708,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21872,7 +21883,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr "Pobierz aktualny stan magazynowy"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21930,7 +21941,7 @@ msgstr "Uzyskaj lokalizacje przedmiotów"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21969,7 +21980,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22143,7 +22154,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22152,7 +22163,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22335,7 +22346,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22778,7 +22789,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22806,7 +22817,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -23005,7 +23016,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23173,6 +23184,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Jeśli zaznaczone, kwota podatku zostanie wliczona w cenie Drukuj Cenę / Drukuj Podsumowanie"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23390,7 +23407,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23416,13 +23433,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23431,7 +23453,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Jeśli konto jest zamrożone, zapisy mogą wykonywać tylko wyznaczone osoby."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23441,7 +23463,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23518,7 +23540,7 @@ msgstr "W przypadku nielimitowanego wygaśnięcia punktów lojalnościowych czas
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Jeśli utrzymujesz zapas tego przedmiotu w swoim magazynie, ERPNext będzie tworzyć wpisy w księdze zapasów dla każdej transakcji związanej z tym przedmiotem."
@@ -23532,7 +23554,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23616,7 +23638,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23703,12 +23725,12 @@ msgstr "Zignoruj nakładanie się czasu w stacji roboczej"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23866,7 +23888,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23990,7 +24012,7 @@ msgstr "W przypadku programu wielowarstwowego Klienci zostaną automatycznie prz
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24221,8 +24243,8 @@ msgstr "W tym elementów dla zespołów sub"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24293,7 +24315,7 @@ msgstr "Przychodzące płatności"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24325,7 +24347,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24333,7 +24355,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr "Nieprawidłowa firma"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24467,15 +24489,15 @@ msgstr "Wskazuje, że pakiet jest częścią tej dostawy (Tylko projektu)"
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24543,14 +24565,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24567,8 +24589,8 @@ msgstr "Wymagane Kontrola przed dostawą"
msgid "Inspection Required before Purchase"
msgstr "Wymagane Kontrola przed zakupem"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24598,7 +24620,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24637,11 +24659,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24649,13 +24671,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24775,13 +24796,13 @@ msgstr ""
msgid "Interest"
msgstr "Zainteresowanie"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Dochód z odsetek"
@@ -24789,8 +24810,8 @@ msgstr "Dochód z odsetek"
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24810,7 +24831,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24818,7 +24839,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24826,7 +24847,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24857,7 +24878,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24870,7 +24891,12 @@ msgstr ""
msgid "Internal Work History"
msgstr "Wewnętrzne Historia Pracuj"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24886,12 +24912,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24912,7 +24938,7 @@ msgstr "Nieprawidłowa kwota"
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24925,7 +24951,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24941,21 +24967,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr "Nieprawidłowe pole firmy"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24993,7 +25019,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -25007,7 +25033,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -25015,11 +25041,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25049,12 +25075,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25079,12 +25105,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25109,7 +25135,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Nieprawidłowy adres URL pliku"
@@ -25121,7 +25147,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25147,8 +25173,8 @@ msgstr "Nieprawidłowe zapytanie wyszukiwania"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25156,7 +25182,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25166,7 +25192,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Inwentarz"
@@ -25215,8 +25241,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25266,7 +25292,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25371,7 +25397,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25392,7 +25418,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25488,8 +25514,7 @@ msgstr ""
msgid "Is Billable"
msgstr "Jest rozliczalny"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25931,8 +25956,7 @@ msgstr ""
msgid "Is Transporter"
msgstr "Dostarcza we własnym zakresie"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -26038,7 +26062,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26069,11 +26093,11 @@ msgstr ""
msgid "Issuing Date"
msgstr "Data emisji"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26197,7 +26221,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26445,7 +26469,7 @@ msgstr "poz Koszyk"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26507,7 +26531,7 @@ msgstr "poz Koszyk"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26706,13 +26730,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26929,7 +26953,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26969,10 +26993,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27013,10 +27037,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27032,19 +27052,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27231,11 +27252,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27336,11 +27357,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr "Przedmiot i gwarancji Szczegóły"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27366,11 +27387,7 @@ msgstr ""
msgid "Item operation"
msgstr "Obsługa przedmiotu"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27389,11 +27406,11 @@ msgstr "Jednostkowy wskaźnik wyceny przeliczone z uwzględnieniem kosztów ilo
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27410,7 +27427,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27422,7 +27439,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27434,15 +27451,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "Przedmiot {0} został wyłączony"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27454,15 +27471,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27470,7 +27487,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27478,11 +27495,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27498,7 +27515,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27506,7 +27523,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27514,7 +27531,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27560,7 +27577,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27584,7 +27601,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27608,11 +27625,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27624,7 +27641,7 @@ msgstr ""
msgid "Items not found."
msgstr "Nie znaleziono elementów."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27634,7 +27651,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27699,9 +27716,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27763,7 +27780,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27839,7 +27856,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28059,7 +28076,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28187,7 +28204,7 @@ msgstr "Ostatnia data ukończenia"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28269,7 +28286,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28519,12 +28536,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Osobowość prawna / Filia w oddzielny planu kont należących do Organizacji."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28535,7 +28552,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28594,7 +28611,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28655,7 +28672,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28676,12 +28693,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28689,7 +28706,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr "Połączenie z klientem nie powiodło się. Spróbuj ponownie."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Połączenie z dostawcą nie powiodło się. Spróbuj ponownie."
@@ -28747,8 +28764,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28793,8 +28810,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28995,6 +29012,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29038,10 +29060,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29284,9 +29306,9 @@ msgstr "Główne/Opcjonalne Tematy"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29306,7 +29328,7 @@ msgstr "Bądź Amortyzacja Entry"
msgid "Make Difference Entry"
msgstr "Wprowadź różnicę"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29344,12 +29366,12 @@ msgstr "Nowa faktura sprzedaży"
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29365,11 +29387,11 @@ msgstr "Zadzwoń"
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29377,8 +29399,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29397,7 +29419,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29413,7 +29435,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29512,8 +29534,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29592,7 +29614,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29617,7 +29639,7 @@ msgstr "Producenci używane w pozycji"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29662,10 +29684,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29832,6 +29850,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29846,12 +29870,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29930,7 +29954,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29938,7 +29962,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Zużycie materiału do produkcji"
@@ -30019,7 +30043,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30116,11 +30140,11 @@ msgstr ""
msgid "Material Request Type"
msgstr "Typ zamówienia produktu"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30188,7 +30212,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30254,12 +30278,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30330,9 +30354,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30364,11 +30388,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30429,15 +30453,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30487,7 +30506,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30517,7 +30536,7 @@ msgstr "Wiadomość zostanie wysłana do użytkowników w celu uzyskania ich sta
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Wiadomości dłuższe niż 160 znaków zostaną podzielone na kilka wiadomości"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30718,7 +30737,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimalna ilość powinna być większa niż ilość rekursji"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30807,8 +30826,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr "Pozostałe"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30816,15 +30835,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30854,7 +30873,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30862,7 +30881,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30899,7 +30918,7 @@ msgid "Missing required filter: {0}"
msgstr "Brak wymaganego filtra: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31148,11 +31167,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31174,11 +31193,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31187,7 +31206,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31274,7 +31293,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31318,7 +31337,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31327,7 +31346,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31633,7 +31652,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31810,7 +31829,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Nowe Miejsce Pracy"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Nowy limit kredytowy jest mniejszy niż obecna zaległa kwota dla klienta. Limit kredytowy musi wynosić co najmniej {0}"
@@ -31864,7 +31883,7 @@ msgstr "Kolejny e-mali zostanie wysłany w dniu:"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31877,7 +31896,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31890,7 +31909,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31906,7 +31925,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31941,7 +31960,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31970,19 +31989,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -32012,7 +32031,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32206,7 +32225,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32230,7 +32249,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32301,7 +32320,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32334,7 +32353,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32379,8 +32398,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32481,7 +32500,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32535,7 +32554,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32543,7 +32562,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32726,6 +32745,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32785,18 +32809,18 @@ msgstr "Drogomierz Wartość (Ostatni)"
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32924,7 +32948,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Po ustawieniu faktura ta będzie zawieszona do wyznaczonej daty"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32964,7 +32988,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32983,7 +33007,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -33020,7 +33044,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33237,8 +33261,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "Szczegóły salda otwarcia"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33261,7 +33285,7 @@ msgstr "Data Otwarcia"
msgid "Opening Entry"
msgstr "Wpis początkowy"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33294,7 +33318,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Faktura otwarcia ma korektę zaokrąglenia w wysokości {0}. Wymagane jest konto „{1}”, aby zaksięgować te wartości. Proszę ustawić to w firmie: {2}. Alternatywnie, można włączyć opcję „{3}”, aby nie księgować żadnej korekty zaokrąglenia."
@@ -33330,16 +33354,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33357,12 +33381,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33394,7 +33421,7 @@ msgstr "Koszty operacyjne (Spółka waluty)"
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33437,15 +33464,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Identyfikator operacji"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33470,7 +33497,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33485,11 +33512,11 @@ msgstr "Operacja zakończona na jak wiele wyrobów gotowych?"
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33505,9 +33532,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33680,7 +33707,7 @@ msgstr ""
msgid "Optimize Route"
msgstr "Zoptymalizuj trasę"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33830,7 +33857,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33946,7 +33973,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33984,7 +34011,7 @@ msgstr "Brak Gwarancji"
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34003,6 +34030,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Wychodzące Cena"
@@ -34038,7 +34066,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34048,7 +34076,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34108,17 +34136,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Dopuszczalne przekroczenie dostawy/przyjęcia (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34138,11 +34171,11 @@ msgstr "Dopuszczalne przekroczenie transferu (%)"
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34442,7 +34475,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34463,7 +34496,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34499,7 +34532,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34517,11 +34550,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34627,7 +34660,7 @@ msgstr ""
msgid "Packed Items"
msgstr "Przedmioty pakowane"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34664,7 +34697,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34705,7 +34738,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34771,7 +34804,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34865,7 +34898,7 @@ msgstr "Nadrzędna partia"
msgid "Parent Company"
msgstr "Przedsiębiorstwo macierzyste"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34992,7 +35025,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35205,7 +35238,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35232,7 +35265,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35265,7 +35298,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35417,7 +35450,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35526,7 +35559,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35577,7 +35610,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35611,7 +35644,7 @@ msgstr "Ustawienia płatnik"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35758,7 +35791,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35983,7 +36016,7 @@ msgstr "Odniesienia płatności"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36048,7 +36081,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36077,7 +36110,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36133,6 +36166,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36147,6 +36181,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36204,7 +36239,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36279,8 +36314,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr "Wpis o płace"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36327,10 +36362,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36339,9 +36378,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36371,6 +36419,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36480,7 +36536,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37044,8 +37100,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37081,7 +37137,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37129,7 +37185,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37137,7 +37193,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37145,7 +37201,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37179,7 +37235,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37204,11 +37260,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37216,11 +37276,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37232,11 +37292,11 @@ msgstr "Proszę utworzyć klienta z leada {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37244,11 +37304,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37256,7 +37316,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37280,7 +37340,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37292,20 +37352,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37313,15 +37373,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Proszę wprowadzić numer partii"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37329,7 +37389,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37338,7 +37398,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37354,7 +37414,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37374,7 +37434,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Proszę wprowadzić numer seryjny"
@@ -37391,7 +37451,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37411,7 +37471,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37439,7 +37499,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37507,11 +37567,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37570,7 +37630,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37586,7 +37646,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37616,7 +37676,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37625,8 +37685,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37658,11 +37718,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37678,7 +37738,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37695,7 +37755,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37719,7 +37779,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37792,11 +37852,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Wybierz co najmniej jeden filtr: kod produktu, serię lub numer seryjny."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37816,7 +37880,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37874,7 +37938,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Proszę najpierw wybrać magazyn"
@@ -37903,7 +37967,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37912,11 +37976,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37928,7 +37992,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37958,7 +38022,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37976,7 +38040,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38022,7 +38086,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38059,23 +38123,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38104,7 +38168,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38112,7 +38176,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38124,15 +38188,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38171,7 +38235,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38193,7 +38257,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38206,7 +38270,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38311,8 +38375,8 @@ msgstr "Wpisz ciąg trasy"
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38377,7 +38441,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38395,7 +38459,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38517,10 +38581,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38594,18 +38654,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38778,6 +38843,7 @@ msgstr "Płyty z rabatem cenowym"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38801,6 +38867,7 @@ msgstr "Płyty z rabatem cenowym"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38852,7 +38919,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39207,7 +39274,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39216,8 +39283,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr "Drukuj bez wartości"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39225,7 +39292,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39328,10 +39395,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39385,7 +39448,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Ilość straty procesu"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39466,6 +39529,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39561,8 +39628,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39627,7 +39694,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39841,7 +39908,7 @@ msgstr ""
msgid "Progress (%)"
msgstr "Postęp (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39885,7 +39952,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -40016,7 +40083,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40162,7 +40229,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Zaangażowani potencjalni klienci, ale nieprzekonwertowani"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40177,7 +40244,7 @@ msgstr "Podać adres e-mail zarejestrowany w firmie"
msgid "Providing"
msgstr "Że"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40249,8 +40316,9 @@ msgstr "Działalność wydawnicza"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40573,7 +40641,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40588,7 +40656,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr "Przedmioty zamówienia przeterminowane"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40603,7 +40671,7 @@ msgstr "Zamówienia zakupu do rachunku"
msgid "Purchase Orders to Receive"
msgstr "Zamówienia zakupu do odbioru"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40737,7 +40805,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40835,6 +40903,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40844,10 +40913,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40903,6 +40968,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40951,6 +41017,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41059,11 +41126,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41114,8 +41181,8 @@ msgstr "Ilość wg. Jednostki Miary"
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41170,8 +41237,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41407,17 +41474,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41431,7 +41498,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr "Kontrole jakości"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41563,7 +41630,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41698,7 +41765,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41708,21 +41775,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Ilość powinna być większa niż 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41745,7 +41812,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41864,11 +41931,11 @@ msgstr "Wycena dla"
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42175,7 +42242,7 @@ msgstr "Stawka przy użyciu której waluta dostawcy jest konwertowana do podstaw
msgid "Rate at which this tax is applied"
msgstr "Stawka przy użyciu której ten podatek jest aplikowany"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42341,7 +42408,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr "Zużycie surowców"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42380,12 +42447,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42394,7 +42455,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42575,7 +42636,7 @@ msgid "Receivable / Payable Account"
msgstr "Konto Należności / Zobowiązań"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43036,7 +43097,7 @@ msgstr "Odniesienie #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43200,11 +43261,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43366,7 +43427,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43424,7 +43485,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43488,7 +43549,7 @@ msgstr "Zmień nazwę atrybutu w atrybucie elementu."
msgid "Rename Log"
msgstr "Zmień nazwę dziennika"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43505,7 +43566,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43628,7 +43689,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43873,7 +43934,7 @@ msgstr "Prośba o informację"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44054,7 +44115,7 @@ msgstr "Wymaga spełnienia"
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44099,7 +44160,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44143,7 +44204,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44213,14 +44274,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44229,13 +44290,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44501,7 +44562,7 @@ msgstr "Pole wyniku wyniku"
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44526,8 +44587,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44602,7 +44663,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44638,7 +44699,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44736,8 +44797,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44969,7 +45030,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44988,8 +45049,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45169,21 +45230,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45204,7 +45265,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45265,31 +45326,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45339,11 +45400,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45351,7 +45412,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45368,7 +45429,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45392,22 +45453,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45436,7 +45497,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45444,7 +45505,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45472,7 +45533,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Wiersz #{0}: Przedmiot {1} nie jest seryjny ani partiowy. Nie można przypisać numeru seryjnego/partii do niego."
@@ -45513,7 +45574,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45525,10 +45586,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45550,11 +45607,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Wiersz #{0}: Proszę wybrać magazyn podmontażowy"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45576,15 +45633,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Wiersz #{0}: Ilość powinna być mniejsza lub równa dostępnej ilości do rezerwacji (rzeczywista ilość - zarezerwowana ilość) {1} dla przedmiotu {2} w partii {3} w magazynie {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45592,7 +45649,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45608,18 +45665,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45658,7 +45715,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45678,19 +45735,19 @@ msgstr "\t\t\t\t\ttę weryfikację.\""
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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45702,19 +45759,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45730,6 +45787,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Wiersz #{0}: Status musi być {1} dla rabatu na fakturę {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45746,7 +45807,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45759,7 +45820,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45771,7 +45832,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45807,7 +45868,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45823,7 +45884,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45924,7 +45985,7 @@ msgstr "Wiersz #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Wiersz #{}: {} {} nie istnieje."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Wiersz #{}: {} {} nie należy do firmy {}. Proszę wybrać poprawne {}."
@@ -45932,7 +45993,7 @@ msgstr "Wiersz #{}: {} {} nie należy do firmy {}. Proszę wybrać poprawne {}."
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45940,7 +46001,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Wiersz {0}# Przedmiot {1} nie znaleziony w tabeli 'Dostarczone surowce' w {2} {3}"
@@ -45972,11 +46033,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45993,7 +46054,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -46013,7 +46074,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -46021,7 +46082,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46066,16 +46127,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46091,7 +46152,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46115,7 +46176,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46183,7 +46244,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46195,10 +46256,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46207,11 +46264,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46223,11 +46280,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46235,11 +46292,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46252,11 +46309,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46268,7 +46325,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46314,7 +46371,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46322,7 +46379,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Wiersze: {0} mają „Payment Entry” jako typ referencji. Nie powinno to być ustawiane ręcznie."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46529,8 +46586,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46552,8 +46609,8 @@ msgstr "Moduł Wynagrodzenia"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46567,18 +46624,23 @@ msgstr "Moduł Wynagrodzenia"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46602,8 +46664,8 @@ msgstr "Składki na sprzedaż i zachęty"
msgid "Sales Defaults"
msgstr "Domyślne wartości sprzedaży"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46772,11 +46834,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46974,25 +47036,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -47036,6 +47098,7 @@ msgstr "Zlecenia sprzedaży do realizacji"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47048,7 +47111,7 @@ msgstr "Zlecenia sprzedaży do realizacji"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47154,7 +47217,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47247,7 +47310,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47271,7 +47334,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47390,7 +47453,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47422,12 +47485,12 @@ msgstr "Przykładowy magazyn retencyjny"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47671,7 +47734,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47790,8 +47853,8 @@ msgstr ""
msgid "Secretary"
msgstr "Sekretarka"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47829,7 +47892,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47871,7 +47934,7 @@ msgstr ""
msgid "Select Company Address"
msgstr "Wybierz adres firmy"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47907,7 +47970,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47932,7 +47995,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47970,7 +48033,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -48045,7 +48108,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48068,7 +48131,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48084,8 +48147,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48102,7 +48165,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48134,7 +48197,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48151,7 +48214,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48159,6 +48222,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48186,7 +48255,7 @@ msgstr "Wybierz, aby klient mógł wyszukać za pomocą tych pól"
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48217,30 +48286,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48493,7 +48562,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48513,7 +48582,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48558,7 +48627,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48698,7 +48767,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Numery seryjne są zarezerwowane w wpisach rezerwacji stanów magazynowych, należy je odblokować przed kontynuowaniem."
@@ -48768,7 +48837,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49182,7 +49251,7 @@ msgstr "Ustaw Advances and Allocate (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Ustaw ręcznie stawkę podstawową"
@@ -49201,8 +49270,8 @@ msgstr "Ustaw magazyn dostawy"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49369,11 +49438,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49405,7 +49474,7 @@ msgstr "Ustaw stawkę pozycji podzakresu na podstawie BOM"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49516,7 +49585,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49536,6 +49605,10 @@ msgstr "Ustawienia modułu sprzedaży"
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49728,7 +49801,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49766,7 +49839,7 @@ msgstr "Adres do wysyłki Nazwa"
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49909,8 +49982,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr "Inwestycje krótkoterminowe"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50242,7 +50315,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Ponieważ występuje strata procesowa w wysokości {0} jednostek dla produktu gotowego {1}, należy zmniejszyć ilość o {0} jednostek w tabeli przedmiotów."
@@ -50287,7 +50360,7 @@ msgstr "Pomiń dowód dostawy"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50329,8 +50402,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr "Środki czystości i Detergenty"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50354,7 +50427,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50418,7 +50491,7 @@ msgstr ""
msgid "Source Location"
msgstr "Lokalizacja źródła"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50427,11 +50500,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50489,7 +50562,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50497,23 +50575,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50555,7 +50632,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50563,7 +50640,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50587,7 +50664,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50599,6 +50676,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50671,13 +50753,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50698,8 +50780,8 @@ msgstr "Szablon Standardowy"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50734,7 +50816,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50863,7 +50945,7 @@ msgstr ""
msgid "Status and Reference"
msgstr "Status i referencje"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50893,6 +50975,7 @@ msgstr "Informacje prawne na temat dostawcy"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50901,8 +50984,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51002,6 +51085,16 @@ msgstr "Wpis zamknięcia zapasów {0} został zakolejkowany do przetworzenia, sy
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51011,10 +51104,6 @@ msgstr ""
msgid "Stock Details"
msgstr "Zdjęcie Szczegóły"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51078,7 +51167,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51086,8 +51175,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51165,8 +51254,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51269,8 +51358,8 @@ msgstr "Ilość zapasów vs liczba seryjna"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51282,7 +51371,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51294,7 +51383,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51319,9 +51408,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51332,7 +51421,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51357,10 +51446,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51388,7 +51477,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51428,7 +51517,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51543,7 +51632,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51676,11 +51765,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Zapasy nie mogą zostać zaktualizowane, ponieważ faktura zawiera przedmiot dropshippingowy. Wyłącz opcję „Zaktualizuj zapasy” lub usuń przedmiot dropshippingowy."
@@ -51735,14 +51824,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51800,7 +51889,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52062,7 +52151,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52151,7 +52240,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52172,7 +52261,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52326,7 +52415,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52350,7 +52439,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52510,7 +52599,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52608,6 +52697,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52617,7 +52707,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52632,6 +52722,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52716,7 +52807,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52751,8 +52842,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52804,7 +52893,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52833,7 +52922,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52922,7 +53011,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52939,17 +53028,12 @@ msgstr "Dostawca dostarcza Klientowi"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Dostawca {0} nie znaleziony w {1}"
@@ -52962,8 +53046,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53054,7 +53138,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53084,7 +53168,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr "System pobierze wszystkie wpisy, jeśli wartość graniczna wynosi zero."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53105,10 +53189,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53256,7 +53346,7 @@ msgstr "Docelowy adres hurtowni"
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53264,24 +53354,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53398,8 +53487,8 @@ msgstr "Kwota podatku po uwzględnieniu rabatu (waluta firmy)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53431,7 +53520,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr "Podział podatków"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53453,7 +53541,6 @@ msgstr "Podział podatków"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53469,6 +53556,7 @@ msgstr "Podział podatków"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53480,8 +53568,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Wydatki podatkowe"
@@ -53555,7 +53643,7 @@ msgstr "Stawki podatkowe %"
msgid "Tax Rates"
msgstr "Wysokość podatków"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53573,7 +53661,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53588,7 +53676,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53907,7 +53995,7 @@ msgstr "Podatki i opłaty potrącenia"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Podatki i opłaty potrącone (Firmowe)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53940,8 +54028,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53992,13 +54080,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54180,7 +54268,7 @@ msgstr "Szablony warunków i regulaminów"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54279,7 +54367,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Pole „Od numeru paczki” nie może być puste ani mieć wartości mniejszej niż 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54332,7 +54420,8 @@ msgstr "Warunek płatności w wierszu {0} prawdopodobnie jest zduplikowany."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54348,7 +54437,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54384,7 +54473,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54392,7 +54481,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54412,7 +54505,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54445,7 +54538,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54486,11 +54579,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54511,7 +54604,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54538,7 +54631,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54596,7 +54689,7 @@ msgstr "Operacja {0} nie może być podoperacją."
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54608,6 +54701,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54649,7 +54748,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54665,7 +54764,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54698,7 +54797,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Zapasy dla pozycji {0} w magazynie {1} były ujemne w dniu {2}. Powinieneś utworzyć pozytywny zapis {3} przed datą {4} i godziną {5}, aby zaksięgować prawidłową wartość wyceny. Aby uzyskać więcej informacji, przeczytaj dokumentację ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54720,11 +54819,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54772,15 +54871,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Magazyn, w którym przechowujesz gotowe produkty przed ich wysyłką."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54788,19 +54887,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54808,7 +54907,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54824,7 +54923,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54853,7 +54952,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Istnieją dwie opcje utrzymania wyceny zapasów: FIFO (pierwsze weszło, pierwsze wyszło) i Średnia Ruchoma. Aby szczegółowo zrozumieć ten temat, odwiedź Wycena towarów, FIFO i Średnia Ruchoma. "
@@ -54893,7 +54992,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54949,11 +55048,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54987,7 +55086,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ten dokument przekracza limit o {0} {1} dla pozycji {4}. Czy realizujesz kolejne {3} w ramach tego samego {2}?"
@@ -55090,11 +55189,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55163,7 +55262,7 @@ msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zużyte przez
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało naprawione przez Naprawę Aktywa {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55171,15 +55270,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało przywrócone po anulowaniu Kapitału Aktywa {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało przywrócone."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zwrócone przez Fakturę Sprzedaży {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zezłomowane."
@@ -55187,7 +55286,7 @@ msgstr "Ten harmonogram został utworzony, gdy Aktywo {0} zostało zezłomowane.
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55256,7 +55355,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "To ograniczy dostęp użytkowników do innych rekordów pracowników"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55367,7 +55466,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55476,7 +55575,7 @@ msgstr ""
msgid "To Currency"
msgstr "Do przewalutowania"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55703,11 +55802,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55750,11 +55853,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55762,7 +55865,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55787,7 +55890,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55937,7 +56040,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56044,12 +56147,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56351,7 +56454,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56363,7 +56466,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56646,7 +56749,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56821,7 +56924,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56845,11 +56948,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56954,7 +57057,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -57001,11 +57105,16 @@ msgstr "Historia transakcji"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr ""
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57186,8 +57295,8 @@ msgstr "Informacje dotyczące przewoźnika"
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57451,6 +57560,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57466,7 +57576,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57527,7 +57637,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Współczynnik konwersji jm"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Współczynnik konwersji jm ({0} -> {1}) nie znaleziono dla pozycji: {2}"
@@ -57540,7 +57650,7 @@ msgstr "Współczynnik konwersji jm jest wymagany w wierszu {0}"
msgid "UOM Name"
msgstr "Nazwa Jednostki Miary"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Wymagany współczynnik konwersji jm dla jm: {0} w pozycji: {1}"
@@ -57612,12 +57722,12 @@ msgstr "Nie można znaleźć kursu wymiany dla {0} na {1} na kluczową datę {2}
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57699,7 +57809,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57718,7 +57828,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Cena jednostkowa"
@@ -57735,7 +57845,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57880,7 +57990,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57920,12 +58030,12 @@ msgstr ""
msgid "Unscheduled"
msgstr "Nieplanowany"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58101,7 +58211,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58180,11 +58290,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58386,7 +58496,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58428,7 +58538,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58492,6 +58602,11 @@ msgstr "Użytkownicy mogą włączyć pole wyboru, jeśli chcą dostosować staw
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58514,8 +58629,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58525,7 +58640,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58535,12 +58650,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58734,7 +58849,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58750,14 +58864,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58765,19 +58877,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58787,7 +58899,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr "Wycena i kwota całkowita"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58801,7 +58913,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58813,7 +58925,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr "Wartość (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58932,12 +59044,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58956,7 +59068,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58974,7 +59086,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58985,7 +59097,7 @@ msgstr ""
msgid "Variant Of"
msgstr "Wariant"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59279,7 +59391,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59351,7 +59463,7 @@ msgstr "Nazwa Voucheru"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59425,7 +59537,7 @@ msgstr "Podtyp Voucheru"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59452,7 +59564,7 @@ msgstr "Podtyp Voucheru"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59632,8 +59744,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59658,7 +59770,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr "Magazyn {0} nie istnieje"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59795,11 +59907,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59889,7 +60001,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr "Długość fali w megametrach"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59958,7 +60070,7 @@ msgstr "Strona WWW:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60088,7 +60200,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60098,7 +60210,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60108,11 +60220,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60257,7 +60369,7 @@ msgstr "Praca wykonana"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60294,7 +60406,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60328,7 +60440,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60369,19 +60481,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60390,16 +60506,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60424,7 +60540,7 @@ msgstr "Produkty w toku"
msgid "Work-in-Progress Warehouse"
msgstr "Magazyn z produkcją w toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60472,7 +60588,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60563,14 +60679,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60675,7 +60791,7 @@ msgstr "Zapisana wartość"
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60731,11 +60847,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60743,7 +60859,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60771,7 +60887,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60812,11 +60928,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60840,7 +60956,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60901,7 +61017,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60913,19 +61029,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60937,7 +61053,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60961,7 +61077,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60977,7 +61093,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -61024,11 +61140,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61050,11 +61166,11 @@ msgstr "Plik zip"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61095,7 +61211,7 @@ msgid "cannot be greater than 100"
msgstr "nie może być większa niż 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61244,7 +61360,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61277,7 +61393,7 @@ msgstr ""
msgid "reconciled"
msgstr "uzgodniono"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "zwrócono"
@@ -61312,7 +61428,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "sprzedane"
@@ -61320,8 +61436,8 @@ msgstr "sprzedane"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61339,7 +61455,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61366,7 +61482,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "unikatowy np. SAVE20 Do wykorzystania w celu uzyskania rabatu"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61388,7 +61504,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61396,7 +61512,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61404,7 +61520,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61437,11 +61553,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61449,7 +61565,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61537,11 +61653,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61553,7 +61669,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61562,7 +61678,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61587,7 +61703,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61609,7 +61725,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61617,12 +61733,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61630,7 +61746,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61638,7 +61754,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61646,7 +61762,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61686,27 +61802,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "Zdemontowano {0} elementów"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "Zwrócono {0} elementów"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61714,7 +61830,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61730,7 +61846,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61743,7 +61859,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61759,16 +61875,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61780,7 +61896,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61796,7 +61912,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61834,8 +61950,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61945,7 +62061,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61994,8 +62110,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, zakończ operację {1} przed operacją {2}."
@@ -62015,11 +62131,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} nie istnieje"
@@ -62027,11 +62143,11 @@ msgstr "{0}: {1} nie istnieje"
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} jest kontem grupowym."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -62043,7 +62159,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} zostanie anulowane lub zamknięte."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62055,7 +62171,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/pt.po b/erpnext/locale/pt.po
index d918d638cb1..47844e07f46 100644
--- a/erpnext/locale/pt.po
+++ b/erpnext/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr " Resumo"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr ""
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr ""
msgid "'From Date' must be after 'To Date'"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr ""
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr ""
@@ -346,8 +346,8 @@ msgstr "A conta \"{0}\" já está sendo utilizada por {1}. Utilize outra conta."
msgid "'{0}' has been already added."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr ""
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr ""
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "90 Acima"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -762,7 +762,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -779,7 +779,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -896,11 +896,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr "Os seus Atalhos "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -945,7 +945,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr ""
@@ -1109,11 +1109,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr ""
@@ -1121,7 +1121,7 @@ msgstr ""
msgid "Abbreviation: {0} must appear only once"
msgstr "Abreviação: {0} deve aparecer apenas uma vez"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1175,7 +1175,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr ""
@@ -1211,7 +1211,7 @@ msgstr "A Chave de Acesso é necessária para o Provedor de Serviço: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1329,8 +1329,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr ""
@@ -1348,7 +1348,7 @@ msgstr ""
msgid "Account Name"
msgstr "Nome da Conta"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr ""
@@ -1361,7 +1361,7 @@ msgstr ""
msgid "Account Number"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr ""
@@ -1400,7 +1400,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1416,11 +1416,11 @@ msgstr ""
msgid "Account Value"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 ""
@@ -1487,15 +1487,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr ""
@@ -1503,8 +1503,8 @@ msgstr ""
msgid "Account with existing transaction can not be deleted"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr ""
@@ -1512,11 +1512,11 @@ msgstr ""
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1524,11 +1524,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr ""
@@ -1544,15 +1544,15 @@ msgstr ""
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1560,7 +1560,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr ""
@@ -1568,19 +1568,19 @@ msgstr ""
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1596,7 +1596,7 @@ msgstr ""
msgid "Account: {0} is not permitted under Payment Entry"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr ""
@@ -1881,8 +1881,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1906,8 +1906,8 @@ msgstr ""
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr ""
@@ -1916,7 +1916,7 @@ msgstr ""
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -1971,7 +1971,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1984,14 +1983,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr ""
@@ -2021,8 +2019,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2122,15 +2120,15 @@ msgstr ""
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr ""
@@ -2295,7 +2293,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2419,7 +2417,7 @@ msgstr ""
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2541,7 +2539,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2550,7 +2548,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr ""
@@ -3049,7 +3047,7 @@ msgstr ""
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3072,7 +3070,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3080,11 +3078,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3230,11 +3223,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Ajustar a quantidade"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3247,8 +3235,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr ""
@@ -3316,7 +3304,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr ""
@@ -3436,7 +3424,7 @@ msgstr ""
msgid "Against Blanket Order"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3578,11 +3566,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3732,21 +3720,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr ""
@@ -3826,7 +3814,7 @@ msgstr ""
msgid "All Territories"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr ""
@@ -3840,6 +3828,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3848,23 +3841,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3878,11 +3871,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3901,7 +3894,7 @@ msgstr ""
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr ""
@@ -3911,7 +3904,7 @@ msgstr ""
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3941,7 +3934,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3998,7 +3991,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4062,7 +4055,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4185,16 +4178,6 @@ msgstr ""
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4320,6 +4303,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4396,10 +4389,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4411,6 +4402,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4452,8 +4448,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4694,7 +4690,7 @@ msgstr ""
msgid "Amount"
msgstr "Montante"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4828,11 +4824,11 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
@@ -4878,11 +4874,11 @@ msgstr ""
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5422,7 +5418,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5434,7 +5430,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Como existem Artigos de Submontagem suficientes, a Ordem de Fabrico não é necessária para o Armazém {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5572,7 +5568,7 @@ msgstr ""
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5749,8 +5745,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5850,7 +5846,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5882,7 +5878,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5890,20 +5886,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5923,7 +5919,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5964,7 +5960,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "O Ativo {0} não está submetido. Por favor, submeta o ativo antes de continuar."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6014,7 +6010,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6075,7 +6071,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6083,20 +6079,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6179,11 +6171,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr ""
@@ -6191,19 +6183,19 @@ msgstr ""
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr ""
@@ -6415,7 +6407,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6527,7 +6519,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6616,10 +6608,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6628,8 +6616,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6653,7 +6641,9 @@ msgstr "Valor Médio do Pedido"
msgid "Average Order Values"
msgstr "Valores Médios dos Pedidos"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6677,7 +6667,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6735,7 +6725,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6758,7 +6748,7 @@ msgstr ""
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr ""
@@ -6830,11 +6820,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6988,7 +6973,7 @@ msgstr ""
msgid "BOM Website Operation"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7056,7 +7041,7 @@ msgstr ""
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7120,7 +7105,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7185,7 +7170,7 @@ msgstr "Tipo de Saldo"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr ""
@@ -7341,8 +7326,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7457,8 +7442,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr ""
@@ -7631,11 +7616,11 @@ msgstr ""
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr ""
@@ -7792,7 +7777,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7867,7 +7852,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7956,13 +7941,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7979,7 +7964,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8002,12 +7987,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8062,7 +8047,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8071,7 +8056,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8085,11 +8070,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr ""
@@ -8190,7 +8177,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8442,6 +8429,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8538,7 +8535,7 @@ msgstr ""
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8797,8 +8794,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -8959,14 +8956,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9016,8 +9013,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9272,7 +9269,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9305,13 +9302,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9353,7 +9350,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9361,9 +9358,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9391,7 +9388,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9411,7 +9408,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9431,15 +9428,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9447,11 +9444,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9467,11 +9464,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9479,7 +9476,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9505,7 +9502,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9513,12 +9510,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Não é possível eliminar um artigo que já foi encomendado"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9530,7 +9527,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9538,20 +9535,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9567,7 +9564,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9575,15 +9572,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9591,12 +9588,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9609,14 +9606,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9630,7 +9627,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9638,11 +9635,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Não é possível definir quantidade menor que a quantidade fornecida."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Não é possível definir quantidade menor que a quantidade recebida."
@@ -9654,7 +9651,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9687,7 +9684,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr ""
@@ -9706,13 +9703,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -9929,7 +9926,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10034,7 +10031,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10044,7 +10041,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10052,7 +10049,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10067,7 +10064,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10121,7 +10118,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10264,7 +10261,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10322,7 +10319,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10374,6 +10371,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10516,11 +10518,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10772,11 +10774,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr ""
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10807,7 +10815,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11206,8 +11214,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11260,7 +11268,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11349,18 +11357,20 @@ msgstr ""
msgid "Company Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11456,7 +11466,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11491,7 +11501,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11530,12 +11540,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11577,7 +11587,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11624,12 +11634,12 @@ msgstr "Projetos Concluídos"
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11818,7 +11828,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12012,7 +12022,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12041,7 +12051,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12169,7 +12179,7 @@ msgstr ""
msgid "Contact Person"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12295,6 +12305,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12355,7 +12370,7 @@ msgstr ""
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12363,15 +12378,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12448,13 +12463,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12621,7 +12636,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12754,7 +12769,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12797,17 +12812,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12887,7 +12898,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13076,7 +13087,7 @@ msgstr ""
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13108,7 +13119,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13175,7 +13186,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13320,7 +13331,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13358,12 +13369,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13394,12 +13405,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13433,7 +13444,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13466,7 +13477,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13659,7 +13670,7 @@ msgstr ""
msgid "Credit Limit"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13669,12 +13680,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13706,7 +13711,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13734,7 +13739,7 @@ msgstr ""
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr ""
@@ -13742,7 +13747,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13751,20 +13756,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13772,8 +13777,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -13943,7 +13948,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13953,7 +13958,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14036,8 +14041,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14104,6 +14109,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14199,7 +14209,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14306,7 +14315,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14395,8 +14403,8 @@ msgstr ""
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14410,7 +14418,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14493,6 +14501,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14515,7 +14524,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14532,6 +14541,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14575,7 +14585,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14627,7 +14637,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14733,7 +14743,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14790,9 +14800,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr ""
@@ -14904,7 +14914,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -14995,7 +15005,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15221,7 +15231,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15249,13 +15259,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15383,8 +15393,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15410,14 +15419,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15432,19 +15441,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15497,9 +15506,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15615,6 +15622,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15650,23 +15667,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15789,15 +15802,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15849,7 +15862,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15940,6 +15953,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16022,12 +16041,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16048,8 +16067,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16160,11 +16179,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16245,7 +16264,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16305,11 +16324,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr ""
@@ -16395,10 +16414,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16518,8 +16533,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16612,7 +16627,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16770,15 +16785,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16890,15 +16905,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -16979,6 +16994,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17015,11 +17035,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Regras de preços desativadas visto que este {} é uma transferência interna"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17035,7 +17055,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17043,15 +17063,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17338,7 +17358,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17419,7 +17439,7 @@ msgstr "Nome de Exibição"
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17533,8 +17553,8 @@ msgstr ""
msgid "Distributor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17596,7 +17616,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17620,7 +17640,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17687,11 +17707,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17854,12 +17874,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17880,12 +17894,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18044,8 +18052,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18128,7 +18136,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18242,6 +18250,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18261,8 +18273,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18466,8 +18478,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18550,7 +18562,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "O Empregado {0} não pertence à empresa {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18566,7 +18578,7 @@ msgstr ""
msgid "Empty"
msgstr "Vazio"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18597,7 +18609,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18763,12 +18775,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18897,8 +18903,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18997,8 +19003,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19023,7 +19029,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19035,7 +19041,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19078,7 +19084,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19086,7 +19092,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19098,8 +19104,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19123,8 +19129,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19185,7 +19191,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19195,7 +19201,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19241,7 +19247,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19260,7 +19266,7 @@ msgstr "Exemplo: ABCD.#####. Se a série estiver definida e o Nº de Lote não f
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19270,7 +19276,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19278,7 +19284,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19309,17 +19315,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19458,7 +19464,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19545,7 +19551,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19629,7 +19635,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19707,23 +19713,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19802,7 +19808,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19939,7 +19945,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20057,6 +20063,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20094,21 +20105,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Ficheiro não encontrado"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Ficheiro não encontrado no servidor"
@@ -20316,9 +20335,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20375,15 +20394,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20429,7 +20448,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20470,7 +20489,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20611,6 +20630,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20629,7 +20649,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20648,8 +20668,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20722,7 +20742,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20779,7 +20799,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20789,7 +20809,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20810,17 +20830,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20848,11 +20864,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20890,7 +20906,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20904,7 +20920,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20921,7 +20937,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20930,12 +20946,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -20954,7 +20970,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21001,11 +21017,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21051,7 +21062,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21096,8 +21107,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21531,8 +21542,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21549,13 +21560,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21563,7 +21574,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21648,9 +21659,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21823,7 +21834,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21881,7 +21892,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21920,7 +21931,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22094,7 +22105,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22103,7 +22114,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22286,7 +22297,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22729,7 +22740,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22757,7 +22768,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22956,7 +22967,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23124,6 +23135,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23341,7 +23358,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23367,13 +23384,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23382,7 +23404,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23392,7 +23414,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23469,7 +23491,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23483,7 +23505,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23567,7 +23589,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23654,12 +23676,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23817,7 +23839,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23941,7 +23963,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24172,8 +24194,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24244,7 +24266,7 @@ msgstr "Pagamento de Entrada"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24276,7 +24298,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24284,7 +24306,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24418,15 +24440,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24494,14 +24516,14 @@ msgstr "Iniciado"
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24518,8 +24540,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24549,7 +24571,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24588,11 +24610,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24600,13 +24622,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24726,13 +24747,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Rendimento de Juros"
@@ -24740,8 +24761,8 @@ msgstr "Rendimento de Juros"
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24761,7 +24782,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24769,7 +24790,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24777,7 +24798,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24808,7 +24829,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24821,7 +24842,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24837,12 +24863,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24863,7 +24889,7 @@ msgstr "Montante Inválido"
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24876,7 +24902,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24892,21 +24918,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr "Campo de Empresa Inválido"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24944,7 +24970,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24958,7 +24984,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -24966,11 +24992,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25000,12 +25026,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25030,12 +25056,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25060,7 +25086,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "URL de ficheiro inválido"
@@ -25072,7 +25098,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr ""
@@ -25098,8 +25124,8 @@ msgstr "Consulta de pesquisa inválida"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25107,7 +25133,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25117,7 +25143,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25166,8 +25192,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25217,7 +25243,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25322,7 +25348,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25343,7 +25369,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25439,8 +25465,7 @@ msgstr ""
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25882,8 +25907,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25989,7 +26013,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26020,11 +26044,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26148,7 +26172,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26396,7 +26420,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26458,7 +26482,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26657,13 +26681,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26880,7 +26904,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26920,10 +26944,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26964,10 +26988,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26983,19 +27003,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27182,11 +27203,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27287,11 +27308,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27317,11 +27338,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27340,11 +27357,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27361,7 +27378,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27373,7 +27390,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27385,15 +27402,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "O Item {0} foi desativado"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27405,15 +27422,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27421,7 +27438,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27429,11 +27446,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27449,7 +27466,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27457,7 +27474,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27465,7 +27482,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27511,7 +27528,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27535,7 +27552,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27559,11 +27576,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27575,7 +27592,7 @@ msgstr ""
msgid "Items not found."
msgstr "Artigos não encontrados."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27585,7 +27602,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27650,9 +27667,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27714,7 +27731,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27790,7 +27807,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28010,7 +28027,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28138,7 +28155,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28220,7 +28237,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28470,12 +28487,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28486,7 +28503,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28545,7 +28562,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28606,7 +28623,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28627,12 +28644,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28640,7 +28657,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28698,8 +28715,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28744,8 +28761,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28946,6 +28963,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28989,10 +29011,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29235,9 +29257,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr ""
@@ -29257,7 +29279,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29295,12 +29317,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29316,11 +29338,11 @@ msgstr "Fazer uma chamada"
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29328,8 +29350,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29348,7 +29370,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29364,7 +29386,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29463,8 +29485,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29543,7 +29565,7 @@ msgstr ""
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29568,7 +29590,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29613,10 +29635,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29783,6 +29801,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29797,12 +29821,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29881,7 +29905,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29889,7 +29913,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29970,7 +29994,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30067,11 +30091,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30139,7 +30163,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30205,12 +30229,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30281,9 +30305,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30315,11 +30339,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30380,15 +30404,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30438,7 +30457,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30468,7 +30487,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30669,7 +30688,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30758,8 +30777,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30767,15 +30786,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30805,7 +30824,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30813,7 +30832,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30850,7 +30869,7 @@ msgid "Missing required filter: {0}"
msgstr "Filtro obrigatório em falta: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31099,11 +31118,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31125,11 +31144,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31138,7 +31157,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31225,7 +31244,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31269,7 +31288,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31278,7 +31297,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31584,7 +31603,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31761,7 +31780,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Novo Local de Trabalho"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31815,7 +31834,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31828,7 +31847,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31841,7 +31860,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31857,7 +31876,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31892,7 +31911,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -31921,19 +31940,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31963,7 +31982,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32157,7 +32176,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32181,7 +32200,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32252,7 +32271,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32285,7 +32304,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32330,8 +32349,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32432,7 +32451,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32486,7 +32505,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32494,7 +32513,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32677,6 +32696,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32736,18 +32760,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32875,7 +32899,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32915,7 +32939,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32934,7 +32958,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32971,7 +32995,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33188,8 +33212,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33212,7 +33236,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33245,7 +33269,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33281,16 +33305,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33308,12 +33332,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33345,7 +33372,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33388,15 +33415,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33421,7 +33448,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33436,11 +33463,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33456,9 +33483,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33631,7 +33658,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33781,7 +33808,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33897,7 +33924,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33935,7 +33962,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33954,6 +33981,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33989,7 +34017,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33999,7 +34027,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34059,17 +34087,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34089,11 +34122,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34393,7 +34426,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34414,7 +34447,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34450,7 +34483,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34468,11 +34501,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34578,7 +34611,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34615,7 +34648,7 @@ msgstr ""
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34656,7 +34689,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34722,7 +34755,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34816,7 +34849,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -34943,7 +34976,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35156,7 +35189,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35183,7 +35216,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35216,7 +35249,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35368,7 +35401,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35477,7 +35510,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35528,7 +35561,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35562,7 +35595,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35709,7 +35742,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35934,7 +35967,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35999,7 +36032,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36028,7 +36061,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36084,6 +36117,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36098,6 +36132,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36155,7 +36190,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36230,8 +36265,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36278,10 +36313,14 @@ msgstr ""
msgid "Pending Amount"
msgstr ""
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36290,9 +36329,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36322,6 +36370,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36431,7 +36487,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36995,8 +37051,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37032,7 +37088,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37080,7 +37136,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37088,7 +37144,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37096,7 +37152,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37130,7 +37186,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37155,11 +37211,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37167,11 +37227,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37183,11 +37243,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37195,11 +37255,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37207,7 +37267,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37231,7 +37291,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37243,20 +37303,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37264,15 +37324,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Por favor, insira o N.º do Lote"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37280,7 +37340,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37289,7 +37349,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37305,7 +37365,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37325,7 +37385,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Por favor, insira o N.º de Série"
@@ -37342,7 +37402,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37362,7 +37422,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37390,7 +37450,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37458,11 +37518,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37521,7 +37581,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37537,7 +37597,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37567,7 +37627,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37576,8 +37636,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37609,11 +37669,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37629,7 +37689,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37646,7 +37706,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37670,7 +37730,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37743,11 +37803,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Selecione pelo menos um filtro: Código do Item, Lote ou N.º de Série."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37767,7 +37831,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37825,7 +37889,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Por favor selecione primeiro o Armazém"
@@ -37854,7 +37918,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37863,11 +37927,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37879,7 +37943,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37909,7 +37973,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37927,7 +37991,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37973,7 +38037,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38010,23 +38074,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38055,7 +38119,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38063,7 +38127,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38075,15 +38139,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38122,7 +38186,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38144,7 +38208,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38157,7 +38221,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38262,8 +38326,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38328,7 +38392,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38346,7 +38410,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38468,10 +38532,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38545,18 +38605,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38729,6 +38794,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38752,6 +38818,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38803,7 +38870,7 @@ msgstr ""
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39158,7 +39225,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr ""
@@ -39167,8 +39234,8 @@ msgstr ""
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39176,7 +39243,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39279,10 +39346,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39336,7 +39399,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Quantidade de Perda de Processo"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39417,6 +39480,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39512,8 +39579,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39578,7 +39645,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39792,7 +39859,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39836,7 +39903,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -39967,7 +40034,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40113,7 +40180,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40128,7 +40195,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40200,8 +40267,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40524,7 +40592,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40539,7 +40607,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40554,7 +40622,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40688,7 +40756,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40786,6 +40854,7 @@ msgstr ""
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40795,10 +40864,6 @@ msgstr ""
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40854,6 +40919,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40902,6 +40968,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41010,11 +41077,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41065,8 +41132,8 @@ msgstr ""
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41121,8 +41188,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41358,17 +41425,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41382,7 +41449,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr "Inspeções de Qualidade"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41514,7 +41581,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41649,7 +41716,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41659,21 +41726,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "A quantidade deve ser superior a 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41696,7 +41763,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41815,11 +41882,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42126,7 +42193,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42292,7 +42359,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42331,12 +42398,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42345,7 +42406,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42526,7 +42587,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42987,7 +43048,7 @@ msgstr "Referência #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43151,11 +43212,11 @@ msgstr ""
msgid "References"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43317,7 +43378,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43375,7 +43436,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43439,7 +43500,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43456,7 +43517,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43579,7 +43640,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43824,7 +43885,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44005,7 +44066,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44050,7 +44111,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44094,7 +44155,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44164,14 +44225,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44180,13 +44241,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44452,7 +44513,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44477,8 +44538,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44553,7 +44614,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44589,7 +44650,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44687,8 +44748,8 @@ msgstr ""
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44920,7 +44981,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44939,8 +45000,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45120,21 +45181,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45155,7 +45216,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45216,31 +45277,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45290,11 +45351,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45302,7 +45363,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45319,7 +45380,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45343,22 +45404,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45387,7 +45448,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45395,7 +45456,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45423,7 +45484,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45464,7 +45525,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45476,10 +45537,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45501,11 +45558,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Linha #{0}: Selecione o Armazém de Submontagem"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45527,15 +45584,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45543,7 +45600,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45559,18 +45616,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45609,7 +45666,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45629,19 +45686,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45653,19 +45710,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45681,6 +45738,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Linha # {0}: o status deve ser {1} para desconto na fatura {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45697,7 +45758,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45710,7 +45771,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45722,7 +45783,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45758,7 +45819,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45774,7 +45835,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45875,7 +45936,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45883,7 +45944,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45891,7 +45952,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45923,11 +45984,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45944,7 +46005,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45964,7 +46025,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45972,7 +46033,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46017,16 +46078,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46042,7 +46103,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46066,7 +46127,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46134,7 +46195,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46146,10 +46207,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46158,11 +46215,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46174,11 +46231,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46186,11 +46243,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46203,11 +46260,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46219,7 +46276,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46265,7 +46322,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46273,7 +46330,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46480,8 +46537,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46503,8 +46560,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46518,18 +46575,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr ""
@@ -46553,8 +46615,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr ""
@@ -46723,11 +46785,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46925,25 +46987,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -46987,6 +47049,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46999,7 +47062,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47105,7 +47168,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47198,7 +47261,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47222,7 +47285,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47341,7 +47404,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47373,12 +47436,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47620,7 +47683,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47739,8 +47802,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47778,7 +47841,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47820,7 +47883,7 @@ msgstr ""
msgid "Select Company Address"
msgstr "Selecionar Morada da Empresa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47856,7 +47919,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47881,7 +47944,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47919,7 +47982,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -47994,7 +48057,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48017,7 +48080,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48033,8 +48096,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48051,7 +48114,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48083,7 +48146,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48100,7 +48163,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48108,6 +48171,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48135,7 +48204,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48166,30 +48235,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48442,7 +48511,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48462,7 +48531,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48507,7 +48576,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48647,7 +48716,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48717,7 +48786,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49131,7 +49200,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49150,8 +49219,8 @@ msgstr "Definir Armazém de Entrega"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49318,11 +49387,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49354,7 +49423,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49465,7 +49534,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49485,6 +49554,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49677,7 +49750,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49715,7 +49788,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49858,8 +49931,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr "Investimentos de Curto Prazo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50191,7 +50264,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50236,7 +50309,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50278,8 +50351,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50303,7 +50376,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50367,7 +50440,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50376,11 +50449,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50438,7 +50511,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50446,23 +50524,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50504,7 +50581,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50512,7 +50589,7 @@ msgid "Split"
msgstr ""
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50536,7 +50613,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50548,6 +50625,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50620,13 +50702,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50647,8 +50729,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50683,7 +50765,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50812,7 +50894,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50842,6 +50924,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50850,8 +50933,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50951,6 +51034,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50960,10 +51053,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51027,7 +51116,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51035,8 +51124,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51114,8 +51203,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51218,8 +51307,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51231,7 +51320,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51243,7 +51332,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51268,9 +51357,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51281,7 +51370,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51306,10 +51395,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51337,7 +51426,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51377,7 +51466,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51492,7 +51581,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51625,11 +51714,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51684,14 +51773,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51749,7 +51838,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52011,7 +52100,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52100,7 +52189,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52121,7 +52210,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52275,7 +52364,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52299,7 +52388,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52459,7 +52548,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52557,6 +52646,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52566,7 +52656,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52581,6 +52671,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52665,7 +52756,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52700,8 +52791,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52753,7 +52842,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52782,7 +52871,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52871,7 +52960,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52888,17 +52977,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -52911,8 +52995,8 @@ msgstr ""
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53003,7 +53087,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53033,7 +53117,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53054,10 +53138,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53205,7 +53295,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53213,24 +53303,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53347,8 +53436,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53380,7 +53469,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53402,7 +53490,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53418,6 +53505,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53429,8 +53517,8 @@ msgstr ""
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Despesa de Imposto"
@@ -53504,7 +53592,7 @@ msgstr "Taxa de imposto %"
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53522,7 +53610,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53537,7 +53625,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53856,7 +53944,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53889,8 +53977,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -53941,13 +54029,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54129,7 +54217,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54228,7 +54316,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "O 'A partir do número do pacote' O campo não deve estar vazio nem valor inferior a 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54281,7 +54369,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54297,7 +54386,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54333,7 +54422,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54341,7 +54430,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54361,7 +54454,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54394,7 +54487,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54435,11 +54528,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54460,7 +54553,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54487,7 +54580,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54545,7 +54638,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54557,6 +54650,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54598,7 +54697,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54614,7 +54713,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54647,7 +54746,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54669,11 +54768,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54721,15 +54820,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "O armazém onde guarda os Artigos acabados antes de serem enviados."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54737,19 +54836,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54757,7 +54856,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54773,7 +54872,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54802,7 +54901,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Existem duas opções para manter a valorização de stock. FIFO (primeiro a entrar - primeiro a sair) e Média Móvel. Para compreender este tema em detalhe, visite Valorização de Artigos, FIFO e Média Móvel. "
@@ -54842,7 +54941,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54898,11 +54997,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54936,7 +55035,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Este documento está acima do limite por {0} {1} para o item {4}. Está a fazer outra {3} no/a mesmo/a {2}?"
@@ -55039,11 +55138,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55112,7 +55211,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55120,15 +55219,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55136,7 +55235,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55205,7 +55304,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55316,7 +55415,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55425,7 +55524,7 @@ msgstr ""
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55652,11 +55751,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55699,11 +55802,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55711,7 +55814,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55736,7 +55839,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55886,7 +55989,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55993,12 +56096,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56300,7 +56403,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56312,7 +56415,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56595,7 +56698,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56770,7 +56873,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56794,11 +56897,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56903,7 +57006,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -56950,11 +57054,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57135,8 +57244,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57400,6 +57509,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57415,7 +57525,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57476,7 +57586,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57489,7 +57599,7 @@ msgstr ""
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57561,12 +57671,12 @@ msgstr "Não é possível encontrar a taxa de câmbio para {0} a {1} para a data
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57648,7 +57758,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57667,7 +57777,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Preço Unitário"
@@ -57684,7 +57794,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57829,7 +57939,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57869,12 +57979,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58050,7 +58160,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58129,11 +58239,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58335,7 +58445,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58377,7 +58487,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58441,6 +58551,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58463,8 +58578,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58474,7 +58589,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58484,12 +58599,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58683,7 +58798,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58699,14 +58813,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr ""
@@ -58714,19 +58826,19 @@ msgstr ""
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58736,7 +58848,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58750,7 +58862,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58762,7 +58874,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58881,12 +58993,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58905,7 +59017,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -58923,7 +59035,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -58934,7 +59046,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59228,7 +59340,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59300,7 +59412,7 @@ msgstr "Nome do Documento"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59374,7 +59486,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59401,7 +59513,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59581,8 +59693,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59607,7 +59719,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr "O Armazém {0} não existe"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59744,11 +59856,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59838,7 +59950,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59907,7 +60019,7 @@ msgstr "Website:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60037,7 +60149,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60047,7 +60159,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60057,11 +60169,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60206,7 +60318,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60243,7 +60355,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60277,7 +60389,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60318,19 +60430,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60339,16 +60455,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60373,7 +60489,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60421,7 +60537,7 @@ msgstr "Horas de trabalho"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60512,14 +60628,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr ""
@@ -60624,7 +60740,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60680,11 +60796,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60692,7 +60808,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60720,7 +60836,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60761,11 +60877,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60789,7 +60905,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60850,7 +60966,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60862,19 +60978,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60886,7 +61002,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60910,7 +61026,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -60926,7 +61042,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60973,11 +61089,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60999,11 +61115,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61044,7 +61160,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61193,7 +61309,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61226,7 +61342,7 @@ msgstr ""
msgid "reconciled"
msgstr "reconciliado"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "devolvido"
@@ -61261,7 +61377,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "vendido"
@@ -61269,8 +61385,8 @@ msgstr "vendido"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61288,7 +61404,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61315,7 +61431,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61337,7 +61453,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61345,7 +61461,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61353,7 +61469,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61386,11 +61502,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61398,7 +61514,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61486,11 +61602,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61502,7 +61618,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61511,7 +61627,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61536,7 +61652,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61558,7 +61674,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61566,12 +61682,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61579,7 +61695,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61587,7 +61703,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61595,7 +61711,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61635,27 +61751,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61663,7 +61779,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61679,7 +61795,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61692,7 +61808,7 @@ msgstr "{0} a {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61708,16 +61824,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61729,7 +61845,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61745,7 +61861,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61783,8 +61899,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61894,7 +62010,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61943,8 +62059,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61964,11 +62080,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61976,11 +62092,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} é uma conta de grupo."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61992,7 +62108,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62004,7 +62120,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/pt_BR.po b/erpnext/locale/pt_BR.po
index 5455a64288c..0b62dc5bc21 100644
--- a/erpnext/locale/pt_BR.po
+++ b/erpnext/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr ""
msgid " Summary"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Item fornecido pelo cliente\" não pode ser item de compra também"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Item fornecido pelo cliente\" não pode ter taxa de avaliação"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr ""
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr ""
@@ -284,7 +284,7 @@ msgstr "'Baseado em' e 'Agrupar por' não podem ser o mesmo"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Dias desde a última Ordem' deve ser maior ou igual a zero"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr ""
@@ -302,7 +302,7 @@ msgstr "'Informe a 'Data Inicial'"
msgid "'From Date' must be after 'To Date'"
msgstr "A 'Data Final' deve ser posterior a 'Data Inicial'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Tem Número Serial' não pode ser confirmado para itens sem controle de estoque"
@@ -314,9 +314,9 @@ msgstr ""
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr ""
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Abrindo'"
@@ -346,8 +346,8 @@ msgstr "A conta '{0}' já está sendo usada por {1}. Use outra conta."
msgid "'{0}' has been already added."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr ""
@@ -517,8 +517,8 @@ msgstr ""
msgid "11-50"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr ""
@@ -607,8 +607,8 @@ msgstr ""
msgid "90 Above"
msgstr "90 acima"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -762,7 +762,7 @@ msgstr ""
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -779,7 +779,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -896,11 +896,11 @@ msgstr ""
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr ""
@@ -945,7 +945,7 @@ msgstr ""
msgid "A - C"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Existe um grupo de clientes com o mesmo nome por favor modifique o nome do cliente ou renomeie o grupo de clientes"
@@ -1109,11 +1109,11 @@ msgstr ""
msgid "Abbreviation"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Abreviatura já utilizado para outra empresa"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Abreviatura é obrigatória"
@@ -1121,7 +1121,7 @@ msgstr "Abreviatura é obrigatória"
msgid "Abbreviation: {0} must appear only once"
msgstr "Abreviatura: {0} deve aparecer apenas uma vez"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr ""
@@ -1175,7 +1175,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr ""
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Quantidade Aceita"
@@ -1211,7 +1211,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr ""
@@ -1329,8 +1329,8 @@ msgstr ""
msgid "Account Manager"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Falta de Conta"
@@ -1348,7 +1348,7 @@ msgstr "Falta de Conta"
msgid "Account Name"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Conta Não Encontrada"
@@ -1361,7 +1361,7 @@ msgstr "Conta Não Encontrada"
msgid "Account Number"
msgstr "Número da Conta"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Número de conta {0} já utilizado na conta {1}"
@@ -1400,7 +1400,7 @@ msgstr ""
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1416,11 +1416,11 @@ msgstr ""
msgid "Account Value"
msgstr "Valor da Conta"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "O saldo já está em crédito, você não tem a permissão para definir 'saldo deve ser' como 'débito'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "O saldo já está em débito, você não tem permissão para definir 'saldo deve ser' como 'crédito'"
@@ -1487,15 +1487,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Contas com a transações existentes não pode ser convertidas em um grupo."
@@ -1503,8 +1503,8 @@ msgstr "Contas com a transações existentes não pode ser convertidas em um gru
msgid "Account with existing transaction can not be deleted"
msgstr "Contas com transações existentes não pode ser excluídas"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Contas com transações existentes não pode ser convertidas em livro-razão"
@@ -1512,11 +1512,11 @@ msgstr "Contas com transações existentes não pode ser convertidas em livro-ra
msgid "Account {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1524,11 +1524,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "A Conta {0} não pertence à Empresa: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "A Conta {0} não existe"
@@ -1544,15 +1544,15 @@ msgstr "A conta {0} não coincide com a Empresa {1} no Modo de Conta: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "A conta {0} existe na empresa-mãe {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Conta {0} é adicionada na empresa filha {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1560,7 +1560,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr "A Conta {0} está congelada"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Conta {0} é inválido. Conta de moeda deve ser {1}"
@@ -1568,19 +1568,19 @@ msgstr "Conta {0} é inválido. Conta de moeda deve ser {1}"
msgid "Account {0} should be of type Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Conta {0}: a Conta Superior {1} não pode ser um livro-razão"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Conta {0}: a Conta Superior {1} não pertence à empresa: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Conta {0}: a Conta Superior {1} não existe"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr ""
@@ -1596,7 +1596,7 @@ msgstr "Conta: {0} só pode ser atualizado via transações de ações"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Conta: {0} não é permitida em Entrada de pagamento"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "A Conta: {0} com moeda: {1} não pode ser selecionada"
@@ -1881,8 +1881,8 @@ msgstr ""
msgid "Accounting Entry for Asset"
msgstr "Entrada Contábil de Ativo"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1906,8 +1906,8 @@ msgstr "Lançamento Contábil Para Serviço"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Lançamento Contábil de Estoque"
@@ -1916,7 +1916,7 @@ msgstr "Lançamento Contábil de Estoque"
msgid "Accounting Entry for {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Contabilidade de entrada para {0}: {1} só pode ser feito em moeda: {2}"
@@ -1971,7 +1971,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -1984,14 +1983,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Contas"
@@ -2021,8 +2019,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2122,15 +2120,15 @@ msgstr "Tabela de Contas não pode estar vazia."
msgid "Accounts to Merge"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Depreciação Acumulada"
@@ -2295,7 +2293,7 @@ msgstr ""
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2419,7 +2417,7 @@ msgstr "Data Final Real"
msgid "Actual End Date (via Timesheet)"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2541,7 +2539,7 @@ msgstr ""
msgid "Actual qty in stock"
msgstr "Quantidade real em estoque"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2550,7 +2548,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Adicionar / Editar Preços"
@@ -3049,7 +3047,7 @@ msgstr "Informação Adicional"
msgid "Additional Information updated successfully."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3072,7 +3070,7 @@ msgstr ""
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3080,11 +3078,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3230,11 +3223,6 @@ msgstr "O endereço precisa estar vinculado a uma empresa. Adicione uma linha pa
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Ajustar quantidade"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr ""
@@ -3247,8 +3235,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Despesas Administrativas"
@@ -3316,7 +3304,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Adiantamentos"
@@ -3436,7 +3424,7 @@ msgstr "Contra À Conta"
msgid "Against Blanket Order"
msgstr "Vincular a Pedido Aberto"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr ""
@@ -3578,11 +3566,11 @@ msgstr "Idade"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Idade (dias)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr ""
@@ -3732,21 +3720,21 @@ msgstr "Todos os Grupos de Clientes"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Todos os Departamentos"
@@ -3826,7 +3814,7 @@ msgstr "Todos os Grupos de Fornecedores"
msgid "All Territories"
msgstr "Todos os Territórios"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Todos os Armazéns"
@@ -3840,6 +3828,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3848,23 +3841,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr "Todos os itens já foram faturados / devolvidos"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Todos os itens já foram transferidos para esta Ordem de Serviço."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3878,11 +3871,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Todos esses itens já foram faturados / devolvidos"
@@ -3901,7 +3894,7 @@ msgstr "Alocar"
msgid "Allocate Advances Automatically (FIFO)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Atribuir Valor do Pagamento"
@@ -3911,7 +3904,7 @@ msgstr "Atribuir Valor do Pagamento"
msgid "Allocate Payment Based On Payment Terms"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -3941,7 +3934,7 @@ msgstr ""
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -3998,7 +3991,7 @@ msgstr ""
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4062,7 +4055,7 @@ msgstr ""
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4185,16 +4178,6 @@ msgstr "Permitir redefinir o contrato de nível de serviço das configurações
msgid "Allow Sales"
msgstr ""
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4320,6 +4303,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4396,10 +4389,8 @@ msgstr ""
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Permitido Transacionar Com"
@@ -4411,6 +4402,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4452,8 +4448,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4694,7 +4690,7 @@ msgstr ""
msgid "Amount"
msgstr "Valor Total"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr ""
@@ -4828,12 +4824,12 @@ msgid "Amount to Bill"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Quantidade {0} {1} em {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Montante {0} {1} deduzido em {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4878,11 +4874,11 @@ msgstr "Total"
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Ocorreu um erro durante o processo de atualização"
@@ -5422,7 +5418,7 @@ msgstr "Como o campo {0} está habilitado, o campo {1} é obrigatório."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Como o campo {0} está habilitado, o valor do campo {1} deve ser maior que 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5434,7 +5430,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Como há itens de subconjunto suficientes, a Ordem de Serviço não é necessária para o Armazém {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Como há matéria-prima suficiente, a Solicitação de Material não é necessária para o Armazém {0}."
@@ -5572,7 +5568,7 @@ msgstr "Ativo Categoria Conta"
msgid "Asset Category Name"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5749,8 +5745,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5850,7 +5846,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5882,7 +5878,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5890,20 +5886,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Ativo excluído através do Lançamento Contabilístico {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr ""
@@ -5923,7 +5919,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -5964,7 +5960,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "O Ativo {0} não foi submetido. Por favor, submeta o ativo antes de prosseguir."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "O Ativo {0} deve ser enviado"
@@ -6014,7 +6010,7 @@ msgstr "Recursos não criados para {item_code}. Você terá que criar o ativo ma
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6075,7 +6071,7 @@ msgstr "Pelo menos um dos módulos aplicáveis deve ser selecionado"
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6083,20 +6079,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6179,11 +6171,11 @@ msgstr ""
msgid "Attribute Value"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "A tabela de atributos é obrigatório"
@@ -6191,19 +6183,19 @@ msgstr "A tabela de atributos é obrigatório"
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Atributo {0} selecionada várias vezes na tabela de atributos"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributos"
@@ -6415,7 +6407,7 @@ msgstr ""
msgid "Auto re-order"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Auto repetir documento atualizado"
@@ -6527,7 +6519,7 @@ msgstr "Data de Uso Disponível"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr ""
@@ -6616,10 +6608,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "Disponível para data de uso é obrigatório"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "A quantidade disponível é {0}, você precisa de {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Disponível {0}"
@@ -6628,8 +6616,8 @@ msgstr "Disponível {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "A data disponível para uso deve ser posterior à data de compra"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Idade Média"
@@ -6653,7 +6641,9 @@ msgstr "Valor Médio do Pedido"
msgid "Average Order Values"
msgstr "Valores Médios dos Pedidos"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Taxa Média"
@@ -6677,7 +6667,7 @@ msgid "Avg Rate"
msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr ""
@@ -6735,7 +6725,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6758,7 +6748,7 @@ msgstr "LDM"
msgid "BOM 1"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} e BOM 2 {1} não devem ser iguais"
@@ -6830,11 +6820,6 @@ msgstr ""
msgid "BOM ID"
msgstr ""
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr ""
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -6988,7 +6973,7 @@ msgstr "LDM do Item do Site"
msgid "BOM Website Operation"
msgstr "LDM da Operação do Site"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7056,7 +7041,7 @@ msgstr "Entrada de Estoque Retroativa"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr ""
@@ -7120,7 +7105,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr ""
@@ -7185,7 +7170,7 @@ msgstr "Tipo de Saldo"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Valor Patrimonial"
@@ -7341,8 +7326,8 @@ msgid "Bank Balance"
msgstr ""
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr ""
@@ -7457,8 +7442,8 @@ msgstr ""
msgid "Bank Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Conta Bancária Garantida"
@@ -7631,11 +7616,11 @@ msgstr "Bancos"
msgid "Barcode Type"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "O código de barras {0} não é um código {1} válido"
@@ -7792,7 +7777,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7867,7 +7852,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -7956,13 +7941,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr ""
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -7979,7 +7964,7 @@ msgstr ""
msgid "Batch and Serial No"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr ""
@@ -8002,12 +7987,12 @@ msgstr ""
msgid "Batch {0} is not available in warehouse {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr ""
@@ -8062,7 +8047,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8071,7 +8056,7 @@ msgstr "Data de Faturamento"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8085,11 +8070,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Lista de Materiais"
@@ -8190,7 +8177,7 @@ msgstr ""
msgid "Billing Address Name"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8442,6 +8429,16 @@ msgstr "Bloquear Fatura"
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8538,7 +8535,7 @@ msgstr "Reservado"
msgid "Booked Fixed Asset"
msgstr ""
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8797,8 +8794,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Edifícios"
@@ -8959,14 +8956,14 @@ msgstr ""
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9016,8 +9013,8 @@ msgstr ""
msgid "CRM Settings"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Conta do CWIP"
@@ -9272,7 +9269,7 @@ msgstr "Campanha {0} não encontrada"
msgid "Can be approved by {0}"
msgstr "Pode ser aprovado por {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9305,13 +9302,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr "Só pode fazer o pagamento contra a faturar {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9353,7 +9350,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9361,9 +9358,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9391,7 +9388,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9411,7 +9408,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9431,15 +9428,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Não é possível cancelar a transação para a ordem de serviço concluída."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Não é possível alterar os Atributos após a transação do estoque. Faça um novo Item e transfira estoque para o novo Item"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9447,11 +9444,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Não é possível alterar a moeda padrão da empresa, porque existem operações existentes. Transações devem ser canceladas para alterar a moeda padrão."
@@ -9467,11 +9464,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9479,7 +9476,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9505,7 +9502,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9513,12 +9510,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Não é possível excluir Serial no {0}, como ele é usado em transações de ações"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Não é possível excluir um item que já foi pedido"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9530,7 +9527,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9538,20 +9535,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9567,7 +9564,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9575,15 +9572,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9591,12 +9588,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9609,14 +9606,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9630,7 +9627,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Não é possível definir a autorização com base em desconto para {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9638,11 +9635,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr "Não é possível definir várias linhas de conta para a mesma empresa"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Não é possível definir quantidade menor que a quantidade fornecida."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Não é possível definir quantidade menor que a quantidade recebida."
@@ -9654,7 +9651,7 @@ msgstr "Não é possível definir o campo {0} para copiar em variantes"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9687,7 +9684,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Erro de planejamento de capacidade, a hora de início planejada não pode ser igual à hora de término"
@@ -9706,13 +9703,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Capital Social"
@@ -9929,7 +9926,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr "Valor do Ativo Por Categoria"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Cuidado"
@@ -10034,7 +10031,7 @@ msgstr "Alterar Data de Liberação"
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10044,7 +10041,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10052,7 +10049,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "A alteração do grupo de clientes para o cliente selecionado não é permitida."
@@ -10067,7 +10064,7 @@ msgid "Channel Partner"
msgstr "Canal de Parceria"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10121,7 +10118,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10264,7 +10261,7 @@ msgstr ""
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Data do Cheque/referência"
@@ -10322,7 +10319,7 @@ msgstr ""
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr ""
@@ -10374,6 +10371,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10516,11 +10518,11 @@ msgstr "Documento Fechado"
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10772,11 +10774,17 @@ msgstr ""
msgid "Commission Rate (%)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Comissão Sobre Vendas"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10807,7 +10815,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Imprimir Item no Formato Compacto"
@@ -11206,8 +11214,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11260,7 +11268,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11349,18 +11357,20 @@ msgstr ""
msgid "Company Address Name"
msgstr "Nome do Endereço da Empresa"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11456,7 +11466,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "As moedas da empresa de ambas as empresas devem corresponder às transações da empresa."
@@ -11491,7 +11501,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Nome da empresa não o mesmo"
@@ -11530,12 +11540,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "A Empresa {0} não existe"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11577,7 +11587,7 @@ msgstr ""
msgid "Competitors"
msgstr "Concorrentes"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11624,12 +11634,12 @@ msgstr "Projetos Concluídos"
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Quantidade Concluída"
@@ -11818,7 +11828,7 @@ msgstr "Considere as Dimensões Contábeis"
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12012,7 +12022,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12041,7 +12051,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12169,7 +12179,7 @@ msgstr ""
msgid "Contact Person"
msgstr "Pessoa de Contato"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12295,6 +12305,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12355,7 +12370,7 @@ msgstr "Fator de Conversão"
msgid "Conversion Rate"
msgstr "Taxa de Conversão"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Fator de conversão de unidade de medida padrão deve ser 1 na linha {0}"
@@ -12363,15 +12378,15 @@ msgstr "Fator de conversão de unidade de medida padrão deve ser 1 na linha {0}
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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12448,13 +12463,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12485,13 +12500,13 @@ msgstr ""
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "Alocação de Custos"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "Alocação de Custos %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12621,7 +12636,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12754,7 +12769,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr "Centro de custo: {0} não existe"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Centros de Custo"
@@ -12797,17 +12812,13 @@ msgstr "Custo de Produtos Entregues"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Custo Dos Produtos Vendidos"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Custo Dos Produtos Enviados"
@@ -12887,7 +12898,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr ""
@@ -13076,7 +13087,7 @@ msgstr "Criar Faturas"
msgid "Create Item"
msgstr "Criar item"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Criar Cartão de Trabalho"
@@ -13108,7 +13119,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13175,7 +13186,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr "Criar solicitação de pagamento"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Criar Lista de Seleção"
@@ -13320,7 +13331,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Criar Modelo de Imposto"
@@ -13358,12 +13369,12 @@ msgstr ""
msgid "Create Users"
msgstr "Criar Usuários"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Criar Variante"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Criar Variantes"
@@ -13394,12 +13405,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13433,7 +13444,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13466,7 +13477,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Criando Dimensões..."
@@ -13659,7 +13670,7 @@ msgstr ""
msgid "Credit Limit"
msgstr "Limite de Crédito"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13669,12 +13680,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13706,7 +13711,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13734,7 +13739,7 @@ msgstr "Nota de Crédito Emitida"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "A nota de crédito {0} foi criada automaticamente"
@@ -13742,7 +13747,7 @@ msgstr "A nota de crédito {0} foi criada automaticamente"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr ""
@@ -13751,20 +13756,20 @@ msgstr ""
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "O limite de crédito foi cruzado para o cliente {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "O limite de crédito já está definido para a empresa {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Limite de crédito atingido para o cliente {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13772,8 +13777,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Credores"
@@ -13943,7 +13948,7 @@ msgstr "Câmbio deve ser aplicável para compra ou venda."
msgid "Currency and Price List"
msgstr "Moeda e Lista de Preço"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -13953,7 +13958,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "A moeda para {0} deve ser {1}"
@@ -14036,8 +14041,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Passivo Circulante"
@@ -14104,6 +14109,11 @@ msgstr "Estoque Atual"
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr ""
@@ -14199,7 +14209,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14306,7 +14315,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14395,8 +14403,8 @@ msgstr "Endereço do Cliente"
msgid "Customer Addresses And Contacts"
msgstr "Endereços e Contatos do Cliente"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14410,7 +14418,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14493,6 +14501,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14515,7 +14524,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14532,6 +14541,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14575,7 +14585,7 @@ msgstr ""
msgid "Customer Items"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "LPO do Cliente"
@@ -14627,7 +14637,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14733,7 +14743,7 @@ msgstr ""
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Atendimento Ao Cliente"
@@ -14790,9 +14800,9 @@ msgstr ""
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Cliente {0} não pertence ao projeto {1}"
@@ -14904,7 +14914,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Resumo Diário do Projeto Para {0}"
@@ -14995,7 +15005,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "A data de início deve ser maior que a data de incorporação"
@@ -15221,7 +15231,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15249,13 +15259,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Para Débito é necessária"
@@ -15383,8 +15393,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15410,14 +15419,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15432,19 +15441,19 @@ msgstr ""
msgid "Default BOM"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Não foi encontrado a LDM Padrão para {0}"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15497,9 +15506,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr ""
@@ -15615,6 +15622,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15650,23 +15667,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr ""
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15789,15 +15802,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "A unidade de medida padrão para a variante '{0}' deve ser o mesmo que no modelo '{1}'"
@@ -15849,7 +15862,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -15940,6 +15953,12 @@ msgstr ""
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16022,12 +16041,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Apagar todas as transações para esta empresa"
@@ -16048,8 +16067,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16160,11 +16179,11 @@ msgstr ""
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16245,7 +16264,7 @@ msgstr ""
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16305,11 +16324,11 @@ msgstr ""
msgid "Delivery Note Trends"
msgstr "Tendência de Remessas"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "A Guia de Remessa {0} não foi enviada"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Notas de Entrega"
@@ -16395,10 +16414,6 @@ msgstr ""
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16518,8 +16533,8 @@ msgstr "Valor Depreciado"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16612,7 +16627,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16770,15 +16785,15 @@ msgstr ""
msgid "Difference Account"
msgstr "Conta Diferença"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16890,15 +16905,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Despesas Diretas"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Receita Direta"
@@ -16979,6 +16994,11 @@ msgstr "Desativar Arredondamento"
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17015,11 +17035,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Regras de precificação desativadas porque esta {} é uma transferência interna"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17035,7 +17055,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17043,15 +17063,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "A Qtd de Desmontagem não pode ser menor ou igual a 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17338,7 +17358,7 @@ msgstr ""
msgid "Dislikes"
msgstr "Não Gosta"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Expedição"
@@ -17419,7 +17439,7 @@ msgstr "Nome de Exibição"
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17533,8 +17553,8 @@ msgstr ""
msgid "Distributor"
msgstr "Distribuidor"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Dividendos Pagos"
@@ -17596,7 +17616,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Você realmente deseja restaurar este ativo descartado?"
@@ -17620,7 +17640,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr "Você deseja enviar a solicitação de material"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17687,11 +17707,11 @@ msgstr "Documento nº"
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17854,12 +17874,6 @@ msgstr ""
msgid "Driving License Category"
msgstr "Categoria de Licença de Condução"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17880,12 +17894,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18044,8 +18052,8 @@ msgstr ""
msgid "Duration in Days"
msgstr "Duração Em Dias"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Impostos e Contribuições"
@@ -18128,7 +18136,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Mais Antigas"
@@ -18242,6 +18250,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18261,8 +18273,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18466,8 +18478,8 @@ msgstr ""
msgid "Employee Advances"
msgstr "Avanços do Funcionário"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18550,7 +18562,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "O Funcionário {0} não pertence à empresa {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18566,7 +18578,7 @@ msgstr ""
msgid "Empty"
msgstr "Vazio"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18597,7 +18609,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Ativar Reordenação Automática"
@@ -18763,12 +18775,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18897,8 +18903,8 @@ msgstr "A data de término não pode ser anterior à data de início."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -18997,8 +19003,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Digite o Valor"
@@ -19023,7 +19029,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr "Insira o valor a ser resgatado."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19035,7 +19041,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr "Insira o número de telefone do cliente"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19078,7 +19084,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19086,7 +19092,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19098,8 +19104,8 @@ msgstr "Insira o valor de {0}."
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Despesas Com Entretenimento"
@@ -19123,8 +19129,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19185,7 +19191,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19195,7 +19201,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Erro: {0} é campo obrigatório"
@@ -19241,7 +19247,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19260,7 +19266,7 @@ msgstr "Exemplo: ABCD.#####. Se a série for definida e o número do lote não f
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19270,7 +19276,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19278,7 +19284,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19309,17 +19315,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Ganho/perda Com Câmbio"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19458,7 +19464,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19545,7 +19551,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr "Data Prevista de Entrega"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Data de entrega esperada deve ser após a data da ordem de venda"
@@ -19629,7 +19635,7 @@ msgstr ""
msgid "Expense"
msgstr "Despesa"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Despesa conta / Diferença ({0}) deve ser um 'resultados' conta"
@@ -19707,23 +19713,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Despesas"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Despesas Incluídas na Avaliação de Imobilizado"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Despesas Incluídas na Avaliação"
@@ -19802,7 +19808,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -19939,7 +19945,7 @@ msgstr "Falha na configuração da empresa"
msgid "Failed to setup defaults"
msgstr "Falha ao configurar os padrões"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20057,6 +20063,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20094,21 +20105,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Arquivo não encontrado"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Arquivo não encontrado no servidor"
@@ -20316,9 +20335,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Finalizar"
@@ -20375,15 +20394,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20429,7 +20448,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Produtos Acabados"
@@ -20470,7 +20489,7 @@ msgstr "Armazém de Produtos Acabados"
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20611,6 +20630,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Ativo Imobilizado"
@@ -20629,7 +20649,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20648,8 +20668,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Ativos Imobilizados"
@@ -20722,7 +20742,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Os campos a seguir são obrigatórios para criar um endereço:"
@@ -20779,7 +20799,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20789,7 +20809,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20810,17 +20830,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20848,11 +20864,11 @@ msgstr "Para Armazém"
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Para um item {0}, a quantidade deve ser um número negativo"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Para um item {0}, a quantidade deve ser um número positivo"
@@ -20890,7 +20906,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20904,7 +20920,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -20921,7 +20937,7 @@ msgstr "Para o projeto {0}, atualize seu status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -20930,12 +20946,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Para linha {0} em {1}. Para incluir {2} na taxa de Item, linhas {3} também devem ser incluídos"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Para a Linha {0}: Digite a Quantidade Planejada"
@@ -20954,7 +20970,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21001,11 +21017,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21051,7 +21062,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21096,8 +21107,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Frete e Encargos de Envio"
@@ -21531,8 +21542,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21549,13 +21560,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Valor do Pagamento Futuro"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Referência de Pagamento Futuro"
@@ -21563,7 +21574,7 @@ msgstr "Referência de Pagamento Futuro"
msgid "Future Payments"
msgstr "Pagamentos Futuros"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21648,9 +21659,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Ganho/perda no Descarte de Ativo"
@@ -21823,7 +21834,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21881,7 +21892,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21920,7 +21931,7 @@ msgstr "Obter itens da LDM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Obtenha itens de solicitações de materiais contra este fornecedor"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Obter Itens do Pacote de Produtos"
@@ -22094,7 +22105,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Mercadorias Em Trânsito"
@@ -22103,7 +22114,7 @@ msgstr "Mercadorias Em Trânsito"
msgid "Goods Transferred"
msgstr "Mercadorias Transferidas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "As mercadorias já são recebidas contra a entrada de saída {0}"
@@ -22286,7 +22297,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Maior Que Quantidade"
@@ -22729,7 +22740,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22757,7 +22768,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -22956,7 +22967,7 @@ msgstr ""
msgid "Hrs"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Recursos Humanos"
@@ -23124,6 +23135,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23341,7 +23358,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23367,13 +23384,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23382,7 +23404,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23392,7 +23414,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23469,7 +23491,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23483,7 +23505,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23567,7 +23589,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr "Ignorar Quantidade Pedida Existente"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Ignorar Quantidade Projetada Existente"
@@ -23654,12 +23676,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23817,7 +23839,7 @@ msgstr "Em Produção"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -23941,7 +23963,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24172,8 +24194,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24244,7 +24266,7 @@ msgstr "Pagamento Recebido"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24276,7 +24298,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24284,7 +24306,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24418,15 +24440,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Despesas Indiretas"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Receita Indireta"
@@ -24494,14 +24516,14 @@ msgstr "Iniciada"
msgid "Inspected By"
msgstr "Inspecionado Por"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspeção Obrigatória"
@@ -24518,8 +24540,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24549,7 +24571,7 @@ msgstr "Nota de Instalação"
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "A nota de instalação {0} já foi enviada"
@@ -24588,11 +24610,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Permissões Insuficientes"
@@ -24600,13 +24622,12 @@ msgstr "Permissões Insuficientes"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Estoque Insuficiente"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24726,13 +24747,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Receita de Juros"
@@ -24740,8 +24761,8 @@ msgstr "Receita de Juros"
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24761,7 +24782,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24769,7 +24790,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24777,7 +24798,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24808,7 +24829,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr "Transferência Interna"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24821,7 +24842,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24837,12 +24863,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Conta Inválida"
@@ -24863,7 +24889,7 @@ msgstr "Valor inválido"
msgid "Invalid Attribute"
msgstr "Atributo Inválido"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24876,7 +24902,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24892,21 +24918,21 @@ msgstr "Procedimento de Criança Inválido"
msgid "Invalid Company Field"
msgstr "Campo de Empresa Inválido"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Empresa Inválida Para Transação Entre Empresas."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -24944,7 +24970,7 @@ msgstr ""
msgid "Invalid Item"
msgstr "Artigo Inválido"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -24958,7 +24984,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Entrada de Abertura Inválida"
@@ -24966,11 +24992,11 @@ msgstr "Entrada de Abertura Inválida"
msgid "Invalid POS Invoices"
msgstr "Faturas de PDV inválidas"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Conta Pai Inválida"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Número de Peça Inválido"
@@ -25000,12 +25026,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Quantidade Inválida"
@@ -25030,12 +25056,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr "Preço de Venda Inválido"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25060,7 +25086,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr "Expressão de condição inválida"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "URL de arquivo inválida"
@@ -25072,7 +25098,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Série de nomenclatura inválida (. Ausente) para {0}"
@@ -25098,8 +25124,8 @@ msgstr "Consulta de busca inválida"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25107,7 +25133,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr "Inválido {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} inválido para transação entre empresas."
@@ -25117,7 +25143,7 @@ msgid "Invalid {0}: {1}"
msgstr "Inválido {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25166,8 +25192,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investimentos"
@@ -25217,7 +25243,7 @@ msgstr "Desconto de Fatura"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Total Geral da Fatura"
@@ -25322,7 +25348,7 @@ msgstr "A fatura não pode ser feita para zero hora de cobrança"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25343,7 +25369,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25439,8 +25465,7 @@ msgstr "Item Alternativo"
msgid "Is Billable"
msgstr ""
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr ""
@@ -25882,8 +25907,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -25989,7 +26013,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26020,11 +26044,11 @@ msgstr "Incidentes"
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26148,7 +26172,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26396,7 +26420,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26458,7 +26482,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26657,13 +26681,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26880,7 +26904,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26920,10 +26944,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -26964,10 +26988,6 @@ msgstr ""
msgid "Item Price"
msgstr "Preço do Item"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -26983,19 +27003,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr "Preço do Item Preço"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "O Preço do Item foi atualizado para {0} na Lista de Preços {1}"
@@ -27182,11 +27203,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr "Configurações da Variante de Item"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27287,11 +27308,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27317,11 +27338,7 @@ msgstr "Nome do item"
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27340,11 +27357,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27361,7 +27378,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27373,7 +27390,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27385,15 +27402,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr "O item {0} foi desativado"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27405,15 +27422,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27421,7 +27438,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27429,11 +27446,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27449,7 +27466,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27457,7 +27474,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27465,7 +27482,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27511,7 +27528,7 @@ msgstr "Registro de Vendas Por Item"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27535,7 +27552,7 @@ msgstr ""
msgid "Items Filter"
msgstr "Filtro de Itens"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Itens Necessários"
@@ -27559,11 +27576,11 @@ msgstr "Itens Para Requisitar"
msgid "Items and Pricing"
msgstr "Itens e Preços"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27575,7 +27592,7 @@ msgstr "Itens Para Solicitação de Matéria-prima"
msgid "Items not found."
msgstr "Itens não encontrados."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27585,7 +27602,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Os itens a fabricar são necessários para extrair as matérias-primas associadas a eles."
@@ -27650,9 +27667,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27714,7 +27731,7 @@ msgstr "Registro de Tempo do Cartão de Trabalho"
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27790,7 +27807,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Cartão de trabalho {0} criado"
@@ -28010,7 +28027,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28138,7 +28155,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28220,7 +28237,7 @@ msgstr "A última data de verificação de carbono não pode ser uma data futura
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Mais Recentes"
@@ -28470,12 +28487,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Despesas Legais"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28486,7 +28503,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Menos Que Quantidade"
@@ -28545,7 +28562,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Limite Ultrapassado"
@@ -28606,7 +28623,7 @@ msgstr "Link Para Solicitações de Materiais"
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28627,12 +28644,12 @@ msgstr ""
msgid "Linked Location"
msgstr "Local Vinculado"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28640,7 +28657,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28698,8 +28715,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Data de Início do Empréstimo e Período do Empréstimo são obrigatórios para salvar o Desconto da Fatura"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Empréstimos (passivo)"
@@ -28744,8 +28761,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -28946,6 +28963,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -28989,10 +29011,10 @@ msgstr ""
msgid "Machine operator errors"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Principal"
@@ -29235,9 +29257,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Criar"
@@ -29257,7 +29279,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29295,12 +29317,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Fazer Entrada de Estoque"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29316,11 +29338,11 @@ msgstr "Efetuar uma chamada"
msgid "Make project from a template."
msgstr "Criar projeto a partir de um modelo."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29328,8 +29350,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29348,7 +29370,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Gerir seus pedidos"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29364,7 +29386,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29463,8 +29485,8 @@ msgstr "A entrada manual não pode ser criada! Desative a entrada automática pa
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29543,7 +29565,7 @@ msgstr "Fabricante"
msgid "Manufacturer Part Number"
msgstr "Número de Peça do Fabricante"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Número da peça do fabricante {0} é inválido"
@@ -29568,7 +29590,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29613,10 +29635,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr "Gerente de Fabricação"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr ""
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29783,6 +29801,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29797,12 +29821,12 @@ msgstr ""
msgid "Market Segment"
msgstr "Segmento de Renda"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Despesas Com Marketing"
@@ -29881,7 +29905,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Consumo de Material"
@@ -29889,7 +29913,7 @@ msgstr "Consumo de Material"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -29970,7 +29994,7 @@ msgstr "Entrada de Material"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30067,11 +30091,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Solicitação de material não criada, como quantidade para matérias-primas já disponíveis."
@@ -30139,7 +30163,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30205,12 +30229,12 @@ msgstr "Material a Fornecedor"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30281,9 +30305,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30315,11 +30339,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30380,15 +30404,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Mencione a taxa de avaliação no cadastro de itens."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30438,7 +30457,7 @@ msgstr "Mesclar com conta existente"
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30468,7 +30487,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30669,7 +30688,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30758,8 +30777,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr "Diversos"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Despesas Diversas"
@@ -30767,15 +30786,15 @@ msgstr "Despesas Diversas"
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Conta Em Falta"
@@ -30805,7 +30824,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30813,7 +30832,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30850,7 +30869,7 @@ msgid "Missing required filter: {0}"
msgstr "Filtro obrigatório ausente: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31099,11 +31118,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31125,11 +31144,11 @@ msgstr "Variantes Múltiplas"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31138,7 +31157,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31225,7 +31244,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31269,7 +31288,7 @@ msgstr "Precisa de Análise"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negativo Quantidade não é permitido"
@@ -31278,7 +31297,7 @@ msgstr "Negativo Quantidade não é permitido"
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Taxa de Avaliação negativa não é permitida"
@@ -31584,7 +31603,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31761,7 +31780,7 @@ msgstr ""
msgid "New Workplace"
msgstr "Novo local de trabalho"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Novo limite de crédito é inferior ao saldo devedor atual do cliente. o limite de crédito deve ser de pelo menos {0}"
@@ -31815,7 +31834,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Nenhuma conta corresponde a esses filtros: {}"
@@ -31828,7 +31847,7 @@ msgstr "Nenhuma Ação"
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Nenhum cliente encontrado para transações entre empresas que representam a empresa {0}"
@@ -31841,7 +31860,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr "Nenhuma nota de entrega selecionada para o cliente {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31857,7 +31876,7 @@ msgstr "Nenhum artigo com código de barras {0}"
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31892,7 +31911,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Nenhuma Permissão"
@@ -31921,19 +31940,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Nenhum fornecedor encontrado para transações entre empresas que representam a empresa {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -31963,7 +31982,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Nenhum BOM ativo encontrado para o item {0}. a entrega por número de série não pode ser garantida"
@@ -32157,7 +32176,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32181,7 +32200,7 @@ msgstr "Nenhuma fatura pendente requer reavaliação da taxa de câmbio"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Nenhuma solicitação de material pendente encontrada para vincular os itens fornecidos."
@@ -32252,7 +32271,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32285,7 +32304,7 @@ msgstr "Sem valores"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Nenhum {0} encontrado para transações entre empresas."
@@ -32330,8 +32349,8 @@ msgstr "Sem Fins Lucrativos"
msgid "Non stock items"
msgstr "Itens não estocáveis"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32432,7 +32451,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Não é permitido criar dimensão contábil para {0}"
@@ -32486,7 +32505,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Nota: Item {0} adicionado várias vezes"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32494,7 +32513,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32677,6 +32696,11 @@ msgstr "Número da nova conta, será incluído no nome da conta como um prefixo"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Número do novo centro de custo, ele será incluído no nome do centro de custo como um prefixo"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32736,18 +32760,18 @@ msgstr ""
msgid "Offer Date"
msgstr "Data da Oferta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Despesas Com Manutenção de Escritório"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Aluguel do Escritório"
@@ -32875,7 +32899,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -32915,7 +32939,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -32934,7 +32958,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -32971,7 +32995,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33188,8 +33212,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Saldo de Abertura do Patrimônio Líquido"
@@ -33212,7 +33236,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33245,7 +33269,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33281,16 +33305,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Abertura de Estoque"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33308,12 +33332,15 @@ msgstr "Valor de Abertura"
msgid "Opening and Closing"
msgstr "Abertura e Fechamento"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33345,7 +33372,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Custo Operacional Conforme Ordem de Serviço / Lista Técnica"
@@ -33388,15 +33415,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33421,7 +33448,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Tempo de Operação deve ser maior que 0 para a operação {0}"
@@ -33436,11 +33463,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operação {0} adicionada várias vezes na ordem de serviço {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "A operação {0} não pertence à ordem de serviço {1}"
@@ -33456,9 +33483,9 @@ msgstr "Operação {0} mais do que as horas de trabalho disponíveis na estaçã
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33631,7 +33658,7 @@ msgstr "Oportunidade {0} criada"
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33781,7 +33808,7 @@ msgstr "Quantidade Encomendada"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Pedidos"
@@ -33897,7 +33924,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -33935,7 +33962,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -33954,6 +33981,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -33989,7 +34017,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -33999,7 +34027,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34059,17 +34087,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34089,11 +34122,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34393,7 +34426,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "Entrada de abertura de PDV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34414,7 +34447,7 @@ msgstr "Detalhe de Entrada de Abertura de PDV"
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34450,7 +34483,7 @@ msgstr "Método de Pagamento PDV"
msgid "POS Profile"
msgstr "Perfil do PDV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34468,11 +34501,11 @@ msgstr "Perfil de Usuário do PDV"
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Perfil do PDV necessário para fazer entrada no PDV"
@@ -34578,7 +34611,7 @@ msgstr ""
msgid "Packed Items"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34615,7 +34648,7 @@ msgstr "Lista de Embalagem"
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34656,7 +34689,7 @@ msgstr "Pago"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34722,7 +34755,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34816,7 +34849,7 @@ msgstr ""
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "A controladora deve ser uma empresa do grupo"
@@ -34943,7 +34976,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35156,7 +35189,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35183,7 +35216,7 @@ msgstr "Parceiro"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Conta do Parceiro"
@@ -35216,7 +35249,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35368,7 +35401,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35477,7 +35510,7 @@ msgstr ""
msgid "Pause"
msgstr "Pausa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35528,7 +35561,7 @@ msgid "Payable"
msgstr "A Pagar"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35562,7 +35595,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35709,7 +35742,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr "Entrada de pagamento já foi criada"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -35934,7 +35967,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -35999,7 +36032,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36028,7 +36061,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36084,6 +36117,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36098,6 +36132,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36155,7 +36190,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Os métodos de pagamento são obrigatórios. Adicione pelo menos um método de pagamento."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36230,8 +36265,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Folha de Pagamento a Pagar"
@@ -36278,10 +36313,14 @@ msgstr "Atividades Pendentes"
msgid "Pending Amount"
msgstr "Total Pendente"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36290,9 +36329,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Quantidade Pendente"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36322,6 +36370,14 @@ msgstr "Atividades pendentes para hoje"
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36431,7 +36487,7 @@ msgstr "Análise de Percepção"
msgid "Period Based On"
msgstr "Período Baseado Em"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -36995,8 +37051,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Instalações e Maquinários"
@@ -37032,7 +37088,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37080,7 +37136,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37088,7 +37144,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37096,7 +37152,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37130,7 +37186,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37155,11 +37211,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Por favor, clique em \"Gerar Agenda\" para obter cronograma"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37167,11 +37227,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Converta a conta-mãe da empresa-filha correspondente em uma conta de grupo."
@@ -37183,11 +37243,11 @@ msgstr "Crie um Cliente a partir do Lead {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37195,11 +37255,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37207,7 +37267,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37231,7 +37291,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37243,20 +37303,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Insira a Conta de diferença ou defina a Conta de ajuste de estoque padrão para a empresa {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37264,15 +37324,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Por favor, insira o Nº do Lote"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Digite Data de Entrega"
@@ -37280,7 +37340,7 @@ msgstr "Digite Data de Entrega"
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37289,7 +37349,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37305,7 +37365,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37325,7 +37385,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Por favor, insira o Nº de Série"
@@ -37342,7 +37402,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Entre o armazém e a data"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37362,7 +37422,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37390,7 +37450,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Insira o nome da empresa para confirmar"
@@ -37458,11 +37518,11 @@ msgstr "Certifique-se de que os funcionários acima se reportem a outro funcion
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37521,7 +37581,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37537,7 +37597,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37567,7 +37627,7 @@ msgstr "Selecione a Data de conclusão do registro de manutenção de ativos con
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37576,8 +37636,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37609,11 +37669,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37629,7 +37689,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37646,7 +37706,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Selecione uma empresa primeiro."
@@ -37670,7 +37730,7 @@ msgstr "Selecione um fornecedor"
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37743,11 +37803,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Por favor, selecione pelo menos um filtro: Código do Item, Lote ou Nº de Série."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37767,7 +37831,7 @@ msgstr "Por favor, selecione pelo menos um cronograma."
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37825,7 +37889,7 @@ msgstr "Selecione a Empresa"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Por favor, selecione o Depósito primeiro"
@@ -37854,7 +37918,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37863,11 +37927,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Por Favor, Defina a \"conta de Ganhos/perdas na Eliminação de Ativos\" na Empresa {0}"
@@ -37879,7 +37943,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -37909,7 +37973,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -37927,7 +37991,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -37973,7 +38037,7 @@ msgstr "Defina Uma Empresa"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38010,23 +38074,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Defina Caixa padrão ou conta bancária no Modo de pagamento {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Defina dinheiro ou conta bancária padrão no modo de pagamento {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Defina dinheiro ou conta bancária padrão no modo de pagamentos {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38055,7 +38119,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38063,7 +38127,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38075,15 +38139,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr "Defina o Centro de custo padrão na {0} empresa."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38122,7 +38186,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38144,7 +38208,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38157,7 +38221,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Especifique pelo menos um atributo na tabela de atributos"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38262,8 +38326,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Despesas Postais"
@@ -38328,7 +38392,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38346,7 +38410,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38468,10 +38532,6 @@ msgstr ""
msgid "Posting Time"
msgstr "Horário da Postagem"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Data e horário da postagem são obrigatórios"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38545,18 +38605,23 @@ msgstr ""
msgid "Pre Sales"
msgstr "Pré Venda"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Preferência"
@@ -38729,6 +38794,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38752,6 +38818,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38803,7 +38870,7 @@ msgstr "Preço da Lista País"
msgid "Price List Currency"
msgstr ""
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Lista de Preço Moeda não selecionado"
@@ -39158,7 +39225,7 @@ msgstr "Imprimir Recibo"
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Imprimir UOM após a quantidade"
@@ -39167,8 +39234,8 @@ msgstr "Imprimir UOM após a quantidade"
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Impressão e Artigos de Papelaria"
@@ -39176,7 +39243,7 @@ msgstr "Impressão e Artigos de Papelaria"
msgid "Print settings updated in respective print format"
msgstr "As definições de impressão estão atualizadas no respectivo formato de impressão"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Imprima impostos com montante zero"
@@ -39279,10 +39346,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39336,7 +39399,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr "Quantidade de perda de processo"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39417,6 +39480,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39512,8 +39579,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39578,7 +39645,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Produção"
@@ -39792,7 +39859,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Convite Para Colaboração Em Projeto"
@@ -39836,7 +39903,7 @@ msgstr ""
msgid "Project Summary"
msgstr "Resumo do Projeto"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Resumo do Projeto Para {0}"
@@ -39967,7 +40034,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40113,7 +40180,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40128,7 +40195,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40200,8 +40267,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40524,7 +40592,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr "Pedido de Compra {0} não é enviado"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Ordens de Compra"
@@ -40539,7 +40607,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "As ordens de compra não são permitidas para {0} devido a um ponto de avaliação de {1}."
@@ -40554,7 +40622,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40688,7 +40756,7 @@ msgstr "Devolução de Compra"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Modelo de Impostos Sobre a Compra"
@@ -40786,6 +40854,7 @@ msgstr "Requisições"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40795,10 +40864,6 @@ msgstr "Requisições"
msgid "Purpose"
msgstr "Finalidade"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Objetivo deve ser um dos {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40854,6 +40919,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40902,6 +40968,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41010,11 +41077,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41065,8 +41132,8 @@ msgstr "Quantidade por Unidade de Medida no Estoque"
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41121,8 +41188,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41358,17 +41425,17 @@ msgstr "Modelo de Inspeção de Qualidade"
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41382,7 +41449,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr "Inspeções de Qualidade"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41514,7 +41581,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41649,7 +41716,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41659,21 +41726,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "A quantidade deve ser maior que 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Quantidade a Fabricar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "A quantidade a fabricar não pode ser zero para a operação {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Quantidade de Fabricação deve ser maior que 0."
@@ -41696,7 +41763,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41815,11 +41882,11 @@ msgstr "Vínculo do Orçamento"
msgid "Quotation Trends"
msgstr "Tendência de Orçamentos"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "O Orçamento {0} está cancelado"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "O Orçamento {0} não é do tipo {1}"
@@ -42126,7 +42193,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42292,7 +42359,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42331,12 +42398,6 @@ msgstr "Matérias-primas não pode ficar em branco."
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42345,7 +42406,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42526,7 +42587,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -42987,7 +43048,7 @@ msgstr "Referência #"
msgid "Reference #{0} dated {1}"
msgstr "Referência #{0} datado de {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43151,11 +43212,11 @@ msgstr "Referência: {0}, Código do Item: {1} e Cliente: {2}"
msgid "References"
msgstr "Referências"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43317,7 +43378,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Saldo Remanescente"
@@ -43375,7 +43436,7 @@ msgstr "Observação"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43439,7 +43500,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Renomear Não Permitido"
@@ -43456,7 +43517,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Renomear só é permitido por meio da empresa-mãe {0}, para evitar incompatibilidade."
@@ -43579,7 +43640,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43824,7 +43885,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44005,7 +44066,7 @@ msgstr ""
msgid "Research"
msgstr "Pesquisa"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Pesquisa e Desenvolvimento"
@@ -44050,7 +44111,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44094,7 +44155,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44164,14 +44225,14 @@ msgstr "Quantidade Reservada"
msgid "Reserved Quantity for Production"
msgstr "Quantidade Reservada Para Produção"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44180,13 +44241,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44452,7 +44513,7 @@ msgstr ""
msgid "Resume"
msgstr "Currículo"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44477,8 +44538,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Lucros Acumulados"
@@ -44553,7 +44614,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44589,7 +44650,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44687,8 +44748,8 @@ msgstr "Devoluções"
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -44920,7 +44981,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -44939,8 +45000,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45120,21 +45181,21 @@ msgstr "Linha # {0}: a taxa não pode ser maior que a taxa usada em {1} {2}"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45155,7 +45216,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45216,31 +45277,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45290,11 +45351,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45302,7 +45363,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45319,7 +45380,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45343,22 +45404,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45387,7 +45448,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45395,7 +45456,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45423,7 +45484,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45464,7 +45525,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45476,10 +45537,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45501,11 +45558,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Linha #{0}: selecione o armazém de subconjuntos"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45527,15 +45584,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45543,7 +45600,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45559,18 +45616,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45609,7 +45666,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45629,19 +45686,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45653,19 +45710,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45681,6 +45738,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Linha nº{0}: o status deve ser {1} para desconto na fatura {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45697,7 +45758,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45710,7 +45771,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45722,7 +45783,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45758,7 +45819,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45774,7 +45835,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45875,7 +45936,7 @@ msgstr "Linha #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45883,7 +45944,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45891,7 +45952,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -45923,11 +45984,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -45944,7 +46005,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Linha {0}: Fator de Conversão é obrigatório"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -45964,7 +46025,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Linha {0}: Lançamento de débito não pode ser relacionado a uma {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -45972,7 +46033,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Linha {0}: a data de vencimento na tabela Condições de pagamento não pode ser anterior à data de lançamento"
@@ -46017,16 +46078,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Linha {0}: É obrigatório colocar a Periodicidade."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Linha {0}: do tempo deve ser menor que a hora"
@@ -46042,7 +46103,7 @@ msgstr "Linha {0}: referência inválida {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46066,7 +46127,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46134,7 +46195,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46146,10 +46207,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Linha {0}: Quantidade não disponível para {4} no depósito {1} no momento da postagem da entrada ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46158,11 +46215,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Linha {0}: Item subcontratado é obrigatório para a matéria-prima {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46174,11 +46231,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Linha {0}: o item {1}, a quantidade deve ser um número positivo"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46186,11 +46243,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Linha {0}: Fator de Conversão da Unidade de Medida é obrigatório"
@@ -46203,11 +46260,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46219,7 +46276,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr "Linha {0}: {1} deve ser maior que 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46265,7 +46322,7 @@ msgstr "Linhas Removidas Em {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Linhas com datas de vencimento duplicadas em outras linhas foram encontradas: {0}"
@@ -46273,7 +46330,7 @@ msgstr "Linhas com datas de vencimento duplicadas em outras linhas foram encontr
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46480,8 +46537,8 @@ msgstr "Estoque de Segurança"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46503,8 +46560,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46518,18 +46575,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Vendas"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Conta de Vendas"
@@ -46553,8 +46615,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Despesas Com Vendas"
@@ -46723,11 +46785,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "A Fatura de Venda {0} já foi enviada"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -46925,25 +46987,25 @@ msgstr "Tendência de Pedidos de Venda"
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Pedido de Venda {0} não foi enviado"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Pedido de Venda {0} não é válido"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Pedido de Venda {0} É {1}"
@@ -46987,6 +47049,7 @@ msgstr ""
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -46999,7 +47062,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47105,7 +47168,7 @@ msgstr "Resumo de Recebimento de Vendas"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47198,7 +47261,7 @@ msgstr "Registro de Vendas"
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Devolução de Vendas"
@@ -47222,7 +47285,7 @@ msgstr "Resumo de Vendas"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Modelo de Impostos Sobre Vendas"
@@ -47341,7 +47404,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47373,12 +47436,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Tamanho da Amostra"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "A quantidade de amostra {0} não pode ser superior à quantidade recebida {1}"
@@ -47620,7 +47683,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47739,8 +47802,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Empréstimos Garantidos"
@@ -47778,7 +47841,7 @@ msgstr "Selecionar Item Alternativo"
msgid "Select Alternative Items for Sales Order"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Selecione os Valores do Atributo"
@@ -47820,7 +47883,7 @@ msgstr "Selecione Empresa"
msgid "Select Company Address"
msgstr "Selecionar Endereço da Empresa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47856,7 +47919,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Selecione Colaboradores"
@@ -47881,7 +47944,7 @@ msgstr "Selecione Itens"
msgid "Select Items based on Delivery Date"
msgstr "Selecione itens com base na data de entrega"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -47919,7 +47982,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Selecione Possível Fornecedor"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Selecionar Quantidade"
@@ -47994,7 +48057,7 @@ msgstr "Selecione Uma Prioridade Padrão."
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Selecione Um Fornecedor"
@@ -48017,7 +48080,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48033,8 +48096,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48051,7 +48114,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48083,7 +48146,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48100,7 +48163,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr "Selecione o cliente ou fornecedor."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48108,6 +48171,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48135,7 +48204,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr "A entrada de abertura de PDV selecionada deve estar aberta."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "A Lista de Preços Selecionada deve ter campos de compra e venda verificados."
@@ -48166,30 +48235,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Vender"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48442,7 +48511,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48462,7 +48531,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48507,7 +48576,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48647,7 +48716,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48717,7 +48786,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49131,7 +49200,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49150,8 +49219,8 @@ msgstr "Definir Depósito de Entrega"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49318,11 +49387,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Defina a conta de inventário padrão para o inventário perpétuo"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49354,7 +49423,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49465,7 +49534,7 @@ msgid "Setting up company"
msgstr "Criação de empresa"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49485,6 +49554,10 @@ msgstr ""
msgid "Settled"
msgstr "Liquidado"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49677,7 +49750,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Entregas"
@@ -49715,7 +49788,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49858,8 +49931,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr "Investimentos de Curto Prazo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50191,7 +50264,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50236,7 +50309,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50278,8 +50351,8 @@ msgstr "Constante de Suavização"
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50303,7 +50376,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50367,7 +50440,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50376,11 +50449,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50438,7 +50511,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50446,24 +50524,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "A origem e o local de destino não podem ser iguais"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Fonte e armazém de destino não pode ser o mesmo para a linha {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Fonte de Recursos (passivos)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "O Armazém de origem é obrigatório para a linha {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50504,7 +50581,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50512,7 +50589,7 @@ msgid "Split"
msgstr "Dividido"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50536,7 +50613,7 @@ msgstr ""
msgid "Split Issue"
msgstr "Problema de Divisão"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50548,6 +50625,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50620,13 +50702,13 @@ msgstr "Compra Padrão"
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Venda Padrão"
@@ -50647,8 +50729,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50683,7 +50765,7 @@ msgstr "Data de início não pode ser anterior à data atual"
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50812,7 +50894,7 @@ msgstr ""
msgid "Status and Reference"
msgstr "Status e Referência"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50842,6 +50924,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50850,8 +50933,8 @@ msgstr "Estoque"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -50951,6 +51034,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -50960,10 +51053,6 @@ msgstr ""
msgid "Stock Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51027,7 +51116,7 @@ msgstr "A entrada de estoque já foi criada para esta lista de seleção"
msgid "Stock Entry {0} created"
msgstr "Lançamento de Estoque {0} criado"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51035,8 +51124,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr "Lançamento no Estoque {0} não é enviado"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Despesas Com Estoque"
@@ -51114,8 +51203,8 @@ msgstr "Níveis de Estoque"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Passivo Estoque"
@@ -51218,8 +51307,8 @@ msgstr "Quantidade Em Estoque Vs Série Sem Contagem"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51231,7 +51320,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51243,7 +51332,7 @@ msgstr "Conciliação de Estoque"
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Reconciliações de Estoque"
@@ -51268,9 +51357,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51281,7 +51370,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51306,10 +51395,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51337,7 +51426,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51377,7 +51466,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51492,7 +51581,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51625,11 +51714,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51684,14 +51773,14 @@ msgstr ""
msgid "Stop Reason"
msgstr "Razão de Parada"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "A ordem de trabalho interrompida não pode ser cancelada, descompacte-a primeiro para cancelar"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Lojas"
@@ -51749,7 +51838,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52011,7 +52100,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52100,7 +52189,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52121,7 +52210,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Envie esta Ordem de Serviço para processamento adicional."
@@ -52275,7 +52364,7 @@ msgstr "Reconciliados Com Sucesso"
msgid "Successfully Set Supplier"
msgstr "Definir o Fornecedor Com Sucesso"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52299,7 +52388,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52459,7 +52548,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52557,6 +52646,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52566,7 +52656,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52581,6 +52671,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52665,7 +52756,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52700,8 +52791,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52753,7 +52842,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52782,7 +52871,7 @@ msgstr "Comparação de Cotação de Fornecedor"
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Orçamento do Fornecedor {0} Criado"
@@ -52871,7 +52960,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr ""
@@ -52888,17 +52977,12 @@ msgstr ""
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Fornecedor {0} não encontrado em {1}"
@@ -52911,8 +52995,8 @@ msgstr "Fornecedor(es)"
msgid "Suppliers"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53003,7 +53087,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53033,7 +53117,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53054,10 +53138,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53205,7 +53295,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53213,24 +53303,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53347,8 +53436,8 @@ msgstr ""
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Ativo Fiscal"
@@ -53380,7 +53469,6 @@ msgstr "Ativo Fiscal"
msgid "Tax Breakup"
msgstr ""
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53402,7 +53490,6 @@ msgstr ""
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53418,6 +53505,7 @@ msgstr ""
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53429,8 +53517,8 @@ msgstr "Categoria de Impostos"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Despesa de Imposto"
@@ -53504,7 +53592,7 @@ msgstr "Alíquota do Imposto %"
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53522,7 +53610,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "Regras de Aplicação de Impostos"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Conflitos regra fiscal com {0}"
@@ -53537,7 +53625,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Modelo de impostos é obrigatório."
@@ -53856,7 +53944,7 @@ msgstr ""
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53889,8 +53977,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Despesas Com Telefone"
@@ -53941,13 +54029,13 @@ msgstr "Temporariamente Em Espera"
msgid "Temporary"
msgstr "Temporário"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Contas Temporárias"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Abertura Temporária"
@@ -54129,7 +54217,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54228,7 +54316,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "O 'No. do pacote' o campo não deve estar vazio nem ter valor menor que 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "O Acesso À Solicitação de Cotação do Portal Está Desabilitado. Para Permitir o Acesso, Habilite-o Nas Configurações do Portal."
@@ -54281,7 +54369,8 @@ msgstr "O termo de pagamento na linha {0} é possivelmente uma duplicata."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54297,7 +54386,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54333,7 +54422,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54341,7 +54430,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54361,7 +54454,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54394,7 +54487,7 @@ msgstr "O campo do Acionista não pode estar em branco"
msgid "The field To Shareholder cannot be blank"
msgstr "O campo Acionista não pode estar em branco"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54435,11 +54528,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54460,7 +54553,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Os seguintes {0} foram criados: {1}"
@@ -54487,7 +54580,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54545,7 +54638,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54557,6 +54650,12 @@ msgstr "A conta pai {0} não existe no modelo enviado"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54598,7 +54697,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "A conta raiz {0} deve ser um grupo"
@@ -54614,7 +54713,7 @@ msgstr "A conta de alteração selecionada {} não pertence à Empresa {}."
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54647,7 +54746,7 @@ msgstr "As ações não existem com o {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54669,11 +54768,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54721,15 +54820,15 @@ msgstr "O valor de {0} difere entre Itens {1} e {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "O armazém onde você armazena os itens acabados antes de serem enviados."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54737,19 +54836,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "O {0} ({1}) deve ser igual a {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54757,7 +54856,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54773,7 +54872,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Existem inconsistências entre a taxa, o número de ações e o valor calculado"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54802,7 +54901,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54842,7 +54941,7 @@ msgstr "Nenhum lote encontrado em {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54898,11 +54997,11 @@ msgstr "Este Item É Uma Variante de {0} (modelo)."
msgid "This Month's Summary"
msgstr "Resumo Deste Mês"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -54936,7 +55035,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Este documento ultrapassou o limite em {0} {1} para o item {4}. Você está fazendo outro {3} contra o mesmo {2}?"
@@ -55039,11 +55138,11 @@ msgstr ""
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Isso é feito para lidar com a contabilidade de casos em que o recibo de compra é criado após a fatura de compra"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55112,7 +55211,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55120,15 +55219,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55136,7 +55235,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55205,7 +55304,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55316,7 +55415,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Registros de tempo são necessários para {0} {1}"
@@ -55425,7 +55524,7 @@ msgstr "Para Faturar"
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Até o momento não pode ser antes a partir da data"
@@ -55652,11 +55751,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55699,11 +55802,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Para incluir impostos na linha {0} na taxa de Item, os impostos em linhas {1} também deve ser incluída"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55711,7 +55814,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Para anular isso, ative ';{0}'; na empresa {1}"
@@ -55736,7 +55839,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55886,7 +55989,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -55993,12 +56096,12 @@ msgstr "Total da Comissão"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56300,7 +56403,7 @@ msgstr "Saldo Devedor Total"
msgid "Total Paid Amount"
msgstr "Valor Total Pago"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56312,7 +56415,7 @@ msgstr "O valor total da solicitação de pagamento não pode ser maior que o va
msgid "Total Payments"
msgstr "Total de Pagamentos"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56595,7 +56698,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "Porcentagem total alocado para a equipe de vendas deve ser de 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "A porcentagem total de contribuição deve ser igual a 100"
@@ -56770,7 +56873,7 @@ msgstr "Data da Transação"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56794,11 +56897,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56903,7 +57006,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transação não permitida em relação à ordem de trabalho interrompida {0}"
@@ -56950,11 +57054,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57135,8 +57244,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Despesas Com Viagem"
@@ -57400,6 +57509,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57415,7 +57525,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57476,7 +57586,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Fator de Conversão da Unidade de Medida"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57489,7 +57599,7 @@ msgstr "Fator de Conversão da UDM é necessário na linha {0}"
msgid "UOM Name"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57561,12 +57671,12 @@ msgstr "Não é possível encontrar a taxa de câmbio para {0} a {1} para a data
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Não foi possível encontrar uma pontuação a partir de {0}. Você precisa ter pontuações em pé cobrindo de 0 a 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57648,7 +57758,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57667,7 +57777,7 @@ msgstr ""
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Preço Unitário"
@@ -57684,7 +57794,7 @@ msgstr "Unidade de Medida"
msgid "Unit of Measure (UOM)"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Unidade de Medida {0} foi inserida mais de uma vez na Tabela de Conversão de Fator"
@@ -57829,7 +57939,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57869,12 +57979,12 @@ msgstr "Não Resolvido"
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Empréstimos Não Garantidos"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58050,7 +58160,7 @@ msgstr "Atualizar Itens"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58129,11 +58239,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Atualizando Variantes..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58335,7 +58445,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Use um nome diferente do nome do projeto anterior"
@@ -58377,7 +58487,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58441,6 +58551,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58463,8 +58578,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Despesas Com Utilidades"
@@ -58474,7 +58589,7 @@ msgstr "Despesas Com Utilidades"
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58484,12 +58599,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58683,7 +58798,6 @@ msgstr "Método de Avaliação"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58699,14 +58813,12 @@ msgstr "Método de Avaliação"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Custo Unitário"
@@ -58714,19 +58826,19 @@ msgstr "Custo Unitário"
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Taxa de Avaliação Ausente"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Taxa de avaliação para o item {0}, é necessária para fazer lançamentos contábeis para {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "É obrigatório colocar a Taxa de Avaliação se foi introduzido o Estoque de Abertura"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58736,7 +58848,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58750,7 +58862,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58762,7 +58874,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58881,12 +58993,12 @@ msgid "Variance ({})"
msgstr "Variação ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variante"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Erro de Atributo Variante"
@@ -58905,7 +59017,7 @@ msgstr "Bom Variante"
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "A variante baseada em não pode ser alterada"
@@ -58923,7 +59035,7 @@ msgstr "Campo Variante"
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Itens Variantes"
@@ -58934,7 +59046,7 @@ msgstr "Itens Variantes"
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "A criação de variantes foi colocada na fila."
@@ -59228,7 +59340,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Comprovante #"
@@ -59300,7 +59412,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59374,7 +59486,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59401,7 +59513,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59581,8 +59693,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Armazém não encontrado na conta {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59607,7 +59719,7 @@ msgstr "Armazém {0} não pertence à empresa {1}"
msgid "Warehouse {0} does not exist"
msgstr "O Depósito {0} não existe"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59744,11 +59856,11 @@ msgstr "Aviso: Outra {0} # {1} existe contra entrada de material {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Aviso: Pedido de Venda {0} já existe relacionado ao Pedido de Compra do Cliente {1}"
@@ -59838,7 +59950,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59907,7 +60019,7 @@ msgstr "Site:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60037,7 +60149,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60047,7 +60159,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60057,11 +60169,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Ao criar uma conta para Empresa-filha {0}, conta-mãe {1} não encontrada. Por favor, crie a conta principal no COA correspondente"
@@ -60206,7 +60318,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Trabalho Em Andamento"
@@ -60243,7 +60355,7 @@ msgstr "Trabalho Em Andamento"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60277,7 +60389,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60318,19 +60430,23 @@ msgstr "Resumo da Ordem de Serviço"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "A Ordem de Serviço não pode ser criada pelo seguinte motivo: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "A ordem de serviço foi {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Ordem de serviço não criada"
@@ -60339,16 +60455,16 @@ msgstr "Ordem de serviço não criada"
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Ordem de Serviço {0}: Cartão de Trabalho não encontrado para a operação {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Ordens de Trabalho"
@@ -60373,7 +60489,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Armazém de Trabalho em Andamento é necessário antes de Enviar"
@@ -60421,7 +60537,7 @@ msgstr "Horas de Trabalho"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60512,14 +60628,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Abatimento"
@@ -60624,7 +60740,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Senha Incorreta"
@@ -60680,11 +60796,11 @@ msgstr "Ano data de início ou data de término é a sobreposição com {0}. Par
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Você não está autorizado para adicionar ou atualizar entradas antes de {0}"
@@ -60692,7 +60808,7 @@ msgstr "Você não está autorizado para adicionar ou atualizar entradas antes d
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Você não está autorizado para definir o valor congelado"
@@ -60720,7 +60836,7 @@ msgstr "Você também pode definir uma conta CWIP padrão na Empresa {}"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60761,11 +60877,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60789,7 +60905,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Você não pode criar ou cancelar qualquer lançamento contábil no período contábil fechado {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60850,7 +60966,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Você não tem permissão para {} itens em um {}."
@@ -60862,19 +60978,19 @@ msgstr "Você não tem suficientes pontos de lealdade para resgatar"
msgid "You don't have enough points to redeem."
msgstr "Você não tem pontos suficientes para resgatar."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60886,7 +61002,7 @@ msgstr "Você teve {} erros ao criar faturas de abertura. Verifique {} para obte
msgid "You have already selected items from {0} {1}"
msgstr "Já selecionou itens de {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -60910,7 +61026,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Você precisa habilitar a reordenação automática nas Configurações de estoque para manter os níveis de reordenamento."
@@ -60926,7 +61042,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -60973,11 +61089,11 @@ msgstr "CEP"
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -60999,11 +61115,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Importante] [ERPNext] Erros de reordenamento automático"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61044,7 +61160,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61193,7 +61309,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61226,7 +61342,7 @@ msgstr ""
msgid "reconciled"
msgstr "reconciliado"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "devolução"
@@ -61261,7 +61377,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "vendido"
@@ -61269,8 +61385,8 @@ msgstr "vendido"
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61288,7 +61404,7 @@ msgstr ""
msgid "to"
msgstr "para"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61315,7 +61431,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61337,7 +61453,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' está desativado"
@@ -61345,7 +61461,7 @@ msgstr "{0} '{1}' está desativado"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' não localizado no Ano Fiscal {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) não pode ser maior que a quantidade planejada ({2}) na Ordem de Serviço {3}"
@@ -61353,7 +61469,7 @@ msgstr "{0} ({1}) não pode ser maior que a quantidade planejada ({2}) na Ordem
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61386,11 +61502,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Número {1} já é usado em {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operações: {1}"
@@ -61398,7 +61514,7 @@ msgstr "{0} Operações: {1}"
msgid "{0} Request for {1}"
msgstr "{0} pedido para {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61486,11 +61602,11 @@ msgstr "{0} criou"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61502,7 +61618,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr "{0} não pertence à empresa {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61511,7 +61627,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} entrou duas vezes no Imposto do Item"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61536,7 +61652,7 @@ msgstr "{0} foi enviado com sucesso"
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} na linha {1}"
@@ -61558,7 +61674,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61566,12 +61682,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61579,7 +61695,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} é obrigatório. Talvez o registro de câmbio não tenha sido criado para {1} a {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para {2}."
@@ -61587,7 +61703,7 @@ msgstr "{0} é obrigatório. Talvez o valor de câmbio não exista de {1} para {
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} não é uma conta bancária da empresa"
@@ -61595,7 +61711,7 @@ msgstr "{0} não é uma conta bancária da empresa"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} não é um nó do grupo. Selecione um nó de grupo como centro de custo pai"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61635,27 +61751,27 @@ msgstr "{0} está em espera até {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} itens em andamento"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} itens produzidos"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61663,7 +61779,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} deve ser negativo no documento de devolução"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61679,7 +61795,7 @@ msgstr "{0} parâmetro é inválido"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} entradas de pagamento não podem ser filtrados por {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61692,7 +61808,7 @@ msgstr "{0} a {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61708,16 +61824,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "São necessárias {0} unidades de {1} em {2} em {3} {4} para {5} para concluir esta transação."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "São necessárias {0} unidades de {1} em {2} para concluir esta transação."
@@ -61729,7 +61845,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} variantes criadas."
@@ -61745,7 +61861,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61783,8 +61899,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61894,7 +62010,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -61943,8 +62059,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -61964,11 +62080,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -61976,11 +62092,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} é uma conta de grupo."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -61992,7 +62108,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62004,7 +62120,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} não pode ser cancelado porque os pontos de fidelidade ganhos foram resgatados. Primeiro cancele o {} Não {}"
diff --git a/erpnext/locale/ru.po b/erpnext/locale/ru.po
index 6d16449d27b..915aad3e8c6 100644
--- a/erpnext/locale/ru.po
+++ b/erpnext/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:20\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Подузел"
msgid " Summary"
msgstr " Резюме"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Товар, предоставленный клиентом\" не может быть предметом покупки"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Предоставленный клиентом товар\" не может иметь оценку"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "Нельзя убрать отметку \"Является основным средством\", поскольку по данному пункту имеется запись по активам"
@@ -273,11 +273,11 @@ msgstr "% материалов, поставленных по данному з
msgid "% of materials delivered against this Sales Order"
msgstr "% материалов, поставленных по данному заказу на продажу"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "\"Счет\" в разделе бухгалтерского учета клиента {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "Разрешить несколько заказов на продажу в отношении одного заказа клиента на покупку"
@@ -289,7 +289,7 @@ msgstr "'На основании' и 'Группировка по' не могу
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Дней с момента последнего заказа' должно быть больше или равно 0"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "\"Стандартный {0} счет\" в компании {1}"
@@ -307,7 +307,7 @@ msgstr "Поле 'С даты' является обязательным для
msgid "'From Date' must be after 'To Date'"
msgstr "Значение 'С даты' должно быть после 'До даты'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Имеет серийный номер' не может быть 'Да' для товаров без запасов"
@@ -319,9 +319,9 @@ msgstr "«Требуется проверка перед доставкой» о
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "«Требуется проверка перед покупкой» отключено для товара {0}, нет необходимости создавать QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Открытие'"
@@ -351,8 +351,8 @@ msgstr "Учётная запись «{0}» уже используется по
msgid "'{0}' has been already added."
msgstr "«{0}» уже добавлено."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "«{0}» должно быть в валюте компании {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 дней"
msgid "90 Above"
msgstr "Больше 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Настр
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Дата оформления должна быть после даты проверки для строк: {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Товар {0} в строке(ах) {1} выставлен счет на сумму более {2} "
@@ -825,7 +825,7 @@ msgstr "Платежный документ, необходимый для
msgid " {} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Невозможно выставить счет на сумму, превышающую указанную ниже:
"
@@ -888,7 +888,7 @@ msgstr "Дата публикации {0} не может быть раньш
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 "Ставка по прейскуранту не была установлена как редактируемая в Настройках продажи. В этом случае установка параметра Update Price List Based On в значение Price List Rate предотвратит автообновление цены товара.
Вы уверены, что хотите продолжить?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Чтобы разрешить выставление счетов сверх установленной суммы, установите допустимую сумму в настройках аккаунтов.
"
@@ -976,11 +976,11 @@ msgstr "Ваши ярлыки\n"
msgid "Your Shortcuts "
msgstr "Ваши ярлыки "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Общий итог: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Непогашенная сумма: {0}"
@@ -1050,7 +1050,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "А - В"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Группа клиентов с таким именем уже существует. Пожалуйста, измените имя клиента или имя группы клиентов"
@@ -1214,11 +1214,11 @@ msgstr "Аббр."
msgid "Abbreviation"
msgstr "Аббревиатура"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Сокращение уже используется для другой компании"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Сокращение является обязательным"
@@ -1226,7 +1226,7 @@ msgstr "Сокращение является обязательным"
msgid "Abbreviation: {0} must appear only once"
msgstr "Аббревиатура: {0} должна встречаться только один раз"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Выше"
@@ -1280,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Принятое количество на складе Ед. изм."
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Количество принятых"
@@ -1316,7 +1316,7 @@ msgstr "Ключ доступа необходим для Поставщика
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "В соответствии с CEFACT/ICG/2010/IC013 или CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "В соответствии с BOM {0}, товар '{1}' отсутствует в складской записи."
@@ -1434,8 +1434,8 @@ msgstr "Заголовок счета"
msgid "Account Manager"
msgstr "Менеджер по работе с клиентами"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Счет отсутствует"
@@ -1453,7 +1453,7 @@ msgstr "Счет отсутствует"
msgid "Account Name"
msgstr "Наименование счёта"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Счет не найден"
@@ -1466,7 +1466,7 @@ msgstr "Счет не найден"
msgid "Account Number"
msgstr "Номер аккаунта"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Номер счета {0}, уже использованный в учетной записи {1}"
@@ -1505,7 +1505,7 @@ msgstr "Субсчет"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1521,11 +1521,11 @@ msgstr "Тип учетной записи"
msgid "Account Value"
msgstr "Стоимость счета"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Баланс счета в Кредите, запрещена установка 'Баланс должен быть' как 'Дебет'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Баланс счета в Дебете, запрещена установка 'Баланс должен быть' как 'Кредит'"
@@ -1592,15 +1592,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Счет, имеющий субсчета не может быть преобразован в регистр"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Счет с дочерних узлов, не может быть установлен как книгу"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Счет существующей проводки не может быть преобразован в группу."
@@ -1608,8 +1608,8 @@ msgstr "Счет существующей проводки не может бы
msgid "Account with existing transaction can not be deleted"
msgstr "Счет с существующими проводками не может быть удален"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Счет с существующими проводками не может быть преобразован в регистр"
@@ -1617,11 +1617,11 @@ msgstr "Счет с существующими проводками не мож
msgid "Account {0} added multiple times"
msgstr "Счет {0} добавлен несколько раз"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Счет {0} нельзя преобразовать в Группу, поскольку он уже установлен как {1} для {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Учетную запись {0} нельзя отключить, поскольку она уже установлена как {1} для {2}."
@@ -1629,11 +1629,11 @@ msgstr "Учетную запись {0} нельзя отключить, пос
msgid "Account {0} does not belong to company {1}"
msgstr "Аккаунт {0} не принадлежит компании {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Аккаунт {0} не принадлежит компании: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Аккаунт {0} не существует"
@@ -1649,15 +1649,15 @@ msgstr "Учетная запись {0} не совпадает с компан
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Аккаунт {0} не принадлежит компании: {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Аккаунт {0} существует в материнской компании {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Учетная запись {0} добавлена в дочернюю компанию {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Учетная запись {0} отключена."
@@ -1665,7 +1665,7 @@ msgstr "Учетная запись {0} отключена."
msgid "Account {0} is frozen"
msgstr "Счет {0} заморожен"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Счёт {0} является недопустимым. Валюта счёта должна быть {1}"
@@ -1673,19 +1673,19 @@ msgstr "Счёт {0} является недопустимым. Валюта с
msgid "Account {0} should be of type Expense"
msgstr "Счет {0} должен иметь тип \"Расходы\""
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Счет {0}: Родительский счет {1} не может быть регистром"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Счет {0}: Родитель счета {1} не принадлежит компании: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Счет {0}: Родитель счета {1} не существует"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Счёт {0}: Вы не можете назначить самого себя родительским счётом"
@@ -1701,7 +1701,7 @@ msgstr "Счет: {0} можно обновить только через пе
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Счет: {0} не разрешен при вводе платежа"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Счет: {0} с валютой: {1} не может быть выбран"
@@ -1986,8 +1986,8 @@ msgstr "Бухгалтерские проводки"
msgid "Accounting Entry for Asset"
msgstr "Учетная запись для активов"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Бухгалтерская запись для LCV в записи на складе {0}"
@@ -2011,8 +2011,8 @@ msgstr "Бухгалтерская запись для обслуживания"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Бухгалтерская Проводка по Запасам"
@@ -2021,7 +2021,7 @@ msgstr "Бухгалтерская Проводка по Запасам"
msgid "Accounting Entry for {0}"
msgstr "Бухгалтерская проводка для {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Бухгалтерская Проводка для {0}: {1} может быть сделана только в валюте: {2}"
@@ -2076,7 +2076,6 @@ msgstr "Бухгалтерские записи заморожены до это
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2089,14 +2088,13 @@ msgstr "Бухгалтерские записи заморожены до это
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Счета"
@@ -2126,8 +2124,8 @@ msgstr "Учетные записи, не найденные в отчете"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2227,15 +2225,15 @@ msgstr "Таблица учета не может быть пустой."
msgid "Accounts to Merge"
msgstr "Счета для слияния"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Начисленные расходы"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "начисленной амортизации"
@@ -2400,7 +2398,7 @@ msgstr "Выполненные действия"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2524,7 +2522,7 @@ msgstr "Факт. дата окончания"
msgid "Actual End Date (via Timesheet)"
msgstr "Фактическая дата окончания (по табелю учета рабочего времени)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Фактическая дата окончания не может быть раньше фактической даты начала."
@@ -2646,7 +2644,7 @@ msgstr "Фактическое время в часах (по табелю уч
msgid "Actual qty in stock"
msgstr "Количество штук в наличии"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Фактический тип налога не может быть включён в стоимость продукта в строке {0}"
@@ -2655,7 +2653,7 @@ msgstr "Фактический тип налога не может быть вк
msgid "Ad-hoc Qty"
msgstr "Специальное количество"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Добавить/изменить цены"
@@ -3154,7 +3152,7 @@ msgstr "Дополнительная информация"
msgid "Additional Information updated successfully."
msgstr "Дополнительная информация успешно обновлена."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Передача дополнительных материалов"
@@ -3177,7 +3175,7 @@ msgstr "Дополнительные операционные расходы"
msgid "Additional Transferred Qty"
msgstr "Дополнительное передаваемое количество"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3189,11 +3187,6 @@ msgstr "Дополнительное переданное количество {
"\t\t\t\t\tполя 'Передать дополнительное сырьё в не завершённое производство'\n"
"\t\t\t\t\tв Настройках производства."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Дополнительная информация о клиенте."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Для завершения этой транзакции требуется дополнительно {0} {1} товара {2} согласно спецификации"
@@ -3339,11 +3332,6 @@ msgstr "Адрес должен быть привязан к компании.
msgid "Address used to determine Tax Category in transactions"
msgstr "Адрес, используемый для определения категории налогов в операциях"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Изменить количество"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Корректировка в отношении"
@@ -3356,8 +3344,8 @@ msgstr "Корректировка на основе ставки по счет
msgid "Administrative Assistant"
msgstr "Административный помощник"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Административные затраты"
@@ -3425,7 +3413,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Авансовые платежи"
@@ -3545,7 +3533,7 @@ msgstr "Со счета"
msgid "Against Blanket Order"
msgstr "По заказу"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "По заказу клиента {0}"
@@ -3687,11 +3675,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Возраст (дней)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Возраст ({0})"
@@ -3841,21 +3829,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Все отделы"
@@ -3935,7 +3923,7 @@ msgstr "Все группы поставщиков"
msgid "All Territories"
msgstr "Все Территории"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Все склады"
@@ -3949,6 +3937,11 @@ msgstr "Все распределения были успешно согласо
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Все коммуникации, включая и вышеупомянутое, должны быть перенесены в новый Выпуск"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Все предметы уже запрошены"
@@ -3957,23 +3950,23 @@ msgstr "Все предметы уже запрошены"
msgid "All items have already been Invoiced/Returned"
msgstr "На все товары уже выставлен счет / возврат"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Все товары уже получены"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Все продукты уже переведены для этого Заказа."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Все товары этого документа уже имеют связанную проверку качества."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Все связанные Заказы на продажу должны быть переданы в субподряд."
@@ -3987,11 +3980,11 @@ msgstr "Все комментарии и электронные письма б
msgid "All the items have been already returned."
msgstr "Все предметы уже были возвращены."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Все требуемые элементы (сырье) будут получены из спецификации и заполнены в этой таблице. Здесь вы также можете изменить исходный склад для любого элемента. И во время производства вы можете отслеживать переданное сырье из этой таблицы."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "На все эти товары уже выставлен счет / возврат"
@@ -4010,7 +4003,7 @@ msgstr "Выделить"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Автоматическое распределение авансов (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Выделяют Сумма платежа"
@@ -4020,7 +4013,7 @@ msgstr "Выделяют Сумма платежа"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Распределить платеж на основе условий оплаты"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Разместить запрос на оплату"
@@ -4050,7 +4043,7 @@ msgstr "Выделено"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4107,7 +4100,7 @@ msgstr "Выделено Кол-во"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4171,7 +4164,7 @@ msgstr "Разрешить возврат"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Разрешить внутренние переводы по рыночной цене"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Разрешить многократное добавление элемента в транзакцию"
@@ -4294,16 +4287,6 @@ msgstr "Разрешить сброс соглашения об уровне о
msgid "Allow Sales"
msgstr "Разрешить продажи"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "Разрешить создание счет-фактур без накладных"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "Разрешить создание счет-фактуры без заказа на продажу"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4429,6 +4412,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4505,10 +4498,8 @@ msgstr "Разрешенные элементы"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Разрешено спрятать"
@@ -4520,6 +4511,11 @@ msgstr "Разрешенные основные роли: «Клиент» и «
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4561,8 +4557,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Также Вы не можете переключиться обратно на FIFO после установки метода оценки Moving Average для этого предмета."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4803,7 +4799,7 @@ msgstr "Всегда спрашивайте"
msgid "Amount"
msgstr "Сумма"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Сумма (дирхамы ОАЭ)"
@@ -4937,12 +4933,12 @@ msgid "Amount to Bill"
msgstr "Сумма к оплате"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Сумма {0} {1} против {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Сумма {0} {1} вычтены {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4987,11 +4983,11 @@ msgstr "Сумма"
msgid "An Item Group is a way to classify items based on types."
msgstr "Группа предмета — это способ классификации предметов по типам."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Произошла ошибка при перерасчете оценки стоимости товара через {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Произошла ошибка во время процесса обновления"
@@ -5531,7 +5527,7 @@ msgstr "Поскольку поле {0} включено, поле {1} явля
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Поскольку поле {0} включено, значение поля {1} должно быть больше 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Поскольку существуют отправленные транзакции по элементу {0}, вы не можете изменить значение {1}."
@@ -5543,7 +5539,7 @@ msgstr "Поскольку имеются зарезервированные з
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Поскольку достаточно комплектующих, заказ на работу не требуется для склада {0}"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Поскольку сырья достаточно, запрос материалов для хранилища {0} не требуется."
@@ -5681,7 +5677,7 @@ msgstr "Счёт категории активов"
msgid "Asset Category Name"
msgstr "Название категории актива"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Категория активов является обязательным для фиксированного элемента активов"
@@ -5858,8 +5854,8 @@ msgstr "Количество активов"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5959,7 +5955,7 @@ msgstr "Актив аннулирован"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Asset не может быть отменена, так как она уже {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Актив не может быть списан до последней записи об амортизации."
@@ -5991,7 +5987,7 @@ msgstr "Актив недоступен из-за ремонта актива {0
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Актив получен в Местоположении {0} и выдан Сотруднику {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Актив восстановлен"
@@ -5999,20 +5995,20 @@ msgstr "Актив восстановлен"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Актив восстановлен после отмены капитализации актива {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Актив возвращен"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Актив списан"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Asset слом через журнал запись {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Актив продан"
@@ -6032,7 +6028,7 @@ msgstr "Актив обновлен после разделения на Акт
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Активы обновлены благодаря ремонту активов {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Asset {0} не может быть утилизированы, как это уже {1}"
@@ -6073,7 +6069,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Актив {0} не представлен. Пожалуйста, предоставьте актив, прежде чем продолжить."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Актив {0} должен быть проведен"
@@ -6123,7 +6119,7 @@ msgstr "Активы не созданы для {item_code}. Вам придет
msgid "Assets {assets_link} created for {item_code}"
msgstr "Активы {assets_link} созданные для {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Назначить работу сотруднику"
@@ -6184,7 +6180,7 @@ msgstr "По крайней мере один из Применимых моду
msgid "At least one of the Selling or Buying must be selected"
msgstr "Необходимо выбрать хотя бы один вариант «Продажа» или «Покупка»"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Как минимум одна единица сырья должна присутствовать в записи о запасах для типа {0}"
@@ -6192,21 +6188,17 @@ msgstr "Как минимум одна единица сырья должна п
msgid "At least one row is required for a financial report template"
msgstr "Для шаблона финансового отчета требуется как минимум одна строка"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Обязательно наличие хотя бы одного склада"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "В строке #{0}: Счет разницы не должен быть счетом типа Stock, пожалуйста, измените тип счета для счета {1} или выберите другой счет"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "В строке #{0}: идентификатор последовательности {1} не может быть меньше идентификатора предыдущей строки {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "В строке #{0}: Вы выбрали счет разницы {1}, который является счетом типа \"Себестоимость проданных товаров\". Пожалуйста, выберите другой счет"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6288,11 +6280,11 @@ msgstr "Имя атрибута"
msgid "Attribute Value"
msgstr "Значение атрибута"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Таблица атрибутов является обязательной"
@@ -6300,19 +6292,19 @@ msgstr "Таблица атрибутов является обязательн
msgid "Attribute value: {0} must appear only once"
msgstr "Значение атрибута: {0} должно встречаться только один раз"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Атрибут {0} выбран несколько раз в таблице атрибутов"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Атрибуты"
@@ -6524,7 +6516,7 @@ msgstr "Автоматическое сопоставление и устано
msgid "Auto re-order"
msgstr "Автоматический повторный заказ"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Автоматический повторный документ обновлен"
@@ -6636,7 +6628,7 @@ msgstr "Дата использования"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Доступное количество"
@@ -6725,10 +6717,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "Доступна дата использования"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Доступное количество: {0}, вам нужно {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Доступно {0}"
@@ -6737,8 +6725,8 @@ msgstr "Доступно {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Доступная для использования дата должна быть после даты покупки"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Средний возраст"
@@ -6762,7 +6750,9 @@ msgstr "Средняя стоимость заказа"
msgid "Average Order Values"
msgstr "Средняя стоимость заказа"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Средняя оценка"
@@ -6786,7 +6776,7 @@ msgid "Avg Rate"
msgstr "Средняя ставка"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Средняя ставка (остаток на складе)"
@@ -6844,7 +6834,7 @@ msgstr "Количество в ячейке"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6867,7 +6857,7 @@ msgstr "ВМ"
msgid "BOM 1"
msgstr "Спецификация 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Спецификация 1 {0} и спецификация 2 {1} не должны совпадать"
@@ -6939,11 +6929,6 @@ msgstr "Дерево спецификации продукта"
msgid "BOM ID"
msgstr "Идентификатор спецификации"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Информация о спецификации"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7097,7 +7082,7 @@ msgstr "Спецификация продукта на сайте"
msgid "BOM Website Operation"
msgstr "Операция спецификации на сайте"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Спецификация материалов (BOM) и количество готовой продукции обязательны для разборки"
@@ -7165,7 +7150,7 @@ msgstr "Дата выхода акций"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Автоматическое списание материалов со склада незавершенного производства"
@@ -7229,7 +7214,7 @@ msgstr "Баланс в базовой валюте"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Баланс Кол-во"
@@ -7294,7 +7279,7 @@ msgstr "Тип баланса"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Валюта баланса"
@@ -7450,8 +7435,8 @@ msgid "Bank Balance"
msgstr "Баланс банковского счета"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Комиссия банка"
@@ -7566,8 +7551,8 @@ msgstr "Тип банковской гарантии"
msgid "Bank Name"
msgstr "Название банка"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Банковский овердрафтовый счет"
@@ -7740,11 +7725,11 @@ msgstr "Банковские операции"
msgid "Barcode Type"
msgstr "Тип штрих-кода"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Штрихкод {0} уже используется для продукта {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Штрих-код {0} не является допустимым кодом {1}"
@@ -7901,7 +7886,7 @@ msgstr "Базовая ставка (в соответствии с единиц
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7976,7 +7961,7 @@ msgstr "Статус срока годности партии продукта"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8065,13 +8050,13 @@ msgstr "Количество партий обновлено до {0}"
msgid "Batch Quantity"
msgstr "Количество в партии"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8088,7 +8073,7 @@ msgstr "Единица измерения партии"
msgid "Batch and Serial No"
msgstr "Номер партии и серийный номер"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Партия для товара {} не создана, так как у него отсутствуют серии партий."
@@ -8111,12 +8096,12 @@ msgstr "Партия {0} и склад"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Партия {0} недоступна на складе {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Партия {0} продукта {1} просрочена"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Пакет {0} элемента {1} отключен."
@@ -8171,7 +8156,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8180,7 +8165,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8194,11 +8179,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Ведомость материалов"
@@ -8299,7 +8286,7 @@ msgstr "Данные адреса для выставления счета"
msgid "Billing Address Name"
msgstr "Имя адреса для выставления счета"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Адрес для выставления счетов не принадлежит {0}"
@@ -8551,6 +8538,16 @@ msgstr "Блок-счет"
msgid "Block Supplier"
msgstr "Блокировка поставщика"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8647,7 +8644,7 @@ msgstr "Забронировано"
msgid "Booked Fixed Asset"
msgstr "Зарегистрированный основной актив"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Записи в бухгалтерии закрыты до окончания периода, заканчивающегося {0}"
@@ -8906,8 +8903,8 @@ msgstr "Построить дерево"
msgid "Buildable Qty"
msgstr "Количество для сборки"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Здания"
@@ -9068,16 +9065,16 @@ msgstr "По умолчанию Имя поставщика устанавлив
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Обход проверки кредитного лимита при заказе на продажу"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Игнорировать проверку кредитоспособности при оформлении заказа на продажу"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9125,8 +9122,8 @@ msgstr "Примечание CRM"
msgid "CRM Settings"
msgstr "Настройки CRM-системы"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "CWIP-аккаунт"
@@ -9381,7 +9378,7 @@ msgstr "Кампания {0} не найдена"
msgid "Can be approved by {0}"
msgstr "Может быть одобрено {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Невозможно закрыть заказ на работу. Поскольку {0} карточек заданий находятся в состоянии «Работа в процессе»."
@@ -9414,13 +9411,13 @@ msgstr "Не можете фильтровать на основе ваучер
msgid "Can only make payment against unbilled {0}"
msgstr "Могу только осуществить платеж против нефактурированных {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Можете обратиться строку, только если тип заряда «О Предыдущая сумма Row» или «Предыдущая Row Всего\""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Невозможно изменить метод оценки, так как существуют транзакции по некоторым позициям, для которых нет собственного метода оценки"
@@ -9462,7 +9459,7 @@ msgstr "Невозможно назначить кассира"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Невозможно рассчитать время прибытия, так как отсутствует адрес водителя."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Невозможно изменить настройки учетной записи инвентаря"
@@ -9470,9 +9467,9 @@ msgstr "Невозможно изменить настройки учетной
msgid "Cannot Create Return"
msgstr "Невозможно создать возврат"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Невозможно объединить"
@@ -9500,7 +9497,7 @@ msgstr "Невозможно исправить {0} {1}, пожалуйста,
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Невозможно применить налог на источнике дохода к нескольким контрагентам в одной записи"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Не может быть элементом фиксированного актива, так как создается складская книга."
@@ -9520,7 +9517,7 @@ msgstr "Невозможно отменить запись о резервиро
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Невозможно отменить, так как обработка отмененных документов еще не завершена."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Нельзя отменить, так как проведен счет по Запасам {0}"
@@ -9540,15 +9537,15 @@ msgstr "Отменить этот документ невозможно, так
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Невозможно отменить этот документ, поскольку он связан с отправленным объектом {asset_link}. Пожалуйста, отмените его, чтобы продолжить."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Невозможно отменить транзакцию для выполненного рабочего заказа."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Невозможно изменить атрибуты после транзакции с акциями. Сделайте новый предмет и переведите запас на новый элемент"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Невозможно изменить тип справочного документа."
@@ -9556,11 +9553,11 @@ msgstr "Невозможно изменить тип справочного до
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Невозможно изменить дату остановки службы для элемента в строке {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Невозможно изменить свойства Variant после транзакции с акциями. Вам нужно будет сделать новый элемент для этого."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Невозможно изменить Базовая валюта компании, потому что есть существующие операции. Сделки должны быть отменены, чтобы поменять валюту."
@@ -9576,11 +9573,11 @@ msgstr "Невозможно преобразовать центр затрат
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Невозможно преобразовать задачу в негрупповую, так как существуют следующие дочерние задачи: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Преобразование в группу невозможно из-за установленного типа счета."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Не можете скрытой в группу, потому что выбран Тип аккаунта."
@@ -9588,7 +9585,7 @@ msgstr "Не можете скрытой в группу, потому что в
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Невозможно создать записи о резервировании запасов для квитанций о покупке с будущей датой."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Невозможно создать список сборки для заказа на продажу {0}, так как имеется зарезервированный товар. Пожалуйста, снимите резервирование с товара, чтобы создать список сборки."
@@ -9614,7 +9611,7 @@ msgstr "Нельзя установить Отказ, потому что был
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Не можете вычесть, когда категория для \"Оценка\" или \"Оценка и Всего\""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Невозможно удалить строку «Прибыль/убыток по обмену»"
@@ -9622,12 +9619,12 @@ msgstr "Невозможно удалить строку «Прибыль/убы
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Не удается удалить Серийный номер {0}, так как он используется в операции перемещения по складу"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Невозможно удалить заказанный товар"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9639,7 +9636,7 @@ msgstr "Невозможно удалить виртуальный DocType: {0}.
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Невозможно отключить вечную инвентаризацию, поскольку для компании {0}. Уже существуют записи в Книге учета запасов. Пожалуйста, сначала отмените операции с запасами и попробуйте снова."
@@ -9647,20 +9644,20 @@ msgstr "Невозможно отключить вечную инвентари
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Невозможно разобрать больше, чем произведено."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Невозможно включить инвентарный счет по позициям, поскольку для компании {0} существуют записи в Книге учета запасов с инвентарным счетом по складам. Пожалуйста, сначала отмените операции с запасами и попробуйте снова."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Невозможно обеспечить доставку по серийному номеру, так как товар {0} добавлен с и без обеспечения доставки по серийному номеру."
@@ -9676,7 +9673,7 @@ msgstr "Невозможно найти товар или склад с этим
msgid "Cannot find Item with this Barcode"
msgstr "Не удается найти товар с этим штрих-кодом"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Не удается найти склад по умолчанию для товара {0}. Пожалуйста, установите его в настройках товара или в настройках склада."
@@ -9684,15 +9681,15 @@ msgstr "Не удается найти склад по умолчанию для
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Невозможно объединить {0} '{1}' с '{2}', поскольку в обоих случаях существуют бухгалтерские записи в разных валютах для компании '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Невозможно произвести больше товаров {0}, чем количество товаров в заказе на продажу {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Невозможно произвести больше товаров для {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Невозможно произвести более {0} единиц товара для {1}"
@@ -9700,12 +9697,12 @@ msgstr "Невозможно произвести более {0} единиц т
msgid "Cannot receive from customer against negative outstanding"
msgstr "Невозможно получить оплату от клиента при отрицательном остатке задолженности"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Уменьшить количество по сравнению с заказанным или приобретенным количеством невозможно"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Не можете обратиться номер строки, превышающую или равную текущему номеру строки для этого типа зарядки"
@@ -9718,14 +9715,14 @@ msgstr "Невозможно получить токен ссылки для о
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Невозможно получить токен ссылки. Проверьте журнал ошибок для получения дополнительной информации"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9739,7 +9736,7 @@ msgstr "Невозможно установить Отказ, так как со
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Не удается установить разрешение на основе Скидка для {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Невозможно установить несколько параметров по умолчанию для компании."
@@ -9747,11 +9744,11 @@ msgstr "Невозможно установить несколько парам
msgid "Cannot set multiple account rows for the same company"
msgstr "Невозможно задать несколько счетов для одной и той же компании"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Невозможно установить количество меньше доставленного количества."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Невозможно установить количество меньше полученного."
@@ -9763,7 +9760,7 @@ msgstr "Невозможно установить поле {0} для к
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Невозможно начать удаление. Другое удаление {0} уже находится в очереди/выполняется. Пожалуйста, дождитесь его завершения."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9796,7 +9793,7 @@ msgstr "Вместимость (единица измерения для зап
msgid "Capacity Planning"
msgstr "Планирование производственных мощностей"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Ошибка планирования емкости, запланированное время начала не может совпадать со временем окончания"
@@ -9815,13 +9812,13 @@ msgstr "Вместимость в единицах учета запасов"
msgid "Capacity must be greater than 0"
msgstr "Вместимость должна быть больше 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Основные средства"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Капитал"
@@ -10038,7 +10035,7 @@ msgstr "Подробности категории"
msgid "Category-wise Asset Value"
msgstr "Стоимость актива по категориям"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Предосторожность"
@@ -10143,7 +10140,7 @@ msgstr "Изменить дату выпуска"
msgid "Change in Stock Value"
msgstr "Изменение стоимости запасов"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Измените тип учетной записи на Дебиторскую задолженность или выберите другую учетную запись."
@@ -10153,7 +10150,7 @@ msgstr "Измените тип учетной записи на Дебитор
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Измените эту дату вручную, чтобы настроить дату начала следующей синхронизации"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Имя клиента изменено на «{}», поскольку «{}» уже существует."
@@ -10161,7 +10158,7 @@ msgstr "Имя клиента изменено на «{}», поскольку
msgid "Changes in {0}"
msgstr "Изменения в {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Изменение группы клиентов для выбранного Клиента запрещено."
@@ -10176,7 +10173,7 @@ msgid "Channel Partner"
msgstr "Партнер по каналу распределения"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Расход типа 'Фактический' в строке {0} не может быть включен в расчет товарной ставки или оплаченной суммы"
@@ -10230,7 +10227,7 @@ msgstr "Дерево диаграммы"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10373,7 +10370,7 @@ msgstr "Ширина чека"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Чеками / Исходная дата"
@@ -10431,7 +10428,7 @@ msgstr "Имя дочернего документа"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Ссылка на дочернюю строку"
@@ -10483,6 +10480,11 @@ msgstr "Классификация клиентов по регионам"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10625,11 +10627,11 @@ msgstr "Закрытый документ"
msgid "Closed Documents"
msgstr "Закрытые документы"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Закрытый заказ на работу не может быть остановлен или повторно открыт"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Закрытый заказ не может быть отменен. Отменить открываться."
@@ -10881,11 +10883,17 @@ msgstr "Ставка комиссии %"
msgid "Commission Rate (%)"
msgstr "Ставка комиссии (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Комиссия по продажам"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10916,7 +10924,7 @@ msgstr "Коммуникационный таймслот"
msgid "Communication Medium Type"
msgstr "Тип средства коммуникации"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Компактный товара печати"
@@ -11315,8 +11323,8 @@ msgstr "Компании"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11369,7 +11377,7 @@ msgstr "Компании"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11458,18 +11466,20 @@ msgstr "Отображение адреса компании"
msgid "Company Address Name"
msgstr "Название адреса компании"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Адрес компании отсутствует. У вас нет прав на его обновление. Обратитесь к своему системному администратору."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Банковский счет компании"
@@ -11565,7 +11575,7 @@ msgstr "Компания и дата публикации обязательны
msgid "Company and account filters not set!"
msgstr "Фильтры по компании и учетной записи не установлены!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Валюты компаний обеих компаний должны соответствовать сделкам Inter Company."
@@ -11600,7 +11610,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Название поля ссылки на компанию, используемое для фильтрации (необязательно — оставьте пустым, чтобы удалить все записи)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Название компании не одинаково"
@@ -11639,12 +11649,12 @@ msgstr "Компания, которую представляет внутрен
msgid "Company {0} added multiple times"
msgstr "Компания {0} добавлена несколько раз"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Компания {0} не существует"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Компания {0} добавлена более одного раза"
@@ -11686,7 +11696,7 @@ msgstr "Название конкурента"
msgid "Competitors"
msgstr "Конкуренты"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Завершить работу"
@@ -11733,12 +11743,12 @@ msgstr "Завершенные проекты"
msgid "Completed Qty"
msgstr "Завершенное количество"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Завершенное количество не может быть больше, чем «Количество для изготовления»"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Количество завершенных"
@@ -11927,7 +11937,7 @@ msgstr "Учитывайте параметры учета"
msgid "Consider Minimum Order Qty"
msgstr "Учитывайте минимальное количество заказа"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Учет потери в процессе"
@@ -12121,7 +12131,7 @@ msgstr "Стоимость потребляемых предметов"
msgid "Consumed Qty"
msgstr "Потребляемое кол-во"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Потребленное количество не может быть больше зарезервированного количества для товара {0}"
@@ -12150,7 +12160,7 @@ msgstr "Израсходованные товарные позиции, акти
msgid "Consumed Stock Total Value"
msgstr "Общая стоимость потребленных запасов"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Потребленное количество товара {0} превышает переданное количество."
@@ -12278,7 +12288,7 @@ msgstr "Контактный номер."
msgid "Contact Person"
msgstr "Контактное лицо"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Контактное лицо не принадлежит к {0}"
@@ -12404,6 +12414,11 @@ msgstr "Контроль исторических операций по запа
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12464,7 +12479,7 @@ msgstr "Коэффициент конверсии"
msgid "Conversion Rate"
msgstr "Коэффициент конверсии"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Коэффициент пересчета для дефолтного Единица измерения должна быть 1 в строке {0}"
@@ -12472,15 +12487,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 "Коэффициент пересчета для элемента {0} был сброшен до 1,0, поскольку единица измерения {1} совпадает с базовой единицей измерения {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Коэффициент конверсии не может быть равен 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Курс конвертации равен 1.00, но валюта документа отличается от валюты компании"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Курс конвертации должен быть равен 1.00, если валюта документа совпадает с валютой компании"
@@ -12557,13 +12572,13 @@ msgstr "Корректирующий"
msgid "Corrective Action"
msgstr "Корректирующие действия"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Карточка на ремонтные работы"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Корректирующая операция"
@@ -12730,7 +12745,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12863,7 +12878,7 @@ msgstr "Центр затрат {} — это групповой центр за
msgid "Cost Center: {0} does not exist"
msgstr "Центр затрат: {0} не существует"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Центр затрат"
@@ -12906,17 +12921,13 @@ msgstr "Затраты по поставленным продуктам"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Себестоимость проданных продуктов"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Счет \"Себестоимость проданных товаров\" в таблице товаров"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Стоимость выпущенных продуктов"
@@ -12996,7 +13007,7 @@ msgstr "Не удалось удалить демонстрационные да
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Не удалось автоматически создать клиента из-за отсутствия следующих обязательных полей:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Не удалось создать кредитную ноту автоматически, снимите флажок «Выдавать кредитную ноту» и отправьте снова"
@@ -13185,7 +13196,7 @@ msgstr "Создать счета"
msgid "Create Item"
msgstr "Создать элемент"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Создать вакансию"
@@ -13217,7 +13228,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Создать записи в бухгалтерской книге для изменения суммы"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Создать ссылку"
@@ -13284,7 +13295,7 @@ msgstr "Создать платёжную запись для консолиди
msgid "Create Payment Request"
msgstr "Создать запрос на оплату"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Создать список выбора"
@@ -13429,7 +13440,7 @@ msgstr "Создать задачу"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Создать налоговый шаблон"
@@ -13467,12 +13478,12 @@ msgstr "Создать разрешение пользователя"
msgid "Create Users"
msgstr "Создание пользователей"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Создать вариант"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Создать варианты"
@@ -13503,12 +13514,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Создать вариант с изображением шаблона."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Создайте проводку входящего запаса для Товара."
@@ -13542,7 +13553,7 @@ msgstr "Создать {0} {1}?"
msgid "Created By Migration"
msgstr "Создано в результате миграции"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Создано {0} оценочных листов для {1} в период:"
@@ -13575,7 +13586,7 @@ msgstr "Создание транспортной накладной ..."
msgid "Creating Delivery Schedule..."
msgstr "Создание графика доставки..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Создание размеров..."
@@ -13770,7 +13781,7 @@ msgstr "Кредитные дни"
msgid "Credit Limit"
msgstr "Кредитный лимит"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Кредитный лимит превышен"
@@ -13780,12 +13791,6 @@ msgstr "Кредитный лимит превышен"
msgid "Credit Limit Settings"
msgstr "Настройки кредитного лимита"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Кредитный лимит и условия оплаты"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Кредитный лимит:"
@@ -13817,7 +13822,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13845,7 +13850,7 @@ msgstr "Кредит выдается справка"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Документ на возврат обновит свою сумму задолженности, даже если указан \"Возврат на основании\"."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Кредитная запись {0} была создана автоматически"
@@ -13853,7 +13858,7 @@ msgstr "Кредитная запись {0} была создана автома
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Кредит для"
@@ -13862,20 +13867,20 @@ msgstr "Кредит для"
msgid "Credit in Company Currency"
msgstr "Кредит в валюте компании"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Кредитный лимит был скрещен для клиента {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Кредитный лимит уже определен для Компании {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Достигнут кредитный лимит для клиента {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13883,8 +13888,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Коэффициент оборачиваемости кредиторов"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Кредиторы"
@@ -14054,7 +14059,7 @@ msgstr "Обмен валюты должен применяться для по
msgid "Currency and Price List"
msgstr "Валюта и прайс-лист"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Валюта не может быть изменена после внесения записи, используя другой валюты"
@@ -14064,7 +14069,7 @@ msgstr "Фильтры валют в настоящее время не подд
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Валюта для {0} должно быть {1}"
@@ -14147,8 +14152,8 @@ msgstr "Дата начала текущего счета-фактуры"
msgid "Current Level"
msgstr "Текущий уровень"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Текущие обязательства"
@@ -14215,6 +14220,11 @@ msgstr "Наличие на складе"
msgid "Current Valuation Rate"
msgstr "Текущая ставка оценки"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Кривые"
@@ -14310,7 +14320,6 @@ msgstr "Пользовательские разделители"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14417,7 +14426,6 @@ msgstr "Пользовательские разделители"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14506,8 +14514,8 @@ msgstr "Адрес клиента"
msgid "Customer Addresses And Contacts"
msgstr "Адреса клиентов и контакты"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Предоплаты покупателей"
@@ -14521,7 +14529,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14604,6 +14612,7 @@ msgstr "Отзывы клиентов"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14626,7 +14635,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14643,6 +14652,7 @@ msgstr "Отзывы клиентов"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14686,7 +14696,7 @@ msgstr "Товар клиента"
msgid "Customer Items"
msgstr "Товары клиента"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Клиент LPO"
@@ -14738,7 +14748,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14844,7 +14854,7 @@ msgstr "Предоставляется клиентом"
msgid "Customer Provided Item Cost"
msgstr "Стоимость товара, указанная клиентом"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Обслуживание клиентов"
@@ -14901,9 +14911,9 @@ msgstr "Клиент или товар"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Клиент требуется для \"Customerwise Скидка\""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Клиент {0} не относится к проекту {1}"
@@ -15015,7 +15025,7 @@ msgstr "D - Е"
msgid "DFS"
msgstr "Прямая отгрузка грузов"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Ежедневная сводка проекта за {0}"
@@ -15106,7 +15116,7 @@ msgstr "Дата рождения не может быть больше, чем
msgid "Date of Commencement"
msgstr "Дата начала"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Дата начала должна быть больше, чем Дата регистрации"
@@ -15332,7 +15342,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15360,13 +15370,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Дебет на"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Дебет требуется"
@@ -15494,8 +15504,7 @@ msgstr "Учетная запись по умолчанию"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15521,14 +15530,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Счет по умолчанию для получения аванса"
@@ -15543,19 +15552,19 @@ msgstr "Диапазон старения по умолчанию"
msgid "Default BOM"
msgstr "Спецификации по умолчанию"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "По умолчанию ВМ ({0}) должна быть активной для данного продукта или в шаблоне"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "По умолчанию BOM для {0} не найден"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Стандартная спецификация материалов не найдена для готового товара {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Спецификация по умолчанию для продукта {0} и проекта {1} не найдена"
@@ -15608,9 +15617,7 @@ msgid "Default Company"
msgstr "Компания по умолчанию"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Банковский счет компании по умолчанию"
@@ -15726,6 +15733,16 @@ msgstr "Группа товаров по умолчанию"
msgid "Default Item Manufacturer"
msgstr "Производитель товара по умолчанию"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15761,23 +15778,19 @@ msgid "Default Payment Request Message"
msgstr "Шаблон сообщения о запросе платежа"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Шаблон условий оплаты по умолчанию"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15900,15 +15913,15 @@ msgstr "Территория по умолчанию"
msgid "Default Unit of Measure"
msgstr "Единица измерения по умолчанию"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "Единицу измерения по умолчанию для товара {0} нельзя изменить напрямую, так как с этим товаром уже проводились транзакции с другой единицей измерения. Вам необходимо либо отменить связанные документы, либо создать новый товар."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "По умолчанию Единица измерения для п {0} не может быть изменен непосредственно, потому что вы уже сделали некоторые сделки (сделок) с другим UOM. Вам нужно будет создать новый пункт для использования другого умолчанию единица измерения."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "По умолчанию Единица измерения для варианта '{0}' должно быть такой же, как в шаблоне '{1}'"
@@ -15960,7 +15973,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Настройки по умолчанию для ваших операций, связанных с запасами"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Шаблоны налогов по умолчанию для продаж, покупок и товаров созданы."
@@ -16051,6 +16064,12 @@ msgstr "Установите тип проекта."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16133,12 +16152,12 @@ msgstr "Удалить лиды и адреса"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Удалить операции"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Удалить все транзакции этой компании"
@@ -16159,8 +16178,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Удаление {0} и всех связанных с ним документов Common Code..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Удаление в процессе!"
@@ -16271,11 +16290,11 @@ msgstr "Поставляемое кол-во"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Поставленное количество (в единицах учета на складе)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16356,7 +16375,7 @@ msgstr "Менеджер по доставке"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16416,11 +16435,11 @@ msgstr "Товар в накладной, готовый к отгрузке"
msgid "Delivery Note Trends"
msgstr "Динамика Накладных"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Уведомление о доставке {0} не проведено"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Накладные"
@@ -16506,10 +16525,6 @@ msgstr "Склад доставки"
msgid "Delivery to"
msgstr "Доставка в"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Склад Доставка требуется для фондового пункта {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16629,8 +16644,8 @@ msgstr "Амортизированная сумма"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16723,7 +16738,7 @@ msgstr "Варианты амортизации"
msgid "Depreciation Posting Date"
msgstr "Дата начисления амортизации"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Дата начисления амортизации не может быть раньше даты готовности к использованию"
@@ -16881,15 +16896,15 @@ msgstr "Разница (Дт - Кт)"
msgid "Difference Account"
msgstr "Разница счета"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Счет разницы в таблице позиций"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Счет разницы должен быть счетом типа «Актив/Пассив» (временное открытие), поскольку эта запись о запасах является начальной записью."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Разница аккаунт должен быть тип счета активов / пассивов, так как это со Примирение запись Открытие"
@@ -17001,15 +17016,15 @@ msgstr "Измерения"
msgid "Direct Expense"
msgstr "Прямые расходы"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Прямые расходы"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Прямая прибыль"
@@ -17090,6 +17105,11 @@ msgstr "Отключить округление итога"
msgid "Disable Serial No And Batch Selector"
msgstr "Отключить выбор серийного номера и партии"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17126,11 +17146,11 @@ msgstr "Отключенный склад {0} не может быть испо
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Отключены правила ценообразования, так как это {} является внутренним переводом"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Цены с учетом налога отключены, так как это {} внутренний перевод"
@@ -17146,7 +17166,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17154,15 +17174,15 @@ msgstr "Отключает автоматическое получение су
msgid "Disassemble"
msgstr "Разобрать"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Заказ на разборку"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Количество для разборки не может быть меньше или равно 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Количество для разборки не может быть меньше или равно 0 ."
@@ -17449,7 +17469,7 @@ msgstr "Причина по усмотрению"
msgid "Dislikes"
msgstr "Дизлайки"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Отправка"
@@ -17530,7 +17550,7 @@ msgstr "Отображаемое имя"
msgid "Disposal Date"
msgstr "Дата утилизации"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Дата списания {0} не может быть раньше даты {1} {2} актива."
@@ -17644,8 +17664,8 @@ msgstr "Название Распределения"
msgid "Distributor"
msgstr "Дистрибьютор"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Оплачено дивидендов"
@@ -17707,7 +17727,7 @@ msgstr "Не показывать символы типа $ и т. п. рядо
msgid "Do not update variants on save"
msgstr "Не обновлять варианты при сохранении"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Вы действительно хотите восстановить этот списанный актив?"
@@ -17731,7 +17751,7 @@ msgstr "Вы хотите уведомить всех клиентов по эл
msgid "Do you want to submit the material request"
msgstr "Вы хотите отправить материальный запрос"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Вы хотите отправить запись о складском запасе?"
@@ -17798,11 +17818,11 @@ msgstr "Документ №"
msgid "Document Type "
msgstr "Тип документа "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Тип документа уже используется как измерение"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Документация"
@@ -17965,12 +17985,6 @@ msgstr "Категории водительских прав"
msgid "Driving License Category"
msgstr "Категория водительских удостоверений"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Процедуры сброса"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17991,12 +18005,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Удаляет существующие процедуры и функции SQL, настроенные в отчете по дебиторской задолженности"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Дата выполнения не может быть позже {0}"
@@ -18155,8 +18163,8 @@ msgstr "Продолжительность (дни)"
msgid "Duration in Days"
msgstr "Продолжительность в днях"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Пошлины и налоги"
@@ -18239,7 +18247,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Каждая транзакция"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Самый ранний"
@@ -18353,6 +18361,10 @@ msgstr "Либо целевой Количество или целевое ко
msgid "Either target qty or target amount is mandatory."
msgstr "Либо целевой Количество или целевое количество является обязательным."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18372,8 +18384,8 @@ msgstr "Электричество"
msgid "Electricity down"
msgstr "Электричество отключено"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Электронное оборудование"
@@ -18577,8 +18589,8 @@ msgstr "Достижения сотрудника"
msgid "Employee Advances"
msgstr "Достижения сотрудников"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Обязательства по выплатам вознаграждений работникам"
@@ -18661,7 +18673,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "Сотрудник {0} не принадлежит компании {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Сотрудник {0} в настоящее время работает на другом рабочем месте. Пожалуйста, назначьте другого сотрудника."
@@ -18677,7 +18689,7 @@ msgstr "Сотрудники"
msgid "Empty"
msgstr "Пустой"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Пустой список для удаления"
@@ -18708,7 +18720,7 @@ msgstr "Включить планирование встреч"
msgid "Enable Auto Email"
msgstr "Включить автоматическую отправку электронной почты"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Включить автоматический повторный заказ"
@@ -18874,12 +18886,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19008,8 +19014,8 @@ msgstr "Дата окончания не может быть до даты на
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19108,8 +19114,8 @@ msgstr "Ввести вручную"
msgid "Enter Serial Nos"
msgstr "Ввести серийные номера"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Введите значение"
@@ -19134,7 +19140,7 @@ msgstr "Введите название для этого списка праз
msgid "Enter amount to be redeemed."
msgstr "Введите сумму к выкупу."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Введите код товара, название будет автоматически заполнено так же, как и код товара при щелчке внутри поля «Название товара»."
@@ -19146,7 +19152,7 @@ msgstr "Введите адрес электронной почты клиент
msgid "Enter customer's phone number"
msgstr "Введите номер телефона клиента"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Введите дату для утилизации актива"
@@ -19190,7 +19196,7 @@ msgstr "Введите имя получателя перед отправкой
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Перед отправкой введите название банка или кредитной организации."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Ввести начальные единицы запаса."
@@ -19198,7 +19204,7 @@ msgstr "Ввести начальные единицы запаса."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Введите количество для производства. Система подберёт сырьевые материалы только при установленном значении."
@@ -19210,8 +19216,8 @@ msgstr "Введите сумму {0}."
msgid "Entertainment & Leisure"
msgstr "Развлечения и досуг"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Представительские расходы"
@@ -19235,8 +19241,8 @@ msgstr "Тип записи"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19297,7 +19303,7 @@ msgstr "Ошибка при проведении записей амортиза
msgid "Error while processing deferred accounting for {0}"
msgstr "Ошибка при обработке отложенного учета для {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Ошибка при перепроведении оценки товара"
@@ -19309,7 +19315,7 @@ msgstr "Ошибка: для этого актива уже учтено {0} п
"\t\t\t\t\tДата «начала амортизации» должна быть не менее чем на {1} периодов позже даты «доступен для использования».\n"
"\t\t\t\t\tПожалуйста, исправьте даты соответствующим образом."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Ошибка: {0} является обязательным полем"
@@ -19355,7 +19361,7 @@ msgstr "Поставка с места нахождения продавца"
msgid "Example URL"
msgstr "Пример URL-адреса"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Пример связанного документа: {0}"
@@ -19375,7 +19381,7 @@ msgstr "Пример: ABCD.#####. Если серия задана, а номе
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Пример: серийный номер {0} зарезервирован в {1}."
@@ -19385,7 +19391,7 @@ msgstr "Пример: серийный номер {0} зарезервирова
msgid "Exception Budget Approver Role"
msgstr "Роль утверждающего исключительные расходы бюджета"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19393,7 +19399,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Избыточное потребление материалов"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Превышение передачи"
@@ -19424,17 +19430,17 @@ msgstr "Прибыль или убыток от обмена"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Обмен Прибыль / Убыток"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Сумма прибыли/убытка от обмена была зарезервирована через {0}"
@@ -19573,7 +19579,7 @@ msgstr "Помощник руководителя"
msgid "Executive Search"
msgstr "Поиск руководителей высшего звена"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Поставки, не облагаемые налогом"
@@ -19660,7 +19666,7 @@ msgstr "Ожидаемая дата закрытия"
msgid "Expected Delivery Date"
msgstr "Ожидаемая дата доставки"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Ожидаемая дата доставки должна быть после даты Сделки"
@@ -19744,7 +19750,7 @@ msgstr "Ожидаемая стоимость после окончания ср
msgid "Expense"
msgstr "Расходы"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Счет расходов / разницы ({0}) должен быть счетом \"Прибыль или убыток\""
@@ -19822,23 +19828,23 @@ msgstr "Расходов счета является обязательным д
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Расходы"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Расходы, включенные в оценку активов"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Затрат, включаемых в оценке"
@@ -19917,7 +19923,7 @@ msgstr "История трудовой деятельности вне комп
msgid "Extra Consumed Qty"
msgstr "Дополнительное потребленное количество"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Дополнительное количество заданий на работу"
@@ -20054,7 +20060,7 @@ msgstr "Не удалось настроить компанию"
msgid "Failed to setup defaults"
msgstr "Не удалось установить значения по умолчанию"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Не удалось настроить значения по умолчанию для страны {0}. Обратитесь в службу поддержки."
@@ -20172,6 +20178,11 @@ msgstr "Извлечь значение из"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Получить развернутую спецификацию (включая узлы)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Найдено только {0} доступных серийных номеров."
@@ -20209,21 +20220,29 @@ msgstr "Сопоставление полей"
msgid "Field in Bank Transaction"
msgstr "Поле в банковской транзакции"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Поля будут скопированы только во время создания."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Файл не относится к данной записи об удалении транзакции"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Файл не найден"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Файл не найден на сервере"
@@ -20431,9 +20450,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Завершить"
@@ -20490,15 +20509,15 @@ msgstr "Количество элементов готовой продукци
msgid "Finished Good Item Quantity"
msgstr "Количество элементов готовой продукции"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Готовая продукция не указана для услуги {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Количество готовой продукции {0} не может быть равно нулю"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Готовая продукция {0} должна быть изготовлена по субподряду"
@@ -20544,7 +20563,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Готовая продукция {0} должна изготавливаться на субподряде."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Готовые продукты"
@@ -20585,7 +20604,7 @@ msgstr "Склад готовой продукции"
msgid "Finished Goods based Operating Cost"
msgstr "Затраты на производство готовой продукции"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Готовый товар {0} не соответствует заказу на работу {1}"
@@ -20726,6 +20745,7 @@ msgstr "Исправлено"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Основное средство"
@@ -20744,7 +20764,7 @@ msgstr "Счет основных средств"
msgid "Fixed Asset Defaults"
msgstr "Настройки по умолчанию для основных средств"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Элемент основных средств не может быть элементом запасов."
@@ -20763,8 +20783,8 @@ msgstr "Коэффициент оборачиваемости основных
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Элемент основных средств {0} не может использоваться в спецификациях."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Основные средства"
@@ -20837,7 +20857,7 @@ msgstr "Согласно календарным месяцам"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Следующие запросы на материалы были созданы автоматически на основании минимального уровня запасов продукта"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Следующие поля обязательны для создания адреса:"
@@ -20894,7 +20914,7 @@ msgstr "Для компании"
msgid "For Item"
msgstr "Для товара"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Для товара {0} нельзя получить больше, чем {1} против {2} {3}"
@@ -20904,7 +20924,7 @@ msgid "For Job Card"
msgstr "Для заказа на работу"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Для операции"
@@ -20925,17 +20945,13 @@ msgstr "Для прайс-листа"
msgid "For Production"
msgstr "Для производства"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Для Количество (Изготовитель Количество) является обязательным"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Для сырья"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "По возвратным счетам-фактурам, влияющим на запасы, позиции с нулевым количеством недопустимы. Затронуты строки: {0}"
@@ -20963,11 +20979,11 @@ msgstr "Для склада"
msgid "For Work Order"
msgstr "Для заказа на работу"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Для элемента {0} количество должно быть отрицательным числом"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Для элемента {0} количество должно быть положительным числом"
@@ -21005,7 +21021,7 @@ msgstr "Для индивидуального поставщика"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Для товара {0} , только {1} активы были созданы или связаны с {2} . Пожалуйста, создайте или свяжите {3} больше активов с соответствующим документом."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Для элемента {0} ставка должна быть положительным числом. Чтобы разрешить отрицательные ставки, включите {1} в {2}"
@@ -21019,7 +21035,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Для операции {0} в строке {1} добавьте сырье или создайте спецификацию материалов для нее."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Для операции {0}: Количество ({1}) не может быть больше ожидаемого количества ({2})"
@@ -21036,7 +21052,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Для прогнозируемых и планируемых количеств система будет учитывать все дочерние склады, входящие в выбранный родительский склад"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Для количества {0} не должно быть больше допустимого количества {1}"
@@ -21045,12 +21061,12 @@ msgstr "Для количества {0} не должно быть больше
msgid "For reference"
msgstr "Для справки"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Для ряда {0} {1}. Чтобы включить {2} в размере Item ряды также должны быть включены {3}"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Для строки {0}: введите запланированное количество"
@@ -21069,7 +21085,7 @@ msgstr "Для условия «Применить правило к друго
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Для удобства клиентов эти коды можно использовать в печатных форматах, таких как счета-фактуры и товарные накладные"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Для изделия {0} количество потребленного материала должно быть {1} согласно спецификации материалов {2}."
@@ -21116,11 +21132,6 @@ msgstr "Прогноз"
msgid "Forecast Demand"
msgstr "Прогноз спроса"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Прогнозируемое количество"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21166,7 +21177,7 @@ msgstr "Сообщения на форуме"
msgid "Forum URL"
msgstr "URL-адрес форума"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Школа Фраппе"
@@ -21211,8 +21222,8 @@ msgstr "Бесплатный товар не указан в правиле це
msgid "Freeze Stocks Older Than (Days)"
msgstr "Заморозить запасы старше (дней)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Грузовые и экспедиторские Сборы"
@@ -21646,8 +21657,8 @@ msgstr "Полностью оплачено"
msgid "Furlong"
msgstr "Фарлонг"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Мебель и сантехника"
@@ -21664,13 +21675,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Будущий платеж Ref"
@@ -21678,7 +21689,7 @@ msgstr "Будущий платеж Ref"
msgid "Future Payments"
msgstr "Будущие платежи"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Будущая дата не допускается"
@@ -21763,9 +21774,9 @@ msgstr "Прибыль/Убыток уже учтены"
msgid "Gain/Loss from Revaluation"
msgstr "Прибыль/убыток от переоценки"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Прибыль / убыток от выбытия основных средств"
@@ -21938,7 +21949,7 @@ msgstr "Получить остаток"
msgid "Get Current Stock"
msgstr "Получить текущий запас"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Получить данные о группе клиентов"
@@ -21996,7 +22007,7 @@ msgstr "Получить местоположение элементов"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22035,7 +22046,7 @@ msgstr "Получить продукты из спецификации"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Получить товары из запросов материалов к этому поставщику"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Получить продукты из продуктового набора"
@@ -22209,7 +22220,7 @@ msgstr "Цели"
msgid "Goods"
msgstr "Товары"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Товары в пути"
@@ -22218,7 +22229,7 @@ msgstr "Товары в пути"
msgid "Goods Transferred"
msgstr "Товар передан"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Товар уже получен против выездной записи {0}"
@@ -22401,7 +22412,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "Комиссия по грантам"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Больше, чем сумма"
@@ -22844,7 +22855,7 @@ msgstr "Помогает распределить бюджет/цели по м
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Вот журналы ошибок для вышеупомянутых неудачных записей об амортизации: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Вот варианты дальнейших действий:"
@@ -22872,7 +22883,7 @@ msgstr "Здесь ваши выходные дни заранее заполн
msgid "Hertz"
msgstr "Герц"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Привет,"
@@ -23071,7 +23082,7 @@ msgstr "Как форматировать и представлять значе
msgid "Hrs"
msgstr "Часы"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Персонал"
@@ -23240,6 +23251,12 @@ msgstr "Если отмечено, сумма налога будет счита
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Если отмечено, сумма налога будет считаться уже включенной печатную ставку/печатную сумму"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Если отмечено, мы создадим демо-данные для изучения системы. Эти демо-данные можно будет удалить позже."
@@ -23458,7 +23475,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Если нет, вы можете Отменить / Отправить эту запись"
@@ -23484,13 +23501,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr "Если выбранное правило ценообразования создано для поля «Ставка», оно перезапишет прейскурант. Ставка правила ценообразования является окончательной, поэтому дальнейшие скидки не применяются. Следовательно, в таких транзакциях, как заказ на продажу, заказ на покупку и т. д., она будет извлечена из поля «Ставка», а не из поля «Ставка прейскуранта»."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Если установлено, система не использует адрес электронной почты пользователя или стандартный исходящий адрес электронной почты для отправки запросов котировок."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Если в результате работы по спецификации возникает брак, необходимо указать склад для бракованных материалов."
@@ -23499,7 +23521,7 @@ msgstr "Если в результате работы по спецификац
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Если учетная запись заморожена, доступ разрешен только ограниченным пользователям."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Если в этой записи предмет используется как предмет с нулевой оценкой, включите параметр «Разрешить нулевую ставку оценки» в таблице предметов {0}."
@@ -23509,7 +23531,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Если в выбранной спецификации указаны операции, система извлечет все операции из спецификации, эти значения можно изменить."
@@ -23586,7 +23608,7 @@ msgstr "Если срок действия баллов лояльности н
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Если да, то этот склад будет использоваться для хранения бракованных материалов"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Если вы ведете учет этого товара на складе, ERPNext сделает запись в бухгалтерской книге для каждой транзакции с этим товаром."
@@ -23600,7 +23622,7 @@ msgstr "Если вам необходимо сверить отдельные
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Если вы все равно хотите продолжить, снимите флажок «Пропустить доступные элементы узлов сборки»."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Если вы все еще хотите продолжить, включите {0}."
@@ -23684,7 +23706,7 @@ msgstr "Игнорировать журналы переоценки обмен
msgid "Ignore Existing Ordered Qty"
msgstr "Игнорировать уже заказанное количество"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Игнорировать существующее прогнозируемое количество"
@@ -23771,12 +23793,12 @@ 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 "Игнорирует устаревшее поле «Открытие» в записи GL, которое позволяет добавлять начальный баланс после того, как система используется при формировании отчетов."
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Нарушение"
@@ -23934,7 +23956,7 @@ msgstr "В производстве"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "В кол-ве"
@@ -24058,7 +24080,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "В этом разделе вы можете определить значения по умолчанию для всей компании, связанные с транзакциями для этого элемента. Например, склад по умолчанию, прайс-лист по умолчанию, поставщик и т. д."
@@ -24289,8 +24311,8 @@ msgstr "Включая элементы для узлов сборки"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24361,7 +24383,7 @@ msgstr "Входящий платеж"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24393,7 +24415,7 @@ msgstr "Некорректное количество остатка после
msgid "Incorrect Batch Consumed"
msgstr "Использована неверная партия"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Неправильная регистрация склада (группы) для повторного заказа"
@@ -24401,7 +24423,7 @@ msgstr "Неправильная регистрация склада (групп
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Неправильное количество компонентов"
@@ -24535,15 +24557,15 @@ msgstr "Указывает, что пакет является частью эт
msgid "Indirect Expense"
msgstr "Косвенные расходы"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Косвенные расходы"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Косвенная прибыль"
@@ -24611,14 +24633,14 @@ msgstr "По инициативе"
msgid "Inspected By"
msgstr "Проверено"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Проверка отклонена"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Инспекция Обязательные"
@@ -24635,8 +24657,8 @@ msgstr "Перед доставкой требуется проверка"
msgid "Inspection Required before Purchase"
msgstr "Необходима проверка перед покупкой"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Подача отчёта о проверке"
@@ -24666,7 +24688,7 @@ msgstr "Замечания по установке"
msgid "Installation Note Item"
msgstr "Установка примечаний к продукту"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Установка Примечание {0} уже представлен"
@@ -24705,11 +24727,11 @@ msgstr "Инструкция"
msgid "Insufficient Capacity"
msgstr "Недостаточная емкость"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Недостаточно разрешений"
@@ -24717,13 +24739,12 @@ msgstr "Недостаточно разрешений"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Недостаточный запас"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Недостаточно запасов для партии"
@@ -24843,13 +24864,13 @@ msgstr "Ссылка на перевод между компаниями"
msgid "Interest"
msgstr "Процент"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Расход по процентам"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Доход по процентам"
@@ -24857,8 +24878,8 @@ msgstr "Доход по процентам"
msgid "Interest and/or dunning fee"
msgstr "Проценты и/или штраф за просрочку"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Проценты по фиксированным депозитам"
@@ -24878,7 +24899,7 @@ msgstr "Внутренний"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Внутренний заказчик для компании {0} уже существует"
@@ -24886,7 +24907,7 @@ msgstr "Внутренний заказчик для компании {0} уже
msgid "Internal Purchase Order"
msgstr "Внутренний заказ на закупку"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Отсутствует ссылка на внутреннюю продажу или доставку."
@@ -24894,7 +24915,7 @@ msgstr "Отсутствует ссылка на внутреннюю прода
msgid "Internal Sales Order"
msgstr "Внутренний заказ на продажу"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Отсутствует ссылка на внутренние продажи"
@@ -24925,7 +24946,7 @@ msgstr "Внутренний поставщик для компании {0} уж
msgid "Internal Transfer"
msgstr "Внутренний трансфер"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Отсутствует ссылка на внутренний перевод"
@@ -24938,7 +24959,12 @@ msgstr "Внутренние переводы"
msgid "Internal Work History"
msgstr "Внутренняя история работы"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Внутренние переводы могут осуществляться только в валюте компании по умолчанию"
@@ -24954,12 +24980,12 @@ msgstr "Интервал должен быть от 1 до 59 минут"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Неверный аккаунт"
@@ -24980,7 +25006,7 @@ msgstr "Неверная сумма"
msgid "Invalid Attribute"
msgstr "Неправильный атрибут"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Недопустимая дата автоматического повторения"
@@ -24993,7 +25019,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Неверный штрих-код. К этому штрих-коду не прикреплено ни одного предмета."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Недействительный общий заказ для выбранного клиента и продукта"
@@ -25009,21 +25035,21 @@ msgstr "Недействительная детская процедура"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Неправильная компания для межфирменной сделки."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Неверный центр затрат"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Неверная дата доставки"
@@ -25061,7 +25087,7 @@ msgstr "Неверная группировка"
msgid "Invalid Item"
msgstr "Недействительный товар"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Неверные значения по умолчанию для товаров"
@@ -25075,7 +25101,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Недопустимая сумма чистой закупки"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Недействительная вступительная запись"
@@ -25083,11 +25109,11 @@ msgstr "Недействительная вступительная запись
msgid "Invalid POS Invoices"
msgstr "Недействительные счета точки продаж"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Неверный родительский счет"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Неверный номер детали"
@@ -25117,12 +25143,12 @@ msgstr "Некорректные настройки учета потерь пр
msgid "Invalid Purchase Invoice"
msgstr "Неверный счет-фактура покупки"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Неверное количество"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Неверное количество"
@@ -25147,12 +25173,12 @@ msgstr "Неверное расписание"
msgid "Invalid Selling Price"
msgstr "Недействительная цена продажи"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Некорректная комбинация серийных номеров и партий"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Неверный исходный и целевой склад"
@@ -25177,7 +25203,7 @@ msgstr "Недопустимая сумма в бухгалтерских зап
msgid "Invalid condition expression"
msgstr "Недействительное выражение условия"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25189,7 +25215,7 @@ msgstr "Неверная формула фильтра. Проверьте си
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Недопустимая потерянная причина {0}, создайте новую потерянную причину"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Недопустимая серия имен (. Отсутствует) для {0}"
@@ -25215,8 +25241,8 @@ msgstr "Неверный Поисковый Запрос"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Недопустимое значение {0} для {1} по отношению к счету {2}"
@@ -25224,7 +25250,7 @@ msgstr "Недопустимое значение {0} для {1} по отнош
msgid "Invalid {0}"
msgstr "Неверный {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Недопустимый {0} для транзакции между компаниями."
@@ -25234,7 +25260,7 @@ msgid "Invalid {0}: {1}"
msgstr "Неверный {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Инвентарь"
@@ -25283,8 +25309,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "Инвестиционные банковские услуги"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Инвестиции"
@@ -25334,7 +25360,7 @@ msgstr "Дисконтирование счета"
msgid "Invoice Document Type Selection Error"
msgstr "Ошибка выбора типа документа счет-фактуры"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Общая сумма счета"
@@ -25439,7 +25465,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25460,7 +25486,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25556,8 +25582,7 @@ msgstr "Альтернатива"
msgid "Is Billable"
msgstr "Является оплачиваемым"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Является контактным лицом для выставления счетов"
@@ -25999,8 +26024,7 @@ msgstr "Является шаблоном"
msgid "Is Transporter"
msgstr "Является транспортером"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Является адресом вашей компании"
@@ -26106,8 +26130,8 @@ msgstr "Тип вопроса"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "Выпустить накладную на возврат с нулевой суммой по существующему счету-фактуре продажи"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26137,11 +26161,11 @@ msgstr "Вопросы"
msgid "Issuing Date"
msgstr "Дата выдачи"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "После объединения позиций может потребоваться несколько часов, чтобы увидеть точные значения запасов."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Это необходимо для отображения подробностей продукта."
@@ -26265,7 +26289,7 @@ msgstr "Курсивный текст для промежуточных итог
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26513,7 +26537,7 @@ msgstr "Корзина товаров"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26575,7 +26599,7 @@ msgstr "Корзина товаров"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26774,13 +26798,13 @@ msgstr "Подробности товара"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26997,7 +27021,7 @@ msgstr "Производитель товара"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27037,10 +27061,10 @@ msgstr "Производитель товара"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27081,10 +27105,6 @@ msgstr "Товар отсутствует на складе"
msgid "Item Price"
msgstr "Цена продукта"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27100,19 +27120,20 @@ msgstr "Настройки цены товара"
msgid "Item Price Stock"
msgstr "Стоимость продукта на складе"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Цена продукта {0} добавлена в прайс-лист {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Цена товара отображается несколько раз в зависимости от прайс-листа, поставщика/клиента, валюты, товара, партии, единицы измерения, количества и дат."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Цена продукта {0} обновлена в прайс-листе {1}"
@@ -27299,11 +27320,11 @@ msgstr "Подробности модификации продукта"
msgid "Item Variant Settings"
msgstr "Параметры модификации продукта"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Модификация продукта {0} с этими атрибутами уже существует"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Обновлены варианты предметов"
@@ -27404,11 +27425,11 @@ msgstr "Товар и склад"
msgid "Item and Warranty Details"
msgstr "Подробности товара и гарантии"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Элемент для строки {0} не соответствует запросу материала"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Продукт имеет модификации"
@@ -27434,11 +27455,7 @@ msgstr "Название продукта"
msgid "Item operation"
msgstr "Операция с товаром"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Количество товара не может быть обновлено, так как сырье уже обработано."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Ставка товара обновлена до нуля, так как для товара {0} установлена опция \"Разрешить нулевую ставку оценки\""
@@ -27457,11 +27474,11 @@ msgstr "Ставка оценки товара пересчитывается с
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Перепроведение оценки товара в процессе. Отчёт может показывать некорректную оценку товара."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Вариант продукта {0} с этими атрибутами уже существует"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27478,7 +27495,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Товар {0} не может быть заказан больше, чем {1} по общему заказу {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Продукт {0} не существует"
@@ -27490,7 +27507,7 @@ msgstr "Продукт {0} не существует или просрочен"
msgid "Item {0} does not exist."
msgstr "Товар {0} не существует."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Товар {0} введён несколько раз."
@@ -27502,15 +27519,15 @@ msgstr "Продукт {0} уже возвращен"
msgid "Item {0} has been disabled"
msgstr "Продукт {0} не годен"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Товар {0} не имеет серийного номера. Только товары с серийным номером могут иметь доставку на основе серийного номера"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Продукт {0} достигокончания срока годности на {1}"
@@ -27522,15 +27539,15 @@ msgstr "Продукт {0} игнорируется, так как это не
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Товар {0} уже зарезервирован/доставлен по заказу на продажу {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Продукт {0} отменен"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Продукт {0} отключен"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27538,7 +27555,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Продукт {0} не сериализованным продуктом"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Продукта {0} нет на складе"
@@ -27546,11 +27563,11 @@ msgstr "Продукта {0} нет на складе"
msgid "Item {0} is not a subcontracted item"
msgstr "Элемент {0} не является субподрядным элементом"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Продукт {0} не активен или истек срок годности"
@@ -27566,7 +27583,7 @@ msgstr "Товар {0} должен быть нескладским товаро
msgid "Item {0} must be a non-stock item"
msgstr "Продукт {0} должен отсутствовать на складе"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Товар {0} не найден в таблице «Поставляемое сырье» в {1} {2}"
@@ -27574,7 +27591,7 @@ msgstr "Товар {0} не найден в таблице «Поставляе
msgid "Item {0} not found."
msgstr "Товар {0} не найден."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Пункт {0}: Заказал Кол-во {1} не может быть меньше минимального заказа Кол-во {2} (определенной в пункте)."
@@ -27582,7 +27599,7 @@ msgstr "Пункт {0}: Заказал Кол-во {1} не может быть
msgid "Item {0}: {1} qty produced. "
msgstr "Элемент {0}: произведено {1} кол-во. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Товар {} не существует."
@@ -27628,7 +27645,7 @@ msgstr "Реестр продаж по продуктам"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Для получения шаблона налога на товар требуется код товара/товара."
@@ -27652,7 +27669,7 @@ msgstr "Каталог товаров"
msgid "Items Filter"
msgstr "Фильтр элементов"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Необходимые предметы"
@@ -27676,11 +27693,11 @@ msgstr "Запрашиваемые продукты"
msgid "Items and Pricing"
msgstr "Продукты и цены"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Позиции не могут быть обновлены, так как для этого субподрядного заказа на продажу существует субподрядный входящий заказ (заказы)."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Обновление позиций невозможно, так как заказ на субподряд создан на основе заказа на закупку {0}."
@@ -27692,7 +27709,7 @@ msgstr "Товары для запроса сырья"
msgid "Items not found."
msgstr "Элементы не найдены."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Ставка по предметам обновлена до нуля, так как опция «Разрешить нулевую ставку оценки» отмечена для следующих предметов: {0}"
@@ -27702,7 +27719,7 @@ msgstr "Ставка по предметам обновлена до нуля,
msgid "Items to Be Repost"
msgstr "Товары к перепроведению"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Предметы для производства необходимы для получения связанного с ними сырья."
@@ -27767,9 +27784,9 @@ msgstr "Производственная мощность"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27831,7 +27848,7 @@ msgstr "Журнал учета рабочего времени"
msgid "Job Card and Capacity Planning"
msgstr "Карта работы и планирование мощностей"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Карточка задания {0} выполнена"
@@ -27907,7 +27924,7 @@ msgstr "Имя исполнителя работ"
msgid "Job Worker Warehouse"
msgstr "Склад исполнителя работ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Карта работы {0} создана"
@@ -28127,7 +28144,7 @@ msgstr "Киловатт"
msgid "Kilowatt-Hour"
msgstr "Киловатт-час"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Пожалуйста, сначала отмените производственные записи по заказу на работу {0}."
@@ -28255,7 +28272,7 @@ msgstr "Последняя дата выполнения"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Последнее обновление записи GL было выполнено {}. Эта операция не допускается, пока система активно используется. Подождите 5 минут перед повторной попыткой."
@@ -28337,7 +28354,7 @@ msgstr "Дата последней проверки углерода не мо
msgid "Last transacted"
msgstr "Последняя транзакция"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Последние"
@@ -28588,12 +28605,12 @@ msgstr "Устаревшие поля"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Юридическое лицо/дочернее предприятие с отдельным планом счетов, принадлежащее Организации."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Судебные издержки"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Пояснение"
@@ -28604,7 +28621,7 @@ msgstr "Пояснение"
msgid "Length (cm)"
msgstr "Длина (см)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Меньше чем сумма"
@@ -28663,7 +28680,7 @@ msgstr "Номер лицензии"
msgid "License Plate"
msgstr "Идентификационный номер"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "предел Скрещенные"
@@ -28724,7 +28741,7 @@ msgstr "Ссылка на запросы материалов"
msgid "Link with Customer"
msgstr "Связь с клиентом"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Связь с поставщиком"
@@ -28745,12 +28762,12 @@ msgstr "Связанные счета-фактуры"
msgid "Linked Location"
msgstr "Связанное местоположение"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Связано с отправленными документами"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Сбой связи"
@@ -28758,7 +28775,7 @@ msgstr "Сбой связи"
msgid "Linking to Customer Failed. Please try again."
msgstr "Связь с клиентом не удалась. Пожалуйста, попробуйте еще раз."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Ссылка на поставщика не удалась. Попробуйте еще раз."
@@ -28816,8 +28833,8 @@ msgstr "Дата начала займа"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Дата начала и срок кредита являются обязательными для сохранения дисконтирования счета"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Кредиты (обязательства)"
@@ -28862,8 +28879,8 @@ msgstr "Записывать курс продажи и покупки това
msgid "Logo"
msgstr "Логотип"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Долгосрочные резервы"
@@ -29064,6 +29081,11 @@ msgstr "Уровень программы лояльности"
msgid "Loyalty Program Type"
msgstr "Тип программы лояльности"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29107,10 +29129,10 @@ msgstr "Неисправность машины"
msgid "Machine operator errors"
msgstr "Ошибки оператора машины"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Основные"
@@ -29353,9 +29375,9 @@ msgstr "Основные/Дополнительные предметы"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Сделать"
@@ -29375,7 +29397,7 @@ msgstr "Сделать запись об амортизации"
msgid "Make Difference Entry"
msgstr "Сделать корректирующую запись"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Срок изготовления"
@@ -29413,12 +29435,12 @@ msgstr "Сделать счет-фактуру продажи"
msgid "Make Serial No / Batch from Work Order"
msgstr "Сделать серийный номер/партию из заказа на работу"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Сделать складской запас"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Создать заказ на субподряд"
@@ -29434,11 +29456,11 @@ msgstr "Позвонить"
msgid "Make project from a template."
msgstr "Сделать проект из шаблона."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Сделать {0} вариант"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Сделать {0} вариантов"
@@ -29446,8 +29468,8 @@ msgstr "Сделать {0} вариантов"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Создание журнальных записей по авансовым счетам: {0} не рекомендуется. Эти журналы не будут доступны для сверки."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Управлять"
@@ -29466,7 +29488,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Управление вашими заказами"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Менеджмент"
@@ -29482,7 +29504,7 @@ msgstr "Управляющий директор"
msgid "Mandatory Accounting Dimension"
msgstr "Обязательное измерение бухгалтерского учета"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Обязательное поле"
@@ -29581,8 +29603,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29661,7 +29683,7 @@ msgstr "Производитель"
msgid "Manufacturer Part Number"
msgstr "Номер партии производителя"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Номер детали производителя {0} недействителен"
@@ -29686,7 +29708,7 @@ msgstr "Производители, используемые в товарах"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29731,10 +29753,6 @@ msgstr "Дата изготовления"
msgid "Manufacturing Manager"
msgstr "Менеджер производства"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Производство Количество является обязательным"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29901,6 +29919,12 @@ msgstr "Семейное положение"
msgid "Mark As Closed"
msgstr "Отметить как закрытое"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29915,12 +29939,12 @@ msgstr "Отметить как закрытое"
msgid "Market Segment"
msgstr "Сегмент рынка"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Маркетинг"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Маркетинговые расходы"
@@ -29999,7 +30023,7 @@ msgstr ""
msgid "Material"
msgstr "Материал"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Расход материала"
@@ -30007,7 +30031,7 @@ msgstr "Расход материала"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Потребление материалов для производства"
@@ -30088,7 +30112,7 @@ msgstr "Материал Поступление"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30185,11 +30209,11 @@ msgstr "Позиция плана запроса материала"
msgid "Material Request Type"
msgstr "Тип запросов на материалы"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Запрос материала не создан, так как количество сырья уже доступно."
@@ -30257,7 +30281,7 @@ msgstr "Материал возвращен из незавершенного п
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30323,12 +30347,12 @@ msgstr "Материал Поставщику"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Материалы уже получены на основании {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Материалы необходимо перевести на склад незавершенного производства для карточки задания {0}"
@@ -30399,9 +30423,9 @@ msgstr "Макс. балл"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Максимальная скидка, разрешенная для товара: {0} составляет {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30433,11 +30457,11 @@ msgstr "Максимальная сумма платежа"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Максимальные образцы - {0} могут сохраняться для Batch {1} и Item {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Максимальные образцы - {0} уже сохранены для Batch {1} и Item {2} в пакете {3}."
@@ -30498,15 +30522,10 @@ msgstr "Мегаджоуль"
msgid "Megawatt"
msgstr "Мегаватт"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Упомяните коэффициент оценки в мастере предметов."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Укажите, если счёт дебиторской задолженности нестандартный"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30556,7 +30575,7 @@ msgstr "Слияние с существующей учетной записью
msgid "Merged"
msgstr "Объединенные"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Объединение возможно только в том случае, если следующие свойства в обеих записях одинаковы: Группа, Корневой тип, Компания и Валюта счета"
@@ -30586,7 +30605,7 @@ msgstr "Сообщение будет отправлено пользовате
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Сообщения длиной более 160 символов будут разделены на несколько сообщений"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30787,7 +30806,7 @@ msgstr "Мин Кол-во не может быть больше, чем мак
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Минимальное количество должно быть больше, чем количество повторного заказа"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Мин. значение: {0}, макс. значение: {1}, с шагом: {2}"
@@ -30876,8 +30895,8 @@ msgstr "Минуты"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Прочие расходы"
@@ -30885,15 +30904,15 @@ msgstr "Прочие расходы"
msgid "Mismatch"
msgstr "Несоответствие"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Отсутствует"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Отсутствует аккаунт"
@@ -30923,7 +30942,7 @@ msgstr "Отсутствуют фильтры"
msgid "Missing Finance Book"
msgstr "Отсутствует финансовая книга"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Отсутствующая готовая продукция"
@@ -30931,7 +30950,7 @@ msgstr "Отсутствующая готовая продукция"
msgid "Missing Formula"
msgstr "Отсутствует формула"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Отсутствующие предметы"
@@ -30968,7 +30987,7 @@ msgid "Missing required filter: {0}"
msgstr "Отсутствует требуемый фильтр: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Отсутствующие значение"
@@ -31217,11 +31236,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Найдено несколько программ лояльности для клиента {}. Выберите вручную."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Несколько записей открытия POS"
@@ -31243,11 +31262,11 @@ msgstr "Несколько вариантов"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Несколько финансовых лет существуют на дату {0}. Пожалуйста, установите компанию в финансовый год"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Нельзя отметить несколько товаров как готовую продукцию"
@@ -31256,7 +31275,7 @@ msgid "Music"
msgstr "Музыка"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31343,7 +31362,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31387,7 +31406,7 @@ msgstr "Анализ потребностей"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Отрицательное количество недопустимо"
@@ -31396,7 +31415,7 @@ msgstr "Отрицательное количество недопустимо"
msgid "Negative Stock Error"
msgstr "Отрицательная ошибка запаса"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Отрицательный Оценка курс не допускается"
@@ -31702,7 +31721,7 @@ msgstr "Чистый вес"
msgid "Net Weight UOM"
msgstr "Чистый вес (ед. измерения)"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Чистая общая потеря точности расчетов"
@@ -31879,7 +31898,7 @@ msgstr "Новое название склада"
msgid "New Workplace"
msgstr "Новое рабочее место"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Новый кредитный лимит меньше текущей суммы задолженности для клиента. Кредитный лимит должен быть зарегистрировано не менее {0}"
@@ -31933,7 +31952,7 @@ msgstr "Следующее письмо будет отправлено:"
msgid "No Account Data row found"
msgstr "Не найдено ни одной строки данных учетной записи "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Нет аккаунта, соответствующего этим фильтрам: {}"
@@ -31946,7 +31965,7 @@ msgstr "Нет действий"
msgid "No Answer"
msgstr "Нет ответа"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Не найден клиент для межкорпоративных транзакций, представляющий компанию {0}"
@@ -31959,7 +31978,7 @@ msgstr "Клиенты с выбранными параметрами не на
msgid "No Delivery Note selected for Customer {}"
msgstr "Нет примечания о доставке для клиента {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "В списке «Для удаления» нет DocTypes. Пожалуйста, сгенерируйте или импортируйте список перед отправкой."
@@ -31975,7 +31994,7 @@ msgstr "Нет продукта со штрих-кодом {0}"
msgid "No Item with Serial No {0}"
msgstr "Нет продукта с серийным номером {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Не выбрано ни одного товара для передачи."
@@ -32010,7 +32029,7 @@ msgstr "Не найден профиль POS. Сначала создайте н
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Нет разрешения"
@@ -32039,19 +32058,19 @@ msgstr "В настоящее время нет в наличии"
msgid "No Summary"
msgstr "Нет сводной информации"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Для транзакций между компаниями не найден поставщик, представляющий компанию {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Данные о налоговых удержаниях не найдены для текущей даты."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Для компании {0} в категории удержания налогов {1} не установлен счет для удержания налогов."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Нет условий"
@@ -32081,7 +32100,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Для элемента {0} не найдено активной спецификации. Доставка по серийному номеру не может быть гарантирована"
@@ -32275,7 +32294,7 @@ msgstr "Количество рабочих мест"
msgid "No open Material Requests found for the given criteria."
msgstr "Не найдено открытых заявок на материалы по заданным критериям."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Не найдено открытых записей открытия POS для профиля POS {0}."
@@ -32299,7 +32318,7 @@ msgstr "Неоплаченные счета требуют переоценки
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Не найдено ни одного невыполненного {0} для {1} {2}, соответствующего указанным вами фильтрам."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Ожидается, что запросы материала не будут найдены для ссылок на данные предметы."
@@ -32370,7 +32389,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Записи в журнале складского учёта не созданы. Пожалуйста, правильно укажите количество или оценочную стоимость товаров и попробуйте снова."
@@ -32403,7 +32422,7 @@ msgstr "Нет значений"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Нет {0} найдено для транзакций Inter Company."
@@ -32448,8 +32467,8 @@ msgstr "Некоммерческое предприятие"
msgid "Non stock items"
msgstr "Нет на складе"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Долгосрочные обязательства"
@@ -32550,7 +32569,7 @@ msgstr "Не удалось найти первый финансовый год
msgid "Not allow to set alternative item for the item {0}"
msgstr "Не разрешить установку альтернативного элемента для элемента {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Не разрешено создавать учетное измерение для {0}"
@@ -32604,7 +32623,7 @@ msgstr "Примечание: если вы хотите использоват
msgid "Note: Item {0} added multiple times"
msgstr "Примечание: элемент {0} добавлен несколько раз"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Примечание: Оплата Вступление не будет создана, так как \"Наличные или Банковский счет\" не был указан"
@@ -32612,7 +32631,7 @@ msgstr "Примечание: Оплата Вступление не будет
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Примечание: Эта МВЗ является Группа. Невозможно сделать бухгалтерские проводки против групп."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Примечание: Для объединения товаров создайте отдельную сверку остатков для старого товара {0}"
@@ -32795,6 +32814,11 @@ msgstr "Номер новой учетной записи, она будет в
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Количество нового МВЗ, оно будет включено в название МВЗ в качестве префикса"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32854,18 +32878,18 @@ msgstr "Значение одометра (последнее)"
msgid "Offer Date"
msgstr "Дата предложения"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Офисное оборудование"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Эксплуатационные расходы на офис"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Аренда площади для офиса"
@@ -32993,7 +33017,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "После установки этот счет будет приостановлен до установленной даты"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "После закрытия заказа на работу его нельзя возобновить."
@@ -33033,7 +33057,7 @@ msgstr "Поддерживаются только \"платежные запи
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Для импорта данных можно использовать только файлы CSV и Excel. Проверьте формат файла, который вы пытаетесь загрузить"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Разрешается использовать только CSV-файлы"
@@ -33052,7 +33076,7 @@ msgstr "Вычесть налог только с суммы превышени
msgid "Only Include Allocated Payments"
msgstr "Включать только распределенные платежи"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Только родитель может быть типа {0}"
@@ -33089,7 +33113,7 @@ msgstr "При применении ненулевой комиссии не д
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Для заказа на работу {1} можно создать только одну запись {0}"
@@ -33307,8 +33331,8 @@ msgstr "Начальный баланс = Начало периода, Коне
msgid "Opening Balance Details"
msgstr "Информация о начальном балансе"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Начальная Балансовая стоимость собственных средств"
@@ -33331,7 +33355,7 @@ msgstr "Начальная дата"
msgid "Opening Entry"
msgstr "Начальная запись"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Открывающая проводка не может быть создана после формирования проводки закрытия периода."
@@ -33364,7 +33388,7 @@ msgid "Opening Invoice Tool"
msgstr "Инструмент для открытия счета-фактуры"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "В начальном счете-фактуре есть корректировка на округление {0}. Счет '{1}' необходим для записи этих значений. Пожалуйста, установите его для компании: {2}. Или можно включить '{3}', чтобы не записывать корректировку на округление."
@@ -33400,16 +33424,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Начальный запас"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33427,12 +33451,15 @@ msgstr "Начальное значение"
msgid "Opening and Closing"
msgstr "Открытие и закрытие"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Создание начального остатка товара поставлено в очередь и будет выполнено в фоновом режиме. Пожалуйста, проверьте данные о поступлении товара через некоторое время."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Рабочий компонент"
@@ -33464,7 +33491,7 @@ msgstr "Операционные расходы (в валюте компани
msgid "Operating Cost Per BOM Quantity"
msgstr "Операционные расходы на количество по спецификации материалов"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Эксплуатационные расходы согласно заказу на работу / спецификации"
@@ -33507,15 +33534,15 @@ msgstr "Описание операции"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Идентификатор операции"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Код операции"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33540,7 +33567,7 @@ msgstr "Номер строки операции"
msgid "Operation Time"
msgstr "Время операции"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Время работы должно быть больше, чем 0 для операции {0}"
@@ -33555,11 +33582,11 @@ msgstr "Для какого количества готовой продукци
msgid "Operation time does not depend on quantity to produce"
msgstr "Время работы не зависит от количества производимой продукции"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Операция {0} добавлена несколько раз в рабочее задание {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Операция {0} не относится к рабочему заданию {1}"
@@ -33575,9 +33602,9 @@ msgstr "Операция {0} больше, чем имеющихся часов
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33750,7 +33777,7 @@ msgstr "Возможность {0} создана"
msgid "Optimize Route"
msgstr "Оптимизировать маршрут"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33900,7 +33927,7 @@ msgstr "Заказанное количество"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Заказы"
@@ -34016,7 +34043,7 @@ msgstr "Унция/галлон (США)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Из кол-ва"
@@ -34054,7 +34081,7 @@ msgstr "Гарантия недействительна"
msgid "Out of stock"
msgstr "Нет в наличии"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Устаревшая запись открытия POS"
@@ -34073,6 +34100,7 @@ msgstr "Исходящий платеж"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Исходящий уровень"
@@ -34108,7 +34136,7 @@ msgstr "Остаток (в валюте компании)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34118,7 +34146,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34178,17 +34206,22 @@ msgstr "Допустимое превышение суммы по счёту-ф
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Допустимое превышение поставки/приема (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Допустимое превышение при подборе"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Превышение по получению"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Избыточное получение/доставка {0} {1} игнорируется для товара {2}, так как у вас роль {3}."
@@ -34208,11 +34241,11 @@ msgstr "Допустимое превышение при передаче (%)"
msgid "Over Withheld"
msgstr "Сверху утаено"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Избыточно выставленная сумма {0} {1} игнорируется для товара {2}, так как у вас есть роль {3}."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Избыточно выставленная сумма {} игнорируется, так как у вас есть роль {3}."
@@ -34512,7 +34545,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "Запись открытия точки продаж"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Запись открытия точки продаж — {0} устарела. Пожалуйста, закройте точку продаж и создайте новую запись открытия точки продаж."
@@ -34533,7 +34566,7 @@ msgstr "Детали записи открытия точки продаж"
msgid "POS Opening Entry Exists"
msgstr "Запись открытия точки продаж уже существует"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Запись открытия точки продаж отсутствует"
@@ -34569,7 +34602,7 @@ msgstr "Метод оплаты точки продаж"
msgid "POS Profile"
msgstr "Профиль точки продаж"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Профиль точки продаж — {0} имеет несколько открытых записей открытия точки продаж. Пожалуйста, закройте или отмените существующие записи перед продолжением."
@@ -34587,11 +34620,11 @@ msgstr "Пользователь профиля точки продаж"
msgid "POS Profile doesn't match {}"
msgstr "Профиль точки продаж не соответствует {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Профиль точки продаж обязателен для отметки этого счета как транзакции точки продаж."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Для создания записи точки продаж требуется профиль точки продаж"
@@ -34697,7 +34730,7 @@ msgstr "Упаковано"
msgid "Packed Items"
msgstr "Упакованные товары"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Упакованные товары не могут быть внутренне перемещены"
@@ -34734,7 +34767,7 @@ msgstr "Упаковочный лист"
msgid "Packing Slip Item"
msgstr "Строка упаковочного листа"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Упаковочный лист(ы) отменены"
@@ -34775,7 +34808,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34841,7 +34874,7 @@ msgid "Paid To Account Type"
msgstr "Тип счета для оплаты"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Оплаченная сумма + сумма списания не могут быть больше общего итога"
@@ -34935,7 +34968,7 @@ msgstr "Родительская партия"
msgid "Parent Company"
msgstr "Материнская компания"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Материнская компания должна быть группой компаний"
@@ -35062,7 +35095,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Частично переданные материалы"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Частичная оплата в операциях точки продаж не разрешена."
@@ -35275,7 +35308,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35302,7 +35335,7 @@ msgstr "Партия"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Партия аккаунт"
@@ -35335,7 +35368,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Номер счета контрагента (выписка из банка)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Валюта ({1}) счета контрагента {0} и валюта документа ({2}) должны быть одинаковыми"
@@ -35487,7 +35520,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35596,7 +35629,7 @@ msgstr "Прошедшие события"
msgid "Pause"
msgstr "Пауза"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Приостановить работу"
@@ -35647,7 +35680,7 @@ msgid "Payable"
msgstr "К оплате"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35681,7 +35714,7 @@ msgstr "Настройки плательщика"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35828,7 +35861,7 @@ msgstr "Оплата запись была изменена после того,
msgid "Payment Entry is already created"
msgstr "Оплата запись уже создан"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Платежная запись {0} связана с заказом {1}, проверьте, следует ли ее включить в качестве аванса в этом счете-фактуре."
@@ -36053,7 +36086,7 @@ msgstr "Ссылки на платежи"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36118,7 +36151,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36147,7 +36180,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36203,6 +36236,7 @@ msgstr "Статус условий оплаты для заказа на про
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36217,6 +36251,7 @@ msgstr "Статус условий оплаты для заказа на про
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36274,7 +36309,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Способы оплаты обязательны. Пожалуйста, добавьте хотя бы один способ оплаты."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36349,8 +36384,8 @@ msgstr "Платежи обновлены."
msgid "Payroll Entry"
msgstr "Запись по расчету заработной платы"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Расчет заработной платы оплачивается"
@@ -36397,10 +36432,14 @@ msgstr "В ожидании Деятельность"
msgid "Pending Amount"
msgstr "В ожидании Сумма"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36409,9 +36448,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Количество в ожидании"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36441,6 +36489,14 @@ msgstr "В ожидании деятельность на сегодняшний
msgid "Pending processing"
msgstr "В ожидании обработки"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Пенсионные фонды"
@@ -36551,7 +36607,7 @@ msgstr "Анализ восприятия"
msgid "Period Based On"
msgstr "Период на основе"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Период закрыт"
@@ -37115,8 +37171,8 @@ msgstr "Выберите Дашборд"
msgid "Plant Floor"
msgstr "Этаж завода"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Растения и Механизмов"
@@ -37152,7 +37208,7 @@ msgstr "Пожалуйста, установите приоритет"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Установите группу поставщиков в разделе «Настройки покупок»."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Пожалуйста, укажите счет"
@@ -37200,7 +37256,7 @@ msgstr "Пожалуйста, добавьте столбец «Банковск
msgid "Please add the account to root level Company - {0}"
msgstr "Пожалуйста, добавьте счет в корневой уровень компании - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Пожалуйста, добавьте аккаунт в компанию корневого уровня - {}"
@@ -37208,7 +37264,7 @@ msgstr "Пожалуйста, добавьте аккаунт в компани
msgid "Please add {1} role to user {0}."
msgstr "Пожалуйста, добавьте роль {1} пользователю {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Пожалуйста, измените количество или отредактируйте {0}, чтобы продолжить."
@@ -37216,7 +37272,7 @@ msgstr "Пожалуйста, измените количество или от
msgid "Please attach CSV file"
msgstr "Прикрепите CSV-файл"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Пожалуйста, отмените и измените платежную запись"
@@ -37250,7 +37306,7 @@ msgstr "Пожалуйста, проверьте либо операционны
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Пожалуйста, проверьте сообщение об ошибке и примите необходимые меры для ее исправления, а затем снова повторите проводку."
@@ -37275,11 +37331,15 @@ msgstr "Пожалуйста, нажмите на кнопку \"Создать
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Пожалуйста, нажмите на кнопку \"Создать расписание\", чтобы получить график"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Пожалуйста, свяжитесь с любым из следующих пользователей, чтобы увеличить кредитные лимиты для {0}: {1}"
@@ -37287,11 +37347,11 @@ msgstr "Пожалуйста, свяжитесь с любым из следую
msgid "Please contact any of the following users to {} this transaction."
msgstr "Пожалуйста, свяжитесь с любым из следующих пользователей, чтобы {} осуществить эту транзакцию."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Пожалуйста, свяжитесь с вашим администратором, чтобы продлить кредитные лимиты на {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Преобразуйте родительскую учетную запись в соответствующей дочерней компании в групповую."
@@ -37303,11 +37363,11 @@ msgstr "Создайте клиента из обращения {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Пожалуйста, создайте документы на поставку по счетам-фактурам, для которых включена функция «Обновить запасы»."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "При необходимости создайте новое измерение учета."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Пожалуйста, создайте покупку из внутреннего документа продажи или поставки"
@@ -37315,11 +37375,11 @@ msgstr "Пожалуйста, создайте покупку из внутре
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Создайте квитанцию о покупке или фактуру покупки для товара {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Пожалуйста, удалите комплект товаров {0} перед объединением {1} в {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Пожалуйста, временно отключите рабочий процесс для записей в журнале {0}"
@@ -37327,7 +37387,7 @@ msgstr "Пожалуйста, временно отключите рабочий
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Пожалуйста, не учитывайте расходы по нескольким активам в счете одного актива."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Пожалуйста, не создавайте более 500 предметов одновременно"
@@ -37351,7 +37411,7 @@ msgstr "Пожалуйста, включайте эту функцию толь
msgid "Please enable {0} in the {1}."
msgstr "Пожалуйста, включите {0} в {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Пожалуйста, включите {} в {}, чтобы разрешить один и тот же товар в нескольких строках"
@@ -37363,20 +37423,20 @@ msgstr "Пожалуйста, убедитесь, что счёт {0} являе
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 "Пожалуйста, убедитесь, что счёт {0} {1} является счётом кредиторской задолженности. Вы можете изменить тип счёта на кредиторскую задолженность или выбрать другой счёт."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Пожалуйста, убедитесь, что счёт {} является счётом бухгалтерского баланса."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Убедитесь, что {} счет {} является счетом дебиторской задолженности."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Пожалуйста, введите разницу счета или установить учетную запись по умолчанию для компании {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Пожалуйста, введите счет для изменения высоты"
@@ -37384,15 +37444,15 @@ msgstr "Пожалуйста, введите счет для изменения
msgid "Please enter Approving Role or Approving User"
msgstr "Пожалуйста, введите утверждении роли или утверждении Пользователь"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Пожалуйста, введите номер партии"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Пожалуйста, введите МВЗ"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Укажите дату поставки"
@@ -37400,7 +37460,7 @@ msgstr "Укажите дату поставки"
msgid "Please enter Employee Id of this sales person"
msgstr "Пожалуйста, введите идентификатор сотрудника этого продавца"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Пожалуйста, введите Expense счет"
@@ -37409,7 +37469,7 @@ msgstr "Пожалуйста, введите Expense счет"
msgid "Please enter Item Code to get Batch Number"
msgstr "Пожалуйста, введите код товара, чтобы получить номер партии"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Пожалуйста, введите Код товара, чтобы получить партию не"
@@ -37425,7 +37485,7 @@ msgstr "Сначала введите данные по обслуживанию
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Пожалуйста, введите Запланированное Количество по пункту {0} в строке {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Пожалуйста, сначала введите производство продукта"
@@ -37445,7 +37505,7 @@ msgstr "Пожалуйста, введите дату Ссылка"
msgid "Please enter Root Type for account- {0}"
msgstr "Пожалуйста, укажите корневой тип для счёта {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Пожалуйста, введите серийный номер"
@@ -37462,7 +37522,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Пожалуйста, укажите склад и дату"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Пожалуйста, введите списать счет"
@@ -37482,7 +37542,7 @@ msgstr "Введите хотя бы одну дату поставки и ко
msgid "Please enter company name first"
msgstr "Пожалуйста, введите название компании сначала"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Пожалуйста, введите валюту по умолчанию в компании Master"
@@ -37510,7 +37570,7 @@ msgstr "Пожалуйста, введите даты снятия."
msgid "Please enter serial nos"
msgstr "Пожалуйста, введите серийные номера"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Пожалуйста, введите название компании для подтверждения"
@@ -37578,11 +37638,11 @@ msgstr "Убедитесь, что указанные выше сотрудни
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Убедитесь, что в заголовке используемого вами файла присутствует столбец «Учетная запись родителя»."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Пожалуйста, убедитесь, что вы действительно хотите удалить все транзакции для компании. Ваши основные данные останется, как есть. Это действие не может быть отменено."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Пожалуйста, укажите «Единицу измерения веса» вместе с весом."
@@ -37641,7 +37701,7 @@ msgstr "Пожалуйста, выберите Тип шаблона, ч
msgid "Please select Apply Discount On"
msgstr "Пожалуйста, выберите Применить скидки на"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Выберите спецификацию для продукта {0}"
@@ -37657,7 +37717,7 @@ msgstr "Пожалуйста, выберите банковский счет"
msgid "Please select Category first"
msgstr "Пожалуйста, выберите категорию первый"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37687,7 +37747,7 @@ msgstr "Выберите дата завершения для журнала о
msgid "Please select Customer first"
msgstr "Пожалуйста, сначала выберите клиента"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Пожалуйста, выберите Существующую компанию для создания плана счетов"
@@ -37696,8 +37756,8 @@ msgstr "Пожалуйста, выберите Существующую комп
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Пожалуйста, выберите готовый товар для услуги {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Пожалуйста, сначала выберите код продукта"
@@ -37729,11 +37789,11 @@ msgstr "Пожалуйста, выберите проводки Дата пер
msgid "Please select Price List"
msgstr "Пожалуйста, выберите прайс-лист"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Пожалуйста, выберите количество продуктов {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Сначала выберите «Хранилище хранения образцов» в разделе «Настройки запаса»"
@@ -37749,7 +37809,7 @@ msgstr "Пожалуйста, выберите дату начала и дату
msgid "Please select Stock Asset Account"
msgstr "Выберите счёт учёта товарных запасов"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Выберите счет нереализованной прибыли/убытка или добавьте счет нереализованной прибыли/убытка по умолчанию для компании {0}"
@@ -37766,7 +37826,7 @@ msgstr "Пожалуйста, выберите компанию"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Пожалуйста, сначала выберите компанию."
@@ -37790,7 +37850,7 @@ msgstr "Пожалуйста, выберите поставщика"
msgid "Please select a Warehouse"
msgstr "Пожалуйста, выберите склад"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Пожалуйста, сначала выберите заказ на работу."
@@ -37863,11 +37923,15 @@ msgstr "Пожалуйста, выберите значение для {0} пр
msgid "Please select an item code before setting the warehouse."
msgstr "Пожалуйста, выберите код товара перед настройкой склада."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Выберите хотя бы один фильтр: код товара, партия или серийный номер."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37887,7 +37951,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr "Пожалуйста, выберите хотя бы один товар для продолжения"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Пожалуйста, выберите хотя бы одну операцию для создания производственного наряда"
@@ -37945,7 +38009,7 @@ msgstr "Пожалуйста, выберите компанию"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Выберите несколько типов программ для нескольких правил сбора."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Пожалуйста, сначала выберите склад"
@@ -37974,7 +38038,7 @@ msgstr "Пожалуйста, выберите допустимый тип до
msgid "Please select weekly off day"
msgstr "Пожалуйста, выберите в неделю выходной"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Пожалуйста, выберите {0} первый"
@@ -37983,11 +38047,11 @@ msgstr "Пожалуйста, выберите {0} первый"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Пожалуйста, установите «Применить дополнительную скидку»"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Пожалуйста, установите «Центр затрат на амортизацию активов» в компании {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Пожалуйста, установите «Счет прибылей/убытков при реализации активов» в компании {0}"
@@ -37999,7 +38063,7 @@ msgstr "Пожалуйста, установите «{0}» в компании:
msgid "Please set Account"
msgstr "Пожалуйста, установите счет"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Пожалуйста, установите счет для изменения суммы"
@@ -38029,7 +38093,7 @@ msgstr "Укажите компанию"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Пожалуйста, укажите адрес клиента, чтобы определить, является ли транзакция экспортной."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Пожалуйста, установите Амортизация соответствующих счетов в Asset Категория {0} или компании {1}"
@@ -38047,7 +38111,7 @@ msgstr "Пожалуйста, установите фискальный код
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Пожалуйста, установите фискальный код для государственного органа '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Пожалуйста, укажите счёт основных средств в категории активов {0}"
@@ -38093,7 +38157,7 @@ msgstr "Укажите компанию"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Пожалуйста, установите Центр затрат для Актива или установите Центр затрат на амортизацию Актива для Компании {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Пожалуйста, установите список праздников по умолчанию для компании {0}"
@@ -38130,23 +38194,23 @@ msgstr "Пожалуйста, укажите хотя бы одну строку
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Пожалуйста, укажите как ИНН, так и Фискальный код для компании {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Пожалуйста, установите Cash умолчанию или банковский счет в режим оплаты {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Установите по умолчанию наличный или банковский счет в режиме оплаты {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Установите по умолчанию наличный или банковский счет в режиме оплаты {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Пожалуйста, установите по умолчанию счет учета прибыли/убытка от курсовых разниц в компании {}"
@@ -38175,7 +38239,7 @@ msgstr "Пожалуйста, установите значение по умо
msgid "Please set filter based on Item or Warehouse"
msgstr "Пожалуйста, установите фильтр, основанный на пункте или на складе"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Пожалуйста, установите один из следующих вариантов:"
@@ -38183,7 +38247,7 @@ msgstr "Пожалуйста, установите один из следующ
msgid "Please set opening number of booked depreciations"
msgstr "Пожалуйста, укажите начальное количество проведённых амортизаций"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Пожалуйста, установите повторяющиеся после сохранения"
@@ -38195,15 +38259,15 @@ msgstr "Пожалуйста, установите адрес клиента"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Пожалуйста, установите Центр затрат по умолчанию в {0} компании."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Сначала укажите код продукта"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Пожалуйста, укажите целевой склад в производственном наряде"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Пожалуйста, укажите склад незавершённого производства в производственном наряде"
@@ -38242,7 +38306,7 @@ msgstr "Пожалуйста, установите {0} в создателе с
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Пожалуйста, установите {0} в компании {1} для учета прибыли/убытка от курсовой разницы"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Пожалуйста, установите {0} на {1}, тот же счет, который использовался в исходном счете {2}."
@@ -38264,7 +38328,7 @@ msgstr "Пожалуйста, сформулируйте Компания"
msgid "Please specify Company to proceed"
msgstr "Пожалуйста, сформулируйте Компания приступить"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Пожалуйста, укажите действительный идентификатор строки для строки {0} в таблице {1}"
@@ -38277,7 +38341,7 @@ msgstr "Пожалуйста, сначала введите {0}."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Пожалуйста, укажите как минимум один атрибут в таблице атрибутов"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Пожалуйста, сформулируйте либо Количество или оценка Оценить или оба"
@@ -38382,8 +38446,8 @@ msgstr "Строка маршрута доставки"
msgid "Post Title Key"
msgstr "Ключ заголовка сообщения"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Почтовые расходы"
@@ -38448,7 +38512,7 @@ msgstr "Опубликовано"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38466,7 +38530,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38588,10 +38652,6 @@ msgstr "Дата и время публикации"
msgid "Posting Time"
msgstr "Время публикации"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Дата публикации и размещения время является обязательным"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38665,18 +38725,23 @@ msgstr "При поддержке {0}"
msgid "Pre Sales"
msgstr "Предпродажа"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Предпочтение"
@@ -38849,6 +38914,7 @@ msgstr "Категория ценовых скидок"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38872,6 +38938,7 @@ msgstr "Категория ценовых скидок"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38923,7 +38990,7 @@ msgstr "Прайс лист страны"
msgid "Price List Currency"
msgstr "Валюта прайс-листа"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Валюта прайс-листа не выбрана"
@@ -39278,7 +39345,7 @@ msgstr "Распечатать квитанцию"
msgid "Print Receipt on Order Complete"
msgstr "Печать квитанции при завершении заказа"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Печать единиц измерения после количества"
@@ -39287,8 +39354,8 @@ msgstr "Печать единиц измерения после количест
msgid "Print Without Amount"
msgstr "Печать без суммы"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Печать и канцелярские"
@@ -39296,7 +39363,7 @@ msgstr "Печать и канцелярские"
msgid "Print settings updated in respective print format"
msgstr "Настройки печати обновляется в соответствующем формате печати"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Печать налогов с нулевой суммой"
@@ -39399,10 +39466,6 @@ msgstr "Проблема"
msgid "Procedure"
msgstr "Процедура"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Процедуры отменены"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39456,7 +39519,7 @@ msgstr "Процент потерь в процессе не может прев
msgid "Process Loss Qty"
msgstr "Кол-во потерь в процессе"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Количество технологических потерь"
@@ -39537,6 +39600,10 @@ msgstr "Процесс подписки"
msgid "Process in Single Transaction"
msgstr "Процесс в одной транзакции"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39632,8 +39699,8 @@ msgstr "Продукт"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39698,7 +39765,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Производство"
@@ -39912,7 +39979,7 @@ msgstr "Процент выполнения задачи не может пре
msgid "Progress (%)"
msgstr "Прогресс (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Приглашение к сотрудничеству в проекте"
@@ -39956,7 +40023,7 @@ msgstr "Статус проекта"
msgid "Project Summary"
msgstr "Резюме проекта"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Краткое описание проекта для {0}"
@@ -40087,7 +40154,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40233,7 +40300,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Перспективные, но не работающие"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Защищенный DocType"
@@ -40248,7 +40315,7 @@ msgstr "Укажите адрес электронной почты, зарег
msgid "Providing"
msgstr "Предоставление"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Предварительный счет"
@@ -40320,8 +40387,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40644,7 +40712,7 @@ msgstr "Создан заказ на закупку {0}"
msgid "Purchase Order {0} is not submitted"
msgstr "Заказ на закупку {0} не проведен"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Заказы"
@@ -40659,7 +40727,7 @@ msgstr "Количество заказов на покупку"
msgid "Purchase Orders Items Overdue"
msgstr "Товары в заказах на покупку с истекшим сроком"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Заказы на поставку не допускаются для {0} из-за того, что система показателей имеет значение {1}."
@@ -40674,7 +40742,7 @@ msgstr "Заказы на закупку для выставления счет
msgid "Purchase Orders to Receive"
msgstr "Заказы на закупку для получения"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Заказы на покупку {0} разъединены"
@@ -40808,7 +40876,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Налог на покупку шаблон"
@@ -40906,6 +40974,7 @@ msgstr "Покупка"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40915,10 +40984,6 @@ msgstr "Покупка"
msgid "Purpose"
msgstr "Цель"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Цель должна быть одна из {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40974,6 +41039,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41022,6 +41088,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41130,11 +41197,11 @@ msgstr "Количество на единицу"
msgid "Qty To Manufacture"
msgstr "Кол-во для производства"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Количество для производства ({0}) не может быть дробным для единицы измерения {2}. Чтобы разрешить это, отключите '{1}' в единице измерения {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "Количество к производству в карточке задания не может быть больше, чем Количество к производству в заказе на работу для операции {0}. Решение: Вы можете либо уменьшить Количество к производству в карточке задания, либо установить «Процент перепроизводства для заказа на работу» в {1}."
@@ -41185,8 +41252,8 @@ msgstr "Количество в единицах измерения запасо
msgid "Qty for which recursion isn't applicable."
msgstr "Количество, для которого рекурсия неприменима"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Кол-во для {0}"
@@ -41241,8 +41308,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Кол-во для получения"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Кол-во для производства"
@@ -41478,17 +41545,17 @@ msgstr "Шаблон контроля качества"
msgid "Quality Inspection Template Name"
msgstr "Название шаблона проверки качества"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Перед заполнением накладной {1} необходимо провести контроль качества изделия {0}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Контроль качества {0} не проведён для товара: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Контроль качества {0} отклоняется для изделия: {1}"
@@ -41502,7 +41569,7 @@ msgstr "Проверка(и) качества"
msgid "Quality Inspections"
msgstr "Контроль качества"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Управление качеством"
@@ -41634,7 +41701,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41769,7 +41836,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Количество должно быть не более {0}"
@@ -41779,21 +41846,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Кол-во для Пункт {0} в строке {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Количество должно быть больше, чем 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Количество для производства"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Количество для производства не может быть нулевым для операции {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Количество, Изготовление должны быть больше, чем 0."
@@ -41816,7 +41883,7 @@ msgstr "Сухой кварт (США)"
msgid "Quart Liquid (US)"
msgstr "Жидкий кварт (США)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Квартал {0} {1}"
@@ -41935,11 +42002,11 @@ msgstr "Коммерческое предложение для"
msgid "Quotation Trends"
msgstr "Динамика предложений"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Предложение {0} отменено"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Предложение {0} не типа {1}"
@@ -42246,7 +42313,7 @@ msgstr "Курс, по которому валюта поставщика кон
msgid "Rate at which this tax is applied"
msgstr "Ставка, по которой применяется этот налог"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Ставка '{}' элементов не может быть изменена"
@@ -42412,7 +42479,7 @@ msgstr "Потребленное сырье"
msgid "Raw Materials Consumption"
msgstr "Потребление сырья"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Отсутствует сырье"
@@ -42451,12 +42518,6 @@ msgstr "Сырье не может быть пустым."
msgid "Raw Materials to Customer"
msgstr "Отгрузка сырья клиенту"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Чистый SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42465,7 +42526,7 @@ msgstr "Количество потребляемого сырья будет п
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42646,7 +42707,7 @@ msgid "Receivable / Payable Account"
msgstr "Счет дебиторской/кредиторской задолженности"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43107,7 +43168,7 @@ msgstr "Ссылка #"
msgid "Reference #{0} dated {1}"
msgstr "Ссылка #{0} от {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Дата для расчета скидки за досрочную оплату"
@@ -43271,11 +43332,11 @@ msgstr "Ссылка: {0}, Код товара: {1} и Заказчик: {2}"
msgid "References"
msgstr "Рекомендации"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Ссылки на счета-фактуры продаж неполные"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Ссылки на заказы на продажу неполные"
@@ -43437,7 +43498,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Остаток средств"
@@ -43495,7 +43556,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43559,7 +43620,7 @@ msgstr "Переименуйте значение атрибута в атриб
msgid "Rename Log"
msgstr "Переименовать журнал"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Переименовывать запрещено"
@@ -43576,7 +43637,7 @@ msgstr "Задачи переименования для DocType {0} были п
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Задачи переименования для DocType {0} не были поставлены в очередь."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Переименование разрешено только через головную компанию {0}, чтобы избежать несоответствия."
@@ -43700,7 +43761,7 @@ msgstr "Шаблон отчета"
msgid "Report Type is mandatory"
msgstr "Тип отчета является обязательным"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Сообщить о проблеме"
@@ -43945,7 +44006,7 @@ msgstr "Запрос информации"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44126,7 +44187,7 @@ msgstr "Требует выполнения"
msgid "Research"
msgstr "Исследования"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Научно-исследовательские и опытно-конструкторские работы"
@@ -44171,7 +44232,7 @@ msgstr "Бронирование"
msgid "Reservation Based On"
msgstr "Бронирование на основе"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44215,7 +44276,7 @@ msgstr "Резерв для сборочной единицы"
msgid "Reserved"
msgstr "Зарезервировано"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Конфликт зарезервированной партии"
@@ -44285,14 +44346,14 @@ msgstr "Зарезервированное количество"
msgid "Reserved Quantity for Production"
msgstr "Зарезервированное количество для производства"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44301,13 +44362,13 @@ msgstr "Зарезервированный серийный номер"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Зарезервированный запас для партии"
@@ -44573,7 +44634,7 @@ msgstr "Поле заголовка результата"
msgid "Resume"
msgstr "Продолжить"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Возобновить работу"
@@ -44598,8 +44659,8 @@ msgstr "Розничный торговец"
msgid "Retain Sample"
msgstr "Удержать образец"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Нераспределенная прибыль"
@@ -44674,7 +44735,7 @@ msgstr "Возврат по квитанции о покупке"
msgid "Return Against Subcontracting Receipt"
msgstr "Возврат по квитанции о субподряде"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Возврат компонентов"
@@ -44710,7 +44771,7 @@ msgstr "Количество возврата из склада брака"
msgid "Return Raw Material to Customer"
msgstr "Возврат сырья заказчику"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Возвратный счёт по активу отменён"
@@ -44808,8 +44869,8 @@ msgstr "Возвращает"
msgid "Revaluation Journals"
msgstr "Журналы переоценки"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Излишек переоценки"
@@ -45041,7 +45102,7 @@ msgstr "Корневой тип для {0} должен быть одним из
msgid "Root Type is mandatory"
msgstr "Корневая Тип является обязательным"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Корневая не могут быть изменены."
@@ -45060,8 +45121,8 @@ msgstr "Округлить бесплатное количество"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45241,21 +45302,21 @@ msgstr "Строка # {0}: ставка не может быть больше
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Строка # {0}: возвращенный товар {1} не существует в {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Строка #1: Идентификатор последовательности должен быть равен 1 для операции {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Строка #{0} (таблица платежей): сумма должна быть отрицательной"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Строка #{0} (таблица платежей): сумма должна быть положительной"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Строка #{0}: Запись о заказе на пополнение уже существует для склада {1} с типом пополнения {2}."
@@ -45276,7 +45337,7 @@ msgstr "Строка #{0}: Склад для приемки и склад бра
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Строка #{0}: Склад приемки обязателен для принятого товара {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Строка #{0}: Счет {1} не принадлежит компании {2}"
@@ -45337,31 +45398,31 @@ msgstr "Строка #{0}: Невозможно отменить эту запи
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Строка #{0}: Невозможно создать запись с разными ссылками на документы, облагаемые налогом и удерживаемые."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Строка #{0}: невозможно удалить продукт {1}, для которого уже выставлен счет."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Строка #{0}: невозможно удалить продукт {1}, который уже был доставлен"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Строка #{0}: невозможно удалить продукт {1}, который уже был получен"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Строка #{0}: невозможно удалить продукт {1}, которому назначено рабочее задание."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Строка #{0}: Невозможно удалить товар {1} , который уже заказан по данному заказу на продажу."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Строка #{0}: Нельзя задать ставку, если выставленная сумма превышает сумму для товара {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Строка #{0}: Невозможно перевести больше, чем требуемое количество {1} для товара {2} по карте работ {3}"
@@ -45411,11 +45472,11 @@ msgstr "Строка #{0}: Позиция, предоставленная зак
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Строка #{0}: Позиция, предоставленная заказчиком {1} не может быть добавлена несколько раз в процессе внутреннего субподряда."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Строка #{0}: Предоставленный клиентом товар {1} не может быть добавлен несколько раз."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Строка #{0}: Позиция, предоставленная клиентом {1}, не существует в таблице \"Необходимые позиции\", связанной с внутренним заказом на субподряд."
@@ -45423,7 +45484,7 @@ msgstr "Строка #{0}: Позиция, предоставленная кли
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Строка #{0}: Товар, предоставленный клиентом {1}, превышает количество, доступное по внутреннему субподрядному заказу"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Строка #{0}: Недостаточное количество товара, предоставленного заказчиком, {1} в заказе на субподряд. Доступное количество: {2}."
@@ -45440,7 +45501,7 @@ msgstr "Строка #{0}: Предоставленный клиентом эл
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Строка #{0}: Даты, перекрывающиеся с другой строкой в группе {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Строка #{0}: Спецификация по умолчанию не найдена для готовой продукции {1}"
@@ -45464,22 +45525,22 @@ msgstr "Строка #{0}: Счет расходов не установлен
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Строка #{0}: Счет расходов {1} недействителен для счета-фактуры на покупку {2}. Допускаются только счета расходов по товарам, не имеющим складских запасов."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Строка #{0}: Количество готовой продукции не может быть равно нулю"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Строка #{0}: Не указано готовое изделие для услуги {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Строка #{0}: Готовая продукция {1} должна быть субподрядной позицией"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Строка #{0}: Готовый товар должен быть {1}"
@@ -45508,7 +45569,7 @@ msgstr "Строка #{0}: Частота амортизации должна б
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Строка #{0}: Начальная дата не может быть раньше даты окончания"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Строка #{0}: Необходимо указать поля времени «С» и «По»"
@@ -45516,7 +45577,7 @@ msgstr "Строка #{0}: Необходимо указать поля врем
msgid "Row #{0}: Item added"
msgstr "Строка #{0}: пункт добавлен"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Строка #{0}: Товар {1} нельзя перенести более чем в количестве {2} против {3} {4}"
@@ -45544,7 +45605,7 @@ msgstr "Строка #{0}: Товар {1} на складе {2}: Доступн
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Строка #{0}: Позиция {1} должна быть субподрядной."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Строка #{0}: элемент {1} не является сериализованным / пакетным элементом. Он не может иметь серийный номер / пакетный номер против него."
@@ -45585,7 +45646,7 @@ msgstr "Строка #{0}: Следующая дата амортизации н
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Строка #{0}: Следующая дата амортизации не может быть раньше даты покупки"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Строка #{0}: Не разрешено изменять поставщика когда уже существует заказ"
@@ -45597,10 +45658,6 @@ msgstr "Строка #{0}: Только {1} доступно для резерв
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Строка #{0}: Начисленная амортизация на начало периода должна быть меньше или равна {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Строка #{0}: операция {1} не завершена для {2} количества готовой продукции в рабочем задании {3}. Пожалуйста, обновите статус операции с помощью Карточки работ {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45622,11 +45679,11 @@ msgstr "Строка #{0}: выберите готовый товар, для к
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Строка #{0}: Выберите склад узлов сборки"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Строка #{0}: Пожалуйста, укажите количество повторных заказов"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Строка #{0}: Пожалуйста, обновите счет доходов/расходов будущих периодов в строке позиции или счет по умолчанию в основных настройках компании"
@@ -45648,15 +45705,15 @@ msgstr "Строка #{0}: Количество должно быть полож
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Строка #{0}: Количество должно быть меньше или равно Доступному количеству для резервирования (Фактическое количество - Зарезервированное количество) {1} для товара {2} для партии {3} на складе {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Строка #{0}: Для предмета {1} требуется проверка качества"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Строка #{0}: Проверка качества {1} не проведена для позиции: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Строка #{0}: Проверка качества {1} была отклонена для предмета {2}"
@@ -45664,7 +45721,7 @@ msgstr "Строка #{0}: Проверка качества {1} была отк
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Строка #{0}: Количество не может быть неположительным числом. Пожалуйста, увеличьте количество или удалите товар {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Строка #{0}: Количество товара {1} не может быть нулевым."
@@ -45680,18 +45737,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Строка #{0}: Количество для резервирования товара {1} должно быть больше 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Строка #{0}: Ставка должна быть такой же, как у {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Строка #{0}: Тип справочного документа должен быть одним из следующих: Заказ на покупку, Счет-фактура на покупку или Запись в журнале"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Строка #{0}: Тип ссылочного документа должен быть одним из следующих: Заказ на продажу, Счет-фактура, Запись в журнале или Напоминание."
@@ -45733,7 +45790,7 @@ msgstr "Строка #{0}: Продажный курс для товара {1}
"\t\t\t\t\tвы можете отключить '{5}' в {6}, чтобы обойти\n"
"\t\t\t\t\tэту проверку."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Строка #{0}: Идентификатор последовательности должен быть {1} или {2} для операции {3}."
@@ -45753,19 +45810,19 @@ msgstr "Строка #{0}: Серийный номер {1} уже выбран."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Строка #{0}: серийные номера {1} не входят в связанный заказ на субподряд. Выберите допустимые серийные номера."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Строка #{0}: дата окончания обслуживания не может быть раньше даты проводки счета"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Строка #{0}: дата начала обслуживания не может быть больше даты окончания обслуживания"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Строка #{0}: дата начала и окончания обслуживания требуется для отложенного учета"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Строка #{0}: Установить поставщика для {1}"
@@ -45777,19 +45834,19 @@ msgstr "Строка #{0}: Так как включена опция «Отсл
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Строка #{0}: Исходный склад должен совпадать со складом клиента {1} из связанного внутреннего заказа на субподряд"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Строка #{0}: Исходный склад {1} для товара {2} не может быть складом клиента."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Строка #{0}: Исходный склад {1} для элемента {2} должен совпадать с исходным складом {3} в рабочем заказе."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Строка #{0}: Исходный и целевой склады не могут совпадать для передачи материалов."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Строка #{0}: Размеры исходного, целевого склада и инвентарного запаса не могут быть абсолютно одинаковыми при переносе материала"
@@ -45805,6 +45862,10 @@ msgstr "Строка #{0}: Статус обязателен"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Строка #{0}: статус должен быть {1} для дисконтирования счета-фактуры {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Строка #{0}: Нельзя зарезервировать товар {1} из-за отключенной партии {2}."
@@ -45821,7 +45882,7 @@ msgstr "Строка #{0}: Запас не может быть зарезерв
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Строка #{0}: На складе уже зарезервирован товар {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Строка #{0}: Запас зарезервирован для товара {1} на складе {2}."
@@ -45834,7 +45895,7 @@ msgstr "Строка #{0}: Запас недоступен для резерви
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Строка #{0}: Запас недоступен для резервирования для товара {1} на складе {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Строка #{0}: Количество на складе {1} ({2}) для товара {3} не может превышать {4}"
@@ -45846,7 +45907,7 @@ msgstr "Строка #{0}: целевой склад должен совпада
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Строка #{0}: срок действия пакета {1} уже истек."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Строка #{0}: Склад {1} не является дочерним складом группового склада {2}"
@@ -45882,7 +45943,7 @@ msgstr "Строка #{0}: Нельзя использовать размерн
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Строка #{0}: Необходимо выбрать актив для товара {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Строка #{0}: {1} не может быть отрицательным для {2}"
@@ -45898,7 +45959,7 @@ msgstr "Строка #{0}: {1} требуется для создания нач
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Строка #{0}: {1} из {2} должно быть {3}. Пожалуйста, обновите {1} или выберите другой счет."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45999,7 +46060,7 @@ msgstr "Строка #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Строка № {}: {} {} не существует."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Строка №{}: {} {} не принадлежит компании {}. Выберите допустимый {}."
@@ -46007,7 +46068,7 @@ msgstr "Строка №{}: {} {} не принадлежит компании {
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Номер строки {0}: Требуется указать склад. Укажите склад по умолчанию для товара {1} и компании {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Строка {0}: требуется операция против элемента исходного материала {1}"
@@ -46015,7 +46076,7 @@ msgstr "Строка {0}: требуется операция против эл
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "В строке {0} выбранное количество меньше требуемого, требуется дополнительно {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Строка {0}# Товар {1} не найден в таблице 'Поставленное сырье' в {2} {3}"
@@ -46047,11 +46108,11 @@ msgstr "Строка {0}: Выделенная сумма {1} должна бы
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Строка {0}: Выделенная сумма {1} должна быть меньше или равна оставшейся сумме платежа {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Строка {0}: Поскольку {1} включен, сырье не может быть добавлено в запись {2}. Используйте запись {3} для расходования сырья."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Строка {0}: Для продукта {1} не найдена ведомость материалов"
@@ -46069,7 +46130,7 @@ msgstr "Строка {0}: Потребленное количество {1} {2}
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Строка {0}: Коэффициент преобразования является обязательным"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Строка {0}: Центр затрат {1} не принадлежит компании {2}"
@@ -46089,7 +46150,7 @@ msgstr "Строка {0}: Валюта спецификации #{1} долже
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Строка {0}: Дебет запись не может быть связан с {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Строка {0}: Delivery Warehouse ({1}) и Customer Warehouse ({2}) не могут совпадать"
@@ -46097,7 +46158,7 @@ msgstr "Строка {0}: Delivery Warehouse ({1}) и Customer Warehouse ({2})
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Строка {0}: Склад доставки не может совпадать со складом клиента для товара {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Строка {0}: Дата платежа в таблице условий оплаты не может быть раньше даты публикации"
@@ -46142,16 +46203,16 @@ msgstr "Строка {0}: для поставщика {1} адрес элект
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Строка {0}: От времени и времени является обязательным."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Строка {0}: От времени и времени {1} перекрывается с {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Строка {0}: Склад отправления обязателен для внутренних перемещений"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Строка {0}: время должно быть меньше времени"
@@ -46167,7 +46228,7 @@ msgstr "Строка {0}: Недопустимая ссылка {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Запись {0}: Шаблон налога для товара обновлен согласно актуальности и установленной ставке налога"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Строка {0}: Стоимость товара была обновлена в соответствии с оценочной ставкой, поскольку это внутреннее перемещение запасов"
@@ -46191,7 +46252,7 @@ msgstr "Строка {0}: Количество позиции {1} не може
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Строка {0}: Упакованное количество должно быть равно {1} количеству."
@@ -46259,7 +46320,7 @@ msgstr "Строка {0}: Счет-фактура покупки {1} не вли
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Строка {0}: Количество не может быть больше {1} для товара {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Запись {0}: Количество в складских единицах измерения не может быть нулевым."
@@ -46271,10 +46332,6 @@ msgstr "Строка {0}: Количество должно быть больш
msgid "Row {0}: Quantity cannot be negative."
msgstr "Строка {0}: Количество не может быть отрицательным."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Строка {0}: количество недоступно для {4} на складе {1} во время проводки записи ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Строка {0}: Счет-фактура {1} уже создана для {2}"
@@ -46283,11 +46340,11 @@ msgstr "Строка {0}: Счет-фактура {1} уже создана дл
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Строка {0}: Смена не может быть изменена, так как амортизация уже обработана"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Строка {0}: Субподрядный элемент является обязательным для сырья {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Строка {0}: Целевой склад обязателен для внутренних переводов"
@@ -46299,11 +46356,11 @@ msgstr "Строка {0}: Задача {1} не относится к проек
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Строка {0}: Вся сумма расходов по счету {1} в {2} уже распределена."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Строка {0}: товар {1}, количество должно быть положительным числом"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Строка {0}: Счет {3} {1} не принадлежит компании {2}"
@@ -46311,11 +46368,11 @@ msgstr "Строка {0}: Счет {3} {1} не принадлежит комп
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Строка {0}: Чтобы задать периодичность {1}, разница между датами «от» и «по» должна быть больше или равна {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Строка {0}: Передаваемое количество не может превышать запрошенное количество."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Строка {0}: Коэффициент преобразования единиц измерения является обязательным"
@@ -46328,11 +46385,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Строка {0}: Рабочая станция или тип рабочей станции обязательны для операции {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Строка {0}: пользователь не применил правило {1} к элементу {2}"
@@ -46344,7 +46401,7 @@ msgstr "Строка {0}: Счёт {1} уже применён для учётн
msgid "Row {0}: {1} must be greater than 0"
msgstr "Строка {0}: {1} должна быть больше 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Строка {0}: {1} {2} не может совпадать с {3} (счёт контрагента) {4}"
@@ -46390,7 +46447,7 @@ msgstr "Строки удалены в {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Строки с одинаковыми заголовками счетов будут объединены в книге учета"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Были найдены строки с повторяющимися датами в других строках: {0}"
@@ -46398,7 +46455,7 @@ msgstr "Были найдены строки с повторяющимися д
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "В строках {0} указан тип ссылки 'Платежная операция'. Этот параметр не должен задаваться вручную."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Строки: {0} в разделе {1} недействительны. Имя ссылки должно указывать на действительную запись платежа или запись журнала."
@@ -46605,8 +46662,8 @@ msgstr "Страховой запас"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46628,8 +46685,8 @@ msgstr "Режим оплаты труда"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46643,18 +46700,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Продажи"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Сбыт"
@@ -46678,8 +46740,8 @@ msgstr "Вклады в продажи и поощрения"
msgid "Sales Defaults"
msgstr "Настройки по умолчанию для продаж"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Расходы на продажи"
@@ -46848,11 +46910,11 @@ msgstr "Счёт на продажу не создан пользователе
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Режим счёта на продажу активирован в точке продаж. Пожалуйста, создайте счёт на продажу напрямую."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Счет на продажу {0} уже проведен"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Счет-фактура продажи {0} должен быть удален перед отменой этого заказа на продажу"
@@ -47050,25 +47112,25 @@ msgstr "Динамика по сделкам"
msgid "Sales Order required for Item {0}"
msgstr "Сделка требуется для Продукта {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Заказ на продажу {0} уже существует для заказа на покупку клиента {1}. Чтобы разрешить несколько заказов на продажу, включите {2} в {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Сделка {0} не проведена"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Сделка {0} не действительна"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Сделка {0} это {1}"
@@ -47112,6 +47174,7 @@ msgstr "Заказы на продажу для доставки"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47124,7 +47187,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47230,7 +47293,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47323,7 +47386,7 @@ msgstr "Книга продаж"
msgid "Sales Representative"
msgstr "Торговый представитель"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Возвраты с продаж"
@@ -47347,7 +47410,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Шаблон налога с продаж"
@@ -47466,7 +47529,7 @@ msgstr "Тот же товар"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Такая же комбинация товара и склада уже введена."
@@ -47498,12 +47561,12 @@ msgstr "Склад для хранения образцов"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Размер образца"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Количество образцов {0} не может быть больше, чем полученное количество {1}"
@@ -47745,7 +47808,7 @@ msgstr "Списание актива"
msgid "Scrap Warehouse"
msgstr "Склад брака"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Дата списания не может быть раньше даты покупки"
@@ -47864,8 +47927,8 @@ msgstr "Дополнительная роль"
msgid "Secretary"
msgstr "Секретарь"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Обеспеченные кредиты"
@@ -47903,7 +47966,7 @@ msgstr "Выбрать альтернативный продукт"
msgid "Select Alternative Items for Sales Order"
msgstr "Выбрать альтернативные товары для заказа на продажу"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Выберите значения атрибута"
@@ -47945,7 +48008,7 @@ msgstr "Выберите компанию"
msgid "Select Company Address"
msgstr "Выберите адрес компании"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Выбрать корректирующую операцию"
@@ -47981,7 +48044,7 @@ msgstr "Выбрать измерение"
msgid "Select Dispatch Address "
msgstr "Выберите адрес отгрузки"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Выберите сотрудников"
@@ -48006,7 +48069,7 @@ msgstr "Выбрать элементы"
msgid "Select Items based on Delivery Date"
msgstr "Выбрать продукты по дате поставки"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Выбрать товары для проверки качества"
@@ -48044,7 +48107,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Выбор возможного поставщика"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Выберите количество"
@@ -48119,7 +48182,7 @@ msgstr "Выберите приоритет по умолчанию."
msgid "Select a Payment Method."
msgstr "Выберите способ оплаты."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Выберите поставщика"
@@ -48142,7 +48205,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Выбрать группу элементов."
@@ -48158,9 +48221,9 @@ msgstr "Выбрать счет-фактуру для загрузки свод
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Выберите товар из каждого набора, который будет использоваться в заказе на продажу."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Выберите хотя бы одно значение из каждого атрибута."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48176,7 +48239,7 @@ msgstr "Сначала выберите название компании."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Выберите финансовую книгу для позиции {0} в строке {1}"
@@ -48208,7 +48271,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Выберите товар, который будет производиться."
@@ -48225,7 +48288,7 @@ msgstr "Выбрать склад"
msgid "Select the customer or supplier."
msgstr "Выберите клиента или поставщика."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Выбрать дату"
@@ -48233,6 +48296,12 @@ msgstr "Выбрать дату"
msgid "Select the date and your timezone"
msgstr "Выберите дату и часовой пояс"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Выберите сырье (продукцию), необходимые для изготовления продукции"
@@ -48261,7 +48330,7 @@ msgstr "Выберите, чтобы сделать клиента доступ
msgid "Selected POS Opening Entry should be open."
msgstr "Выбранная запись открытия точки продаж должна быть открыта."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Выбранный прейскурант должен иметь поля для покупки и продажи."
@@ -48292,30 +48361,30 @@ msgstr "Выбранный документ должен быть в состо
msgid "Self delivery"
msgstr "Самовывоз"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Продажа"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Продажа Актива"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Количество для продажи"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Объем продаж не может превышать объем активов"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "Количество продаваемого товара не может превышать количество актива. Актив {0} содержит только {1} единиц товара(ов)."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Объем продаж должен быть больше нуля"
@@ -48568,7 +48637,7 @@ msgstr "Серийные номера/номера партии"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48588,7 +48657,7 @@ msgstr "Серийные номера/номера партии"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48633,7 +48702,7 @@ msgstr "Диапазон серийных номеров"
msgid "Serial No Reserved"
msgstr "Серийный номер зарезервирован"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Серийный без наложения серий"
@@ -48773,7 +48842,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Серийные номера созданы успешно"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Серийные номера зарезервированы в записях о резервировании запасов, вам необходимо снять резервирование, прежде чем продолжить."
@@ -48843,7 +48912,7 @@ msgstr "Серийный и партионный"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49257,7 +49326,7 @@ msgstr "Назначить авансы и распределить (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Установить базовую ставку вручную"
@@ -49276,8 +49345,8 @@ msgstr "Установить склад доставки"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Установить количество готовой продукции"
@@ -49444,11 +49513,11 @@ msgstr "Установлено по шаблону налогов товара"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Установить учетную запись по умолчанию для вечной инвентаризации"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Установить счет по умолчанию {0} для нескладских позиций"
@@ -49480,7 +49549,7 @@ msgstr "Установить цену подсборки на основе сп
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Установите целевые показатели по группам товаров для этого продавца."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Установите запланированную дату начала (предполагаемую дату, когда вы хотите начать производство)"
@@ -49591,7 +49660,7 @@ msgid "Setting up company"
msgstr "Настройка компании"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Требуется настройка {0}"
@@ -49611,6 +49680,10 @@ msgstr "Настройки для модуля продажи"
msgid "Settled"
msgstr "Установившаяся"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49803,7 +49876,7 @@ msgstr "Тип отгрузки"
msgid "Shipment details"
msgstr "Подробности отгрузки"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Поставки"
@@ -49841,7 +49914,7 @@ msgstr "Название адреса отгрузки"
msgid "Shipping Address Template"
msgstr "Шаблон адреса отгрузки"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Адрес доставки не принадлежит {0}"
@@ -49984,8 +50057,8 @@ msgstr "Краткая биография для сайта и других пу
msgid "Short-term Investments"
msgstr "Краткосрочные инвестиции"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Краткосрочные резервы"
@@ -50319,7 +50392,7 @@ msgstr "Одновременный"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Поскольку в этой категории имеются активные амортизируемые активы, необходимы следующие счета. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Поскольку потери в процессе производства составляют {0} единиц для готового товара {1}, вам следует уменьшить количество на {0} единиц для готового товара {1} в таблице товаров."
@@ -50364,7 +50437,7 @@ msgstr "Пропустить накладную на доставку"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50406,8 +50479,8 @@ msgstr "Постоянная сглаживания"
msgid "Soap & Detergent"
msgstr "Мыло и моющее средство"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Программное обеспечение"
@@ -50431,7 +50504,7 @@ msgstr "Продано"
msgid "Solvency Ratios"
msgstr "Коэффициенты платежеспособности"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Отсутствуют некоторые обязательные данные о компании. У вас нет прав на их обновление. Обратитесь к своему системному администратору."
@@ -50495,7 +50568,7 @@ msgstr "Имя поля источника"
msgid "Source Location"
msgstr "Исходное местоположение"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50504,11 +50577,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50566,7 +50639,12 @@ msgstr "Ссылка на адрес исходного склада"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Исходный склад является обязательным для товара {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Исходный склад {0} должен совпадать со складом клиента {1} в заказе на субподряд."
@@ -50574,24 +50652,23 @@ msgstr "Исходный склад {0} должен совпадать со с
msgid "Source and Target Location cannot be same"
msgstr "Источник и целевое местоположение не могут быть одинаковыми"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Источник и цель склад не может быть одинаковым для ряда {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Исходный и целевой склад должны быть разными"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Источник финансирования (обязательства)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Источник склад является обязательным для ряда {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50632,7 +50709,7 @@ msgstr "Расходы по счёту {0} ({1}) между {2} и {3} уже п
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50640,7 +50717,7 @@ msgid "Split"
msgstr "Трещина"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Разделить актив"
@@ -50664,7 +50741,7 @@ msgstr "Разделить от"
msgid "Split Issue"
msgstr "Сплит-выпуск"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Разделить количество"
@@ -50676,6 +50753,11 @@ msgstr "Разделенное количество должно быть мен
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Разделение {0} {1} на {2} строк в соответствии с Условиями оплаты"
@@ -50748,13 +50830,13 @@ msgstr "Стандартный Покупка"
msgid "Standard Description"
msgstr "Стандартное описание"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Расходы по стандартным тарифам"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Стандартный Продажа"
@@ -50775,8 +50857,8 @@ msgstr "Стандартный шаблон"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Стандартные положения и условия, которые можно добавить к продажам и покупкам. Примеры: действительность предложения, условия оплаты, безопасность и использование и т. д."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Поставки с установленной ставкой в {0}"
@@ -50811,7 +50893,7 @@ msgstr "Дата начала не может быть раньше текуще
msgid "Start Date should be lower than End Date"
msgstr "Дата начала должна быть меньше даты окончания"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Начать работу"
@@ -50940,7 +51022,7 @@ msgstr "Иллюстрация состояния"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Статус должен быть отменен или завершен"
@@ -50970,6 +51052,7 @@ msgstr "Нормативная информация и другая общая
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50978,8 +51061,8 @@ msgstr "Склад"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51079,6 +51162,16 @@ msgstr "Запись о закрытии торгов {0} поставлена
msgid "Stock Closing Log"
msgstr "Журнал закрытия торгов"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51088,10 +51181,6 @@ msgstr "Журнал закрытия торгов"
msgid "Stock Details"
msgstr "Подробности о запасах"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Записи по запасам уже созданы для заказа на работу {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51155,7 +51244,7 @@ msgstr "Запись о запасе уже создана для этого с
msgid "Stock Entry {0} created"
msgstr "Создана складская запись {0}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Запись по запасам {0} была создана"
@@ -51163,8 +51252,8 @@ msgstr "Запись по запасам {0} была создана"
msgid "Stock Entry {0} is not submitted"
msgstr "Складской акт {0} не проведен"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Расходы по Запасам"
@@ -51242,8 +51331,8 @@ msgstr "Уровень запасов"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Обязательства по запасам"
@@ -51346,8 +51435,8 @@ msgstr "Кол-во на складе по сравнению с серийны
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51359,7 +51448,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51371,7 +51460,7 @@ msgstr "Инвентаризация запасов"
msgid "Stock Reconciliation Item"
msgstr "Товар с Сверки Запасов"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Сверка запасов"
@@ -51396,9 +51485,9 @@ msgstr "Настройки пересоздания записей по запа
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51409,7 +51498,7 @@ msgstr "Настройки пересоздания записей по запа
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51434,10 +51523,10 @@ msgstr "Резервирование запасов"
msgid "Stock Reservation Entries Cancelled"
msgstr "Записи о резервировании запасов отменены"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Записи о резервировании запасов созданы"
@@ -51465,7 +51554,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Несоответствие склада для резервирования товара"
@@ -51505,7 +51594,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51620,7 +51709,7 @@ msgstr "Настройки складских операций"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51753,11 +51842,11 @@ msgstr "Запас не может быть зарезервирован на г
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Запас не может быть зарезервирован на групповом складе {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Запасы не могут быть обновлены по следующим накладным: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Невозможно обновить запасы, так как счет содержит товар с прямой поставкой. Отключите «Обновить запасы» или удалите товар с прямой поставкой."
@@ -51812,14 +51901,14 @@ msgstr "Камень"
msgid "Stop Reason"
msgstr "Остановить причину"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Прекращенный рабочий заказ не может быть отменен, отмените его сначала, чтобы отменить"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Магазины"
@@ -51877,7 +51966,7 @@ msgstr "Склад субсборки"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52139,7 +52228,7 @@ msgstr "Пункт обслуживания заказа на субподряд
msgid "Subcontracting Order Supplied Item"
msgstr "Поставляемая позиция по субподрядному заказу"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Заказ на субподряд {0} создан."
@@ -52228,7 +52317,7 @@ msgstr ""
msgid "Subdivision"
msgstr "Подразделение"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Не удалось выполнить действие"
@@ -52249,7 +52338,7 @@ msgstr "Отправка сгенерированных счетов-факту
msgid "Submit Journal Entries"
msgstr "Отправить записи журнала"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Утвердите этот рабочий заказ для дальнейшей обработки."
@@ -52403,7 +52492,7 @@ msgstr "Успешно согласовано"
msgid "Successfully Set Supplier"
msgstr "Поставщик успешно установлен"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Единица измерения запаса успешно изменена, пожалуйста, переопределите коэффициенты пересчета для новой единицы измерения."
@@ -52427,7 +52516,7 @@ msgstr "Успешно импортировано {0} записей."
msgid "Successfully linked to Customer"
msgstr "Успешно связано с клиентом"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Успешно связано с поставщиком"
@@ -52587,7 +52676,7 @@ msgstr "Поставляемое кол-во"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52685,6 +52774,7 @@ msgstr "Сведения о поставщике"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52694,7 +52784,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52709,6 +52799,7 @@ msgstr "Сведения о поставщике"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52793,7 +52884,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52828,8 +52919,6 @@ msgid "Supplier Number At Customer"
msgstr "Номер поставщика у заказчика"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Номера поставщиков"
@@ -52881,7 +52970,7 @@ msgstr "Основной контакт поставщика"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52910,7 +52999,7 @@ msgstr "Сравнение предложений поставщиков"
msgid "Supplier Quotation Item"
msgstr "Продукт Предложения Поставщика"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Предложение поставщика {0} создано"
@@ -52999,7 +53088,7 @@ msgstr "Тип поставщика"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Склад поставщика"
@@ -53016,17 +53105,12 @@ msgstr "Поставщик доставляет клиенту"
msgid "Supplier is required for all selected Items"
msgstr "Поставщик требуется для всех выбранных товаров"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Номера поставщиков, присвоенные заказчиком"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Поставщик товаров или услуг."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Поставщик {0} не найден в {1}"
@@ -53039,8 +53123,8 @@ msgstr "Поставщик(и)"
msgid "Suppliers"
msgstr "Поставщики"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Поставки, подлежащие применению механизма обратного начисления"
@@ -53131,7 +53215,7 @@ msgstr "Синхронизация началась"
msgid "Synchronize all accounts every hour"
msgstr "Синхронизировать все счета каждый час"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Система используется"
@@ -53161,7 +53245,7 @@ msgstr "Система выполнит неявную конвертацию,
msgid "System will fetch all the entries if limit value is zero."
msgstr "Если значение лимита равно нулю, система загрузит все записи."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Система не будет проверять переплату, так как сумма для товара {0} в {1} равна нулю"
@@ -53182,10 +53266,16 @@ msgstr "Сводка расчетов TDS"
msgid "TDS Deducted"
msgstr "TDS вычтен"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "НДФЛ к оплате"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53333,7 +53423,7 @@ msgstr "Адрес склада назначения"
msgid "Target Warehouse Address Link"
msgstr "Ссылка на адрес склада назначения"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Ошибка резервирования целевого склада"
@@ -53341,24 +53431,23 @@ msgstr "Ошибка резервирования целевого склада"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Целевой склад для готовой продукции должен совпадать со складом готовой продукции {1} в заказе на работу {2}, связанном с субподрядным внутренним заказом."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Необходим указать склад назначения перед отправкой"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Целевой склад {0} должен совпадать со складом доставки {1} в позиции внутреннего заказа субподряда."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Целевая склад является обязательным для ряда {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53475,8 +53564,8 @@ msgstr "Сумма налога после вычета суммы скидки
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Сумма налога будет округляться на уровне строки (товара)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Налоговые активы"
@@ -53508,7 +53597,6 @@ msgstr "Налоговые активы"
msgid "Tax Breakup"
msgstr "Разбивка налога"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53530,7 +53618,6 @@ msgstr "Разбивка налога"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53546,6 +53633,7 @@ msgstr "Разбивка налога"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53557,8 +53645,8 @@ msgstr "Налоговая категория"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Налоговая категория была изменена на «Итого», потому что все элементы не являются складскими запасами"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Налоговые расходы"
@@ -53632,7 +53720,7 @@ msgstr "Размер налога %"
msgid "Tax Rates"
msgstr "Налоговые ставки"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Возврат налогов, предоставляемый туристам в рамках Программы возврата налогов туристам"
@@ -53650,7 +53738,7 @@ msgstr "Налоговый ряд"
msgid "Tax Rule"
msgstr "Налоговое положение"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Налоговое правило конфликтует с {0}"
@@ -53665,7 +53753,7 @@ msgstr "Настройки налогов"
msgid "Tax Template"
msgstr "Шаблон Налога"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Налоговый шаблона является обязательным."
@@ -53984,7 +54072,7 @@ msgstr "Налоги и сборы вычтенные"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Налоги и сборы вычтенные (валюта компании)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Строка налогов #{0}: {1} не может быть меньше {2}"
@@ -54017,8 +54105,8 @@ msgstr "Технологии"
msgid "Telecommunications"
msgstr "Телекоммуникации"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Телефонные расходы"
@@ -54069,13 +54157,13 @@ msgstr "Временно в режиме удержания"
msgid "Temporary"
msgstr "Временный"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Временные счета"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Временное открытие"
@@ -54257,7 +54345,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54356,7 +54444,7 @@ msgstr "Текст, отображаемый в финансовом отчет
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "«Из пакета №» поле не должно быть пустым или его значение меньше 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Доступ к запросу коммерческого предложения с портала отключен. Чтобы разрешить доступ, включите его в настройках портала."
@@ -54409,7 +54497,8 @@ msgstr "Условие платежа в строке {0}, возможно, я
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Список выбора, имеющий записи резервирования запасов, не может быть обновлен. Если вам необходимо внести изменения, мы рекомендуем отменить существующие записи резервирования запасов перед обновлением списка выбора."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Количество потерь в процессе было сброшено в соответствии с количеством потерь в карточках рабочих заданий"
@@ -54425,7 +54514,7 @@ msgstr "Серийный номер в строке #{0}: {1} отсутству
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Серийный номер {0} зарезервирован для {1} {2} и не может быть использован для какой-либо другой транзакции."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Набор серийных номеров и партий {0} недействителен для этой операции. Тип операции должен быть \"Исходящий\" вместо \"Входящий\" в наборе серийных номеров и партий {0}"
@@ -54461,7 +54550,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "Пакет {0} уже зарезервирован в {1} {2}, поэтому невозможно продолжить работу с {3} {4}, который создан для {5} {6}."
@@ -54469,7 +54558,11 @@ msgstr "Пакет {0} уже зарезервирован в {1} {2}, поэт
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "Выполненное количество {0} операции {1} не может быть больше, чем выполненное количество {2} предыдущей операции {3}."
@@ -54489,7 +54582,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Система выберет спецификацию по умолчанию для этого элемента. Вы также можете изменить спецификацию."
@@ -54522,7 +54615,7 @@ msgstr "Поле от акционера не может быть пустым"
msgid "The field To Shareholder cannot be blank"
msgstr "Поле «Акционеру» не может быть пустым"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Поле {0} в строке {1} не задано"
@@ -54563,11 +54656,11 @@ msgstr "Для следующих активов не удалось автом
msgid "The following batches are expired, please restock them: {0}"
msgstr "Срок годности следующих партий истек, пожалуйста, пополните запасы: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Существуют следующие отмененные записи о репостах для {0} : {1} Пожалуйста, удалите эти записи перед продолжением."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Следующие удаленные атрибуты существуют в вариантах, но не в шаблоне. Вы можете удалить варианты или оставить атрибут (ы) в шаблоне."
@@ -54588,7 +54681,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr "Следующие строки являются дубликатами:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Были созданы следующие {0}: {1}"
@@ -54615,7 +54708,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Элемент {item} не отмечен как элемент {type_of} . Вы можете включить его как элемент {type_of} в его мастере элементов."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Товары {0} и {1} присутствуют в следующем {2}:"
@@ -54673,7 +54766,7 @@ msgstr "Операция {0} не может быть подоперацией"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Первоначальный счет-фактура должен быть объединен до или одновременно с возвратным счетом-фактурой."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54685,6 +54778,12 @@ msgstr "Родительский аккаунт {0} не существует в
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Учетная запись платежного шлюза в плане {0} отличается от учетной записи платежного шлюза в этом платежном запросе"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54726,7 +54825,7 @@ msgstr "Обновление товаров приведет к освобожд
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Товар будет снят из резерва. Вы уверены, что хотите продолжить операцию?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Корневая учетная запись {0} должна быть группой"
@@ -54742,7 +54841,7 @@ msgstr "Выбранный аккаунт изменения {} не прина
msgid "The selected item cannot have Batch"
msgstr "Выбранный продукт не может иметь партию"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Количество продаваемого товара меньше общего количества актива. Оставшееся количество будет разделено на новый актив. Это действие необратимо. Вы хотите продолжить? "
@@ -54775,7 +54874,7 @@ msgstr "Акций не существует с {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Запас товара {0} на складе {1} был отрицательным на {2}. Вам нужно создать положительную запись {3} до даты {4} и времени {5}, чтобы корректно зафиксировать стоимость. Для получения подробной информации, пожалуйста, прочитайте документацию ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Запасы зарезервированы для следующих товаров и складов, снимите резерв с {0} сверки запасов: {1}"
@@ -54797,11 +54896,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Система создаст счёт на продажу или счёт точки продаж через интерфейс точки продаж в зависимости от этой настройки. Для транзакций с большим объёмом рекомендуется использовать счёт точки продаж."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Задача была поставлена в качестве фонового задания. В случае возникновения каких-либо проблем с обработкой в фоновом режиме система добавит комментарий об ошибке в этой сверке запасов и вернется к этапу черновика"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "Задача поставлена в очередь как фоновое задание. В случае возникновения проблем при обработке в фоновом режиме система добавит комментарий об ошибке в этой сверке запасов и вернется к этапу «Отправлено»"
@@ -54849,15 +54948,15 @@ msgstr "Значение {0} различается между элемента
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Значение {0} уже присвоено существующему элементу {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Склад, где хранятся готовые изделия перед отправкой."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Склад, куда будут перемещены ваши товары, когда вы начнете производство. Групповой склад также можно выбрать как склад незавершенного производства."
@@ -54865,19 +54964,19 @@ msgstr "Склад, куда будут перемещены ваши товар
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) должен быть равен {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} Содержит товары с ценой за единицу."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Префикс {0} '{1}' уже существует. Пожалуйста, измените серию серийного номера, иначе Вы получите ошибку Duplicate Entry."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} успешно созданы"
@@ -54885,7 +54984,7 @@ msgstr "{0} {1} успешно созданы"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} не соответствует {0} {2} в {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} используется для расчета оценочной стоимости готовой продукции {2}."
@@ -54901,7 +55000,7 @@ msgstr "Активно проводится техническое обслуж
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Существуют несоответствия между ставкой, количеством акций и рассчитанной суммой"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Есть записи в бухгалтерской книге по этому счету. Изменение {0} на не-{1} в реальной системе приведет к неправильному выводу в отчете «Счета {2}»"
@@ -54930,7 +55029,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Существует два варианта ведения оценки запасов. FIFO (первым пришел - первым ушел) и скользящая средняя. Чтобы подробно разобраться в этой теме, посетите Оценка товара, FIFO и скользящая средняя. "
@@ -54970,7 +55069,7 @@ msgstr "Не найдено ни одной партии для {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "В этой записи о движении товаров должно быть хотя бы одно готовое изделие"
@@ -55026,11 +55125,11 @@ msgstr "Этот продукт является вариантом {0} (Шаб
msgid "This Month's Summary"
msgstr "Резюме этого месяца"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Данный заказ на поставку был полностью передан субподрядчику."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Данный заказ на продажу был полностью передан субподрядчику."
@@ -55064,7 +55163,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Это охватывает все оценочные карточки, привязанные к этой настройке"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Этот документ находится над пределом {0} {1} для элемента {4}. Вы делаете другой {3} против того же {2}?"
@@ -55167,11 +55266,11 @@ msgstr "Это считается опасным с точки зрения бу
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Это относится к сырью, которое будет использоваться для создания готовой продукции. Если товар является дополнительной услугой, как «стирка», которая будет использоваться в спецификации, оставьте это поле незаполненным."
@@ -55240,7 +55339,7 @@ msgstr "Этот график был создан, когда Актив {0} б
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Этот график был создан, когда Актив {0} был отремонтирован посредством Ремонта Актива {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Этот график был создан, когда Актив {0} был восстановлен из-за отмены счет-фактуры продажи {1}."
@@ -55248,15 +55347,15 @@ msgstr "Этот график был создан, когда Актив {0} б
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Этот график был создан, когда Актив {0} был восстановлен при отмене Капитализации Актива {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Этот график был создан при восстановлении Актива {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Этот график был создан, когда Актив {0} был возвращен через Счет-фактуру продажи {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Этот график был создан, когда Актив {0} был списан."
@@ -55264,7 +55363,7 @@ msgstr "Этот график был создан, когда Актив {0} б
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Этот график был создан, когда Актив {0} был {1} в новый Актив {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Этот график был создан, когда Актив {0} был {1} по Счет-фактуре продажи {2}."
@@ -55333,7 +55432,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Это ограничит доступ пользователя к записям других сотрудников"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Это {} будет рассматриваться как передача материала."
@@ -55444,7 +55543,7 @@ msgstr "Время в мин"
msgid "Time in mins."
msgstr "Время в мин."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Журналы времени необходимы для {0} {1}"
@@ -55553,7 +55652,7 @@ msgstr "Укомплектован"
msgid "To Currency"
msgstr "В валюту"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "На сегодняшний день не может быть раньше от даты"
@@ -55780,11 +55879,15 @@ msgstr "Чтобы добавить операции, поставьте гал
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Для добавления сырья по субподрядным товарам, если отключен параметр \"Включать развернутые товары\"."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Чтобы разрешить чрезмерную оплату, обновите «Разрешение на чрезмерную оплату» в настройках учетных записей или элемента."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Чтобы разрешить перерасход / доставку, обновите параметр «Сверх квитанция / доставка» в настройках запаса или позиции."
@@ -55827,11 +55930,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Для учета налога в строке {0} в размере Item, налоги в строках должны быть также включены {1}"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Чтобы объединить, следующие свойства должны быть одинаковыми для обоих пунктов"
@@ -55839,7 +55942,7 @@ msgstr "Чтобы объединить, следующие свойства д
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Чтобы не применять правило ценообразования в конкретной операции, следует отключить все применимые правила ценообразования."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Чтобы отменить это, включите '{0}' в компании {1}"
@@ -55864,7 +55967,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56014,7 +56117,7 @@ msgstr "Всего выделено"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56121,12 +56224,12 @@ msgstr "Всего комиссия"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Всего завершено кол-во"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Для ввода данных в карточку задания {0} необходимо указать общее количество выполненных работ. Пожалуйста, начните и завершите заполнение карточки задания перед проведением"
@@ -56428,7 +56531,7 @@ msgstr "Общей суммой задолженности"
msgid "Total Paid Amount"
msgstr "Всего уплаченной суммы"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Общая сумма платежа в Графе платежей должна быть равна Grand / Rounded Total"
@@ -56440,7 +56543,7 @@ msgstr "Общая сумма запроса платежа не может пр
msgid "Total Payments"
msgstr "Всего платежей"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Общее количество подобранных товаров {0} больше заказанного количества {1}. Вы можете установить допуск на подбор сверх нормы в настройках запаса."
@@ -56723,7 +56826,7 @@ msgstr "Общее время рабочего места (в часах)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Всего выделено процент для отдела продаж должен быть 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Общий процент взносов должен быть равен 100"
@@ -56898,7 +57001,7 @@ msgstr "Дата транзакции"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56922,11 +57025,11 @@ msgstr "Элемент записи удаления транзакции"
msgid "Transaction Deletion Record To Delete"
msgstr "Запись удаления транзакции"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Запись удаления транзакции {0} уже выполняется. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Запись удаления транзакции {0} в настоящее время удаляет {1}. Невозможно сохранить документы до завершения процесса."
@@ -57031,7 +57134,8 @@ msgstr "Сделка, по которой удерживается налог"
msgid "Transaction from which tax is withheld"
msgstr "Сделка, с которой удерживается налог"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Транзакция не разрешена против прекращенного рабочего заказа {0}"
@@ -57078,11 +57182,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Транзакции с использованием счёта на продажу в точке продаж отключены."
@@ -57263,8 +57372,8 @@ msgstr "Информация о перевозчике"
msgid "Transporter Name"
msgstr "Название перевозчика"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Командировочные расходы"
@@ -57528,6 +57637,7 @@ msgstr "Настройки НДС в ОАЭ"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57543,7 +57653,7 @@ msgstr "Настройки НДС в ОАЭ"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57604,7 +57714,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Коэффициент пересчета единицы измерения"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Коэффициент преобразования UOM ({0} -> {1}) не найден для элемента: {2}"
@@ -57617,7 +57727,7 @@ msgstr "Фактор Единица измерения преобразован
msgid "UOM Name"
msgstr "Название единицы измерения"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Требуется коэффициент преобразования для единицы измерения: {0} в товаре: {1}"
@@ -57689,13 +57799,13 @@ msgstr "Не удалось найти курс для {0} к {1} на дату
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Не удалось найти результат, начинающийся с {0}. Вы должны иметь постоянные баллы, покрывающие 0 до 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Не удалось найти временной интервал в ближайшие {0} дней для операции {1}. Пожалуйста, увеличьте «Планирование мощности на (дней)» в {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Не удалось найти переменную:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57776,7 +57886,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Непредвиденный шаблон именования серий"
@@ -57795,7 +57905,7 @@ msgstr "Единица"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Цена за единицу товара"
@@ -57812,7 +57922,7 @@ msgstr "Единица измерения"
msgid "Unit of Measure (UOM)"
msgstr "Единица измерения (ЕИ)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Единица измерения {0} был введен более чем один раз в таблицу преобразования Factor"
@@ -57957,7 +58067,7 @@ msgstr "Несогласованные записи"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57997,12 +58107,12 @@ msgstr "Нерешенный"
msgid "Unscheduled"
msgstr "Незапланированный"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Необеспеченных кредитов"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Отменить привязку платежной записи и запроса на оплату"
@@ -58178,7 +58288,7 @@ msgstr "Обновить элементы"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Обновление «Выдающийся для себя»"
@@ -58257,11 +58367,11 @@ msgstr "Обновлены {0} строки финансового отчета
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Обновление полей себестоимости и выставления счетов по этому проекту..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Обновление вариантов..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Обновление статуса заказа на работу"
@@ -58463,7 +58573,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Использовать обменный курс на дату транзакции"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Используйте название, которое отличается от предыдущего названия проекта"
@@ -58505,7 +58615,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Используется с шаблоном финансового отчета"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Форум пользователей"
@@ -58569,6 +58679,11 @@ msgstr "Пользователи могут включить флажок, ес
msgid "Users can make manufacture entry against Job Cards"
msgstr "Пользователи могут вносить производственные записи на основании заказ-нарядов"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58591,8 +58706,8 @@ msgstr "Пользователи с этой ролью будут уведом
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Если на складе отрицательные остатки, то методы FIFO и средневзвешенной стоимости становятся недоступными для оценки стоимости товара."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Коммунальные расходы"
@@ -58602,7 +58717,7 @@ msgstr "Коммунальные расходы"
msgid "VAT Accounts"
msgstr "Счета НДС"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Сумма НДС (дирхамы ОАЭ)"
@@ -58612,12 +58727,12 @@ msgid "VAT Audit Report"
msgstr "Отчет по проверке НДС"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "НДС на расходы и все прочие затраты"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "НДС на продажи и все другие выходные операции"
@@ -58811,7 +58926,6 @@ msgstr "Метод оценки"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58827,14 +58941,12 @@ msgstr "Метод оценки"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Ставка оценки"
@@ -58842,19 +58954,19 @@ msgstr "Ставка оценки"
msgid "Valuation Rate (In / Out)"
msgstr "Оценочная стоимость (при поступлении/отгрузке)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Оценка ставки отсутствует"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Курс оценки для Предмета {0}, необходим для ведения бухгалтерских записей для {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Ставка оценки является обязательной, если введен начальный запас"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Коэффициент оценки требуется для позиции {0} в строке {1}"
@@ -58864,7 +58976,7 @@ msgstr "Коэффициент оценки требуется для позиц
msgid "Valuation and Total"
msgstr "Оценка и итог"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Оценочная стоимость для товаров, предоставленных клиентами, установлена на уровне нуля."
@@ -58878,7 +58990,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Оценочная стоимость товара согласно счету-фактуре (только для внутренних переводов)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Плата за тип оценки не может быть помечена как «Включая»"
@@ -58890,7 +59002,7 @@ msgstr "Обвинения типа Оценка не может отмечен
msgid "Value (G - D)"
msgstr "Значение (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Значение ({0})"
@@ -59009,12 +59121,12 @@ msgid "Variance ({})"
msgstr "Дисперсия ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Вариант"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Ошибка атрибута варианта"
@@ -59033,7 +59145,7 @@ msgstr "Вариант спецификации"
msgid "Variant Based On"
msgstr "Вариант на основе"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Вариант на основе не может быть изменен"
@@ -59051,7 +59163,7 @@ msgstr "Поле вариантов"
msgid "Variant Item"
msgstr "Вариант товара"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Варианты предметов"
@@ -59062,7 +59174,7 @@ msgstr "Варианты предметов"
msgid "Variant Of"
msgstr "Вариант"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Создание вариантов было поставлено в очередь."
@@ -59356,7 +59468,7 @@ msgstr "Документ"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Ваучер #"
@@ -59428,7 +59540,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59502,7 +59614,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59529,7 +59641,7 @@ msgstr "Подтип документа"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59709,8 +59821,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Склад не найден для учетной записи {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Требуется Склад для Запаса {0}"
@@ -59735,7 +59847,7 @@ msgstr "Склад {0} не принадлежит компания {1}"
msgid "Warehouse {0} does not exist"
msgstr "Склад {0} не существует"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Склад {0} не допускается для заказа на продажу {1}, он должен быть {2}"
@@ -59872,11 +59984,11 @@ msgstr "Внимание: Еще {0} # {1} существует против в
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Внимание: Кол-во в запросе на материалы меньше минимального количества для заказа"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Внимание: количество превышает максимальное количество, которое может быть произведено на основе количества сырья, полученного по внутреннему субподрядному заказу {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Внимание: Сделка {0} уже существует по Заказу на Закупку Клиента {1}"
@@ -59966,7 +60078,7 @@ msgstr "Длина волны в километрах"
msgid "Wavelength In Megametres"
msgstr "Длина волны в мегаметрах"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Мы видим, что {0} создано для {1}. Если вы хотите обновить незавершенные операции {1}, снимите флажок '{2}'."
@@ -60035,7 +60147,7 @@ msgstr "Сайт:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Неделя {0} {1}"
@@ -60165,7 +60277,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "При создании товара ввод значения в это поле автоматически создаст цену товара в базе."
@@ -60175,7 +60287,7 @@ msgstr "При создании товара ввод значения в это
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60185,11 +60297,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "При создании аккаунта для дочерней компании {0} родительский аккаунт {1} обнаружен как счет главной книги."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "При создании аккаунта для дочерней компании {0} родительский аккаунт {1} не найден. Пожалуйста, создайте родительский аккаунт в соответствующем сертификате подлинности"
@@ -60334,7 +60446,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Незавершенная работа"
@@ -60371,7 +60483,7 @@ msgstr "Незавершенная работа"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60405,7 +60517,7 @@ msgstr "Использованные материалы по заказу на
msgid "Work Order Item"
msgstr "Продукт под заказ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60446,19 +60558,23 @@ msgstr "Сводка заказа на работу"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Заказ на работу не может быть создан по следующей причине: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Рабочий ордер не может быть поднят против шаблона предмета"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Рабочий заказ был {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Рабочий заказ не создан"
@@ -60467,16 +60583,16 @@ msgstr "Рабочий заказ не создан"
msgid "Work Order {0} created"
msgstr "Производственный заказ {0} создан"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Заказ на работу {0}: карточка задания не найдена для операции {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Заказы на работу"
@@ -60501,7 +60617,7 @@ msgstr "Незавершенное производство"
msgid "Work-in-Progress Warehouse"
msgstr "Склад незавершенного производства"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Перед утверждением требуется склад незавершенного производства"
@@ -60549,7 +60665,7 @@ msgstr "Часы работы"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60640,14 +60756,14 @@ msgstr "Рабочие станции"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Списать"
@@ -60752,7 +60868,7 @@ msgstr "Списанная стоимость"
msgid "Wrong Company"
msgstr "Неверная компания"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Неправильный пароль"
@@ -60808,11 +60924,11 @@ msgstr "Год дата начала или дата окончания пере
msgid "You are importing data for the code list:"
msgstr "Вы импортируете данные для списка кодов:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Вам не разрешено обновлять в соответствии с условиями, установленными в рабочем процессе {}."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Вы не авторизованы, чтобы добавлять или обновлять записи ранее {0}"
@@ -60820,7 +60936,7 @@ msgstr "Вы не авторизованы, чтобы добавлять или
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "У вас нет полномочий создавать/редактировать складские операции для товара {0} на складе {1} до этого времени."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Ваши настройки доступа не позволяют замораживать значения"
@@ -60848,7 +60964,7 @@ msgstr "Вы также можете установить учетную зап
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Вы можете изменить родительский счет на счет баланса или выбрать другой счет."
@@ -60889,11 +61005,11 @@ msgstr "Вы можете задать его как имя машины или
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Вы можете использовать {0} для сверки с {1} позже."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Вы не можете вносить изменения в Карту работы, поскольку Заказ на работу закрыт."
@@ -60917,7 +61033,7 @@ msgstr "Вы не можете создать {0} в течение закрыт
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Вы не можете создавать или отменять какие-либо бухгалтерские записи в закрытом отчетном периоде {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Создание и изменение бухгалтерских записей невозможно до указанной даты."
@@ -60978,7 +61094,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "У вас нет разрешений на {} элементов в {}."
@@ -60990,19 +61106,19 @@ msgstr "У вас недостаточно очков лояльности дл
msgid "You don't have enough points to redeem."
msgstr "У вас недостаточно очков для погашения."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61014,7 +61130,7 @@ msgstr "При создании начальных счетов у вас был
msgid "You have already selected items from {0} {1}"
msgstr "Вы уже выбрали продукты из {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Вас пригласили к сотрудничеству над проектом {0}."
@@ -61038,7 +61154,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Вы должны включить автоматический повторный заказ в настройках запаса, чтобы поддерживать уровни повторного заказа."
@@ -61054,7 +61170,7 @@ msgstr "Перед добавлением товара необходимо вы
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Чтобы отменить этот документ, необходимо сначала отменить запись закрытия точки продаж {}."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Вы выбрали группу счетов {1} как счет {2} в строке {0}. Пожалуйста, выберите один счет."
@@ -61101,11 +61217,11 @@ msgstr "Почтовый индекс"
msgid "Zero Balance"
msgstr "Нулевой баланс"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Нулевая ставка"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Нулевое количество"
@@ -61127,11 +61243,11 @@ msgstr "Zip-файл"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Важно] [ERPNext] Ошибки автоматического изменения порядка"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "Разрешить отрицательные ставки для товаров"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "после"
@@ -61172,7 +61288,7 @@ msgid "cannot be greater than 100"
msgstr "не может быть больше 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "датировано {0}"
@@ -61321,7 +61437,7 @@ msgstr "платежное приложение не установлено. П
msgid "per hour"
msgstr "в час"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "выполняя одно из следующих действий:"
@@ -61354,7 +61470,7 @@ msgstr "получено от"
msgid "reconciled"
msgstr "примирение"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "возвращено"
@@ -61389,7 +61505,7 @@ msgstr "верно"
msgid "sandbox"
msgstr "песочница"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "продан"
@@ -61397,8 +61513,8 @@ msgstr "продан"
msgid "subscription is already cancelled."
msgstr "подписка уже отменена."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "поле ссылки на объект"
@@ -61416,7 +61532,7 @@ msgstr "заголовок"
msgid "to"
msgstr "для"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "отменить распределение суммы по этому возвратному счету перед его аннулированием."
@@ -61443,7 +61559,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "уникальный код, например SAVE20, для получения скидки"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61465,7 +61581,7 @@ msgstr "через инструмент обновления специфика
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "необходимо выбрать счет «Капитальное незавершенное производство» в таблице счетов"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' отключен"
@@ -61473,7 +61589,7 @@ msgstr "{0} '{1}' отключен"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' не в {2} Финансовом году"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) не может быть больше запланированного количества ({2}) в рабочем порядке {3}"
@@ -61481,7 +61597,7 @@ msgstr "{0} ({1}) не может быть больше запланирован
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} отправил(а) Активы. Удалите элемент {2} из таблицы, чтобы продолжить."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Счет не найден для клиента {1}."
@@ -61514,11 +61630,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Номер {1} уже используется в {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} — операционные затраты для операции {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Операции: {1}"
@@ -61526,7 +61642,7 @@ msgstr "{0} Операции: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Запрос на {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Сохранение образца основано на партии, пожалуйста, проверьте «Hes Batch No», чтобы сохранить образец товара"
@@ -61614,11 +61730,11 @@ msgstr "{0} создано"
msgid "{0} creation for the following records will be skipped."
msgstr "Создание {0} для следующих записей будет пропущено."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} валюта должна совпадать с валютой компании по умолчанию. Выберите другой счет."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} в настоящее время имеет {1} систему показателей поставщика, и Заказы на поставку этому поставщику должны выдаваться с осторожностью."
@@ -61630,7 +61746,7 @@ msgstr "{0} в настоящее время имеет {1} систему по
msgid "{0} does not belong to Company {1}"
msgstr "{0} не принадлежит компании {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} не принадлежит компании {1}."
@@ -61639,7 +61755,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} введен дважды в налог продукта"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} введено дважды {1} в Налоги на товары"
@@ -61664,7 +61780,7 @@ msgstr "{0} успешно отправлен"
msgid "{0} hours"
msgstr "{0} часов"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} в строке {1}"
@@ -61686,7 +61802,7 @@ msgstr "{0} добавлено несколько раз в строки: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} уже запущено для {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} заблокирован, поэтому эта транзакция не может быть продолжена"
@@ -61694,12 +61810,12 @@ msgstr "{0} заблокирован, поэтому эта транзакция
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} находится в стадии черновика. Отправьте его перед созданием актива."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} является обязательным для продукта {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} обязательно для счета {1}"
@@ -61707,7 +61823,7 @@ msgstr "{0} обязательно для счета {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} является обязательным. Возможно, запись обмена валют не создана для {1} - {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} является обязательным. Может быть, запись Обмен валюты не создана для {1} по {2}."
@@ -61715,7 +61831,7 @@ msgstr "{0} является обязательным. Может быть, за
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} не является банковским счетом компании"
@@ -61723,7 +61839,7 @@ msgstr "{0} не является банковским счетом компан
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} не является групповым узлом. Пожалуйста, выберите узел группы в качестве родительского МВЗ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} нескладируемый продукт"
@@ -61763,27 +61879,27 @@ msgstr "{0} выполняется до {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} Открыт. Закройте терминал точки продажи или отмените существующую запись открытия терминала точки продажи, чтобы создать новую запись открытия терминала точки продажи."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} продуктов в работе"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} Предметов потеряно в процессе."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} продуктов произведено"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61791,7 +61907,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} должен быть отрицательным в обратном документе"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} не разрешено совершать транзакции с {1}. Пожалуйста, измените компанию или добавьте ее в раздел «Разрешено совершать транзакции» в записи клиента."
@@ -61807,7 +61923,7 @@ msgstr "Недопустимый параметр {0}"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} записи оплаты не могут быть отфильтрованы по {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} количество товара {1} поступает на склад {2} вместимостью {3}."
@@ -61820,7 +61936,7 @@ msgstr "{0} до {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} единиц зарезервировано для товара {1} на складе {2}, пожалуйста, снимите резервирование с {3} для сверки запасов."
@@ -61836,16 +61952,16 @@ msgstr "{0} единиц товара {1} нет в наличии ни на о
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} Единицы {1} требуются на {2} с размером запаса: {3} на {4} {5} для {6} чтобы завершить операцию."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} единиц {1} требуется в {2} на {3} {4} для {5} чтобы завершить эту транзакцию."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} единиц {1} требуется в {2} на {3} {4} для чтобы завершить эту транзакцию."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} единиц {1} необходимо в {2} для завершения этой транзакции."
@@ -61857,7 +61973,7 @@ msgstr "{0} до {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} действительные серийные номера для продукта {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "Созданы варианты {0}."
@@ -61873,7 +61989,7 @@ msgstr "{0} будет предоставлено в качестве скидк
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} будет установлен как {1} в последующих отсканированных позициях"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61911,8 +62027,8 @@ msgstr "{0} {1} уже полностью оплачено."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} уже частично оплачено. Пожалуйста, используйте кнопку «Получить неоплаченный счет» или «Получить неоплаченные заказы», чтобы получить последние неоплаченные суммы."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} был изменен. Пожалуйста, обновите."
@@ -62022,7 +62138,7 @@ msgstr "{0} {1}: Счет {2} неактивен"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Бухгалтерская запись для {2} может быть сделана только в валюте: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Центр затрат является обязательным для элемента {2}"
@@ -62071,8 +62187,8 @@ msgstr "{0}% от общей стоимости счета будет предо
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0}' {1} не может быть после {2} 'Ожидаемой даты окончания."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, завершите операцию {1} перед операцией {2}."
@@ -62092,11 +62208,11 @@ msgstr "{0}: Защищенный DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Виртуальный DocType (нет таблицы в базе данных)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} не принадлежит Компании: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62104,11 +62220,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} не существует"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} — групповая учетная запись."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} должно быть меньше {2}"
@@ -62120,7 +62236,7 @@ msgstr "Создано {count} ОС для {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} отменено или закрыто."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "Размер выборки {item_name}({sample_size}) не может быть больше, чем допустимое количество ({accepted_quantity})"
@@ -62132,7 +62248,7 @@ msgstr "{ref_doctype} {ref_name} имеет статус {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} не может быть отменен, так как заработанные баллы лояльности были погашены. Сначала отмените {} № {}"
diff --git a/erpnext/locale/sl.po b/erpnext/locale/sl.po
index 76984a6d35f..6a793aa6824 100644
--- a/erpnext/locale/sl.po
+++ b/erpnext/locale/sl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Podsestav"
msgid " Summary"
msgstr " Povzetek"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Artikel, ki ga zagotovi stranka\" ne more biti tudi predmet nakupa"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "»Artikel, ki ga zagotovi stranka« ne more imeti Stopnje Vrednotenja"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "»Je Osnovno Sredstvo« ni mogoče odznačiti, ker za element obstaja zapis sredstva"
@@ -268,11 +268,11 @@ msgstr "% materialov, dostavljenih v skladu s tem Izbirnim Seznamom"
msgid "% of materials delivered against this Sales Order"
msgstr "% dobavljenih materialov po tem Prodajnem Naročilu"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "»Račun« v razdelku Računovodstvo Stranke {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "»Dovoli več Prodajnih Naročil za Kupolno Naročilo Stranke«"
@@ -284,7 +284,7 @@ msgstr "'Na podlagi' in 'Po skupini' ne moreta biti enaka"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "\"Dnevi od zadnjega Naročila\" morajo biti večji ali enaki nič"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "\"Privzet Račun {0} \" v Podjetju {1}"
@@ -302,7 +302,7 @@ msgstr "\"Od Datuma\" je obvezno"
msgid "'From Date' must be after 'To Date'"
msgstr "\"Od Datuma\" mora biti za \"Do Datuma\""
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "\"Ima serijsko številko\" ne more biti \"Da\" za artikel, ki ni na zalogi"
@@ -314,9 +314,9 @@ msgstr "'Pregled Obvezen pred Dostavo' je onemogočen za artikel {0}, zato ni tr
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "\"Pregled pred nakupom je potreben\" je onemogočen za artikel {0}, ni treba ustvariti Kontrol Kvaliteta"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Začetno'"
@@ -346,8 +346,8 @@ msgstr "'{0}' račun že uporablja {1}. Uporabite drug račun."
msgid "'{0}' has been already added."
msgstr "'{0}' je že dodan."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' mora biti v valuti podjetja {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 Dni"
msgid "90 Above"
msgstr "90 Zgoraj"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -795,7 +795,7 @@ msgstr "Nastavitve
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Datum odobritve mora biti po datumu čeka za vrstico(e): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikel {0} v vrstici(ah) {1} je bila zaračunana več kot {2} "
@@ -812,7 +812,7 @@ msgstr "Plačilni dokument, potreben za vrstico(e): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Za naslednje artikle ni mogoče zaračunati preveč:
"
@@ -875,7 +875,7 @@ msgstr "Datum knjiženja {0} ne sme biti pred datumom naročila za naslednje
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 "Cenik v nastavitvah prodaje ni bil nastavljen kot urejevalni. V tem primeru bo nastavitev Posodobi cenik na podlagi na Cenik preprečila samodejno posodabljanje cene artikla.
Ali ste prepričani, da želite nadaljevati?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Če želite dovoliti preplačilo, nastavite dovoljeno vrednost v Nastavitvah Računovodstva.
"
@@ -963,11 +963,11 @@ msgstr "Bližnjice\n"
msgid "Your Shortcuts "
msgstr "Bližnjice "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Skupni Znesek: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Neporavnani Znesek: {0}"
@@ -1037,7 +1037,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - B"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Skupina strank že obstaja z istim imenom. Prosimo, spremenite ime stranke ali preimenujte skupino strank."
@@ -1201,11 +1201,11 @@ msgstr "Okrajšava"
msgid "Abbreviation"
msgstr "Okrajšava"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Okrajšava se že uporablja za drugo podjetje"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Okrajšava je obvezna"
@@ -1213,7 +1213,7 @@ msgstr "Okrajšava je obvezna"
msgid "Abbreviation: {0} must appear only once"
msgstr "Okrajšava: {0} se lahko pojavi samo enkrat"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Nad"
@@ -1267,7 +1267,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Sprejeta Količina na Enoti Zaloge"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Sprejeta Količina"
@@ -1303,7 +1303,7 @@ msgstr ""
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "V skladu s CEFACT/ICG/2010/IC013 ali CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "V skladu s Kosovnico {0} v vnosu zaloge manjka postavka '{1}'."
@@ -1421,8 +1421,8 @@ msgstr "Račun"
msgid "Account Manager"
msgstr "Vodja Računovodstva"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Manjka Račun"
@@ -1440,7 +1440,7 @@ msgstr "Manjka Račun"
msgid "Account Name"
msgstr "Ime Računa"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Račun ni bil najden"
@@ -1453,7 +1453,7 @@ msgstr "Račun ni bil najden"
msgid "Account Number"
msgstr "Številka Računa"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Številka Računa {0} se že uporablja v računu {1}"
@@ -1492,7 +1492,7 @@ msgstr "Podtip Računa"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1508,11 +1508,11 @@ msgstr "Tip Računa"
msgid "Account Value"
msgstr "Vrednost Računa"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Stanje na računu je že v kreditu, možnosti »Stanje mora biti« ne smete nastaviti kot »Debet«"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 že debetno, možnosti »Stanje mora biti« ne smete nastaviti na »Kredit«"
@@ -1579,15 +1579,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Račun s podrejenimi vozlišči ni mogoče pretvoriti v glavno knjigo"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Račun s podrejenimi vozlišči ni mogoče nastaviti kot glavno knjigo"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Račun z obstoječo transakcijo ni mogoče pretvoriti v skupino."
@@ -1595,8 +1595,8 @@ msgstr "Račun z obstoječo transakcijo ni mogoče pretvoriti v skupino."
msgid "Account with existing transaction can not be deleted"
msgstr "Računa z obstoječo transakcijo ni mogoče izbrisati"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Račun z obstoječo transakcijo ni mogoče pretvoriti v glavno knjigo"
@@ -1604,11 +1604,11 @@ msgstr "Račun z obstoječo transakcijo ni mogoče pretvoriti v glavno knjigo"
msgid "Account {0} added multiple times"
msgstr "Račun {0} je bil dodan večkrat"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Račun {0} ni mogoče pretvoriti v skupino, ker je že nastavljen kot {1} za {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Račun {0} ni mogoče onemogočiti, ker je že nastavljen kot {1} za {2}."
@@ -1616,11 +1616,11 @@ msgstr "Račun {0} ni mogoče onemogočiti, ker je že nastavljen kot {1} za {2}
msgid "Account {0} does not belong to company {1}"
msgstr "Račun {0} ne pripada podjetju {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Račun {0} ne pripada podjetju: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Račun {0} ne obstaja"
@@ -1636,15 +1636,15 @@ msgstr "Račun {0} se ne ujema s Podjetjem {1} v načinu računa: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Račun {0} ne pripada Podjetju {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Račun {0} obstaja v matičnem podjetju {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Račun {0} je dodan v podrejeno podjetje {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Račun {0} je onemogočen."
@@ -1652,7 +1652,7 @@ msgstr "Račun {0} je onemogočen."
msgid "Account {0} is frozen"
msgstr "Račun {0} je zamrznjen"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Račun {0} je neveljaven. Valuta računa mora biti {1}"
@@ -1660,19 +1660,19 @@ msgstr "Račun {0} je neveljaven. Valuta računa mora biti {1}"
msgid "Account {0} should be of type Expense"
msgstr "Račun {0} mora biti tipa Stroški"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Račun {0}: Nadrejeni račun {1} ne more biti glavna knjiga"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Račun {0}: Nadrejeni račun {1} ne pripada podjetju: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Račun {0}: Nadrejeni račun {1} ne obstaja"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Račun {0}: Ne morete se dodeliti kot nadrejeni račun"
@@ -1688,7 +1688,7 @@ msgstr "Račun: {0} je mogoče posodobiti samo prek transakcij z zalogami"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Račun: {0} ni dovoljen pri vnosu plačila"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Računa: {0} z valuto: {1} ni mogoče izbrati"
@@ -1973,8 +1973,8 @@ msgstr "Računovodski Vnosi"
msgid "Accounting Entry for Asset"
msgstr "Računovodski Vnos za Sredstvo"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -1998,8 +1998,8 @@ msgstr "Računovodski Vnos za Storitev"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Računovodski Vnos za Zalogo"
@@ -2008,7 +2008,7 @@ msgstr "Računovodski Vnos za Zalogo"
msgid "Accounting Entry for {0}"
msgstr "Računovodski Vnos za {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr ""
@@ -2063,7 +2063,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2076,14 +2075,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Računovodstvo"
@@ -2113,8 +2111,8 @@ msgstr "Računi manjkajo v poročilu"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2214,15 +2212,15 @@ msgstr "Tabela računov ne more biti prazna."
msgid "Accounts to Merge"
msgstr "Računi za združitev"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Načrtovani Stroški"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Akumulirana Amortizacija"
@@ -2387,7 +2385,7 @@ msgstr "Izvedena dejanja"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2511,7 +2509,7 @@ msgstr "Dejanski Končni Datum"
msgid "Actual End Date (via Timesheet)"
msgstr "Dejanski Končni Datum (prek Časovnega Lista)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2633,7 +2631,7 @@ msgstr "Dejanski Čas v Urah (prek Časovnega Lista)"
msgid "Actual qty in stock"
msgstr "Dejanska količina na zalogi"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr ""
@@ -2642,7 +2640,7 @@ msgstr ""
msgid "Ad-hoc Qty"
msgstr "Namen Količina"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Dodaj/Uredi Cene"
@@ -3141,7 +3139,7 @@ msgstr "Dodatne Informacije"
msgid "Additional Information updated successfully."
msgstr "Dodatne informacije so bile uspešno posodobljene."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Dodatni Prenos Materiala"
@@ -3164,7 +3162,7 @@ msgstr "Dodatni Obratovalni Stroški"
msgid "Additional Transferred Qty"
msgstr "Dodatna Prenesena Količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3172,11 +3170,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr ""
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3322,11 +3315,6 @@ msgstr ""
msgid "Address used to determine Tax Category in transactions"
msgstr ""
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Prilagodi Količino"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Prilagoditev proti"
@@ -3339,8 +3327,8 @@ msgstr ""
msgid "Administrative Assistant"
msgstr "Administrativni Pomočnik"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administrativni Stroški"
@@ -3408,7 +3396,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Predplačila"
@@ -3528,7 +3516,7 @@ msgstr "Proti Računu"
msgid "Against Blanket Order"
msgstr "Proti Naročila Pogodbe"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Proti naročilu stranke {0}"
@@ -3670,11 +3658,11 @@ msgstr "Starost"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Starost (Dnevi)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Starost ({0})"
@@ -3824,21 +3812,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Vsi Oddelki"
@@ -3918,7 +3906,7 @@ msgstr "Vse Skupine Dobaviteljev"
msgid "All Territories"
msgstr "Vsa Ozemlja"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Vsa Skladišča"
@@ -3932,6 +3920,11 @@ msgstr ""
msgid "All communications including and above this shall be moved into the new Issue"
msgstr ""
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr ""
@@ -3940,23 +3933,23 @@ msgstr ""
msgid "All items have already been Invoiced/Returned"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3970,11 +3963,11 @@ msgstr ""
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr ""
@@ -3993,7 +3986,7 @@ msgstr "Dodeli"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Samodejna Dodelitev Predplačil (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Dodeli Znesek Plačila"
@@ -4003,7 +3996,7 @@ msgstr "Dodeli Znesek Plačila"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Dodeli Plačilo na podlagi Plačilnih Pogojev"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr ""
@@ -4033,7 +4026,7 @@ msgstr "Dodeljeno"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4090,7 +4083,7 @@ msgstr "Dodeljena Količina"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4154,7 +4147,7 @@ msgstr "Dovoli Vračila"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr ""
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr ""
@@ -4277,16 +4270,6 @@ msgstr ""
msgid "Allow Sales"
msgstr "Dovoli Prodajo"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr ""
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr ""
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4412,6 +4395,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4488,10 +4481,8 @@ msgstr "Dovoljeni Artikli"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr ""
@@ -4503,6 +4494,11 @@ msgstr ""
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4544,8 +4540,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4786,7 +4782,7 @@ msgstr "Vedno Vprašaj"
msgid "Amount"
msgstr "Znesek"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Znesek (AED)"
@@ -4920,12 +4916,12 @@ msgid "Amount to Bill"
msgstr "Znesek za Fakturiranje"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Znesek {0} {1} v primerjavi z {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Znesek {0} {1} odštet od {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4970,11 +4966,11 @@ msgstr "Znesek"
msgid "An Item Group is a way to classify items based on types."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr ""
@@ -5514,7 +5510,7 @@ msgstr ""
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:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr ""
@@ -5526,7 +5522,7 @@ msgstr ""
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr ""
@@ -5664,7 +5660,7 @@ msgstr "Račun Kategorije Sredstev"
msgid "Asset Category Name"
msgstr "Ime Kategorije Sredstva"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr ""
@@ -5841,8 +5837,8 @@ msgstr "Količina Sredstev"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5942,7 +5938,7 @@ msgstr ""
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr ""
@@ -5974,7 +5970,7 @@ msgstr ""
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr ""
@@ -5982,20 +5978,20 @@ msgstr ""
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Sredstvo Vrnjeno"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Sredstvo Odpisano"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Prodano Sredstvo"
@@ -6015,7 +6011,7 @@ msgstr ""
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr ""
@@ -6056,7 +6052,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr ""
@@ -6106,7 +6102,7 @@ msgstr ""
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr ""
@@ -6167,7 +6163,7 @@ msgstr ""
msgid "At least one of the Selling or Buying must be selected"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6175,20 +6171,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6271,11 +6263,11 @@ msgstr "Ime Atributa"
msgid "Attribute Value"
msgstr "Vrednost Atributa"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabela Atributov je obvezna"
@@ -6283,19 +6275,19 @@ msgstr "Tabela Atributov je obvezna"
msgid "Attribute value: {0} must appear only once"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributi"
@@ -6507,7 +6499,7 @@ msgstr ""
msgid "Auto re-order"
msgstr "Samodejno ponovno naročanje"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr ""
@@ -6619,7 +6611,7 @@ msgstr ""
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Razpoložljiva Količina"
@@ -6708,10 +6700,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr ""
@@ -6720,8 +6708,8 @@ msgstr ""
msgid "Available-for-use Date should be after purchase date"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr ""
@@ -6745,7 +6733,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr ""
@@ -6769,7 +6759,7 @@ msgid "Avg Rate"
msgstr "Povprečna Cena"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Povprečna Cena (Stanje Zaloga)"
@@ -6827,7 +6817,7 @@ msgstr "Skladiščna Količina"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6850,7 +6840,7 @@ msgstr "Kosovnica"
msgid "BOM 1"
msgstr "Kosovnica 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Kosovnica 1 {0} in Kosovnica 2 {1} ne smeta biti enaka"
@@ -6922,11 +6912,6 @@ msgstr "Eksplozivni Artikel Kosovnice"
msgid "BOM ID"
msgstr "ID Kosovnice"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Informacije Kosovnice"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7080,7 +7065,7 @@ msgstr "Artikel Spletnega Mesta Kosovnice"
msgid "BOM Website Operation"
msgstr "Delovanje spletne strani Kosovnice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7148,7 +7133,7 @@ msgstr "Vnos zalog z retroaktivnim datumom"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Retroaktivno Pridobi Material iz zaloge nedokončane proizvodnje"
@@ -7212,7 +7197,7 @@ msgstr "Stanje v Osnovni Valuti"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Količinsko Stanje"
@@ -7277,7 +7262,7 @@ 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/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Vrednost Stanja"
@@ -7433,8 +7418,8 @@ msgid "Bank Balance"
msgstr "Bančno Stanje"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bančne Provizije"
@@ -7549,8 +7534,8 @@ msgstr "Tip Bančne Garancije"
msgid "Bank Name"
msgstr "Ime Banke"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Bančni Račun Prekoračitev"
@@ -7723,11 +7708,11 @@ msgstr "Bančništvo"
msgid "Barcode Type"
msgstr "Tip Črtne Kode"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Črtna koda {0} je že uporabljena v artiklu {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Črtna koda {0} ni veljavna koda {1}"
@@ -7884,7 +7869,7 @@ msgstr "Osnovna Cena (po Enoti Zaloge)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7959,7 +7944,7 @@ msgstr "Stanje izteka veljavnosti Artikla Šarže"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8048,13 +8033,13 @@ msgstr "Količina Šarže posodobljena na {0}"
msgid "Batch Quantity"
msgstr "Količina Šarže"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8071,7 +8056,7 @@ msgstr "Šaržna Enota"
msgid "Batch and Serial No"
msgstr "Šarža in Serijska Številka"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Šarža ni bila ustvarjena za element {}, ker nima serije šarže."
@@ -8094,12 +8079,12 @@ msgstr "Šarža {0} in Skladišče"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Šarža {0} ni na voljo v skladišču {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Šarža {0} artikla {1} je potekla."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Šarža {0} artikla {1} je onemogočena."
@@ -8154,7 +8139,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8163,7 +8148,7 @@ msgstr "Datum Fakture"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8177,11 +8162,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Kosovnica"
@@ -8282,7 +8269,7 @@ msgstr "Podrobnosti Naslova Fakture"
msgid "Billing Address Name"
msgstr "Ime Naslova Fakture"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Naslov Fakture ne pripada {0}"
@@ -8534,6 +8521,16 @@ msgstr ""
msgid "Block Supplier"
msgstr ""
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8630,7 +8627,7 @@ msgstr "Rezervirano"
msgid "Booked Fixed Asset"
msgstr "Knjiženo osnovno sredstvo"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr ""
@@ -8889,8 +8886,8 @@ msgstr ""
msgid "Buildable Qty"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr ""
@@ -9051,14 +9048,14 @@ msgstr "Privzeto je ime dobavitelja nastavljeno kot vneseno ime dobavitelja. Če
msgid "By-Product"
msgstr ""
+#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
+msgid "Bypass credit check at Sales Order"
+msgstr ""
+
#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
#. Credit Limit'
#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr ""
-
-#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
-msgid "Bypass credit check at Sales Order"
+msgid "Bypass credit limit check at sales order"
msgstr ""
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
@@ -9108,8 +9105,8 @@ msgstr "Opomba Prodajne Podpore"
msgid "CRM Settings"
msgstr "Nastavitve Prodajne Podpore"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr ""
@@ -9364,7 +9361,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr ""
@@ -9397,13 +9394,13 @@ msgstr ""
msgid "Can only make payment against unbilled {0}"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr ""
@@ -9445,7 +9442,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9453,9 +9450,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr ""
@@ -9483,7 +9480,7 @@ msgstr ""
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr ""
@@ -9503,7 +9500,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr ""
@@ -9523,15 +9520,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr ""
@@ -9539,11 +9536,11 @@ msgstr ""
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr ""
@@ -9559,11 +9556,11 @@ msgstr ""
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr ""
@@ -9571,7 +9568,7 @@ msgstr ""
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
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 ""
@@ -9597,7 +9594,7 @@ msgstr ""
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr ""
@@ -9605,12 +9602,12 @@ msgstr ""
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9622,7 +9619,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9630,20 +9627,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr ""
@@ -9659,7 +9656,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr ""
@@ -9667,15 +9664,15 @@ msgstr ""
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr ""
@@ -9683,12 +9680,12 @@ msgstr ""
msgid "Cannot receive from customer against negative outstanding"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr ""
@@ -9701,14 +9698,14 @@ msgstr ""
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9722,7 +9719,7 @@ msgstr ""
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr ""
@@ -9730,11 +9727,11 @@ msgstr ""
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr ""
@@ -9746,7 +9743,7 @@ msgstr ""
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9779,7 +9776,7 @@ msgstr ""
msgid "Capacity Planning"
msgstr "Načrtovanje Zmogljivosti"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Napaka pri načrtovanju zmogljivosti, načrtovani začetni čas ne more biti enak končnemu času"
@@ -9798,13 +9795,13 @@ msgstr ""
msgid "Capacity must be greater than 0"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr ""
@@ -10021,7 +10018,7 @@ msgstr ""
msgid "Category-wise Asset Value"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr ""
@@ -10126,7 +10123,7 @@ msgstr ""
msgid "Change in Stock Value"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr ""
@@ -10136,7 +10133,7 @@ msgstr ""
msgid "Change this date manually to setup the next synchronization start date"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr ""
@@ -10144,7 +10141,7 @@ msgstr ""
msgid "Changes in {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr ""
@@ -10159,7 +10156,7 @@ msgid "Channel Partner"
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr ""
@@ -10213,7 +10210,7 @@ msgstr ""
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10356,7 +10353,7 @@ msgstr "Širina Čeka"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr ""
@@ -10414,7 +10411,7 @@ msgstr "Ime podrejenega dokumenta"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referenca podrejene vrstice"
@@ -10466,6 +10463,11 @@ msgstr ""
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10608,11 +10610,11 @@ msgstr ""
msgid "Closed Documents"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr ""
@@ -10864,11 +10866,17 @@ msgstr "Stopnja Provizije %"
msgid "Commission Rate (%)"
msgstr "Stopnja Provizije (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provizija od Prodaje"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10899,7 +10907,7 @@ msgstr ""
msgid "Communication Medium Type"
msgstr ""
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr ""
@@ -11298,8 +11306,8 @@ msgstr ""
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11352,7 +11360,7 @@ msgstr ""
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11441,18 +11449,20 @@ msgstr ""
msgid "Company Address Name"
msgstr "Ime Naslova Podjetja"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr ""
@@ -11548,7 +11558,7 @@ msgstr ""
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr ""
@@ -11583,7 +11593,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr ""
@@ -11622,12 +11632,12 @@ msgstr ""
msgid "Company {0} added multiple times"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr ""
@@ -11669,7 +11679,7 @@ msgstr ""
msgid "Competitors"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr ""
@@ -11716,12 +11726,12 @@ msgstr ""
msgid "Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr ""
@@ -11910,7 +11920,7 @@ msgstr ""
msgid "Consider Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12104,7 +12114,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr ""
@@ -12133,7 +12143,7 @@ msgstr ""
msgid "Consumed Stock Total Value"
msgstr ""
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12261,7 +12271,7 @@ msgstr ""
msgid "Contact Person"
msgstr "Kontaktna Oseba"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12387,6 +12397,11 @@ msgstr ""
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12447,7 +12462,7 @@ msgstr "Pretvorbeni Faktor"
msgid "Conversion Rate"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr ""
@@ -12455,15 +12470,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:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12540,13 +12555,13 @@ msgstr ""
msgid "Corrective Action"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr ""
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr ""
@@ -12713,7 +12728,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12846,7 +12861,7 @@ msgstr ""
msgid "Cost Center: {0} does not exist"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr ""
@@ -12889,17 +12904,13 @@ msgstr ""
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr ""
@@ -12979,7 +12990,7 @@ msgstr ""
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Kreditna Faktura ni bilo mogoče ustvariti samodejno, odstranite potrditev možnosti \"Izdaj Kreditno Fakturo\" in ga predložite znova"
@@ -13168,7 +13179,7 @@ msgstr "Ustvari Fakture"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr ""
@@ -13200,7 +13211,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr ""
@@ -13267,7 +13278,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr ""
@@ -13412,7 +13423,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr ""
@@ -13450,12 +13461,12 @@ msgstr ""
msgid "Create Users"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr ""
@@ -13486,12 +13497,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr ""
@@ -13525,7 +13536,7 @@ msgstr ""
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr ""
@@ -13558,7 +13569,7 @@ msgstr ""
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr ""
@@ -13751,7 +13762,7 @@ msgstr ""
msgid "Credit Limit"
msgstr "Kreditna Omejitev"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr ""
@@ -13761,12 +13772,6 @@ msgstr ""
msgid "Credit Limit Settings"
msgstr ""
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr ""
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr ""
@@ -13798,7 +13803,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13826,7 +13831,7 @@ msgstr "Izdana Kreditna Faktura"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Kreditna Faktura bo posodobila svoj neplačani znesek, tudi če je navedena možnost \"Vračilo Proti\"."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Kreditna Faktura {0} je bil ustvarjen samodejno"
@@ -13834,7 +13839,7 @@ msgstr "Kreditna Faktura {0} je bil ustvarjen samodejno"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Kredit za"
@@ -13843,20 +13848,20 @@ msgstr "Kredit za"
msgid "Credit in Company Currency"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr ""
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13864,8 +13869,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr ""
@@ -14035,7 +14040,7 @@ msgstr ""
msgid "Currency and Price List"
msgstr "Valuta in Cenik"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr ""
@@ -14045,7 +14050,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr ""
@@ -14128,8 +14133,8 @@ msgstr ""
msgid "Current Level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr ""
@@ -14196,6 +14201,11 @@ msgstr ""
msgid "Current Valuation Rate"
msgstr ""
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Krivulje"
@@ -14291,7 +14301,6 @@ msgstr ""
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14398,7 +14407,6 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14487,8 +14495,8 @@ msgstr "Naslov Stranke"
msgid "Customer Addresses And Contacts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14502,7 +14510,7 @@ msgstr "Koda Stranke"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14585,6 +14593,7 @@ msgstr ""
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14607,7 +14616,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14624,6 +14633,7 @@ msgstr ""
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14667,7 +14677,7 @@ msgstr "Artikel Stranke"
msgid "Customer Items"
msgstr "Artikli Stranke"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr ""
@@ -14719,7 +14729,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14825,7 +14835,7 @@ msgstr "Zagotovila Stranka"
msgid "Customer Provided Item Cost"
msgstr "Stroški artikla, ki jih je zagotovila stranka"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr ""
@@ -14882,9 +14892,9 @@ msgstr "Stranka ali Artikel"
msgid "Customer required for 'Customerwise Discount'"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Stranka {0} ne pripada projektu {1}"
@@ -14996,7 +15006,7 @@ msgstr ""
msgid "DFS"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr ""
@@ -15087,7 +15097,7 @@ msgstr ""
msgid "Date of Commencement"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr ""
@@ -15313,7 +15323,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15341,13 +15351,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debet na"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr ""
@@ -15475,8 +15485,7 @@ msgstr ""
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15502,14 +15511,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr ""
@@ -15524,19 +15533,19 @@ msgstr ""
msgid "Default BOM"
msgstr "Privzeta Kosovnica"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Privzeta Kosovnica({0}) mora biti aktivna za ta artikel ali njegovo predlogo"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr ""
@@ -15589,9 +15598,7 @@ msgid "Default Company"
msgstr ""
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Privzeti Bančni Račun Podjetja"
@@ -15707,6 +15714,16 @@ msgstr ""
msgid "Default Item Manufacturer"
msgstr ""
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15742,23 +15759,19 @@ msgid "Default Payment Request Message"
msgstr ""
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Predloga Privzetih Plačilnih Pogojev"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15881,15 +15894,15 @@ msgstr ""
msgid "Default Unit of Measure"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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:1372
+#: erpnext/stock/doctype/item/item.py:1376
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:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr ""
@@ -15941,7 +15954,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr ""
@@ -16032,6 +16045,12 @@ msgstr "Določi Tip Projekta."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16114,12 +16133,12 @@ msgstr ""
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr ""
@@ -16140,8 +16159,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr ""
@@ -16252,11 +16271,11 @@ msgstr "Dostavljena Količina"
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16337,7 +16356,7 @@ msgstr "Vodja Dostave"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16397,11 +16416,11 @@ msgstr "Pakirani Artikel Dobavnice"
msgid "Delivery Note Trends"
msgstr "Trendi Dobavnice"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Dobavnice"
@@ -16487,10 +16506,6 @@ msgstr "Dostavno Skladišče"
msgid "Delivery to"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr ""
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16610,8 +16625,8 @@ msgstr ""
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16704,7 +16719,7 @@ msgstr ""
msgid "Depreciation Posting Date"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr ""
@@ -16862,15 +16877,15 @@ msgstr ""
msgid "Difference Account"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr ""
@@ -16982,15 +16997,15 @@ msgstr ""
msgid "Direct Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr ""
@@ -17071,6 +17086,11 @@ msgstr ""
msgid "Disable Serial No And Batch Selector"
msgstr ""
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17107,11 +17127,11 @@ msgstr ""
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr ""
@@ -17127,7 +17147,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17135,15 +17155,15 @@ msgstr ""
msgid "Disassemble"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17430,7 +17450,7 @@ msgstr ""
msgid "Dislikes"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr ""
@@ -17511,7 +17531,7 @@ msgstr ""
msgid "Disposal Date"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr ""
@@ -17625,8 +17645,8 @@ msgstr ""
msgid "Distributor"
msgstr "Distributer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr ""
@@ -17688,7 +17708,7 @@ msgstr ""
msgid "Do not update variants on save"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr ""
@@ -17712,7 +17732,7 @@ msgstr ""
msgid "Do you want to submit the material request"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17724,7 +17744,7 @@ msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:182
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:447
msgid "DocType {0} does not exist"
-msgstr ""
+msgstr "DocType {0} ne obstaja"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.js:295
msgid "DocType {0} with company field '{1}' is already in the list"
@@ -17779,11 +17799,11 @@ msgstr ""
msgid "Document Type "
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr ""
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr ""
@@ -17946,12 +17966,6 @@ msgstr ""
msgid "Driving License Category"
msgstr ""
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17972,12 +17986,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr ""
@@ -18136,8 +18144,8 @@ msgstr ""
msgid "Duration in Days"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr ""
@@ -18220,7 +18228,7 @@ msgstr ""
msgid "Each Transaction"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr ""
@@ -18334,6 +18342,10 @@ msgstr ""
msgid "Either target qty or target amount is mandatory."
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18353,8 +18365,8 @@ msgstr ""
msgid "Electricity down"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr ""
@@ -18558,8 +18570,8 @@ msgstr ""
msgid "Employee Advances"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18642,7 +18654,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18658,7 +18670,7 @@ msgstr ""
msgid "Empty"
msgstr "Prazno"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18689,7 +18701,7 @@ msgstr ""
msgid "Enable Auto Email"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr ""
@@ -18855,12 +18867,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18989,8 +18995,8 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19089,8 +19095,8 @@ msgstr ""
msgid "Enter Serial Nos"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr ""
@@ -19115,7 +19121,7 @@ msgstr ""
msgid "Enter amount to be redeemed."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr ""
@@ -19127,7 +19133,7 @@ msgstr ""
msgid "Enter customer's phone number"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr ""
@@ -19170,7 +19176,7 @@ msgstr ""
msgid "Enter the name of the bank or lending institution before submitting."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr ""
@@ -19178,7 +19184,7 @@ msgstr ""
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr ""
@@ -19190,8 +19196,8 @@ msgstr ""
msgid "Entertainment & Leisure"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr ""
@@ -19215,8 +19221,8 @@ msgstr ""
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19277,7 +19283,7 @@ msgstr ""
msgid "Error while processing deferred accounting for {0}"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr ""
@@ -19287,7 +19293,7 @@ msgid "Error: This asset already has {0} depreciation periods booked.\n"
"\t\t\t\t\tPlease correct the dates accordingly."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr ""
@@ -19333,7 +19339,7 @@ msgstr ""
msgid "Example URL"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr ""
@@ -19352,7 +19358,7 @@ msgstr "Primer: ABCD.#####. Če je serija nastavljena in številka šarže ni om
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr ""
@@ -19362,7 +19368,7 @@ msgstr ""
msgid "Exception Budget Approver Role"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19370,7 +19376,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr ""
@@ -19401,17 +19407,17 @@ msgstr ""
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr ""
@@ -19550,7 +19556,7 @@ msgstr ""
msgid "Executive Search"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr ""
@@ -19637,7 +19643,7 @@ msgstr ""
msgid "Expected Delivery Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr ""
@@ -19721,7 +19727,7 @@ msgstr ""
msgid "Expense"
msgstr ""
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr ""
@@ -19799,23 +19805,23 @@ msgstr ""
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr ""
-#. Option for the 'Account Type' (Select) field in DocType 'Account'
-#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
-#: erpnext/accounts/report/account_balance/account_balance.js:49
-msgid "Expenses Included In Asset Valuation"
-msgstr ""
-
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/report/account_balance/account_balance.js:49
+msgid "Expenses Included In Asset Valuation"
+msgstr ""
+
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr ""
@@ -19894,7 +19900,7 @@ msgstr ""
msgid "Extra Consumed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr ""
@@ -20031,7 +20037,7 @@ msgstr ""
msgid "Failed to setup defaults"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr ""
@@ -20149,6 +20155,11 @@ msgstr ""
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr ""
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20186,21 +20197,29 @@ msgstr ""
msgid "Field in Bank Transaction"
msgstr ""
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20408,9 +20427,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr ""
@@ -20467,15 +20486,15 @@ msgstr ""
msgid "Finished Good Item Quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr ""
@@ -20521,7 +20540,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:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr ""
@@ -20562,7 +20581,7 @@ msgstr ""
msgid "Finished Goods based Operating Cost"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr ""
@@ -20703,6 +20722,7 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr ""
@@ -20721,7 +20741,7 @@ msgstr ""
msgid "Fixed Asset Defaults"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr ""
@@ -20740,8 +20760,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr ""
@@ -20814,7 +20834,7 @@ msgstr ""
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr ""
@@ -20871,7 +20891,7 @@ msgstr ""
msgid "For Item"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr ""
@@ -20881,7 +20901,7 @@ msgid "For Job Card"
msgstr ""
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr ""
@@ -20902,17 +20922,13 @@ msgstr ""
msgid "For Production"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr ""
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr ""
@@ -20940,11 +20956,11 @@ msgstr ""
msgid "For Work Order"
msgstr ""
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr ""
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr ""
@@ -20982,7 +20998,7 @@ msgstr ""
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr ""
@@ -20996,7 +21012,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr ""
@@ -21013,7 +21029,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr ""
@@ -21022,12 +21038,12 @@ msgstr ""
msgid "For reference"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr ""
@@ -21046,7 +21062,7 @@ msgstr ""
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21093,11 +21109,6 @@ msgstr ""
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21143,7 +21154,7 @@ msgstr ""
msgid "Forum URL"
msgstr ""
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21188,8 +21199,8 @@ msgstr ""
msgid "Freeze Stocks Older Than (Days)"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr ""
@@ -21623,8 +21634,8 @@ msgstr ""
msgid "Furlong"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr ""
@@ -21641,13 +21652,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr ""
@@ -21655,7 +21666,7 @@ msgstr ""
msgid "Future Payments"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr ""
@@ -21740,9 +21751,9 @@ msgstr ""
msgid "Gain/Loss from Revaluation"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr ""
@@ -21915,7 +21926,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr ""
@@ -21973,7 +21984,7 @@ msgstr ""
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22012,7 +22023,7 @@ msgstr ""
msgid "Get Items from Material Requests against this Supplier"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr ""
@@ -22186,7 +22197,7 @@ msgstr ""
msgid "Goods"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr ""
@@ -22195,7 +22206,7 @@ msgstr ""
msgid "Goods Transferred"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr ""
@@ -22378,7 +22389,7 @@ msgstr ""
msgid "Grant Commission"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr ""
@@ -22821,7 +22832,7 @@ msgstr ""
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr ""
@@ -22849,7 +22860,7 @@ msgstr ""
msgid "Hertz"
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr ""
@@ -23048,7 +23059,7 @@ msgstr ""
msgid "Hrs"
msgstr "Ure"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr ""
@@ -23216,6 +23227,12 @@ msgstr ""
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr ""
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr ""
@@ -23433,7 +23450,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr ""
@@ -23459,13 +23476,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr ""
@@ -23474,7 +23496,7 @@ msgstr ""
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
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 ""
@@ -23484,7 +23506,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr ""
@@ -23561,7 +23583,7 @@ msgstr ""
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 ""
@@ -23575,7 +23597,7 @@ msgstr ""
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr ""
@@ -23659,7 +23681,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr ""
@@ -23746,12 +23768,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr ""
@@ -23909,7 +23931,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr ""
@@ -24033,7 +24055,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr ""
@@ -24264,8 +24286,8 @@ msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24336,7 +24358,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24368,7 +24390,7 @@ msgstr ""
msgid "Incorrect Batch Consumed"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr ""
@@ -24376,7 +24398,7 @@ msgstr ""
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr ""
@@ -24510,15 +24532,15 @@ msgstr ""
msgid "Indirect Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr ""
@@ -24586,14 +24608,14 @@ msgstr ""
msgid "Inspected By"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr ""
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr ""
@@ -24610,8 +24632,8 @@ msgstr ""
msgid "Inspection Required before Purchase"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr ""
@@ -24641,7 +24663,7 @@ msgstr ""
msgid "Installation Note Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr ""
@@ -24680,11 +24702,11 @@ msgstr ""
msgid "Insufficient Capacity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr ""
@@ -24692,13 +24714,12 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr ""
@@ -24818,13 +24839,13 @@ msgstr ""
msgid "Interest"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24832,8 +24853,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24853,7 +24874,7 @@ msgstr ""
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr ""
@@ -24861,7 +24882,7 @@ msgstr ""
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr ""
@@ -24869,7 +24890,7 @@ msgstr ""
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr ""
@@ -24900,7 +24921,7 @@ msgstr ""
msgid "Internal Transfer"
msgstr "Notranji Prenos"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr ""
@@ -24913,7 +24934,12 @@ msgstr ""
msgid "Internal Work History"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr ""
@@ -24929,12 +24955,12 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr ""
@@ -24955,7 +24981,7 @@ msgstr ""
msgid "Invalid Attribute"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr ""
@@ -24968,7 +24994,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr ""
@@ -24984,21 +25010,21 @@ msgstr ""
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr ""
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr ""
@@ -25036,7 +25062,7 @@ msgstr ""
msgid "Invalid Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr ""
@@ -25050,7 +25076,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr ""
@@ -25058,11 +25084,11 @@ msgstr ""
msgid "Invalid POS Invoices"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr ""
@@ -25092,12 +25118,12 @@ msgstr ""
msgid "Invalid Purchase Invoice"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr ""
@@ -25122,12 +25148,12 @@ msgstr ""
msgid "Invalid Selling Price"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25152,7 +25178,7 @@ msgstr ""
msgid "Invalid condition expression"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25164,7 +25190,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Nepravilno poimenovanje serije (. manjka) za {0}"
@@ -25190,8 +25216,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr ""
@@ -25199,7 +25225,7 @@ msgstr ""
msgid "Invalid {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr ""
@@ -25209,7 +25235,7 @@ msgid "Invalid {0}: {1}"
msgstr ""
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr ""
@@ -25258,8 +25284,8 @@ msgstr ""
msgid "Investment Banking"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr ""
@@ -25309,7 +25335,7 @@ msgstr ""
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr ""
@@ -25414,7 +25440,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25435,7 +25461,7 @@ msgstr "Fakturirana 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25531,8 +25557,7 @@ msgstr ""
msgid "Is Billable"
msgstr "Je plačljivo"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Je Faktura Kontakt"
@@ -25974,8 +25999,7 @@ msgstr ""
msgid "Is Transporter"
msgstr ""
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr ""
@@ -26081,7 +26105,7 @@ msgstr ""
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
@@ -26112,11 +26136,11 @@ msgstr ""
msgid "Issuing Date"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr ""
@@ -26240,7 +26264,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26488,7 +26512,7 @@ msgstr ""
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26550,7 +26574,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26749,13 +26773,13 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26972,7 +26996,7 @@ msgstr ""
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27012,10 +27036,10 @@ msgstr ""
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27056,10 +27080,6 @@ msgstr ""
msgid "Item Price"
msgstr ""
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27075,19 +27095,20 @@ msgstr ""
msgid "Item Price Stock"
msgstr ""
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr ""
@@ -27274,11 +27295,11 @@ msgstr ""
msgid "Item Variant Settings"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr ""
@@ -27379,11 +27400,11 @@ msgstr ""
msgid "Item and Warranty Details"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr ""
@@ -27409,11 +27430,7 @@ msgstr ""
msgid "Item operation"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr ""
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr ""
@@ -27432,11 +27449,11 @@ msgstr ""
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27453,7 +27470,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikla {0} ni mogoče naročiti za več kot {1} v okviru Naročila Pogodbe {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr ""
@@ -27465,7 +27482,7 @@ msgstr ""
msgid "Item {0} does not exist."
msgstr ""
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr ""
@@ -27477,15 +27494,15 @@ msgstr ""
msgid "Item {0} has been disabled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr ""
@@ -27497,15 +27514,15 @@ msgstr ""
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27513,7 +27530,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr ""
@@ -27521,11 +27538,11 @@ msgstr ""
msgid "Item {0} is not a subcontracted item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr ""
@@ -27541,7 +27558,7 @@ msgstr ""
msgid "Item {0} must be a non-stock item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr ""
@@ -27549,7 +27566,7 @@ msgstr ""
msgid "Item {0} not found."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr ""
@@ -27557,7 +27574,7 @@ msgstr ""
msgid "Item {0}: {1} qty produced. "
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr ""
@@ -27603,7 +27620,7 @@ msgstr ""
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27627,7 +27644,7 @@ msgstr ""
msgid "Items Filter"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr ""
@@ -27651,11 +27668,11 @@ msgstr ""
msgid "Items and Pricing"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr ""
@@ -27667,7 +27684,7 @@ msgstr ""
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr ""
@@ -27677,7 +27694,7 @@ msgstr ""
msgid "Items to Be Repost"
msgstr ""
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr ""
@@ -27742,9 +27759,9 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27806,7 +27823,7 @@ msgstr ""
msgid "Job Card and Capacity Planning"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr ""
@@ -27882,7 +27899,7 @@ msgstr ""
msgid "Job Worker Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr ""
@@ -28102,7 +28119,7 @@ msgstr ""
msgid "Kilowatt-Hour"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr ""
@@ -28230,7 +28247,7 @@ msgstr ""
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28312,7 +28329,7 @@ msgstr ""
msgid "Last transacted"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr ""
@@ -28562,12 +28579,12 @@ msgstr ""
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr ""
@@ -28578,7 +28595,7 @@ msgstr ""
msgid "Length (cm)"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr ""
@@ -28637,7 +28654,7 @@ msgstr ""
msgid "License Plate"
msgstr ""
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr ""
@@ -28698,7 +28715,7 @@ msgstr ""
msgid "Link with Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr ""
@@ -28719,12 +28736,12 @@ msgstr ""
msgid "Linked Location"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr ""
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr ""
@@ -28732,7 +28749,7 @@ msgstr ""
msgid "Linking to Customer Failed. Please try again."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr ""
@@ -28790,8 +28807,8 @@ msgstr ""
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr ""
@@ -28836,8 +28853,8 @@ msgstr ""
msgid "Logo"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29038,6 +29055,11 @@ msgstr ""
msgid "Loyalty Program Type"
msgstr ""
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29081,10 +29103,10 @@ msgstr "Okvara Stroja"
msgid "Machine operator errors"
msgstr "Napake Upravljavca Stroja"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr ""
@@ -29327,9 +29349,9 @@ msgstr ""
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Znamka"
@@ -29349,7 +29371,7 @@ msgstr ""
msgid "Make Difference Entry"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29387,12 +29409,12 @@ msgstr ""
msgid "Make Serial No / Batch from Work Order"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr ""
@@ -29408,11 +29430,11 @@ msgstr ""
msgid "Make project from a template."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr ""
@@ -29420,8 +29442,8 @@ msgstr ""
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr ""
@@ -29440,7 +29462,7 @@ msgstr ""
msgid "Manage your orders"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr ""
@@ -29456,7 +29478,7 @@ msgstr ""
msgid "Mandatory Accounting Dimension"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr ""
@@ -29555,8 +29577,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29635,7 +29657,7 @@ msgstr "Proizvajalec"
msgid "Manufacturer Part Number"
msgstr ""
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr ""
@@ -29660,7 +29682,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29705,10 +29727,6 @@ msgstr ""
msgid "Manufacturing Manager"
msgstr "Vodja Proizvodnje"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Proizvodnja Količina je obvezna"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29875,6 +29893,12 @@ msgstr ""
msgid "Mark As Closed"
msgstr ""
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29889,12 +29913,12 @@ msgstr ""
msgid "Market Segment"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr ""
@@ -29973,7 +29997,7 @@ msgstr ""
msgid "Material"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr ""
@@ -29981,7 +30005,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr ""
@@ -30062,7 +30086,7 @@ msgstr ""
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30159,11 +30183,11 @@ msgstr ""
msgid "Material Request Type"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr ""
@@ -30231,7 +30255,7 @@ msgstr ""
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30297,12 +30321,12 @@ msgstr ""
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr ""
@@ -30373,9 +30397,9 @@ msgstr ""
msgid "Max discount allowed for item: {0} is {1}%"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30407,11 +30431,11 @@ msgstr ""
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr ""
@@ -30472,15 +30496,10 @@ msgstr ""
msgid "Megawatt"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr ""
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr ""
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30530,7 +30549,7 @@ msgstr ""
msgid "Merged"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr ""
@@ -30560,7 +30579,7 @@ msgstr ""
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr ""
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30761,7 +30780,7 @@ msgstr ""
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30850,8 +30869,8 @@ msgstr ""
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr ""
@@ -30859,15 +30878,15 @@ msgstr ""
msgid "Mismatch"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr ""
@@ -30897,7 +30916,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr ""
@@ -30905,7 +30924,7 @@ msgstr ""
msgid "Missing Formula"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr ""
@@ -30942,7 +30961,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr ""
@@ -31191,11 +31210,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31217,11 +31236,11 @@ msgstr ""
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr ""
@@ -31230,7 +31249,7 @@ msgid "Music"
msgstr ""
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31317,7 +31336,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31361,7 +31380,7 @@ msgstr ""
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr ""
@@ -31370,7 +31389,7 @@ msgstr ""
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr ""
@@ -31676,7 +31695,7 @@ msgstr ""
msgid "Net Weight UOM"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr ""
@@ -31853,7 +31872,7 @@ msgstr ""
msgid "New Workplace"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr ""
@@ -31907,7 +31926,7 @@ msgstr ""
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr ""
@@ -31920,7 +31939,7 @@ msgstr ""
msgid "No Answer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr ""
@@ -31933,7 +31952,7 @@ msgstr ""
msgid "No Delivery Note selected for Customer {}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31949,7 +31968,7 @@ msgstr ""
msgid "No Item with Serial No {0}"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr ""
@@ -31984,7 +32003,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr ""
@@ -32013,19 +32032,19 @@ msgstr ""
msgid "No Summary"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr ""
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr ""
@@ -32055,7 +32074,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr ""
@@ -32249,7 +32268,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32273,7 +32292,7 @@ msgstr ""
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr ""
@@ -32344,7 +32363,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32377,7 +32396,7 @@ msgstr ""
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr ""
@@ -32422,8 +32441,8 @@ msgstr ""
msgid "Non stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32524,7 +32543,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr ""
@@ -32578,7 +32597,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Opomba: Artikla {0} je bil dodan večkrat"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr ""
@@ -32586,7 +32605,7 @@ msgstr ""
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr ""
@@ -32769,6 +32788,11 @@ msgstr ""
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr ""
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32828,18 +32852,18 @@ msgstr ""
msgid "Offer Date"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr ""
@@ -32967,7 +32991,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr ""
@@ -33007,7 +33031,7 @@ msgstr ""
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33026,7 +33050,7 @@ msgstr ""
msgid "Only Include Allocated Payments"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr ""
@@ -33063,7 +33087,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr ""
@@ -33280,8 +33304,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr ""
@@ -33304,7 +33328,7 @@ msgstr ""
msgid "Opening Entry"
msgstr ""
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr ""
@@ -33337,7 +33361,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr ""
@@ -33373,16 +33397,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33400,12 +33424,15 @@ msgstr ""
msgid "Opening and Closing"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33437,7 +33464,7 @@ msgstr ""
msgid "Operating Cost Per BOM Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr ""
@@ -33480,15 +33507,15 @@ msgstr ""
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr ""
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33513,7 +33540,7 @@ msgstr ""
msgid "Operation Time"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr ""
@@ -33528,11 +33555,11 @@ msgstr ""
msgid "Operation time does not depend on quantity to produce"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr ""
@@ -33548,9 +33575,9 @@ msgstr ""
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33723,7 +33750,7 @@ msgstr ""
msgid "Optimize Route"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33873,7 +33900,7 @@ msgstr ""
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr ""
@@ -33989,7 +34016,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr ""
@@ -34027,7 +34054,7 @@ msgstr ""
msgid "Out of stock"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34046,6 +34073,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr ""
@@ -34081,7 +34109,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34091,7 +34119,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34151,17 +34179,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr ""
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr ""
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
@@ -34181,11 +34214,11 @@ msgstr ""
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr ""
@@ -34485,7 +34518,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34506,7 +34539,7 @@ msgstr ""
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34542,7 +34575,7 @@ msgstr ""
msgid "POS Profile"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34560,11 +34593,11 @@ msgstr ""
msgid "POS Profile doesn't match {}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr ""
@@ -34670,7 +34703,7 @@ msgstr ""
msgid "Packed Items"
msgstr "Pakirani Artikli"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr ""
@@ -34707,7 +34740,7 @@ msgstr "Pakirni List"
msgid "Packing Slip Item"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr ""
@@ -34748,7 +34781,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34814,7 +34847,7 @@ msgid "Paid To Account Type"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr ""
@@ -34908,7 +34941,7 @@ msgstr "Nadrejena Šarža"
msgid "Parent Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr ""
@@ -35035,7 +35068,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35248,7 +35281,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35275,7 +35308,7 @@ msgstr ""
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr ""
@@ -35308,7 +35341,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr ""
@@ -35460,7 +35493,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35569,7 +35602,7 @@ msgstr ""
msgid "Pause"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr ""
@@ -35620,7 +35653,7 @@ msgid "Payable"
msgstr ""
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35654,7 +35687,7 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35801,7 +35834,7 @@ msgstr ""
msgid "Payment Entry is already created"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr ""
@@ -36026,7 +36059,7 @@ msgstr ""
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36091,7 +36124,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36120,7 +36153,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36176,6 +36209,7 @@ msgstr ""
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36190,6 +36224,7 @@ msgstr ""
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36247,7 +36282,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36322,8 +36357,8 @@ msgstr ""
msgid "Payroll Entry"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr ""
@@ -36370,10 +36405,14 @@ msgstr ""
msgid "Pending Amount"
msgstr "Čakajoči Znesek"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36382,9 +36421,18 @@ 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:273
msgid "Pending Quantity"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36414,6 +36462,14 @@ msgstr ""
msgid "Pending processing"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr ""
@@ -36523,7 +36579,7 @@ msgstr ""
msgid "Period Based On"
msgstr ""
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr ""
@@ -37087,8 +37143,8 @@ msgstr ""
msgid "Plant Floor"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr ""
@@ -37124,7 +37180,7 @@ msgstr ""
msgid "Please Set Supplier Group in Buying Settings."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr ""
@@ -37172,7 +37228,7 @@ msgstr ""
msgid "Please add the account to root level Company - {0}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr ""
@@ -37180,7 +37236,7 @@ msgstr ""
msgid "Please add {1} role to user {0}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr ""
@@ -37188,7 +37244,7 @@ msgstr ""
msgid "Please attach CSV file"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr ""
@@ -37222,7 +37278,7 @@ msgstr ""
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr ""
@@ -37247,11 +37303,15 @@ msgstr ""
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr ""
@@ -37259,11 +37319,11 @@ msgstr ""
msgid "Please contact any of the following users to {} this transaction."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr ""
@@ -37275,11 +37335,11 @@ msgstr ""
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr ""
@@ -37287,11 +37347,11 @@ msgstr ""
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37299,7 +37359,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr ""
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr ""
@@ -37323,7 +37383,7 @@ msgstr ""
msgid "Please enable {0} in the {1}."
msgstr ""
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr ""
@@ -37335,20 +37395,20 @@ 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:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr ""
@@ -37356,15 +37416,15 @@ msgstr ""
msgid "Please enter Approving Role or Approving User"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr ""
@@ -37372,7 +37432,7 @@ msgstr ""
msgid "Please enter Employee Id of this sales person"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr ""
@@ -37381,7 +37441,7 @@ msgstr ""
msgid "Please enter Item Code to get Batch Number"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr ""
@@ -37397,7 +37457,7 @@ msgstr ""
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr ""
@@ -37417,7 +37477,7 @@ msgstr ""
msgid "Please enter Root Type for account- {0}"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37434,7 +37494,7 @@ msgid "Please enter Warehouse and Date"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr ""
@@ -37454,7 +37514,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr ""
@@ -37482,7 +37542,7 @@ msgstr ""
msgid "Please enter serial nos"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr ""
@@ -37550,11 +37610,11 @@ msgstr ""
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr ""
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr ""
@@ -37613,7 +37673,7 @@ msgstr ""
msgid "Please select Apply Discount On"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr ""
@@ -37629,7 +37689,7 @@ msgstr ""
msgid "Please select Category first"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37659,7 +37719,7 @@ msgstr ""
msgid "Please select Customer first"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr ""
@@ -37668,8 +37728,8 @@ msgstr ""
msgid "Please select Finished Good Item for Service Item {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr ""
@@ -37701,11 +37761,11 @@ msgstr ""
msgid "Please select Price List"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr ""
@@ -37721,7 +37781,7 @@ msgstr ""
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr ""
@@ -37738,7 +37798,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr ""
@@ -37762,7 +37822,7 @@ msgstr ""
msgid "Please select a Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr ""
@@ -37835,11 +37895,15 @@ msgstr ""
msgid "Please select an item code before setting the warehouse."
msgstr ""
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37859,7 +37923,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37917,7 +37981,7 @@ msgstr ""
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37946,7 +38010,7 @@ msgstr ""
msgid "Please select weekly off day"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr ""
@@ -37955,11 +38019,11 @@ msgstr ""
msgid "Please set 'Apply Additional Discount On'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr ""
@@ -37971,7 +38035,7 @@ msgstr ""
msgid "Please set Account"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr ""
@@ -38001,7 +38065,7 @@ msgstr ""
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr ""
@@ -38019,7 +38083,7 @@ msgstr ""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38065,7 +38129,7 @@ msgstr ""
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr ""
@@ -38102,23 +38166,23 @@ msgstr ""
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr ""
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr ""
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr ""
@@ -38147,7 +38211,7 @@ msgstr ""
msgid "Please set filter based on Item or Warehouse"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr ""
@@ -38155,7 +38219,7 @@ msgstr ""
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr ""
@@ -38167,15 +38231,15 @@ msgstr ""
msgid "Please set the Default Cost Center in {0} company."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38214,7 +38278,7 @@ msgstr ""
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr ""
@@ -38236,7 +38300,7 @@ msgstr ""
msgid "Please specify Company to proceed"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr ""
@@ -38249,7 +38313,7 @@ msgstr ""
msgid "Please specify at least one attribute in the Attributes table"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr ""
@@ -38354,8 +38418,8 @@ msgstr ""
msgid "Post Title Key"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr ""
@@ -38420,7 +38484,7 @@ msgstr ""
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38438,7 +38502,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38560,10 +38624,6 @@ msgstr ""
msgid "Posting Time"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr ""
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38637,18 +38697,23 @@ msgstr ""
msgid "Pre Sales"
msgstr ""
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr ""
@@ -38821,6 +38886,7 @@ msgstr ""
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38844,6 +38910,7 @@ msgstr ""
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38895,7 +38962,7 @@ msgstr ""
msgid "Price List Currency"
msgstr "Valuta Cenika"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr ""
@@ -39250,7 +39317,7 @@ msgstr ""
msgid "Print Receipt on Order Complete"
msgstr ""
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Izpis Enote po Količini"
@@ -39259,8 +39326,8 @@ msgstr "Izpis Enote po Količini"
msgid "Print Without Amount"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr ""
@@ -39268,7 +39335,7 @@ msgstr ""
msgid "Print settings updated in respective print format"
msgstr ""
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr ""
@@ -39371,10 +39438,6 @@ msgstr ""
msgid "Procedure"
msgstr ""
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39428,7 +39491,7 @@ msgstr ""
msgid "Process Loss Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39509,6 +39572,10 @@ msgstr ""
msgid "Process in Single Transaction"
msgstr ""
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39604,8 +39671,8 @@ msgstr ""
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39670,7 +39737,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr ""
@@ -39884,7 +39951,7 @@ msgstr ""
msgid "Progress (%)"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr ""
@@ -39928,7 +39995,7 @@ msgstr ""
msgid "Project Summary"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr ""
@@ -40059,7 +40126,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40205,7 +40272,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40220,7 +40287,7 @@ msgstr ""
msgid "Providing"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr ""
@@ -40292,8 +40359,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40616,7 +40684,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr ""
@@ -40631,7 +40699,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr ""
@@ -40646,7 +40714,7 @@ msgstr ""
msgid "Purchase Orders to Receive"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr ""
@@ -40780,7 +40848,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr ""
@@ -40878,6 +40946,7 @@ msgstr "Nakup"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40887,10 +40956,6 @@ msgstr "Nakup"
msgid "Purpose"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr ""
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40946,6 +41011,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40994,6 +41060,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41102,11 +41169,11 @@ msgstr ""
msgid "Qty To Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41157,8 +41224,8 @@ msgstr "Količina na Zalogo Enota"
msgid "Qty for which recursion isn't applicable."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr ""
@@ -41213,8 +41280,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr ""
@@ -41450,17 +41517,17 @@ msgstr ""
msgid "Quality Inspection Template Name"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41474,7 +41541,7 @@ msgstr ""
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr ""
@@ -41606,7 +41673,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41741,7 +41808,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr ""
@@ -41751,21 +41818,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr ""
@@ -41788,7 +41855,7 @@ msgstr ""
msgid "Quart Liquid (US)"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr ""
@@ -41907,11 +41974,11 @@ msgstr ""
msgid "Quotation Trends"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr ""
@@ -42218,7 +42285,7 @@ msgstr ""
msgid "Rate at which this tax is applied"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42384,7 +42451,7 @@ msgstr ""
msgid "Raw Materials Consumption"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42423,12 +42490,6 @@ msgstr ""
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42437,7 +42498,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42618,7 +42679,7 @@ msgid "Receivable / Payable Account"
msgstr ""
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43079,7 +43140,7 @@ msgstr "Referenčni #"
msgid "Reference #{0} dated {1}"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr ""
@@ -43243,11 +43304,11 @@ msgstr ""
msgid "References"
msgstr "Reference"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr ""
@@ -43409,7 +43470,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr ""
@@ -43467,7 +43528,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43531,7 +43592,7 @@ msgstr ""
msgid "Rename Log"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr ""
@@ -43548,7 +43609,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr ""
@@ -43671,7 +43732,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr ""
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr ""
@@ -43916,7 +43977,7 @@ msgstr ""
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44097,7 +44158,7 @@ msgstr ""
msgid "Research"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr ""
@@ -44142,7 +44203,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44186,7 +44247,7 @@ msgstr ""
msgid "Reserved"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44256,14 +44317,14 @@ msgstr ""
msgid "Reserved Quantity for Production"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44272,13 +44333,13 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr ""
@@ -44544,7 +44605,7 @@ msgstr ""
msgid "Resume"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr ""
@@ -44569,8 +44630,8 @@ msgstr ""
msgid "Retain Sample"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr ""
@@ -44645,7 +44706,7 @@ msgstr ""
msgid "Return Against Subcontracting Receipt"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr ""
@@ -44681,7 +44742,7 @@ msgstr ""
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44779,8 +44840,8 @@ msgstr "Vračila"
msgid "Revaluation Journals"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr ""
@@ -45012,7 +45073,7 @@ msgstr ""
msgid "Root Type is mandatory"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr ""
@@ -45031,8 +45092,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45212,21 +45273,21 @@ msgstr ""
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr ""
@@ -45247,7 +45308,7 @@ msgstr ""
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr ""
@@ -45308,31 +45369,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr ""
@@ -45382,11 +45443,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45394,7 +45455,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45411,7 +45472,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr ""
@@ -45435,22 +45496,22 @@ msgstr ""
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr ""
@@ -45479,7 +45540,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45487,7 +45548,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45515,7 +45576,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr ""
@@ -45556,7 +45617,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr ""
@@ -45568,10 +45629,6 @@ msgstr ""
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr ""
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45593,11 +45650,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr ""
@@ -45619,15 +45676,15 @@ msgstr ""
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr ""
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr ""
@@ -45635,7 +45692,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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45651,18 +45708,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr ""
@@ -45701,7 +45758,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45721,19 +45778,19 @@ 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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr ""
@@ -45745,19 +45802,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45773,6 +45830,10 @@ msgstr ""
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr ""
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr ""
@@ -45789,7 +45850,7 @@ msgstr ""
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:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr ""
@@ -45802,7 +45863,7 @@ msgstr ""
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45814,7 +45875,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr ""
@@ -45850,7 +45911,7 @@ msgstr ""
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr ""
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr ""
@@ -45866,7 +45927,7 @@ msgstr ""
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45967,7 +46028,7 @@ msgstr ""
msgid "Row #{}: {} {} does not exist."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr ""
@@ -45975,7 +46036,7 @@ msgstr ""
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr ""
@@ -45983,7 +46044,7 @@ msgstr ""
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr ""
@@ -46015,11 +46076,11 @@ msgstr ""
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:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
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:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr ""
@@ -46036,7 +46097,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr ""
@@ -46056,7 +46117,7 @@ msgstr ""
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr ""
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr ""
@@ -46064,7 +46125,7 @@ msgstr ""
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr ""
@@ -46109,16 +46170,16 @@ msgstr ""
msgid "Row {0}: From Time and To Time is mandatory."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr ""
@@ -46134,7 +46195,7 @@ msgstr ""
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr ""
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr ""
@@ -46158,7 +46219,7 @@ msgstr ""
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr ""
@@ -46226,7 +46287,7 @@ msgstr ""
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr ""
@@ -46238,10 +46299,6 @@ msgstr ""
msgid "Row {0}: Quantity cannot be negative."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46250,11 +46307,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr ""
@@ -46266,11 +46323,11 @@ msgstr ""
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr ""
@@ -46278,11 +46335,11 @@ msgstr ""
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr ""
@@ -46295,11 +46352,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr ""
@@ -46311,7 +46368,7 @@ msgstr ""
msgid "Row {0}: {1} must be greater than 0"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr ""
@@ -46357,7 +46414,7 @@ msgstr ""
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr ""
@@ -46365,7 +46422,7 @@ msgstr ""
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr ""
@@ -46572,8 +46629,8 @@ msgstr ""
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46595,8 +46652,8 @@ msgstr ""
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46610,18 +46667,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Prodaja"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Prodajni Račun"
@@ -46645,8 +46707,8 @@ msgstr ""
msgid "Sales Defaults"
msgstr "Privzete Prodaje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Prodajni Stroški"
@@ -46815,11 +46877,11 @@ msgstr ""
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr ""
@@ -47017,25 +47079,25 @@ msgstr ""
msgid "Sales Order required for Item {0}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr ""
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr ""
@@ -47079,6 +47141,7 @@ msgstr "Prodajna Naročila za Dostavo"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47091,7 +47154,7 @@ msgstr "Prodajna Naročila za Dostavo"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47197,7 +47260,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47290,7 +47353,7 @@ msgstr ""
msgid "Sales Representative"
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr ""
@@ -47314,7 +47377,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr ""
@@ -47433,7 +47496,7 @@ msgstr ""
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr ""
@@ -47465,12 +47528,12 @@ msgstr ""
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr ""
@@ -47712,7 +47775,7 @@ msgstr ""
msgid "Scrap Warehouse"
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr ""
@@ -47831,8 +47894,8 @@ msgstr ""
msgid "Secretary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr ""
@@ -47870,7 +47933,7 @@ msgstr ""
msgid "Select Alternative Items for Sales Order"
msgstr "Izberi Alternativne Artikle za Prodajno Naročilo"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr ""
@@ -47912,7 +47975,7 @@ msgstr ""
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr ""
@@ -47948,7 +48011,7 @@ msgstr ""
msgid "Select Dispatch Address "
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr ""
@@ -47973,7 +48036,7 @@ msgstr ""
msgid "Select Items based on Delivery Date"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr ""
@@ -48011,7 +48074,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr ""
@@ -48086,7 +48149,7 @@ msgstr ""
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr ""
@@ -48109,7 +48172,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr ""
@@ -48125,8 +48188,8 @@ msgstr ""
msgid "Select an item from each set to be used in the Sales Order."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
msgstr ""
#: erpnext/public/js/utils/party.js:379
@@ -48143,7 +48206,7 @@ msgstr ""
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr ""
@@ -48175,7 +48238,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr ""
@@ -48192,7 +48255,7 @@ msgstr ""
msgid "Select the customer or supplier."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr ""
@@ -48200,6 +48263,12 @@ msgstr ""
msgid "Select the date and your timezone"
msgstr ""
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr ""
@@ -48227,7 +48296,7 @@ msgstr ""
msgid "Selected POS Opening Entry should be open."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr ""
@@ -48258,30 +48327,30 @@ msgstr ""
msgid "Self delivery"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Prodaja"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48534,7 +48603,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48554,7 +48623,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48599,7 +48668,7 @@ msgstr ""
msgid "Serial No Reserved"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48739,7 +48808,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr ""
@@ -48809,7 +48878,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49223,7 +49292,7 @@ msgstr ""
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr ""
@@ -49242,8 +49311,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr ""
@@ -49410,11 +49479,11 @@ msgstr ""
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr ""
@@ -49446,7 +49515,7 @@ msgstr ""
msgid "Set targets Item Group-wise for this Sales Person."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr ""
@@ -49557,7 +49626,7 @@ msgid "Setting up company"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49577,6 +49646,10 @@ msgstr ""
msgid "Settled"
msgstr ""
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49769,7 +49842,7 @@ msgstr ""
msgid "Shipment details"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr ""
@@ -49807,7 +49880,7 @@ msgstr ""
msgid "Shipping Address Template"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49950,8 +50023,8 @@ msgstr ""
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50283,7 +50356,7 @@ msgstr ""
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr ""
@@ -50328,7 +50401,7 @@ msgstr ""
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50370,8 +50443,8 @@ msgstr ""
msgid "Soap & Detergent"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr ""
@@ -50395,7 +50468,7 @@ msgstr ""
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50459,7 +50532,7 @@ msgstr ""
msgid "Source Location"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50468,11 +50541,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50530,7 +50603,12 @@ msgstr ""
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50538,23 +50616,22 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr ""
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
@@ -50596,7 +50673,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50604,7 +50681,7 @@ msgid "Split"
msgstr "Razdeli"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr ""
@@ -50628,7 +50705,7 @@ msgstr ""
msgid "Split Issue"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr ""
@@ -50640,6 +50717,11 @@ msgstr ""
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr ""
@@ -50712,13 +50794,13 @@ msgstr ""
msgid "Standard Description"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr ""
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr ""
@@ -50739,8 +50821,8 @@ msgstr ""
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr ""
@@ -50775,7 +50857,7 @@ msgstr ""
msgid "Start Date should be lower than End Date"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr ""
@@ -50904,7 +50986,7 @@ msgstr ""
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr ""
@@ -50934,6 +51016,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50942,8 +51025,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51043,6 +51126,16 @@ msgstr ""
msgid "Stock Closing Log"
msgstr ""
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51052,10 +51145,6 @@ msgstr ""
msgid "Stock Details"
msgstr "Podrobnosti o Zalogi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr ""
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51119,7 +51208,7 @@ msgstr ""
msgid "Stock Entry {0} created"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr ""
@@ -51127,8 +51216,8 @@ msgstr ""
msgid "Stock Entry {0} is not submitted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr ""
@@ -51206,8 +51295,8 @@ msgstr ""
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr ""
@@ -51310,8 +51399,8 @@ msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51323,7 +51412,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51335,7 +51424,7 @@ msgstr ""
msgid "Stock Reconciliation Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr ""
@@ -51360,9 +51449,9 @@ msgstr ""
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51373,7 +51462,7 @@ msgstr ""
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51398,10 +51487,10 @@ msgstr ""
msgid "Stock Reservation Entries Cancelled"
msgstr ""
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr ""
@@ -51429,7 +51518,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr ""
@@ -51469,7 +51558,7 @@ msgstr "Zaloga Rezervirana Količina (na Enoti Zaloge)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51584,7 +51673,7 @@ msgstr ""
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51717,11 +51806,11 @@ msgstr ""
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr ""
@@ -51776,14 +51865,14 @@ msgstr ""
msgid "Stop Reason"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr ""
@@ -51841,7 +51930,7 @@ msgstr ""
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52103,7 +52192,7 @@ msgstr ""
msgid "Subcontracting Order Supplied Item"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr ""
@@ -52192,7 +52281,7 @@ msgstr ""
msgid "Subdivision"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr ""
@@ -52213,7 +52302,7 @@ msgstr ""
msgid "Submit Journal Entries"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr ""
@@ -52367,7 +52456,7 @@ msgstr ""
msgid "Successfully Set Supplier"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr ""
@@ -52391,7 +52480,7 @@ msgstr ""
msgid "Successfully linked to Customer"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr ""
@@ -52551,7 +52640,7 @@ msgstr ""
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52649,6 +52738,7 @@ msgstr ""
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52658,7 +52748,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52673,6 +52763,7 @@ msgstr ""
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52757,7 +52848,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52792,8 +52883,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52845,7 +52934,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52874,7 +52963,7 @@ msgstr ""
msgid "Supplier Quotation Item"
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr ""
@@ -52963,7 +53052,7 @@ msgstr ""
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Skladišče Dobavitelja"
@@ -52980,17 +53069,12 @@ msgstr "Dobavitelj dostavi Stranki"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr ""
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr ""
@@ -53003,8 +53087,8 @@ msgstr "Dobavitelj(ji)"
msgid "Suppliers"
msgstr "Dobavitelji"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr ""
@@ -53095,7 +53179,7 @@ msgstr ""
msgid "Synchronize all accounts every hour"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53125,7 +53209,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr ""
@@ -53146,10 +53230,16 @@ msgstr ""
msgid "TDS Deducted"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr ""
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53297,7 +53387,7 @@ msgstr ""
msgid "Target Warehouse Address Link"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr ""
@@ -53305,24 +53395,23 @@ msgstr ""
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr ""
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr ""
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53439,8 +53528,8 @@ msgstr "Znesek DDV po Znesku Popusta (Valuta Podjetja)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr ""
@@ -53472,7 +53561,6 @@ msgstr ""
msgid "Tax Breakup"
msgstr "Razčlenitev DDV"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53494,7 +53582,6 @@ msgstr "Razčlenitev DDV"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53510,6 +53597,7 @@ msgstr "Razčlenitev DDV"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53521,8 +53609,8 @@ msgstr "DDV Kategorija"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53596,7 +53684,7 @@ msgstr ""
msgid "Tax Rates"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr ""
@@ -53614,7 +53702,7 @@ msgstr ""
msgid "Tax Rule"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr ""
@@ -53629,7 +53717,7 @@ msgstr ""
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr ""
@@ -53948,7 +54036,7 @@ msgstr "Odbitni DDV in Stroški"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Odbitni DDV in Stroški (Valuta Podjetja)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr ""
@@ -53981,8 +54069,8 @@ msgstr ""
msgid "Telecommunications"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr ""
@@ -54033,13 +54121,13 @@ msgstr ""
msgid "Temporary"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr ""
@@ -54221,7 +54309,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54320,7 +54408,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr ""
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr ""
@@ -54373,7 +54461,8 @@ msgstr ""
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr ""
@@ -54389,7 +54478,7 @@ msgstr ""
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
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 ""
@@ -54425,7 +54514,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54433,7 +54522,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54453,7 +54546,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr ""
@@ -54486,7 +54579,7 @@ msgstr ""
msgid "The field To Shareholder cannot be blank"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr ""
@@ -54527,11 +54620,11 @@ msgstr ""
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 ""
@@ -54552,7 +54645,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr ""
@@ -54579,7 +54672,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr ""
@@ -54637,7 +54730,7 @@ msgstr ""
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54649,6 +54742,12 @@ msgstr ""
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr ""
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54690,7 +54789,7 @@ msgstr ""
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr ""
@@ -54706,7 +54805,7 @@ msgstr ""
msgid "The selected item cannot have Batch"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54739,7 +54838,7 @@ msgstr ""
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr ""
@@ -54761,11 +54860,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 ""
@@ -54813,15 +54912,15 @@ msgstr ""
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 ""
@@ -54829,19 +54928,19 @@ msgstr ""
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr ""
@@ -54849,7 +54948,7 @@ msgstr ""
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr ""
@@ -54865,7 +54964,7 @@ msgstr ""
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr ""
@@ -54894,7 +54993,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 ""
@@ -54934,7 +55033,7 @@ msgstr ""
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr ""
@@ -54990,11 +55089,11 @@ msgstr ""
msgid "This Month's Summary"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55028,7 +55127,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr ""
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr ""
@@ -55131,11 +55230,11 @@ msgstr ""
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 ""
@@ -55204,7 +55303,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55212,15 +55311,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr ""
@@ -55228,7 +55327,7 @@ msgstr ""
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55297,7 +55396,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr ""
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr ""
@@ -55408,7 +55507,7 @@ msgstr ""
msgid "Time in mins."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr ""
@@ -55517,7 +55616,7 @@ msgstr "Za Fakturiranje"
msgid "To Currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr ""
@@ -55744,11 +55843,15 @@ msgstr ""
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr ""
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr ""
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr ""
@@ -55791,11 +55894,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
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:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr ""
@@ -55803,7 +55906,7 @@ msgstr ""
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr ""
@@ -55828,7 +55931,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55978,7 +56081,7 @@ msgstr ""
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56085,12 +56188,12 @@ msgstr ""
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56392,7 +56495,7 @@ msgstr ""
msgid "Total Paid Amount"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr ""
@@ -56404,7 +56507,7 @@ msgstr ""
msgid "Total Payments"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr ""
@@ -56687,7 +56790,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr ""
@@ -56862,7 +56965,7 @@ msgstr ""
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56886,11 +56989,11 @@ msgstr ""
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -56995,7 +57098,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr ""
@@ -57042,11 +57146,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57227,8 +57336,8 @@ msgstr ""
msgid "Transporter Name"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr ""
@@ -57492,6 +57601,7 @@ msgstr ""
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57507,7 +57617,7 @@ msgstr ""
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57568,7 +57678,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Faktor Pretvorbe Enote"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr ""
@@ -57581,7 +57691,7 @@ msgstr ""
msgid "UOM Name"
msgstr "Ime Enote"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr ""
@@ -57653,12 +57763,12 @@ msgstr ""
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
@@ -57740,7 +57850,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57759,7 +57869,7 @@ msgstr "Enota"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57776,7 +57886,7 @@ msgstr ""
msgid "Unit of Measure (UOM)"
msgstr "Enota"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr ""
@@ -57921,7 +58031,7 @@ msgstr ""
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57961,12 +58071,12 @@ msgstr ""
msgid "Unscheduled"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr ""
@@ -58142,7 +58252,7 @@ msgstr ""
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr ""
@@ -58221,11 +58331,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr ""
@@ -58427,7 +58537,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr ""
@@ -58469,7 +58579,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr ""
@@ -58533,6 +58643,11 @@ msgstr ""
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58555,8 +58670,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr ""
@@ -58566,7 +58681,7 @@ msgstr ""
msgid "VAT Accounts"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr ""
@@ -58576,12 +58691,12 @@ msgid "VAT Audit Report"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr ""
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr ""
@@ -58775,7 +58890,6 @@ msgstr ""
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58791,14 +58905,12 @@ msgstr ""
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Stopnja Vrednotenja"
@@ -58806,19 +58918,19 @@ msgstr "Stopnja Vrednotenja"
msgid "Valuation Rate (In / Out)"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr ""
@@ -58828,7 +58940,7 @@ msgstr ""
msgid "Valuation and Total"
msgstr "Vrednotenje in Skupaj"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr ""
@@ -58842,7 +58954,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr ""
@@ -58854,7 +58966,7 @@ msgstr ""
msgid "Value (G - D)"
msgstr ""
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr ""
@@ -58973,12 +59085,12 @@ msgid "Variance ({})"
msgstr ""
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr ""
@@ -58997,7 +59109,7 @@ msgstr ""
msgid "Variant Based On"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr ""
@@ -59015,7 +59127,7 @@ msgstr ""
msgid "Variant Item"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr ""
@@ -59026,7 +59138,7 @@ msgstr ""
msgid "Variant Of"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr ""
@@ -59320,7 +59432,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr ""
@@ -59392,7 +59504,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59466,7 +59578,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59493,7 +59605,7 @@ msgstr ""
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59673,8 +59785,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr ""
@@ -59699,7 +59811,7 @@ msgstr ""
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr ""
@@ -59836,11 +59948,11 @@ msgstr ""
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr ""
@@ -59930,7 +60042,7 @@ msgstr ""
msgid "Wavelength In Megametres"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -59999,7 +60111,7 @@ msgstr ""
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr ""
@@ -60129,7 +60241,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr ""
@@ -60139,7 +60251,7 @@ msgstr ""
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60149,11 +60261,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 ""
@@ -60298,7 +60410,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr ""
@@ -60335,7 +60447,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60369,7 +60481,7 @@ msgstr ""
msgid "Work Order Item"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60410,19 +60522,23 @@ msgstr ""
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr ""
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr ""
@@ -60431,16 +60547,16 @@ msgstr ""
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr ""
@@ -60465,7 +60581,7 @@ msgstr ""
msgid "Work-in-Progress Warehouse"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr ""
@@ -60513,7 +60629,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60604,14 +60720,14 @@ msgstr ""
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Odpis"
@@ -60716,7 +60832,7 @@ msgstr ""
msgid "Wrong Company"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr ""
@@ -60772,11 +60888,11 @@ msgstr ""
msgid "You are importing data for the code list:"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr ""
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr ""
@@ -60784,7 +60900,7 @@ msgstr ""
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr ""
@@ -60812,7 +60928,7 @@ msgstr ""
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr ""
@@ -60853,11 +60969,11 @@ msgstr ""
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr ""
@@ -60881,7 +60997,7 @@ msgstr ""
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr ""
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr ""
@@ -60942,7 +61058,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr ""
@@ -60954,19 +61070,19 @@ msgstr ""
msgid "You don't have enough points to redeem."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60978,7 +61094,7 @@ msgstr ""
msgid "You have already selected items from {0} {1}"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr ""
@@ -61002,7 +61118,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr ""
@@ -61018,7 +61134,7 @@ msgstr ""
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr ""
@@ -61065,11 +61181,11 @@ msgstr ""
msgid "Zero Balance"
msgstr ""
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr ""
@@ -61091,11 +61207,11 @@ msgstr ""
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr ""
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr ""
@@ -61136,7 +61252,7 @@ msgid "cannot be greater than 100"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr ""
@@ -61285,7 +61401,7 @@ msgstr ""
msgid "per hour"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr ""
@@ -61318,7 +61434,7 @@ msgstr ""
msgid "reconciled"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr ""
@@ -61353,7 +61469,7 @@ msgstr ""
msgid "sandbox"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr ""
@@ -61361,8 +61477,8 @@ msgstr ""
msgid "subscription is already cancelled."
msgstr ""
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr ""
@@ -61380,7 +61496,7 @@ msgstr ""
msgid "to"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr ""
@@ -61407,7 +61523,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61429,7 +61545,7 @@ msgstr ""
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr ""
@@ -61437,7 +61553,7 @@ msgstr ""
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr ""
@@ -61445,7 +61561,7 @@ msgstr ""
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr ""
@@ -61478,11 +61594,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr ""
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr ""
@@ -61490,7 +61606,7 @@ msgstr ""
msgid "{0} Request for {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr ""
@@ -61578,11 +61694,11 @@ msgstr ""
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr ""
@@ -61594,7 +61710,7 @@ msgstr ""
msgid "{0} does not belong to Company {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61603,7 +61719,7 @@ msgid "{0} entered twice in Item Tax"
msgstr ""
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr ""
@@ -61628,7 +61744,7 @@ msgstr ""
msgid "{0} hours"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr ""
@@ -61650,7 +61766,7 @@ msgstr ""
msgid "{0} is already running for {1}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr ""
@@ -61658,12 +61774,12 @@ msgstr ""
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr ""
@@ -61671,7 +61787,7 @@ msgstr ""
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr ""
@@ -61679,7 +61795,7 @@ msgstr ""
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr ""
@@ -61687,7 +61803,7 @@ msgstr ""
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr ""
@@ -61727,27 +61843,27 @@ 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/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61755,7 +61871,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr ""
@@ -61771,7 +61887,7 @@ msgstr ""
msgid "{0} payment entries can not be filtered by {1}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr ""
@@ -61784,7 +61900,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr ""
@@ -61800,16 +61916,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr ""
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr ""
@@ -61821,7 +61937,7 @@ msgstr ""
msgid "{0} valid serial nos for Item {1}"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr ""
@@ -61837,7 +61953,7 @@ msgstr ""
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr ""
@@ -61875,8 +61991,8 @@ msgstr ""
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr ""
@@ -61986,7 +62102,7 @@ msgstr ""
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr ""
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr ""
@@ -62035,8 +62151,8 @@ msgstr ""
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr ""
@@ -62056,11 +62172,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62068,11 +62184,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr ""
@@ -62084,7 +62200,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr ""
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr ""
@@ -62096,7 +62212,7 @@ msgstr ""
msgid "{}"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr ""
diff --git a/erpnext/locale/sr.po b/erpnext/locale/sr.po
index f182c0fa2fe..5a917f23dfc 100644
--- a/erpnext/locale/sr.po
+++ b/erpnext/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Подсклоп"
msgid " Summary"
msgstr " Резиме"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Ставка обезбеђена од стране купца\" не може бити и ставка за набавку"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Ставка обезбеђена од стране купца\" не може имати стопу вредновања"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Да ли је основно средство\" мора бити означено, јер постоји запис о имовини за ову ставку"
@@ -273,11 +273,11 @@ msgstr "% испорученог материјала према овој лис
msgid "% of materials delivered against this Sales Order"
msgstr "% од материјала испорученим према овој продајној поруџбини"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Рачун' у одељку за рачуноводство купца {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Дозволи више продајних поруџбина везаних за набавну поруџбину купца'"
@@ -289,7 +289,7 @@ msgstr "'На основу' и 'Груписано по' не могу бити
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Дани од последње наруџбине' морају бити већи или једнаки нули"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Подразумевани {0} рачун' у компанији {1}"
@@ -307,7 +307,7 @@ msgstr "'Датум почетка' је обавезан"
msgid "'From Date' must be after 'To Date'"
msgstr "'Датум почетка' мора бити мањи од 'Датум завршетка'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Има серијски број' не може бити 'Да' за ставке ван залиха"
@@ -319,9 +319,9 @@ msgstr "'Инспекција је потребна пре испоруке' ј
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Инспекција је потребна пре набавке' је онемогућена за ставку {0}, није потребно креирати инспекцију квалитета"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Почетно'"
@@ -351,8 +351,8 @@ msgstr "'{0}' рачун је већ коришћен од стране {1}. К
msgid "'{0}' has been already added."
msgstr "'{0}' је већ додат."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' треба да буде у валути компаније {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 дана"
msgid "90 Above"
msgstr "Изнад 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Подеш
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Датум клиринга мора бити након датума чека за ред(ове): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Ставка {0} у реду {1} је фактурисана више од {2} "
@@ -825,7 +825,7 @@ msgstr "Документ о плаћању је обавезан за ред
msgid " {} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Није могуће извршити прекомерно фактурисање за следеће ставке:
"
@@ -888,7 +888,7 @@ msgstr "Датум књижења {0} не може бити пре дату
msgid "
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr "Цена из ценовника није подешена као измењива у подешавању продаје. У овом случају, подешавање опције Ажурирај ценовник на основу на Основна цена у ценовнику ће онемогућити аутоматско ажурирање цене ставке
Да ли сте сигурни да желите да наставите?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Да бисте дозволили прекомерно фактурисање, подесите дозвољени износ у подешавањима рачуна.
"
@@ -976,11 +976,11 @@ msgstr "Ваше пречице\n"
msgid "Your Shortcuts "
msgstr "Ваше пречице "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Укупан износ: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Неизмирени износ: {0}"
@@ -1050,7 +1050,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Група купаца са истим називом већ постоји, молимо Вас да промените име купца или преименујете групу купаца"
@@ -1214,11 +1214,11 @@ msgstr "Скраћено"
msgid "Abbreviation"
msgstr "Скраћеница"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Скраћеница је већ у употреби за другу компанију"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Скраћеница је обавезна"
@@ -1226,7 +1226,7 @@ msgstr "Скраћеница је обавезна"
msgid "Abbreviation: {0} must appear only once"
msgstr "Скраћеница: {0} се мора појавити само једном"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Изнад"
@@ -1280,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Прихваћена количина у јединици мере залиха"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Прихваћена количина"
@@ -1316,7 +1316,7 @@ msgstr "Кључ за приступ је обавезан за пружаоца
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "У складу са CEFACT/ICG/2010/IC013 или CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "У складу са саставницом {0}, ставка '{1}' недостаје у уносу залиха."
@@ -1434,8 +1434,8 @@ msgstr "Аналитички рачун"
msgid "Account Manager"
msgstr "Аццоунт Манагер"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Рачун недостаје"
@@ -1453,7 +1453,7 @@ msgstr "Рачун недостаје"
msgid "Account Name"
msgstr "Назив рачуна"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Рачун није пронађен"
@@ -1466,7 +1466,7 @@ msgstr "Рачун није пронађен"
msgid "Account Number"
msgstr "Број рачуна"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Рачун број {0} се већ користи као рачун {1}"
@@ -1505,7 +1505,7 @@ msgstr "Подврста рачуна"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1521,11 +1521,11 @@ msgstr "Врста рачуна"
msgid "Account Value"
msgstr "Вредност по рачуну"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Стање рачуна је већ на потражној страни, није дозвољено поставити 'Стање мора бити' као 'Дугује'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Стање рачуна је већ на дуговној страни, није дозвољено поставити 'Стање мора бити' као 'Потражује'"
@@ -1592,15 +1592,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Рачун са зависним подацима се не може конвертовати у аналитички рачун"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Рачун са зависним подацима не може бити постављен као аналитички рачун"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Рачун са постојећом трансакцијом не може бити конвертован у групу."
@@ -1608,8 +1608,8 @@ msgstr "Рачун са постојећом трансакцијом не мо
msgid "Account with existing transaction can not be deleted"
msgstr "Рачун са постојећом трансакцијом не може бити обрисан"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Рачун са постојећом трансакцијом не може бити конвертован у главну књигу"
@@ -1617,11 +1617,11 @@ msgstr "Рачун са постојећом трансакцијом не мо
msgid "Account {0} added multiple times"
msgstr "Рачун {0} је додат више пута"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Рачун {0} не може бити конвертован у групу јер је већ постављен као {1} за {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Рачун {0} не може бити онемогућен јер је већ постављен као {1} за {2}."
@@ -1629,11 +1629,11 @@ msgstr "Рачун {0} не може бити онемогућен јер је
msgid "Account {0} does not belong to company {1}"
msgstr "Рачун {0} не припада компанији {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Рачун {0} не припада компанији: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Рачун {0} не постоји"
@@ -1649,15 +1649,15 @@ msgstr "Рачун {0} се не поклапа са компанијом {1} к
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Рачун {0} не припада компанији {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Рачун {0} постоји у матичној компанији {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Рачун {0} је додат у зависну компанију {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Рачун {0} је онемогућен."
@@ -1665,7 +1665,7 @@ msgstr "Рачун {0} је онемогућен."
msgid "Account {0} is frozen"
msgstr "Рачун {0} је закључан"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Рачун {0} је неважећи. Валута рачуна мора бити {1}"
@@ -1673,19 +1673,19 @@ msgstr "Рачун {0} је неважећи. Валута рачуна мора
msgid "Account {0} should be of type Expense"
msgstr "Рачун {0} треба да буде врсте трошак"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Рачун {0}: Матични рачун {1} не може бити већ дефинисани рачун"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Рачун {0}: Матични рачун {1} не припада компанији: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Рачун {0}: Матични рачун {1} не постоји"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Рачун {0}: Не може се самопоставити као матични рачун"
@@ -1701,7 +1701,7 @@ msgstr "Рачун: {0} може бити ажуриран само путем
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Рачун: {0} није дозвољен у оквиру уноса уплате"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Рачун: {0} са валутом: {1} не може бити изабран"
@@ -1986,8 +1986,8 @@ msgstr "Рачуноводствени уноси"
msgid "Accounting Entry for Asset"
msgstr "Рачуноводствени унос за имовину"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Рачуноводствени унос за документ трошкова набавке у уносу залиха {0}"
@@ -2011,8 +2011,8 @@ msgstr "Рачуноводствени унос за услугу"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Рачуноводствени унос за залихе"
@@ -2021,7 +2021,7 @@ msgstr "Рачуноводствени унос за залихе"
msgid "Accounting Entry for {0}"
msgstr "Рачуноводствени унос за {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Рачуноводствени унос за {0}: {1} може бити само у валути: {2}"
@@ -2076,7 +2076,6 @@ msgstr "Рачуноводствени уноси су закључани до
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2089,14 +2088,13 @@ msgstr "Рачуноводствени уноси су закључани до
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Рачуни"
@@ -2126,8 +2124,8 @@ msgstr "Рачуни недостају у извештају"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2227,15 +2225,15 @@ msgstr "Табела рачуна не може бити празна."
msgid "Accounts to Merge"
msgstr "Рачуни за спајање"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Обрачунати трошкови"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Акумулирана амортизација"
@@ -2400,7 +2398,7 @@ msgstr "Извршене радње"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "Активирај број серије / шарже за ставку"
@@ -2524,7 +2522,7 @@ msgstr "Стварни датум завршетка"
msgid "Actual End Date (via Timesheet)"
msgstr "Стварни датум завршетка (преко евиденције времена)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Стварни датум завршетка не може бити пре стварног датума почетка"
@@ -2646,7 +2644,7 @@ msgstr "Стварно време у сатима (преко евиденциј
msgid "Actual qty in stock"
msgstr "Стварна количина на складишту"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Стварна врста пореза не може бити укључена у цену ставке у реду {0}"
@@ -2655,7 +2653,7 @@ msgstr "Стварна врста пореза не може бити укључ
msgid "Ad-hoc Qty"
msgstr "Непланирана количина"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Додај / Измени цене"
@@ -3154,7 +3152,7 @@ msgstr "Додатне информације"
msgid "Additional Information updated successfully."
msgstr "Додатне информације су успешно ажуриране."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Додатни пренос материјала"
@@ -3177,7 +3175,7 @@ msgstr "Додатни оперативни трошкови"
msgid "Additional Transferred Qty"
msgstr "Додатно пренета количина"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3189,11 +3187,6 @@ msgstr "Додатно пренета количина {0}\n"
"\t\t\t\t\tвредност поља 'Пренеси додатне сировине у\n"
"\t\t\t\t\tскладиште недовршене производње' у подешавањима производње."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Додатне информације о купцу."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Додатно је потребно {0} {1} ставке {2} према саставници да би се ова трансакција довршила"
@@ -3339,11 +3332,6 @@ msgstr "Адреса треба да буде повезана са компан
msgid "Address used to determine Tax Category in transactions"
msgstr "Адреса се користи за одређивање пореске категорије у трансакцијама"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Коригуј количину"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Прилагођавање према"
@@ -3356,8 +3344,8 @@ msgstr "Прилагођавање на основу цене из улазне
msgid "Administrative Assistant"
msgstr "Административни асистент"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Административни трошкови"
@@ -3425,7 +3413,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Авансне уплате"
@@ -3545,7 +3533,7 @@ msgstr "Против рачуна"
msgid "Against Blanket Order"
msgstr "Против оквирног налога"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Против наруџбине купца {0}"
@@ -3687,11 +3675,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Старост (дани)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Старост ({0})"
@@ -3841,21 +3829,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Сва одељења"
@@ -3935,7 +3923,7 @@ msgstr "Све групе добављача"
msgid "All Territories"
msgstr "Све територије"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Сва складишта"
@@ -3949,6 +3937,11 @@ msgstr "Све алокације су успешно усклађене"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Све комуникације укључујући и оне изнад биће премештене као нови проблем"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Све ставке су већ захтеване"
@@ -3957,23 +3950,23 @@ msgstr "Све ставке су већ захтеване"
msgid "All items have already been Invoiced/Returned"
msgstr "Све ставке су већ фактурисане/враћене"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Све ставке су већ примљене"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Све ставке су већ пребачене за овај радни налог."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Све ставке у овом документу већ имају повезану инспекцију квалитета."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Све повезане продајне поруџбине морају бити подуговорене."
@@ -3987,11 +3980,11 @@ msgstr "Сви коментари и имејлови биће копирани
msgid "All the items have been already returned."
msgstr "Све ставке су већ враћене."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Све потребне ставке (сировине) биће преузете из саставнице и попуњене у овој табели. Овде можете такође променити изворно складиште за било коју ставку. Током производње, можете пратити пренесене сировине из ове табеле."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Све ове ставке су већ фактурисане/враћене"
@@ -4010,7 +4003,7 @@ msgstr "Расподели"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Аутоматски расподели авансе (ФИФО)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Расподели износе плаћања"
@@ -4020,7 +4013,7 @@ msgstr "Расподели износе плаћања"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Расподели плаћање на основу услова плаћања"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Расподели захтев за наплату"
@@ -4050,7 +4043,7 @@ msgstr "Распоређено"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4107,7 +4100,7 @@ msgstr "Алоцирана количина"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4171,7 +4164,7 @@ msgstr "Дозволи у повраћајима"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Дозволи интерне трансфере по тржишним ценама"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Дозволи додељивање ставки више пута у трансакцији"
@@ -4294,16 +4287,6 @@ msgstr "Дозволи поновно постављање споразума о
msgid "Allow Sales"
msgstr "Дозволи продају"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "Дозволи креирање излазне фактуре без отпремнице"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "Дозволи креирање излазне фактуре без продајне поруџбине"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4429,6 +4412,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4505,10 +4498,8 @@ msgstr "Дозвољене ставке"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Дозвољене трансакције са"
@@ -4520,6 +4511,11 @@ msgstr "Дозвољене примарне улоге су 'Купац' и 'Д
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4561,8 +4557,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Такође, не можете се вратити на ФИФО након што сте подесили метод вредновања на просечну вредност за ову ставку."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4803,7 +4799,7 @@ msgstr "Увек питај"
msgid "Amount"
msgstr "Износ"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Износ (AED)"
@@ -4937,12 +4933,12 @@ msgid "Amount to Bill"
msgstr "Износ за фактурисање"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Износ {0} {1} према {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Износ {0} {1} одбијен од {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4987,11 +4983,11 @@ msgstr "Износ"
msgid "An Item Group is a way to classify items based on types."
msgstr "Група ставки је начин за класификацију ставки на основу врсте."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Догодила се грешка приликом поновне обраде вредновања ставки путем {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Догодила се грешка током процеса ажурирања"
@@ -5531,7 +5527,7 @@ msgstr "Пошто је поље {0} омогућено, поље {1} је об
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Пошто је поље {0} омогућено, вредност поља {1} треба да буде већа од 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Пошто већ постоје поднете трансакције за ставку {0}, не можете променити вредност за {1}."
@@ -5543,7 +5539,7 @@ msgstr "Пошто постоје резервисане залихе, не мо
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Пошто постоји довољно ставки подсклопова, радни налог није потребан за складиште {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Пошто постоји довољно сировина, захтев за набавку није потребан за складиште {0}."
@@ -5681,7 +5677,7 @@ msgstr "Рачун категорије имовине"
msgid "Asset Category Name"
msgstr "Назив категорије имовине"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Категорија имовине је обавезна за основно средство"
@@ -5858,8 +5854,8 @@ msgstr "Количина имовине"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5959,7 +5955,7 @@ msgstr "Имовина отказана"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Имовина не може бити отказана, јер је већ {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Имовина не може бити отписана пре последњег уноса амортизације."
@@ -5991,7 +5987,7 @@ msgstr "Имовина је ван функције због поправке и
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Имовина примљена на локацији {0} и дата запосленом лицу {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Имовина враћена у претходно стање"
@@ -5999,20 +5995,20 @@ msgstr "Имовина враћена у претходно стање"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Имовина је враћена у претходно стање након што је капитализација имовине {0} отказана"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Имовина враћена"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Отписана имовина"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Имовина је отписана путем налога књижења {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Имовина продата"
@@ -6032,7 +6028,7 @@ msgstr "Имовина ажурирана након што је подељен
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Имовина је ажурирана због поправке имовине {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Имовина {0} не може бити отписана, јер је већ {1}"
@@ -6073,7 +6069,7 @@ msgstr "Имовина {0} није подешена за обрачун амо
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Имовина {0} није поднета. Молимо Вас да поднесете имовину пре наставка."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Имовина {0} мора бити поднета"
@@ -6123,7 +6119,7 @@ msgstr "Имовина није креирана за {item_code}. Мораће
msgid "Assets {assets_link} created for {item_code}"
msgstr "Имовина {assets_link} је креирана за {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Додели посао запосленом лицу"
@@ -6184,7 +6180,7 @@ msgstr "Мора бити изабран барем један од релева
msgid "At least one of the Selling or Buying must be selected"
msgstr "Мора бити изабран барем један од продаје или набавке"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Најмање једна сировина мора бити присутна у уносу залиха за врсту {0}"
@@ -6192,21 +6188,17 @@ msgstr "Најмање једна сировина мора бити прису
msgid "At least one row is required for a financial report template"
msgstr "Потребан је најмање један ред у шаблону финансијског извештаја"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Мора бити одабрано барем једно складиште"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "У реду #{0}: Рачун разлике не сме бити врсте рачуна за залихе, молимо Вас да измените врсту рачуна за рачун {1} или да изаберете други рачун"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "У реду #{0}: Идентификатор секвенце {1} не може бити мањи од идентификатора секвенце претходног реда {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "У реду #{0}: Изабрали сте рачун разлике {1}, који је врсте рачуна трошак продате робе. Молимо Вас да изаберете други рачун"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6288,11 +6280,11 @@ msgstr "Назив атрибута"
msgid "Attribute Value"
msgstr "Вредност атрибута"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Табела атрибута је обавезна"
@@ -6300,19 +6292,19 @@ msgstr "Табела атрибута је обавезна"
msgid "Attribute value: {0} must appear only once"
msgstr "Вредност атрибута: {0} мора се појавити само једном"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Атрибут {0} је више пута изабран у табели атрибута"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Атрибути"
@@ -6524,7 +6516,7 @@ msgstr "Аутоматска повезивање и постављање стр
msgid "Auto re-order"
msgstr "Аутоматско поновно наручивање"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Документ аутоматског понављања је ажуриран"
@@ -6636,7 +6628,7 @@ msgstr "Датум доступности за употребу"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Доступна количина"
@@ -6725,10 +6717,6 @@ msgstr "Датум доступности за употребу"
msgid "Available for use date is required"
msgstr "Потребан је датум доступности за употребу"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Доступна количина је {0}, потребно вам је {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Доступно {0}"
@@ -6737,8 +6725,8 @@ msgstr "Доступно {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Датум доступности за употребу треба да буде после датума набавке"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Просечна старост"
@@ -6762,7 +6750,9 @@ msgstr "Просечна вредност поруџбине"
msgid "Average Order Values"
msgstr "Просечна вредност поруџбина"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Просечна цена"
@@ -6786,7 +6776,7 @@ msgid "Avg Rate"
msgstr "Просечна цена"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Просечна цена (стање залиха)"
@@ -6844,7 +6834,7 @@ msgstr "Количина у запису о стању ставки"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6867,7 +6857,7 @@ msgstr "Саставница"
msgid "BOM 1"
msgstr "Саставница 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Саставница 1 {0} и саставница 2 {1} не би требале да буду исте"
@@ -6939,11 +6929,6 @@ msgstr "Ставка детаљног приказа саставнице"
msgid "BOM ID"
msgstr "ИД саставнице"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Информације о саставници"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7097,7 +7082,7 @@ msgstr "Ставка саставнице на веб-сајту"
msgid "BOM Website Operation"
msgstr "Операција саставнице на веб-сајту"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Саставница и количина готовог производа су обавезни за растављање"
@@ -7165,7 +7150,7 @@ msgstr "Унос залиха са ранијим датумом"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Backflush материјала из складишта недовршене производње"
@@ -7229,7 +7214,7 @@ msgstr "Стање у основној валути"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Стање количине"
@@ -7294,7 +7279,7 @@ msgstr "Врста салда"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Вредност стања"
@@ -7450,8 +7435,8 @@ msgid "Bank Balance"
msgstr "Стање на банкарском рачуну"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Банкарске накнаде"
@@ -7566,8 +7551,8 @@ msgstr "Врста банкарске гаранције"
msgid "Bank Name"
msgstr "Назив банке"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Рачун за прекорачење"
@@ -7740,11 +7725,11 @@ msgstr "Банкарство"
msgid "Barcode Type"
msgstr "Врста бар-кода"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Бар-код {0} се већ користи у ставци {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Бар-код {0} није валидан {1} код"
@@ -7901,7 +7886,7 @@ msgstr "Основна цена (према јединици мере залих
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7976,7 +7961,7 @@ msgstr "Статус истека ставке шарже"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8065,13 +8050,13 @@ msgstr "Количина шарже је ажурирана на {0}"
msgid "Batch Quantity"
msgstr "Количина шарже"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8088,7 +8073,7 @@ msgstr "Јединица мере шарже"
msgid "Batch and Serial No"
msgstr "Број серије и шарже"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Шаржа није креирана за ставку {} јер нема серију шарже."
@@ -8111,12 +8096,12 @@ msgstr "Шаржа {0} и складиште"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Шаржа {0} није доступна у складишту {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Шаржа {0} за ставку {1} је истекла."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Шаржа {0} за ставку {1} је онемогућена."
@@ -8171,7 +8156,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8180,7 +8165,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8194,11 +8179,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Саставница"
@@ -8299,7 +8286,7 @@ msgstr "Детаљи адресе"
msgid "Billing Address Name"
msgstr "Назив адресе"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Адреса за фактурисање не припада {0}"
@@ -8551,6 +8538,16 @@ msgstr "Блокирати фактуру"
msgid "Block Supplier"
msgstr "Блокирати добављача"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8647,7 +8644,7 @@ msgstr "Резервисано"
msgid "Booked Fixed Asset"
msgstr "Уписано основно средство"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Књиге су затворене до периода који се завршава {0}"
@@ -8906,8 +8903,8 @@ msgstr "Изградити стабло"
msgid "Buildable Qty"
msgstr "Количина за изградњу"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Зграде"
@@ -9068,16 +9065,16 @@ msgstr "Подразумевано, назив добављача постављ
msgid "By-Product"
msgstr "Нуспроизвод"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Прескочи проверу кредитног лимита при продајној поруџбини"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Прескочи проверу кредита при продајној поруџбини"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9125,8 +9122,8 @@ msgstr "CRM Белешка"
msgid "CRM Settings"
msgstr "CRM Подешавање"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Рачун за грађевинске радове у току"
@@ -9381,7 +9378,7 @@ msgstr "Кампања {0} није пронађена"
msgid "Can be approved by {0}"
msgstr "Може бити одобрен од {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Не може се затворити радни налог. Пошто {0} радних картица има статус у обради."
@@ -9414,13 +9411,13 @@ msgstr "Не може се филтрирати према броју докум
msgid "Can only make payment against unbilled {0}"
msgstr "Може се извршити плаћање само за неизмирене {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Можете се позвати на ред само ако је врста наплате 'На износ претходног реда' или 'Укупан износ претходног реда'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Не можете променити метод вредновања, јер постоје трансакције за неке ставке које немају сопствени метод вредновања"
@@ -9462,7 +9459,7 @@ msgstr "Није могуће доделити благајника"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Није могуће израчунати време јер недостаје адреса возача."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Није могуће променити подешавање рачуна инвентара"
@@ -9470,9 +9467,9 @@ msgstr "Није могуће променити подешавање рачун
msgid "Cannot Create Return"
msgstr "Није могуће креирати повраћај"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Није могуће спојити"
@@ -9500,7 +9497,7 @@ msgstr "Не може се изменити {0} {1}, молимо Вас да у
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Не може се применити порез одбијен на извору против више странака у једном уносу"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Не може бити основно средство јер је креирана књига залиха."
@@ -9520,7 +9517,7 @@ msgstr "Није могуће отказати унос резервације
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Не може се отказати јер је обрада отказаних докумената у току."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Не може се отказати јер већ постоји унос залиха {0}"
@@ -9540,15 +9537,15 @@ msgstr "Није могуће отказати овај документ јер
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Не може се отказати овај документ јер је повезан са поднетом имовином {asset_link}. Молимо Вас да је откажете да бисте наставили."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Не може се отказати трансакција за завршени радни налог."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Није могуће мењање атрибута након трансакције са залихама. Креирајте нову ставку и пренесите залихе"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Не може се променити врста референтног документа."
@@ -9556,11 +9553,11 @@ msgstr "Не може се променити врста референтног
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Не може се променити датум заустављања услуге за ставку у реду {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Не може се променити подразумевана валута компаније јер постоје трансакције. Трансакције морају бити отказане да би се променила подразумевана валута."
@@ -9576,11 +9573,11 @@ msgstr "Не може се конвертовати трошковни цент
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Не може се конвертовати задатак тако да не буде у групи, јер постоје следећи зависни задаци: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Не може се конвертовати у групу јер је изабрана врста рачуна."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Не може се склонити у групу јер је изабрана врста рачуна."
@@ -9588,7 +9585,7 @@ msgstr "Не може се склонити у групу јер је изабр
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Не могу се креирати уноси за резервацију залиха за пријемницу набавке са будућим датумом."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Не може се креирати листа за одабир за продајну поруџбину {0} јер има резервисане залихе. Поништите резервисање залиха да бисте креирали листу."
@@ -9614,7 +9611,7 @@ msgstr "Не може се прогласити као изгубљено јер
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Не може се одбити када је категорија за 'Вредновање' или 'Вредновање и укупно'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Не може се обрисати ред прихода/расхода курсних разлика"
@@ -9622,12 +9619,12 @@ msgstr "Не може се обрисати ред прихода/расхода
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Не може се обрисати број серије {0}, јер се користи у трансакцијама са залихама"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Није могуће обрисати ставку која је већ поручена"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Није могуће обрисати заштићени основни DocType: {0}"
@@ -9639,7 +9636,7 @@ msgstr "Није могуће обрисати виртуелни DocType: {0}.
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "Није могуће онемогућити број серије и шарже за ставку јер већ постоје записи за серију / шаржу."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Није могуће онемогућити стварно праћење инвентара јер постоје уноси у књигу залиха за компанију {0}. Молимо Вас да најпре откажете трансакције залиха и покушате поново."
@@ -9647,20 +9644,20 @@ msgstr "Није могуће онемогућити стварно праћењ
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "Није могуће онемогућити {0} јер то може довести до нетачног вредновања залиха."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Није могуће демонтирати више од произведене количине."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr "Није могуће демонтирати количину {0} из уноса залиха {1}. Доступно је само {2} за демонтажу."
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Није могуће омогућити рачун инвентара по ставкама јер постоје уноси у књигу залиха за компанију {0} који користе рачун инвентара по складиштима. Молимо Вас да најпре откажете трансакције залиха и покушате поново."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Не може се обезбедити испорука по броју серије јер је ставка {0} додата са и без обезбеђења испоруке по броју серије."
@@ -9676,7 +9673,7 @@ msgstr "Није могуће пронаћи ставку или складиш
msgid "Cannot find Item with this Barcode"
msgstr "Не може се пронаћи ставка са овим бар-кодом"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Не може се пронаћи подразумевано складиште за ставку {0}. Молимо Вас да поставите један у мастер подацима ставке или подешавањима залиха."
@@ -9684,15 +9681,15 @@ msgstr "Не може се пронаћи подразумевано склад
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Није могуће спојити {0} '{1}' у '{2}' јер оба имају постојеће књиговодствене уносе у различитим валутама за '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Није могуће произвести више ставке {0} него што је количина на продајној поруџбини {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Не може се произвести више ставки за {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Не може се произвести више од {0} ставки за {1}"
@@ -9700,12 +9697,12 @@ msgstr "Не може се произвести више од {0} ставки
msgid "Cannot receive from customer against negative outstanding"
msgstr "Не може се примити од купца против негативних неизмирених обавеза"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Није могуће смањити количину испод поручене или набављене количине"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Не може се позвати број реда већи или једнак тренутном броју реда за ову врсту наплате"
@@ -9718,14 +9715,14 @@ msgstr "Није могуће преузети токен за ажурирањ
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Није могуће преузети токен за повезивање. Проверите евиденцију грешака за више информација"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Није могуће изабрати врсту групе као група купаца. Молимо Вас да изаберете групу купаца која није групне врсте."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9739,7 +9736,7 @@ msgstr "Не може се поставити као изгубљено јер
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Не може се поставити ауторизација на основу попуста за {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Не може се поставити више подразумеваних ставки за једну компанију."
@@ -9747,11 +9744,11 @@ msgstr "Не може се поставити више подразумеван
msgid "Cannot set multiple account rows for the same company"
msgstr "Није могуће поставити више редова рачуна за исту компанију"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Не може се поставити количина мања од испоручене количине."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Не може се поставити количина мања од примљене количине."
@@ -9763,7 +9760,7 @@ msgstr "Не може се поставити поље {0} за копи
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Брисање не може да започне. Друго брисање {0} је већ у реду чекања или је у току. Молимо Вас да сачекате да се заврши."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "Није могуће ажурирати цену јер је ставка {0} већ поручена или набављена по овој понуди"
@@ -9796,7 +9793,7 @@ msgstr "Капацитет (јединица мере залиха)"
msgid "Capacity Planning"
msgstr "Планирање капацитета"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Грешка у планирању капацитета, планирано почетно време не може бити исто као и време завршетка"
@@ -9815,13 +9812,13 @@ msgstr "Капацитет у јединици мера залихе"
msgid "Capacity must be greater than 0"
msgstr "Капацитет мора бити већи од 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Капитална опрема"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Капиталне залихе"
@@ -10038,7 +10035,7 @@ msgstr "Детаљи категорије"
msgid "Category-wise Asset Value"
msgstr "Вредност имовине по категоријама"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Пажња"
@@ -10143,7 +10140,7 @@ msgstr "Промена датума издавања"
msgid "Change in Stock Value"
msgstr "Промена вредности залиха"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Промените врсту рачуна на Потраживање или изаберите други рачун."
@@ -10153,7 +10150,7 @@ msgstr "Промените врсту рачуна на Потраживање
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ручно промените овај датум да поставите датум почетка следеће синхронизације"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Промењено име купца у '{}' јер '{}' већ постоји."
@@ -10161,7 +10158,7 @@ msgstr "Промењено име купца у '{}' јер '{}' већ пост
msgid "Changes in {0}"
msgstr "Промене у {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Промена групе купаца за изабраног купца није дозвољена."
@@ -10176,7 +10173,7 @@ msgid "Channel Partner"
msgstr "Канал партнера"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Накнада врсте 'Стварно' у реду {0} не може бити укључена у цену ставке или плаћени износ"
@@ -10230,7 +10227,7 @@ msgstr "Дијаграм контног плана"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10373,7 +10370,7 @@ msgstr "Ширина чека"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Датум чека / референце"
@@ -10431,7 +10428,7 @@ msgstr "Зависни Docname"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Референца зависног реда"
@@ -10483,6 +10480,11 @@ msgstr "Класификација купаца по регионима"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10625,11 +10627,11 @@ msgstr "Затворен документ"
msgid "Closed Documents"
msgstr "Затворени документи"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Затворени радни налог се не може зауставити или поново отворити"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Затворена поруџбина се не може отказати. Отворите да бисте отказали."
@@ -10881,11 +10883,17 @@ msgstr "Стопа провизије %"
msgid "Commission Rate (%)"
msgstr "Стопа провизије (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Провизија на продају"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10916,7 +10924,7 @@ msgstr "Временски термин комуникационог медиј
msgid "Communication Medium Type"
msgstr "Врста комуникационог медија"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Компактни испис ставке"
@@ -11315,8 +11323,8 @@ msgstr "Компаније"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11369,7 +11377,7 @@ msgstr "Компаније"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11458,18 +11466,20 @@ msgstr "Приказ адресе компаније"
msgid "Company Address Name"
msgstr "Назив адресе компаније"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Недостаје адреса компаније. Немате дозволу да је ажурирате. Молимо Вас да контактирате систем менаџера."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Текући рачун компаније"
@@ -11565,7 +11575,7 @@ msgstr "Компанија и датум књижења су обавезни"
msgid "Company and account filters not set!"
msgstr "Филтери компаније и рачуна нису постављени!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Валуте оба предузећа морају бити исте за међукомпанијске трансакције."
@@ -11600,7 +11610,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Назив поља за линк компаније који се користи за филтрирање (опционо - оставите празно да бисте обрисали све записе)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Назив компаније није исти"
@@ -11639,12 +11649,12 @@ msgstr "Компаније које представља интерни доба
msgid "Company {0} added multiple times"
msgstr "Компанија {0} је додата више пута"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Компанија {0} не постоји"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Компанија {0} је додата више пута"
@@ -11686,7 +11696,7 @@ msgstr "Назив конкурента"
msgid "Competitors"
msgstr "Конкуренти"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Заврши посао"
@@ -11733,12 +11743,12 @@ msgstr "Завршени пројекти"
msgid "Completed Qty"
msgstr "Завршена количина"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Завршена количина не може бити већа од 'Количина за производњу'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Завршена количина"
@@ -11927,7 +11937,7 @@ msgstr "Размотрите рачуноводствене димензије"
msgid "Consider Minimum Order Qty"
msgstr "Размотрите минималну количину наруџбине"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Размотрите губитак у процесу"
@@ -12121,7 +12131,7 @@ msgstr "Трошак утрошених ставки"
msgid "Consumed Qty"
msgstr "Утрошена количина"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Утрошена количина не може бити већа од резервисане количине за ставку {0}"
@@ -12150,7 +12160,7 @@ msgstr "Утрошене ставке залиха, утрошене ставк
msgid "Consumed Stock Total Value"
msgstr "Укупна вредност утрошених залиха"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Утрошена количина ставке {0} премашује пренету количину."
@@ -12278,7 +12288,7 @@ msgstr "Контакт бр."
msgid "Contact Person"
msgstr "Особа за контакт"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Особа за контакт не припада {0}"
@@ -12404,6 +12414,11 @@ msgstr "Контрола историјских трансакција зали
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12464,7 +12479,7 @@ msgstr "Фактор конверзије"
msgid "Conversion Rate"
msgstr "Стопа конверзије"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Фактор конверзије за подразумевану јединицу мере мора бити 1 у реду {0}"
@@ -12472,15 +12487,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 "Фактор конверзије за ставку {0} је враћен на 1.0 јер је јединица мере {1} иста као јединица мере залиха {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Стопа конверзије не може бити 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Стопа конверзије је 1.00, али валута документа се разликује од валуте компаније"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Стопа конверзије мора бити 1.00 уколико је валута документа иста као валута компаније"
@@ -12557,13 +12572,13 @@ msgstr "Корективно"
msgid "Corrective Action"
msgstr "Корективна радња"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Корективна радна картица"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Корективна операција"
@@ -12730,7 +12745,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12863,7 +12878,7 @@ msgstr "Трошковни центар {} је групни трошковни
msgid "Cost Center: {0} does not exist"
msgstr "Трошковни центар: {0} не постоји"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Трошковни центри"
@@ -12906,17 +12921,13 @@ msgstr "Трошак испоручених ставки"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Трошак продате робе"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Рачун трошка продате робе у табели ставки"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Трошак издатих ставки"
@@ -12996,7 +13007,7 @@ msgstr "Није могуће обрисати демо податке"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Није могуће аутоматски креирати купца због следећих недостајућих обавезних поља:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Није могуће аутоматски креирати документ о смањењу, поништите означавање опције 'Издај документ о смањењу' и поново пошаљите"
@@ -13185,7 +13196,7 @@ msgstr "Креирај фактуру"
msgid "Create Item"
msgstr "Креирај ставку"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Креирај радну картицу"
@@ -13217,7 +13228,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Креирај књижења за кусур"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Креирај линк"
@@ -13284,7 +13295,7 @@ msgstr "Креирај унос уплате за консолидоване ф
msgid "Create Payment Request"
msgstr "Креирај захтев за наплату"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Креирај листу за одабир"
@@ -13429,7 +13440,7 @@ msgstr "Креирај задатак"
msgid "Create Tasks"
msgstr "Креирај задатке"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Креирај шаблон за порез"
@@ -13467,12 +13478,12 @@ msgstr "Креирај дозволу за корисника"
msgid "Create Users"
msgstr "Креирај кориснике"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Креирај варијанту"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Креирај варијанте"
@@ -13503,12 +13514,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Креирај варијанту са шаблонском сликом."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Креирај трансакцију улазних залиха за ставку."
@@ -13542,7 +13553,7 @@ msgstr "Креирај {0} {1} ?"
msgid "Created By Migration"
msgstr "Креирано путем миграције"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Креирано {0} таблица за оцењивање за {1} између:"
@@ -13575,7 +13586,7 @@ msgstr "Креирање отпремнице..."
msgid "Creating Delivery Schedule..."
msgstr "Креирање распореда испоруке..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Креирање димензија..."
@@ -13770,7 +13781,7 @@ msgstr "Одложено плаћање"
msgid "Credit Limit"
msgstr "Ограничење потраживања"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Ограничење потраживања премашено"
@@ -13780,12 +13791,6 @@ msgstr "Ограничење потраживања премашено"
msgid "Credit Limit Settings"
msgstr "Подешавање ограничења потраживања"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Ограничење потраживања и услови плаћања"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Ограничење потраживања:"
@@ -13817,7 +13822,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13845,7 +13850,7 @@ msgstr "Документ о смањењу издат"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Документ о смањењу ће ажурирати сопствени износ који није измирен, чак и уколико је поље 'Поврат по основу' специфично наведено."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Документ о смањењу {0} је аутоматски креиран"
@@ -13853,7 +13858,7 @@ msgstr "Документ о смањењу {0} је аутоматски кре
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Потражује"
@@ -13862,20 +13867,20 @@ msgstr "Потражује"
msgid "Credit in Company Currency"
msgstr "Потражује у валути компаније"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Ограничење потраживања премашено за клијента {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Ограничење потраживања је већ дефинисано за компанију {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Ограничење потраживања премашено за купца {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13883,8 +13888,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Коефицијент обрта добављача"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Повериоци"
@@ -14054,7 +14059,7 @@ msgstr "Конверзија валуте мора бити примењива
msgid "Currency and Price List"
msgstr "Валута и ценовник"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Валута не може бити промењена након што су унесени подаци користећи другу валуту"
@@ -14064,7 +14069,7 @@ msgstr "Филтери по валути тренутно нису подржа
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Валута за {0} мора бити {1}"
@@ -14147,8 +14152,8 @@ msgstr "Тренутни почетни датум фактуре"
msgid "Current Level"
msgstr "Тренутни ниво"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Тренутне обавезе"
@@ -14215,6 +14220,11 @@ msgstr "Тренутне залихе"
msgid "Current Valuation Rate"
msgstr "Тренутна стопа вредновања"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Криве"
@@ -14310,7 +14320,6 @@ msgstr "Прилагођено раздвајање"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14417,7 +14426,6 @@ msgstr "Прилагођено раздвајање"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14506,8 +14514,8 @@ msgstr "Адреса купца"
msgid "Customer Addresses And Contacts"
msgstr "Адресе и контакт купца"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Аванси купца"
@@ -14521,7 +14529,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14604,6 +14612,7 @@ msgstr "Повратне информације купца"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14626,7 +14635,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14643,6 +14652,7 @@ msgstr "Повратне информације купца"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14686,7 +14696,7 @@ msgstr "Ставка купца"
msgid "Customer Items"
msgstr "Ставке купца"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Купац локална наруџбина"
@@ -14738,7 +14748,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14844,7 +14854,7 @@ msgstr "Пружено од стране купца"
msgid "Customer Provided Item Cost"
msgstr "Трошак ставке обезбеђене од стране купца"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Корисничка подршка"
@@ -14901,9 +14911,9 @@ msgstr "Купац или ставка"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Купац је неопходан за 'Попуст по купцу'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Купац {0} не припада пројекту {1}"
@@ -15015,7 +15025,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Дневни резиме пројекта за {0}"
@@ -15106,7 +15116,7 @@ msgstr "Датум рођења не може бити већи од данаш
msgid "Date of Commencement"
msgstr "Датум почетка"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Датум почетка треба бити већи од датума оснивања"
@@ -15332,7 +15342,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15360,13 +15370,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Дугује према"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Дугује према је обавезно"
@@ -15494,8 +15504,7 @@ msgstr "Подразумевани рачун"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15521,14 +15530,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Подразумевани рачун примљених аванса"
@@ -15543,19 +15552,19 @@ msgstr "Подразумевани опсег старости"
msgid "Default BOM"
msgstr "Подразумевана саставница"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Подразумевана саставница ({0}) мора бити активна за ову ставку или њен шаблон"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Подразумевана саставница за {0} није пронађена"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Подразумевана саставница није пронађена за готов производ {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Подразумевана саставница није пронађена за ставку {0} и пројекат {1}"
@@ -15608,9 +15617,7 @@ msgid "Default Company"
msgstr "Подразумевана компанија"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Подразумевани текући рачун"
@@ -15726,6 +15733,16 @@ msgstr "Подразумевана група ставки"
msgid "Default Item Manufacturer"
msgstr "Подразумевани произвођач ставки"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15761,23 +15778,19 @@ msgid "Default Payment Request Message"
msgstr "Подразумевана порука у захтеву за наплату"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Подразумевани шаблон услова плаћања"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15900,15 +15913,15 @@ msgstr "Подразумевана територија"
msgid "Default Unit of Measure"
msgstr "Подразумевана јединица мере"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "Подразумевана јединица мере за ставку {0} не може се директно променити јер је трансакција већ извршена са другом јединицом мере. Потребно је отказати повезана документа или креирање нове ставке."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Подразумевана јединица мере за ставку {0} не може се директно променити јер је већ извршена трансакција са другом јединицом мере. Неопходно је креирање нове ставке у циљу коришћења подразумеване јединице мере."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Подразумевана јединица мере за варијанту '{0}' мора бити иста као у шаблону '{1}'"
@@ -15960,7 +15973,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Подразумевана подешавања за трансакције везане за залихе"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Подразумевани порески шаблони за продају, набавку и ставке су креирани."
@@ -16051,6 +16064,12 @@ msgstr "Дефиниши врсту пројекта."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Дефинише датуме након кога се ставка више не може користити у трансакцијама или производњи"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16133,12 +16152,12 @@ msgstr "Обриши потенцијалне клијенте и адресе"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Обриши трансакције"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Обриши све трансакције за ову компанију"
@@ -16159,8 +16178,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Брисање {0} и свих повезаних докумената са заједничком шифром..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Брисање у току!"
@@ -16271,11 +16290,11 @@ msgstr "Испоручена количина"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Испоручена количина (у јединици мере залиха)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16356,7 +16375,7 @@ msgstr "Менаџер испоруке"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16416,11 +16435,11 @@ msgstr "Отпремница за упаковану ставку"
msgid "Delivery Note Trends"
msgstr "Анализа отпремница"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Отпремница {0} није поднета"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Отпремнице"
@@ -16506,10 +16525,6 @@ msgstr "Складиште за испоруку"
msgid "Delivery to"
msgstr "Испорука ка"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Складиште за испоруку је обавезно за ставку залиха {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16629,8 +16644,8 @@ msgstr "Амортизована сума"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16723,7 +16738,7 @@ msgstr "Опције амортизације"
msgid "Depreciation Posting Date"
msgstr "Датум књижења амортизације"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Датум књижења амортизације не може бити пре датума када је средство доступно за употребу"
@@ -16881,15 +16896,15 @@ msgstr "Разлика (Дугује - Потражује)"
msgid "Difference Account"
msgstr "Рачун разлике"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Рачун разлике у табели ставки"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Рачун разлике мора бити рачун имовине или обавеза (привремено почетно стање), јер је овај унос залиха унос отварања почетног стања"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Рачун разлике мора бити рачун имовине или обавеза, јер ово усклађивање залиха представља унос почетног стања"
@@ -17001,15 +17016,15 @@ msgstr "Димензије"
msgid "Direct Expense"
msgstr "Директан трошак"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Директни трошкови"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Директан приход"
@@ -17090,6 +17105,11 @@ msgstr "Онемогући заокружени укупни износ"
msgid "Disable Serial No And Batch Selector"
msgstr "Онемогући број серије и селектор шарже"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17126,11 +17146,11 @@ msgstr "Онемогућено складиште {0} се не може кор
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Ценовна правила су онемогућена јер је ово {} интерна трансакција"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Цене са укљученим порезом су онемогућене јер је ово {} интерна трансакција"
@@ -17146,7 +17166,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17154,15 +17174,15 @@ msgstr "Онемогућава аутоматско повлачење пост
msgid "Disassemble"
msgstr "Демонтирати"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Налог за демонтажу"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Демонтирана количина не може бити мања или једнака 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Демонтирана количина не може бити мања или једнака 0 ."
@@ -17449,7 +17469,7 @@ msgstr "Дискрециони разлог"
msgid "Dislikes"
msgstr "Негативне оцене"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Отпрема"
@@ -17530,7 +17550,7 @@ msgstr "Назив за приказ"
msgid "Disposal Date"
msgstr "Датум отуђења"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Датум отуђења {0} не може бити пре {1} датума {2} за имовину."
@@ -17644,8 +17664,8 @@ msgstr "Назив дистрибуције"
msgid "Distributor"
msgstr "Дистрибутер"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Исплаћене дивиденде"
@@ -17707,7 +17727,7 @@ msgstr "Не приказуј никакве ознаке попут $ поре
msgid "Do not update variants on save"
msgstr "Немојте ажурирати варијанте приликом чувања"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Да ли заиста желите да обновите отписану имовину?"
@@ -17731,7 +17751,7 @@ msgstr "Да ли желите да обавестите све купце пу
msgid "Do you want to submit the material request"
msgstr "Да ли желите да поднесете захтев за набавку"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Да ли желите да поднесете унос залиха?"
@@ -17798,11 +17818,11 @@ msgstr "Број документа"
msgid "Document Type "
msgstr "Врста документа "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Врста документа је већ коришћена као димензија"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Документација"
@@ -17965,12 +17985,6 @@ msgstr "Категорије возачке дозволе"
msgid "Driving License Category"
msgstr "Категорија возачке дозволе"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Уклони процедуре"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17991,12 +18005,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Уклања постојеће SQL процедуре и функције које је креирао извештај потраживања од купаца"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Датум доспећа не може бити након {0}"
@@ -18155,8 +18163,8 @@ msgstr "Трајање (дани)"
msgid "Duration in Days"
msgstr "Трајање у данима"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Порези и таксе"
@@ -18239,7 +18247,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Свака трансакција"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Најранији"
@@ -18353,6 +18361,10 @@ msgstr "Обавезно је одабрати или циљану количи
msgid "Either target qty or target amount is mandatory."
msgstr "Обавезно је одабрати или циљу количину или циљни износ."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18372,8 +18384,8 @@ msgstr "Електрична енергија"
msgid "Electricity down"
msgstr "Нестанак струје"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Електронска опрема"
@@ -18577,8 +18589,8 @@ msgstr "Аванс запосленог лица"
msgid "Employee Advances"
msgstr "Аванси запосленог лица"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Обавезе по основу бенефиција запосленим лицима"
@@ -18661,7 +18673,7 @@ msgstr "Запослено лице {0} већ има повезаног кор
msgid "Employee {0} does not belong to the company {1}"
msgstr "Запослено лице {0} не припада компанији {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Запослено лице {0} тренутно ради на другој радној станици. Молимо Вас да доделите друго запослено лице."
@@ -18677,7 +18689,7 @@ msgstr "Запослена лица"
msgid "Empty"
msgstr "Празно"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Листа за брисање је празна"
@@ -18708,7 +18720,7 @@ msgstr "Омогућите заказивање термина"
msgid "Enable Auto Email"
msgstr "Омогућите аутоматски имејл"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Омогућите аутоматско поновно наручивање"
@@ -18874,12 +18886,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19008,8 +19014,8 @@ msgstr "Датум не може бити пре датума почетка."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19108,8 +19114,8 @@ msgstr "Унесите ручно"
msgid "Enter Serial Nos"
msgstr "Унесите бројеве серија"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Унесите вредност"
@@ -19134,7 +19140,7 @@ msgstr "Унесите назив за ову листу празника."
msgid "Enter amount to be redeemed."
msgstr "Унесите износ који желите да искористите."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Унесите шифру ставке, назив ће аутоматски бити попуњен из шифре ставке када кликнете у поље за назив ставке."
@@ -19146,7 +19152,7 @@ msgstr "Унесите имејл купца"
msgid "Enter customer's phone number"
msgstr "Унесите број телефона купца"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Унесите датум за отпис имовине"
@@ -19190,7 +19196,7 @@ msgstr "Унесите назив корисника пре подношења."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Унесите назив банке или кредитне институције пре подношења."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Унесите почетне залихе."
@@ -19198,7 +19204,7 @@ msgstr "Унесите почетне залихе."
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Унесите количину за производњу. Ставке сировине ће бити преузете само уколико је ово постављено."
@@ -19210,8 +19216,8 @@ msgstr "Унесите износ за {0}."
msgid "Entertainment & Leisure"
msgstr "Рекреација и слободно време"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Трошкови репрезентације"
@@ -19235,8 +19241,8 @@ msgstr "Врста уноса"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19297,7 +19303,7 @@ msgstr "Грешка приликом књижења амортизације"
msgid "Error while processing deferred accounting for {0}"
msgstr "Грешка приликом обраде временског разграничења код {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Грешка приликом поновне обраде вредновања ставке"
@@ -19309,7 +19315,7 @@ msgstr "Грешка: Ова имовина већ има {0} евидентир
"\t\t\t\t\t Датум 'почетка амортизације' мора бити најмање {1} периода након датума 'доступно за коришћење'.\n"
"\t\t\t\t\t Молимо Вас да исправите датум у складу са тим."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Грешка: {0} је обавезно поље"
@@ -19355,7 +19361,7 @@ msgstr "Франко фабрика"
msgid "Example URL"
msgstr "Пример URL-а"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Пример повезаног документа: {0}"
@@ -19375,7 +19381,7 @@ msgstr "Пример: АБЦД.#####. Уколико је серија пост
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Пример: Број серије {0} је резервисан у {1}."
@@ -19385,7 +19391,7 @@ msgstr "Пример: Број серије {0} је резервисан у {1}
msgid "Exception Budget Approver Role"
msgstr "Улога за одобравање изузетака буџета"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "Прекомерна демонтажа"
@@ -19393,7 +19399,7 @@ msgstr "Прекомерна демонтажа"
msgid "Excess Materials Consumed"
msgstr "Утрошен вишак материјала"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Вишак трансфера"
@@ -19424,17 +19430,17 @@ msgstr "Приход или расход курсних разлика"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Приход/Расход курсних разлика"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Износ прихода/расхода курсних разлика евидентиран је преко {0}"
@@ -19573,7 +19579,7 @@ msgstr "Извршни асистент"
msgid "Executive Search"
msgstr "Извршна претрага"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Ослобођење испоруке"
@@ -19660,7 +19666,7 @@ msgstr "Очекивани датум затварања"
msgid "Expected Delivery Date"
msgstr "Очекивани датум испоруке"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Очекивани датум испоруке треба да буде наком датума продајне поруџбине"
@@ -19744,7 +19750,7 @@ msgstr "Очекивана вредност након корисног века
msgid "Expense"
msgstr "Трошак"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Рачун расхода / разлике ({0}) мора бити рачун врсте 'Добитак или губитак'"
@@ -19822,23 +19828,23 @@ msgstr "Рачун расхода је обавезан за ставку {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Трошкови"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Трошкови укључени у вредновање имовине"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Трошкови укључени у вредновање"
@@ -19917,7 +19923,7 @@ msgstr "Екстерна радна историја"
msgid "Extra Consumed Qty"
msgstr "Додатно утрошена количина"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Додатно потрошена количина на радној картици"
@@ -20054,7 +20060,7 @@ msgstr "Неуспешна конфигурација компаније"
msgid "Failed to setup defaults"
msgstr "Неуспешна поставка подразумеваних вредности"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Неуспешна поставка подразумеваних вредности за државу {0}. Молимо Вас да контактирате подршку."
@@ -20172,6 +20178,11 @@ msgstr "Преузми вредност са"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Преузми детаљну саставницу (укључујући подсклопове)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Преузета су само {0} доступна броја серија."
@@ -20209,21 +20220,29 @@ msgstr "Мапирање поља"
msgid "Field in Bank Transaction"
msgstr "Поље у банкарској трансакцији"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Поља ће бити копирана само приликом креирања."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Фајл не припада овом запису о брисању трансакције"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Фајл није пронађен"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Фајл није пронађен на серверу"
@@ -20431,9 +20450,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 "Финансијски извештаји ће бити генерисани коришћењем doctypes уноса у главну књигу (треба да буде омогућено ако документ за затварање периода није објављен за све године узастопоно или недостаје) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Заврши"
@@ -20490,15 +20509,15 @@ msgstr "Количина готовог производа"
msgid "Finished Good Item Quantity"
msgstr "Количина готовог производа"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Готов производ није дефинисан за услужну ставку {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Количина готовог производа {0} не може бити нула"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Готов производ {0} мора бити производ који је произведен путем подуговарања"
@@ -20544,7 +20563,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Готов производ {0} мора бити производ који је произведен путем подуговарања."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Готови производи"
@@ -20585,7 +20604,7 @@ msgstr "Скалдиште готових производа"
msgid "Finished Goods based Operating Cost"
msgstr "Оперативни трошак заснован на готовим производима"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Готов производ {0} не одговара радном налогу {1}"
@@ -20726,6 +20745,7 @@ msgstr "Фискно"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Основна средства"
@@ -20744,7 +20764,7 @@ msgstr "Рачун основних средстава"
msgid "Fixed Asset Defaults"
msgstr "Задати подаци за основна средства"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Основно средство мора бити ставка ван залиха."
@@ -20763,8 +20783,8 @@ msgstr "Коефицијент обрта основних средстава"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Основно средство {0} се не може користити у саставницама."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Основна средства"
@@ -20837,7 +20857,7 @@ msgstr "Прати календарске месеце"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Следећи захтеви за набавку су аутоматски подигнути на основу нивоа поновног наручивања ставки"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Следећа поља су обавезна за креирање адресе:"
@@ -20894,7 +20914,7 @@ msgstr "За компанију"
msgid "For Item"
msgstr "За ставку"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "За ставку {0} количина не може бити примљена у већој количини од {1} у односу на {2} {3}"
@@ -20904,7 +20924,7 @@ msgid "For Job Card"
msgstr "За радну картицу"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "За операцију"
@@ -20925,17 +20945,13 @@ msgstr "За ценовник"
msgid "For Production"
msgstr "За производњу"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "За количину (произведена количина) је обавезна"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "За сировине"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "За рекламационе фактуре које утичу на складиште, ставке са количином '0' нису дозвољене. Следећи редови су погођени: {0}"
@@ -20963,11 +20979,11 @@ msgstr "За складиште"
msgid "For Work Order"
msgstr "За радни налог"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "За ставку {0}, количина мора бити негативна број"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "За ставку {0}, количина мора бити позитиван број"
@@ -21005,7 +21021,7 @@ msgstr "За појединачног добављача"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "За ставку {0} , је креирано или повезано само {1} имовине у {2} . Молимо Вас да креирате или повежете још {3} имовина са одговарајућим документом."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "За ставку {0}, цена мора бити позитиван број. Да бисте омогућили негативне цене, омогућите {1} у {2}"
@@ -21019,7 +21035,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "За операцију {0} у реду {1}, молимо Вас да додате сировине или доделите саставницу."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "За операцију {0}: Количина ({1}) не може бити већа од преостале количине ({2})"
@@ -21036,7 +21052,7 @@ msgstr "За пројекат - {0}, ажурирајте свој статус"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "За пројектоване и прогнозиране количине, систем ће узети у обзир сва зависна складишта под изабраним матичним складиштем."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Количина {0} не би смела бити већа од дозвољене количине {1}"
@@ -21045,12 +21061,12 @@ msgstr "Количина {0} не би смела бити већа од доз
msgid "For reference"
msgstr "За референцу"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "За ред {0} у {1}. Да бисте укључили {2} у цену ставке, редови {3} такође морају бити укључени"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "За ред {0}: Унесите планирану количину"
@@ -21069,7 +21085,7 @@ msgstr "За поље 'Примени правило на остале' {0} је
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Ради погодности купаца, ове шифре могу се користити у форматима за штампање као што су фактуре и отпремнице"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "За ставку {0}, утрошена количина треба да буде {1} према саставници {2}."
@@ -21116,11 +21132,6 @@ msgstr "Прогноза"
msgid "Forecast Demand"
msgstr "Прогноза потражње"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Прогноза количине"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21166,7 +21177,7 @@ msgstr "Постови на форуму"
msgid "Forum URL"
msgstr "URL форума"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe School"
@@ -21211,8 +21222,8 @@ msgstr "Бесплатна ставка није постављена у цен
msgid "Freeze Stocks Older Than (Days)"
msgstr "Закључај залихе старије од (дана)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Трошкови превоза и отпреме"
@@ -21646,8 +21657,8 @@ msgstr "Потпуно плаћено"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Намештај и опрема"
@@ -21664,13 +21675,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Референца будућег плаћања"
@@ -21678,7 +21689,7 @@ msgstr "Референца будућег плаћања"
msgid "Future Payments"
msgstr "Будућа плаћања"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Будући датум није дозвољен"
@@ -21763,9 +21774,9 @@ msgstr "Приход/Расход је већ књижен"
msgid "Gain/Loss from Revaluation"
msgstr "Приход/Расход од ревалоризације"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Приход/Расход при отуђењу имовине"
@@ -21938,7 +21949,7 @@ msgstr "Преузми стање"
msgid "Get Current Stock"
msgstr "Прикажи тренутно стање залиха"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Прикажи детаље групе купаца"
@@ -21996,7 +22007,7 @@ msgstr "Прикажи локацију ставке"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22035,7 +22046,7 @@ msgstr "Прикажи ставке из саставнице"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Прикажи ставке из захтева за набавку према овом добављачу"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Прикажи ставке из пакета производа"
@@ -22209,7 +22220,7 @@ msgstr "Циљеви"
msgid "Goods"
msgstr "Роба"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Роба на путу"
@@ -22218,7 +22229,7 @@ msgstr "Роба на путу"
msgid "Goods Transferred"
msgstr "Роба премештена"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Роба је већ примљена на основу излазног уноса {0}"
@@ -22401,7 +22412,7 @@ msgstr "Укупан износ мора одговарати збиру реф
msgid "Grant Commission"
msgstr "Одобри комисион"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Већи од износа"
@@ -22844,7 +22855,7 @@ msgstr "Помаже Вам да расподелите буџет/циљ по
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Ово су евиденције грешака за претходно неуспеле уносе амортизације: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Следеће су опције за наставак:"
@@ -22872,7 +22883,7 @@ msgstr "Овде су Ваши недељни одмори унапред поп
msgid "Hertz"
msgstr "Херц"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Здраво,"
@@ -23071,7 +23082,7 @@ msgstr "Како форматирати и приказати вредности
msgid "Hrs"
msgstr "Часови"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Људски ресурси"
@@ -23240,6 +23251,12 @@ msgstr "Уколико је означено, износ пореза ће се
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Уколико је означено, износ пореза ће се сматрати као да је већ укључен у исказану цену/ исказани износ"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Уколико је означено, креираће се демо подаци у циљу истраживања система. Ови подаци могу бити обрисани касније."
@@ -23460,7 +23477,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Уколико није, можете отказати/ поднети овај унос"
@@ -23486,13 +23503,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr "Уколико је изабрано ценовно правило направљено за 'Јединична цена' оно ће заменити ценовник. Цена из ценовног правила је коначна цена, у складу са тим не би требало примењивати додатно снижење. Због тога ће се у трансакцијама попут продајне поруџбине, набавне поруџбине и слично, вредности узимати из поља 'Јединична цена', а не из поља 'Основна цена у ценовнику'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Уколико је подешено, систем неће користити имејл налог корисника нити стандардни излазни имејл налог за слање захтева за понуду."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Уколико саставница резултира отписаним ставкама, потребно је изабрати складиште за отпис."
@@ -23501,7 +23523,7 @@ msgstr "Уколико саставница резултира отписани
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Уколико је рачун закључан, унос је дозвољен само ограниченом броју корисника."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Уколико се ставка књижи као ставка са нултом стопом вредновања у овом уносу, омогућите опцију 'Дозволи нулту стопу вредновања' у табели ставки {0}."
@@ -23511,7 +23533,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Уколико изабрана саставница има наведене операције, систем ће преузети све операције из саставнице, а те вредности се могу променити."
@@ -23588,7 +23610,7 @@ msgstr "Уколико лојалти поени немају ограничен
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Уколико је одговор да, ово складиште ће се користити за чување одбијеног материјала"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Уколико водите залихе ове ставке у свом инвентару, ERPNext ће направити унос у књигу залиха за сваку трансакцију ове ставке."
@@ -23602,7 +23624,7 @@ msgstr "Уколико треба да ускладите одређене тр
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Уколико и даље желите да наставите, онемогућите опцију 'Прескочи доступне ставке подсклопа'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Уколико и даље желите да наставите, омогућите {0}."
@@ -23686,7 +23708,7 @@ msgstr "Игнориши ревалоризацију девизног курс
msgid "Ignore Existing Ordered Qty"
msgstr "Игнориши постојеће наручене количине"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Игнориши постојећу очекивану количину"
@@ -23773,12 +23795,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "Слика у опису је уклоњена. Да бисте онемогућили ово понашање, уклоните ознаку са опције \"{0}\" на {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Оштећење"
@@ -23936,7 +23958,7 @@ msgstr "У производњи"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "У количини"
@@ -24060,7 +24082,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "У оквиру овог одељка можете дефинисати подразумеване вредности за трансакције на нивоу компаније за ову ставку. На пример, подразумевано складиште, подразумевани ценовник, добављач итд."
@@ -24291,8 +24313,8 @@ msgstr "Укључујући ставке за подсклопове"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24363,7 +24385,7 @@ msgstr "Улазна уплата"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24395,7 +24417,7 @@ msgstr "Погрешан салдо количине након трансакц
msgid "Incorrect Batch Consumed"
msgstr "Утрошена нетачна шаржа"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Нетачно складиште за поновно наручивање"
@@ -24403,7 +24425,7 @@ msgstr "Нетачно складиште за поновно наручивањ
msgid "Incorrect Company"
msgstr "Нетачна компанија"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Нетачна количина компоненти"
@@ -24537,15 +24559,15 @@ msgstr "Означава да је пакет део ове испоруке (и
msgid "Indirect Expense"
msgstr "Индиректни трошак"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Индиректни трошкови"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Индиректни приход"
@@ -24613,14 +24635,14 @@ msgstr "Иницирано"
msgid "Inspected By"
msgstr "Инспекцију извршио"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Инспекција одбијена"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Инспекција је потребна"
@@ -24637,8 +24659,8 @@ msgstr "Инспекција је потребна пре испоруке"
msgid "Inspection Required before Purchase"
msgstr "Инспекција је потребна пре набавке"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Подношење инспекције"
@@ -24668,7 +24690,7 @@ msgstr "Напомена о инсталацији"
msgid "Installation Note Item"
msgstr "Ставка у напомени о инсталацији"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Напомена о инсталацији {0} је већ поднета"
@@ -24707,11 +24729,11 @@ msgstr "Упутство"
msgid "Insufficient Capacity"
msgstr "Недовољан капацитет"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Недовољне дозволе"
@@ -24719,13 +24741,12 @@ msgstr "Недовољне дозволе"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Недовољно залиха"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Недовољно залиха за шаржу"
@@ -24845,13 +24866,13 @@ msgstr "Референца међукомпанијског трансфера"
msgid "Interest"
msgstr "Камата"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Трошак камата"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Приход од камата"
@@ -24859,8 +24880,8 @@ msgstr "Приход од камата"
msgid "Interest and/or dunning fee"
msgstr "Камата и/или накнада за опомену"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Камата на орочење депозите"
@@ -24880,7 +24901,7 @@ msgstr "Интерни"
msgid "Internal Customer Accounting"
msgstr "Рачуноводство интерног купца"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Интерни купац за компанију {0} већ постоји"
@@ -24888,7 +24909,7 @@ msgstr "Интерни купац за компанију {0} већ посто
msgid "Internal Purchase Order"
msgstr "Интерна набавна поруџбина"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Недостаје референца за интерну продају или испоруку."
@@ -24896,7 +24917,7 @@ msgstr "Недостаје референца за интерну продају
msgid "Internal Sales Order"
msgstr "Интерна продајна поруџбина"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Недостаје референца за интерну продају"
@@ -24927,7 +24948,7 @@ msgstr "Интерни добављач за компанију {0} већ по
msgid "Internal Transfer"
msgstr "Интерни трансфер"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Недостаје референца за интерни трансфер"
@@ -24940,7 +24961,12 @@ msgstr "Интерни трансфери"
msgid "Internal Work History"
msgstr "Интерна радна историја"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Интерни трансфери могу се обавити само у основној валути компаније"
@@ -24956,12 +24982,12 @@ msgstr "Интервал мора бити између 1 и 59 минута"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Неважећи рачун"
@@ -24982,7 +25008,7 @@ msgstr "Неважећи износ"
msgid "Invalid Attribute"
msgstr "Неважећи атрибут"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Неважећи датум аутоматског понављања"
@@ -24995,7 +25021,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Неважећи бар-код. Не постоји ставка која је приложена са овим бар-кодом."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Неважећа оквирна наруџбина за изабраног купца и ставку"
@@ -25011,21 +25037,21 @@ msgstr "Неважећа зависна процедура"
msgid "Invalid Company Field"
msgstr "Неважеће поље компаније"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Неважећа компанија за међукомпанијску трансакцију."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Неважећи трошковни центар"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Неважећа група купаца"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Неважећи датум испоруке"
@@ -25063,7 +25089,7 @@ msgstr "Неважеће груписање по"
msgid "Invalid Item"
msgstr "Неважећа ставка"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Неважећи подразумевани подаци за ставку"
@@ -25077,7 +25103,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Неважећи нето износ набавке"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Неважећи унос почетног стања"
@@ -25085,11 +25111,11 @@ msgstr "Неважећи унос почетног стања"
msgid "Invalid POS Invoices"
msgstr "Неважећи фискални рачуни"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Неважећи матични рачун"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Неважећи број дела"
@@ -25119,12 +25145,12 @@ msgstr "Неважећа конфигурација губитака у проц
msgid "Invalid Purchase Invoice"
msgstr "Неважећа улазна фактура"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Неважећа количина"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Неважећа количина"
@@ -25149,12 +25175,12 @@ msgstr "Неважећи распоред"
msgid "Invalid Selling Price"
msgstr "Неважећа продајна цена"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Неважећи број пакета серије и шарже"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Неважеће изворно и циљно складиште"
@@ -25179,7 +25205,7 @@ msgstr "Неважећи износ у рачуноводственим унос
msgid "Invalid condition expression"
msgstr "Неважећи израз услова"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Неважећи URL фајла"
@@ -25191,7 +25217,7 @@ msgstr "Неважећа формула филтера. Молимо Вас да
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Неважећи разлог губитка {0}, молимо креирајте нов разлог губитка"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Неважећа серија именовања (. недостаје) за {0}"
@@ -25217,8 +25243,8 @@ msgstr "Неважећи упит претраге"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Неважећа вредност {0} за {1} у односу на рачун {2}"
@@ -25226,7 +25252,7 @@ msgstr "Неважећа вредност {0} за {1} у односу на ра
msgid "Invalid {0}"
msgstr "Неважеће {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Неважеће {0} за међукомпанијску трансакцију."
@@ -25236,7 +25262,7 @@ msgid "Invalid {0}: {1}"
msgstr "Неважеће {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Инвентар"
@@ -25285,8 +25311,8 @@ msgstr "Вредновање инвентара"
msgid "Investment Banking"
msgstr "Инвестиционо банкарство"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Инвестиције"
@@ -25336,7 +25362,7 @@ msgstr "Дисконтовање фактуре"
msgid "Invoice Document Type Selection Error"
msgstr "Грешка при избору врсте документа фактуре"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Укупан збир фактуре"
@@ -25441,7 +25467,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25462,7 +25488,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25558,8 +25584,7 @@ msgstr "Алтернативно"
msgid "Is Billable"
msgstr "Подложно наплати"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Контакт за фактурисање"
@@ -26001,8 +26026,7 @@ msgstr "Шаблон"
msgid "Is Transporter"
msgstr "Превозник"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Адреса Ваше компаније"
@@ -26108,8 +26132,8 @@ msgstr "Врста издавања"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "Издај документ о повећању са количином 0 против постојеће излазне фактуре"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26139,11 +26163,11 @@ msgstr "Упити"
msgid "Issuing Date"
msgstr "Датум издавања"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Може потрајати неколико сати да тачне вредности залиха постану видљиве након спајања ставки."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Потребно је преузети детаље ставки."
@@ -26267,7 +26291,7 @@ msgstr "Курзивни текст за међузбирове или напо
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26515,7 +26539,7 @@ msgstr "Корпа ставке"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26577,7 +26601,7 @@ msgstr "Корпа ставке"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26776,13 +26800,13 @@ msgstr "Детаљи ставке"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26999,7 +27023,7 @@ msgstr "Произвођач ставке"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27039,10 +27063,10 @@ msgstr "Произвођач ставке"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27083,10 +27107,6 @@ msgstr "Ставка није на стању"
msgid "Item Price"
msgstr "Цена ставке"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Цена ставке је додата за {0} у ценовник {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27102,19 +27122,20 @@ msgstr "Подешавање цене ставке"
msgid "Item Price Stock"
msgstr "Цене ставке на складишту"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Цена ставке додата за {0} у ценовнику {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Цена ставке се појављује више пута на основу ценовника, добављача / купца, валуте, ставке, шарже, мерне јединице, количине и датума."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Цена ставке ажурирана за {0} у ценовнику {1}"
@@ -27301,11 +27322,11 @@ msgstr "Детаљи варијанте ставке"
msgid "Item Variant Settings"
msgstr "Подешавања варијанте ставке"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Варијанта ставке {0} већ постоји са истим атрибутима"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Варијанте ставке ажуриране"
@@ -27406,11 +27427,11 @@ msgstr "Ставка и складиште"
msgid "Item and Warranty Details"
msgstr "Детаљи ставке и гаранције"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Ставке за ред {0} не одговарају захтеву за набавку"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Ставка има варијанте."
@@ -27436,11 +27457,7 @@ msgstr "Назив ставке"
msgid "Item operation"
msgstr "Ставка операције"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Количина ставки не може бити ажурирана јер су сировине већ обрађене."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Цена ставке је ажурирана на нулу јер је означена опција 'Дозволи нулту стопу вредновања' за ставку {0}"
@@ -27459,11 +27476,11 @@ msgstr "Стопа вредновања ставке је прерачуната
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Поновна обрада вредновања ставке је у току. Извештај може приказати нетачно вредновање ставке."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Варијанта ставке {0} постоји са истим атрибутима"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27480,7 +27497,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Ставка {0} не може бити наручена у количини већој од {1} према оквирном налогу {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Ставка {0} не постоји"
@@ -27492,7 +27509,7 @@ msgstr "Ставка {0} не постоји у систему или је ис
msgid "Item {0} does not exist."
msgstr "Ставка {0} не постоји."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Ставка {0} је унесена више пута."
@@ -27504,15 +27521,15 @@ msgstr "Ставка {0} је већ враћена"
msgid "Item {0} has been disabled"
msgstr "Ставка {0} је онемогућена"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Ставка {0} нема број серије. Само ставке са бројем серије могу имати испоруку на основу серијског броја"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Ставка {0} је достигла крај свог животног века на дан {1}"
@@ -27524,15 +27541,15 @@ msgstr "Ставка {0} је занемарена јер није ставка
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Ставка {0} је већ резервисана / испоручена према продајној поруџбини {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Ставка {0} је отказана"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Ставка {0} је онемогућена"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27540,7 +27557,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Ставка {0} није серијализована ставка"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Ставка {0} није ставка на залихама"
@@ -27548,11 +27565,11 @@ msgstr "Ставка {0} није ставка на залихама"
msgid "Item {0} is not a subcontracted item"
msgstr "Ставка {0} није ставка за подуговарање"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Ставка {0} није активна или је достигла крај животног века"
@@ -27568,7 +27585,7 @@ msgstr "Ставка {0} мора бити ставка ван залиха"
msgid "Item {0} must be a non-stock item"
msgstr "Ставка {0} мора бити ставка ван залиха"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Ставка {0} није пронађена у табели 'Примљене сировине' {1} {2}"
@@ -27576,7 +27593,7 @@ msgstr "Ставка {0} није пронађена у табели 'Примљ
msgid "Item {0} not found."
msgstr "Ставка {0} није пронађена."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Ставка {0}: Наручена количина {1} не може бити мања од минималне количине за наруџбину {2} (дефинисане у ставци)."
@@ -27584,7 +27601,7 @@ msgstr "Ставка {0}: Наручена количина {1} не може б
msgid "Item {0}: {1} qty produced. "
msgstr "Ставка {0}: Произведена количина {1}. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Ставка {} не постоји."
@@ -27630,7 +27647,7 @@ msgstr "Регистар продаје по ставкама"
msgid "Item-wise sales Register"
msgstr "Књига продаје по ставкама"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Ставка/Шифра ставке је неопходна за преузимање шаблона ставке пореза."
@@ -27654,7 +27671,7 @@ msgstr "Каталог ставки"
msgid "Items Filter"
msgstr "Филтер ставки"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Потребне ставке"
@@ -27678,11 +27695,11 @@ msgstr "Ставке за поручивање"
msgid "Items and Pricing"
msgstr "Ставке и цене"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Ставке се не могу ажурирати јер постоје налози за пријем из подуговарања повезани са овом продајном поруџбином за подуговарање."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Ставке не могу бити ажуриране јер је креиран налог за подуговарање према набавној поруџбини {0}."
@@ -27694,7 +27711,7 @@ msgstr "Ставке за захтев за набавку сировина"
msgid "Items not found."
msgstr "Ставке нису пронађене."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Цена ставки је ажурирана на нулу јер је опција дозволи нулту стопу вредновања означена за следеће ставке: {0}"
@@ -27704,7 +27721,7 @@ msgstr "Цена ставки је ажурирана на нулу јер је
msgid "Items to Be Repost"
msgstr "Ставке за поновно књижење"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Ставке за производњу су потребне за преузимање повезаних сировина."
@@ -27769,9 +27786,9 @@ msgstr "Капацитет посла"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27833,7 +27850,7 @@ msgstr "Запис времена радне картице"
msgid "Job Card and Capacity Planning"
msgstr "Радна картица и планирање капацитета"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Радна картица {0} је завршен"
@@ -27909,7 +27926,7 @@ msgstr "Назив извршиоца посла"
msgid "Job Worker Warehouse"
msgstr "Складиште извршиоца посла"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Радна картица {0} је креирана"
@@ -28129,7 +28146,7 @@ msgstr "Киловат"
msgid "Kilowatt-Hour"
msgstr "Киловат-час"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Молимо Вас да прво поништите записе о производњи повезане са радним налогом {0}."
@@ -28257,7 +28274,7 @@ msgstr "Датум последњег завршетка"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Последње ажурирање уноса у главну књигу је извршено {}. Ова операција није дозвољена док је систем активно у употреби. Молимо Вас да сачекате 5 минута пре него што покушате поново."
@@ -28339,7 +28356,7 @@ msgstr "Датум последње провере емисије угљен-д
msgid "Last transacted"
msgstr "Последња извршена трансакција"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Најновије"
@@ -28590,12 +28607,12 @@ msgstr "Застарела поља"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Правно лице / Подружница са посебним контним оквиром која припада организацији."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Правни трошкови"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Легенда"
@@ -28606,7 +28623,7 @@ msgstr "Легенда"
msgid "Length (cm)"
msgstr "Дужина (цм)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Мање од износа"
@@ -28665,7 +28682,7 @@ msgstr "Број возачке дозволе"
msgid "License Plate"
msgstr "Број регистарске ознаке"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Прекорачен лимит"
@@ -28726,7 +28743,7 @@ msgstr "Повежи са захтевима за набавку"
msgid "Link with Customer"
msgstr "Повежи са купцем"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Повежи са добављачем"
@@ -28747,12 +28764,12 @@ msgstr "Повезани рачуни"
msgid "Linked Location"
msgstr "Повезана локација"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Повезано са поднетим документима"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Повезивање није успело"
@@ -28760,7 +28777,7 @@ msgstr "Повезивање није успело"
msgid "Linking to Customer Failed. Please try again."
msgstr "Повезивање са купцем није успело. Молимо покушајте поново."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Повезивање са добављачем није успело. Молимо покушајте поново."
@@ -28818,8 +28835,8 @@ msgstr "Датум почетка зајма"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Датум почетка зајма и период зајма су обавезни за чување дисконтовања фактуре"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Зајам (Обавезе)"
@@ -28864,8 +28881,8 @@ msgstr "Забележи продајну и набавну цену ставк
msgid "Logo"
msgstr "Логотип"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Дугорочна резервисања"
@@ -29066,6 +29083,11 @@ msgstr "Ниво програма лојалности"
msgid "Loyalty Program Type"
msgstr "Врста програма лојалности"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29109,10 +29131,10 @@ msgstr "Квар машине"
msgid "Machine operator errors"
msgstr "Грешке оператера машине"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Главно"
@@ -29355,9 +29377,9 @@ msgstr "Обавезни/Изборни предмети"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Направити"
@@ -29377,7 +29399,7 @@ msgstr "Направи унос амортизације"
msgid "Make Difference Entry"
msgstr "Направи унос разлике"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Креирај време испоруке"
@@ -29415,12 +29437,12 @@ msgstr "Направи излазну фактуру"
msgid "Make Serial No / Batch from Work Order"
msgstr "Направи број серије / шаржу из радног налога"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Направи унос залиха"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Направи набавну поруџбину подуговарања"
@@ -29436,11 +29458,11 @@ msgstr "Позови"
msgid "Make project from a template."
msgstr "Направи пројекат из шаблона."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Направи варијанту {0}"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Направи варијанте {0}"
@@ -29448,8 +29470,8 @@ msgstr "Направи варијанте {0}"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Прављење налога књижења на авансним рачунима: {0} није препоручљиво. Ови налози неће бити доступни за усклађивање."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Управљај"
@@ -29468,7 +29490,7 @@ msgstr "Управљање провизијама продајних партн
msgid "Manage your orders"
msgstr "Управљање сопственим поруџбинама"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Менаџмент"
@@ -29484,7 +29506,7 @@ msgstr "Генерални директор"
msgid "Mandatory Accounting Dimension"
msgstr "Обавезна рачуноводствена димензија"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Обавезно поље"
@@ -29583,8 +29605,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29663,7 +29685,7 @@ msgstr "Произвођач"
msgid "Manufacturer Part Number"
msgstr "Број дела произвођача"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Број дела произвођача {0} није важећи"
@@ -29688,7 +29710,7 @@ msgstr "Произвођачи коришћени у ставкама"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29733,10 +29755,6 @@ msgstr "Датум производње"
msgid "Manufacturing Manager"
msgstr "Менаџер производње"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Количина производње је обавезна"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29903,6 +29921,12 @@ msgstr "Брачни статус"
msgid "Mark As Closed"
msgstr "Означи као затворено"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29917,12 +29941,12 @@ msgstr "Означи као затворено"
msgid "Market Segment"
msgstr "Тржишни сегмент"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Маркетинг"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Трошкови маркетинга"
@@ -30001,7 +30025,7 @@ msgstr ""
msgid "Material"
msgstr "Материјал"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Потрошња материјала"
@@ -30009,7 +30033,7 @@ msgstr "Потрошња материјала"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Потрошња материјала за производњу"
@@ -30090,7 +30114,7 @@ msgstr "Пријемница материјала"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30187,11 +30211,11 @@ msgstr "Планирана ставка захтева за набавку"
msgid "Material Request Type"
msgstr "Врста захтева за набавку"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Захтев за набавку је већ креиран за наручену количину"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Захтев за набавку није креиран, јер је количина сировина већ доступна."
@@ -30259,7 +30283,7 @@ msgstr "Материјал враћен из недовршене произво
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30325,12 +30349,12 @@ msgstr "Материјал ка добављачу"
msgid "Materials To Be Transferred"
msgstr "Материјал за пренос"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Материјали су већ примљени према {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Материјали морају бити премештени у складиште недовршене производње за радну картицу {0}"
@@ -30401,9 +30425,9 @@ msgstr "Максимални резултат"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Максимални попуст дозвољен за ставку: {0} је {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30435,11 +30459,11 @@ msgstr "Максимални износ плаћања"
msgid "Maximum Producible Items"
msgstr "Максимална количина производивих ставки"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Максимални узорци - {0} може бити задржано за шаржу {1} и ставку {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Максимални узорци - {0} су већ задржани за шаржу {1} и ставку {2} у шаржи {3}."
@@ -30500,15 +30524,10 @@ msgstr "Мегаџул"
msgid "Megawatt"
msgstr "Мегават"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Навести стопу вредновања у мастер подацима ставки."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Навести уколико се користи нестандардни рачун потраживања"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30558,7 +30577,7 @@ msgstr "Споји са постојећим рачуном"
msgid "Merged"
msgstr "Спојено"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Спајање је могуће само уколико су следеће особине исте у оба записа. Да ли је група, основна врста, компанија и валута рачуна"
@@ -30588,7 +30607,7 @@ msgstr "Порука ће бити послата корисницима рад
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Поруке дуже од 160 карактера биће подељене у више порука"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "CRM кампања за поруке"
@@ -30789,7 +30808,7 @@ msgstr "Минимална количина не може бити већа од
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Минимална количина треба да буде већа од количине за понављање"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Минимална вредност: {0}, максимална вредност: {1}, у корацима од: {2}"
@@ -30878,8 +30897,8 @@ msgstr "Минути"
msgid "Miscellaneous"
msgstr "Разно"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Разни трошкови"
@@ -30887,15 +30906,15 @@ msgstr "Разни трошкови"
msgid "Mismatch"
msgstr "Неподударање"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Недостаје"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Недостајући рачун"
@@ -30925,7 +30944,7 @@ msgstr "Недостају филтери"
msgid "Missing Finance Book"
msgstr "Недостајућа финансијска евиденција"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Недостаје готов производ"
@@ -30933,7 +30952,7 @@ msgstr "Недостаје готов производ"
msgid "Missing Formula"
msgstr "Недостаје формула"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Недостајућа ставка"
@@ -30970,7 +30989,7 @@ msgid "Missing required filter: {0}"
msgstr "Недостаје обавезни филтер: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Недостајућа вредност"
@@ -31219,11 +31238,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Пронађено је више програма лојалности за купца {}. Молимо Вас да изаберете ручно."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Вишеструки уноси почетног стања малопродаје"
@@ -31245,11 +31264,11 @@ msgstr "Више варијанти"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Доступно је више поља компаније: {0}. Молимо Вас да изаберете ручно."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Постоји више фискалних година за датум {0}. Молимо поставите компанију у фискалну годину"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Више ставки не може бити означено као готов производ"
@@ -31258,7 +31277,7 @@ msgid "Music"
msgstr "Музика"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31345,7 +31364,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Серија именовања '{0}' за DocType '{1}' не садржи стандардни сепаратор '.' или '{{'. Користи се резервни начин екстракције."
@@ -31389,7 +31408,7 @@ msgstr "Анализа потребна"
msgid "Negative Batch Report"
msgstr "Извештај о шаржама са негативним стањем"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Негативна количина није дозвољена"
@@ -31398,7 +31417,7 @@ msgstr "Негативна количина није дозвољена"
msgid "Negative Stock Error"
msgstr "Грешка због негативног стања залиха"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Негативна стопа вредновања није дозвољена"
@@ -31704,7 +31723,7 @@ msgstr "Нето тежина"
msgid "Net Weight UOM"
msgstr "Јединица мере нето тежине"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Губитак прецизности у израчунавању нето укупног износа"
@@ -31881,7 +31900,7 @@ msgstr "Нови назив складишта"
msgid "New Workplace"
msgstr "Ново радно место"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Нови кредитни лимит је мањи од тренутног неизмиреног износа за купца. Кредитни лимит мора бити најмање {0}"
@@ -31935,7 +31954,7 @@ msgstr "Следећи имејл ће бити послат на:"
msgid "No Account Data row found"
msgstr "Није пронађен ниједан ред у подацима рачуна "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Не постоји рачун који одговара овим филтерима: {}"
@@ -31948,7 +31967,7 @@ msgstr "Без радње"
msgid "No Answer"
msgstr "Нема одговора"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Није пронађен купац за међукомпанијске трансакције који представљају компанију {0}"
@@ -31961,7 +31980,7 @@ msgstr "Нема купаца са изабраним опцијама."
msgid "No Delivery Note selected for Customer {}"
msgstr "Не постоје изабране отпремнице за купца {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Нема DocType-ова на листи за брисање. Молимо Вас да генеришете или увезете листу пре подношења."
@@ -31977,7 +31996,7 @@ msgstr "Нема ставки са бар-кодом {0}"
msgid "No Item with Serial No {0}"
msgstr "Нема ставке са бројем серије {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Нема ставки изабраних за трансфер."
@@ -32012,7 +32031,7 @@ msgstr "Не постоји профил малопродаје. Молимо В
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Без дозволе"
@@ -32041,19 +32060,19 @@ msgstr "Тренутно нема доступних залиха"
msgid "No Summary"
msgstr "Нема резимеа"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Нема добављача за међукомпанијске трансакције који представљају компанију {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Нема података о порезу по одбитку за тренутни датум књижења."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Није постављен рачун за порез по одбитку за компанију {0} у врсти пореза по одбитку {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Без услова"
@@ -32083,7 +32102,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Нема активне саставнице за ставку {0}. Достава по броју серије није могућа"
@@ -32277,7 +32296,7 @@ msgstr "Број радних станица"
msgid "No open Material Requests found for the given criteria."
msgstr "Нема отворених захтева за набавку за дате критеријуме."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Не постоји унос отварања почетног стања малопродаје за малопродајни профил {0}."
@@ -32301,7 +32320,7 @@ msgstr "Ниједна неизмирена фактура не захтева
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Није пронађен ниједан неизмирени {0} за {1} {2} који квалификује филтере које сте навели."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Није пронађен ниједан чекајући захтев за набавку за повезивање са датим ставкама."
@@ -32372,7 +32391,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr "Нема доступних залиха за ову шаржу."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Уноси у књигу залиха нису креирани. Молимо Вас да правилно подесите количину или стопу вредновања за ставке и да покушате поново."
@@ -32405,7 +32424,7 @@ msgstr "Без вредности"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Нема {0} за међукомпанијске трансакције."
@@ -32450,8 +32469,8 @@ msgstr "Непрофитно"
msgid "Non stock items"
msgstr "Ставке ван залиха"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Дугорочне обавезе"
@@ -32552,7 +32571,7 @@ msgstr "Није могуће пронаћи најранију фискалну
msgid "Not allow to set alternative item for the item {0}"
msgstr "Није дозвољено поставити алтернативну ставку за ставку {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Није дозвољено креирати рачуноводствену димензију за {0}"
@@ -32606,7 +32625,7 @@ msgstr "Напомена: Уколико желите да користите г
msgid "Note: Item {0} added multiple times"
msgstr "Напомена: Ставка {0} је додата више пута"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Напомена: Унос уплате неће бити креиран јер није наведена 'Благајна или текући рачун'"
@@ -32614,7 +32633,7 @@ msgstr "Напомена: Унос уплате неће бити креиран
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Напомена: Овај трошковни центар је група. Није могуће направити рачуноводствене уносе против група."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Напомена: Да бисте спојили ставке, креирајте засебно усклађивање залиха за старију ставку {0}"
@@ -32797,6 +32816,11 @@ msgstr "Број новог рачуна, биће укључен у назив
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Број новог трошковног центра, биће укључен у назив трошковног центра као префикс"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32856,18 +32880,18 @@ msgstr "Вредност одометра (последња)"
msgid "Offer Date"
msgstr "Датум понуде"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Канцеларијски прибор"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Трошкови одржавања канцеларије"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Најам канцеларије"
@@ -32995,7 +33019,7 @@ msgstr "Увод у залихе!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Када је постављено, ова фактура ће бити на чекању до поновљеног датума"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Када је радни налог затворен, не може се поново покренути."
@@ -33035,7 +33059,7 @@ msgstr "Подржани су само 'Уноси плаћања' који су
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Само CSV и Excel фајлови могу бити коришћени за увоз података. Молимо Вас да проверите формат фајла који покушавате да увезете"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Дозвољени су искључиво CSV фајлови"
@@ -33054,7 +33078,7 @@ msgstr "Изврши само одбитак пореза на вишак изн
msgid "Only Include Allocated Payments"
msgstr "Укључи само распоређене уплате"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Само матични ентитет може бити врсте {0}"
@@ -33091,7 +33115,7 @@ msgstr "Приликом примене искључене накнаде, са
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "Само једна операција може имати означено 'Финални готов производ' када је омогућено 'Праћење полупроизвода'."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Може се креирати само један {0} унос против радног налога {1}"
@@ -33309,8 +33333,8 @@ msgstr "Почетно стање = почетак периода, завршн
msgid "Opening Balance Details"
msgstr "Детаљи почетног стања"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Почетно стање капитала"
@@ -33333,7 +33357,7 @@ msgstr "Почетни датум"
msgid "Opening Entry"
msgstr "Унос почетног стања"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Унос почетног стања не може бити креиран након што је креиран документ за затварање периода."
@@ -33366,7 +33390,7 @@ msgid "Opening Invoice Tool"
msgstr "Алат за унос почетних фактура"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Почетна фактура има прилагођавање за заокруживање од {0}. За књижење ових вредности потребан је рачун '{1}'. Молимо Вас да га поставите у компанији: {2}. Или можете омогућити '{3}' да не поставите никакво прилагођавање за заокруживање."
@@ -33402,16 +33426,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Почетни лагер"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33429,12 +33453,15 @@ msgstr "Почетна вредност"
msgid "Opening and Closing"
msgstr "Отварање и затварање"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Креирање почетног стања залиха је стављено у ред чекања и биће обрађено у позадини. Молимо Вас да проверите унос залиха након одређеног времена."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Оперативна компонента"
@@ -33466,7 +33493,7 @@ msgstr "Оперативни трошак (валута компаније)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Оперативни трошак према количини у саставници"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Оперативни трошак према радном налогу / саставници"
@@ -33509,15 +33536,15 @@ msgstr "Опис операције"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ИД операције"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ИД операције"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33542,7 +33569,7 @@ msgstr "Број реда операције"
msgid "Operation Time"
msgstr "Време операције"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Време операције за операцију {0} мора бити веће од 0"
@@ -33557,11 +33584,11 @@ msgstr "За колико готових производа је операци
msgid "Operation time does not depend on quantity to produce"
msgstr "Време операције не зависи од количине за производњу"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Операција {0} је додата више пута у радном налогу {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Операција {0} не припада радном налогу {1}"
@@ -33577,9 +33604,9 @@ msgstr "Операција {0} траје дуже од било којег до
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33752,7 +33779,7 @@ msgstr "Прилика {0} креирана"
msgid "Optimize Route"
msgstr "Оптимизуј руту"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "Опционо. Изаберите конкретан унос производње који желите да поништите."
@@ -33902,7 +33929,7 @@ msgstr "Наручена количина"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Наруџбине"
@@ -34018,7 +34045,7 @@ 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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Излазна количина"
@@ -34056,7 +34083,7 @@ msgstr "Ван гаранције"
msgid "Out of stock"
msgstr "Нема на стању"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Застарели унос почетног стања малопродаје"
@@ -34075,6 +34102,7 @@ msgstr "Излазно плаћање"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Излазна цена"
@@ -34110,7 +34138,7 @@ msgstr "Неизмирено (валута компаније)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34120,7 +34148,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34180,17 +34208,22 @@ msgstr "Дозвола за фактурисање преко лимита је
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Дозвола за прекорачење испоруке/пријема (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Дозвола за преузимање вишка"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Прекорачење пријема"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Прекорачење пријема/испоруке од {0} {1} занемарено за ставку {2} јер имате улогу {3}."
@@ -34210,11 +34243,11 @@ msgstr "Дозвола за прекорачење преноса (%)"
msgid "Over Withheld"
msgstr "Прекомерно обрачунат порез по одбитку"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Прекорачење фактурисања од {0} {1} је занемарено за ставку {2} јер имате улогу {3}."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Прекорачење фактурисања од {} је занемарено јер имате улогу {}."
@@ -34514,7 +34547,7 @@ msgstr "Селектор малопродајне ставке"
msgid "POS Opening Entry"
msgstr "Унос почетног стања малопродаје"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Унос почетног стања малопродаје - {0} је застарео. Затворите малопродају и креирајте нови унос почетног стања."
@@ -34535,7 +34568,7 @@ msgstr "Детаљи уноса почетног стања малопродај
msgid "POS Opening Entry Exists"
msgstr "Унос почетног стања малопродаје већ постоји"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Недостаје унос почетног стања малопродаје"
@@ -34571,7 +34604,7 @@ msgstr "Метод плаћања у малопродаји"
msgid "POS Profile"
msgstr "Профил малопродаје"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Профил малопродаје - {0} има више отворених уноса почетног стања. Затворите или откажите постојеће уносе пре него што наставите."
@@ -34589,11 +34622,11 @@ msgstr "Корисник малопродаје"
msgid "POS Profile doesn't match {}"
msgstr "Профил малопродаје се не поклапа са {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Профил малопродаје је обавезан да би се ова фактура означила као малопродајна трансакција."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Профил малопродаје је неопходан за унос"
@@ -34699,7 +34732,7 @@ msgstr "Упакована ставка"
msgid "Packed Items"
msgstr "Упаковане ставке"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Упаковане ставке не могу бити део интерног преноса"
@@ -34736,7 +34769,7 @@ msgstr "Документ листе паковања"
msgid "Packing Slip Item"
msgstr "Ставка на документу листе паковања"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Документ(а) листе паковања је отказан"
@@ -34777,7 +34810,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34843,7 +34876,7 @@ msgid "Paid To Account Type"
msgstr "Плаћено на врсту рачуна"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Плаћени износ и износ отписивања не могу бити већи од укупног износа"
@@ -34937,7 +34970,7 @@ msgstr "Матична шаржа"
msgid "Parent Company"
msgstr "Матична компанија"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Матична компанија мора бити групна компанија"
@@ -35064,7 +35097,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Делимично пренесен материјал"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Делимично плаћање у малопродајним трансакцијама није дозвољено."
@@ -35277,7 +35310,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35304,7 +35337,7 @@ msgstr "Странка"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Рачун странке"
@@ -35337,7 +35370,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Број рачуна странке (Банкарски извод)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Валута рачуна странке {0} ({1}) и валута документа ({2}) треба да буде иста"
@@ -35489,7 +35522,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35598,7 +35631,7 @@ msgstr "Претходни догађаји"
msgid "Pause"
msgstr "Пауза"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Паузирај посао"
@@ -35649,7 +35682,7 @@ msgid "Payable"
msgstr "Платив"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35683,7 +35716,7 @@ msgstr "Подешавање платиоца"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35830,7 +35863,7 @@ msgstr "Унос уплате је измењен након што сте га
msgid "Payment Entry is already created"
msgstr "Унос уплате је већ креиран"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Унос уплате {0} је повезан са наруџбином {1}, проверите да ли треба да буде повучен као аванс у овој фактури."
@@ -36055,7 +36088,7 @@ msgstr "Референце плаћања"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36120,7 +36153,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36149,7 +36182,7 @@ msgstr "Распореди плаћања"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36205,6 +36238,7 @@ msgstr "Статус услова плаћања за продајну пору
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36219,6 +36253,7 @@ msgstr "Статус услова плаћања за продајну пору
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36276,7 +36311,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Методе плаћања су обавезне. Молимо Вас да одабарете најмање једну методу плаћања."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Методе плаћања су освежене. Молимо Вас да их прегледате пре наставка."
@@ -36351,8 +36386,8 @@ msgstr "Уплате су ажуриране."
msgid "Payroll Entry"
msgstr "Унос обрачуна зараде"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Обавезе према зарадама"
@@ -36399,10 +36434,14 @@ msgstr "Активности на чекању"
msgid "Pending Amount"
msgstr "Износ на чекању"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36411,9 +36450,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Количина на чекању"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36443,6 +36491,14 @@ msgstr "Активности на чекању за данас"
msgid "Pending processing"
msgstr "На чекању за обраду"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Пензиони фондови"
@@ -36552,7 +36608,7 @@ msgstr "Анализа перцепције"
msgid "Period Based On"
msgstr "Период заснован на"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Период затворен"
@@ -37116,8 +37172,8 @@ msgstr "Контролна табла постројења"
msgid "Plant Floor"
msgstr "Производни простор"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Постројења и машине"
@@ -37153,7 +37209,7 @@ msgstr "Молимо Вас да поставите приоритет"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Молимо Вас да поставите групу добављача у подешавањима за набавку."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Молимо Вас да наведете рачун"
@@ -37201,7 +37257,7 @@ msgstr "Молимо Вас да додате колону за текући р
msgid "Please add the account to root level Company - {0}"
msgstr "Молимо Вас да додате рачун за основни ниво компаније - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Молимо Вас да додате рачун за основни ниво компаније - {}"
@@ -37209,7 +37265,7 @@ msgstr "Молимо Вас да додате рачун за основни н
msgid "Please add {1} role to user {0}."
msgstr "Молимо Вас да додате улогу {1} кориснику {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Молимо Вас да прилагодите количину или измените {0} за наставак."
@@ -37217,7 +37273,7 @@ msgstr "Молимо Вас да прилагодите количину или
msgid "Please attach CSV file"
msgstr "Молимо Вас да приложите CSV фајл"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Молимо Вас да откажете и измените унос уплате"
@@ -37251,7 +37307,7 @@ msgstr "Молимо Вас да проверите оперативне тро
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "Молимо Вас да означите опцију 'Активирај број серије и шарже за ставку' у документу {0} како бисте омогућили пакет серије / шарже за ту ставку."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Молимо Вас да проверите поруке о грешкама, предузмите потребне кораке да исправите грешку и затим поново покрените процес поновне обраде."
@@ -37276,11 +37332,15 @@ msgstr "Молимо Вас да кликнете на 'Генериши рас
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Молимо Вас да кликенте на 'Генериши распоред' да бисте добили распоред"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Молимо Вас да контактирате било ког од следећих корисника да бисте проширили кредитни лимит за {0}: {1}"
@@ -37288,11 +37348,11 @@ msgstr "Молимо Вас да контактирате било ког од
msgid "Please contact any of the following users to {} this transaction."
msgstr "Молимо Вас да контактирате било кога од следећих корисника да бисте {} ову трансакцију."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Молимо Вас да контакирате свог администратора да бисте проширили кредитне лимите за {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Молимо Вас да претворите матични рачун у одговарајућој зависној компанији у групни рачун."
@@ -37304,11 +37364,11 @@ msgstr "Молимо Вас да креирате купца из потенци
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Молимо Вас да креирате документ зависних трошкова набавке за фактуре које имају омогућену опцију 'Ажурирај залихе'."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Молимо Вас да креирате нову рачуноводствену димензију уколико је потребно."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Молимо Вас да креирате набавку из интерне продаје или из самог документа о испоруци"
@@ -37316,11 +37376,11 @@ msgstr "Молимо Вас да креирате набавку из интер
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Молимо Вас да креирате пријемницу набавке или улазну фактуру за ставку {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Молимо Вас да обришете производну комбинацију {0}, пре него што спојите {1} у {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Молимо Вас да привремено онемогућите радни ток за налог књижења {0}"
@@ -37328,7 +37388,7 @@ msgstr "Молимо Вас да привремено онемогућите р
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Молимо Вас да не књижите трошак више различитих ставки имовине на једну ставку имовине."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Молимо Вас да не креирате више од 500 ставки одједном"
@@ -37352,7 +37412,7 @@ msgstr "Молимо Вас да омогућите само уколико ра
msgid "Please enable {0} in the {1}."
msgstr "Молимо Вас да омогућите {0} у {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Молимо Вас да омогућите {} у {} да бисте омогућили исту ставку у више редова"
@@ -37364,20 +37424,20 @@ msgstr "Молимо Вас да се уверите да је рачун {0} р
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 "Молимо Вас да се уверите да је рачун {0} {1} рачун обавеза. Можете променити врсту рачуна у обавезе или изабрати други рачун."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Молимо Вас да водите рачуна да је рачун {} рачун у билансу стања."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Молимо Вас да водите рачуна да {} рачун {} представља рачун потраживања."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Молимо Вас да унесете рачун разлике или да поставите подразумевани рачун за прилагођвање залиха за компанију {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Молимо Вас да унесете рачун за кусур"
@@ -37385,15 +37445,15 @@ msgstr "Молимо Вас да унесете рачун за кусур"
msgid "Please enter Approving Role or Approving User"
msgstr "Молимо Вас да унесете улогу одобравања или корисника који одобрава"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Молимо Вас да унесете број шарже"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Молимо Вас да унесете трошковни центар"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Молимо Вас да унесете датум испоруке"
@@ -37401,7 +37461,7 @@ msgstr "Молимо Вас да унесете датум испоруке"
msgid "Please enter Employee Id of this sales person"
msgstr "Молимо Вас да унесете ИД запосленог лица за овог продавца"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Молимо Вас да унесете рачун расхода"
@@ -37410,7 +37470,7 @@ msgstr "Молимо Вас да унесете рачун расхода"
msgid "Please enter Item Code to get Batch Number"
msgstr "Молимо Вас да унесете шифру ставке да бисте добили број шарже"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Молимо Вас да унесете шифру ставке да бисте добили број шарже"
@@ -37426,7 +37486,7 @@ msgstr "Молимо Вас да прво унесете детаље одржа
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Молимо Вас да унесете планирану количину за ставку {0} у реду {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Молимо Вас да прво унесете производну ставку"
@@ -37446,7 +37506,7 @@ msgstr "Молимо Вас да унесете датум референце"
msgid "Please enter Root Type for account- {0}"
msgstr "Молимо Вас да унесете врсту главног рачуна за рачун - {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Молимо Вас да унесете број серије"
@@ -37463,7 +37523,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Молимо Вас да унесете складиште и датум"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Молимо Вас да унесете рачун за отпис"
@@ -37483,7 +37543,7 @@ msgstr "Молимо Вас да унесете најмање један дат
msgid "Please enter company name first"
msgstr "Молимо Вас да прво унесете назив компаније"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Молимо Вас да унесете подразумевану валуту у мастер подацима о компанији"
@@ -37511,7 +37571,7 @@ msgstr "Молимо Вас да унесете датум престанка."
msgid "Please enter serial nos"
msgstr "Молимо Вас да унесете серијске бројеве"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Молимо Вас да унесете назив компаније да бисте потврдили"
@@ -37579,11 +37639,11 @@ msgstr "Молимо Вас да се уверите да запослена л
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Молимо Вас да се уверите да фајл који користите има колону 'Матични рачун' у заглављу."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Молимо Вас да се уверите да ли заиста желите да обришете трансакције за ову компанију. Ваши мастер подаци ће остати исти. Ова акција се не може поништити."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Молимо Вас да наведете 'Јединица мере за тежину' заједно са тежином."
@@ -37642,7 +37702,7 @@ msgstr "Молимо Вас да изаберете Врсту шаблона
msgid "Please select Apply Discount On"
msgstr "Молимо Вас да изаберете на шта ће се применити попуст"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Молимо Вас да изаберете саставницу за ставку {0}"
@@ -37658,7 +37718,7 @@ msgstr "Молимо Вас да изаберете текући рачун"
msgid "Please select Category first"
msgstr "Молимо Вас да прво изаберете категорију"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37688,7 +37748,7 @@ msgstr "Молимо Вас да прво изаберете датум завр
msgid "Please select Customer first"
msgstr "Молимо Вас да прво изаберете купца"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Молимо Вас да изаберете постојећу компанију за креирање контног оквира"
@@ -37697,8 +37757,8 @@ msgstr "Молимо Вас да изаберете постојећу комп
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Молимо Вас да изаберете готов производ за услужну ставку {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Молимо Вас да прво изаберете шифру ставке"
@@ -37730,11 +37790,11 @@ msgstr "Молимо Вас да прво изаберете датум књиж
msgid "Please select Price List"
msgstr "Молимо Вас да изаберете ценовник"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Молимо Вас да изаберете количину за ставку {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Молимо Вас да прво изаберете складиште за задржане узорке у подешавањима залиха"
@@ -37750,7 +37810,7 @@ msgstr "Молимо Вас да изаберете датум почетка и
msgid "Please select Stock Asset Account"
msgstr "Молимо Вас да изаберете рачун средстава залиха"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Молимо Вас да изаберете рачун нереализованог добитка/губитка или да додате подразумевани рачун нереализованог добитка/губитка за компанију {0}"
@@ -37767,7 +37827,7 @@ msgstr "Молимо Вас да изаберете компанију"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Молимо Вас да прво изаберете компанију."
@@ -37791,7 +37851,7 @@ msgstr "Молимо Вас да изаберете добављача"
msgid "Please select a Warehouse"
msgstr "Молимо Вас да изаберете складиште"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Молимо Вас да прво изаберете радни налог."
@@ -37864,11 +37924,15 @@ msgstr "Молимо Вас да изаберете вредност за {0} п
msgid "Please select an item code before setting the warehouse."
msgstr "Молимо Вас да изаберете шифру ставке пре него што поставите складиште."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Молимо Вас да изаберете барем један филтер: Шифра ставке, шаржа или број серије."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37888,7 +37952,7 @@ msgstr "Молимо Вас да изаберете барем један рас
msgid "Please select atleast one item to continue"
msgstr "Молимо Вас да изаберете барем једну ставку да бисте наставили"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Молимо Вас да изаберете барем једну операцију за креирање радне картице"
@@ -37946,7 +38010,7 @@ msgstr "Молимо Вас да изаберете компанију"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Молимо Вас да изаберете врсту програма са више нивоа за више правила наплате."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Молимо Вас да прво изаберете складиште"
@@ -37975,7 +38039,7 @@ msgstr "Молимо Вас да изаберете валидну врсту д
msgid "Please select weekly off day"
msgstr "Молимо Вас да изаберете недељни дан одмора"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Молимо Вас да прво изаберете {0}"
@@ -37984,11 +38048,11 @@ msgstr "Молимо Вас да прво изаберете {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Молимо Вас да поставите 'Примени додатни попуст на'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Молимо Вас да поставите 'Трошковни центар амортизације имовине' у компанији {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Молимо Вас да поставите 'Рачун приход/расход приликом отуђења имовине' у компанији {0}"
@@ -38000,7 +38064,7 @@ msgstr "Молимо Вас да поставите '{0}' у компанији:
msgid "Please set Account"
msgstr "Молимо Вас да поставите рачун"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Молимо Вас да поставите рачун за кусур"
@@ -38030,7 +38094,7 @@ msgstr "Молимо Вас да поставите компанију"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Молимо Вас да подесите адресу купца како би се утврдило да ли је трансакција извоз."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Молимо Вас да поставите рачун везана за амортизацију у категорији имовине {0} или у компанији {1}"
@@ -38048,7 +38112,7 @@ msgstr "Молимо Вас да поставите фискалну шифру
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Молимо Вас да поставите фискалну шифру за јавну управу '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Молимо Вас да поставите рачун основних средстава у категорији имовине {0}"
@@ -38094,7 +38158,7 @@ msgstr "Молимо Вас да поставите компанију"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Молимо Вас да поставите трошковни центар за имовину или трошковни центар амортизације имовине за компанију {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Молимо Вас да поставите подразумевану листу празника за компанију {0}"
@@ -38131,23 +38195,23 @@ msgstr "Молимо Вас да поставите бар један ред у
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Молимо Вас да поставите или пореску или фискалну шифру за компанију {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начину плаћања {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начину плаћања {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Молимо Вас да поставите као подразумевано благајну или текући рачун у начинима плаћања {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Молимо Вас да поставите подразумевани рачун прихода/расхода курсних разлика у компанији {}"
@@ -38176,7 +38240,7 @@ msgstr "Молимо Вас да поставите подразумевани {
msgid "Please set filter based on Item or Warehouse"
msgstr "Молимо Вас да поставите филтер на основу ставке или складишта"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Молимо Вас да поставите једно од следећег:"
@@ -38184,7 +38248,7 @@ msgstr "Молимо Вас да поставите једно од следећ
msgid "Please set opening number of booked depreciations"
msgstr "Молимо Вас да унесете почетни број књижених амортизација"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Молимо Вас да поставите понављање након чувања"
@@ -38196,15 +38260,15 @@ msgstr "Молимо Вас да поставите адресу купца"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Молимо Вас да поставите подразумевани трошковни центар у компанији {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Молимо Вас да прво поставите шифру ставке"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Молимо Вас да поставите циљно складиште у радној картици"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Молимо Вас да поставите складиште недовршене производње у радној картици"
@@ -38243,7 +38307,7 @@ msgstr "Молимо Вас да поставите {0} за израдитељ
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Молимо Вас да поставите {0} у компанији {1} за евидентирање прихода/расхода курсних разлика"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Молимо Вас да поставите {0} у {1}, исти рачун који је коришћен у оригиналној фактури {2}."
@@ -38265,7 +38329,7 @@ msgstr "Молимо Вас да прецизирате компанију"
msgid "Please specify Company to proceed"
msgstr "Молимо Вас да прецизирате компанију да бисте наставили"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Молимо Вас да прецизирате валидан ИД ред за ред {0} у табели {1}"
@@ -38278,7 +38342,7 @@ msgstr "Молимо Вас прецизирајте {0}."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Молимо Вас да прецизирате барем један атрибут у табели атрибута"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Молимо Вас да прецизирате или количину или стопу вредновања или оба"
@@ -38383,8 +38447,8 @@ msgstr "Низ путање уноса"
msgid "Post Title Key"
msgstr "Кључ назива путање уноса"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Поштански трошкови"
@@ -38449,7 +38513,7 @@ msgstr "Објављено на"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38467,7 +38531,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38589,10 +38653,6 @@ msgstr "Датум и време књижења"
msgid "Posting Time"
msgstr "Време књижења"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Датум и време књижења су обавезни"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38666,18 +38726,23 @@ msgstr "Powered by {0}"
msgid "Pre Sales"
msgstr "Pre Sales"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Преференца"
@@ -38850,6 +38915,7 @@ msgstr "Категорије попуста на цену"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38873,6 +38939,7 @@ msgstr "Категорије попуста на цену"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38924,7 +38991,7 @@ msgstr "Земља ценовника"
msgid "Price List Currency"
msgstr "Валута ценовника"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Валута ценовника није изабрана"
@@ -39279,7 +39346,7 @@ msgstr "Штампај признаницу"
msgid "Print Receipt on Order Complete"
msgstr "Штампај потврду када је наруџбина завршена"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Штампај саставницу након количине"
@@ -39288,8 +39355,8 @@ msgstr "Штампај саставницу након количине"
msgid "Print Without Amount"
msgstr "Штампај без износа"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Штампање и канцеларијски материјал"
@@ -39297,7 +39364,7 @@ msgstr "Штампање и канцеларијски материјал"
msgid "Print settings updated in respective print format"
msgstr "Поставке штампе су ажуриране у одговарајућем формату штампе"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Штампај порезе са износом нула"
@@ -39400,10 +39467,6 @@ msgstr "Проблем"
msgid "Procedure"
msgstr "Процедура"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Процедуре су уклоњене"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39457,7 +39520,7 @@ msgstr "Проценат губитка у процесу не може бити
msgid "Process Loss Qty"
msgstr "Количина губитка у процесу"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Количина губитка у процесу"
@@ -39538,6 +39601,10 @@ msgstr "Обрада претплате"
msgid "Process in Single Transaction"
msgstr "Обрада у једној трансакцији"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39633,8 +39700,8 @@ msgstr "Производ"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39699,7 +39766,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Производња"
@@ -39913,7 +39980,7 @@ msgstr "Проценат (%) напретка за задатак не може
msgid "Progress (%)"
msgstr "Напредак (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Позив за сарадњу на пројекту"
@@ -39957,7 +40024,7 @@ msgstr "Статус пројекта"
msgid "Project Summary"
msgstr "Резиме пројекта"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Резиме пројекта за {0}"
@@ -40088,7 +40155,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40234,7 +40301,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Потенцијални купци укључени, али нису конвертовани"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Заштићен DocType"
@@ -40249,7 +40316,7 @@ msgstr "Унесите имејл адресу регистровану у ко
msgid "Providing"
msgstr "Обезбеђивање"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Привремени рачун"
@@ -40321,8 +40388,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40645,7 +40713,7 @@ msgstr "Набавна поруџбина {0} је креирана"
msgid "Purchase Order {0} is not submitted"
msgstr "Набавна поруџбина {0} није поднета"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Набавне поруџбине"
@@ -40660,7 +40728,7 @@ msgstr "Број набавних поруџбина"
msgid "Purchase Orders Items Overdue"
msgstr "Закаснеле ставке набавних поруџбина"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Набавне поруџбине нису дозвољене за {0} због статуса у таблици за оцењивање {1}."
@@ -40675,7 +40743,7 @@ msgstr "Набавне поруџбине за фактурисање"
msgid "Purchase Orders to Receive"
msgstr "Набавне поруџбине за пријем"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Набавне поруџбине {0} нису повезане"
@@ -40809,7 +40877,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Шаблон пореза на набавку"
@@ -40907,6 +40975,7 @@ msgstr "Набављање"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40916,10 +40985,6 @@ msgstr "Набављање"
msgid "Purpose"
msgstr "Сврха"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Сврха мора бити један од {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40975,6 +41040,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41023,6 +41089,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41131,11 +41198,11 @@ msgstr "Количина по јединици"
msgid "Qty To Manufacture"
msgstr "Количина за производњу"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Количина за производњу ({0}) не може бити децимални број за јединицу мере {2}. Да бисте омогућили ово, онемогућите '{1}' у јединици мере {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "Количина за производњу у радној картици не може бити већа од количине за производњу у радном налогу за операцију {0}. Решење: Можете смањити количину за производњу у радној картици или подесити 'Проценат прекомерне производње за радни налог' у {1}."
@@ -41186,8 +41253,8 @@ msgstr "Количина према складишној јединици мер
msgid "Qty for which recursion isn't applicable."
msgstr "Количина за коју рекурзија није примењива."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Количина за {0}"
@@ -41242,8 +41309,8 @@ msgstr "Количина за демонтажу"
msgid "Qty to Fetch"
msgstr "Количина за преузимање"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Количина за производњу"
@@ -41479,17 +41546,17 @@ msgstr "Шаблон инспекције квалитета"
msgid "Quality Inspection Template Name"
msgstr "Назив шаблона инспекције квалитета"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Инспекција квалитета је обавезна за ставку {0} пре завршетка радне картице {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Инспекција квалитета {0} није поднета за ставку: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Инспекција квалитета {0} је одбијена за ставку: {1}"
@@ -41503,7 +41570,7 @@ msgstr "Инспекције квалитета"
msgid "Quality Inspections"
msgstr "Инспекције квалитета"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Менаџмент квалитета"
@@ -41635,7 +41702,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41770,7 +41837,7 @@ msgstr "Количина мора бити већа од нуле"
msgid "Quantity must be less than or equal to {0}"
msgstr "Количина мора бити мања или једнака {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Количина не сме бити већа од {0}"
@@ -41780,21 +41847,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Потребна количина за ставку {0} у реду {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Количина треба бити већа од 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Количина за производњу"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Количина за производњу не може бити нула за операцију {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Количина за производњу мора бити већа од 0."
@@ -41817,7 +41884,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Квартал {0} {1}"
@@ -41936,11 +42003,11 @@ msgstr "Понуда за"
msgid "Quotation Trends"
msgstr "Трендови понуда"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Понуда {0} је отказана"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Понуда {0} није врсте {1}"
@@ -42247,7 +42314,7 @@ msgstr "Курс по којем се валута добављача конве
msgid "Rate at which this tax is applied"
msgstr "Стопа по којој се порез примењује"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Цена ставке '{}' се не може мењати"
@@ -42413,7 +42480,7 @@ msgstr "Утрошене сировине"
msgid "Raw Materials Consumption"
msgstr "Утрошак сировина"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Недостају сировине"
@@ -42452,12 +42519,6 @@ msgstr "Сировине не могу бити празне."
msgid "Raw Materials to Customer"
msgstr "Сировине ка купцу"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Необрађени SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42466,7 +42527,7 @@ msgstr "Утрошена количина сировина биће провер
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42647,7 +42708,7 @@ msgid "Receivable / Payable Account"
msgstr "Рачун потраживања / обавеза"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43108,7 +43169,7 @@ msgstr "Референца #"
msgid "Reference #{0} dated {1}"
msgstr "Референца #{0} од {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Датум референце за попуст на ранију уплату"
@@ -43272,11 +43333,11 @@ msgstr "Референца: {0}, шифра ставке: {1} и купац: {2}
msgid "References"
msgstr "Референце"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Референце за излазне фактуре су непотпуне"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Референце за продајне поруџбине су непотпуне"
@@ -43438,7 +43499,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Преостали салдо"
@@ -43496,7 +43557,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43560,7 +43621,7 @@ msgstr "Преименуј вредност атрибута у атрибуту
msgid "Rename Log"
msgstr "Евиденција преименовања"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Преименовање није дозвољено"
@@ -43577,7 +43638,7 @@ msgstr "Задаци за преименовање doctype {0} су ставље
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Задаци за преименовање doctype {0} нису стављени у ред чекања."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Преименовање је дозвољено само преко матичне компаније {0}, како би се избегла неусклађеност."
@@ -43701,7 +43762,7 @@ msgstr "Шаблон извештаја"
msgid "Report Type is mandatory"
msgstr "Врста извештаја је обавезна"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Пријави проблем"
@@ -43946,7 +44007,7 @@ msgstr "Захтев за информацијама"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44127,7 +44188,7 @@ msgstr "Захтева испуњење"
msgid "Research"
msgstr "Истраживање"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Истраживање и развој"
@@ -44172,7 +44233,7 @@ msgstr "Резервација"
msgid "Reservation Based On"
msgstr "Резервација заснована на"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44216,7 +44277,7 @@ msgstr "Резервиши за подсклопове"
msgid "Reserved"
msgstr "Резервисано"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Конфликт резервисане шарже"
@@ -44286,14 +44347,14 @@ msgstr "Резервисана количина"
msgid "Reserved Quantity for Production"
msgstr "Резервисана количина за производњу"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44302,13 +44363,13 @@ msgstr "Резервисани број серије."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Резервисане залихе за шаржу"
@@ -44574,7 +44635,7 @@ msgstr "Поље за наслов резултата"
msgid "Resume"
msgstr "Биографија"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Наставити посао"
@@ -44599,8 +44660,8 @@ msgstr "Малопродаја"
msgid "Retain Sample"
msgstr "Задржани узорак"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Нераспоређена добит"
@@ -44675,7 +44736,7 @@ msgstr "Поврат по основу пријемнице набавке"
msgid "Return Against Subcontracting Receipt"
msgstr "Поврат по основу пријемнице подуговарања"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Повраћај компоненти"
@@ -44711,7 +44772,7 @@ msgstr "Количина за повраћај из складишта одби
msgid "Return Raw Material to Customer"
msgstr "Повраћај сировина купцу"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Рекламациона фактура за имовину је отказана"
@@ -44809,8 +44870,8 @@ msgstr "Повраћаји"
msgid "Revaluation Journals"
msgstr "Дневник ревалоризације"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Ревалоризацијски вишак"
@@ -45042,7 +45103,7 @@ msgstr "Врста основног нивоа за {0} мора бити јед
msgid "Root Type is mandatory"
msgstr "Врста основног нивоа је обавезна"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Основни ниво се не може уређивати."
@@ -45061,8 +45122,8 @@ msgstr "Заокруживање бесплатне количине"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45242,21 +45303,21 @@ msgstr "Ред # {0}: Цена не може бити већа од цене к
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Ред # {0}: Враћена ставка {1} не постоји у {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Ред #1: ИД секвенце мора бити 1 за операцију {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Ред #{0} (Евиденција плаћања): Износ мора бити негативан"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Ред #{0} (Евиденција плаћања): Износ мора бити позитиван"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Ред #{0}: Унос за поновну наруџбину већ постоји за складиште {1} са врстом поновне наруџбине {2}."
@@ -45277,7 +45338,7 @@ msgstr "Ред #{0}: Складиште прихваћених залиха и
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Ред #{0}: Складиште прихваћених залиха је обавезно за прихваћену ставку {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Ред #{0}: Рачун {1} не припада компанији {2}"
@@ -45338,31 +45399,31 @@ msgstr "Ред #{0}: Није могуће отказати овај унос з
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Ред #{0}: Није могуће креирати унос са различитим везама опорезивог документа и документа за порез по одбитку."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Ред #{0}: Не може се обрисати ставка {1} која је већ фактурисана."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Ред #{0}: Не може се обрисати ставка {1} која је већ испоручена"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Ред #{0}: Не може се обрисати ставка {1} која је већ примљена"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Ред #{0}: Не може се обрисати ставка {1} којој је додељен радни налог."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Ред #{0}: Није могуће обрисати ставку {1} јер је већ поручена у оквиру ове продајне поруџбине."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Ред #{0}: Није могуће поставити цену уколико је фактурисани износ већи од износа за ставку {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Ред #{0}: Не може се пренети више од потребне количине {1} за ставку {2} према радној картици {3}"
@@ -45412,11 +45473,11 @@ msgstr "Ред #{0}: Ставка обезбеђена од стране куп
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} не може бити додата више пута у процесу пријема из подуговарања."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} не може бити додата више пута."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} не постоји у табели потребних ставки повезаној са налогом за пријем из подуговарања."
@@ -45424,7 +45485,7 @@ msgstr "Ред #{0}: Ставка обезбеђена од стране куп
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} премашује доступну количину путем налога за пријем из подуговарања"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Ред #{0}: Ставка обезбеђена од стране купца {1} нема довољну количину у налогу за пријем из подуговарања. Доступна количина је {2}."
@@ -45441,7 +45502,7 @@ msgstr "Ред #{0}: Ставка обезбеђена од стране куп
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Ред #{0}: Датуми се преклапају са другим редом у групи {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Ред #{0}: Подразумевана саставница није пронађена за готов производ {1}"
@@ -45465,22 +45526,22 @@ msgstr "Ред #{0}: Рачун расхода није постављен за
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Ред #{0}: Рачун расхода {1} није важећи за улазну фактуру {2}. Дозвољени су само рачуни расхода за ставке ван залиха."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Ред #{0}: Количина готових производа не може бити нула"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Ред #{0}: Готов производ није одређен за услужну ставку {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Ред #{0}: Готов производ {1} мора бити подуговорена ставка"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Ред #{0}: Готов производ мора бити {1}"
@@ -45509,7 +45570,7 @@ msgstr "Ред #{0}: Учесталост амортизације мора би
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Ред #{0}: Датум почетка не може бити пре датума завршетка"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Ред #{0}: Поља за време почетка и време завршетка су обавезна"
@@ -45517,7 +45578,7 @@ msgstr "Ред #{0}: Поља за време почетка и време за
msgid "Row #{0}: Item added"
msgstr "Ред #{0}: Ставка је додата"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Ред #{0}: Ставка {1} не може се пренети у количини већој од {2} у односу на {3} {4}"
@@ -45545,7 +45606,7 @@ msgstr "Ред #{0}: Ставка {1} у складишту {2}: Доступн
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Ред #{0}: Ставка {1} није ставка обезбеђена од стране купца."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Ред #{0}: Ставка {1} није ставка серије / шарже. Не може имати број серије / шарже."
@@ -45586,7 +45647,7 @@ msgstr "Ред #{0}: Следећи датум амортизације не м
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Ред #{0}: Следећи датум амортизације не може бити пре датума набавке"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Ред #{0}: Није дозвољено променити добављача јер набавна поруџбина већ постоји"
@@ -45598,10 +45659,6 @@ msgstr "Ред #{0}: Само {1} је доступно за резерваци
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Ред #{0}: Почетна акумулирана амортизација мора бити мања од или једнака {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Ред #{0}: Операција {1} није завршена за {2} количине готових производа у радном налогу {3}. Молимо Вас да ажурирате статус операције путем радне картице {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45623,11 +45680,11 @@ msgstr "Ред #{0}: Молимо Вас да изаберете ставку г
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Ред #{0}: Молимо Вас да изаберете складиште подсклопова"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Ред #{0}: Молимо Вас да поставите количину за наручивање"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Ред #{0}: Молимо Вас да ажурирате рачун разграничених прихода/расхода у реду ставке или подразумевани рачун у мастер подацима компаније"
@@ -45649,15 +45706,15 @@ msgstr "Ред #{0}: Количина мора бити позитиван бр
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Ред #{0}: Количина треба да буде мања или једнака доступној количини за резервацију (стварна количина - резервисана количина) {1} за ставку {2} против шарже {3} у складишту {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Ред #{0}: Инспекција квалитета је неопходна за ставку {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Ред #{0}: Инспекција квалитета {1} није поднета за ставку: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Ред #{0}: Инспекција квалитета {1} је одбијена за ставку {2}"
@@ -45665,7 +45722,7 @@ msgstr "Ред #{0}: Инспекција квалитета {1} је одбиј
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Ред #{0}: Количина мора бити позитиван број. Молимо Вас да повећате количину или уклоните ставку {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Ред #{0}: Количина за ставку {1} не може бити нула."
@@ -45681,18 +45738,18 @@ msgstr "Ред #{0}: Количина мора бити већа од 0 за {1}
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Ред #{0}: Количина за резервацију за ставку {1} мора бити већа од 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Ред #{0}: Цена мора бити иста као {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Ред #{0}: Врста референтног документа мора бити једна од следећих: набавна поруџбина, улазна фактура, налог књижења или опомена"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Ред #{0}: Врста референтног документа мора бити једна од следећих: продајна поруџбина, излазна фактура, налог књижења или опомена"
@@ -45734,7 +45791,7 @@ msgstr "Ред #{0}: Продајна цена за ставку {1} је ниж
"\t\t\t\t\tможете онемогућити '{5}' у {6} да бисте заобишли\n"
"\t\t\t\t\tову проверу."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Ред #{0}: ИД секвенце мора бити {1} или {2} за операцију {3}."
@@ -45754,19 +45811,19 @@ msgstr "Ред #{0}: Број серије {1} је већ изабран."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Ред #{0}: Број серије {1} није део повезаног налога за пријем из подуговарања. Молимо Вас да изаберете исправан број серије."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Ред #{0}: Датум завршетка услуге не може бити пре датума књижења фактуре"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Ред #{0}: Датум почетка услуге не може бити већи од датума завршетка услуге"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Ред #{0}: Датум почетка и датум завршетка услуге су обавезни за временско разграничење"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Ред #{0}: Поставите добављача за ставку {1}"
@@ -45778,19 +45835,19 @@ msgstr "Ред #{0}: С обзиром да је 'Праћење полупро
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Ред #{0}: Изворно складиште мора бити исто као складиште купца {1} из повезаног налога за пријем из подуговарања"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Ред #{0}: Изворно складиште {1} за ставку {2} не може бити складиште купца."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Ред #{0}: Изворно складиште {1} за ставку {2} мора бити исто као изворно складиште {3} у радном налогу."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Ред #{0}: Изворно и циљно складиште не могу бити исто приликом преноса материјала"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Ред #{0}: Изворно, циљно складиште и димензије инвентара не могу бити потпуно исти приликом преноса материјала"
@@ -45806,6 +45863,10 @@ msgstr "Ред #{0}: Статус је обавезан"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Ред #{0}: Статус мора бити {1} за дисконтовање фактуре {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Ред #{0}: Складиште не може бити резервисано за ставку {1} против онемогућене шарже {2}."
@@ -45822,7 +45883,7 @@ msgstr "Ред #{0}: Залихе не могу бити резервисане
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Ред #{0}: Залихе су већ резервисане за ставку {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Ред #{0}: Залихе су већ резервисане за ставку {1} у складишту {2}."
@@ -45835,7 +45896,7 @@ msgstr "Ред #{0}: Залихе нису доступне за резерва
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Ред #{0}: Залихе нису доступне за резервацију за ставку {1} у складишту {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Ред #{0}: Количина залиха {1} ({2}) за ставку {3} не може премашити {4}"
@@ -45847,7 +45908,7 @@ msgstr "Ред #{0}: Циљно складиште мора бити исто к
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Ред #{0}: Шаржа {1} је већ истекла."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Ред #{0}: Складиште {1} није зависно складиште групног складишта {2}"
@@ -45883,7 +45944,7 @@ msgstr "Ред #{0}: Не можете користити димензију и
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Ред #{0}: Морате изабрати имовину за ставку {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Ред #{0}: {1} не може бити негативно за ставку {2}"
@@ -45899,7 +45960,7 @@ msgstr "Ред #{0}: {1} је обавезно за креирање почет
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Ред #{0}: {1} од {2} треба да буде {3}. Молимо Вас да ажурирате {1} или изаберете други рачун."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Ред #{0}: Количина за ставку {1} не може бити нула."
@@ -46000,7 +46061,7 @@ msgstr "Ред #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Ред #{}: {} {} не постоји."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Ред #{}: {} {} не припада компанији {}. Молимо Вас да изаберете важећи {}."
@@ -46008,7 +46069,7 @@ msgstr "Ред #{}: {} {} не припада компанији {}. Молим
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Ред број {0}: Складиште је обавезно. Молимо Вас да поставите подразумевано складиште за ставку {1} и компанију {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Ред {0} : Операција је обавезна за ставку сировине {1}"
@@ -46016,7 +46077,7 @@ msgstr "Ред {0} : Операција је обавезна за ставку
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Ред {0} одабрана количина је мања од захтеване количине, потребно је додатних {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Ред {0}# ставка {1} није пронађена у табели 'Примљене сировине' у {2} {3}"
@@ -46048,11 +46109,11 @@ msgstr "Ред {0}: Распоређени износ {1} мора бити ма
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Ред {0}: Распоређени износ {1} мора бити мањи или једнак преосталом износу за плаћање {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Ред {0}: Пошто је {1} омогућен, сировине не могу бити додате у {2} унос. Користите {3} унос за потрошњу сировина."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Ред {0}: Саставница није пронађена за ставку {1}"
@@ -46070,7 +46131,7 @@ msgstr "Ред {0}: Утрошена количина {1} {2} мора бити
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Ред {0}: Фактор конверзије је обавезан"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Ред {0}: Трошковни центар {1} не припада компанији {2}"
@@ -46090,7 +46151,7 @@ msgstr "Ред {0}: Валута за саставницу #{1} треба да
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Ред {0}: Унос дуговне стране не може бити повезан са {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Ред {0}: Складиште за испоруку ({1}) и складиште купца ({2}) не могу бити исти"
@@ -46098,7 +46159,7 @@ msgstr "Ред {0}: Складиште за испоруку ({1}) и склад
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Ред {0}: Складиште за испоруку не може бити исто као складиште купца за ставку {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Ред {0}: Датум доспећа у табели услова плаћања не може бити пре датума књижења"
@@ -46143,16 +46204,16 @@ msgstr "Ред {0}: За добављача {1}, имејл адреса је о
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Ред {0}: Време почетка и време завршетка су обавезни."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Ред {0}: Време почетка и време завршетка за {1} се преклапају са {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Ред {0}: Почетно складиште је обавезно за интерне трансфере"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Ред {0}: Време почетка мора бити мање од времена завршетка"
@@ -46168,7 +46229,7 @@ msgstr "Ред {0}: Неважећа референца {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Ред {0}: Шаблон ставке пореза ажуриран према важењу и примењеној стопи"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Ред {0}: Цена ставке је ажурирана према стопи вредновања јер је у питању интерни пренос залиха"
@@ -46192,7 +46253,7 @@ msgstr "Ред {0}: Количина ставке {1} не може бити в
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Ред {0}: Време операције мора бити већ од 0 за операцију {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Ред {0}: Упакована количина мора бити једнака количини {1}."
@@ -46260,7 +46321,7 @@ msgstr "Ред {0}: Улазна фактура {1} нема утицај на
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Ред {0}: Количина не може бити већа од {1} за ставку {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Ред {0}: Количина у основној јединици мере залиха не може бити нула."
@@ -46272,10 +46333,6 @@ msgstr "Ред {0}: Количина мора бити већа од 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Ред {0}: Количина не може бити негативна."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Ред {0}: Количина није доступна за {4} у складишту {1} за време књижења ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Ред {0}: Излазна фактура {1} је већ креирана за {2}"
@@ -46284,11 +46341,11 @@ msgstr "Ред {0}: Излазна фактура {1} је већ креиран
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Ред {0}: Смена се не може променити јер је амортизација већ обрачуната"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Ред {0}: Подуговорена ставка је обавезна за сировину {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Ред {0}: Циљно складиште је обавезно за интерне трансфере"
@@ -46300,11 +46357,11 @@ msgstr "Ред {0}: Задатак {1} не припада пројекту {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Ред {0}: Целокупан износ расхода за рачун {1} у {2} је већ распоређен."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Ред {0}: Ставка {1}, количина мора бити позитиван број"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Ред {0}: Рачун {3} {1} не припада компанији {2}"
@@ -46312,11 +46369,11 @@ msgstr "Ред {0}: Рачун {3} {1} не припада компанији {2
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Ред {0}: За постављање периодичности {1}, разлика између датума почетка и датума завршетка мора бити већа или једнака од {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Ред {0}: Пренета количина не може бити већа од затражене количине."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Ред {0}: Фактор конверзије јединица мере је обавезан"
@@ -46329,11 +46386,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Ред {0}: Складиште {1} је повезано са компанијом {2}. Молимо Вас да изаберете складиште које припада компанији {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Ред {0}: Радна станица или врста радне станице је обавезна за операцију {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Ред {0}: Корисник није применио правило {1} на ставку {2}"
@@ -46345,7 +46402,7 @@ msgstr "Ред {0}: Рачун {1} је већ примењен на рачун
msgid "Row {0}: {1} must be greater than 0"
msgstr "Ред {0}: {1} мора бити веће од 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Ред {0}: {1} {2} не може бити исто као {3} (Рачун странке) {4}"
@@ -46391,7 +46448,7 @@ msgstr "Редови уклоњени у {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Редови са истим аналитичким рачунима ће бити спојени у један рачун"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Пронађени су редови са дуплим датумима доспећа у другим редовима: {0}"
@@ -46399,7 +46456,7 @@ msgstr "Пронађени су редови са дуплим датумима
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Редови: {0} имају 'Унос уплате' као референтну врсту. Ово не треба подешавати ручно."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Редови: {0} у одељку {1} су неважећи. Назив референце треба да упућује на валидан унос уплате или налог књижења."
@@ -46606,8 +46663,8 @@ msgstr "Сигурносне залихе"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46629,8 +46686,8 @@ msgstr "Метод обрачуна зараде"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46644,18 +46701,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Продаја"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Рачун продаје"
@@ -46679,8 +46741,8 @@ msgstr "Доприноси и подстицаји у продаји"
msgid "Sales Defaults"
msgstr "Подразумеване вредности за продају"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Трошкови продаје"
@@ -46849,11 +46911,11 @@ msgstr "Излазна фактура није креирана од стран
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Режим излазног фактурисања је активиран у малопродаји. Молимо Вас да направите излазну фактуру уместо тога."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Излазна фактура {0} је већ поднета"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Излазна фактура {0} мора бити обрисана пре него што се откаже продајна поруџбина"
@@ -47051,25 +47113,25 @@ msgstr "Трендови продајне поруџбине"
msgid "Sales Order required for Item {0}"
msgstr "Продајна поруџбина је потребна за ставку {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Продајна поруџбина {0} већ постоји за набавну поруџбину купца {1}. Да бисте омогућили више продајних поруџбина, омогућите {2} у {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr "Продајна поруџбина {0} није доступна за производњу"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Продајна поруџбина {0} није поднета"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Продајна поруџбина {0} није валидна"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Продајна поруџбина {0} је {1}"
@@ -47113,6 +47175,7 @@ msgstr "Продајне поруџбине за испоруку"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47125,7 +47188,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47231,7 +47294,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47324,7 +47387,7 @@ msgstr "Регистар продаје"
msgid "Sales Representative"
msgstr "Продајни представник"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Повраћај продаје"
@@ -47348,7 +47411,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Шаблон пореза на продају"
@@ -47467,7 +47530,7 @@ msgstr "Иста ставка"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Иста ставка и комбинација складишта су већ унесени."
@@ -47499,12 +47562,12 @@ msgstr "Складиште за задржане узорке"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Величина узорка"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Количина узорка {0} не може бити већа од примљене количине {1}"
@@ -47748,7 +47811,7 @@ msgstr "Имовина за отпис"
msgid "Scrap Warehouse"
msgstr "Складиште за отпис"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Датум отписа не може бити пре датума набавке"
@@ -47867,8 +47930,8 @@ msgstr "Секундарна улога"
msgid "Secretary"
msgstr "Секретар"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Обезбеђени зајам"
@@ -47906,7 +47969,7 @@ msgstr "Изаберите алтернативну ставку"
msgid "Select Alternative Items for Sales Order"
msgstr "Изаберите алтернативну ставку за продајну поруџбину"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Изаберите вредности атрибута"
@@ -47948,7 +48011,7 @@ msgstr "Изаберите компанију"
msgid "Select Company Address"
msgstr "Изаберите адресу компаније"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Изаберите корективну операцију"
@@ -47984,7 +48047,7 @@ msgstr "Изаберите димензију"
msgid "Select Dispatch Address "
msgstr "Изаберите адресу отпреме "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Изаберите запослена лица"
@@ -48009,7 +48072,7 @@ msgstr "Изаберите ставке"
msgid "Select Items based on Delivery Date"
msgstr "Изаберите ставке на основу датума испоруке"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Изаберите ставке за контролу квалитета"
@@ -48047,7 +48110,7 @@ msgstr "Изаберите распоред плаћања"
msgid "Select Possible Supplier"
msgstr "Изаберите могућег добављача"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Изаберите количину"
@@ -48122,7 +48185,7 @@ msgstr "Изаберите подразумевани приоритет."
msgid "Select a Payment Method."
msgstr "Изаберите метод плаћања."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Изаберите добављача"
@@ -48145,7 +48208,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Изаберите групу ставки."
@@ -48161,9 +48224,9 @@ msgstr "Изаберите фактуру за учитавање резимеа
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Изаберите ставку из сваког сета која ће бити коришћена у продајној поруџбини."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Изаберите барем једну вредност из сваког од атрибута."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48179,7 +48242,7 @@ msgstr "Прво изаберите назив компаније."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Изаберите финансијску евиденцију за ставку {0} у реду {1}"
@@ -48211,7 +48274,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Изаберите ставку која ће бити произведена."
@@ -48228,7 +48291,7 @@ msgstr "Изаберите складиште"
msgid "Select the customer or supplier."
msgstr "Изаберите купца или добављача."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Изаберите датум"
@@ -48236,6 +48299,12 @@ msgstr "Изаберите датум"
msgid "Select the date and your timezone"
msgstr "Изаберите датум и временску зону"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Изаберите сировине (ставке) потребне за производњу ставке"
@@ -48264,7 +48333,7 @@ msgstr "Изаберите, како би купац могао да буде п
msgid "Selected POS Opening Entry should be open."
msgstr "Изабрани унос почетног стања за малопродају треба да буде отворен."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Изабрани ценовник треба да има означена поља за набавку и продају."
@@ -48295,30 +48364,30 @@ msgstr "Изабрани документ мора бити у статусу п
msgid "Self delivery"
msgstr "Самостална достава"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Продаја"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Продаја имовине"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Продајна количина"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Продајна количина не може премашити количину имовине"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "Продајна количина не може премашити количину имовине. Имовина {0} има само {1} ставку."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Продајна количина мора бити већа од нуле"
@@ -48571,7 +48640,7 @@ msgstr "Бројеви серије / шарже"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48591,7 +48660,7 @@ msgstr "Бројеви серије / шарже"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48636,7 +48705,7 @@ msgstr "Опсег серијских бројева"
msgid "Serial No Reserved"
msgstr "Резервисани број серије"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Преклапање серије бројева серије"
@@ -48776,7 +48845,7 @@ msgstr "Бројеви серија / шарже"
msgid "Serial Nos are created successfully"
msgstr "Бројеви серије су успешно креирани"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Бројеви серије су резервисани у уносима резервације залихе, морате поништити резервисање пре него што наставите."
@@ -48846,7 +48915,7 @@ msgstr "Серија и шаржа"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49260,7 +49329,7 @@ msgstr "Постави авансе и расподели (ФИФО)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Постави основну цену ручно"
@@ -49279,8 +49348,8 @@ msgstr "Постави складиште за испоруку"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Постави количину готовог производа"
@@ -49447,11 +49516,11 @@ msgstr "Постављено према шаблону пореза на ста
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Постави подразумевани рачун инвентара за стварно праћење инветара"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Постави подразумевани рачун {0} за ставке ван залиха"
@@ -49483,7 +49552,7 @@ msgstr "Поставите цену ставке подсклопа на осн
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Поставите циљеве по групама ставки за овог продавца."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Поставите планирани датум почетка (процењени датум када желите да производња започне)"
@@ -49594,7 +49663,7 @@ msgid "Setting up company"
msgstr "Постављање компаније"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Подешавање {0} је неопходно"
@@ -49614,6 +49683,10 @@ msgstr "Подешавање за модул продаје"
msgid "Settled"
msgstr "Поравнато"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49806,7 +49879,7 @@ msgstr "Врста пошиљке"
msgid "Shipment details"
msgstr "Детаљи испоруке"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Испоруке"
@@ -49844,7 +49917,7 @@ msgstr "Назив адресе за испоруку"
msgid "Shipping Address Template"
msgstr "Шаблон адресе за испоруку"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Адреса за испоруку не припада {0}"
@@ -49987,8 +50060,8 @@ msgstr "Кратка биографија за веб-сајт и друге п
msgid "Short-term Investments"
msgstr "Краткорочна улагања"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Краткорочна резервисања"
@@ -50322,7 +50395,7 @@ msgstr "Симултано"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Пошто постоје активна средства која се амортизују у овој категорији, следећи рачуни су обавезни. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Пошто постоје губици у процесу од {0} јединица за готов производ {1}, требало би да смањите количину за {0} јединица за готов производ {1} у табели ставки."
@@ -50367,7 +50440,7 @@ msgstr "Прескочи отпремницу"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50409,8 +50482,8 @@ msgstr "Константна за изравнавање"
msgid "Soap & Detergent"
msgstr "Сапун и детергент"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Софтвер"
@@ -50434,7 +50507,7 @@ msgstr "Продато од"
msgid "Solvency Ratios"
msgstr "Показатељи солвентности"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Неки обавезни подаци о компанији недостају. Немате дозволу да их ажурирате. Молимо Вас да контактирате систем менаџера."
@@ -50498,7 +50571,7 @@ msgstr "Назив поља извора"
msgid "Source Location"
msgstr "Локација извора"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "Изворни унос производње"
@@ -50507,11 +50580,11 @@ msgstr "Изворни унос производње"
msgid "Source Stock Entry (Manufacture)"
msgstr "Изворни унос залиха (производња)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "Изворни унос залиха {0} припада радном налогу {1}, а не {2}. Молимо Вас да користите унос производње из истог радног налога."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "Изворни унос залиха {0} нема количину готових производа"
@@ -50569,7 +50642,12 @@ msgstr "Линк за адресу изворног складишта"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Изворно складиште је обавезно за ставку {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Изворно складиште {0} мора бити исто као складиште купца {1} у налогу за пријем из подуговарања."
@@ -50577,24 +50655,23 @@ msgstr "Изворно складиште {0} мора бити исто као
msgid "Source and Target Location cannot be same"
msgstr "Извор и циљна локација не могу бити исти"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Изворно и циљно складиште не могу бити исти за ред {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Изворно и циљно складиште морају бити различити"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Извор средстава (Обавезе)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Изворно складиште је обавезно за ред {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50635,7 +50712,7 @@ msgstr "Трошење за рачун {0} ({1}) између {2} и {3} је в
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50643,7 +50720,7 @@ msgid "Split"
msgstr "Поделити"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Подели имовину"
@@ -50667,7 +50744,7 @@ msgstr "Подели од"
msgid "Split Issue"
msgstr "Подели издавање"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Подели количину"
@@ -50679,6 +50756,11 @@ msgstr "Подељена количина мора бити мања од кол
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Подела {0} {1} у {2} редова према условима плаћања"
@@ -50751,13 +50833,13 @@ msgstr "Стандардна набавка"
msgid "Standard Description"
msgstr "Стандардни опис"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Стандардни оцењени трошкови"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Стандардна продаја"
@@ -50778,8 +50860,8 @@ msgstr "Стандардни шаблон"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Стандардни услови и одредбе који се могу додати на продају и набавку. Примери: важење понуде, услови плаћања, сигурност и употреба, и сл."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Испоруке са стандардом стопом у {0}"
@@ -50814,7 +50896,7 @@ msgstr "Датум почетка не може бити пре тренутно
msgid "Start Date should be lower than End Date"
msgstr "Датум почетка треба да буде мањи од датума завршетка"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Покрени задатак"
@@ -50943,7 +51025,7 @@ msgstr "Илустрација статуса"
msgid "Status and Reference"
msgstr "Статус и референца"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Статус мора бити отказан или завршен"
@@ -50973,6 +51055,7 @@ msgstr "Статутарне информације и друге опште и
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50981,8 +51064,8 @@ msgstr "Залихе"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51082,6 +51165,16 @@ msgstr "Унос затварања залиха {0} је стављен у ре
msgid "Stock Closing Log"
msgstr "Дневник затварања залиха"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51091,10 +51184,6 @@ msgstr "Дневник затварања залиха"
msgid "Stock Details"
msgstr "Детаљи о залихама"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Уноси залиха су већ креирани за радни налог {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51158,7 +51247,7 @@ msgstr "Унос залиха је већ креиран за ову листу
msgid "Stock Entry {0} created"
msgstr "Унос залиха {0} креиран"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Унос залиха {0} је креиран"
@@ -51166,8 +51255,8 @@ msgstr "Унос залиха {0} је креиран"
msgid "Stock Entry {0} is not submitted"
msgstr "Унос залиха {0} није поднет"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Трошкови залиха"
@@ -51245,8 +51334,8 @@ msgstr "Нивои залиха"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Обавезе залиха"
@@ -51349,8 +51438,8 @@ msgstr "Количина залиха у односу на број серијс
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51362,7 +51451,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51374,7 +51463,7 @@ msgstr "Усклађивање залиха"
msgid "Stock Reconciliation Item"
msgstr "Ставка усклађивања залиха"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Усклађивања залиха"
@@ -51399,9 +51488,9 @@ msgstr "Подешавање поновне обраде залиха"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51412,7 +51501,7 @@ msgstr "Подешавање поновне обраде залиха"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51437,10 +51526,10 @@ msgstr "Резервација залиха"
msgid "Stock Reservation Entries Cancelled"
msgstr "Уноси резервације залиха отказани"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Уноси резервације залиха креирани"
@@ -51468,7 +51557,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Неподударање складишта за резервацију залиха"
@@ -51508,7 +51597,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51623,7 +51712,7 @@ msgstr "Подешавање трансакција залиха"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51756,11 +51845,11 @@ msgstr "Залихе не могу бити резервисане у групн
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Залихе не могу бити резервисане у групном складишту {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Залихе не могу бити ажуриране за следеће отпремнице: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Залихе не могу бити ажуриране јер фактура не садржи ставку са дроп схиппинг-ом. Молимо Вас да онемогућите 'Ажурирај залихе' или уклоните ставке са дроп схиппинг-ом."
@@ -51815,14 +51904,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Разлог заустављања"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Заустављени радни налози не могу бити отказани. Прво је потребно отказати заустављање да бисте отказали"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Магацини"
@@ -51880,7 +51969,7 @@ msgstr "Складиште подсклопова"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52142,7 +52231,7 @@ msgstr "Услужна ставка налога за подуговарање"
msgid "Subcontracting Order Supplied Item"
msgstr "Набављене ставке налога за подуговарање"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Налог за подуговарање {0} је креиран."
@@ -52231,7 +52320,7 @@ msgstr "Поставке подуговарања"
msgid "Subdivision"
msgstr "Пододељење"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Подношење радње није успело"
@@ -52252,7 +52341,7 @@ msgstr "Поднеси генерисане фактуре"
msgid "Submit Journal Entries"
msgstr "Поднеси налоге књижења"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Поднеси овај радни налог за даљу обраду."
@@ -52406,7 +52495,7 @@ msgstr "Успешно усклађено"
msgid "Successfully Set Supplier"
msgstr "Добављач успешно постављен"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Јединица мере на залихама је успешно промењена, редефинишите факторе конверзије за нову јединицу мере."
@@ -52430,7 +52519,7 @@ msgstr "Успешно увезено {0} записа."
msgid "Successfully linked to Customer"
msgstr "Успешно повезано са купцем"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Успешно повезано са добављачем"
@@ -52590,7 +52679,7 @@ msgstr "Набављена количина"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52688,6 +52777,7 @@ msgstr "Детаљи о добављачу"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52697,7 +52787,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52712,6 +52802,7 @@ msgstr "Детаљи о добављачу"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52796,7 +52887,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52831,8 +52922,6 @@ msgid "Supplier Number At Customer"
msgstr "Број добављача код купца"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Бројеви добављача"
@@ -52884,7 +52973,7 @@ msgstr "Примарни контакт добављача"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52913,7 +53002,7 @@ msgstr "Поређење понуда добављача"
msgid "Supplier Quotation Item"
msgstr "Ставка из понуде добављача"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Понуда добављача {0} креирана"
@@ -53002,7 +53091,7 @@ msgstr "Врста добављача"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Складиште добављача"
@@ -53019,17 +53108,12 @@ msgstr "Добављач испоручује купцу"
msgid "Supplier is required for all selected Items"
msgstr "Добављач је обавезан за све изабране ставке"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Бројеви добављача које додељује купац"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Добављач робе или услуга."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Добављач {0} није пронађен у {1}"
@@ -53042,8 +53126,8 @@ msgstr "Добављач(и)"
msgid "Suppliers"
msgstr "Добављачи"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Набавке су подложне обрнутом обрачуну пореза"
@@ -53134,7 +53218,7 @@ msgstr "Синхронизација започета"
msgid "Synchronize all accounts every hour"
msgstr "Синхронизуј све рачуне на сваких сат времена"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Систем у употреби"
@@ -53164,7 +53248,7 @@ msgstr "Систем ће извршити имплицитну конверзи
msgid "System will fetch all the entries if limit value is zero."
msgstr "Систем ће повући све уносе ако је вредност лимита нула."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Систем неће проверавати наплату јер је износ за ставку {0} у {1} нула"
@@ -53185,10 +53269,16 @@ msgstr "Резиме обрачуна пореза одбијеног на из
msgid "TDS Deducted"
msgstr "Одбијен порез по одбитку на извору"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Обавеза за порез одбијен на извору"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53336,7 +53426,7 @@ msgstr "Адреса циљног складишта"
msgid "Target Warehouse Address Link"
msgstr "Линк за адресу циљног складишта"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Грешка резервације у циљном складишту"
@@ -53344,24 +53434,23 @@ msgstr "Грешка резервације у циљном складишту"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Циљно складиште за готов производ мора бити исто као складиште готових производа {1} у радном налогу {2} повезано са налогом за пријем из подуговарања."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Циљно складиште је обавезно пре подношења"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Циљно складиште {0} мора бити исто као складиште за испоруку {1} у ставци налога за пријем из подуговарања."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Циљно складиште је обавезно за ред {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53478,8 +53567,8 @@ msgstr "Износ пореза након попуста (валута комп
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Износ пореза биће заокружен на нивоу реда (ставке)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Порески кредити"
@@ -53511,7 +53600,6 @@ msgstr "Порески кредити"
msgid "Tax Breakup"
msgstr "Расподела пореза"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53533,7 +53621,6 @@ msgstr "Расподела пореза"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53549,6 +53636,7 @@ msgstr "Расподела пореза"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53560,8 +53648,8 @@ msgstr "Пореска категорија"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Пореска категорија је промењена на \"Укупно\" јер су све ставке заправо ставке ван залиха"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Порески расход"
@@ -53635,7 +53723,7 @@ msgstr "Пореска стопа %"
msgid "Tax Rates"
msgstr "Пореске стопе"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Порески повраћај за туристе према шаблону повраћаја пореза за туристе"
@@ -53653,7 +53741,7 @@ msgstr "Порески ред"
msgid "Tax Rule"
msgstr "Пореско правило"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Пореско правило се коси са {0}"
@@ -53668,7 +53756,7 @@ msgstr "Подешавање пореза"
msgid "Tax Template"
msgstr "Порески шаблон"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Порески шаблон је обавезан."
@@ -53988,7 +54076,7 @@ msgstr "Одбијени порези и накнаде"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Одбијени порези и накнаде (валута компаније)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Ред пореза #{0}: {1} не може бити мањи од {2}"
@@ -54021,8 +54109,8 @@ msgstr "Технологија"
msgid "Telecommunications"
msgstr "Телекомуникације"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Телефонски трошак"
@@ -54073,13 +54161,13 @@ msgstr "Привремено на чекању"
msgid "Temporary"
msgstr "Привремено"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Прелазни рачуни"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Привремено отварање почетног стања"
@@ -54261,7 +54349,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54360,7 +54448,7 @@ msgstr "Текст приказан у финансијском извештај
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Поље 'Од броја пакета' не може бити празно нити његова вредност може бити мања од 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Приступ захтеву за понуду са портала је онемогућено. Да бисте омогућили приступ, омогућите га у подешавањима портала."
@@ -54413,7 +54501,8 @@ msgstr "Услов плаћања у реду {0} је вероватно дуп
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Листа за одабир која садржи уносе резервације залиха не може бити ажурирана. Уколико морате да извршите промене, препоручујемо да откажете постојеће ставке уноса резервације залиха пре него што ажурирате листу за одабир."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Количина губитка у процесу је ресетована према количини губитка у процесу са радном картицом"
@@ -54429,7 +54518,7 @@ msgstr "Број серије у реду #{0}: {1} није доступан у
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Серијски број {0} је резервисан за {1} {2} и не може се користити за било коју другу трансакцију."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Пакет серије и шарже {0} није валидан за ову трансакцију. 'Врста трансакције' треба да буде 'Излазна' уместо 'Улазна' у пакету серије и шарже {0}"
@@ -54465,7 +54554,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "Шаржа {0} је већ резервисана у {1} {2}. Дакле, није могуће наставити са {3} {4}, која је креирана за {5} {6}."
@@ -54473,7 +54562,11 @@ msgstr "Шаржа {0} је већ резервисана у {1} {2}. Дакле
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr "Компанија {0} није у Јужној Африци. Извештај о ПДВ ревизији доступан је само за компаније у Јужној Африци."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "Завршена количина {0} за операцију {1} не може бити већа од завршене количине {2} из претходне операције {3}."
@@ -54493,7 +54586,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Подразумевана саставница за ту ставку биће преузета од стране система. Такође можете променити саставницу."
@@ -54526,7 +54619,7 @@ msgstr "Поље од власника не може бити празно"
msgid "The field To Shareholder cannot be blank"
msgstr "Поље ка власнику не може бити празно"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Поље {0} у реду {1} није постављено"
@@ -54567,11 +54660,11 @@ msgstr "Следећа имовина није могла аутоматски
msgid "The following batches are expired, please restock them: {0}"
msgstr "Следеће шарже су истекле, молимо Вас да их допуните: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Постоје следећи отказани уноси поновног књижења за {0} : {1} Молимо Вас да обришете ове уносе пре наставка."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Следећи обрисани атрибути постоје у варијантама, али не и у шаблонима. Можете или обрисати варијанте или задржати атрибуте у шаблону."
@@ -54593,7 +54686,7 @@ msgstr "Следећи распореди плаћања већ постоје:\
msgid "The following rows are duplicates:"
msgstr "Следећи редови су дупликати:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Следећи {0} је креиран: {1}"
@@ -54620,7 +54713,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Следећа ставка {item} није означена као {type_of} ставка. Можете је омогућити као {type_of} ставку из мастер података ставке."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Ставке {0} и {1} су присутне у следећем {2} :"
@@ -54678,7 +54771,7 @@ msgstr "Операција {0} не може бити подоперација"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Оригинална фактура треба бити консолидована пре или заједно са рекламационом фактуром."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Неизмирени износ {0} у {1} је мањи од {2}. Неизмирени износ се ажурира на овом рачуну."
@@ -54690,6 +54783,12 @@ msgstr "Матични рачун {0} не постоји у учитаном ш
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Рачун за платни портал у плану {0} је различит од рачуна за платни портал у овом захтеву за наплату"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54731,7 +54830,7 @@ msgstr "Резервисане залихе ће бити поново дост
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Резервисане залихе ће бити поново доступне? Да ли сте сигурни да желите да наставите?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Основни рачун {0} мора бити група"
@@ -54747,7 +54846,7 @@ msgstr "Изабрани рачун за промене {} не припада
msgid "The selected item cannot have Batch"
msgstr "Изабрана ставка не може имати шаржу"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Продајна количина је мања од укупне количине имовине. Преостала количина биће издвојена у нову имовину. Ова радња се не може поништити. Да ли желите да наставите? "
@@ -54780,7 +54879,7 @@ msgstr "Удели не постоје са {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Залихе за ставку {0} у складишту {1} су биле негативне на {2}. Требало би да креирате позитиван унос {3} пре датума {4} и времена {5} како бисте унели исправну стопу вредновања. За више детаља прочитајте документацију. ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Залихе су резервисане за следеће ставке и складишта, поништите резервисање како бисте могли да {0} ускладите залихе: {1}"
@@ -54802,11 +54901,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Систем ће креирати излазну фактуру или фискални рачун са малопродајног интерфејса у зависности од овог подешавања. За трансакције великог обима препоручује се коришћење фискалног рачуна."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Задатак је стављен у статус чекања као позадински процес. У случају проблема при обради у позадини, систем ће додати коментар о грешци у овом усклађивању залиха и вратити га у фазу нацрта"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "Задатак је стављен у статус чекања као позадински процес. У случају проблема при обради у позадини, систем ће додати коментар о грешци у овом усклађивању залиха и вратити га у статус поднето"
@@ -54854,15 +54953,15 @@ msgstr "Вредност {0} се разликује између ставки {
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Вредност {0} је већ додељена постојећој ставци {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Складиште у којем чувате готове ставке пре испоруке."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Складиште у које ће Ваше ставке бити премештене када започнете производњу. Групно складиште може такође бити изабрано као складиште за недовршену производњу."
@@ -54870,19 +54969,19 @@ msgstr "Складиште у које ће Ваше ставке бити пр
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) мора бити једнако {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} садржи ставке са јединичном ценом."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Префикс {0} '{1}' већ постоји. Молимо Вас да промените серију бројева серије, у супротном ће доћи до грешке дуплог уноса."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} успешно креиран"
@@ -54890,7 +54989,7 @@ msgstr "{0} {1} успешно креиран"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} се не подудара са {0} {2} у {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} се користи за израчунавање вредности трошкова за готов производ {2}."
@@ -54906,7 +55005,7 @@ msgstr "Постоје активна одржавања или поправке
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Постоје недоследности између вредности по уделу, броја удела и израчунате вредности"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Постоје књижења за овај рачун. Промена {0} и не-{1} у активном систему изазваће нетачан излаз у извештају 'Рачуни' {2}"
@@ -54935,7 +55034,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Постоје две опције за процену залиха. ФИФО (први улаз - први излаз) и просечна вредност. За детаљно разумевање погледајте документацију Вредновање, ФИФО и просечна вредност. "
@@ -54975,7 +55074,7 @@ msgstr "Није пронађена ниједна шаржа за {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Мора постојати бар један готов производ у уносу залиха"
@@ -55031,11 +55130,11 @@ msgstr "Ова ставка је варијанта {0} (Шаблон)."
msgid "This Month's Summary"
msgstr "Резиме овог месеца"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Ова набавна поруџбина је у потпуности подуговорена."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Ова продајна поруџбина је у потпуности подуговорена."
@@ -55069,7 +55168,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Ово обухвата све таблице за оцењивање повезане са овим подешавањем"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Овај документ прелази ограничење за {0} {1} за ставку {4}. Да ли правите још један {3} за исти {2}?"
@@ -55172,11 +55271,11 @@ msgstr "Ово се сматра ризичним са рачуноводств
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Ово је за ставке сировина које ће се користити за креирање готових производа. Уколико је ставка додатна услуга, попут 'прања', која ће се користити у саставници, оставите ову опцију неозначеном."
@@ -55245,7 +55344,7 @@ msgstr "Овај распоред је креиран када је имовин
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Овај распоред је креиран када је имовина {0} поправљена кроз поправку имовине {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Овај распоред је креиран када је имовина {0} враћена због отказивања излазне фактуре {1}."
@@ -55253,15 +55352,15 @@ msgstr "Овај распоред је креиран када је имовин
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Овај распоред је креиран када је имовина {0} враћена након поништавања капитализације имовине {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Овај распоред је креиран када је имовина {0} враћена."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Овај распоред је креиран када је имовина {0} враћена путем излазне фактуре {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Овај распоред је креиран када је имовина {0} отписана."
@@ -55269,7 +55368,7 @@ msgstr "Овај распоред је креиран када је имовин
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Овај распоред је креиран када је имовина {0} била {1} у нову имовину {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Овај распоред је креиран када је имовина {0} била {1} путем излазне фактуре {2}."
@@ -55338,7 +55437,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Ово ће ограничити кориснички приступ записима других запослених лица"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Ово {} ће се третирати као пренос материјала."
@@ -55449,7 +55548,7 @@ msgstr "Време у минутима"
msgid "Time in mins."
msgstr "Време у минутима."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Записи времена су обавезни за {0} {1}"
@@ -55558,7 +55657,7 @@ msgstr "За фактурисање"
msgid "To Currency"
msgstr "У валути"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Датум завршетка не може бити пре датум почетка"
@@ -55785,11 +55884,15 @@ msgstr "Да бисте додали операције, означите пољ
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "За додавање сировина за подуговорену ставку уколико је опција укључи детаљне ставке онемогућена."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Да бисте одобрили прекорачење фактурисања, ажурирајте \"Дозвола за фактурисање преко лимита\" у подешавањима рачуна или у ставци."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Да бисте одобрили прекорачење пријема/испоруке, ажурирајте \"Дозвола за пријем/испоруку преко лимита\" у подешавањима залиха или у ставци."
@@ -55832,11 +55935,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Омогућава укључивање трошкова подсклопова и секундарних ставки у готове производе у радном налогу без коришћења радне картице, када је укључена опција 'Користи вишеслојну саставницу'."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Да би порез био укључен у ред {0} у цени ставке, порези у редовима {1} такође морају бити укључени"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "За спајање, следеће особине морају бити исте за обе ставке"
@@ -55844,7 +55947,7 @@ msgstr "За спајање, следеће особине морају бити
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Да се ценовно правило не примени у одређеној трансакцији, сва примењива ценовна правила треба онемогућити."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Да бисте ово поништили, омогућите '{0}' у компанији {1}"
@@ -55869,7 +55972,7 @@ 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:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56019,7 +56122,7 @@ msgstr "Укупне расподеле"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56126,12 +56229,12 @@ msgstr "Укупна комисија"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Укупна завршена количина"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Укупна завршена количина је обавезна за радну картицу {0}, молимо Вас да започнете и завршите радну картицу пре подношења"
@@ -56433,7 +56536,7 @@ msgstr "Укупан неизмирени износ"
msgid "Total Paid Amount"
msgstr "Укупно плаћени износ"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Укупни износ у распореду плаћања мора бити једнак укупном / заокруженом укупном износу"
@@ -56445,7 +56548,7 @@ msgstr "Укупан износ захтева за наплату не може
msgid "Total Payments"
msgstr "Укупно плаћања"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Укупно одабрана количина {0} је већа од наручене количине {1}. Можете поставити дозволу за преузимање вишка у подешавањима залиха."
@@ -56728,7 +56831,7 @@ msgstr "Укупно време радних станица (у сатима)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Укупно распоређени проценат за продајни тим треба бити 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Укупни проценат доприноса треба бити 100"
@@ -56903,7 +57006,7 @@ msgstr "Датум трансакције"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Документ брисања трансакција {0} је покренут за компанију {1}"
@@ -56927,11 +57030,11 @@ msgstr "Ставка у запису о брисању трансакције"
msgid "Transaction Deletion Record To Delete"
msgstr "Запис брисања трансакција за брисање"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Запис брисања трансакција {0} је већ у току. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Запис брисања трансакција {0} тренутно брише {1}. Није могуће сачувати документа док се брисање не заврши."
@@ -57036,7 +57139,8 @@ msgstr "Трансакција за коју се обрачунава поре
msgid "Transaction from which tax is withheld"
msgstr "Трансакција из које се обрачунава порез по одбитку"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Трансакција није дозвољена за заустављени радни налог {0}"
@@ -57083,11 +57187,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Трансакције које користе излазне фактуре у малопродаји су онемогућене."
@@ -57268,8 +57377,8 @@ msgstr "Информације о превознику"
msgid "Transporter Name"
msgstr "Назив превозника"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Путни трошкови"
@@ -57533,6 +57642,7 @@ msgstr "UAE VAT Settings"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57548,7 +57658,7 @@ msgstr "UAE VAT Settings"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57609,7 +57719,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Фактор конверзије јединице мере"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Фактор конверзије јединице мере ({0} -> {1}) није пронађен за ставку: {2}"
@@ -57622,7 +57732,7 @@ msgstr "Фактор конверзије јединице мере је оба
msgid "UOM Name"
msgstr "Назив јединице мере"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Фактор конверзије јединице мере је обавезан за јединицу мере: {0} у ставци: {1}"
@@ -57694,13 +57804,13 @@ msgstr "Није могуће пронаћи девизни курс за {0} у
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Није могуће пронаћи оцену која почиње са {0}. Морате имати постојеће оцене који су у опсегу од 0 до 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Није могуће пронаћи временски термин у наредних {0} дана за операцију {1}. Молимо Вас да повећате 'Планирање капацитета за (у данима)' за {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Није могуће пронаћи променљиве:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57781,7 +57891,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Неочекивани образац серије именовања"
@@ -57800,7 +57910,7 @@ msgstr "Јединица"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Јединична цена"
@@ -57817,7 +57927,7 @@ msgstr "Јединица мере"
msgid "Unit of Measure (UOM)"
msgstr "Јединица мере"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Јединица мере {0} је унета више пута у табелу фактора конверзије"
@@ -57962,7 +58072,7 @@ msgstr "Неусклађени уноси"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58002,12 +58112,12 @@ msgstr "Није решено"
msgid "Unscheduled"
msgstr "Непланирано"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Необезбеђени кредити"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Поништи усклађени захтев за наплату"
@@ -58183,7 +58293,7 @@ msgstr "Ажурирај ставке"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Ажурирај неизмирене обавезе за себе"
@@ -58262,11 +58372,11 @@ msgstr "Ажурирано {0} редова финансијског извеш
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Ажурирање поља за обрачун трошкова и фактурисање за овај пројекат..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Ажурирање варијанти..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Ажурирање статуса радног налога"
@@ -58468,7 +58578,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Користи девизни курс на датум трансакције"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Кориси назив који се разликује од претходног назива пројекта"
@@ -58510,7 +58620,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Користи се уз шаблон финансијског извештаја"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Кориснички форум"
@@ -58574,6 +58684,11 @@ msgstr "Корисници могу омогућити избор уколико
msgid "Users can make manufacture entry against Job Cards"
msgstr "Корисници могу унети производњу путем радних картица"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58596,8 +58711,8 @@ msgstr "Корисници са овом улогом биће обавеште
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Коришћење негативног стања залиха онемогућава ФИФО/Просечну вредност када је инвентар негативан."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Трошкови комуналних услуга"
@@ -58607,7 +58722,7 @@ msgstr "Трошкови комуналних услуга"
msgid "VAT Accounts"
msgstr "ПДВ рачуни"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "ПДВ износ (AED)"
@@ -58617,12 +58732,12 @@ msgid "VAT Audit Report"
msgstr "Извештај о ревизији ПДВ-а"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "ПДВ на трошкове и све остале улазне ставке"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "ПДВ на продају и све остале излазне ставке"
@@ -58816,7 +58931,6 @@ msgstr "Метод вредновања"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58832,14 +58946,12 @@ msgstr "Метод вредновања"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Стопа вредновања"
@@ -58847,19 +58959,19 @@ msgstr "Стопа вредновања"
msgid "Valuation Rate (In / Out)"
msgstr "Стопа вредновања (улаз/излаз)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Недостаје стопа вредновања"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Стопа вредновања за ставку {0} је неопходна за рачуноводствене уносе за {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Стопа вредновања је обавезна уколико је унет почетни инвентар"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Стопа вредновања је обавезна за ставку {0} у реду {1}"
@@ -58869,7 +58981,7 @@ msgstr "Стопа вредновања је обавезна за ставку
msgid "Valuation and Total"
msgstr "Вредновање и укупно"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Стопа вредновања за ставке обезбеђене од стране купца је постављена на нулу."
@@ -58883,7 +58995,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Стопа вредновања за ставку према излазној фактури (само за унутрашње трансфере)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Накнаде са врстом вредновања не могу бити означене као укључене у цену"
@@ -58895,7 +59007,7 @@ msgstr "Накнаде са врстом вредовања не могу бит
msgid "Value (G - D)"
msgstr "Вредност (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Вредност ({0})"
@@ -59014,12 +59126,12 @@ msgid "Variance ({})"
msgstr "Одступање ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Варијанта"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Грешка атрибута варијанте"
@@ -59038,7 +59150,7 @@ msgstr "Варијанта саставнице"
msgid "Variant Based On"
msgstr "Варијанта заснована на"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Варијанта заснована на се не може променити"
@@ -59056,7 +59168,7 @@ msgstr "Поље варијанте"
msgid "Variant Item"
msgstr "Ставка варијанте"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Ставке варијанте"
@@ -59067,7 +59179,7 @@ msgstr "Ставке варијанте"
msgid "Variant Of"
msgstr "Варијанта од"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Креирање варијанте је стављено у ред чекања."
@@ -59361,7 +59473,7 @@ msgstr "Документ"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Документ #"
@@ -59433,7 +59545,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59507,7 +59619,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59534,7 +59646,7 @@ msgstr "Подврста документа"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59714,8 +59826,8 @@ msgstr "Складиште је обавезно за добијање прои
msgid "Warehouse not found against the account {0}"
msgstr "Складиште није пронађено за рачун {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Складиште је обавезно за ставку залиха {0}"
@@ -59740,7 +59852,7 @@ msgstr "Складиште {0} не припада компанији {1}"
msgid "Warehouse {0} does not exist"
msgstr "Складиште {0} не постоји"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Складиште {0} није дозвољено за продајну поруџбину {1}, требало би да буде {2}"
@@ -59877,11 +59989,11 @@ msgstr "Упозорење: Још један {0} # {1} постоји у одн
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Упозорење: Затражени материјал је мањи од минималне количине за поруџбину"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Упозорење: Количина премашује максималну количину која се може произвести на основу количине примљених сировина кроз налог за пријем из подуговарања {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Упозорење: Продајна поруџбина {0} већ постоји за набавну поруџбину {1}"
@@ -59971,7 +60083,7 @@ msgstr "Таласна дужина у километрима"
msgid "Wavelength In Megametres"
msgstr "Таласна дужина у мегаметрима"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Видимо да је {0} направљен према {1}. Уколико желите да се неизмирени износ са {1} ажурира, уклоните ознаку са опције '{2}'."
@@ -60040,7 +60152,7 @@ msgstr "Веб-сајт:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Недеља {0} {1}"
@@ -60170,7 +60282,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Када креирате ставку, унос вредности за ово поље аутоматски ће креирати цену ставке као позадински задатак."
@@ -60180,7 +60292,7 @@ msgstr "Када креирате ставку, унос вредности за
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Када у уносу залиха за препаковање постоји више готових производа ({0}), основна цена за све готове производе мора бити постављена ручно. Да бисте ручно поставили цену, омогућите опцију 'Постави основну цену ручно' у одговарајуће реду готовог производа."
@@ -60190,11 +60302,11 @@ msgstr "Када у уносу залиха за препаковање пост
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Приликом креирања рачуна за зависну компанију {0}, пронађен је матични рачун {1} као рачун главне књиге."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Приликом креирања рачуна за зависну компанију {0}, матични рачун {1} није пронађен. Молимо Вас да креирате матични рачун у одговарајућем контном оквиру"
@@ -60339,7 +60451,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Недовршена производња"
@@ -60376,7 +60488,7 @@ msgstr "Недовршена производња"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60410,7 +60522,7 @@ msgstr "Утрошени материјали радног налога"
msgid "Work Order Item"
msgstr "Ставка радног налога"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "Неусклађеност радног налога"
@@ -60451,19 +60563,23 @@ msgstr "Резиме радног налога"
msgid "Work Order Summary Report"
msgstr "Извештај резимеа радних налога"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Радни налог не може бити креиран из следећег разлога: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Радни налог се не може креирати из ставке шаблона"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Радни налог је {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Радни налог није креиран"
@@ -60472,16 +60588,16 @@ msgstr "Радни налог није креиран"
msgid "Work Order {0} created"
msgstr "Радни налог {0} је креиран"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "Радни налог {0} нема произведену количину"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Радни налог: {0} радна картица није пронађена за операцију {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Радни налози"
@@ -60506,7 +60622,7 @@ msgstr "Недовршена производња"
msgid "Work-in-Progress Warehouse"
msgstr "Складиште за радове у току"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Складиште за радове у току је обавезно пре него што поднесете"
@@ -60554,7 +60670,7 @@ msgstr "Радни сати"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60645,14 +60761,14 @@ msgstr "Радне станице"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Отпис"
@@ -60757,7 +60873,7 @@ msgstr "Амортизована вредност"
msgid "Wrong Company"
msgstr "Погрешна компанија"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Погрешна лозинка"
@@ -60813,11 +60929,11 @@ msgstr "Датум почетка или датум завршетка годи
msgid "You are importing data for the code list:"
msgstr "Увозите податке за листу шифара:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Нисте овлашћени да ажурирате према условима постављеним у радном току {}."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Нисте овлашћени да додајете или ажурирате уносе пре {0}"
@@ -60825,7 +60941,7 @@ msgstr "Нисте овлашћени да додајете или ажурир
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Нисте овлашћени да обављате/мењате трансакције залиха за ставку {0} у складишту {1} пре овог времена."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Нисте овлашћени да поставите закључану вредност"
@@ -60853,7 +60969,7 @@ msgstr "Такође можете поставити подразумевани
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Можете променити матични рачун у рачун биланса стања или изабрати други рачун."
@@ -60894,11 +61010,11 @@ msgstr "Можете то поставити као назив машине ил
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Можете користити {0} за усклађивање са {1} касније."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Не можете извршити никакве измене на радној картици јер је радни налог затворен."
@@ -60922,7 +61038,7 @@ msgstr "Не можете креирати {0} унутар затвореног
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Не можете креирати или отказати никакве рачуноводствене уносе у затвореном рачуноводственом периоду {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Не можете креирати/изменити рачуноводствене уносе до овог датума."
@@ -60983,7 +61099,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Немате дозволу да {} ставке у {}."
@@ -60995,19 +61111,19 @@ msgstr "Немате довољно поена лојалности да бис
msgid "You don't have enough points to redeem."
msgstr "Немате довољно поена да бисте их искористили."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "Немате дозволу да креирате адресу компаније. Молимо Вас да се обратите систем менаџеру."
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr "Немате дозволу да ажурирате податке о компанији. Молимо Вас да се обратите систем менаџеру."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr "Немате дозволу да ажурирате овај документ. Молимо Вас да се обратите систем менаџеру."
@@ -61019,7 +61135,7 @@ msgstr "Имали сте {} грешака приликом креирања п
msgid "You have already selected items from {0} {1}"
msgstr "Већ сте изабрали ставке из {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Позвани сте да сарађујете на пројекту: {0}."
@@ -61043,7 +61159,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Морате омогућити аутоматско поновно наручивање у подешавањима залиха да бисте одржали нивое поновног наручивања."
@@ -61059,7 +61175,7 @@ msgstr "Морате да изаберете купца пре него што
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Морате отказати унос затварања малопродаје {} да бисте могли да откажете овај документ."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Изабрали сте групу рачуна {1} као {2} рачун у реду {0}. Молимо Вас да изаберете један рачун."
@@ -61106,11 +61222,11 @@ msgstr "Поштански број"
msgid "Zero Balance"
msgstr "Нулто стање"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Нулта стопа"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Нулта количина"
@@ -61132,11 +61248,11 @@ msgstr "ZIP фајл"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Important] [ERPNext] Грешке аутоматског поновног наручивања"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Дозволи негативне цене за артикле`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "после"
@@ -61177,7 +61293,7 @@ msgid "cannot be greater than 100"
msgstr "не може бити веће од 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "датирано {0}"
@@ -61326,7 +61442,7 @@ msgstr "апликација за плаћање није инсталирана
msgid "per hour"
msgstr "по часу"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "обављајући било коју од доле наведених:"
@@ -61359,7 +61475,7 @@ msgstr "примљено од"
msgid "reconciled"
msgstr "усклађено"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "враћено"
@@ -61394,7 +61510,7 @@ msgstr "десна позиција"
msgid "sandbox"
msgstr "сандбоx"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "продато"
@@ -61402,8 +61518,8 @@ msgstr "продато"
msgid "subscription is already cancelled."
msgstr "претплата је већ отказана."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61421,7 +61537,7 @@ msgstr "наслов"
msgid "to"
msgstr "ка"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "да бисте расподелили износ ове рекламационе фактуре пре њеног отказивања."
@@ -61448,7 +61564,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "јединствено, нпр. SAVE20 Користи за за остваривање попуста"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61470,7 +61586,7 @@ msgstr "путем алата за ажурирање саставнице"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "морате изабрати рачун недовршених капиталних радова у табели рачуна"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' је онемогућен"
@@ -61478,7 +61594,7 @@ msgstr "{0} '{1}' је онемогућен"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' није у фискалној години {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) не може бити већи од планиране количине ({2}) у радном налогу {3}"
@@ -61486,7 +61602,7 @@ msgstr "{0} ({1}) не може бити већи од планиране кол
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} има поднету имовину. Уклоните ставку {2} из табеле да бисте наставили."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} рачун није пронађен за купца {1}."
@@ -61519,11 +61635,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} број {1} већ коришћен у {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "Оперативни трошак {0} за операцију {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} операције: {1}"
@@ -61531,7 +61647,7 @@ msgstr "{0} операције: {1}"
msgid "{0} Request for {1}"
msgstr "{0} захтев за {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} задржавање узорка се заснива на шаржи, молимо Вас да проверите да ли ставка има број шарже како бисте задржали узорак"
@@ -61619,11 +61735,11 @@ msgstr "{0} креирано"
msgid "{0} creation for the following records will be skipped."
msgstr "Креирање {0} за следеће записе ће бити прескочено."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} валута мора бити иста као подразумевана валута компаније. Молимо Вас да изаберете други рачун."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} тренутно има {1} као оцену у Таблици оцењивања добављача, набавну поруџбину ка овом добављачу треба издавати са опрезом."
@@ -61635,7 +61751,7 @@ msgstr "{0} тренутно има {1} као оцену у Таблици оц
msgid "{0} does not belong to Company {1}"
msgstr "{0} не припада компанији {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} не припада компанији {1}."
@@ -61644,7 +61760,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} унет два пута у ставке пореза"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} унет два пута {1} у ставке пореза"
@@ -61669,7 +61785,7 @@ msgstr "{0} је успешно поднет"
msgid "{0} hours"
msgstr "{0} часова"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} у реду {1}"
@@ -61691,7 +61807,7 @@ msgstr "{0} је додат више пута у редовима: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} је већ покренут за {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} је блокиран, самим тим ова трансакција не може бити настављена"
@@ -61699,12 +61815,12 @@ msgstr "{0} је блокиран, самим тим ова трансакциј
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} је у нацрту. Поднесите га пре креирања имовине."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} је обавезно за ставку {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} је обавезно за рачун {1}"
@@ -61712,7 +61828,7 @@ msgstr "{0} је обавезно за рачун {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} је обавезно. Можда запис о конверзији валуте није креиран за {1} у {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} је обавезно. Можда запис о конверзији валуте није креиран за {1} у {2}."
@@ -61720,7 +61836,7 @@ msgstr "{0} је обавезно. Можда запис о конверзији
msgid "{0} is not a CSV file."
msgstr "{0} није CSV фајл."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} није текући рачун компаније"
@@ -61728,7 +61844,7 @@ msgstr "{0} није текући рачун компаније"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} није чвор групе. Молимо Вас да изаберете чвор групе као матични трошковни центар"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} није ставка на залихама"
@@ -61768,27 +61884,27 @@ msgstr "{0} је на чекању до {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} је отворен. Затворите малопродају или откажите постојећи унос почетног стања малопродаје да бисте креирали нови унос почетног стања малопродаје."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} ставки демонтирано"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} ставки у обради"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} ставки је изгубљено током процеса."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} ставки произведено"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} ставки враћено"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} ставки за враћање"
@@ -61796,7 +61912,7 @@ msgstr "{0} ставки за враћање"
msgid "{0} must be negative in return document"
msgstr "{0} мора бити негативан у повратном документу"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} није дозвољена трансакција са {1}. Молимо Вас да промените компанију или да додате компанију у одељак 'Дозвољене трансакције са' у запису купца."
@@ -61812,7 +61928,7 @@ msgstr "Параметар {0} је неважећи"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "Уноси плаћања {0} не могу се филтрирати према {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "Количина {0} за ставку {1} се прима у складиште {2} са капацитетом {3}."
@@ -61825,7 +61941,7 @@ msgstr "{0} до {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} јединица је резервисано за ставку {1} у складишту {2}, молимо Вас да поништите резервисање у {3} да ускладите залихе."
@@ -61841,16 +61957,16 @@ msgstr "{0} јединица ставке {1} није доступно ни у
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} јединица од {1} је неопходно у {2} са димензијом инвентара: {3} на {4} {5} за {6} да би се трансакција завршила."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} јединица {1} је потребно у {2} на {3} {4} за {5} како би се ова трансакција завршила."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} јединица {1} је потребно у {2} на {3} {4} како би се ова трансакција завршила."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} јединица {1} је потребно у {2} како би се ова трансакција завршила."
@@ -61862,7 +61978,7 @@ msgstr "{0} до {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} важећих серијских бројева за ставку {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} варијанти је креирано."
@@ -61878,7 +61994,7 @@ msgstr "{0} ће бити дато као попуст."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} ће бити подешено као {1} при накнадном скенирању ставки"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61916,8 +62032,8 @@ msgstr "{0} {1} је већ у потпуности плаћено."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} је већ делимично плаћено. Молимо Вас да користите 'Преузми неизмирене фактуре' или 'Преузми неизмирене поруџбине' како бисте добили најновије неизмирене износе."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} је измењено. Молимо Вас да освежите страницу."
@@ -62027,7 +62143,7 @@ msgstr "{0} {1}: рачун {2} је неактиван"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: рачуноводствени унос {2} може бити направљен само у валути: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: трошковни центар је обавезан за ставку {2}"
@@ -62076,8 +62192,8 @@ msgstr "{0}% од укупне вредности фактуре биће одо
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{1} за {0} не може бити након очекиваног датума завршетка за {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, завршите операцију {1} пре операције {2}."
@@ -62097,11 +62213,11 @@ msgstr "{0}: Заштићени DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Виртуелни DocType (нема табелу у бази података)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} не припада компанији: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} не постоји"
@@ -62109,11 +62225,11 @@ msgstr "{0}: {1} не постоји"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} не постоји"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} је групни рачун."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} мора бити мање од {2}"
@@ -62125,7 +62241,7 @@ msgstr "{count} имовине креиране за {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} је отказано или затворено."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "Величина узорка за {item_name} ({sample_size}) не може бити већа од прихваћене количине ({accepted_quantity})"
@@ -62137,7 +62253,7 @@ msgstr "{ref_doctype} {ref_name} је {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} не може бити отказано јер су зарађени поени лојалности искоришћени. Прво откажите {} број {}"
diff --git a/erpnext/locale/sr_CS.po b/erpnext/locale/sr_CS.po
index 96cbe74b070..956d8f37a6d 100644
--- a/erpnext/locale/sr_CS.po
+++ b/erpnext/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:22\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:15\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Podsklop"
msgid " Summary"
msgstr " Rezime"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Stavka obezbeđena od strane kupca\" ne može biti i stavka za nabavku"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Stavka obezbeđena od strane kupca\" ne može imati stopu vrednovanja"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Da li je osnovno sredstvo\" mora biti označeno, jer postoji zapis o imovini za ovu stavku"
@@ -273,11 +273,11 @@ msgstr "% isporučenog materijala prema ovoj listi za odabir"
msgid "% of materials delivered against this Sales Order"
msgstr "% od materijala isporučenim prema ovoj prodajnoj porudžbini"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Račun' u odeljku za računovodstvo kupca {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Dozvoli više prodajnih porudžbina vezanih za nabavnu porudžbinu kupca'"
@@ -289,7 +289,7 @@ msgstr "'Na osnovu' i 'Grupisano po' ne mogu biti isti"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Dani od poslednje narudžbine' moraju biti veći ili jednaki nuli"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Podrazumevani {0} račun' u kompaniji {1}"
@@ -307,7 +307,7 @@ msgstr "'Datum početka' je obavezan"
msgid "'From Date' must be after 'To Date'"
msgstr "'Datum početka' mora biti manji od 'Datum završetka'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Ima serijski broj' ne može biti 'Da' za stavke van zaliha"
@@ -319,9 +319,9 @@ msgstr "'Inspekcija je potrebna pre isporuke' je onemogućena za stavku {0}, nij
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Inspekcija je potrebna pre nabavke' je onemogućena za stavku {0}, nije potrebno kreirati inspekciju kvaliteta"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Početno'"
@@ -351,8 +351,8 @@ msgstr "'{0}' račun je već korišćen od strane {1}. Koristi drugi račun."
msgid "'{0}' has been already added."
msgstr "'{0}' je već dodat."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' treba da bude u valuti kompanije {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90 - 120 dana"
msgid "90 Above"
msgstr "Iznad 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -808,7 +808,7 @@ msgstr "Podešavanj
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Datum kliringa mora biti nakon datuma čeka za red(ove): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Stavka {0} u redu {1} je fakturisana više od {2} "
@@ -825,7 +825,7 @@ msgstr "Dokument o plaćanju je obavezan za red(ove): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Nije moguće izvršiti prekomerno fakturisanje za sledeće stavke:
"
@@ -888,7 +888,7 @@ msgstr "Datum knjiženja {0} ne može biti pre datuma nabavne porudžbine za
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 "Cena iz cenovnika nije podešena kao izmenjiva u podešavanju prodaje. U ovom slučaju, podešavanje opcije Ažuriraj cenovnik na osnovu na Osnovna cena u cenovniku će onemogućiti automatsko ažuriranje cene stavke
Da li ste sigurni da želite da nastavite?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Da biste dozvolili prekomerno fakturisanje, podesite dozvoljeni iznos u podešavanjima računa.
"
@@ -976,11 +976,11 @@ msgstr "Vaše prečice\n"
msgid "Your Shortcuts "
msgstr "Vaše prečice "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Ukupan iznos: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Neizmireni iznos: {0}"
@@ -1050,7 +1050,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Grupa kupaca sa istim nazivom već postoji, molimo Vas da promenite ime kupca ili preimenujete grupu kupaca"
@@ -1214,11 +1214,11 @@ msgstr "Skraćeno"
msgid "Abbreviation"
msgstr "Skraćenica"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Skraćenica je već u upotrebi za drugu kompaniju"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Skraćenica je obavezna"
@@ -1226,7 +1226,7 @@ msgstr "Skraćenica je obavezna"
msgid "Abbreviation: {0} must appear only once"
msgstr "Skraćenica: {0} se mora pojaviti samo jednom"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Iznad"
@@ -1280,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Prihvaćena količina u jedinici mere zaliha"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Prihvaćena količina"
@@ -1316,7 +1316,7 @@ msgstr "Ključ za pristup je obavezan za pružaoca usluga: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "U skladu sa CEFACT/ICG/2010/IC013 ili CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "U skladu sa sastavnicom {0}, stavka '{1}' nedostaje u unosu zaliha."
@@ -1434,8 +1434,8 @@ msgstr "Analitički račun"
msgid "Account Manager"
msgstr "Account Manager"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Račun nedostaje"
@@ -1453,7 +1453,7 @@ msgstr "Račun nedostaje"
msgid "Account Name"
msgstr "Naziv računa"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Račun nije pronađen"
@@ -1466,7 +1466,7 @@ msgstr "Račun nije pronađen"
msgid "Account Number"
msgstr "Broj računa"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Račun broj {0} se već koristi kao račun {1}"
@@ -1505,7 +1505,7 @@ msgstr "Podvrsta računa"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1521,11 +1521,11 @@ msgstr "Vrsta računa"
msgid "Account Value"
msgstr "Vrednost po računu"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Stanje računa je već na potražnoj strani, nije dozvoljeno postaviti 'Stanje mora biti' kao 'Duguje'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 računa je već na dugovnoj strani, nije dozvoljeno postaviti 'Stanje mora biti' kao 'Potražuje'"
@@ -1592,15 +1592,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Račun sa zavisnim podacima se ne može konvertovati u analitički račun"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Račun sa zavisnim podacima ne može biti postavljen kao analitički račun"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Račun sa postojećom transakcijom ne može biti konvertovan u grupu."
@@ -1608,8 +1608,8 @@ msgstr "Račun sa postojećom transakcijom ne može biti konvertovan u grupu."
msgid "Account with existing transaction can not be deleted"
msgstr "Račun sa postojećom transakcijom ne može biti obrisan"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Račun sa postojećom transakcijom ne može biti konvertovan u glavnu knjigu"
@@ -1617,11 +1617,11 @@ msgstr "Račun sa postojećom transakcijom ne može biti konvertovan u glavnu kn
msgid "Account {0} added multiple times"
msgstr "Račun {0} je dodat više puta"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Račun {0} ne može biti konvertovan u grupu jer je već postavljen kao {1} za {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Račun {0} ne može biti onemogućen jer je već postavljen kao {1} za {2}."
@@ -1629,11 +1629,11 @@ 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 kompaniji {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Račun {0} ne pripada kompaniji: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Račun {0} ne postoji"
@@ -1649,15 +1649,15 @@ msgstr "Račun {0} se ne poklapa sa kompanijom {1} kao vrsta računa: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Račun {0} ne pripada kompaniji {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Račun {0} postoji u matičnoj kompaniji {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Račun {0} je dodat u zavisnu kompaniju {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Račun {0} je onemogućen."
@@ -1665,7 +1665,7 @@ msgstr "Račun {0} je onemogućen."
msgid "Account {0} is frozen"
msgstr "Račun {0} je zaključan"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Račun {0} je nevažeći. Valuta računa mora biti {1}"
@@ -1673,19 +1673,19 @@ msgstr "Račun {0} je nevažeći. Valuta računa mora biti {1}"
msgid "Account {0} should be of type Expense"
msgstr "Račun {0} treba da bude vrste trošak"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Račun {0}: Matični račun {1} ne može biti već definisani račun"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Račun {0}: Matični račun {1} ne pripada kompaniji: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Račun {0}: Matični račun {1} ne postoji"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Račun {0}: Ne može se samopostaviti kao matični račun"
@@ -1701,7 +1701,7 @@ msgstr "Račun: {0} može biti ažuriran samo putem transakcija zaliha"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Račun: {0} nije dozvoljen u okviru unosa uplate"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Račun: {0} sa valutom: {1} ne može biti izabran"
@@ -1986,8 +1986,8 @@ msgstr "Računovodstveni unosi"
msgid "Accounting Entry for Asset"
msgstr "Računovodstveni unos za imovinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Računovodstveni unos za dokument troškova nabavke u unosu zaliha {0}"
@@ -2011,8 +2011,8 @@ msgstr "Računovodstveni unos za uslugu"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Računovodstveni unos za zalihe"
@@ -2021,7 +2021,7 @@ msgstr "Računovodstveni unos za zalihe"
msgid "Accounting Entry for {0}"
msgstr "Računovodstveni unos za {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Računovodstveni unos za {0}: {1} može biti samo u valuti: {2}"
@@ -2076,7 +2076,6 @@ msgstr "Računovodstveni unosi su zaključani do ovog datuma. Samo korisnici sa
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2089,14 +2088,13 @@ msgstr "Računovodstveni unosi su zaključani do ovog datuma. Samo korisnici sa
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Računi"
@@ -2126,8 +2124,8 @@ msgstr "Računi nedostaju u izveštaju"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2227,15 +2225,15 @@ msgstr "Tabela računa ne može biti prazna."
msgid "Accounts to Merge"
msgstr "Računi za spajanje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Obračunati troškovi"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Akumulirana amortizacija"
@@ -2400,7 +2398,7 @@ msgstr "Izvršene radnje"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "Aktiviraj broj serije / šarže za stavku"
@@ -2524,7 +2522,7 @@ msgstr "Stvarni datum završetka"
msgid "Actual End Date (via Timesheet)"
msgstr "Stvarni datum završetka (preko evidencije vremena)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Stvarni datum završetka ne može biti pre stvarnog datuma početka"
@@ -2646,7 +2644,7 @@ msgstr "Stvarno vreme u satima (preko evidencije vremena)"
msgid "Actual qty in stock"
msgstr "Stvarna količina na skladištu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Stvarna vrsta poreza ne može biti uključena u cenu stavke u redu {0}"
@@ -2655,7 +2653,7 @@ msgstr "Stvarna vrsta poreza ne može biti uključena u cenu stavke u redu {0}"
msgid "Ad-hoc Qty"
msgstr "Neplanirana količina"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Dodaj / Izmeni cene"
@@ -3154,7 +3152,7 @@ msgstr "Dodatne informacije"
msgid "Additional Information updated successfully."
msgstr "Dodatne informacije su uspešno ažurirane."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Dodatni prenos materijala"
@@ -3177,7 +3175,7 @@ msgstr "Dodatni operativni troškovi"
msgid "Additional Transferred Qty"
msgstr "Dodatno preneta količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3189,11 +3187,6 @@ msgstr "Dodatno preneta količina {0}\n"
"\t\t\t\t\tpolja 'Prenesi dodatne sirovine u skladište nedovršene\n"
"\t\t\t\t\tproizvodnje' u podešavanjima proizvodnje."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Dodatne informacije o kupcu."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Dodatno je potrebno {0} {1} stavke {2} prema sastavnici da bi se ova transakcija dovršila"
@@ -3339,11 +3332,6 @@ msgstr "Adresa treba da bude povezana sa kompanijom. Molimo Vas da dodate red za
msgid "Address used to determine Tax Category in transactions"
msgstr "Adresa se koristi za određivanje poreske kategorije u transakcijama"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Koriguj količinu"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Prilagođavanje prema"
@@ -3356,8 +3344,8 @@ msgstr "Prilagođavanje na osnovu cene iz ulazne fakture"
msgid "Administrative Assistant"
msgstr "Administrativni asistent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administrativni troškovi"
@@ -3425,7 +3413,7 @@ msgstr "Status avansne uplate"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Avansne uplate"
@@ -3545,7 +3533,7 @@ msgstr "Protiv računa"
msgid "Against Blanket Order"
msgstr "Protiv okvirnog naloga"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Protiv narudžbine kupca {0}"
@@ -3687,11 +3675,11 @@ msgstr "Starost"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Starost (dani)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Starost ({0})"
@@ -3841,21 +3829,21 @@ msgstr "Sve grupe kupaca"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Sva odeljenja"
@@ -3935,7 +3923,7 @@ msgstr "Sve grupe dobavljača"
msgid "All Territories"
msgstr "Sve teritorije"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Sva skladišta"
@@ -3949,6 +3937,11 @@ msgstr "Sve alokacije su uspešno usklađene"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Sve komunikacije uključujući i one iznad biće premeštene kao novi problem"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Sve stavke su već zahtevane"
@@ -3957,23 +3950,23 @@ msgstr "Sve stavke su već zahtevane"
msgid "All items have already been Invoiced/Returned"
msgstr "Sve stavke su već fakturisane/vraćene"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Sve stavke su već primljene"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Sve stavke su već prebačene za ovaj radni nalog."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Sve stavke u ovom dokumentu već imaju povezanu inspekciju kvaliteta."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Sve stavke moraju biti povezane sa prodajnom porudžbinom ili nalogom za prijem iz podugovaranja za ovu izlaznu fakturu."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Sve povezane prodajne porudžbine moraju biti podugovorene."
@@ -3987,11 +3980,11 @@ msgstr "Svi komentari i imejlovi biće kopirani iz jednog dokumenta u drugi novo
msgid "All the items have been already returned."
msgstr "Sve stavke su već vraćene."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Sve potrebne stavke (sirovine) biće preuzete iz sastavnice i popunjene u ovoj tabeli. Ovde možete takođe promeniti izvorno skladište za bilo koju stavku. Tokom proizvodnje, možete pratiti prenesene sirovine iz ove tabele."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Sve ove stavke su već fakturisane/vraćene"
@@ -4010,7 +4003,7 @@ msgstr "Raspodeli"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Automatski raspodeli avanse (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Raspodeli iznose plaćanja"
@@ -4020,7 +4013,7 @@ msgstr "Raspodeli iznose plaćanja"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Raspodeli plaćanje na osnovu uslova plaćanja"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Raspodeli zahtev za naplatu"
@@ -4050,7 +4043,7 @@ msgstr "Raspoređeno"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4107,7 +4100,7 @@ msgstr "Alocirana količina"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4171,7 +4164,7 @@ msgstr "Dozvoli u povraćajima"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Dozvoli interne transfere po tržišnim cenama"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Dozvoli dodeljivanje stavki više puta u transakciji"
@@ -4294,16 +4287,6 @@ msgstr "Dozvoli ponovno postavljanje sporazuma o nivou usluge iz podešavanja po
msgid "Allow Sales"
msgstr "Dozvoli prodaju"
-#. 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 "Dozvoli kreiranje izlazne fakture bez otpremnice"
-
-#. 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 "Dozvoli kreiranje izlazne fakture bez prodajne porudžbine"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4429,6 +4412,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4505,10 +4498,8 @@ msgstr "Dozvoljene stavke"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Dozvoljene transakcije sa"
@@ -4520,6 +4511,11 @@ msgstr "Dozvoljene primarne uloge su 'Kupac' i 'Dobavljač'. Molimo Vas da izabe
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4561,8 +4557,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Takođe, ne možete se vratiti na FIFO nakon što ste podesili metod vrednovanja na prosečnu vrednost za ovu stavku."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4803,7 +4799,7 @@ msgstr "Uvek pitaj"
msgid "Amount"
msgstr "Iznos"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Iznos (AED)"
@@ -4937,12 +4933,12 @@ msgid "Amount to Bill"
msgstr "Iznos za fakturisanje"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Iznos {0} {1} prema {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Iznos {0} {1} odbijen od {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4987,11 +4983,11 @@ msgstr "Iznos"
msgid "An Item Group is a way to classify items based on types."
msgstr "Grupa stavki je način za klasifikaciju stavki na osnovu vrste."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Dogodila se greška prilikom ponovne obrade vrednovanja stavki putem {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Dogodila se greška tokom procesa ažuriranja"
@@ -5531,7 +5527,7 @@ msgstr "Pošto je polje {0} omogućeno, polje {1} je obavezno."
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, vrednost polja {1} treba da bude veća od 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Pošto već postoje podnete transakcije za stavku {0}, ne možete promeniti vrednost za {1}."
@@ -5543,7 +5539,7 @@ msgstr "Pošto postoje rezervisane zalihe, ne možete onemogućiti {0}."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Pošto postoji dovoljno stavki podsklopova, radni nalog nije potreban za skladište {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Pošto postoji dovoljno sirovina, zahtev za nabavku nije potreban za skladište {0}."
@@ -5681,7 +5677,7 @@ msgstr "Račun kategorije imovine"
msgid "Asset Category Name"
msgstr "Naziv kategorije imovine"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Kategorija imovine je obavezna za osnovno sredstvo"
@@ -5858,8 +5854,8 @@ msgstr "Količina imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5959,7 +5955,7 @@ msgstr "Imovina otkazana"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Imovina ne može biti otkazana, jer je već {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Imovina ne može biti otpisana pre poslednjeg unosa amortizacije."
@@ -5991,7 +5987,7 @@ msgstr "Imovina je van funkcije zbog popravke imovine {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Imovina primljena na lokaciji {0} i data zaposlenom licu {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Imovina vraćena u prethodno stanje"
@@ -5999,20 +5995,20 @@ msgstr "Imovina vraćena u prethodno stanje"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Imovina je vraćena u prethodno stanje nakon što je kapitalizacija imovine {0} otkazana"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Imovina vraćena"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Otpisana imovina"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Imovina je otpisana putem naloga knjiženja {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Imovina prodata"
@@ -6032,7 +6028,7 @@ msgstr "Imovina ažurirana nakon što je podeljeno na imovinu {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Imovina je ažurirana zbog popravke imovine {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Imovina {0} ne može biti otpisana, jer je već {1}"
@@ -6073,7 +6069,7 @@ msgstr "Imovina {0} nije podešena za obračun amortizacije."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Imovina {0} nije podneta. Molimo Vas da podnesete imovinu pre nastavka."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Imovina {0} mora biti podneta"
@@ -6123,7 +6119,7 @@ msgstr "Imovina nije kreirana za {item_code}. Moraćete da kreirate imovinu ruč
msgid "Assets {assets_link} created for {item_code}"
msgstr "Imovina {assets_link} je kreirana za {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Dodeli posao zaposlenom licu"
@@ -6184,7 +6180,7 @@ msgstr "Mora biti izabran barem jedan od relevantnih modula"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Mora biti izabran barem jedan od prodaje ili nabavke"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Najmanje jedna sirovina mora biti prisutna u unosu zaliha za vrstu {0}"
@@ -6192,21 +6188,17 @@ msgstr "Najmanje jedna sirovina mora biti prisutna u unosu zaliha za vrstu {0}"
msgid "At least one row is required for a financial report template"
msgstr "Potreban je najmanje jedan red u šablonu finansijskog izveštaja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Mora biti odabrano barem jedno skladište"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "U redu #{0}: Račun razlike ne sme biti vrste računa za zalihe, molimo Vas da izmenite vrstu računa za račun {1} ili da izaberete drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "U redu #{0}: Identifikator sekvence {1} ne može biti manji od identifikatora sekvence prethodnog reda {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "U redu #{0}: Izabrali ste račun razlike {1}, koji je vrste računa trošak prodate robe. Molimo Vas da izaberete drugi račun"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6288,11 +6280,11 @@ msgstr "Naziv atributa"
msgid "Attribute Value"
msgstr "Vrednost atributa"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Tabela atributa je obavezna"
@@ -6300,19 +6292,19 @@ msgstr "Tabela atributa je obavezna"
msgid "Attribute value: {0} must appear only once"
msgstr "Vrednost atributa: {0} mora se pojaviti samo jednom"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Atribut {0} je više puta izabran u tabeli atributa"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Atributi"
@@ -6524,7 +6516,7 @@ msgstr "Automatska povezivanje i postavljanje stranke u bankarskim transakcijama
msgid "Auto re-order"
msgstr "Automatsko ponovno naručivanje"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Dokument automatskog ponavljanja je ažuriran"
@@ -6636,7 +6628,7 @@ msgstr "Datum dostupnosti za upotrebu"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Dostupna količina"
@@ -6725,10 +6717,6 @@ msgstr "Datum dostupnosti za upotrebu"
msgid "Available for use date is required"
msgstr "Potreban je datum dostupnosti za upotrebu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Dostupna količina je {0}, potrebno vam je {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Dostupno {0}"
@@ -6737,8 +6725,8 @@ msgstr "Dostupno {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Datum dostupnosti za upotrebu treba da bude posle datuma nabavke"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Prosečna starost"
@@ -6762,7 +6750,9 @@ msgstr "Prosečna vrednost porudžbine"
msgid "Average Order Values"
msgstr "Prosečna vrednost porudžbina"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Prosečna cena"
@@ -6786,7 +6776,7 @@ msgid "Avg Rate"
msgstr "Prosečna cena"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Prosečna cena (stanje zaliha)"
@@ -6844,7 +6834,7 @@ msgstr "Količina u zapisu o stanju stavki"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6867,7 +6857,7 @@ msgstr "Sastavnica"
msgid "BOM 1"
msgstr "Sastavnica 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Sastavnica 1 {0} i sastavnica 2 {1} ne bi trebale da budu iste"
@@ -6939,11 +6929,6 @@ msgstr "Stavka detaljnog prikaza sastavnice"
msgid "BOM ID"
msgstr "ID sastavnice"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Informacije o sastavnici"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7097,7 +7082,7 @@ msgstr "Stavka sastavnice na veb-sajtu"
msgid "BOM Website Operation"
msgstr "Operacija sastavnice na veb-sajtu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Sastavnica i količina gotovog proizvoda su obavezni za rastavljanje"
@@ -7165,7 +7150,7 @@ msgstr "Unos zaliha sa ranijim datumom"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Backflush materijala iz skladišta nedovršene proizvodnje"
@@ -7229,7 +7214,7 @@ msgstr "Stanje u osnovnoj valuti"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Stanje količine"
@@ -7294,7 +7279,7 @@ msgstr "Vrsta salda"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Vrednost stanja"
@@ -7450,8 +7435,8 @@ msgid "Bank Balance"
msgstr "Stanje na bankarskom računu"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bankarske naknade"
@@ -7566,8 +7551,8 @@ msgstr "Vrsta bankarske garancije"
msgid "Bank Name"
msgstr "Naziv banke"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Račun za prekoračenje"
@@ -7740,11 +7725,11 @@ msgstr "Bankarstvo"
msgid "Barcode Type"
msgstr "Vrsta bar-koda"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Bar-kod {0} se već koristi u stavci {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Bar-kod {0} nije validan {1} kod"
@@ -7901,7 +7886,7 @@ msgstr "Osnovna cena (prema jedinici mere zaliha)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7976,7 +7961,7 @@ msgstr "Status isteka stavke šarže"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8065,13 +8050,13 @@ msgstr "Količina šarže je ažurirana na {0}"
msgid "Batch Quantity"
msgstr "Količina šarže"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8088,7 +8073,7 @@ msgstr "Jedinica mere šarže"
msgid "Batch and Serial No"
msgstr "Broj serije i šarže"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Šarža nije kreirana za stavku {} jer nema seriju šarže."
@@ -8111,12 +8096,12 @@ msgstr "Šarža {0} i skladište"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Šarža {0} nije dostupna u skladištu {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Šarža {0} za stavku {1} je istekla."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Šarža {0} za stavku {1} je onemogućena."
@@ -8171,7 +8156,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8180,7 +8165,7 @@ msgstr "Datum računa"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8194,11 +8179,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Sastavnica"
@@ -8299,7 +8286,7 @@ msgstr "Detalji adrese"
msgid "Billing Address Name"
msgstr "Naziv adrese"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Adresa za fakturisanje ne pripada {0}"
@@ -8551,6 +8538,16 @@ msgstr "Blokirati fakturu"
msgid "Block Supplier"
msgstr "Blokirati dobavljača"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8647,7 +8644,7 @@ msgstr "Rezervisano"
msgid "Booked Fixed Asset"
msgstr "Upisano osnovno sredstvo"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Knjige su zatvorene do perioda koji se završava {0}"
@@ -8906,8 +8903,8 @@ msgstr "Izgraditi stablo"
msgid "Buildable Qty"
msgstr "Količina za izgradnju"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Zgrade"
@@ -9068,16 +9065,16 @@ msgstr "Podrazumevano, naziv dobavljača postavlja se prema unesenom nazivu doba
msgid "By-Product"
msgstr "Nusproizvod"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Preskoči proveru kreditnog limita pri prodajnoj porudžbini"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Preskoči proveru kredita pri prodajnoj porudžbini"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9125,8 +9122,8 @@ msgstr "CRM Beleška"
msgid "CRM Settings"
msgstr "CRM Podešavanje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Račun za građevinske radove u toku"
@@ -9381,7 +9378,7 @@ msgstr "Kampanja {0} nije pronađena"
msgid "Can be approved by {0}"
msgstr "Može biti odobren od {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Ne može se zatvoriti radni nalog. Pošto {0} radnih kartica ima status u obradi."
@@ -9414,13 +9411,13 @@ msgstr "Ne može se filtrirati prema broju dokumenta, ukoliko je grupisano po do
msgid "Can only make payment against unbilled {0}"
msgstr "Može se izvršiti plaćanje samo za neizmirene {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Možete se pozvati na red samo ako je vrsta naplate 'Na iznos prethodnog reda' ili 'Ukupan iznos prethodnog reda'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Ne možete promeniti metod vrednovanja, jer postoje transakcije za neke stavke koje nemaju sopstveni metod vrednovanja"
@@ -9462,7 +9459,7 @@ msgstr "Nije moguće dodeliti blagajnika"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Nije moguće izračunati vreme jer nedostaje adresa vozača."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Nije moguće promeniti podešavanje računa inventara"
@@ -9470,9 +9467,9 @@ msgstr "Nije moguće promeniti podešavanje računa inventara"
msgid "Cannot Create Return"
msgstr "Nije moguće kreirati povraćaj"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Nije moguće spojiti"
@@ -9500,7 +9497,7 @@ msgstr "Ne može se izmeniti {0} {1}, molimo Vas da umesto toga kreirate novi."
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Ne može se primeniti porez odbijen na izvoru protiv više stranaka u jednom unosu"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Ne može biti osnovno sredstvo jer je kreirana knjiga zaliha."
@@ -9520,7 +9517,7 @@ msgstr "Nije moguće otkazati unos rezervacije zaliha {0}, jer je korišćen u r
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Ne može se otkazati jer je obrada otkazanih dokumenata u toku."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Ne može se otkazati jer već postoji unos zaliha {0}"
@@ -9540,15 +9537,15 @@ msgstr "Nije moguće otkazati ovaj dokument jer je povezan sa podnetom korekcijo
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Ne može se otkazati ovaj dokument jer je povezan sa podnetom imovinom {asset_link}. Molimo Vas da je otkažete da biste nastavili."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Ne može se otkazati transakcija za završeni radni nalog."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Nije moguće menjanje atributa nakon transakcije sa zalihama. Kreirajte novu stavku i prenesite zalihe"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Ne može se promeniti vrsta referentnog dokumenta."
@@ -9556,11 +9553,11 @@ msgstr "Ne može se promeniti vrsta referentnog dokumenta."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Ne može se promeniti datum zaustavljanja usluge za stavku u redu {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Nije moguće promeniti svojstva varijante nakon transakcije za zalihama. Morate kreirati novu stavku da biste to uradili."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Ne može se promeniti podrazumevana valuta kompanije jer postoje transakcije. Transakcije moraju biti otkazane da bi se promenila podrazumevana valuta."
@@ -9576,11 +9573,11 @@ msgstr "Ne može se konvertovati troškovni centar u glavnu knjigu jer ima zavis
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Ne može se konvertovati zadatak tako da ne bude u grupi, jer postoje sledeći zavisni zadaci: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Ne može se konvertovati u grupu jer je izabrana vrsta računa."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Ne može se skloniti u grupu jer je izabrana vrsta računa."
@@ -9588,7 +9585,7 @@ msgstr "Ne može se skloniti u grupu jer je izabrana vrsta računa."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Ne mogu se kreirati unosi za rezervaciju zaliha za prijemnicu nabavke sa budućim datumom."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Ne može se kreirati lista za odabir za prodajnu porudžbinu {0} jer ima rezervisane zalihe. Poništite rezervisanje zaliha da biste kreirali listu."
@@ -9614,7 +9611,7 @@ msgstr "Ne može se proglasiti kao izgubljeno jer je izdata ponuda."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Ne može se odbiti kada je kategorija za 'Vrednovanje' ili 'Vrednovanje i ukupno'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Ne može se obrisati red prihoda/rashoda kursnih razlika"
@@ -9622,12 +9619,12 @@ msgstr "Ne može se obrisati red prihoda/rashoda kursnih razlika"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Ne može se obrisati broj serije {0}, jer se koristi u transakcijama sa zalihama"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Nije moguće obrisati stavku koja je već poručena"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Nije moguće obrisati zaštićeni osnovni DocType: {0}"
@@ -9639,7 +9636,7 @@ msgstr "Nije moguće obrisati virtuelni DocType: {0}. Virtuelni DocType-ovi nema
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "Nije moguće onemogućiti broj serije i šarže za stavku jer već postoje zapisi za seriju / šaržu."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Nije moguće onemogućiti stvarno praćenje inventara jer postoje unosi u knjigu zaliha za kompaniju {0}. Molimo Vas da najpre otkažete transakcije zaliha i pokušate ponovo."
@@ -9647,20 +9644,20 @@ msgstr "Nije moguće onemogućiti stvarno praćenje inventara jer postoje unosi
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "Nije moguće onemogućiti {0} jer to može dovesti do netačnog vrednovanja zaliha."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Nije moguće demontirati više od proizvedene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr "Nije moguće demontirati količinu {0} iz unosa zaliha {1}. Dostupno je samo {2} za demontažu."
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Nije moguće omogućiti račun inventara po stavkama jer postoje unosi u knjigu zaliha za kompaniju {0} koji koriste račun inventara po skladištima. Molimo Vas da najpre otkažete transakcije zaliha i pokušate ponovo."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Ne može se obezbediti isporuka po broju serije jer je stavka {0} dodata sa i bez obezbeđenja isporuke po broju serije."
@@ -9676,7 +9673,7 @@ msgstr "Nije moguće pronaći stavku ili skladište sa ovim bar-kodom"
msgid "Cannot find Item with this Barcode"
msgstr "Ne može se pronaći stavka sa ovim bar-kodom"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Ne može se pronaći podrazumevano skladište za stavku {0}. Molimo Vas da postavite jedan u master podacima stavke ili podešavanjima zaliha."
@@ -9684,15 +9681,15 @@ msgstr "Ne može se pronaći podrazumevano skladište za stavku {0}. Molimo Vas
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Nije moguće spojiti {0} '{1}' u '{2}' jer oba imaju postojeće računovodstvene unose u različitim valutama za kompaniju '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Nije moguće proizvesti više stavke {0} nego što je količina na prodajnoj porudžbini {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Ne može se proizvesti više stavki za {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Ne može se proizvesti više od {0} stavki za {1}"
@@ -9700,12 +9697,12 @@ msgstr "Ne može se proizvesti više od {0} stavki za {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Ne može se primiti od kupca protiv negativnih neizmirenih obaveza"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Nije moguće smanjiti količinu ispod poručene ili nabavljene količine"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Ne može se pozvati broj reda veći ili jednak trenutnom broju reda za ovu vrstu naplate"
@@ -9718,14 +9715,14 @@ msgstr "Nije moguće preuzeti token za ažuriranje. Proverite evidenciju grešak
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Nije moguće preuzeti token za povezivanje. Proverite evidenciju grešaka za više informacija"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Nije moguće izabrati vrstu grupe kao grupa kupaca. Molimo Vas da izaberete grupu kupaca kojа nije grupne vrste."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9739,7 +9736,7 @@ msgstr "Ne može se postaviti kao izgubljeno jer je napravljena prodajna porudž
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Ne može se postaviti autorizacija na osnovu popusta za {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Ne može se postaviti više podrazumevanih stavki za jednu kompaniju."
@@ -9747,11 +9744,11 @@ msgstr "Ne može se postaviti više podrazumevanih stavki za jednu kompaniju."
msgid "Cannot set multiple account rows for the same company"
msgstr "Nije moguće postaviti više redova računa za istu kompaniju"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Ne može se postaviti količina manja od isporučene količine."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Ne može se postaviti količina manja od primljene količine."
@@ -9763,7 +9760,7 @@ msgstr "Ne može se postaviti polje {0} za kopiranje u varijante"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Brisanje ne može da započne. Drugo brisanje {0} je već u redu čekanja ili je u toku. Molimo Vas da sačekate da se završi."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "Nije moguće ažurirati cenu jer je stavka {0} već poručena ili nabavljena po ovoj ponudi"
@@ -9796,7 +9793,7 @@ msgstr "Kapacitet (jedinica mere zaliha)"
msgid "Capacity Planning"
msgstr "Planiranje kapaciteta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Greška u planiranju kapaciteta, planirano početno vreme ne može biti isto kao i vreme završetka"
@@ -9815,13 +9812,13 @@ msgstr "Kapacitet u jedinici mera zalihe"
msgid "Capacity must be greater than 0"
msgstr "Kapacitet mora biti veći od 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Kapitalna oprema"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Kapitalne zalihe"
@@ -10038,7 +10035,7 @@ msgstr "Detalji kategorije"
msgid "Category-wise Asset Value"
msgstr "Vrednost imovine po kategorijama"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Pažnja"
@@ -10143,7 +10140,7 @@ msgstr "Promena datuma izdavanja"
msgid "Change in Stock Value"
msgstr "Promena vrednosti zaliha"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Promenite vrstu računa na Potraživanje ili izaberite drugi račun."
@@ -10153,7 +10150,7 @@ msgstr "Promenite vrstu računa na Potraživanje ili izaberite drugi račun."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ručno promenite ovaj datum da postavite datum početka sledeće sinhronizacije"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Promenjeno ime kupca u '{}' jer '{}' već postoji."
@@ -10161,7 +10158,7 @@ msgstr "Promenjeno ime kupca u '{}' jer '{}' već postoji."
msgid "Changes in {0}"
msgstr "Promene u {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Promena grupe kupaca za izabranog kupca nije dozvoljena."
@@ -10176,7 +10173,7 @@ msgid "Channel Partner"
msgstr "Kanal partnera"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Naknada vrste 'Stvarno' u redu {0} ne može biti uključena u cenu stavke ili plaćeni iznos"
@@ -10230,7 +10227,7 @@ msgstr "Dijagram kontnog plana"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10373,7 +10370,7 @@ msgstr "Širina čeka"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Datum čeka / reference"
@@ -10431,7 +10428,7 @@ msgstr "Zavisni Docname"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Referenca zavisnog reda"
@@ -10483,6 +10480,11 @@ msgstr "Klasifikacija kupaca po regionima"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10625,11 +10627,11 @@ msgstr "Zatvoren dokument"
msgid "Closed Documents"
msgstr "Zatvoreni dokumenti"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Zatvoreni radni nalog se ne može zaustaviti ili ponovo otvoriti"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Zatvorena porudžbina se ne može otkazati. Otvorite da biste otkazali."
@@ -10881,11 +10883,17 @@ msgstr "Stopa provizije %"
msgid "Commission Rate (%)"
msgstr "Stopa provizije (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provizija na prodaju"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10916,7 +10924,7 @@ msgstr "Vremenski termin komunikacionog medija"
msgid "Communication Medium Type"
msgstr "Vrsta komunikacionog medija"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Kompaktni ispis stavke"
@@ -11315,8 +11323,8 @@ msgstr "Kompanije"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11369,7 +11377,7 @@ msgstr "Kompanije"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11458,18 +11466,20 @@ msgstr "Prikaz adrese kompanije"
msgid "Company Address Name"
msgstr "Naziv adrese kompanije"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager."
msgstr "Adresa kompanije nedostaje. Nemate dozvolu da kreirate adresu. Molimo Vas da se obratite sistem menadžeru."
-#: erpnext/controllers/accounts_controller.py:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Nedostaje adresa kompanije. Nemate dozvolu da je ažurirate. Molimo Vas da kontaktirate sistem menadžera."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Tekući račun kompanije"
@@ -11565,7 +11575,7 @@ msgstr "Kompanija i datum knjiženja su obavezni"
msgid "Company and account filters not set!"
msgstr "Filteri kompanije i računa nisu postavljeni!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Valute oba preduzeća moraju biti iste za međukompanijske transakcije."
@@ -11600,7 +11610,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Naziv polja za link kompanije koji se koristi za filtriranje (opciono - ostavite prazno da biste obrisali sve zapise)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Naziv kompanije nije isti"
@@ -11639,12 +11649,12 @@ msgstr "Kompanije koje predstavlja interni dobavljač"
msgid "Company {0} added multiple times"
msgstr "Kompanija {0} je dodata više puta"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Kompanija {0} ne postoji"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Kompanija {0} je dodata više puta"
@@ -11686,7 +11696,7 @@ msgstr "Naziv konkurenta"
msgid "Competitors"
msgstr "Konkurenti"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Završi posao"
@@ -11733,12 +11743,12 @@ msgstr "Završeni projekti"
msgid "Completed Qty"
msgstr "Završena količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Završena količina ne može biti veća od 'Količina za proizvodnju'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Završena količina"
@@ -11927,7 +11937,7 @@ msgstr "Razmotrite računovodstvene dimenzije"
msgid "Consider Minimum Order Qty"
msgstr "Razmotrite minimalnu količinu narudžbine"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Razmotrite gubitak u procesu"
@@ -12121,7 +12131,7 @@ msgstr "Trošak utrošenih stavki"
msgid "Consumed Qty"
msgstr "Utrošena količina"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Utrošena količina ne može biti veća od rezervisane količine za stavku {0}"
@@ -12150,7 +12160,7 @@ msgstr "Utrošene stavke zaliha, utrošene stavke imovine ili utrošene stavke u
msgid "Consumed Stock Total Value"
msgstr "Ukupna vrednost utrošenih zaliha"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Utrošena količina stavke {0} premašuje prenetu količinu."
@@ -12278,7 +12288,7 @@ msgstr "Kontakt br."
msgid "Contact Person"
msgstr "Osoba za kontakt"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Osoba za kontakt ne pripada {0}"
@@ -12404,6 +12414,11 @@ msgstr "Kontrola istorijskih transakcija zaliha"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12464,7 +12479,7 @@ msgstr "Faktor konverzije"
msgid "Conversion Rate"
msgstr "Stopa konverzije"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Faktor konverzije za podrazumevanu jedinicu mere mora biti 1 u redu {0}"
@@ -12472,15 +12487,15 @@ msgstr "Faktor konverzije za podrazumevanu jedinicu mere mora biti 1 u redu {0}"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "Faktor konverzije za stavku {0} je vraćen na 1.0 jer je jedinica mere {1} ista kao jedinica mere zaliha {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Stopa konverzije ne može biti 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
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 kompanije"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Stopa konverzije mora biti 1.00 ukoliko je valuta dokumenta ista kao valuta kompanije"
@@ -12557,13 +12572,13 @@ msgstr "Korektivno"
msgid "Corrective Action"
msgstr "Korektivna radnja"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Korektivna radna kartica"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Korektivna operacija"
@@ -12730,7 +12745,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12863,7 +12878,7 @@ msgstr "Troškovni centar {} je grupni troškovni centar. Grupni troškovni cent
msgid "Cost Center: {0} does not exist"
msgstr "Troškovni centar: {0} ne postoji"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Troškovni centri"
@@ -12906,17 +12921,13 @@ msgstr "Trošak isporučenih stavki"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Trošak prodate robe"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Račun troška prodate robe u tabeli stavki"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Trošak izdatih stavki"
@@ -12996,7 +13007,7 @@ msgstr "Nije moguće obrisati demo podatke"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Nije moguće automatski kreirati kupca zbog sledećih nedostajućih obaveznih polja:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Nije moguće automatski kreirati dokument o smanjenju, poništite označavanje opcije 'Izdaj dokument o smanjenju' i ponovo pošaljite"
@@ -13185,7 +13196,7 @@ msgstr "Kreiraj fakturu"
msgid "Create Item"
msgstr "Kreiraj stavku"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Kreiraj radnu karticu"
@@ -13217,7 +13228,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Kreiraj knjiženja za kusur"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Kreiraj link"
@@ -13284,7 +13295,7 @@ msgstr "Kreiraj unos uplate za konsolidovane fiskalne račune."
msgid "Create Payment Request"
msgstr "Kreiraj zahtev za naplatu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Kreiraj listu za odabir"
@@ -13429,7 +13440,7 @@ msgstr "Kreiraj zadatak"
msgid "Create Tasks"
msgstr "Kreiraj zadatke"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Kreiraj šablon za porez"
@@ -13467,12 +13478,12 @@ msgstr "Kreiraj dozvolu za korisnika"
msgid "Create Users"
msgstr "Kreiraj korisnike"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Kreiraj varijantu"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Kreiraj varijante"
@@ -13503,12 +13514,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Kreiraj varijantu sa šablonskom slikom."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Kreiraj transakciju ulaznih zaliha za stavku."
@@ -13542,7 +13553,7 @@ msgstr "Kreiraj {0} {1} ?"
msgid "Created By Migration"
msgstr "Kreirano putem migracije"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Kreirano {0} tablica za ocenjivanje za {1} između:"
@@ -13575,7 +13586,7 @@ msgstr "Kreiranje otpremnice..."
msgid "Creating Delivery Schedule..."
msgstr "Kreiranje rasporeda isporuke..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Kreiranje dimenzija..."
@@ -13770,7 +13781,7 @@ msgstr "Odloženo plaćanje"
msgid "Credit Limit"
msgstr "Ograničenje potraživanja"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Ograničenje potraživanja premašeno"
@@ -13780,12 +13791,6 @@ msgstr "Ograničenje potraživanja premašeno"
msgid "Credit Limit Settings"
msgstr "Podešavanje ograničenja potraživanja"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Ograničenje potraživanja i uslovi plaćanja"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Ograničenje potraživanja:"
@@ -13817,7 +13822,7 @@ msgstr "Potraživanje po mesecima"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13845,7 +13850,7 @@ msgstr "Dokument o smanjenju izdat"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Dokument o smanjenju će ažurirati sopstveni iznos koji nije izmiren, čak i ukoliko je polje 'Povrat po osnovu' specifično navedeno."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Dokument o smanjenju {0} je automatski kreiran"
@@ -13853,7 +13858,7 @@ msgstr "Dokument o smanjenju {0} je automatski kreiran"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Potražuje"
@@ -13862,20 +13867,20 @@ msgstr "Potražuje"
msgid "Credit in Company Currency"
msgstr "Potražuje u valuti kompanije"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Ograničenje potraživanja premašeno za klijenta {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Ograničenje potraživanja je već definisano za kompaniju {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Ograničenje potraživanja premašeno za kupca {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13883,8 +13888,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Koeficijent obrta dobavljača"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Poverioci"
@@ -14054,7 +14059,7 @@ msgstr "Konverzija valute mora biti primenjiva za nabavku ili prodaju."
msgid "Currency and Price List"
msgstr "Valuta i cenovnik"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Valuta ne može biti promenjena nakon što su uneseni podaci koristeći drugu valutu"
@@ -14064,7 +14069,7 @@ msgstr "Filteri po valuti trenutno nisu podržani u prilagođenom finansijskom i
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Valuta za {0} mora biti {1}"
@@ -14147,8 +14152,8 @@ msgstr "Trenutni početni datum fakture"
msgid "Current Level"
msgstr "Trenutni nivo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Trenutne obaveze"
@@ -14215,6 +14220,11 @@ msgstr "Trenutne zalihe"
msgid "Current Valuation Rate"
msgstr "Trenutna stopa vrednovanja"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Krive"
@@ -14310,7 +14320,6 @@ msgstr "Prilagođeno razdvajanje"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14417,7 +14426,6 @@ msgstr "Prilagođeno razdvajanje"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14506,8 +14514,8 @@ msgstr "Adresa kupca"
msgid "Customer Addresses And Contacts"
msgstr "Adrese i kontakt kupca"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Avansi kupca"
@@ -14521,7 +14529,7 @@ msgstr "Šifra kupca"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14604,6 +14612,7 @@ msgstr "Povratne informacije kupca"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14626,7 +14635,7 @@ msgstr "Povratne informacije kupca"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14643,6 +14652,7 @@ msgstr "Povratne informacije kupca"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14686,7 +14696,7 @@ msgstr "Stavka kupca"
msgid "Customer Items"
msgstr "Stavke kupca"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Kupac lokalna narudžbina"
@@ -14738,7 +14748,7 @@ msgstr "Broj mobilnog telefona kupca"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14844,7 +14854,7 @@ msgstr "Pruženo od strane kupca"
msgid "Customer Provided Item Cost"
msgstr "Trošak stavke obezbeđene od strane kupca"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Korisnička podrška"
@@ -14901,9 +14911,9 @@ msgstr "Kupac ili stavka"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Kupac je neophodan za 'Popust po kupcu'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Kupac {0} ne pripada projektu {1}"
@@ -15015,7 +15025,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Dnevni rezime projekta za {0}"
@@ -15106,7 +15116,7 @@ msgstr "Datum rođenja ne može biti veći od današnjeg datuma."
msgid "Date of Commencement"
msgstr "Datum početka"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Datum početka treba biti veći od datuma osnivanja"
@@ -15332,7 +15342,7 @@ msgstr "Dugovni 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15360,13 +15370,13 @@ msgstr "Dokument o povećanju će ažurirati sopstveni iznos koji nije izmiren,
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Duguje prema"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Duguje prema je obavezno"
@@ -15494,8 +15504,7 @@ msgstr "Podrazumevani račun"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15521,14 +15530,14 @@ msgstr "Podrazumevani račun avansa"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Podrazumevani račun datih avansa"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Podrazumevani račun primljenih avansa"
@@ -15543,19 +15552,19 @@ msgstr "Podrazumevani opseg starosti"
msgid "Default BOM"
msgstr "Podrazumevana sastavnica"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Podrazumevana sastavnica ({0}) mora biti aktivna za ovu stavku ili njen šablon"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Podrazumevana sastavnica za {0} nije pronađena"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Podrazumevana sastavnica nije pronađena za gotov proizvod {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Podrazumevana sastavnica nije pronađena za stavku {0} i projekat {1}"
@@ -15608,9 +15617,7 @@ msgid "Default Company"
msgstr "Podrazumevana kompanija"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Podrazumevani tekući račun"
@@ -15726,6 +15733,16 @@ msgstr "Podrazumevana grupa stavki"
msgid "Default Item Manufacturer"
msgstr "Podrazumevani proizvođač stavki"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15761,23 +15778,19 @@ msgid "Default Payment Request Message"
msgstr "Podrazumevana poruka u zahtevu za naplatu"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Podrazumevani šablon uslova plaćanja"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15900,15 +15913,15 @@ msgstr "Podrazumevana teritorija"
msgid "Default Unit of Measure"
msgstr "Podrazumevana jedinica mere"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "Podrazumevana jedinica mere za stavku {0} ne može se direktno promeniti jer je transakcija već izvršena sa drugom jedinicom mere. Potrebno je otkazati povezana dokumenta ili kreiranje nove stavke."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Podrazumevana jedinica mere za stavku {0} ne može se direktno promeniti jer je već izvršena transakcija sa drugom jedinicom mere. Neophodno je kreiranje nove stavke u cilju korišćenja podrazumevane jedinice mere."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Podrazumevana jedinica mere za varijantu '{0}' mora biti ista kao u šablonu '{1}'"
@@ -15960,7 +15973,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Podrazumevana podešavanja za transakcije vezane za zalihe"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Podrazumevani poreski šabloni za prodaju, nabavku i stavke su kreirani."
@@ -16051,6 +16064,12 @@ msgstr "Definiši vrstu projekta."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Definiše datume nakon koga se stavka više ne može koristiti u transakcijama ili proizvodnji"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16133,12 +16152,12 @@ msgstr "Obriši potencijalne klijente i adrese"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Obriši transakcije"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Obriši sve transakcije za ovu kompaniju"
@@ -16159,8 +16178,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Brisanje {0} i svih povezanih dokumenata sa zajedničkom šifrom..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Brisanje u toku!"
@@ -16271,11 +16290,11 @@ msgstr "Isporučena količina"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Isporučena količina (u jedinici mere zaliha)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16356,7 +16375,7 @@ msgstr "Menadžer isporuke"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16416,11 +16435,11 @@ msgstr "Otpremnica za upakovanu stavku"
msgid "Delivery Note Trends"
msgstr "Analiza otpremnica"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Otpremnica {0} nije podneta"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Otpremnice"
@@ -16506,10 +16525,6 @@ msgstr "Skladište za isporuku"
msgid "Delivery to"
msgstr "Isporuka ka"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Skladište za isporuku je obavezno za stavku zaliha {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16629,8 +16644,8 @@ msgstr "Amortizovana suma"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16723,7 +16738,7 @@ msgstr "Opcije amortizacije"
msgid "Depreciation Posting Date"
msgstr "Datum knjiženja amortizacije"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Datum knjiženja amortizacije ne može biti pre datuma kada je sredstvo dostupno za upotrebu"
@@ -16881,15 +16896,15 @@ msgstr "Razlika (Duguje - Potražuje)"
msgid "Difference Account"
msgstr "Račun razlike"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Račun razlike u tabeli stavki"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Račun razlike mora biti račun imovine ili obaveza (privremeno početno stanje), jer je ovaj unos zaliha unos otvaranja početnog stanja"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Račun razlike mora biti račun imovine ili obaveza, jer ovo usklađivanje zaliha predstavlja unos početnog stanja"
@@ -17001,15 +17016,15 @@ msgstr "Dimenzije"
msgid "Direct Expense"
msgstr "Direktan trošak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Direktni troškovi"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Direktan prihod"
@@ -17090,6 +17105,11 @@ msgstr "Onemogući zaokruženi ukupni iznos"
msgid "Disable Serial No And Batch Selector"
msgstr "Onemogući broj serije i selektor šarže"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17126,11 +17146,11 @@ msgstr "Onemogućeno skladište {0} se ne može koristiti za ovu transakciju."
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Cenovna pravila su onemogućena jer je ovo {} interna transakcija"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Cene sa uključenim porezom su onemogućene jer je ovo {} interna transakcija"
@@ -17146,7 +17166,7 @@ msgstr "Onemogućava automatsko povlačenje 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17154,15 +17174,15 @@ msgstr "Onemogućava automatsko povlačenje postojeće količine"
msgid "Disassemble"
msgstr "Demontirati"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Nalog za demontažu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Demontirana količina ne može biti manja ili jednaka 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Demontirana količina ne može biti manja ili jednaka 0 ."
@@ -17449,7 +17469,7 @@ msgstr "Diskrecioni razlog"
msgid "Dislikes"
msgstr "Negativne ocene"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Otprema"
@@ -17530,7 +17550,7 @@ msgstr "Naziv za prikaz"
msgid "Disposal Date"
msgstr "Datum otuđenja"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Datum otuđenja {0} ne može biti pre {1} datuma {2} za imovinu."
@@ -17644,8 +17664,8 @@ msgstr "Naziv distribucije"
msgid "Distributor"
msgstr "Distributer"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Isplaćene dividende"
@@ -17707,7 +17727,7 @@ msgstr "Ne prikazuj nikakve oznake poput $ pored valuta."
msgid "Do not update variants on save"
msgstr "Nemojte ažurirati varijante prilikom čuvanja"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Da li zaista želite da obnovite otpisanu imovinu?"
@@ -17731,7 +17751,7 @@ msgstr "Da li želite da obavestite sve kupce putem imejla?"
msgid "Do you want to submit the material request"
msgstr "Da li želite da podnesete zahtev za nabavku"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Da li želite da podnesete unos zaliha?"
@@ -17798,11 +17818,11 @@ msgstr "Broj dokumenta"
msgid "Document Type "
msgstr "Vrsta dokumenta "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Vrsta dokumenta je već korišćena kao dimenzija"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentacija"
@@ -17965,12 +17985,6 @@ msgstr "Kategorije vozačke dozvole"
msgid "Driving License Category"
msgstr "Kategorija vozačke dozvole"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Ukloni procedure"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17991,12 +18005,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Uklanja postojeće SQL procedure i funkcije koje je kreirao izveštaj potraživanja od kupaca"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Datum dospeća ne može biti nakon {0}"
@@ -18155,8 +18163,8 @@ msgstr "Trajanje (dani)"
msgid "Duration in Days"
msgstr "Trajanje u danima"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Porezi i takse"
@@ -18239,7 +18247,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Svaka transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Najraniji"
@@ -18353,6 +18361,10 @@ msgstr "Obavezno je odabrati ili ciljanu količinu ili ciljani iznos"
msgid "Either target qty or target amount is mandatory."
msgstr "Obavezno je odabrati ili cilju količinu ili ciljni iznos."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18372,8 +18384,8 @@ msgstr "Električna energija"
msgid "Electricity down"
msgstr "Nestanak struje"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronska oprema"
@@ -18577,8 +18589,8 @@ msgstr "Avans zaposlenog lica"
msgid "Employee Advances"
msgstr "Avansi zaposlenog lica"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Obaveze po osnovu beneficija zaposlenim licima"
@@ -18661,7 +18673,7 @@ msgstr "Zaposleno lice {0} već ima povezanog korisnika"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Zaposleno lice {0} ne pripada kompaniji {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Zaposleno lice {0} trenutno radi na drugoj radnoj stanici. Molimo Vas da dodelite drugo zaposleno lice."
@@ -18677,7 +18689,7 @@ msgstr "Zaposlena lica"
msgid "Empty"
msgstr "Prazno"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Lista za brisanje je prazna"
@@ -18708,7 +18720,7 @@ msgstr "Omogućite zakazivanje termina"
msgid "Enable Auto Email"
msgstr "Omogućite automatski imejl"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Omogućite automatsko ponovno naručivanje"
@@ -18874,12 +18886,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19008,8 +19014,8 @@ msgstr "Datum ne može biti pre datuma početka."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19108,8 +19114,8 @@ msgstr "Unesite ručno"
msgid "Enter Serial Nos"
msgstr "Unesite brojeve serija"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Unesite vrednost"
@@ -19134,7 +19140,7 @@ msgstr "Unesite naziv za ovu listu praznika."
msgid "Enter amount to be redeemed."
msgstr "Unesite iznos koji želite da iskoristite."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Unesite šifru stavke, naziv će automatski biti popunjen iz šifre stavke kada kliknete u polje za naziv stavke."
@@ -19146,7 +19152,7 @@ msgstr "Unesite imejl kupca"
msgid "Enter customer's phone number"
msgstr "Unesite broj telefona kupca"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Unesite datum za otpis imovine"
@@ -19190,7 +19196,7 @@ msgstr "Unesite naziv korisnika pre podnošenja."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Unesite naziv banke ili kreditne institucije pre podnošenja."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Unesite početne zalihe."
@@ -19198,7 +19204,7 @@ msgstr "Unesite početne zalihe."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Unesite količinu stavki koja će biti proizvedena iz ove sastavnice."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Unesite količinu za proizvodnju. Stavke sirovine će biti preuzete samo ukoliko je ovo postavljeno."
@@ -19210,8 +19216,8 @@ msgstr "Unesite iznos za {0}."
msgid "Entertainment & Leisure"
msgstr "Rekreacija i slobodno vreme"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Troškovi reprezentacije"
@@ -19235,8 +19241,8 @@ msgstr "Vrsta unosa"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19297,7 +19303,7 @@ msgstr "Greška prilikom knjiženja amortizacije"
msgid "Error while processing deferred accounting for {0}"
msgstr "Greška prilikom obrade vremenskog razgraničenja kod {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Greška prilikom ponovne obrade vrednovanja stavke"
@@ -19309,7 +19315,7 @@ msgstr "Greška: Ova imovina već ima {0} evidentiranih perioda amortizacije.\n"
"\t\t\t\t\t Datum 'početka amortizacije' mora biti najmanje {1} perioda nakon datuma 'dostupno za korišćenje'.\n"
"\t\t\t\t\t Molimo Vas da ispravite datum u skladu sa tim."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Greška: {0} je obavezno polje"
@@ -19355,7 +19361,7 @@ msgstr "Franko fabrika"
msgid "Example URL"
msgstr "Primer URL-a"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Primer povezanog dokumenta: {0}"
@@ -19375,7 +19381,7 @@ msgstr "Primer: ABCD.#####. Ukoliko je serija postavljena i broj šarže nije na
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Primer: Broj serije {0} je rezervisan u {1}."
@@ -19385,7 +19391,7 @@ msgstr "Primer: Broj serije {0} je rezervisan u {1}."
msgid "Exception Budget Approver Role"
msgstr "Uloga za odobravanje izuzetaka budžeta"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "Prekomerna demontaža"
@@ -19393,7 +19399,7 @@ msgstr "Prekomerna demontaža"
msgid "Excess Materials Consumed"
msgstr "Utrošen višak materijala"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Višak transfera"
@@ -19424,17 +19430,17 @@ msgstr "Prihod ili rashod kursnih razlika"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Prihod/Rashod kursnih razlika"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Iznos prihoda/rashoda kursnih razlika evidentiran je preko {0}"
@@ -19573,7 +19579,7 @@ msgstr "Izvršni asistent"
msgid "Executive Search"
msgstr "Izvršna pretraga"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Oslobođenje isporuke"
@@ -19660,7 +19666,7 @@ msgstr "Očekivani datum zatvaranja"
msgid "Expected Delivery Date"
msgstr "Očekivani datum isporuke"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Očekivani datum isporuke treba da bude nakom datuma prodajne porudžbine"
@@ -19744,7 +19750,7 @@ msgstr "Očekivana vrednost nakon korisnog veka"
msgid "Expense"
msgstr "Trošak"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Račun rashoda / razlike ({0}) mora biti račun vrste 'Dobitak ili gubitak'"
@@ -19822,23 +19828,23 @@ msgstr "Račun rashoda je obavezan za stavku {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Troškovi"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Troškovi uključeni u vrednovanje imovine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Troškovi uključeni u vrednovanje"
@@ -19917,7 +19923,7 @@ msgstr "Eksterna radna istorija"
msgid "Extra Consumed Qty"
msgstr "Dodatno utrošena količina"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Dodatno potrošena količina na radnoj kartici"
@@ -20054,7 +20060,7 @@ msgstr "Neuspešna konfiguracija kompanije"
msgid "Failed to setup defaults"
msgstr "Neuspešna postavka podrazumevanih vrednosti"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Neuspešna postavka podrazumevanih vrednosti za državu {0}. Molimo Vas da kontaktirate podršku."
@@ -20172,6 +20178,11 @@ msgstr "Preuzmi vrednost sa"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Preuzmi detaljnu sastavnicu (uključujući podsklopove)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Preuzeta su samo {0} dostupna broja serija."
@@ -20209,21 +20220,29 @@ msgstr "Mapiranje polja"
msgid "Field in Bank Transaction"
msgstr "Polje u bankarskoj transakciji"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Polja će biti kopirana samo prilikom kreiranja."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Fajl ne pripada ovom zapisu o brisanju transakcije"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Fajl nije pronađen"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Fajl nije pronađen na serveru"
@@ -20431,9 +20450,9 @@ msgstr "Finansijska godina počinje"
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 izveštaji će biti generisani korišćenjem doctypes unosa u glavnu knjigu (treba da bude omogućeno ako dokument za zatvaranje perioda nije objavljen za sve godine uzastopono ili nedostaje) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Završi"
@@ -20490,15 +20509,15 @@ msgstr "Količina gotovog proizvoda"
msgid "Finished Good Item Quantity"
msgstr "Količina gotovog proizvoda"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Gotov proizvod nije definisan za uslužnu stavku {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Količina gotovog proizvoda {0} ne može biti nula"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Gotov proizvod {0} mora biti proizvod koji je proizveden putem podugovaranja"
@@ -20544,7 +20563,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Gotov proizvod {0} mora biti proizvod koji je proizveden putem podugovaranja."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Gotovi proizvodi"
@@ -20585,7 +20604,7 @@ msgstr "Skaldište gotovih proizvoda"
msgid "Finished Goods based Operating Cost"
msgstr "Operativni trošak zasnovan na gotovim proizvodima"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Gotov proizvod {0} ne odgovara radnom nalogu {1}"
@@ -20726,6 +20745,7 @@ msgstr "Fiskno"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Osnovna sredstva"
@@ -20744,7 +20764,7 @@ msgstr "Račun osnovnih sredstava"
msgid "Fixed Asset Defaults"
msgstr "Zadati podaci za osnovna sredstva"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Osnovno sredstvo mora biti stavka van zaliha."
@@ -20763,8 +20783,8 @@ msgstr "Koeficijent obrta osnovnih sredstava"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Osnovno sredstvo {0} se ne može koristiti u sastavnicama."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Osnovna sredstva"
@@ -20837,7 +20857,7 @@ msgstr "Prati kalendarske mesece"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Sledeći zahtevi za nabavku su automatski podignuti na osnovu nivoa ponovnog naručivanja stavki"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Sledeća polja su obavezna za kreiranje adrese:"
@@ -20894,7 +20914,7 @@ msgstr "Za kompaniju"
msgid "For Item"
msgstr "Za stavku"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Za stavku {0} količina ne može biti primljena u većoj količini od {1} u odnosu na {2} {3}"
@@ -20904,7 +20924,7 @@ msgid "For Job Card"
msgstr "Za radnu karticu"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Za operaciju"
@@ -20925,17 +20945,13 @@ msgstr "Za cenovnik"
msgid "For Production"
msgstr "Za proizvodnju"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Za količinu (proizvedena količina) je obavezna"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Za sirovine"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Za reklamacione fakture koje utiču na skladište, stavke sa količinom '0' nisu dozvoljene. Sledeći redovi su pogođeni: {0}"
@@ -20963,11 +20979,11 @@ msgstr "Za skladište"
msgid "For Work Order"
msgstr "Za radni nalog"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Za stavku {0}, količina mora biti negativna broj"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Za stavku {0}, količina mora biti pozitivan broj"
@@ -21005,7 +21021,7 @@ msgstr "Za pojedinačnog dobavljača"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Za stavku {0} , je kreirano ili povezano samo {1} imovine u {2} . Molimo Vas da kreirate ili povežete još {3} imovina sa odgovarajućim dokumentom."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Za stavku {0}, cena mora biti pozitivan broj. Da biste omogućili negativne cene, omogućite {1} u {2}"
@@ -21019,7 +21035,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Za operaciju {0} u redu {1}, molimo Vas da dodate sirovine ili dodelite sastavnicu."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Za operaciju {0}: Količina ({1}) ne može biti veća od preostale količine ({2})"
@@ -21036,7 +21052,7 @@ msgstr "Za projekat - {0}, ažurirajte svoj status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Za projektovane i prognozirane količine, sistem će uzeti u obzir sva zavisna skladišta pod izabranim matičnim skladištem."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Količina {0} ne bi smela biti veća od dozvoljene količine {1}"
@@ -21045,12 +21061,12 @@ msgstr "Količina {0} ne bi smela biti veća od dozvoljene količine {1}"
msgid "For reference"
msgstr "Za referencu"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Za red {0} u {1}. Da biste uključili {2} u cenu stavke, redovi {3} takođe moraju biti uključeni"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Za red {0}: Unesite planiranu količinu"
@@ -21069,7 +21085,7 @@ msgstr "Za polje 'Primeni pravilo na ostale' {0} je obavezno"
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Radi pogodnosti kupaca, ove šifre mogu se koristiti u formatima za štampanje kao što su fakture i otpremnice"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Za stavku {0}, utrošena količina treba da bude {1} prema sastavnici {2}."
@@ -21116,11 +21132,6 @@ msgstr "Prognoza"
msgid "Forecast Demand"
msgstr "Prognoza potražnje"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Prognoza količine"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21166,7 +21177,7 @@ msgstr "Postovi na forumu"
msgid "Forum URL"
msgstr "URL foruma"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe School"
@@ -21211,8 +21222,8 @@ msgstr "Besplatna stavka nije postavljena u cenovniku {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Zaključaj zalihe starije od (dana)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Troškovi prevoza i otpreme"
@@ -21646,8 +21657,8 @@ msgstr "Potpuno plaćeno"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Nameštaj i oprema"
@@ -21664,13 +21675,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Iznos budućeg plaćanja"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Referenca budućeg plaćanja"
@@ -21678,7 +21689,7 @@ msgstr "Referenca budućeg plaćanja"
msgid "Future Payments"
msgstr "Buduća plaćanja"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Budući datum nije dozvoljen"
@@ -21763,9 +21774,9 @@ msgstr "Prihod/Rashod je već knjižen"
msgid "Gain/Loss from Revaluation"
msgstr "Prihod/Rashod od revalorizacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Prihod/Rashod pri otuđenju imovine"
@@ -21938,7 +21949,7 @@ msgstr "Preuzmi stanje"
msgid "Get Current Stock"
msgstr "Prikaži trenutno stanje zaliha"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Prikaži detalje grupe kupaca"
@@ -21996,7 +22007,7 @@ msgstr "Prikaži lokaciju stavke"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22035,7 +22046,7 @@ msgstr "Prikaži stavke iz sastavnice"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Prikaži stavke iz zahteva za nabavku prema ovom dobavljaču"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Prikaži stavke iz paketa proizvoda"
@@ -22209,7 +22220,7 @@ msgstr "Ciljevi"
msgid "Goods"
msgstr "Roba"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Roba na putu"
@@ -22218,7 +22229,7 @@ msgstr "Roba na putu"
msgid "Goods Transferred"
msgstr "Roba premeštena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Roba je već primljena na osnovu izlaznog unosa {0}"
@@ -22401,7 +22412,7 @@ msgstr "Ukupan iznos mora odgovarati zbiru referenci plaćanja"
msgid "Grant Commission"
msgstr "Odobri komision"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Veći od iznosa"
@@ -22844,7 +22855,7 @@ msgstr "Pomaže Vam da raspodelite budžet/cilj po mesecima ako imate sezonalnos
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Ovo su evidencije grešaka za prethodno neuspele unose amortizacije: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Sledeće su opcije za nastavak:"
@@ -22872,7 +22883,7 @@ msgstr "Ovde su Vaši nedeljni odmori unapred popunjeni na osnovu prethodnih oda
msgid "Hertz"
msgstr "Herc"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Zdravo,"
@@ -23071,7 +23082,7 @@ msgstr "Kako formatirati i prikazati vrednosti u finansijskom izveštaju (samo u
msgid "Hrs"
msgstr "Časovi"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Ljudski resursi"
@@ -23240,6 +23251,12 @@ msgstr "Ukoliko je označeno, iznos poreza će se smatrati kao da je već uklju
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Ukoliko je označeno, iznos poreza će se smatrati kao da je već uključen u iskazanu cenu/ iskazani iznos"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Ukoliko je označeno, kreiraće se demo podaci u cilju istraživanja sistema. Ovi podaci mogu biti obrisani kasnije."
@@ -23460,7 +23477,7 @@ msgstr ""
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Ukoliko porezi nisu postavljeni, a šablon poreza i naknada je izabran, sistem će automatski primeniti poreze iz izabranog šablona."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Ukoliko nije, možete otkazati/ podneti ovaj unos"
@@ -23486,13 +23503,18 @@ msgstr ""
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 "Ukoliko je izabrano cenovno pravilo napravljeno za 'Jedinična cena' ono će zameniti cenovnik. Cena iz cenovnog pravila je konačna cena, u skladu sa tim ne bi trebalo primenjivati dodatno sniženje. Zbog toga će se u transakcijama poput prodajne porudžbine, nabavne porudžbine i slično, vrednosti uzimati iz polja 'Jedinična cena', a ne iz polja 'Osnovna cena u cenovniku'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Ukoliko je podešeno, sistem neće koristiti imejl nalog korisnika niti standardni izlazni imejl nalog za slanje zahteva za ponudu."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Ukoliko sastavnica rezultira otpisanim stavkama, potrebno je izabrati skladište za otpis."
@@ -23501,7 +23523,7 @@ msgstr "Ukoliko sastavnica rezultira otpisanim stavkama, potrebno je izabrati sk
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Ukoliko je račun zaključan, unos je dozvoljen samo ograničenom broju korisnika."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Ukoliko se stavka knjiži kao stavka sa nultom stopom vrednovanja u ovom unosu, omogućite opciju 'Dozvoli nultu stopu vrednovanja' u tabeli stavki {0}."
@@ -23511,7 +23533,7 @@ msgstr "Ukoliko se stavka knjiži kao stavka sa nultom stopom vrednovanja u ovom
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 "Ukoliko je proveravanje ponovne narudžbine podešeno na nivou grupnog skladišta, dostupna količina postaje zbir očekivanih količina svih zavisnih skladišta."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Ukoliko izabrana sastavnica ima navedene operacije, sistem će preuzeti sve operacije iz sastavnice, a te vrednosti se mogu promeniti."
@@ -23588,7 +23610,7 @@ msgstr "Ukoliko lojalti poeni nemaju ograničeni rok trajanja, ostavite polje ro
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Ukoliko je odgovor da, ovo skladište će se koristiti za čuvanje odbijenog materijala"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Ukoliko vodite zalihe ove stavke u svom inventaru, ERPNext će napraviti unos u knjigu zaliha za svaku transakciju ove stavke."
@@ -23602,7 +23624,7 @@ msgstr "Ukoliko treba da uskladite određene transakcije međusobno, izaberite o
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Ukoliko i dalje želite da nastavite, onemogućite opciju 'Preskoči dostupne stavke podsklopa'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Ukoliko i dalje želite da nastavite, omogućite {0}."
@@ -23686,7 +23708,7 @@ msgstr "Ignoriši revalorizaciju deviznog kursa i dnevnike prihoda/rashoda"
msgid "Ignore Existing Ordered Qty"
msgstr "Ignoriši postojeće naručene količine"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Ignoriši postojeću očekivanu količinu"
@@ -23773,12 +23795,12 @@ msgstr "Ignoriši preklapanje vremena na radnim stanicama"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Ignoriši polje za otvaranje stanja u unosu u glavnu knjigu koje omogućava dodavanje početnog stanja nakon što je sistem u upotrebi prilikom generisanja izveštaja"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
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, uklonite oznaku sa opcije \"{0}\" u {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Oštećenje"
@@ -23936,7 +23958,7 @@ 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/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "U količini"
@@ -24060,7 +24082,7 @@ msgstr "U slučaju kada program ima više nivoa, kupci će automatski biti dodel
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
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 okviru ovog odeljka možete definisati podrazumevane vrednosti za transakcije na nivou kompanije za ovu stavku. Na primer, podrazumevano skladište, podrazumevani cenovnik, dobavljač itd."
@@ -24291,8 +24313,8 @@ msgstr "Uključujući stavke za podsklopove"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24363,7 +24385,7 @@ msgstr "Ulazna uplata"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24395,7 +24417,7 @@ msgstr "Pogrešan saldo količine nakon transakcije"
msgid "Incorrect Batch Consumed"
msgstr "Utrošena netačna šarža"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Netačno skladište za ponovno naručivanje"
@@ -24403,7 +24425,7 @@ msgstr "Netačno skladište za ponovno naručivanje"
msgid "Incorrect Company"
msgstr "Netačna kompanija"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Netačna količina komponenti"
@@ -24537,15 +24559,15 @@ msgstr "Označava da je paket deo ove isporuke (isključivo nacrt)"
msgid "Indirect Expense"
msgstr "Indirektni trošak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirektni troškovi"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirektni prihod"
@@ -24613,14 +24635,14 @@ msgstr "Inicirano"
msgid "Inspected By"
msgstr "Inspekciju izvršio"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Inspekcija odbijena"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Inspekcija je potrebna"
@@ -24637,8 +24659,8 @@ msgstr "Inspekcija je potrebna pre isporuke"
msgid "Inspection Required before Purchase"
msgstr "Inspekcija je potrebna pre nabavke"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Podnošenje inspekcije"
@@ -24668,7 +24690,7 @@ msgstr "Napomena o instalaciji"
msgid "Installation Note Item"
msgstr "Stavka u napomeni o instalaciji"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Napomena o instalaciji {0} je već podneta"
@@ -24707,11 +24729,11 @@ msgstr "Uputstvo"
msgid "Insufficient Capacity"
msgstr "Nedovoljan kapacitet"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Nedovoljne dozvole"
@@ -24719,13 +24741,12 @@ msgstr "Nedovoljne dozvole"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Nedovoljno zaliha"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Nedovoljno zaliha za šaržu"
@@ -24845,13 +24866,13 @@ msgstr "Referenca međukompanijskog transfera"
msgid "Interest"
msgstr "Kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Trošak kamata"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Prihod od kamata"
@@ -24859,8 +24880,8 @@ msgstr "Prihod od kamata"
msgid "Interest and/or dunning fee"
msgstr "Kamata i/ili naknada za opomenu"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Kamata na oročene depozite"
@@ -24880,7 +24901,7 @@ msgstr "Interni"
msgid "Internal Customer Accounting"
msgstr "Računovodstvo internog kupca"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Interni kupac za kompaniju {0} već postoji"
@@ -24888,7 +24909,7 @@ msgstr "Interni kupac za kompaniju {0} već postoji"
msgid "Internal Purchase Order"
msgstr "Interna nabavna porudžbina"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Nedostaje referenca za internu prodaju ili isporuku."
@@ -24896,7 +24917,7 @@ msgstr "Nedostaje referenca za internu prodaju ili isporuku."
msgid "Internal Sales Order"
msgstr "Interna prodajna porudžbina"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Nedostaje referenca za internu prodaju"
@@ -24927,7 +24948,7 @@ msgstr "Interni dobavljač za kompaniju {0} već postoji"
msgid "Internal Transfer"
msgstr "Interni transfer"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Nedostaje referenca za interni transfer"
@@ -24940,7 +24961,12 @@ msgstr "Interni transferi"
msgid "Internal Work History"
msgstr "Interna radna istorija"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interni transferi mogu se obaviti samo u osnovnoj valuti kompanije"
@@ -24956,12 +24982,12 @@ msgstr "Interval mora biti između 1 i 59 minuta"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Nevažeći račun"
@@ -24982,7 +25008,7 @@ msgstr "Nevažeći iznos"
msgid "Invalid Attribute"
msgstr "Nevažeći atribut"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Nevažeći datum automatskog ponavljanja"
@@ -24995,7 +25021,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Nevažeći bar-kod. Ne postoji stavka koja je priložena sa ovim bar-kodom."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Nevažeća okvirna narudžbina za izabranog kupca i stavku"
@@ -25011,21 +25037,21 @@ msgstr "Nevažeća zavisna procedura"
msgid "Invalid Company Field"
msgstr "Nevažeće polje kompanije"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Nevažeća kompanija za međukompanijsku transakciju."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Nevažeći troškovni centar"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Nevažeća grupa kupaca"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Nevažeći datum isporuke"
@@ -25063,7 +25089,7 @@ msgstr "Nevažeće grupisanje po"
msgid "Invalid Item"
msgstr "Nevažeća stavka"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Nevažeći podrazumevani podaci za stavku"
@@ -25077,7 +25103,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Nevažeći neto iznos nabavke"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Nevažeći unos početnog stanja"
@@ -25085,11 +25111,11 @@ msgstr "Nevažeći unos početnog stanja"
msgid "Invalid POS Invoices"
msgstr "Nevažeći fiskalni računi"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Nevažeći matični račun"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Nevažeći broj dela"
@@ -25119,12 +25145,12 @@ msgstr "Nevažeća konfiguracija gubitaka u procesu"
msgid "Invalid Purchase Invoice"
msgstr "Nevažeća ulazna faktura"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Nevažeća količina"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Nevažeća količina"
@@ -25149,12 +25175,12 @@ msgstr "Nevažeći raspored"
msgid "Invalid Selling Price"
msgstr "Nevažeća prodajna cena"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Nevažeći broj paketa serije i šarže"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Nevažeće izvorno i ciljno skladište"
@@ -25179,7 +25205,7 @@ msgstr "Nevažeći iznos u računovodstvenim unosima za {} {} za račun {}: {}"
msgid "Invalid condition expression"
msgstr "Nevažeći izraz uslova"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Nevažeći URL fajla"
@@ -25191,7 +25217,7 @@ msgstr "Nevažeća formula filtera. Molimo Vas da proverite sintaksu."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Nevažeći razlog gubitka {0}, molimo kreirajte nov razlog gubitka"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Nevažeća serija imenovanja (. nedostaje) za {0}"
@@ -25217,8 +25243,8 @@ msgstr "Nevažeći upit pretrage"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Nevažeća vrednost {0} za {1} u odnosu na račun {2}"
@@ -25226,7 +25252,7 @@ msgstr "Nevažeća vrednost {0} za {1} u odnosu na račun {2}"
msgid "Invalid {0}"
msgstr "Nevažeće {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Nevažeće {0} za međukompanijsku transakciju."
@@ -25236,7 +25262,7 @@ msgid "Invalid {0}: {1}"
msgstr "Nevažeće {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Inventar"
@@ -25285,8 +25311,8 @@ msgstr "Vrednovanje inventara"
msgid "Investment Banking"
msgstr "Investiciono bankarstvo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investicije"
@@ -25336,7 +25362,7 @@ msgstr "Diskontovanje fakture"
msgid "Invoice Document Type Selection Error"
msgstr "Greška pri izboru vrste dokumenta fakture"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Ukupan zbir fakture"
@@ -25441,7 +25467,7 @@ msgstr "Faktura ne može biti napravljena za nula fakturisanih sati"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25462,7 +25488,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25558,8 +25584,7 @@ msgstr "Alternativno"
msgid "Is Billable"
msgstr "Podložno naplati"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Kontakt za fakturisanje"
@@ -26001,8 +26026,7 @@ msgstr "Šablon"
msgid "Is Transporter"
msgstr "Prevoznik"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Adresa Vaše kompanije"
@@ -26108,8 +26132,8 @@ msgstr "Vrsta izdavanja"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Izdaj dokument o povećanju sa količinom 0 protiv postojeće izlazne fakture"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26139,11 +26163,11 @@ msgstr "Upiti"
msgid "Issuing Date"
msgstr "Datum izdavanja"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Može potrajati nekoliko sati da tačne vrednosti zaliha postanu vidljive nakon spajanja stavki."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Potrebno je preuzeti detalje stavki."
@@ -26267,7 +26291,7 @@ msgstr "Kurizvni tekst za međuzbirove ili napomene"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26515,7 +26539,7 @@ msgstr "Korpa stavke"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26577,7 +26601,7 @@ msgstr "Korpa stavke"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26776,13 +26800,13 @@ msgstr "Detalji stavke"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26999,7 +27023,7 @@ msgstr "Proizvođač stavke"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27039,10 +27063,10 @@ msgstr "Proizvođač stavke"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27083,10 +27107,6 @@ msgstr "Stavka nije na stanju"
msgid "Item Price"
msgstr "Cena stavke"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Cena stavke je dodata za {0} u cenovnik {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27102,19 +27122,20 @@ msgstr "Podešavanje cene stavke"
msgid "Item Price Stock"
msgstr "Cene stavke na skladištu"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Cena stavke dodata za {0} u cenovniku {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Cena stavke se pojavljuje više puta na osnovu cenovnika, dobavljača / kupca, valute, stavke, šarže, merne jedinice, količine i datuma."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Cena stavke ažurirana za {0} u cenovniku {1}"
@@ -27301,11 +27322,11 @@ msgstr "Detalji varijante stavke"
msgid "Item Variant Settings"
msgstr "Podešavanja varijante stavke"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Varijanta stavke {0} već postoji sa istim atributima"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Varijante stavke ažurirane"
@@ -27406,11 +27427,11 @@ msgstr "Stavka i skladište"
msgid "Item and Warranty Details"
msgstr "Detalji stavke i garancije"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Stavke za red {0} ne odgovaraju zahtevu za nabavku"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Stavka ima varijante."
@@ -27436,11 +27457,7 @@ msgstr "Naziv stavke"
msgid "Item operation"
msgstr "Stavka operacije"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Količina stavki ne može biti ažurirana jer su sirovine već obrađene."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Cena stavke je ažurirana na nulu jer je označena opcija 'Dozvoli nultu stopu vrednovanja' za stavku {0}"
@@ -27459,11 +27476,11 @@ msgstr "Stopa vrednovanja stavke je preračunata uzimajući u obzir zavisne tro
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Ponovna obrada vrednovanja stavke je u toku. Izveštaj može prikazati netačno vrednovanje stavke."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Varijanta stavke {0} postoji sa istim atributima"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27480,7 +27497,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Stavka {0} ne može biti naručena u količini većoj od {1} prema okvirnom nalogu {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Stavka {0} ne postoji"
@@ -27492,7 +27509,7 @@ msgstr "Stavka {0} ne postoji u sistemu ili je istekla"
msgid "Item {0} does not exist."
msgstr "Stavka {0} ne postoji."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Stavka {0} je unesena više puta."
@@ -27504,15 +27521,15 @@ msgstr "Stavka {0} je već vraćena"
msgid "Item {0} has been disabled"
msgstr "Stavka {0} je onemogućena"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Stavka {0} nema broj serije. Samo stavke sa brojem serije mogu imati isporuku na osnovu serijskog broja"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Stavka {0} je dostigla kraj svog životnog veka na dan {1}"
@@ -27524,15 +27541,15 @@ msgstr "Stavka {0} je zanemarena jer nije stavka na zalihama"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Stavka {0} je već rezervisana / isporučena prema prodajnoj porudžbini {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Stavka {0} je otkazana"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Stavka {0} je onemogućena"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27540,7 +27557,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Stavka {0} nije serijalizovana stavka"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Stavka {0} nije stavka na zalihama"
@@ -27548,11 +27565,11 @@ msgstr "Stavka {0} nije stavka na zalihama"
msgid "Item {0} is not a subcontracted item"
msgstr "Stavka {0} nije stavka za podugovaranje"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Stavka {0} nije aktivna ili je dostigla kraj životnog veka"
@@ -27568,7 +27585,7 @@ msgstr "Stavka {0} mora biti stavka van zaliha"
msgid "Item {0} must be a non-stock item"
msgstr "Stavka {0} mora biti stavka van zaliha"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Stavka {0} nije pronađena u tabeli 'Primljene sirovine' {1} {2}"
@@ -27576,7 +27593,7 @@ msgstr "Stavka {0} nije pronađena u tabeli 'Primljene sirovine' {1} {2}"
msgid "Item {0} not found."
msgstr "Stavka {0} nije pronađena."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Stavka {0}: Naručena količina {1} ne može biti manja od minimalne količine za narudžbinu {2} (definisane u stavci)."
@@ -27584,7 +27601,7 @@ msgstr "Stavka {0}: Naručena količina {1} ne može biti manja od minimalne kol
msgid "Item {0}: {1} qty produced. "
msgstr "Stavka {0}: Proizvedena količina {1}. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Stavka {} ne postoji."
@@ -27630,7 +27647,7 @@ msgstr "Registar prodaje po stavkama"
msgid "Item-wise sales Register"
msgstr "Knjiga prodaje po stavkama"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Stavka/Šifra stavke je neophodna za preuzimanje šablona stavke poreza."
@@ -27654,7 +27671,7 @@ msgstr "Katalog stavki"
msgid "Items Filter"
msgstr "Filter stavki"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Potrebne stavke"
@@ -27678,11 +27695,11 @@ msgstr "Stavke za poručivanje"
msgid "Items and Pricing"
msgstr "Stavke i cene"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Stavke se ne mogu ažurirati jer postoje nalozi za prijem iz podugovaranja povezani sa ovom prodajnom porudžbinom za podugovaranje."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Stavke ne mogu biti ažurirane jer je kreiran nalog za podugovaranje prema nabavnoj porudžbini {0}."
@@ -27694,7 +27711,7 @@ msgstr "Stavke za zahtev za nabavku sirovina"
msgid "Items not found."
msgstr "Stavke nisu pronađene."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Cena stavki je ažurirana na nulu jer je opcija dozvoli nultu stopu vrednovanja označena za sledeće stavke: {0}"
@@ -27704,7 +27721,7 @@ msgstr "Cena stavki je ažurirana na nulu jer je opcija dozvoli nultu stopu vred
msgid "Items to Be Repost"
msgstr "Stavke za ponovno knjiženje"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Stavke za proizvodnju su potrebne za preuzimanje povezanih sirovina."
@@ -27769,9 +27786,9 @@ msgstr "Kapacitet posla"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27833,7 +27850,7 @@ msgstr "Zapis vremena radne kartice"
msgid "Job Card and Capacity Planning"
msgstr "Radna kartica i planiranje kapaciteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Radna kartica {0} je završen"
@@ -27909,7 +27926,7 @@ msgstr "Naziv izvršioca posla"
msgid "Job Worker Warehouse"
msgstr "Skladište izvršioca posla"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Radna kartica {0} je kreirana"
@@ -28129,7 +28146,7 @@ msgstr "Kilovat"
msgid "Kilowatt-Hour"
msgstr "Kilovat-čas"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Molimo Vas da prvo poništite zapise o proizvodnji povezane sa radnim nalogom {0}."
@@ -28257,7 +28274,7 @@ msgstr "Datum poslednjeg završetka"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Poslednje ažuriranje unosa u glavnu knjigu je izvršeno {}. Ova operacija nije dozvoljena dok je sistem aktivno u upotrebi. Molimo Vas da sačekate 5 minuta pre nego što pokušate ponovo."
@@ -28339,7 +28356,7 @@ msgstr "Datum poslednje provere emisije ugljen-dioksida ne može biti u budućno
msgid "Last transacted"
msgstr "Poslednja izvršena transakcija"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Najnovije"
@@ -28590,12 +28607,12 @@ msgstr "Zastarela polja"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Pravno lice / Podružnica sa posebnim kontnim okvirom koja pripada organizaciji."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Pravni troškovi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Legenda"
@@ -28606,7 +28623,7 @@ msgstr "Legenda"
msgid "Length (cm)"
msgstr "Dužina (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Manje od iznosa"
@@ -28665,7 +28682,7 @@ msgstr "Broj vozačke dozvole"
msgid "License Plate"
msgstr "Broj registarske oznake"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Prekoračen limit"
@@ -28726,7 +28743,7 @@ msgstr "Poveži sa zahtevima za nabavku"
msgid "Link with Customer"
msgstr "Poveži sa kupcem"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Poveži sa dobavljačem"
@@ -28747,12 +28764,12 @@ msgstr "Povezani računi"
msgid "Linked Location"
msgstr "Povezana lokacija"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Povezano sa podnetim dokumentima"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Povezivanje nije uspelo"
@@ -28760,7 +28777,7 @@ msgstr "Povezivanje nije uspelo"
msgid "Linking to Customer Failed. Please try again."
msgstr "Povezivanje sa kupcem nije uspelo. Molimo pokušajte ponovo."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Povezivanje sa dobavljačem nije uspelo. Molimo pokušajte ponovo."
@@ -28818,8 +28835,8 @@ msgstr "Datum početka zajma"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Datum početka zajma i period zajma su obavezni za čuvanje diskontovanja fakture"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Zajam (Obaveze)"
@@ -28864,8 +28881,8 @@ msgstr "Zabeleži prodajnu i nabavnu cenu stavke"
msgid "Logo"
msgstr "Logotip"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Dugoročna rezervisanja"
@@ -29066,6 +29083,11 @@ msgstr "Nivo programa lojalnosti"
msgid "Loyalty Program Type"
msgstr "Vrsta programa lojalnosti"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29109,10 +29131,10 @@ msgstr "Kvar mašine"
msgid "Machine operator errors"
msgstr "Greške operatera mašine"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Glavno"
@@ -29355,9 +29377,9 @@ msgstr "Obavezni/Izborni predmeti"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Napraviti"
@@ -29377,7 +29399,7 @@ msgstr "Napravi unos amortizacije"
msgid "Make Difference Entry"
msgstr "Napravi unos razlike"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Kreiraj vreme isporuke"
@@ -29415,12 +29437,12 @@ msgstr "Napravi izlaznu fakturu"
msgid "Make Serial No / Batch from Work Order"
msgstr "Napravi broj serije / šaržu iz radnog naloga"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Napravi unos zaliha"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Napravi nabavnu porudžbinu podugovaranja"
@@ -29436,11 +29458,11 @@ msgstr "Pozovi"
msgid "Make project from a template."
msgstr "Napravi projekat iz šablona."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Napravi varijantu {0}"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Napravi varijante {0}"
@@ -29448,8 +29470,8 @@ msgstr "Napravi varijante {0}"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Pravljenje naloga knjiženja na avansnim računima: {0} nije preporučljivo. Ovi nalozi neće biti dostupni za usklađivanje."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Upravljaj"
@@ -29468,7 +29490,7 @@ msgstr "Upravljanje provizijama prodajnih partnera i prodajnog tima"
msgid "Manage your orders"
msgstr "Upravljanje sopstvenim porudžbinama"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Menadžment"
@@ -29484,7 +29506,7 @@ msgstr "Generalni direktor"
msgid "Mandatory Accounting Dimension"
msgstr "Obavezna računovodstvena dimenzija"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Obavezno polje"
@@ -29583,8 +29605,8 @@ msgstr "Ručno unošenje ne može biti kreirano! Onemogućite automatski unos za
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29663,7 +29685,7 @@ msgstr "Proizvođač"
msgid "Manufacturer Part Number"
msgstr "Broj dela proizvođača"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Broj dela proizvođača {0} nije važeći"
@@ -29688,7 +29710,7 @@ msgstr "Proizvođači korišćeni u stavkama"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29733,10 +29755,6 @@ msgstr "Datum proizvodnje"
msgid "Manufacturing Manager"
msgstr "Menadžer proizvodnje"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Količina proizvodnje je obavezna"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29903,6 +29921,12 @@ msgstr "Bračni status"
msgid "Mark As Closed"
msgstr "Označi kao zatvoreno"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29917,12 +29941,12 @@ msgstr "Označi kao zatvoreno"
msgid "Market Segment"
msgstr "Tržišni segment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marketing"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Troškovi marketinga"
@@ -30001,7 +30025,7 @@ msgstr ""
msgid "Material"
msgstr "Materijal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Potrošnja materijala"
@@ -30009,7 +30033,7 @@ msgstr "Potrošnja materijala"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Potrošnja materijala za proizvodnju"
@@ -30090,7 +30114,7 @@ msgstr "Prijemnica materijala"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30187,11 +30211,11 @@ msgstr "Planirana stavka zahteva za nabavku"
msgid "Material Request Type"
msgstr "Vrsta zahteva za nabavku"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Zahtev za nabavku je već kreiran za naručenu količinu"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Zahtev za nabavku nije kreiran, jer je količina sirovina već dostupna."
@@ -30259,7 +30283,7 @@ msgstr "Materijal vraćen iz nedovršene proizvodnje"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30325,12 +30349,12 @@ msgstr "Materijal ka dobavljaču"
msgid "Materials To Be Transferred"
msgstr "Materijal za prenos"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Materijali su već primljeni prema {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Materijali moraju biti premešteni u skladište nedovršene proizvodnje za radnu karticu {0}"
@@ -30401,9 +30425,9 @@ msgstr "Maksimalni rezultat"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Maksimalni popust dozvoljen za stavku: {0} je {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30435,11 +30459,11 @@ msgstr "Maksimalni iznos plaćanja"
msgid "Maximum Producible Items"
msgstr "Maksimalna količina proizvodivih stavki"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maksimalni uzorci - {0} može biti zadržano za šaržu {1} i stavku {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maksimalni uzorci - {0} su već zadržani za šaržu {1} i stavku {2} u šarži {3}."
@@ -30500,15 +30524,10 @@ msgstr "Megadžul"
msgid "Megawatt"
msgstr "Megavat"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Navesti stopu vrednovanja u master podacima stavki."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Navesti ukoliko se koristi nestandardni račun potraživanja"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30558,7 +30577,7 @@ msgstr "Spoji sa postojećim računom"
msgid "Merged"
msgstr "Spojeno"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Spajanje je moguće samo ukoliko su sledeće osobine iste u oba zapisa. Da li je grupa, osnovna vrsta, kompanija i valuta računa"
@@ -30588,7 +30607,7 @@ msgstr "Poruka će biti poslata korisnicima radi dobijanja statusa projekta"
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Poruke duže od 160 karaktera biće podeljene u više poruka"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "CRM kampanja za poruke"
@@ -30789,7 +30808,7 @@ msgstr "Minimalna količina ne može biti veća od maksimalne količine"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimalna količina treba da bude veća od količine za ponavljanje"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Minimalna vrednost: {0}, maksimalna vrednost: {1}, u koracima od: {2}"
@@ -30878,8 +30897,8 @@ msgstr "Minuti"
msgid "Miscellaneous"
msgstr "Razno"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Razni troškovi"
@@ -30887,15 +30906,15 @@ msgstr "Razni troškovi"
msgid "Mismatch"
msgstr "Nepodudaranje"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Nedostaje"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Nedostajući račun"
@@ -30925,7 +30944,7 @@ msgstr "Nedostaju filteri"
msgid "Missing Finance Book"
msgstr "Nedostajuća finansijska evidencija"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Nedostaje gotov proizvod"
@@ -30933,7 +30952,7 @@ msgstr "Nedostaje gotov proizvod"
msgid "Missing Formula"
msgstr "Nedostaje formula"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Nedostajuća stavka"
@@ -30970,7 +30989,7 @@ msgid "Missing required filter: {0}"
msgstr "Nedostaje obavezni filter: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Nedostajuća vrednost"
@@ -31219,11 +31238,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Pronađeno je više programa lojalnosti za kupca {}. Molimo Vas da izaberete ručno."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Višestruki unosi početnog stanja maloprodaje"
@@ -31245,11 +31264,11 @@ msgstr "Više varijanti"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Dostupno je više polja kompanije: {0}. Molimo Vas da izaberete ručno."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Postoji više fiskalnih godina za datum {0}. Molimo postavite kompaniju u fiskalnu godinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Više stavki ne može biti označeno kao gotov proizvod"
@@ -31258,7 +31277,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:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31345,7 +31364,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Serija imenovanja '{0}' za DocType '{1}' ne sadrži standardni separator '.' ili '{{'. Koristi se rezervni način ekstrakcije."
@@ -31389,7 +31408,7 @@ msgstr "Analiza potrebna"
msgid "Negative Batch Report"
msgstr "Izveštaj o šaržama sa negativnim stanjem"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negativna količina nije dozvoljena"
@@ -31398,7 +31417,7 @@ msgstr "Negativna količina nije dozvoljena"
msgid "Negative Stock Error"
msgstr "Greška zbog negativnog stanja zaliha"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negativna stopa vrednovanja nije dozvoljena"
@@ -31704,7 +31723,7 @@ msgstr "Neto težina"
msgid "Net Weight UOM"
msgstr "Jedinica mere neto težine"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Gubitak preciznosti u izračunavanju neto ukupnog iznosa"
@@ -31881,7 +31900,7 @@ msgstr "Novi naziv skladišta"
msgid "New Workplace"
msgstr "Novo radno mesto"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Novi kreditni limit je manji od trenutnog neizmirenog iznosa za kupca. Kreditni limit mora biti najmanje {0}"
@@ -31935,7 +31954,7 @@ msgstr "Sledeći imejl će biti poslat na:"
msgid "No Account Data row found"
msgstr "Nije pronađen nijedan red u podacima računa "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Ne postoji račun koji odgovara ovim filterima: {}"
@@ -31948,7 +31967,7 @@ msgstr "Bez radnje"
msgid "No Answer"
msgstr "Nema odgovora"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Nije pronađen kupac za međukompanijske transakcije koji predstavljaju kompaniju {0}"
@@ -31961,7 +31980,7 @@ msgstr "Nema kupaca sa izabranim opcijama."
msgid "No Delivery Note selected for Customer {}"
msgstr "Ne postoje izabrane otpremnice za kupca {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Nema DocType-ova na listi za brisanje. Molimo Vas da generišete ili uvezete listu pre podnošenja."
@@ -31977,7 +31996,7 @@ msgstr "Nema stavki sa bar-kodom {0}"
msgid "No Item with Serial No {0}"
msgstr "Nema stavke sa brojem serije {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Nema stavki izabranih za transfer."
@@ -32012,7 +32031,7 @@ msgstr "Ne postoji profil maloprodaje. Molimo Vas da kreirate novi profil malopr
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Bez dozvole"
@@ -32041,19 +32060,19 @@ msgstr "Trenutno nema dostupnih zaliha"
msgid "No Summary"
msgstr "Nema rezimea"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Nema dobavljača za međukompanijske transakcije koji predstavljaju kompaniju {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Nema podataka o porezu po odbitku za trenutni datum knjiženja."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Nije postavljen račun za porez po odbitku za kompaniju {0} u vrsti poreza po odbitku {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Bez uslova"
@@ -32083,7 +32102,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Nema aktivne sastavnice za stavku {0}. Dostava po broju serije nije moguća"
@@ -32277,7 +32296,7 @@ msgstr "Broj radnih stanica"
msgid "No open Material Requests found for the given criteria."
msgstr "Nema otvorenih zahteva za nabavku za date kriterijume."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Ne postoji unos otvaranja početnog stanja maloprodaje za maloprodajni profil {0}."
@@ -32301,7 +32320,7 @@ msgstr "Nijedna neizmirena faktura ne zahteva revalorizaciju deviznog kursa"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Nije pronađen nijedan neizmireni {0} za {1} {2} koji kvalifikuje filtere koje ste naveli."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Nije pronađen nijedan čekajući zahtev za nabavku za povezivanje sa datim stavkama."
@@ -32372,7 +32391,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr "Nema dostupnih zaliha za ovu šaržu."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Unosi u knjigu zaliha nisu kreirani. Molimo Vas da pravilno podesite količinu ili stopu vrednovanja za stavke i da pokušate ponovo."
@@ -32405,7 +32424,7 @@ msgstr "Bez vrednosti"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Nema {0} za međukompanijske transakcije."
@@ -32450,8 +32469,8 @@ msgstr "Neprofitno"
msgid "Non stock items"
msgstr "Stavke van zaliha"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Dugoročne obaveze"
@@ -32552,7 +32571,7 @@ msgstr "Nije moguće pronaći najraniju fiskalnu godinu za datu kompaniju."
msgid "Not allow to set alternative item for the item {0}"
msgstr "Nije dozvoljeno postaviti alternativnu stavku za stavku {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Nije dozvoljeno kreirati računovodstvenu dimenziju za {0}"
@@ -32606,7 +32625,7 @@ msgstr "Napomena: Ukoliko želite da koristite gotov proizvod {0} kao sirovinu,
msgid "Note: Item {0} added multiple times"
msgstr "Napomena: Stavka {0} je dodata više puta"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Napomena: Unos uplate neće biti kreiran jer nije navedena 'Blagajna ili tekući račun'"
@@ -32614,7 +32633,7 @@ msgstr "Napomena: Unos uplate neće biti kreiran jer nije navedena 'Blagajna ili
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Napomena: Ovaj troškovni centar je grupa. Nije moguće napraviti računovodstvene unose protiv grupa."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Napomena: Da biste spojili stavke, kreirajte zasebno usklađivanje zaliha za stariju stavku {0}"
@@ -32797,6 +32816,11 @@ msgstr "Broj novog računa, biće uključen u naziv računa kao prefiks"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Broj novog troškovnog centra, biće uključen u naziv troškovnog centra kao prefiks"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32856,18 +32880,18 @@ msgstr "Vrednost odometra (poslednja)"
msgid "Offer Date"
msgstr "Datum ponude"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Kancelarijski pribor"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Troškovi održavanja kancelarije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Najam kancelarije"
@@ -32995,7 +33019,7 @@ msgstr "Uvod u zalihe!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Kada je postavljeno, ova faktura će biti na čekanju do ponovljenog datuma"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Kada je radni nalog zatvoren, ne može se ponovo pokrenuti."
@@ -33035,7 +33059,7 @@ msgstr "Podržani su samo 'Unosi plaćanja' koji su napravljeni protiv ovog avan
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Samo CSV i Excel fajlovi mogu biti korišćeni za uvoz podataka. Molimo Vas da proverite format fajla koji pokušavate da uvezete"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Dozvoljeni su isključivo CSV fajlovi"
@@ -33054,7 +33078,7 @@ msgstr "Izvrši samo odbitak poreza na višak iznosa "
msgid "Only Include Allocated Payments"
msgstr "Uključi samo raspoređene uplate"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Samo matični entitet može biti vrste {0}"
@@ -33091,7 +33115,7 @@ msgstr "Prilikom primene isključene naknade, samo depozit ili povlačenje sreds
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 označeno 'Finalni gotov proizvod' kada je omogućeno 'Praćenje poluproizvoda'."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Može se kreirati samo jedan {0} unos protiv radnog naloga {1}"
@@ -33309,8 +33333,8 @@ msgstr "Početno stanje = početak perioda, završno stanje = kraj perioda, kret
msgid "Opening Balance Details"
msgstr "Detalji početnog stanja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Početno stanje kapitala"
@@ -33333,7 +33357,7 @@ msgstr "Početni datum"
msgid "Opening Entry"
msgstr "Unos početnog stanja"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Unos početnog stanja ne može biti kreiran nakon što je kreiran dokument za zatvaranje perioda."
@@ -33366,7 +33390,7 @@ msgid "Opening Invoice Tool"
msgstr "Alat za unos početnih faktura"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Početna faktura ima prilagođavanje za zaokruživanje od {0}. Za knjiženje ovih vrednosti potreban je račun '{1}'. Molimo Vas da ga postavite u kompaniji: {2}. Ili možete omogućiti '{3}' da ne postavite nikakvo prilagođavanje za zaokruživanje."
@@ -33402,16 +33426,16 @@ msgstr "Početne izlazne fakture su kreirane."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Početni lager"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33429,12 +33453,15 @@ msgstr "Početna vrednost"
msgid "Opening and Closing"
msgstr "Otvaranje i zatvaranje"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Kreiranje početnog stanja zaliha je stavljeno u red čekanja i biće obrađeno u pozadini. Molimo Vas da proverite unos zaliha nakon određenog vremena."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Operativna komponenta"
@@ -33466,7 +33493,7 @@ msgstr "Operativni trošak (valuta kompanije)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Operativni trošak prema količini u sastavnici"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Operativni trošak prema radnom nalogu / sastavnici"
@@ -33509,15 +33536,15 @@ msgstr "Opis operacije"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ID operacije"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ID operacije"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33542,7 +33569,7 @@ msgstr "Broj reda operacije"
msgid "Operation Time"
msgstr "Vreme operacije"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Vreme operacije za operaciju {0} mora biti veće od 0"
@@ -33557,11 +33584,11 @@ msgstr "Za koliko gotovih proizvoda je operacija završena?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Vreme operacije ne zavisi od količine za proizvodnju"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operacija {0} je dodata više puta u radnom nalogu {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Operacija {0} ne pripada radnom nalogu {1}"
@@ -33577,9 +33604,9 @@ msgstr "Operacija {0} traje duže od bilo kojeg dostupnog radnog vremena na radn
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33752,7 +33779,7 @@ msgstr "Prilika {0} kreirana"
msgid "Optimize Route"
msgstr "Optimizuj rutu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "Opciono. Izaberite konkretan unos proizvodnje koji želite da poništite."
@@ -33902,7 +33929,7 @@ msgstr "Naručena količina"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Narudžbine"
@@ -34018,7 +34045,7 @@ msgstr "Unca/Galon (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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Izlazna količina"
@@ -34056,7 +34083,7 @@ msgstr "Van garancije"
msgid "Out of stock"
msgstr "Nema na stanju"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Zastareli unos početnog stanja maloprodaje"
@@ -34075,6 +34102,7 @@ msgstr "Izlazno plaćanje"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Izlazna cena"
@@ -34110,7 +34138,7 @@ msgstr "Neizmireno (valuta kompanije)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34120,7 +34148,7 @@ msgstr "Neizmireno (valuta kompanije)"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34180,17 +34208,22 @@ msgstr "Dozvola za fakturisanje preko limita je premašena za stavku ulazne fakt
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Dozvola za prekoračenje isporuke/prijema (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Dozvola za preuzimanje viška"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Prekoračenje prijema"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekoračenje prijema/isporuke od {0} {1} zanemareno za stavku {2} jer imate ulogu {3}."
@@ -34210,11 +34243,11 @@ msgstr "Dozvola za prekoračenje prenosa (%)"
msgid "Over Withheld"
msgstr "Prekomerno obračunat porez po odbitku"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Prekoračenje fakturisanja od {0} {1} je zanemareno za stavku {2} jer imate ulogu {3}."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Prekoračenje fakturisanja od {} je zanemareno jer imate ulogu {}."
@@ -34514,7 +34547,7 @@ msgstr "Selektor maloprodajne stavke"
msgid "POS Opening Entry"
msgstr "Unos početnog stanja maloprodaje"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Unos početnog stanja maloprodaje - {0} je zastareo. Zatvorite maloprodaju i kreirajte novi unos početnog stanja."
@@ -34535,7 +34568,7 @@ msgstr "Detalji unosa početnog stanja maloprodaje"
msgid "POS Opening Entry Exists"
msgstr "Unos početnog stanja maloprodaje već postoji"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Nedostaje unos početnog stanja maloprodaje"
@@ -34571,7 +34604,7 @@ msgstr "Metod plaćanja u maloprodaji"
msgid "POS Profile"
msgstr "Profil maloprodaje"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Profil maloprodaje - {0} ima više otvorenih unosa početnog stanja. Zatvorite ili otkažite postojeće unose pre nego što nastavite."
@@ -34589,11 +34622,11 @@ msgstr "Korisnik maloprodaje"
msgid "POS Profile doesn't match {}"
msgstr "Profil maloprodaje se ne poklapa sa {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Profil maloprodaje je obavezan da bi se ova faktura označila kao maloprodajna transakcija."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Profil maloprodaje je neophodan za unos"
@@ -34699,7 +34732,7 @@ msgstr "Upakovana stavka"
msgid "Packed Items"
msgstr "Upakovane stavke"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Upakovane stavke ne mogu biti deo internog prenosa"
@@ -34736,7 +34769,7 @@ msgstr "Dokument liste pakovanja"
msgid "Packing Slip Item"
msgstr "Stavka na dokumentu liste pakovanja"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Dokument(a) liste pakovanja je otkazan"
@@ -34777,7 +34810,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34843,7 +34876,7 @@ msgid "Paid To Account Type"
msgstr "Plaćeno na vrstu računa"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Plaćeni iznos i iznos otpisivanja ne mogu biti veći od ukupnog iznosa"
@@ -34937,7 +34970,7 @@ msgstr "Matična šarža"
msgid "Parent Company"
msgstr "Matična kompanija"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Matična kompanija mora biti grupna kompanija"
@@ -35064,7 +35097,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Delimično prenesen materijal"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Delimično plaćanje u maloprodajnim transakcijama nije dozvoljeno."
@@ -35277,7 +35310,7 @@ msgstr "Milioniti deo"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35304,7 +35337,7 @@ msgstr "Stranka"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Račun stranke"
@@ -35337,7 +35370,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Broj računa stranke (Bankarski izvod)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Valuta računa stranke {0} ({1}) i valuta dokumenta ({2}) treba da bude ista"
@@ -35489,7 +35522,7 @@ msgstr "Specifična stavka 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35598,7 +35631,7 @@ msgstr "Prethodni događaji"
msgid "Pause"
msgstr "Pauza"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Pauziraj posao"
@@ -35649,7 +35682,7 @@ msgid "Payable"
msgstr "Plativ"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35683,7 +35716,7 @@ msgstr "Podešavanje platioca"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35830,7 +35863,7 @@ msgstr "Unos uplate je izmenjen nakon što ste ga povukli. Molimo Vas da ga pono
msgid "Payment Entry is already created"
msgstr "Unos uplate je već kreiran"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Unos uplate {0} je povezan sa narudžbinom {1}, proverite da li treba da bude povučen kao avans u ovoj fakturi."
@@ -36055,7 +36088,7 @@ msgstr "Reference plaćanja"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36120,7 +36153,7 @@ msgstr "Zahtevi za plaćanje kreirani iz izlazne ili ulazne fakture biće ekspli
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36149,7 +36182,7 @@ msgstr "Rasporedi plaćanja"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36205,6 +36238,7 @@ msgstr "Status uslova plaćanja za prodajnu porudžbinu"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36219,6 +36253,7 @@ msgstr "Status uslova plaćanja za prodajnu porudžbinu"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36276,7 +36311,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Metode plaćanja su obavezne. Molimo Vas da odabarete najmanje jednu metodu plaćanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Metode plaćanja su osvežene. Molimo Vas da ih pregledate pre nastavka."
@@ -36351,8 +36386,8 @@ msgstr "Uplate su ažurirane."
msgid "Payroll Entry"
msgstr "Unos obračuna zarade"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Obaveze prema zaradama"
@@ -36399,10 +36434,14 @@ msgstr "Aktivnosti na čekanju"
msgid "Pending Amount"
msgstr "Iznos na čekanju"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36411,9 +36450,18 @@ 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:273
msgid "Pending Quantity"
msgstr "Količina na čekanju"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36443,6 +36491,14 @@ msgstr "Aktivnosti na čekanju za danas"
msgid "Pending processing"
msgstr "Na čekanju za obradu"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Penzioni fondovi"
@@ -36552,7 +36608,7 @@ msgstr "Analiza percepcije"
msgid "Period Based On"
msgstr "Period zasnovan na"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Period zatvoren"
@@ -37116,8 +37172,8 @@ msgstr "Kontrolna tabla postrojenja"
msgid "Plant Floor"
msgstr "Proizvodni prostor"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Postrojenja i mašine"
@@ -37153,7 +37209,7 @@ msgstr "Molimo Vas da postavite prioritet"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Molimo Vas da postavite grupu dobavljača u podešavanjima za nabavku."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Molimo Vas da navedete račun"
@@ -37201,7 +37257,7 @@ msgstr "Molimo Vas da dodate kolonu za tekući račun"
msgid "Please add the account to root level Company - {0}"
msgstr "Molimo Vas da dodate račun za osnovni nivo kompanije - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Molimo Vas da dodate račun za osnovni nivo kompanije - {}"
@@ -37209,7 +37265,7 @@ msgstr "Molimo Vas da dodate račun za osnovni nivo kompanije - {}"
msgid "Please add {1} role to user {0}."
msgstr "Molimo Vas da dodate ulogu {1} korisniku {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Molimo Vas da prilagodite količinu ili izmenite {0} za nastavak."
@@ -37217,7 +37273,7 @@ msgstr "Molimo Vas da prilagodite količinu ili izmenite {0} za nastavak."
msgid "Please attach CSV file"
msgstr "Molimo Vas da priložite CSV fajl"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Molimo Vas da otkažete i izmenite unos uplate"
@@ -37251,7 +37307,7 @@ msgstr "Molimo Vas da proverite operativne troškove ili sa operacijama ili sa t
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "Molimo Vas da označite opciju 'Aktiviraj broj serije i šarže za stavku' u dokumentu {0} kako biste omogućili paket serije / šarže za tu stavku."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Molimo Vas da proverite poruke o greškama, preduzmite potrebne korake da ispravite grešku i zatim ponovo pokrenite proces ponovne obrade."
@@ -37276,11 +37332,15 @@ msgstr "Molimo Vas da kliknete na 'Generiši raspored' da preuzmete broj serije
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Molimo Vas da klikente na 'Generiši raspored' da biste dobili raspored"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Molimo Vas da kontaktirate bilo kog od sledećih korisnika da biste proširili kreditni limit za {0}: {1}"
@@ -37288,11 +37348,11 @@ msgstr "Molimo Vas da kontaktirate bilo kog od sledećih korisnika da biste pro
msgid "Please contact any of the following users to {} this transaction."
msgstr "Molimo Vas da kontaktirate bilo koga od sledećih korisnika da biste {} ovu transakciju."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Molimo Vas da kontakirate svog administratora da biste proširili kreditne limite za {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Molimo Vas da pretvorite matični račun u odgovarajućoj zavisnoj kompaniji u grupni račun."
@@ -37304,11 +37364,11 @@ msgstr "Molimo Vas da kreirate kupca iz potencijalnog klijenta {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Molimo Vas da kreirate dokument zavisnih troškova nabavke za fakture koje imaju omogućenu opciju 'Ažuriraj zalihe'."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Molimo Vas da kreirate novu računovodstvenu dimenziju ukoliko je potrebno."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Molimo Vas da kreirate nabavku iz interne prodaje ili iz samog dokumenta o isporuci"
@@ -37316,11 +37376,11 @@ msgstr "Molimo Vas da kreirate nabavku iz interne prodaje ili iz samog dokumenta
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Molimo Vas da kreirate prijemnicu nabavke ili ulaznu fakturu za stavku {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Molimo Vas da obrišete proizvodnu kombinaciju {0}, pre nego što spojite {1} u {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Molimo Vas da privremeno onemogućite radni tok za nalog knjiženja {0}"
@@ -37328,7 +37388,7 @@ msgstr "Molimo Vas da privremeno onemogućite radni tok za nalog knjiženja {0}"
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Molimo Vas da ne knjižite trošak više različitih stavki imovine na jednu stavku imovine."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Molimo Vas da ne kreirate više od 500 stavki odjednom"
@@ -37352,7 +37412,7 @@ msgstr "Molimo Vas da omogućite samo ukoliko razumete posledice omogućavanja o
msgid "Please enable {0} in the {1}."
msgstr "Molimo Vas da omogućite {0} u {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Molimo Vas da omogućite {} u {} da biste omogućili istu stavku u više redova"
@@ -37364,20 +37424,20 @@ msgstr "Molimo Vas da se uverite da je račun {0} račun u bilansu stanja. Može
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 "Molimo Vas da se uverite da je račun {0} {1} račun obaveza. Možete promeniti vrstu računa u obaveze ili izabrati drugi račun."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Molimo Vas da vodite računa da je račun {} račun u bilansu stanja."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Molimo Vas da vodite računa da {} račun {} predstavlja račun potraživanja."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Molimo Vas da unesete račun razlike ili da postavite podrazumevani račun za prilagođvanje zaliha za kompaniju {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Molimo Vas da unesete račun za kusur"
@@ -37385,15 +37445,15 @@ msgstr "Molimo Vas da unesete račun za kusur"
msgid "Please enter Approving Role or Approving User"
msgstr "Molimo Vas da unesete ulogu odobravanja ili korisnika koji odobrava"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Molimo Vas da unesete broj šarže"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Molimo Vas da unesete troškovni centar"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Molimo Vas da unesete datum isporuke"
@@ -37401,7 +37461,7 @@ msgstr "Molimo Vas da unesete datum isporuke"
msgid "Please enter Employee Id of this sales person"
msgstr "Molimo Vas da unesete ID zaposlenog lica za ovog prodavca"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Molimo Vas da unesete račun rashoda"
@@ -37410,7 +37470,7 @@ msgstr "Molimo Vas da unesete račun rashoda"
msgid "Please enter Item Code to get Batch Number"
msgstr "Molimo Vas da unesete šifru stavke da biste dobili broj šarže"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Molimo Vas da unesete šifru stavke da biste dobili broj šarže"
@@ -37426,7 +37486,7 @@ msgstr "Molimo Vas da prvo unesete detalje održavanja"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Molimo Vas da unesete planiranu količinu za stavku {0} u redu {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Molimo Vas da prvo unesete proizvodnu stavku"
@@ -37446,7 +37506,7 @@ msgstr "Molimo Vas da unesete datum reference"
msgid "Please enter Root Type for account- {0}"
msgstr "Molimo Vas da unesete vrstu glavnog računa za račun - {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Molimo Vas da unesete broj serije"
@@ -37463,7 +37523,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Molimo Vas da unesete skladište i datum"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Molimo Vas da unesete račun za otpis"
@@ -37483,7 +37543,7 @@ msgstr "Molimo Vas da unesete najmanje jedan datum i količinu isporuke"
msgid "Please enter company name first"
msgstr "Molimo Vas da prvo unesete naziv kompanije"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Molimo Vas da unesete podrazumevanu valutu u master podacima o kompaniji"
@@ -37511,7 +37571,7 @@ msgstr "Molimo Vas da unesete datum prestanka."
msgid "Please enter serial nos"
msgstr "Molimo Vas da unesete serijske brojeve"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Molimo Vas da unesete naziv kompanije da biste potvrdili"
@@ -37579,11 +37639,11 @@ msgstr "Molimo Vas da se uverite da zaposlena lica iznad izveštavaju drugom akt
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Molimo Vas da se uverite da fajl koji koristite ima kolonu 'Matični račun' u zaglavlju."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Molimo Vas da se uverite da li zaista želite da obrišete transakcije za ovu kompaniju. Vaši master podaci će ostati isti. Ova akcija se ne može poništiti."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Molimo Vas da navedete 'Jedinica mere za težinu' zajedno sa težinom."
@@ -37642,7 +37702,7 @@ msgstr "Molimo Vas da izaberete Vrstu šablona da preuzmete šablon"
msgid "Please select Apply Discount On"
msgstr "Molimo Vas da izaberete na šta će se primeniti popust"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Molimo Vas da izaberete sastavnicu za stavku {0}"
@@ -37658,7 +37718,7 @@ msgstr "Molimo Vas da izaberete tekući račun"
msgid "Please select Category first"
msgstr "Molimo Vas da prvo izaberete kategoriju"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37688,7 +37748,7 @@ msgstr "Molimo Vas da prvo izaberete datum završetka za evidenciju održavanja
msgid "Please select Customer first"
msgstr "Molimo Vas da prvo izaberete kupca"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Molimo Vas da izaberete postojeću kompaniju za kreiranje kontnog okvira"
@@ -37697,8 +37757,8 @@ msgstr "Molimo Vas da izaberete postojeću kompaniju za kreiranje kontnog okvira
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Molimo Vas da izaberete gotov proizvod za uslužnu stavku {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Molimo Vas da prvo izaberete šifru stavke"
@@ -37730,11 +37790,11 @@ msgstr "Molimo Vas da prvo izaberete datum knjiženja"
msgid "Please select Price List"
msgstr "Molimo Vas da izaberete cenovnik"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Molimo Vas da izaberete količinu za stavku {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Molimo Vas da prvo izaberete skladište za zadržane uzorke u podešavanjima zaliha"
@@ -37750,7 +37810,7 @@ msgstr "Molimo Vas da izaberete datum početka i datum završetka za stavku {0}"
msgid "Please select Stock Asset Account"
msgstr "Molimo Vas da izaberete račun sredstava zaliha"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Molimo Vas da izaberete račun nerealizovanog dobitka/gubitka ili da dodate podrazumevani račun nerealizovanog dobitka/gubitka za kompaniju {0}"
@@ -37767,7 +37827,7 @@ msgstr "Molimo Vas da izaberete kompaniju"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Molimo Vas da prvo izaberete kompaniju."
@@ -37791,7 +37851,7 @@ msgstr "Molimo Vas da izaberete dobavljača"
msgid "Please select a Warehouse"
msgstr "Molimo Vas da izaberete skladište"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Molimo Vas da prvo izaberete radni nalog."
@@ -37864,11 +37924,15 @@ msgstr "Molimo Vas da izaberete vrednost za {0} ponudu za {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Molimo Vas da izaberete šifru stavke pre nego što postavite skladište."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Molimo Vas da izaberete barem jedan filter: Šifra stavke, šarža ili broj serije."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37888,7 +37952,7 @@ msgstr "Molimo Vas da izaberete barem jedan raspored."
msgid "Please select atleast one item to continue"
msgstr "Molimo Vas da izaberete barem jednu stavku da biste nastavili"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Molimo Vas da izaberete barem jednu operaciju za kreiranje radne kartice"
@@ -37946,7 +38010,7 @@ msgstr "Molimo Vas da izaberete kompaniju"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Molimo Vas da izaberete vrstu programa sa više nivoa za više pravila naplate."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Molimo Vas da prvo izaberete skladište"
@@ -37975,7 +38039,7 @@ msgstr "Molimo Vas da izaberete validnu vrstu dokumenta."
msgid "Please select weekly off day"
msgstr "Molimo Vas da izaberete nedeljni dan odmora"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Molimo Vas da prvo izaberete {0}"
@@ -37984,11 +38048,11 @@ msgstr "Molimo Vas da prvo izaberete {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Molimo Vas da postavite 'Primeni dodatni popust na'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Molimo Vas da postavite 'Troškovni centar amortizacije imovine' u kompaniji {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Molimo Vas da postavite 'Račun prihod/rashod prilikom otuđenja imovine' u kompaniji {0}"
@@ -38000,7 +38064,7 @@ msgstr "Molimo Vas da postavite '{0}' u kompaniji: {1}"
msgid "Please set Account"
msgstr "Molimo Vas da postavite račun"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Molimo Vas da postavite račun za kusur"
@@ -38030,7 +38094,7 @@ msgstr "Molimo Vas da postavite kompaniju"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Molimo Vas da podesite adresu kupca kako bi se utvrdilo da li je transakcija izvoz."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Molimo Vas da postavite račun vezana za amortizaciju u kategoriji imovine {0} ili u kompaniji {1}"
@@ -38048,7 +38112,7 @@ msgstr "Molimo Vas da postavite fiskalnu šifru za kupca '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Molimo Vas da postavite fiskalnu šifru za javnu upravu '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Molimo Vas da postavite račun osnovnih sredstava u kategoriji imovine {0}"
@@ -38094,7 +38158,7 @@ msgstr "Molimo Vas da postavite kompaniju"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Molimo Vas da postavite troškovni centar za imovinu ili troškovni centar amortizacije imovine za kompaniju {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Molimo Vas da postavite podrazumevanu listu praznika za kompaniju {0}"
@@ -38131,23 +38195,23 @@ msgstr "Molimo Vas da postavite bar jedan red u tabeli poreza i taksi"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Molimo Vas da postavite ili poresku ili fiskalnu šifru za kompaniju {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinu plaćanja {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinu plaćanja {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Molimo Vas da postavite kao podrazumevano blagajnu ili tekući račun u načinima plaćanja {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Molimo Vas da postavite podrazumevani račun prihoda/rashoda kursnih razlika u kompaniji {}"
@@ -38176,7 +38240,7 @@ msgstr "Molimo Vas da postavite podrazumevani {0} u kompaniji {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Molimo Vas da postavite filter na osnovu stavke ili skladišta"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Molimo Vas da postavite jedno od sledećeg:"
@@ -38184,7 +38248,7 @@ msgstr "Molimo Vas da postavite jedno od sledećeg:"
msgid "Please set opening number of booked depreciations"
msgstr "Molimo Vas da unesete početni broj knjiženih amortizacija"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Molimo Vas da postavite ponavljanje nakon čuvanja"
@@ -38196,15 +38260,15 @@ msgstr "Molimo Vas da postavite adresu kupca"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Molimo Vas da postavite podrazumevani troškovni centar u kompaniji {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Molimo Vas da prvo postavite šifru stavke"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Molimo Vas da postavite ciljno skladište u radnoj kartici"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Molimo Vas da postavite skladište nedovršene proizvodnje u radnoj kartici"
@@ -38243,7 +38307,7 @@ msgstr "Molimo Vas da postavite {0} za izraditelja sastavnice {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Molimo Vas da postavite {0} u kompaniji {1} za evidentiranje prihoda/rashoda kursnih razlika"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Molimo Vas da postavite {0} u {1}, isti račun koji je korišćen u originalnoj fakturi {2}."
@@ -38265,7 +38329,7 @@ msgstr "Molimo Vas da precizirate kompaniju"
msgid "Please specify Company to proceed"
msgstr "Molimo Vas da precizirate kompaniju da biste nastavili"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Molimo Vas da precizirate validan ID red za red {0} u tabeli {1}"
@@ -38278,7 +38342,7 @@ msgstr "Molimo Vas precizirajte {0}."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Molimo Vas da precizirate barem jedan atribut u tabeli atributa"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Molimo Vas da precizirate ili količinu ili stopu vrednovanja ili oba"
@@ -38383,8 +38447,8 @@ msgstr "Niz putanje unosa"
msgid "Post Title Key"
msgstr "Ključ naziva putanje unosa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Poštanski troškovi"
@@ -38449,7 +38513,7 @@ msgstr "Objavljeno na"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38467,7 +38531,7 @@ msgstr "Objavljeno na"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38589,10 +38653,6 @@ msgstr "Datum i vreme knjiženja"
msgid "Posting Time"
msgstr "Vreme knjiženja"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Datum i vreme knjiženja su obavezni"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38666,18 +38726,23 @@ msgstr "Powered by {0}"
msgid "Pre Sales"
msgstr "Pre Sales"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Preferenca"
@@ -38850,6 +38915,7 @@ msgstr "Kategorije popusta na cenu"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38873,6 +38939,7 @@ msgstr "Kategorije popusta na cenu"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38924,7 +38991,7 @@ msgstr "Zemlja cenovnika"
msgid "Price List Currency"
msgstr "Valuta cenovnika"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Valuta cenovnika nije izabrana"
@@ -39279,7 +39346,7 @@ msgstr "Štampaj priznanicu"
msgid "Print Receipt on Order Complete"
msgstr "Štampaj potvrdu kada je narudžbina završena"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Štampaj sastavnicu nakon količine"
@@ -39288,8 +39355,8 @@ msgstr "Štampaj sastavnicu nakon količine"
msgid "Print Without Amount"
msgstr "Štampaj bez iznosa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Štampanje i kancelarijski materijal"
@@ -39297,7 +39364,7 @@ msgstr "Štampanje i kancelarijski materijal"
msgid "Print settings updated in respective print format"
msgstr "Postavke štampe su ažurirane u odgovarajućem formatu štampe"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Štampaj poreze sa iznosom nula"
@@ -39400,10 +39467,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Procedura"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Procedure su uklonjene"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39457,7 +39520,7 @@ msgstr "Procenat gubitka u procesu ne može biti veći od 100"
msgid "Process Loss Qty"
msgstr "Količina gubitka u procesu"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Količina gubitka u procesu"
@@ -39538,6 +39601,10 @@ msgstr "Obrada pretplate"
msgid "Process in Single Transaction"
msgstr "Obrada u jednoj transakciji"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39633,8 +39700,8 @@ msgstr "Proizvod"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39699,7 +39766,7 @@ msgstr "ID cene proizvoda"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Proizvodnja"
@@ -39913,7 +39980,7 @@ msgstr "Procenat % napretka za zadatak ne može biti veći od 100."
msgid "Progress (%)"
msgstr "Napredak (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Poziv za saradnju na projektu"
@@ -39957,7 +40024,7 @@ msgstr "Status projekta"
msgid "Project Summary"
msgstr "Rezime projekta"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Rezime projekta za {0}"
@@ -40088,7 +40155,7 @@ msgstr "Očekivana količina"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40234,7 +40301,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Potencijalni kupci uključeni, ali nisu konvertovani"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Zaštićen DocType"
@@ -40249,7 +40316,7 @@ msgstr "Unesite imejl adresu registrovanu u kompaniji"
msgid "Providing"
msgstr "Obezbeđivanje"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Privremeni račun"
@@ -40321,8 +40388,9 @@ msgstr "Objavljivanje"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40645,7 +40713,7 @@ msgstr "Nabavna porudžbina {0} je kreirana"
msgid "Purchase Order {0} is not submitted"
msgstr "Nabavna porudžbina {0} nije podneta"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Nabavne porudžbine"
@@ -40660,7 +40728,7 @@ msgstr "Broj nabavnih porudžbina"
msgid "Purchase Orders Items Overdue"
msgstr "Zakasnele stavke nabavnih porudžbina"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Nabavne porudžbine nisu dozvoljene za {0} zbog statusa u tablici za ocenjivanje {1}."
@@ -40675,7 +40743,7 @@ msgstr "Nabavne porudžbine za fakturisanje"
msgid "Purchase Orders to Receive"
msgstr "Nabavne porudžbine za prijem"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Nabavne porudžbine {0} nisu povezane"
@@ -40809,7 +40877,7 @@ msgstr "Povraćaj nabavke"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Šablon poreza na nabavku"
@@ -40907,6 +40975,7 @@ msgstr "Nabavljanje"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40916,10 +40985,6 @@ msgstr "Nabavljanje"
msgid "Purpose"
msgstr "Svrha"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Svrha mora biti jedan od {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40975,6 +41040,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41023,6 +41089,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41131,11 +41198,11 @@ msgstr "Količina po jedinici"
msgid "Qty To Manufacture"
msgstr "Količina za proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Količina za proizvodnju ({0}) ne može biti decimalni broj za jedinicu mere {2}. Da biste omogućili ovo, onemogućite '{1}' u jedinici mere {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 radnoj kartici ne može biti veća od količine za proizvodnju u radnom nalogu za operaciju {0}. Rešenje: Možete smanjiti količinu za proizvodnju u radnoj kartici ili podesiti 'Procenat prekomerne proizvodnje za radni nalog' u {1}."
@@ -41186,8 +41253,8 @@ msgstr "Količina prema skladišnoj jedinici mere"
msgid "Qty for which recursion isn't applicable."
msgstr "Količina za koju rekurzija nije primenjiva."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Količina za {0}"
@@ -41242,8 +41309,8 @@ msgstr "Količina za demontažu"
msgid "Qty to Fetch"
msgstr "Količina za preuzimanje"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Količina za proizvodnju"
@@ -41479,17 +41546,17 @@ msgstr "Šablon inspekcije kvaliteta"
msgid "Quality Inspection Template Name"
msgstr "Naziv šablona inspekcije kvaliteta"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Inspekcija kvaliteta je obavezna za stavku {0} pre završetka radne kartice {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Inspekcija kvaliteta {0} nije podneta za stavku: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Inspekcija kvaliteta {0} je odbijena za stavku: {1}"
@@ -41503,7 +41570,7 @@ msgstr "Inspekcije kvaliteta"
msgid "Quality Inspections"
msgstr "Inspekcije kvaliteta"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Menadžment kvaliteta"
@@ -41635,7 +41702,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41770,7 +41837,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:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Količina ne sme biti veća od {0}"
@@ -41780,21 +41847,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Potrebna količina za stavku {0} u redu {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Količina treba biti veća od 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Količina za proizvodnju"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Količina za proizvodnju ne može biti nula za operaciju {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Količina za proizvodnju mora biti veća od 0."
@@ -41817,7 +41884,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Kvartal {0} {1}"
@@ -41936,11 +42003,11 @@ msgstr "Ponuda za"
msgid "Quotation Trends"
msgstr "Trendovi ponuda"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Ponuda {0} je otkazana"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Ponuda {0} nije vrste {1}"
@@ -42247,7 +42314,7 @@ msgstr "Kurs po kojem se valuta dobavljača konvertuje u osnovnu valutu kompanij
msgid "Rate at which this tax is applied"
msgstr "Stopa po kojoj se porez primenjuje"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Cena stavke '{}' se ne može menjati"
@@ -42413,7 +42480,7 @@ msgstr "Utrošene sirovine"
msgid "Raw Materials Consumption"
msgstr "Utrošak sirovina"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Nedostaju sirovine"
@@ -42452,12 +42519,6 @@ msgstr "Sirovine ne mogu biti prazne."
msgid "Raw Materials to Customer"
msgstr "Sirovine ka kupcu"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Neobrađeni SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42466,7 +42527,7 @@ msgstr "Utrošena količina sirovina biće proverena na osnovu potrebne količin
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42647,7 +42708,7 @@ msgid "Receivable / Payable Account"
msgstr "Račun potraživanja / obaveza"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43108,7 +43169,7 @@ msgstr "Referenca #"
msgid "Reference #{0} dated {1}"
msgstr "Referenca #{0} od {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Datum reference za popust na raniju uplatu"
@@ -43272,11 +43333,11 @@ msgstr "Referenca: {0}, šifra stavke: {1} i kupac: {2}"
msgid "References"
msgstr "Reference"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Reference za izlazne fakture su nepotpune"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Reference za prodajne porudžbine su nepotpune"
@@ -43438,7 +43499,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Preostali saldo"
@@ -43496,7 +43557,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43560,7 +43621,7 @@ msgstr "Preimenuj vrednost atributa u atributu stavke."
msgid "Rename Log"
msgstr "Evidencija preimenovanja"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Preimenovanje nije dozvoljeno"
@@ -43577,7 +43638,7 @@ msgstr "Zadaci za preimenovanje doctype {0} su stavljeni u red čekanja."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Zadaci za preimenovanje doctype {0} nisu stavljeni u red čekanja."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Preimenovanje je dozvoljeno samo preko matične kompanije {0}, kako bi se izbegla neusklađenost."
@@ -43701,7 +43762,7 @@ msgstr "Šablon izveštaja"
msgid "Report Type is mandatory"
msgstr "Vrsta izveštaja je obavezna"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Prijavi problem"
@@ -43946,7 +44007,7 @@ msgstr "Zahtev za informacijama"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44127,7 +44188,7 @@ msgstr "Zahteva ispunjenje"
msgid "Research"
msgstr "Istraživanje"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Istraživanje i razvoj"
@@ -44172,7 +44233,7 @@ msgstr "Rezervacija"
msgid "Reservation Based On"
msgstr "Rezervacija zasnovana na"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44216,7 +44277,7 @@ msgstr "Rezerviši za podsklopove"
msgid "Reserved"
msgstr "Rezervisano"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Konflikt rezervisane šarže"
@@ -44286,14 +44347,14 @@ msgstr "Rezervisana količina"
msgid "Reserved Quantity for Production"
msgstr "Rezervisana količina za proizvodnju"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Rezervisani broj serije."
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44302,13 +44363,13 @@ msgstr "Rezervisani broj serije."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Rezervisane zalihe za šaržu"
@@ -44574,7 +44635,7 @@ msgstr "Polje za naslov rezultata"
msgid "Resume"
msgstr "Biografija"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Nastaviti posao"
@@ -44599,8 +44660,8 @@ msgstr "Maloprodaja"
msgid "Retain Sample"
msgstr "Zadržani uzorak"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Neraspoređena dobit"
@@ -44675,7 +44736,7 @@ msgstr "Povrat po osnovu prijemnice nabavke"
msgid "Return Against Subcontracting Receipt"
msgstr "Povrat po osnovu prijemnice podugovaranja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Povraćaj komponenti"
@@ -44711,7 +44772,7 @@ msgstr "Količina za povraćaj iz skladišta odbijenih zaliha"
msgid "Return Raw Material to Customer"
msgstr "Povraćaj sirovina kupcu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Reklamaciona faktura za imovinu je otkazana"
@@ -44809,8 +44870,8 @@ msgstr "Povraćaji"
msgid "Revaluation Journals"
msgstr "Dnevnik revalorizacije"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Revalorizacijski višak"
@@ -45042,7 +45103,7 @@ msgstr "Vrsta osnovnog nivoa za {0} mora biti jedan od sledećih: imovina, obave
msgid "Root Type is mandatory"
msgstr "Vrsta osnovnog nivoa je obavezna"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Osnovni nivo se ne može uređivati."
@@ -45061,8 +45122,8 @@ msgstr "Zaokruživanje besplatne količine"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45242,21 +45303,21 @@ msgstr "Red # {0}: Cena ne može biti veća od cene korišćene u {1} {2}"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Red # {0}: Vraćena stavka {1} ne postoji u {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Red #1: ID sekvence mora biti 1 za operaciju {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Red #{0} (Evidencija plaćanja): Iznos mora biti negativan"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Red #{0} (Evidencija plaćanja): Iznos mora biti pozitivan"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Red #{0}: Unos za ponovnu narudžbinu već postoji za skladište {1} sa vrstom ponovne narudžbine {2}."
@@ -45277,7 +45338,7 @@ msgstr "Red #{0}: Skladište prihvaćenih zaliha i Skladište odbijenih zaliha n
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Red #{0}: Skladište prihvaćenih zaliha je obavezno za prihvaćenu stavku {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Red #{0}: Račun {1} ne pripada kompaniji {2}"
@@ -45338,31 +45399,31 @@ msgstr "Red #{0}: Nije moguće otkazati ovaj unos zaliha jer vraćena količina
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Red #{0}: Nije moguće kreirati unos sa različitim vezama oporezivog dokumenta i dokumenta za porez po odbitku."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Red #{0}: Ne može se obrisati stavka {1} koja je već fakturisana."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Red #{0}: Ne može se obrisati stavka {1} koja je već isporučena"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Red #{0}: Ne može se obrisati stavka {1} koja je već primljena"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Red #{0}: Ne može se obrisati stavka {1} kojoj je dodeljen radni nalog."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Red #{0}: Nije moguće obrisati stavku {1} jer je već poručena u okviru ove prodajne porudžbine."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Red #{0}: Nije moguće postaviti cenu ukoliko je fakturisani iznos veći od iznosa za stavku {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Red #{0}: Ne može se preneti više od potrebne količine {1} za stavku {2} prema radnoj kartici {3}"
@@ -45412,11 +45473,11 @@ msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} povezana sa stavkom nal
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne može biti dodata više puta u procesu prijema iz podugovaranja."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne može biti dodata više puta."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne postoji u tabeli potrebnih stavki povezanoj sa nalogom za prijem iz podugovaranja."
@@ -45424,7 +45485,7 @@ msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} ne postoji u tabeli pot
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} premašuje dostupnu količinu putem naloga za prijem iz podugovaranja"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} nema dovoljnu količinu u nalogu za prijem iz podugovaranja. Dostupna količina je {2}."
@@ -45441,7 +45502,7 @@ msgstr "Red #{0}: Stavka obezbeđena od strane kupca {1} nije deo radnog naloga
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Red #{0}: Datumi se preklapaju sa drugim redom u grupi {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Red #{0}: Podrazumevana sastavnica nije pronađena za gotov proizvod {1}"
@@ -45465,22 +45526,22 @@ msgstr "Red #{0}: Račun rashoda nije postavljen za stavku {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Red #{0}: Račun rashoda {1} nije važeći za ulaznu fakturu {2}. Dozvoljeni su samo računi rashoda za stavke van zaliha."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Red #{0}: Količina gotovih proizvoda ne može biti nula"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Red #{0}: Gotov proizvod nije određen za uslužnu stavku {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Red #{0}: Gotov proizvod {1} mora biti podugovorena stavka"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Red #{0}: Gotov proizvod mora biti {1}"
@@ -45509,7 +45570,7 @@ msgstr "Red #{0}: Učestalost amortizacije mora biti veća od nule"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Red #{0}: Datum početka ne može biti pre datuma završetka"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Red #{0}: Polja za vreme početka i vreme završetka su obavezna"
@@ -45517,7 +45578,7 @@ msgstr "Red #{0}: Polja za vreme početka i vreme završetka su obavezna"
msgid "Row #{0}: Item added"
msgstr "Red #{0}: Stavka je dodata"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Red #{0}: Stavka {1} ne može se preneti u količini većoj od {2} u odnosu na {3} {4}"
@@ -45545,7 +45606,7 @@ msgstr "Red #{0}: Stavka {1} u skladištu {2}: Dostupno {3}, potrebno {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Red #{0}: Stavka {1} nije stavka obezbeđena od strane kupca."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Red #{0}: Stavka {1} nije stavka serije / šarže. Ne može imati broj serije / šarže."
@@ -45586,7 +45647,7 @@ msgstr "Red #{0}: Sledeći datum amortizacije ne može biti pre datuma dostupnos
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Red #{0}: Sledeći datum amortizacije ne može biti pre datuma nabavke"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Red #{0}: Nije dozvoljeno promeniti dobavljača jer nabavna porudžbina već postoji"
@@ -45598,10 +45659,6 @@ msgstr "Red #{0}: Samo {1} je dostupno za rezervaciju za stavku {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Red #{0}: Početna akumulirana amortizacija mora biti manja od ili jednaka {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Red #{0}: Operacija {1} nije završena za {2} količine gotovih proizvoda u radnom nalogu {3}. Molimo Vas da ažurirate status operacije putem radne kartice {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45623,11 +45680,11 @@ msgstr "Red #{0}: Molimo Vas da izaberete stavku gotovog proizvoda uz koju će s
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Red #{0}: Molimo Vas da izaberete skladište podsklopova"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Red #{0}: Molimo Vas da postavite količinu za naručivanje"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Red #{0}: Molimo Vas da ažurirate račun razgraničenih prihoda/rashoda u redu stavke ili podrazumevani račun u master podacima kompanije"
@@ -45649,15 +45706,15 @@ msgstr "Red #{0}: Količina mora biti pozitivan broj"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Red #{0}: Količina treba da bude manja ili jednaka dostupnoj količini za rezervaciju (stvarna količina - rezervisana količina) {1} za stavku {2} protiv šarže {3} u skladištu {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Red #{0}: Inspekcija kvaliteta je neophodna za stavku {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Red #{0}: Inspekcija kvaliteta {1} nije podneta za stavku: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Red #{0}: Inspekcija kvaliteta {1} je odbijena za stavku {2}"
@@ -45665,7 +45722,7 @@ msgstr "Red #{0}: Inspekcija kvaliteta {1} je odbijena za stavku {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 mora biti pozitivan broj. Molimo Vas da povećate količinu ili uklonite stavku {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za stavku {1} ne može biti nula."
@@ -45681,18 +45738,18 @@ msgstr "Red #{0}: Količina mora biti veća od 0 za {1} stavku {2}"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Red #{0}: Količina za rezervaciju za stavku {1} mora biti veća od 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Red #{0}: Cena mora biti ista kao {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Red #{0}: Vrsta referentnog dokumenta mora biti jedna od sledećih: nabavna porudžbina, ulazna faktura, nalog knjiženja ili opomena"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Red #{0}: Vrsta referentnog dokumenta mora biti jedna od sledećih: prodajna porudžbina, izlazna faktura, nalog knjiženja ili opomena"
@@ -45734,7 +45791,7 @@ msgstr "Red #{0}: Prodajna cena za stavku {1} je niža od njene {2}.\n"
"\t\t\t\t\tmožete onemogućiti '{5}' u {6} da biste zaobišli\n"
" \t\t\t\t\tovu proveru."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
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}."
@@ -45754,19 +45811,19 @@ msgstr "Red #{0}: Broj serije {1} je već izabran."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Red #{0}: Broj serije {1} nije deo povezanog naloga za prijem iz podugovaranja. Molimo Vas da izaberete ispravan broj serije."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Red #{0}: Datum završetka usluge ne može biti pre datuma knjiženja fakture"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Red #{0}: Datum početka usluge ne može biti veći od datuma završetka usluge"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Red #{0}: Datum početka i datum završetka usluge su obavezni za vremensko razgraničenje"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Red #{0}: Postavite dobavljača za stavku {1}"
@@ -45778,19 +45835,19 @@ msgstr "Red #{0}: S obzirom da je 'Praćenje poluproizvoda' omogućeno, sastavni
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Red #{0}: Izvorno skladište mora biti isto kao skladište kupca {1} iz povezanog naloga za prijem iz podugovaranja"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Red #{0}: Izvorno skladište {1} za stavku {2} ne može biti skladište kupca."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
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 stavku {2} mora biti isto kao izvorno skladište {3} u radnom nalogu."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Red #{0}: Izvorno i ciljno skladište ne mogu biti isto prilikom prenosa materijala"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Red #{0}: Izvorno, ciljno skladište i dimenzije inventara ne mogu biti potpuno isti prilikom prenosa materijala"
@@ -45806,6 +45863,10 @@ 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 diskontovanje fakture {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Red #{0}: Skladište ne može biti rezervisano za stavku {1} protiv onemogućene šarže {2}."
@@ -45822,7 +45883,7 @@ msgstr "Red #{0}: Zalihe ne mogu biti rezervisane u grupnom skladištu {1}."
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Red #{0}: Zalihe su već rezervisane za stavku {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Red #{0}: Zalihe su već rezervisane za stavku {1} u skladištu {2}."
@@ -45835,7 +45896,7 @@ msgstr "Red #{0}: Zalihe nisu dostupne za rezervaciju za stavku {1} protiv šar
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Red #{0}: Zalihe nisu dostupne za rezervaciju za stavku {1} u skladištu {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Red #{0}: Količina zaliha {1} ({2}) za stavku {3} ne može premašiti {4}"
@@ -45847,7 +45908,7 @@ msgstr "Red #{0}: Ciljno skladište mora biti isto kao skladište kupca {1} iz p
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Red #{0}: Šarža {1} je već istekla."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Red #{0}: Skladište {1} nije zavisno skladište grupnog skladišta {2}"
@@ -45883,7 +45944,7 @@ msgstr "Red #{0}: Ne možete koristiti dimenziju inventara '{1}' u usklađivanju
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Red #{0}: Morate izabrati imovinu za stavku {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Red #{0}: {1} ne može biti negativno za stavku {2}"
@@ -45899,7 +45960,7 @@ msgstr "Red #{0}: {1} je obavezno za kreiranje početnih {2} faktura"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Red #{0}: {1} od {2} treba da bude {3}. Molimo Vas da ažurirate {1} ili izaberete drugi račun."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Red #{0}: Količina za stavku {1} ne može biti nula."
@@ -46000,7 +46061,7 @@ msgstr "Red #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Red #{}: {} {} ne postoji."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Red #{}: {} {} ne pripada kompaniji {}. Molimo Vas da izaberete važeći {}."
@@ -46008,7 +46069,7 @@ msgstr "Red #{}: {} {} ne pripada kompaniji {}. Molimo Vas da izaberete važeći
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Red broj {0}: Skladište je obavezno. Molimo Vas da postavite podrazumevano skladište za stavku {1} i kompaniju {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Red {0} : Operacija je obavezna za stavku sirovine {1}"
@@ -46016,7 +46077,7 @@ msgstr "Red {0} : Operacija je obavezna za stavku sirovine {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Red {0} odabrana količina je manja od zahtevane količine, potrebno je dodatnih {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Red {0}# stavka {1} nije pronađena u tabeli 'Primljene sirovine' u {2} {3}"
@@ -46048,11 +46109,11 @@ msgstr "Red {0}: Raspoređeni iznos {1} mora biti manji ili jednak neizmirenom i
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Red {0}: Raspoređeni iznos {1} mora biti manji ili jednak preostalom iznosu za plaćanje {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Red {0}: Pošto je {1} omogućen, sirovine ne mogu biti dodate u {2} unos. Koristite {3} unos za potrošnju sirovina."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Red {0}: Sastavnica nije pronađena za stavku {1}"
@@ -46070,7 +46131,7 @@ msgstr "Red {0}: Utrošena količina {1} {2} mora biti manja ili jednaka dostupn
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Red {0}: Faktor konverzije je obavezan"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Red {0}: Troškovni centar {1} ne pripada kompaniji {2}"
@@ -46090,7 +46151,7 @@ msgstr "Red {0}: Valuta za sastavnicu #{1} treba da bude jednaka izabranoj valut
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Red {0}: Unos dugovne strane ne može biti povezan sa {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Red {0}: Skladište za isporuku ({1}) i skladište kupca ({2}) ne mogu biti isti"
@@ -46098,7 +46159,7 @@ msgstr "Red {0}: Skladište za isporuku ({1}) i skladište kupca ({2}) ne mogu b
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Red {0}: Skladište za isporuku ne može biti isto kao skladište kupca za stavku {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Red {0}: Datum dospeća u tabeli uslova plaćanja ne može biti pre datuma knjiženja"
@@ -46143,16 +46204,16 @@ msgstr "Red {0}: Za dobavljača {1}, imejl adresa je obavezna za slanje imejla"
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Red {0}: Vreme početka i vreme završetka su obavezni."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Red {0}: Vreme početka i vreme završetka za {1} se preklapaju sa {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Početno skladište je obavezno za interne transfere"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Red {0}: Vreme početka mora biti manje od vremena završetka"
@@ -46168,7 +46229,7 @@ msgstr "Red {0}: Nevažeća referenca {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Red {0}: Šablon stavke poreza ažuriran prema važenju i primenjenoj stopi"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Red {0}: Cena stavke je ažurirana prema stopi vrednovanja jer je u pitanju interni prenos zaliha"
@@ -46192,7 +46253,7 @@ msgstr "Red {0}: Količina stavke {1} ne može biti veća od raspoložive količ
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Red {0}: Vreme operacije mora biti veće od 0 za operaciju {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Red {0}: Upakovana količina mora biti jednaka količini {1}."
@@ -46260,7 +46321,7 @@ msgstr "Red {0}: Ulazna faktura {1} nema uticaj na zalihe."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Red {0}: Količina ne može biti veća od {1} za stavku {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Red {0}: Količina u osnovnoj jedinici mere zaliha ne može biti nula."
@@ -46272,10 +46333,6 @@ msgstr "Red {0}: Količina mora biti veća od 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Red {0}: Količina ne može biti negativna."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Red {0}: Količina nije dostupna za {4} u skladištu {1} za vreme knjiženja ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Red {0}: Izlazna faktura {1} je već kreirana za {2}"
@@ -46284,11 +46341,11 @@ msgstr "Red {0}: Izlazna faktura {1} je već kreirana za {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Red {0}: Smena se ne može promeniti jer je amortizacija već obračunata"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Red {0}: Podugovorena stavka je obavezna za sirovinu {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Red {0}: Ciljno skladište je obavezno za interne transfere"
@@ -46300,11 +46357,11 @@ msgstr "Red {0}: Zadatak {1} ne pripada projektu {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Red {0}: Celokupan iznos rashoda za račun {1} u {2} je već raspoređen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Red {0}: Stavka {1}, količina mora biti pozitivan broj"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Red {0}: Račun {3} {1} ne pripada kompaniji {2}"
@@ -46312,11 +46369,11 @@ msgstr "Red {0}: Račun {3} {1} ne pripada kompaniji {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Red {0}: Za postavljanje periodičnosti {1}, razlika između datuma početka i datuma završetka mora biti veća ili jednaka od {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Red {0}: Preneta količina ne može biti veća od zatražene količine."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Red {0}: Faktor konverzije jedinica mere je obavezan"
@@ -46329,11 +46386,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Red {0}: Skladište {1} je povezano sa kompanijom {2}. Molimo Vas da izaberete skladište koje pripada kompaniji {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Red {0}: Radna stanica ili vrsta radne stanice je obavezna za operaciju {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Red {0}: Korisnik nije primenio pravilo {1} na stavku {2}"
@@ -46345,7 +46402,7 @@ msgstr "Red {0}: Račun {1} je već primenjen na računovodstvenu dimenziju {2}"
msgid "Row {0}: {1} must be greater than 0"
msgstr "Red {0}: {1} mora biti veće od 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Red {0}: {1} {2} ne može biti isto kao {3} (Račun stranke) {4}"
@@ -46391,7 +46448,7 @@ msgstr "Redovi uklonjeni u {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Redovi sa istim analitičkim računima će biti spojeni u jedan račun"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Pronađeni su redovi sa duplim datumima dospeća u drugim redovima: {0}"
@@ -46399,7 +46456,7 @@ msgstr "Pronađeni su redovi sa duplim datumima dospeća u drugim redovima: {0}"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Redovi: {0} imaju 'Unos uplate' kao referentnu vrstu. Ovo ne treba podešavati ručno."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Redovi: {0} u odeljku {1} su nevažeći. Naziv reference treba da upućuje na validan unos uplate ili nalog knjiženja."
@@ -46606,8 +46663,8 @@ msgstr "Sigurnosne zalihe"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46629,8 +46686,8 @@ msgstr "Metod obračuna zarade"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46644,18 +46701,23 @@ msgstr "Metod obračuna zarade"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Prodaja"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Račun prodaje"
@@ -46679,8 +46741,8 @@ msgstr "Doprinosi i podsticaji u prodaji"
msgid "Sales Defaults"
msgstr "Podrazumevane vrednosti za prodaju"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Troškovi prodaje"
@@ -46849,11 +46911,11 @@ msgstr "Izlazna faktura nije kreirana od strane korisnika {}"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Režim izlaznog fakturisanja je aktiviran u maloprodaji. Molimo Vas da napravite izlaznu fakturu umesto toga."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Izlazna faktura {0} je već podneta"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Izlazna faktura {0} mora biti obrisana pre nego što se otkaže prodajna porudžbina"
@@ -47051,25 +47113,25 @@ msgstr "Trendovi prodajne porudžbine"
msgid "Sales Order required for Item {0}"
msgstr "Prodajna porudžbina je potrebna za stavku {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Prodajna porudžbina {0} već postoji za nabavnu porudžbinu kupca {1}. Da biste omogućili više prodajnih porudžbina, omogućite {2} u {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr "Prodajna porudžbina {0} nije dostupna za proizvodnju"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Prodajna porudžbina {0} nije podneta"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Prodajna porudžbina {0} nije validna"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Prodajna porudžbina {0} je {1}"
@@ -47113,6 +47175,7 @@ msgstr "Prodajne porudžbine za isporuku"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47125,7 +47188,7 @@ msgstr "Prodajne porudžbine za isporuku"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47231,7 +47294,7 @@ msgstr "Rezime uplata od prodaje"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47324,7 +47387,7 @@ msgstr "Registar prodaje"
msgid "Sales Representative"
msgstr "Prodajni predstavnik"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Povraćaj prodaje"
@@ -47348,7 +47411,7 @@ msgstr "Rezime 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Šablon poreza na prodaju"
@@ -47467,7 +47530,7 @@ msgstr "Ista stavka"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Ista stavka i kombinacija skladišta su već uneseni."
@@ -47499,12 +47562,12 @@ msgstr "Skladište za zadržane uzorke"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Veličina uzorka"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Količina uzorka {0} ne može biti veća od primljene količine {1}"
@@ -47748,7 +47811,7 @@ msgstr "Imovina za otpis"
msgid "Scrap Warehouse"
msgstr "Skladište za otpis"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Datum otpisa ne može biti pre datuma nabavke"
@@ -47867,8 +47930,8 @@ msgstr "Sekundarna uloga"
msgid "Secretary"
msgstr "Sekretar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Obezbeđeni zajam"
@@ -47906,7 +47969,7 @@ msgstr "Izaberite alternativnu stavku"
msgid "Select Alternative Items for Sales Order"
msgstr "Izaberite alternativnu stavku za prodajnu porudžbinu"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Izaberite vrednosti atributa"
@@ -47948,7 +48011,7 @@ msgstr "Izaberite kompaniju"
msgid "Select Company Address"
msgstr "Izaberite adresu kompanije"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Izaberite korektivnu operaciju"
@@ -47984,7 +48047,7 @@ msgstr "Izaberite dimenziju"
msgid "Select Dispatch Address "
msgstr "Izaberite adresu otpreme "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Izaberite zaposlena lica"
@@ -48009,7 +48072,7 @@ msgstr "Izaberite stavke"
msgid "Select Items based on Delivery Date"
msgstr "Izaberite stavke na osnovu datuma isporuke"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Izaberite stavke za kontrolu kvaliteta"
@@ -48047,7 +48110,7 @@ msgstr "Izaberite raspored plaćanja"
msgid "Select Possible Supplier"
msgstr "Izaberite mogućeg dobavljača"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Izaberite količinu"
@@ -48122,7 +48185,7 @@ msgstr "Izaberite podrazumevani prioritet."
msgid "Select a Payment Method."
msgstr "Izaberite metod plaćanja."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Izaberite dobavljača"
@@ -48145,7 +48208,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Izaberite grupu stavki."
@@ -48161,9 +48224,9 @@ msgstr "Izaberite fakturu za učitavanje rezimea"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Izaberite stavku iz svakog seta koja će biti korišćena u prodajnoj porudžbini."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Izaberite barem jednu vrednost iz svakog od atributa."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48179,7 +48242,7 @@ msgstr "Prvo izaberite naziv kompanije."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Izaberite finansijsku evidenciju za stavku {0} u redu {1}"
@@ -48211,7 +48274,7 @@ msgstr "Izaberite tekući račun za usklađivanje."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Izaberite podrazumevanu radnu stanicu na kojoj će se izvršiti operacija. Ovo će biti preuzeto u sastavnicama i radnim nalozima."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Izaberite stavku koja će biti proizvedena."
@@ -48228,7 +48291,7 @@ msgstr "Izaberite skladište"
msgid "Select the customer or supplier."
msgstr "Izaberite kupca ili dobavljača."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Izaberite datum"
@@ -48236,6 +48299,12 @@ msgstr "Izaberite datum"
msgid "Select the date and your timezone"
msgstr "Izaberite datum i vremensku zonu"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Izaberite sirovine (stavke) potrebne za proizvodnju stavke"
@@ -48264,7 +48333,7 @@ msgstr "Izaberite, kako bi kupac mogao da bude pronađen u ovim poljima"
msgid "Selected POS Opening Entry should be open."
msgstr "Izabrani unos početnog stanja za maloprodaju treba da bude otvoren."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Izabrani cenovnik treba da ima označena polja za nabavku i prodaju."
@@ -48295,30 +48364,30 @@ msgstr "Izabrani dokument mora biti u statusu podnet"
msgid "Self delivery"
msgstr "Samostalna dostava"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Prodaja"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Prodaja imovine"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Prodajna količina"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Prodajna količina ne može premašiti količinu imovine"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
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} stavku."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Prodajna količina mora biti veća od nule"
@@ -48571,7 +48640,7 @@ msgstr "Brojevi serije / šarže"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48591,7 +48660,7 @@ msgstr "Brojevi serije / šarže"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48636,7 +48705,7 @@ msgstr "Opseg serijskih brojeva"
msgid "Serial No Reserved"
msgstr "Rezervisani broj serije"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Preklapanje serije brojeva serije"
@@ -48776,7 +48845,7 @@ msgstr "Brojevi serija / šarže"
msgid "Serial Nos are created successfully"
msgstr "Brojevi serije su uspešno kreirani"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Brojevi serije su rezervisani u unosima rezervacije zalihe, morate poništiti rezervisanje pre nego što nastavite."
@@ -48846,7 +48915,7 @@ msgstr "Serija i šarža"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49260,7 +49329,7 @@ msgstr "Postavi avanse i raspodeli (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Postavi osnovnu cenu ručno"
@@ -49279,8 +49348,8 @@ msgstr "Postavi skladište za isporuku"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Postavi količinu gotovog proizvoda"
@@ -49447,11 +49516,11 @@ msgstr "Postavljeno prema šablonu poreza na stavke"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Postavi podrazumevani račun inventara za stvarno praćenje invetara"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Postavi podrazumevani račun {0} za stavke van zaliha"
@@ -49483,7 +49552,7 @@ msgstr "Postavite cenu stavke podsklopa na osnovu sastavnice"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Postavite ciljeve po grupama stavki za ovog prodavca."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Postavite planirani datum početka (procenjeni datum kada želite da proizvodnja započne)"
@@ -49594,7 +49663,7 @@ msgid "Setting up company"
msgstr "Postavljanje kompanije"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Podešavanje {0} je neophodno"
@@ -49614,6 +49683,10 @@ msgstr "Podešavanje za modul prodaje"
msgid "Settled"
msgstr "Poravnato"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49806,7 +49879,7 @@ msgstr "Vrsta pošiljke"
msgid "Shipment details"
msgstr "Detalji isporuke"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Isporuke"
@@ -49844,7 +49917,7 @@ msgstr "Naziv adrese za isporuku"
msgid "Shipping Address Template"
msgstr "Šablon adrese za isporuku"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Adresa za isporuku ne pripada {0}"
@@ -49987,8 +50060,8 @@ msgstr "Kratka biografija za veb-sajt i druge publikacije."
msgid "Short-term Investments"
msgstr "Kratkoročna ulaganja"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kratkoročna rezervisanja"
@@ -50322,7 +50395,7 @@ msgstr "Simultano"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Pošto postoje aktivna sredstva koja se amortizuju u ovoj kategoriji, sledeći računi su obavezni. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Pošto postoje gubici u procesu od {0} jedinica za gotov proizvod {1}, trebalo bi da smanjite količinu za {0} jedinica za gotov proizvod {1} u tabeli stavki."
@@ -50367,7 +50440,7 @@ msgstr "Preskoči otpremnicu"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50409,8 +50482,8 @@ msgstr "Konstantna za izravnavanje"
msgid "Soap & Detergent"
msgstr "Sapun i detergent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Softver"
@@ -50434,7 +50507,7 @@ msgstr "Prodato od"
msgid "Solvency Ratios"
msgstr "Pokazatelji solventnosti"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Neki obavezni podaci o kompaniji nedostaju. Nemate dozvolu da ih ažurirate. Molimo Vas da kontaktirate sistem menadžera."
@@ -50498,7 +50571,7 @@ msgstr "Naziv polja izvora"
msgid "Source Location"
msgstr "Lokacija izvora"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "Izvorni unos proizvodnje"
@@ -50507,11 +50580,11 @@ msgstr "Izvorni unos proizvodnje"
msgid "Source Stock Entry (Manufacture)"
msgstr "Izvorni unos zaliha (proizvodnja)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "Izvorni unos zaliha {0} pripada radnom nalogu {1}, a ne {2}. Molimo Vas da koristite unos proizvodnje iz istog radnog naloga."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "Izvorni unos zaliha {0} nema količinu gotovih proizvoda"
@@ -50569,7 +50642,12 @@ msgstr "Link za adresu izvornog skladišta"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Izvorno skladište je obavezno za stavku {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
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 skladište kupca {1} u nalogu za prijem iz podugovaranja."
@@ -50577,24 +50655,23 @@ msgstr "Izvorno skladište {0} mora biti isto kao skladište kupca {1} u nalogu
msgid "Source and Target Location cannot be same"
msgstr "Izvor i ciljna lokacija ne mogu biti isti"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Izvorno i ciljno skladište ne mogu biti isti za red {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Izvorno i ciljno skladište moraju biti različiti"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Izvor sredstava (Obaveze)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Izvorno skladište je obavezno za red {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50635,7 +50712,7 @@ msgstr "Trošenje za račun {0} ({1}) između {2} i {3} je već premašilo novi
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50643,7 +50720,7 @@ msgid "Split"
msgstr "Podeliti"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Podeli imovinu"
@@ -50667,7 +50744,7 @@ msgstr "Podeli od"
msgid "Split Issue"
msgstr "Podeli izdavanje"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Podeli količinu"
@@ -50679,6 +50756,11 @@ msgstr "Podeljena količina mora biti manja od količine imovine"
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Podela {0} {1} u {2} redova prema uslovima plaćanja"
@@ -50751,13 +50833,13 @@ msgstr "Standardna nabavka"
msgid "Standard Description"
msgstr "Standardni opis"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Standardni 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:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standardna prodaja"
@@ -50778,8 +50860,8 @@ msgstr "Standardni šablon"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standardni uslovi i odredbe koji se mogu dodati na prodaju i nabavku. Primeri: važenje ponude, uslovi plaćanja, sigurnost i upotreba, i sl."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Isporuke sa standardom stopom u {0}"
@@ -50814,7 +50896,7 @@ msgstr "Datum početka ne može biti pre trenutnog datuma"
msgid "Start Date should be lower than End Date"
msgstr "Datum početka treba da bude manji od datuma završetka"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Pokreni zadatak"
@@ -50943,7 +51025,7 @@ msgstr "Ilustracija statusa"
msgid "Status and Reference"
msgstr "Status i referenca"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status mora biti otkazan ili završen"
@@ -50973,6 +51055,7 @@ msgstr "Statutarne informacije i druge opšte informacije o dobavljaču"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50981,8 +51064,8 @@ msgstr "Zalihe"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51082,6 +51165,16 @@ msgstr "Unos zatvaranja zaliha {0} je stavljen u red za obradu, sistemu će biti
msgid "Stock Closing Log"
msgstr "Dnevnik zatvaranja zaliha"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51091,10 +51184,6 @@ msgstr "Dnevnik zatvaranja zaliha"
msgid "Stock Details"
msgstr "Detalji o zalihama"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Unosi zaliha su već kreirani za radni nalog {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51158,7 +51247,7 @@ msgstr "Unos zaliha je već kreiran za ovu listu za odabir"
msgid "Stock Entry {0} created"
msgstr "Unos zaliha {0} kreiran"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Unos zaliha {0} je kreiran"
@@ -51166,8 +51255,8 @@ msgstr "Unos zaliha {0} je kreiran"
msgid "Stock Entry {0} is not submitted"
msgstr "Unos zaliha {0} nije podnet"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Troškovi zaliha"
@@ -51245,8 +51334,8 @@ msgstr "Nivoi zaliha"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Obaveze zaliha"
@@ -51349,8 +51438,8 @@ msgstr "Količina zaliha u odnosu na broj serijskih brojeva"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51362,7 +51451,7 @@ msgstr "Zalihe primljene ali nisu fakturisane"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51374,7 +51463,7 @@ msgstr "Usklađivanje zaliha"
msgid "Stock Reconciliation Item"
msgstr "Stavka usklađivanja zaliha"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Usklađivanja zaliha"
@@ -51399,9 +51488,9 @@ msgstr "Podešavanje ponovne obrade zaliha"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51412,7 +51501,7 @@ msgstr "Podešavanje ponovne obrade zaliha"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51437,10 +51526,10 @@ msgstr "Rezervacija zaliha"
msgid "Stock Reservation Entries Cancelled"
msgstr "Unosi rezervacije zaliha otkazani"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Unosi rezervacije zaliha kreirani"
@@ -51468,7 +51557,7 @@ msgstr "Unos rezervacije zaliha ne može biti ažuriran jer su zalihe isporučen
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 protiv liste za odabir ne može biti ažuriran. Ukoliko je potrebno da napravite promene, preporučujemo da otkažete postojeći unos i kreirate novi."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Nepodudaranje skladišta za rezervaciju zaliha"
@@ -51508,7 +51597,7 @@ msgstr "Rezervisana količina zaliha (u jedinici mere 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51623,7 +51712,7 @@ msgstr "Podešavanje transakcija zaliha"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51756,11 +51845,11 @@ msgstr "Zalihe ne mogu biti rezervisane u grupnom skladištu {0}."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Zalihe ne mogu biti rezervisane u grupnom skladištu {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Zalihe ne mogu biti ažurirane za sledeće otpremnice: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
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 ne mogu biti ažurirane jer faktura ne sadrži stavku sa drop shipping-om. Molimo Vas da onemogućite 'Ažuriraj zalihe' ili uklonite stavke sa drop shipping-om."
@@ -51815,14 +51904,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Razlog zaustavljanja"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Zaustavljeni radni nalozi ne mogu biti otkazani. Prvo je potrebno otkazati zaustavljanje da biste otkazali"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Magacini"
@@ -51880,7 +51969,7 @@ msgstr "Skladište podsklopova"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52142,7 +52231,7 @@ msgstr "Uslužna stavka naloga za podugovaranje"
msgid "Subcontracting Order Supplied Item"
msgstr "Nabavljene stavke naloga za podugovaranje"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Nalog za podugovaranje {0} je kreiran."
@@ -52231,7 +52320,7 @@ msgstr "Postavke podugovaranja"
msgid "Subdivision"
msgstr "Pododeljenje"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Podnošenje radnje nije uspelo"
@@ -52252,7 +52341,7 @@ msgstr "Podnesi generisane fakture"
msgid "Submit Journal Entries"
msgstr "Podnesi naloge knjiženja"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Podnesi ovaj radni nalog za dalju obradu."
@@ -52406,7 +52495,7 @@ msgstr "Uspešno usklađeno"
msgid "Successfully Set Supplier"
msgstr "Dobavljač uspešno postavljen"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Jedinica mere na zalihama je uspešno promenjena, redefinišite faktore konverzije za novu jedinicu mere."
@@ -52430,7 +52519,7 @@ msgstr "Uspešno uvezeno {0} zapisa."
msgid "Successfully linked to Customer"
msgstr "Uspešno povezano sa kupcem"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Uspešno povezano sa dobavljačem"
@@ -52590,7 +52679,7 @@ msgstr "Nabavljena količina"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52688,6 +52777,7 @@ msgstr "Detalji o dobavljaču"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52697,7 +52787,7 @@ msgstr "Detalji o dobavljaču"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52712,6 +52802,7 @@ msgstr "Detalji o dobavljaču"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52796,7 +52887,7 @@ msgstr "Rezime 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52831,8 +52922,6 @@ msgid "Supplier Number At Customer"
msgstr "Broj dobavljača kod kupca"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Brojevi dobavljača"
@@ -52884,7 +52973,7 @@ msgstr "Primarni kontakt dobavljača"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52913,7 +53002,7 @@ msgstr "Poređenje ponuda dobavljača"
msgid "Supplier Quotation Item"
msgstr "Stavka iz ponude dobavljača"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Ponuda dobavljača {0} kreirana"
@@ -53002,7 +53091,7 @@ msgstr "Vrsta dobavljača"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Skladište dobavljača"
@@ -53019,17 +53108,12 @@ msgstr "Dobavljač isporučuje kupcu"
msgid "Supplier is required for all selected Items"
msgstr "Dobavljač je obavezan za sve izabrane stavke"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Brojevi dobavljača koje dodeljuje kupac"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Dobavljač robe ili usluga."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Dobavljač {0} nije pronađen u {1}"
@@ -53042,8 +53126,8 @@ msgstr "Dobavljač(i)"
msgid "Suppliers"
msgstr "Dobavljači"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Nabavke su podložne obrnutom obračunu poreza"
@@ -53134,7 +53218,7 @@ msgstr "Sinhronizacija započeta"
msgid "Synchronize all accounts every hour"
msgstr "Sinhronizuj sve račune na svakih sat vremena"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Sistem u upotrebi"
@@ -53164,7 +53248,7 @@ msgstr "Sistem će izvršiti implicitnu konverziju koristeći fiksnu valutu. {0}"
msgstr "Sledeće šarže su istekle, molimo Vas da ih dopunite: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Postoje sledeći otkazani unosi ponovnog knjiženja za {0} : {1} Molimo Vas da obrišete ove unose pre nastavka."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Sledeći obrisani atributi postoje u varijantama, ali ne i u šablonima. Možete ili obrisati varijante ili zadržati atribute u šablonu."
@@ -54593,7 +54686,7 @@ msgstr "Sledeći rasporedi plaćanja već postoje:\n"
msgid "The following rows are duplicates:"
msgstr "Sledeći redovi su duplikati:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Sledeći {0} je kreiran: {1}"
@@ -54620,7 +54713,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Sledeća stavka {item} nije označena kao {type_of} stavka. Možete je omogućiti kao {type_of} stavku iz master podataka stavke."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Stavke {0} i {1} su prisutne u sledećem {2} :"
@@ -54678,7 +54771,7 @@ msgstr "Operacija {0} ne može biti podoperacija"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Originalna faktura treba biti konsolidovana pre ili zajedno sa reklamacionom fakturom."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Neizmireni iznos {0} u {1} je manji od {2}. Neizmireni iznos se ažurira na ovom računu."
@@ -54690,6 +54783,12 @@ msgstr "Matični račun {0} ne postoji u učitanom šablonu"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Račun za platni portal u planu {0} je različit od računa za platni portal u ovom zahtevu za naplatu"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54731,7 +54830,7 @@ msgstr "Rezervisane zalihe će biti ponovo dostupne kada ažurirate stavke. Da l
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Rezervisane zalihe će biti ponovo dostupne? Da li ste sigurni da želite da nastavite?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Osnovni račun {0} mora biti grupa"
@@ -54747,7 +54846,7 @@ msgstr "Izabrani račun za promene {} ne pripada kompaniji {}."
msgid "The selected item cannot have Batch"
msgstr "Izabrana stavka ne može imati šaržu"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Prodajna količina je manja od ukupne količine imovine. Preostala količina biće izdvojena u novu imovinu. Ova radnja se ne može poništiti. Da li želite da nastavite? "
@@ -54780,7 +54879,7 @@ msgstr "Udeli ne postoje sa {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Zalihe za stavku {0} u skladištu {1} su bile negativne na {2}. Trebalo bi da kreirate pozitivan unos {3} pre datuma {4} i vremena {5} kako biste uneli ispravnu stopu vrednovanja. Za više detalja pročitajte dokumentaciju. ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Zalihe su rezervisane za sledeće stavke i skladišta, poništite rezervisanje kako biste mogli da {0} uskladite zalihe: {1}"
@@ -54802,11 +54901,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Sistem će kreirati izlaznu fakturu ili fiskalni račun sa maloprodajnog interfejsa u zavisnosti od ovog podešavanja. Za transakcije velikog obima preporučuje se korišćenje fiskalnog računa."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Zadatak je stavljen u status čekanja kao pozadinski proces. U slučaju problema pri obradi u pozadini, sistem će dodati komentar o grešci u ovom usklađivanju zaliha i vratiti ga u fazu nacrta"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Zadatak je stavljen u status čekanja kao pozadinski proces. U slučaju problema pri obradi u pozadini, sistem će dodati komentar o grešci u ovom usklađivanju zaliha i vratiti ga u status podneto"
@@ -54854,15 +54953,15 @@ msgstr "Vrednost {0} se razlikuje između stavki {1} i {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Vrednost {0} je već dodeljena postojećoj stavci {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Skladište u kojem čuvate gotove stavke pre isporuke."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 čuvate sirovine. Svaka potrebna stavka može imati posebno izvorno skladište. Grupno skladište takođe može biti izabrano kao izvorno skladište. Po slanju radnog naloga, sirovine će biti rezervisane u ovim skladištima za proizvodnju."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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še stavke biti premeštene kada započnete proizvodnju. Grupno skladište može takođe biti izabrano kao skladište za nedovršenu proizvodnju."
@@ -54870,19 +54969,19 @@ msgstr "Skladište u koje će Vaše stavke biti premeštene kada započnete proi
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) mora biti jednako {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} sadrži stavke sa jediničnom cenom."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Prefiks {0} '{1}' već postoji. Molimo Vas da promenite seriju brojeva serije, u suprotnom će doći do greške duplog unosa."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} uspešno kreiran"
@@ -54890,7 +54989,7 @@ msgstr "{0} {1} uspešno kreiran"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} se ne podudara sa {0} {2} u {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} se koristi za izračunavanje vrednosti troškova za gotov proizvod {2}."
@@ -54906,7 +55005,7 @@ msgstr "Postoje aktivna održavanja ili popravke za ovu imovinu. Morate ih zavr
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Postoje nedoslednosti između vrednosti po udelu, broja udela i izračunate vrednosti"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Postoje knjiženja za ovaj račun. Promena {0} i ne-{1} u aktivnom sistemu izazvaće netačan izlaz u izveštaju 'Računi' {2}"
@@ -54935,7 +55034,7 @@ msgstr "Nema dostupnih termina za ovaj datum"
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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 dve opcije za procenu zaliha. FIFO (prvi ulaz - prvi izlaz) i prosečna vrednost. Za detaljno razumevanje pogledajte dokumentaciju Vrednovanje, FIFO i prosečna vrednost. "
@@ -54975,7 +55074,7 @@ msgstr "Nije pronađena nijedna šarža za {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Mora postojati bar jedan gotov proizvod u unosu zaliha"
@@ -55031,11 +55130,11 @@ msgstr "Ova stavka je varijanta {0} (Šablon)."
msgid "This Month's Summary"
msgstr "Rezime ovog meseca"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Ova nabavna porudžbina je u potpunosti podugovorena."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Ova prodajna porudžbina je u potpunosti podugovorena."
@@ -55069,7 +55168,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Ovo obuhvata sve tablice za ocenjivanje povezane sa ovim podešavanjem"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Ovaj dokument prelazi ograničenje za {0} {1} za stavku {4}. Da li pravite još jedan {3} za isti {2}?"
@@ -55172,11 +55271,11 @@ msgstr "Ovo se smatra rizičnim sa računovodstvenog stanovišta."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Ovo se radi kako bi se obradila računovodstvena evidencija u slučajevima kada je prijemnica nabavke kreirana nakon ulazne fakture"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 omogućeno kao podrazumevano. Ukoliko želite da planirate materijal za podsklopove stavki koje proizvodite, ostavite ovo omogućeno. Ukoliko planirate i proizvodite podsklopove zasebno, možete da onemogućite ovu opciju."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 je za stavke sirovina koje će se koristiti za kreiranje gotovih proizvoda. Ukoliko je stavka dodatna usluga, poput 'pranja', koja će se koristiti u sastavnici, ostavite ovu opciju neoznačenom."
@@ -55245,7 +55344,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} utrošena kroz kapitalizaci
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Ovaj raspored je kreiran kada je imovina {0} popravljena kroz popravku imovine {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
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 zbog otkazivanja izlazne fakture {1}."
@@ -55253,15 +55352,15 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena zbog otkazivanja i
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 poništavanja kapitalizacije imovine {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Ovaj raspored je kreiran kada je imovina {0} vraćena."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
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 izlazne fakture {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Ovaj raspored je kreiran kada je imovina {0} otpisana."
@@ -55269,7 +55368,7 @@ msgstr "Ovaj raspored je kreiran kada je imovina {0} otpisana."
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}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Ovaj raspored je kreiran kada je imovina {0} bila {1} putem izlazne fakture {2}."
@@ -55338,7 +55437,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Ovo će ograničiti korisnički pristup zapisima drugih zaposlenih lica"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Ovo {} će se tretirati kao prenos materijala."
@@ -55449,7 +55548,7 @@ msgstr "Vreme u minutima"
msgid "Time in mins."
msgstr "Vreme u minutima."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Zapisi vremena su obavezni za {0} {1}"
@@ -55558,7 +55657,7 @@ msgstr "Za fakturisanje"
msgid "To Currency"
msgstr "U valuti"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Datum završetka ne može biti pre datum početka"
@@ -55785,11 +55884,15 @@ msgstr "Da biste dodali operacije, označite polje 'Sa operacijama'."
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Za dodavanje sirovina za podugovorenu stavku ukoliko je opcija uključi detaljne stavke onemogućena."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Da biste odobrili prekoračenje fakturisanja, ažurirajte \"Dozvola za fakturisanje preko limita\" u podešavanjima računa ili u stavci."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Da biste odobrili prekoračenje prijema/isporuke, ažurirajte \"Dozvola za prijem/isporuku preko limita\" u podešavanjima zaliha ili u stavci."
@@ -55832,11 +55935,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Omogućava uključivanje troškova podsklopova i sekundarnih stavki u gotove proizvode u radnom nalogu bez korišćenja radne kartice, kada je uključena opcija 'Koristi višeslojnu sastavnicu'."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Da bi porez bio uključen u red {0} u ceni stavke, porezi u redovima {1} takođe moraju biti uključeni"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Za spajanje, sledeće osobine moraju biti iste za obe stavke"
@@ -55844,7 +55947,7 @@ msgstr "Za spajanje, sledeće osobine moraju biti iste za obe stavke"
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Da se cenovno pravilo ne primeni u određenoj transakciji, sva primenjiva cenovna pravila treba onemogućiti."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Da biste ovo poništili, omogućite '{0}' u kompaniji {1}"
@@ -55869,7 +55972,7 @@ msgstr "Da biste podneli fakturu bez prijemnica nabavke, molimo Vas da postavite
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Da biste koristili drugu finansijsku evidenciju, poništite označavanje opcije 'Uključi podrazumevanu imovinu u finansijskim evidencijama'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56019,7 +56122,7 @@ msgstr "Ukupne raspodele"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56126,12 +56229,12 @@ msgstr "Ukupna komisija"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Ukupna završena količina"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Ukupna završena količina je obavezna za radnu karticu {0}, molimo Vas da započnete i završite radnu karticu pre podnošenja"
@@ -56433,7 +56536,7 @@ msgstr "Ukupan neizmireni iznos"
msgid "Total Paid Amount"
msgstr "Ukupno plaćeni iznos"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Ukupni iznos u rasporedu plaćanja mora biti jednak ukupnom / zaokruženom ukupnom iznosu"
@@ -56445,7 +56548,7 @@ msgstr "Ukupan iznos zahteva za naplatu ne može biti veći od {0} iznosa"
msgid "Total Payments"
msgstr "Ukupno plaćanja"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Ukupno odabrana količina {0} je veća od naručene količine {1}. Možete postaviti dozvolu za preuzimanje viška u podešavanjima zaliha."
@@ -56728,7 +56831,7 @@ msgstr "Ukupno vreme radnih stanica (u satima)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Ukupno raspoređeni procenat za prodajni tim treba biti 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Ukupni procenat doprinosa treba biti 100"
@@ -56903,7 +57006,7 @@ msgstr "Datum transakcije"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Dokument brisanja transakcija {0} je pokrenut za kompaniju {1}"
@@ -56927,11 +57030,11 @@ msgstr "Stavka u zapisu o brisanju transakcije"
msgid "Transaction Deletion Record To Delete"
msgstr "Zapis brisanja transakcija za brisanje"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Zapis brisanja transakcija {0} je već u toku. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Zapis brisanja transakcija {0} trenutno briše {1}. Nije moguće sačuvati dokumenta dok se brisanje ne završi."
@@ -57036,7 +57139,8 @@ msgstr "Transakcija za koju se obračunava porez po odbitku"
msgid "Transaction from which tax is withheld"
msgstr "Transakcija iz koje se obračunava porez po odbitku"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transakcija nije dozvoljena za zaustavljeni radni nalog {0}"
@@ -57083,11 +57187,16 @@ msgstr "Godišnja istorija transakcija"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Transakcije za ovu kompaniju već postoje! Kontni okvir može se uvesti samo za kompaniju koja nema transakcije."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transakcije koje koriste izlazne fakture u maloprodaji su onemogućene."
@@ -57268,8 +57377,8 @@ msgstr "Informacije o prevozniku"
msgid "Transporter Name"
msgstr "Naziv prevoznika"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Putni troškovi"
@@ -57533,6 +57642,7 @@ msgstr "UAE VAT Settings"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57548,7 +57658,7 @@ msgstr "UAE VAT Settings"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57609,7 +57719,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Faktor konverzije jedinice mere"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Faktor konverzije jedinice mere ({0} -> {1}) nije pronađen za stavku: {2}"
@@ -57622,7 +57732,7 @@ msgstr "Faktor konverzije jedinice mere je obavezan u redu {0}"
msgid "UOM Name"
msgstr "Naziv jedinice mere"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Faktor konverzije jedinice mere je obavezan za jedinicu mere: {0} u stavci: {1}"
@@ -57694,13 +57804,13 @@ msgstr "Nije moguće pronaći devizni kurs za {0} u {1} za ključni datum {2}. M
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Nije moguće pronaći ocenu koja počinje sa {0}. Morate imati postojeće ocene koji su u opsegu od 0 do 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Nije moguće pronaći vremenski termin u narednih {0} dana za operaciju {1}. Molimo Vas da povećate 'Planiranje kapaciteta za (u danima)' za {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Nije moguće pronaći promenljive:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57781,7 +57891,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Neočekivani obrazac serije imenovanja"
@@ -57800,7 +57910,7 @@ msgstr "Jedinica"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Jedinična cena"
@@ -57817,7 +57927,7 @@ msgstr "Jedinica mere"
msgid "Unit of Measure (UOM)"
msgstr "Jedinica mere"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Jedinica mere {0} je uneta više puta u tabelu faktora konverzije"
@@ -57962,7 +58072,7 @@ msgstr "Neusklađeni unosi"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58002,12 +58112,12 @@ msgstr "Nije rešeno"
msgid "Unscheduled"
msgstr "Neplanirano"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Neobezbeđeni krediti"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Poništi usklađeni zahtev za naplatu"
@@ -58183,7 +58293,7 @@ msgstr "Ažuriraj stavke"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Ažuriraj neizmirene obaveze za sebe"
@@ -58262,11 +58372,11 @@ msgstr "Ažurirano {0} redova finansijskog izveštaja sa novim nazivom kategorij
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Ažuriranje polja za obračun troškova i fakturisanje za ovaj projekat..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Ažuriranje varijanti..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Ažuriranje statusa radnog naloga"
@@ -58468,7 +58578,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Koristi devizni kurs na datum transakcije"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Korisi naziv koji se razlikuje od prethodnog naziva projekta"
@@ -58510,7 +58620,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Koristi se uz šablon finansijskog izveštaja"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Korisnički forum"
@@ -58574,6 +58684,11 @@ msgstr "Korisnici mogu omogućiti izbor ukoliko žele da prilagode ulaznu cenu (
msgid "Users can make manufacture entry against Job Cards"
msgstr "Korisnici mogu uneti proizvodnju putem radnih kartica"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58596,8 +58711,8 @@ msgstr "Korisnici sa ovom ulogom biće obavešteni ukoliko amortizacija imovine
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Korišćenje negativnog stanja zaliha onemogućava FIFO/Prosečnu vrednost kada je inventar negativan."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Troškovi komunalnih usluga"
@@ -58607,7 +58722,7 @@ msgstr "Troškovi komunalnih usluga"
msgid "VAT Accounts"
msgstr "PDV računi"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "PDV iznos (UAE)"
@@ -58617,12 +58732,12 @@ msgid "VAT Audit Report"
msgstr "Izveštaj o reviziji PDV-a"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "PDV na troškove i sve ostale ulazne stavke"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "PDV na prodaju i sve ostale izlazne stavke"
@@ -58816,7 +58931,6 @@ msgstr "Metod vrednovanja"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58832,14 +58946,12 @@ msgstr "Metod vrednovanja"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Stopa vrednovanja"
@@ -58847,19 +58959,19 @@ msgstr "Stopa vrednovanja"
msgid "Valuation Rate (In / Out)"
msgstr "Stopa vrednovanja (ulaz/izlaz)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Nedostaje stopa vrednovanja"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Stopa vrednovanja za stavku {0} je neophodna za računovodstvene unose za {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Stopa vrednovanja je obavezna ukoliko je unet početni inventar"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Stopa vrednovanja je obavezna za stavku {0} u redu {1}"
@@ -58869,7 +58981,7 @@ msgstr "Stopa vrednovanja je obavezna za stavku {0} u redu {1}"
msgid "Valuation and Total"
msgstr "Vrednovanje i ukupno"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Stopa vrednovanja za stavke obezbeđene od strane kupca je postavljena na nulu."
@@ -58883,7 +58995,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Stopa vrednovanja za stavku prema izlaznoj fakturi (samo za unutrašnje transfere)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Naknade sa vrstom vrednovanja ne mogu biti označene kao uključene u cenu"
@@ -58895,7 +59007,7 @@ msgstr "Naknade sa vrstom vredovanja ne mogu biti označene kao uključene u cen
msgid "Value (G - D)"
msgstr "Vrednost (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Vrednost ({0})"
@@ -59014,12 +59126,12 @@ msgid "Variance ({})"
msgstr "Odstupanje ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Varijanta"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Greška atributa varijante"
@@ -59038,7 +59150,7 @@ msgstr "Varijanta sastavnice"
msgid "Variant Based On"
msgstr "Varijanta zasnovana na"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Varijanta zasnovana na se ne može promeniti"
@@ -59056,7 +59168,7 @@ msgstr "Polje varijante"
msgid "Variant Item"
msgstr "Stavka varijante"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Stavke varijante"
@@ -59067,7 +59179,7 @@ msgstr "Stavke varijante"
msgid "Variant Of"
msgstr "Varijanta od"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Kreiranje varijante je stavljeno u red čekanja."
@@ -59361,7 +59473,7 @@ msgstr "Dokument"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Dokument #"
@@ -59433,7 +59545,7 @@ msgstr "Naziv dokumenta"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59507,7 +59619,7 @@ msgstr "Podvrsta dokumenta"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59534,7 +59646,7 @@ msgstr "Podvrsta dokumenta"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59714,8 +59826,8 @@ msgstr "Skladište je obavezno za dobijanje proizvodivih gotovih proizvoda"
msgid "Warehouse not found against the account {0}"
msgstr "Skladište nije pronađeno za račun {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Skladište je obavezno za stavku zaliha {0}"
@@ -59740,7 +59852,7 @@ msgstr "Skladište {0} ne pripada kompaniji {1}"
msgid "Warehouse {0} does not exist"
msgstr "Skladište {0} ne postoji"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Skladište {0} nije dozvoljeno za prodajnu porudžbinu {1}, trebalo bi da bude {2}"
@@ -59877,11 +59989,11 @@ msgstr "Upozorenje: Još jedan {0} # {1} postoji u odnosu na unos zaliha {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Upozorenje: Zatraženi materijal je manji od minimalne količine za porudžbinu"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Upozorenje: Količina premašuje maksimalnu količinu koja se može proizvesti na osnovu količine primljenih sirovina kroz nalog za prijem iz podugovaranja {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Upozorenje: Prodajna porudžbina {0} već postoji za nabavnu porudžbinu {1}"
@@ -59971,7 +60083,7 @@ msgstr "Talasna dužina u kilometrima"
msgid "Wavelength In Megametres"
msgstr "Talasna dužina u megametrima"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Vidimo da je {0} napravljen prema {1}. Ukoliko želite da se neizmireni iznos sa {1} ažurira, uklonite oznaku sa opcije '{2}'."
@@ -60040,7 +60152,7 @@ msgstr "Veb-sajt:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Nedelja {0} {1}"
@@ -60170,7 +60282,7 @@ msgstr "Kada je označeno, primenjivaće se samo prag po transakciji, pojedinač
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 koristiti datum i vreme knjiženja dokumenta za njegovo imenovanje umesto datuma i vremena kreiranja."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Kada kreirate stavku, unos vrednosti za ovo polje automatski će kreirati cenu stavke kao pozadinski zadatak."
@@ -60180,7 +60292,7 @@ msgstr "Kada kreirate stavku, unos vrednosti za ovo polje automatski će kreirat
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Kada u unosu zaliha za prepakovanje postoji više gotovih proizvoda ({0}), osnovna cena za sve gotove proizvode mora biti postavljena ručno. Da biste ručno postavili cenu, omogućite opciju 'Postavi osnovnu cenu ručno' u odgovarajućem redu gotovog proizvoda."
@@ -60190,11 +60302,11 @@ msgstr "Kada u unosu zaliha za prepakovanje postoji više gotovih proizvoda ({0}
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: 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 zavisnu kompaniju {0}, pronađen je matični račun {1} kao račun glavne knjige."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 računa za zavisnu kompaniju {0}, matični račun {1} nije pronađen. Molimo Vas da kreirate matični račun u odgovarajućem kontnom okviru"
@@ -60339,7 +60451,7 @@ msgstr "Urađeni radovi"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Nedovršena proizvodnja"
@@ -60376,7 +60488,7 @@ msgstr "Nedovršena proizvodnja"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60410,7 +60522,7 @@ msgstr "Utrošeni materijali radnog naloga"
msgid "Work Order Item"
msgstr "Stavka radnog naloga"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "Neusklađenost radnog naloga"
@@ -60451,19 +60563,23 @@ msgstr "Rezime radnog naloga"
msgid "Work Order Summary Report"
msgstr "Izveštaj rezimea radnih naloga"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Radni nalog ne može biti kreiran iz sledećeg razloga: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Radni nalog se ne može kreirati iz stavke šablona"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Radni nalog je {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Radni nalog nije kreiran"
@@ -60472,16 +60588,16 @@ msgstr "Radni nalog nije kreiran"
msgid "Work Order {0} created"
msgstr "Radni nalog {0} je kreiran"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "Radni nalog {0} nema proizvedenu količinu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Radni nalog: {0} radna kartica nije pronađena za operaciju {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Radni nalozi"
@@ -60506,7 +60622,7 @@ msgstr "Nedovršena proizvodnja"
msgid "Work-in-Progress Warehouse"
msgstr "Skladište za radove u toku"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Skladište za radove u toku je obavezno pre nego što podnesete"
@@ -60554,7 +60670,7 @@ msgstr "Radni sati"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60645,14 +60761,14 @@ msgstr "Radne stanice"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Otpis"
@@ -60757,7 +60873,7 @@ msgstr "Amortizovana vrednost"
msgid "Wrong Company"
msgstr "Pogrešna kompanija"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Pogrešna lozinka"
@@ -60813,11 +60929,11 @@ msgstr "Datum početka ili datum završetka godine se preklapa sa {0}. Da biste
msgid "You are importing data for the code list:"
msgstr "Uvozite podatke za listu šifara:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Niste ovlašćeni da ažurirate prema uslovima postavljenim u radnom toku {}."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Niste ovlašćeni da dodajete ili ažurirate unose pre {0}"
@@ -60825,7 +60941,7 @@ msgstr "Niste ovlašćeni da dodajete ili ažurirate unose pre {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Niste ovlašćeni da obavljate/menjate transakcije zaliha za stavku {0} u skladištu {1} pre ovog vremena."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Niste ovlašćeni da postavite zaključanu vrednost"
@@ -60853,7 +60969,7 @@ msgstr "Takođe možete postaviti podrazumevani račun za građevinske radove u
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Možete promeniti matični račun u račun bilansa stanja ili izabrati drugi račun."
@@ -60894,11 +61010,11 @@ msgstr "Možete to postaviti kao naziv mašine ili vrstu operacije. Na primer, m
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Možete koristiti {0} za usklađivanje sa {1} kasnije."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Ne možete izvršiti nikakve izmene na radnoj kartici jer je radni nalog zatvoren."
@@ -60922,7 +61038,7 @@ msgstr "Ne možete kreirati {0} unutar zatvorenog računovodstvenog perioda {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Ne možete kreirati ili otkazati nikakve računovodstvene unose u zatvorenom računovodstvenom periodu {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Ne možete kreirati/izmeniti računovodstvene unose do ovog datuma."
@@ -60983,7 +61099,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Nemate dozvolu da {} stavke u {}."
@@ -60995,19 +61111,19 @@ msgstr "Nemate dovoljno poena lojalnosti da biste ih iskoristili"
msgid "You don't have enough points to redeem."
msgstr "Nemate dovoljno poena da biste ih iskoristili."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "Nemate dozvolu da kreirate adresu kompanije. Molimo Vas da se obratite sistem menadžeru."
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr "Nemate dozvolu da ažurirate podatke o kompaniji. Molimo Vas da se obratite sistem menadžeru."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr "Nemate dozvolu da ažurirate ovaj dokument. Molimo Vas da se obratite sistem menadžeru."
@@ -61019,7 +61135,7 @@ msgstr "Imali ste {} grešaka prilikom kreiranja početnih faktura. Pogledajte {
msgid "You have already selected items from {0} {1}"
msgstr "Već ste izabrali stavke iz {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Pozvani ste da sarađujete na projektu: {0}."
@@ -61043,7 +61159,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Morate omogućiti automatsko ponovno naručivanje u podešavanjima zaliha da biste održali nivoe ponovnog naručivanja."
@@ -61059,7 +61175,7 @@ msgstr "Morate da izaberete kupca pre nego što dodate stavku."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Morate otkazati unos zatvaranja maloprodaje {} da biste mogli da otkažete ovaj dokument."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Izabrali ste grupu računa {1} kao {2} račun u redu {0}. Molimo Vas da izaberete jedan račun."
@@ -61106,11 +61222,11 @@ msgstr "Poštanski broj"
msgid "Zero Balance"
msgstr "Nulto stanje"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Nulta stopa"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Nulta količina"
@@ -61132,11 +61248,11 @@ msgstr "ZIP fajl"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Important] [ERPNext] Greške automatskog ponovnog naručivanja"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Dozvoli negativne cene za artikle`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "posle"
@@ -61177,7 +61293,7 @@ msgid "cannot be greater than 100"
msgstr "ne može biti veće od 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "datirano {0}"
@@ -61326,7 +61442,7 @@ msgstr "aplikacija za plaćanje nije instalirana. Instalirajte je sa {0} ili {1}
msgid "per hour"
msgstr "po času"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "obavljajući bilo koju od dole navedenih:"
@@ -61359,7 +61475,7 @@ msgstr "primljeno od"
msgid "reconciled"
msgstr "usklađeno"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "vraćeno"
@@ -61394,7 +61510,7 @@ msgstr "desna pozicija"
msgid "sandbox"
msgstr "sandbox"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "prodato"
@@ -61402,8 +61518,8 @@ msgstr "prodato"
msgid "subscription is already cancelled."
msgstr "pretplata je već otkazana."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61421,7 +61537,7 @@ msgstr "naslov"
msgid "to"
msgstr "ka"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "da biste raspodelili iznos ove reklamacione fakture pre njenog otkazivanja."
@@ -61448,7 +61564,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "jedinstveno, npr. SAVE20 Koristi za za ostvarivanje popusta"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61470,7 +61586,7 @@ msgstr "putem alata za ažuriranje sastavnice"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "morate izabrati račun nedovršenih kapitalnih radova u tabeli računa"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' je onemogućen"
@@ -61478,7 +61594,7 @@ msgstr "{0} '{1}' je onemogućen"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' nije u fiskalnoj godini {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
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}"
@@ -61486,7 +61602,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} ima podnetu imovinu. Uklonite stavku {2} iz tabele da biste nastavili."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} račun nije pronađen za kupca {1}."
@@ -61519,11 +61635,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} broj {1} već korišćen u {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "Operativni trošak {0} za operaciju {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} operacije: {1}"
@@ -61531,7 +61647,7 @@ msgstr "{0} operacije: {1}"
msgid "{0} Request for {1}"
msgstr "{0} zahtev za {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} zadržavanje uzorka se zasniva na šarži, molimo Vas da proverite da li stavka ima broj šarže kako biste zadržali uzorak"
@@ -61619,11 +61735,11 @@ msgstr "{0} kreirano"
msgid "{0} creation for the following records will be skipped."
msgstr "Kreiranje {0} za sledeće zapise će biti preskočeno."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} valuta mora biti ista kao podrazumevana valuta kompanije. Molimo Vas da izaberete drugi račun."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
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} kao ocenu u Tablici ocenjivanja dobavljača, nabavnu porudžbinu ka ovom dobavljaču treba izdavati sa oprezom."
@@ -61635,7 +61751,7 @@ msgstr "{0} trenutno ima {1} kao ocenu u Tablici ocenjivanja dobavljača, i zaht
msgid "{0} does not belong to Company {1}"
msgstr "{0} ne pripada kompaniji {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} ne pripada kompaniji {1}."
@@ -61644,7 +61760,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} unet dva puta u stavke poreza"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} unet dva puta {1} u stavke poreza"
@@ -61669,7 +61785,7 @@ msgstr "{0} je uspešno podnet"
msgid "{0} hours"
msgstr "{0} časova"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} u redu {1}"
@@ -61691,7 +61807,7 @@ msgstr "{0} je dodat više puta u redovima: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} je već pokrenut za {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} je blokiran, samim tim ova transakcija ne može biti nastavljena"
@@ -61699,12 +61815,12 @@ msgstr "{0} je blokiran, samim tim ova transakcija ne može biti nastavljena"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} je u nacrtu. Podnesite ga pre kreiranja imovine."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} je obavezno za stavku {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} je obavezno za račun {1}"
@@ -61712,7 +61828,7 @@ msgstr "{0} je obavezno za račun {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u {2}."
@@ -61720,7 +61836,7 @@ msgstr "{0} je obavezno. Možda zapis o konverziji valute nije kreiran za {1} u
msgid "{0} is not a CSV file."
msgstr "{0} nije CSV fajl."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} nije tekući račun kompanije"
@@ -61728,7 +61844,7 @@ msgstr "{0} nije tekući račun kompanije"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} nije čvor grupe. Molimo Vas da izaberete čvor grupe kao matični troškovni centar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} nije stavka na zalihama"
@@ -61768,27 +61884,27 @@ msgstr "{0} je na čekanju do {1}"
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. Zatvorite maloprodaju ili otkažite postojeći unos početnog stanja maloprodaje da biste kreirali novi unos početnog stanja maloprodaje."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} stavki demontirano"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} stavki u obradi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} stavki je izgubljeno tokom procesa."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} stavki proizvedeno"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} stavki vraćeno"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} stavki za vraćanje"
@@ -61796,7 +61912,7 @@ msgstr "{0} stavki za vraćanje"
msgid "{0} must be negative in return document"
msgstr "{0} mora biti negativan u povratnom dokumentu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} nije dozvoljena transakcija sa {1}. Molimo Vas da promenite kompaniju ili da dodate kompaniju u odeljak 'Dozvoljene transakcije sa' u zapisu kupca."
@@ -61812,7 +61928,7 @@ msgstr "Parametar {0} je nevažeći"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "Unosi plaćanja {0} ne mogu se filtrirati prema {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "Količina {0} za stavku {1} se prima u skladište {2} sa kapacitetom {3}."
@@ -61825,7 +61941,7 @@ msgstr "{0} do {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} jedinica je rezervisano za stavku {1} u skladištu {2}, molimo Vas da poništite rezervisanje u {3} da uskladite zalihe."
@@ -61841,16 +61957,16 @@ msgstr "{0} jedinica stavke {1} nije dostupno ni u jednom skladištu. Postoje dr
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} jedinica od {1} je neophodno u {2} sa dimenzijom inventara: {3} na {4} {5} za {6} da bi se transakcija završila."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} jedinica {1} je potrebno u {2} na {3} {4} za {5} kako bi se ova transakcija završila."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} jedinica {1} je potrebno u {2} na {3} {4} kako bi se ova transakcija završila."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} jedinica {1} je potrebno u {2} kako bi se ova transakcija završila."
@@ -61862,7 +61978,7 @@ msgstr "{0} do {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} važećih serijskih brojeva za stavku {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varijanti je kreirano."
@@ -61878,7 +61994,7 @@ msgstr "{0} će biti dato kao popust."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} će biti podešeno kao {1} pri naknadnom skeniranju stavki"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61916,8 +62032,8 @@ msgstr "{0} {1} je već u potpunosti plaćeno."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} je već delimično plaćeno. Molimo Vas da koristite 'Preuzmi neizmirene fakture' ili 'Preuzmi neizmirene porudžbine' kako biste dobili najnovije neizmirene iznose."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} je izmenjeno. Molimo Vas da osvežite stranicu."
@@ -62027,7 +62143,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}: računovodstveni unos {2} može biti napravljen samo u valuti: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: troškovni centar je obavezan za stavku {2}"
@@ -62076,8 +62192,8 @@ msgstr "{0}% od ukupne vrednosti fakture biće odobren popust."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{1} za {0} ne može biti nakon očekivanog datuma završetka za {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, završite operaciju {1} pre operacije {2}."
@@ -62097,11 +62213,11 @@ msgstr "{0}: Zaštićeni DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtuelni DocType (nema tabelu u bazi podataka)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} ne pripada kompaniji: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} ne postoji"
@@ -62109,11 +62225,11 @@ msgstr "{0}: {1} ne postoji"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} ne postoji"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} je grupni račun."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} mora biti manje od {2}"
@@ -62125,7 +62241,7 @@ msgstr "{count} imovine kreirane za {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} je otkazano ili zatvoreno."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "Veličina uzorka za {item_name} ({sample_size}) ne može biti veća od prihvaćene količine ({accepted_quantity})"
@@ -62137,7 +62253,7 @@ msgstr "{ref_doctype} {ref_name} je {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} ne može biti otkazano jer su zarađeni poeni lojalnosti iskorišćeni. Prvo otkažite {} broj {}"
diff --git a/erpnext/locale/sv.po b/erpnext/locale/sv.po
index 947864f2083..fce80ca7572 100644
--- a/erpnext/locale/sv.po
+++ b/erpnext/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-22 21:18\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -100,15 +100,15 @@ msgstr " Underenhet"
msgid " Summary"
msgstr "Översikt"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Kund Försedd Artikel\" kan inte vara Inköp Artikel"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Kund Försedd Artikel\" kan inte ha Grund Pris"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Är Fast Tillgång\" kan inte ångras då Tillgång Register finns mot denna Artikel"
@@ -273,11 +273,11 @@ msgstr "% av material levererad mot denna Plocklista"
msgid "% of materials delivered against this Sales Order"
msgstr "% av materia levererad mot denna Försäljning Order"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "\"Konto\" i Bokföring Sektion för Kund {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "\"Tillåt flera Försäljning Order mot Kund Inköp Order\""
@@ -289,7 +289,7 @@ msgstr "\"Baserad på\" och \"Gruppera efter\" kan inte vara samma"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "\"Dagar sedan senaste order\" måste vara högre än eller lika med noll"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "\"Standard {0} Konto\" i Bolag {1}"
@@ -307,7 +307,7 @@ msgstr "'Från Datum' erfordras"
msgid "'From Date' must be after 'To Date'"
msgstr "'Från Datum' måste vara efter 'Till Datum'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Har Serie Nummer' kan inte vara 'Ja' för ej Lager Artikel"
@@ -319,9 +319,9 @@ msgstr "\"Kontroll erfordras före Leverans\" har inaktiverats för artikel {0},
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "\"Kontroll erfordras före Inköp\" har inaktiverats för artikel {0}, inget behov av att skapa Kvalitet Kontroll"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Öppning'"
@@ -351,8 +351,8 @@ msgstr "'{0}' konto används redan av {1}. Använd ett annat konto."
msgid "'{0}' has been already added."
msgstr "'{0}' har redan lagts till."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "\"{0}\" ska vara i bolag valuta {1}."
@@ -522,8 +522,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -612,8 +612,8 @@ msgstr "90-120 dagar"
msgid "90 Above"
msgstr "90+ Dagar"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -807,7 +807,7 @@ msgstr "Datum Inst
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Klarering datum måste vara efter check datum för rad(ar): {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Artikel {0} på rad(er) {1} fakturerad mer än {2} "
@@ -824,7 +824,7 @@ msgstr "Verifikat erfordras för rad(ar): {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Kan inte överfakturera för följande Artiklar:
"
@@ -889,7 +889,7 @@ msgstr "Registrering datum {0} kan inte vara före Inköp Order datum för f
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 "Prislista Pris är inte angiven som redigerbart i Försäljning Inställningar. I det här scenariot kommer inställning Uppdatera Prislista Baserat På till Prislista Pris att förhindra automatisk uppdatering av artikel pris.
Är du säker på att du vill fortsätta?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "För att tillåta överfakturering, ange tillåtet belopp i Bokföring Inställningar.
"
@@ -977,11 +977,11 @@ msgstr "Genvägar\n"
msgid "Your Shortcuts "
msgstr "Genvägar "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Totalt Belopp: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Utestående belopp: {0}"
@@ -1050,7 +1050,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Kund Grupp finns redan med samma namn.Ändra Kund Namn eller ändra namn på Kund Grupp"
@@ -1214,11 +1214,11 @@ msgstr "Förkortning"
msgid "Abbreviation"
msgstr "Förkortning"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Förkortning används redan för annat Bolag"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Förkortning erfordras"
@@ -1226,7 +1226,7 @@ msgstr "Förkortning erfordras"
msgid "Abbreviation: {0} must appear only once"
msgstr "Förkortning: {0} får endast visas en gång"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Över"
@@ -1280,7 +1280,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Accepterad Kvantitet i Lager Enhet"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Godkänd Kvantitet"
@@ -1316,7 +1316,7 @@ msgstr "Åtkomst Nyckel erfordras för Tjänsteleverantör: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Enligt CEFACT/ICG/2010/IC013 eller CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Enligt stycklista {0} saknas artikel '{1}' i lager post."
@@ -1434,8 +1434,8 @@ msgstr "Konto"
msgid "Account Manager"
msgstr "Konto Ansvarig"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Konto Saknas"
@@ -1453,7 +1453,7 @@ msgstr "Konto Saknas"
msgid "Account Name"
msgstr "Konto Namn"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Konto inte hittad"
@@ -1466,7 +1466,7 @@ msgstr "Konto inte hittad"
msgid "Account Number"
msgstr "Konto Nummer"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Konto Nummer {0} som redan används i Konto {1}"
@@ -1505,7 +1505,7 @@ msgstr "Konto Undertyp"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1521,11 +1521,11 @@ msgstr "Konto Typ"
msgid "Account Value"
msgstr "Konto Saldo"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Konto Saldo är redan i Kredit, Ej Tillåtet att ange \"Saldo Måste Vara\" som \"Debet\""
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Konto Saldo är redan i Debet, Ej Tillåtet att ange \"Balans måste vara\" som \"Kredit\""
@@ -1592,15 +1592,15 @@ msgstr "Konto där intäkter från försäljning av denna artikel kommer att kre
msgid "Account where the cost of this item will be debited on purchase"
msgstr "Konto där kostnad för denna artikel debiteras vid inköp"
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Konto med underordnade noder kan inte omvandlas till Register"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Konto med underordnade noder kan inte anges som Register"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Konto med befintlig transaktion kan inte omvandlas till grupp."
@@ -1608,8 +1608,8 @@ msgstr "Konto med befintlig transaktion kan inte omvandlas till grupp."
msgid "Account with existing transaction can not be deleted"
msgstr "Konto med befintlig transaktion kan inte tas bort"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Konto med befintlig transaktion kan inte omvandlas till register"
@@ -1617,11 +1617,11 @@ msgstr "Konto med befintlig transaktion kan inte omvandlas till register"
msgid "Account {0} added multiple times"
msgstr "Konto {0} har lagts till flera gånger"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Konto {0} kan inte konverteras till Grupp eftersom det redan är angiven som {1} för {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Konto {0} kan inte inaktiveras eftersom det redan är angiven som {1} för {2}."
@@ -1629,11 +1629,11 @@ msgstr "Konto {0} kan inte inaktiveras eftersom det redan är angiven som {1} f
msgid "Account {0} does not belong to company {1}"
msgstr "Kontot {0} tillhör inte bolag {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Konto {0} tillhör inte Bolag: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Konto {0} finns inte"
@@ -1649,15 +1649,15 @@ msgstr "Konto {0} stämmer inte Bolag {1} i Kontoplan: {2}"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Konto {0} tillhör inte {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Konto {0} finns i Moder Bolag {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Konto {0} lagd till i Dotter Bolag {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Konto {0} är inaktiverad."
@@ -1665,7 +1665,7 @@ msgstr "Konto {0} är inaktiverad."
msgid "Account {0} is frozen"
msgstr "Konto {0} är låst"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Konto {0} är ogiltig. Konto Valuta måste vara {1}"
@@ -1673,19 +1673,19 @@ msgstr "Konto {0} är ogiltig. Konto Valuta måste vara {1}"
msgid "Account {0} should be of type Expense"
msgstr "Konto {0} ska vara konto klass Kostnad"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Konto {0}: Överordnad Konto {1} kan inte vara register"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Konto {0}: Överordnad Konto {1} tillhör inte Bolag: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Konto {0}: Överordnad Konto {1} finns inte"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Konto: {0}: Kan inte tilldela konto som sitt överordnad konto"
@@ -1701,7 +1701,7 @@ msgstr "Konto: {0} kan endast uppdateras via Lager Transaktioner"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Konto: {0} är inte tillåtet enligt Betalning Post"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Konto: {0} med valuta: kan inte väljas {1}"
@@ -1986,8 +1986,8 @@ msgstr "Bokföring Poster"
msgid "Accounting Entry for Asset"
msgstr "Bokföring Post för Tillgång"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Bokföring Post för Landad Kostnad Verifikat i Lager Post {0}"
@@ -2011,8 +2011,8 @@ msgstr "Bokföring Post för Service"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Bokföring Post för Lager"
@@ -2021,7 +2021,7 @@ msgstr "Bokföring Post för Lager"
msgid "Accounting Entry for {0}"
msgstr "Bokföring Post för {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Bokföring Post för {0}: {1} kan endast skapas i valuta: {2}"
@@ -2076,7 +2076,6 @@ msgstr "Bokföring poster är låsta fram till detta datum. Endast användare me
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2089,14 +2088,13 @@ msgstr "Bokföring poster är låsta fram till detta datum. Endast användare me
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Bokföring"
@@ -2126,8 +2124,8 @@ msgstr "Konton Saknade från rapport"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2227,15 +2225,15 @@ msgstr "Bokföring Tabell kan inte vara tom."
msgid "Accounts to Merge"
msgstr "Konton att slå ihop"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Ackumulerade Kostnader"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Ackumulerad Avskrivning"
@@ -2329,13 +2327,13 @@ msgstr "Åtgärd om Ackumulerad Månad Budget överskrider Verklig"
#. field in DocType 'Budget'
#: erpnext/accounts/doctype/budget/budget.json
msgid "Action if Accumulated Monthly Budget Exceeded on MR"
-msgstr "Åtgärd om Ackumulerad Månad Budget överskrider Material Begäran"
+msgstr "Åtgärd om Material Begäran överskrider Ackumulerad Månad Budget"
#. Label of the action_if_accumulated_monthly_budget_exceeded_on_po (Select)
#. field in DocType 'Budget'
#: erpnext/accounts/doctype/budget/budget.json
msgid "Action if Accumulated Monthly Budget Exceeded on PO"
-msgstr "Åtgärd om Ackumulerad Månad Budget överskrider Inköp Order"
+msgstr "Åtgärd om Inköp Order överskrider Ackumulerad Månad Budget"
#. Label of the action_if_accumulated_monthly_exceeded_on_cumulative_expense
#. (Select) field in DocType 'Budget'
@@ -2353,13 +2351,13 @@ msgstr "Åtgärd om Årlig Budget överskrider Verklig"
#. DocType 'Budget'
#: erpnext/accounts/doctype/budget/budget.json
msgid "Action if Annual Budget Exceeded on MR"
-msgstr "Åtgärd om Årlig Budget överskrider Material Begäran"
+msgstr "Åtgärd om Material Begäran överskrider Årlig Budget"
#. Label of the action_if_annual_budget_exceeded_on_po (Select) field in
#. DocType 'Budget'
#: erpnext/accounts/doctype/budget/budget.json
msgid "Action if Annual Budget Exceeded on PO"
-msgstr "Åtgärd om Årlig Budget överskrider Inköp Order"
+msgstr "Åtgärd om Inköp Order överskrider Årlig Budget"
#. Label of the action_if_annual_exceeded_on_cumulative_expense (Select) field
#. in DocType 'Budget'
@@ -2400,7 +2398,7 @@ msgstr "Åtgärder Utförda"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr "Aktivera Serie / Parti Nummer för Artikel"
@@ -2524,7 +2522,7 @@ msgstr "Faktisk Slut Datum"
msgid "Actual End Date (via Timesheet)"
msgstr "Faktisk Slut Datum (via Tidrapport)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Faktiskt Slutdatum kan inte vara före Faktiskt Startdatum"
@@ -2646,7 +2644,7 @@ msgstr "Faktisk Tid i Timmar (via Tidrapport)"
msgid "Actual qty in stock"
msgstr "Faktisk Kvantitet på Lager"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Faktisk Moms/Avgift kan inte inkluderas i Artikel Pris på rad {0}"
@@ -2655,7 +2653,7 @@ msgstr "Faktisk Moms/Avgift kan inte inkluderas i Artikel Pris på rad {0}"
msgid "Ad-hoc Qty"
msgstr "Ändamål Kvantitet"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Lägg till / Ändra Priser"
@@ -3154,7 +3152,7 @@ msgstr "Extra Information "
msgid "Additional Information updated successfully."
msgstr "Tilläggsinformation uppdaterad."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Extra Material Överföring"
@@ -3177,7 +3175,7 @@ msgstr "Extra Drift Kostnader"
msgid "Additional Transferred Qty"
msgstr "Extra Överförd Kvantitet"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3189,11 +3187,6 @@ msgstr "Extra Överförd Kvantitet {0}\n"
"\t\t\t\t\tunder fält \"Överför Extra Råmaterial till Pågående Arbete Lager\"\n"
"\t\t\t\t\ti Produktion Inställningar."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Extra information angående Kund."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Extra {0} {1} av artikel {2} erfordras enligt stycklista för att slutföra denna transaktion"
@@ -3339,11 +3332,6 @@ msgstr "Adress behöver länkas till Bolag. Lägg till rad för Bolag i Länk Ta
msgid "Address used to determine Tax Category in transactions"
msgstr "Adress som används för att bestämma Moms Kategori i Transaktioner"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Justera Kvantitet"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Justering Mot"
@@ -3356,8 +3344,8 @@ msgstr "Justering Baserad på Inköp Faktura Pris"
msgid "Administrative Assistant"
msgstr "Administrativ Assistent"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Administrativa Kostnader"
@@ -3425,7 +3413,7 @@ msgstr "Förskott Betalning Status"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Förskott Betalningar"
@@ -3545,7 +3533,7 @@ msgstr "Mot Konto"
msgid "Against Blanket Order"
msgstr "Mot Ramavtal Order"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Mot Kund Order {0}"
@@ -3687,11 +3675,11 @@ msgstr "Ålder"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Ålder (Dagar)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Ålder ({0})"
@@ -3841,21 +3829,21 @@ msgstr "Alla Kund Grupper"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Alla Avdelningar"
@@ -3935,7 +3923,7 @@ msgstr "Alla Leverantör Grupper"
msgid "All Territories"
msgstr "Alla Distrikt"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Alla Lager"
@@ -3949,6 +3937,11 @@ msgstr "Alla tilldelningar är avstämda"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "All kommunikation inklusive och ovanför detta ska flyttas till ny Ärende"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr "Alla fakturor och order för denna kund kommer att skapas i denna valuta."
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Alla artiklar är redan efterfrågade"
@@ -3957,23 +3950,23 @@ msgstr "Alla artiklar är redan efterfrågade"
msgid "All items have already been Invoiced/Returned"
msgstr "Alla Artiklar är redan Fakturerade / Återlämnade"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Alla Artiklar är redan mottagna"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Alla Artikel har redan överförts för denna Arbetsorder."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Alla Artiklar i detta dokument har redan länkad Kvalitet Kontroll."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Alla artiklar måste vara länkade till Försäljning Order eller Underleverantör Order för denna Försäljning Faktura."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Alla länkade Försäljning Ordrar måste läggas ut på Underleverantörer."
@@ -3987,11 +3980,11 @@ msgstr "Alla Kommentar och E-post meddelande kommer att kopieras från ett dokum
msgid "All the items have been already returned."
msgstr "Alla artiklar är redan returnerade."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Alla nödvändiga artiklar (råmaterial) kommer att hämtas från stycklista och läggs till denna tabell. Här kan du också ändra hämtlager för valfri artikel. Och under produktion kan du spåra överförd råmaterial från denna tabell."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Alla Artiklar är redan Fakturerade / Återlämnade"
@@ -4010,7 +4003,7 @@ msgstr "Tilldela"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Tilldela Förskott Automatiskt (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Tilldela Betalning Belopp"
@@ -4020,7 +4013,7 @@ msgstr "Tilldela Betalning Belopp"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Tilldela Betalning baserat på Betalning Villkor"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Tilldela Betalning Begäran"
@@ -4050,7 +4043,7 @@ msgstr "Tilldelad"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4107,7 +4100,7 @@ msgstr "Tilldelad Kvantitet"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4171,7 +4164,7 @@ msgstr "Tillåt Retur"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Tillåt Interna Överföringar till Marknadsmässig Pris"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Tillåt att Artikel läggs till flera gånger i Transaktion"
@@ -4271,7 +4264,7 @@ msgstr "Tillåt offert med noll kvantitet"
#: erpnext/controllers/item_variant.py:159
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Allow Rename Attribute Value"
-msgstr "Tillåt Ändra Namn på Artikel Egenskaper"
+msgstr "Tillåt Namnändring på Artikel Egenskaper"
#. Label of the allow_zero_qty_in_request_for_quotation (Check) field in
#. DocType 'Buying Settings'
@@ -4294,16 +4287,6 @@ msgstr "Tillåt återställning av Service Nivå Avtal från Support Inställnin
msgid "Allow Sales"
msgstr "Tillåt Försäljning"
-#. 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 "Tillåt skapande av Försäljning Faktura utan Försäljning Följesedel"
-
-#. 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 "Tillåt skapande av Försäljning Faktura utan Försäljning Order"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4429,6 +4412,16 @@ msgstr "Tillåt flera Försäljning Order mot Kund Inköp Order"
msgid "Allow negative rates for Items"
msgstr "Tillåt Negativa Priser för Artiklar"
+#. 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 "Tillåt skapande av försäljning fakturor utan försäljning följesedel"
+
+#. 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 "Tillåt skapande av försäljning fakturor utan försäljning order"
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4505,10 +4498,8 @@ msgstr "Tillåtna Artiklar"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Tillåtet att skapa Transaktioner med"
@@ -4520,6 +4511,11 @@ msgstr "Tillåtna primära roller är 'Kund' och 'Leverantör'. Välj endast en
msgid "Allowed special characters are '/' and '-'"
msgstr "Tillåtna specialtecken är '/' och '-'"
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr "Tillåtet att göra transaktioner med"
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4561,8 +4557,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Du kan inte byta tillbaka till FIFO efter att ha angivit värdering sätt till MA för denna artikel."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4803,7 +4799,7 @@ msgstr "Fråga Alltid"
msgid "Amount"
msgstr "Belopp"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Belopp (AED)"
@@ -4916,7 +4912,7 @@ msgstr "Belopp i Konto Valuta"
#. Request'
#: erpnext/accounts/doctype/payment_request/payment_request.json
msgid "Amount in party's bank account currency"
-msgstr "Belopp i partens Bank Konto Valuta"
+msgstr "Belopp i Parti Bank Konto Valuta"
#. Description of the 'Amount' (Currency) field in DocType 'Payment Request'
#: erpnext/accounts/doctype/payment_request/payment_request.json
@@ -4937,12 +4933,12 @@ msgid "Amount to Bill"
msgstr "Belopp att Fakturera"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Belopp {0} {1} mot {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr "Belopp {0} {1} justerad mot {2} {3}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Belopp {0} {1} avdragen mot {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr "Belopp {0} {1} som justering av {2}"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4987,11 +4983,11 @@ msgstr "Belopp"
msgid "An Item Group is a way to classify items based on types."
msgstr "Artikel grupp är ett sätt att klassificera artiklar baserat på typer."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Fel har uppstått vid ombokning av artikel värdering via {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Fel uppstod under uppdatering process"
@@ -5531,7 +5527,7 @@ msgstr "Eftersom fält {0} är aktiverad erfordras fält {1}."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Eftersom fält {0} är aktiverad ska värdet för fält {1} vara mer än 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Eftersom det finns befintliga godkäAda transaktioner mot artikel {0} kan man inte ändra värdet på {1}."
@@ -5543,7 +5539,7 @@ msgstr "Eftersom det finns reserverat lager kan du inte inaktivera {0}."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Eftersom det finns tillräckligt med Underenhet Artiklar erfordras inte Arbetsorder för Lager {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Eftersom det finns tillräckligt med Råmaterial erfordras inte Material Begäran för Lager {0}."
@@ -5681,7 +5677,7 @@ msgstr "Tillgång Kategori Konto"
msgid "Asset Category Name"
msgstr "Tillgång Kategori Namn"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Tillgång Kategori erfordras för Fast Tillgång post"
@@ -5858,8 +5854,8 @@ msgstr "Tillgång Kvantitet"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5959,7 +5955,7 @@ msgstr "Tillgång Annullerad"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Tillgång kan inte annulleras, eftersom det redan är {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Tillgång kan inte skrotas före senaste avskrivning post."
@@ -5991,7 +5987,7 @@ msgstr "Tillgång ur funktion på grund av reparation av Tillgång {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Tillgång mottagen på plats {0} och utfärdad till Personal {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Tillgång återställd"
@@ -5999,20 +5995,20 @@ msgstr "Tillgång återställd"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Tillgång återställd efter att Tillgång Aktivering {0} annullerats"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Tillgång återlämnad"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Tillgång skrotad"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Tillgång skrotad via Journal Post {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Tillgång Såld"
@@ -6032,7 +6028,7 @@ msgstr "Tillgång uppdaterad efter att ha delats upp i Tillgång {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Tillgång uppdaterad på grund av Tillgång Reparation {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Tillgång {0} kan inte skrotas, eftersom det redan är {1}"
@@ -6073,7 +6069,7 @@ msgstr "Tillgång {0} är inte angiven för att beräkna avskrivningar."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Tillgång {0} är inte godkänd. Godkänn tillgång innan du fortsätter."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Tillgång {0} måste godkännas"
@@ -6123,7 +6119,7 @@ msgstr "Tillgångar har inte skapats för {item_code}. Skapa Tillgång manuellt.
msgid "Assets {assets_link} created for {item_code}"
msgstr "Tillgångar {assets_link} skapade för {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Tilldela jobb till Personal"
@@ -6184,7 +6180,7 @@ msgstr "Åtminstone en av Tillämpliga Moduler ska väljas"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Minst en av Försäljning eller Inköp måste väljas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Minst en råmaterial artikel måste finnas i lager post för typ {0}"
@@ -6192,21 +6188,17 @@ msgstr "Minst en råmaterial artikel måste finnas i lager post för typ {0}"
msgid "At least one row is required for a financial report template"
msgstr "Minst en rad erfordras för finans rapport mall"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Minst ett Lager erfordras"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "På rad #{0}: Differens Konto får inte vara ett Lager Konto. Ändra Konto Typ för konto {1} eller välj ett annat konto"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr "På rad #{0}: Differenskonto får inte vara konto av Lagertyp..."
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "Rad # {0}: sekvens nummer {1} får inte vara lägre än föregående rad sekvens nummer {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "På rad #{0}: Differens Konto {1} är vald, som är konto av typ Kostnad för Sålda Artiklar. Välj ett annat konto"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr "På rad #{0}: du har valt Differens Konto {1}..."
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6288,11 +6280,11 @@ msgstr "Egenskap Namn"
msgid "Attribute Value"
msgstr "Egenskap Värde"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr "Egenskap värde {0} är inte giltigt för vald egenskap {1}."
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Egenskap Tabell erfordras"
@@ -6300,19 +6292,19 @@ msgstr "Egenskap Tabell erfordras"
msgid "Attribute value: {0} must appear only once"
msgstr "Egenskap Värde: {0} får endast visas en gång"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr "Egenskap {0} är inaktiverad."
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr "Egenskap {0} är inte giltigt för vald mall."
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Egenskaper {0} valda flera gånger i Egenskap Tabell"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Egenskaper"
@@ -6524,7 +6516,7 @@ msgstr "Automatiskt avstämning av Parti i Bank Transaktioner"
msgid "Auto re-order"
msgstr "Automatisk Ombeställning"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Återkommande Dokument uppdaterad"
@@ -6636,7 +6628,7 @@ msgstr "Tillgängligt för Användning Datum"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Tillgänglig Kvantitet"
@@ -6701,7 +6693,7 @@ msgstr "Tillgänglig Kvantitet"
#. Name of a report
#: erpnext/stock/report/available_serial_no/available_serial_no.json
msgid "Available Serial No"
-msgstr "Tillgänglig Serienummer"
+msgstr "Tillgängliga Serienummer"
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:38
msgid "Available Stock"
@@ -6725,10 +6717,6 @@ msgstr "Tillgängligt för Användning Datum"
msgid "Available for use date is required"
msgstr "Tillgängligt för Användning Datum erfordras"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Tillgänglig Kvantitet är {0}, behövs {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Tillgänglig {0}"
@@ -6737,8 +6725,8 @@ msgstr "Tillgänglig {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Tillgängligt för Användning Datum ska vara senare än Inköp Datum"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Genomsnitt Ålder"
@@ -6762,7 +6750,9 @@ msgstr "Genomsnittligt Order Värde"
msgid "Average Order Values"
msgstr "Genomsnittligt Order Värde"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Genomsnitt Pris"
@@ -6786,7 +6776,7 @@ msgid "Avg Rate"
msgstr "Genomsnitt Pris"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Genomsnitt Pris (Lager Saldo)"
@@ -6844,7 +6834,7 @@ msgstr "Lager Kvantitet"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6867,7 +6857,7 @@ msgstr "Stycklista"
msgid "BOM 1"
msgstr "Stycklista 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Stycklista 1 {0} och Stycklista 2 {1} ska inte vara lika"
@@ -6939,11 +6929,6 @@ msgstr "Stycklista Utvidgad Artikel"
msgid "BOM ID"
msgstr "Stycklista"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Stycklista Information"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7097,7 +7082,7 @@ msgstr "Stycklista Webbplats Artikel"
msgid "BOM Website Operation"
msgstr "Stycklista Webbplats Åtgärd"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "Stycklista och Färdig Kvantitet erfordras för Demontering"
@@ -7165,7 +7150,7 @@ msgstr "Bakdaterad Lager Post"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Retroaktivt hämta material från Pågående Arbete Lager"
@@ -7229,7 +7214,7 @@ msgstr "Saldo i Bas Valuta"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Saldo Kvantitet"
@@ -7294,7 +7279,7 @@ msgstr "Saldo Typ"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Saldo Värde"
@@ -7450,8 +7435,8 @@ msgid "Bank Balance"
msgstr "Bank Saldo"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Bank Avgifter"
@@ -7566,8 +7551,8 @@ msgstr "Bank Garanti Typ"
msgid "Bank Name"
msgstr "Bank Namn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Övertrassering"
@@ -7740,11 +7725,11 @@ msgstr "Bank"
msgid "Barcode Type"
msgstr "Streck/QR Kod Typ"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Streck/QR Kod {0} används redan i Artikel {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Streck/QR Kod {0} är inte giltig {1} kod"
@@ -7901,7 +7886,7 @@ msgstr "Bas Pris (per Lager Enhet)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7976,7 +7961,7 @@ msgstr "Parti Artikel Utgång Status"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8065,13 +8050,13 @@ msgstr "Parti Kvantitet uppdaterad till {0}"
msgid "Batch Quantity"
msgstr "Parti Kvantitet"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8088,7 +8073,7 @@ msgstr "Parti Enhet"
msgid "Batch and Serial No"
msgstr "Parti och Serie Nummer"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Parti är inte skapad för Artikel {} eftersom den inte har Parti Nummer."
@@ -8111,12 +8096,12 @@ msgstr "Parti {0} och Lager"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Parti {0} är inte tillgängligt i lager {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Parti {0} av Artikel {1} är förfallen."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Parti {0} av Artikel {1} är Inaktiverad."
@@ -8171,7 +8156,7 @@ msgstr "Nedan följer en lista över alla poster som bokförts mot bankkonto {0}
#. 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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8180,7 +8165,7 @@ msgstr "Faktura Datum"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8194,11 +8179,13 @@ msgstr "Faktura för avvisad kvantitet i Inköp Faktura"
#. 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Stycklista"
@@ -8299,7 +8286,7 @@ msgstr "Faktura Adress Detaljer"
msgid "Billing Address Name"
msgstr "Faktura Adress Namn"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Faktura Adress tillhör inte {0}"
@@ -8551,6 +8538,16 @@ msgstr "Spärra Faktura"
msgid "Block Supplier"
msgstr "Spärra Leverantör"
+#. 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 "Blockerar alla ytterligare bokföring poster på denna kund konto. Endast användare med rollen frysta poster kan åsidosätta.\n"
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr "Blockerar att denna kund används i nya transaktioner."
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8647,7 +8644,7 @@ msgstr "Bokförd"
msgid "Booked Fixed Asset"
msgstr "Bokförd Fast Tillgång"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Bokföring är låst till {0}"
@@ -8896,7 +8893,7 @@ msgstr "Buffrad Kursor"
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:162
msgid "Build All?"
-msgstr "Kompilera Alla?"
+msgstr "Skapa Alla?"
#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:20
msgid "Build Tree"
@@ -8906,8 +8903,8 @@ msgstr "Build Tree"
msgid "Buildable Qty"
msgstr "Producerbart Kvantitet"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Fastighet Konto"
@@ -9068,16 +9065,16 @@ msgstr "Som standard är leverantör namn satt enligt angiven Leverantörs Namn.
msgid "By-Product"
msgstr "Resterande Artikel"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Ignorera Kredit Kontroll vid Försäljning Order"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Ignorera Kredit Kontroll vid Försäljning Order"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr "Ignorera kreditgräns kontroll vid försäljning order"
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9125,8 +9122,8 @@ msgstr "Säljstöd Anteckning"
msgid "CRM Settings"
msgstr "Säljstöd Inställningar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Kapitalarbete Pågår"
@@ -9381,7 +9378,7 @@ msgstr "Kampanj {0} hittades inte"
msgid "Can be approved by {0}"
msgstr "Kan godkännas av {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Kan inte stänga Arbetsorder, eftersom {0} Jobbkort har Pågående Arbete status."
@@ -9414,13 +9411,13 @@ msgstr "Kan inte filtrera baserat på Verifikat nummer om grupperad efter Verifi
msgid "Can only make payment against unbilled {0}"
msgstr "Kan bara skapa betalning mot ofakturerad {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Kan hänvisa till rad endast om avgiften är \"På Föregående Rad Belopp\" eller \"Föregående Rad Totalt\""
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Kan inte ändra värdering sätt, eftersom det finns transaktioner mot vissa artiklar som inte har egen värdering sätt"
@@ -9462,7 +9459,7 @@ msgstr "Kan inte tilldela Kassör"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Kan inte Beräkna Ankomst Tid eftersom Förare Adress saknas."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Kan inte ändra Lager Konto Inställningar"
@@ -9470,9 +9467,9 @@ msgstr "Kan inte ändra Lager Konto Inställningar"
msgid "Cannot Create Return"
msgstr "Kan inte Skapa Retur"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Kan inte Slå Samman"
@@ -9500,7 +9497,7 @@ msgstr "Kan inte ändra {0} {1}, skapa ny istället."
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Kan inte tillämpa TDS mot flera parter i en post"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Kan inte vara Fast Tillgång artikel när Lager Register är skapad."
@@ -9520,7 +9517,7 @@ msgstr "Kan inte annullera lager reservation post {0}, eftersom den har använts
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Kan inte avbryta eftersom behandling av annullerade dokument väntar."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Kan inte annullera eftersom godkänd Lager Post {0} finns redan"
@@ -9540,15 +9537,15 @@ msgstr "Det går inte att annullera detta dokument eftersom det är länkat till
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Kan inte annullera detta dokument eftersom det är länkad med godkänd tillgång {asset_link}. Annullera att fortsätta."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Kan inte annullera transaktion för Klart Arbetsorder."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Kan inte ändra egenskap efter Lager transaktion. Skapa ny Artikel och överför kvantitet till ny Artikel"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Kan inte ändra Referens Dokument Typ"
@@ -9556,11 +9553,11 @@ msgstr "Kan inte ändra Referens Dokument Typ"
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Kan inte ändra Service Stopp Datum för Artikel på rad {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Kan inte ändra Variant Egenskaper efter Lager transaktion.Skapa ny Artikel för att göra detta."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Kan inte ändra Bolag Standard Valuta, eftersom det redan finns transaktioner. Transaktioner måste annulleras för att ändra valuta."
@@ -9576,11 +9573,11 @@ msgstr "Kan inte konvertera Resultat Enhet till Bokföring Register då den har
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Kan inte konvertera uppgift till ej grupp eftersom följande underordnade uppgifter finns: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Kan inte konvertera till Grupp eftersom Konto Typ är vald."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Kan inte konvertera till Grupp eftersom Konto Typ valts."
@@ -9588,7 +9585,7 @@ msgstr "Kan inte konvertera till Grupp eftersom Konto Typ valts."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Kan inte skapa Lager Reservation Poster för framtid daterade Inköp Följesedlar."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Kan inte skapa plocklista för Försäljning Order {0} eftersom den har reserverad lager. Vänligen avboka lager för att skapa plocklista."
@@ -9614,7 +9611,7 @@ msgstr "Kan inte ange som förlorad, eftersom Försäljning Offert är skapad."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Kan inte dra av när kategori angets \"Värdering\" eller \"Värdering och Total\""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Kan inte ta bort Valutaväxling Resultat rad"
@@ -9622,12 +9619,12 @@ msgstr "Kan inte ta bort Valutaväxling Resultat rad"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Kan inte ta bort Serie Nummer {0}, eftersom det används i Lager Transaktioner"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Det går inte att ta bort artikel som finns på order"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Kan inte ta bort skyddad system DocType: {0}"
@@ -9639,7 +9636,7 @@ msgstr "Kan inte ta bort virtuell DocType: {0}. Virtuella DocTypes har inga data
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "Kan inte inaktivera Serie och Parti nummer för artikel, eftersom det finns befintliga poster för serie / parti nummer."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Det går inte att inaktivera kontinuerlig lager hantering, eftersom det finns befintliga Lager Register Poster för företaget {0}. Avbryt Lager Transaktioner först och försök igen."
@@ -9647,20 +9644,20 @@ msgstr "Det går inte att inaktivera kontinuerlig lager hantering, eftersom det
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "Kan inte inaktivera {0} eftersom det kan leda till felaktig lager värdering."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Kan inte demontera mer än producerad kvantitet."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr "Kan inte demontera {0} mot lager post {1}. Endast {2} tillgängligt för demontering."
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Kan inte aktivera Lager Konto per Lager, eftersom det redan finns befintliga Lager Register Poster för {0} med Lager Konto per Lager. Avbryt lager transaktioner först och försök igen."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Kan inte säkerställa leverans efter Serie Nummer eftersom Artikel {0} lagts till med och utan säker leverans med serie nummer"
@@ -9676,7 +9673,7 @@ msgstr "Kan inte hitta Artikel eller Lager med denna Streckkod / QRkod"
msgid "Cannot find Item with this Barcode"
msgstr "Kan inte hitta Artikel med denna Streck/QR Kod"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Kan inte hitta standardlager för artikel {0}. Ange det i Artikelinställningar eller i Lagerinställningar."
@@ -9684,15 +9681,15 @@ msgstr "Kan inte hitta standardlager för artikel {0}. Ange det i Artikelinstäl
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Det går inte att slå samman {0} '{1}' till '{2}' eftersom båda har befintliga bokföring poster i olika valutor för '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Kan inte producera mer av artikel {0} än Försäljning Order Kvantitet {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Kan inte producera fler artiklar för {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Kan inte producera mer än {0} artiklar för {1}"
@@ -9700,12 +9697,12 @@ msgstr "Kan inte producera mer än {0} artiklar för {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Kan inte ta emot från kund mot negativt utestående"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Kan inte minska kvantitet än den som är på order eller inköp kvantitet"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Kan inte hänvisa till rad nummer högre än eller lika med aktuell rad nummer för denna avgift typ"
@@ -9718,14 +9715,14 @@ msgstr "Kan inte hämta länk token för uppdatering Kontrollera Fellogg för me
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Kan inte hämta länk token. Se fellogg för mer information"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr "Det går inte att välja en grupptyp Kundgrupp. Välj grupp som inte tillhör Kund Grupp."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9739,7 +9736,7 @@ msgstr "Kan inte ange som förlorad eftersom Försäljning Order är skapad."
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Kan inte ange auktorisering på grund av Rabatt för {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Kan inte ange flera Artikel Standard för Bolag."
@@ -9747,11 +9744,11 @@ msgstr "Kan inte ange flera Artikel Standard för Bolag."
msgid "Cannot set multiple account rows for the same company"
msgstr "Det går inte att ange flera kontorader för samma bolag"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Kan inte ange kvantitet som är lägre än levererad kvantitet."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Kan inte ange kvantitet som är lägre än mottagen kvantitet."
@@ -9763,7 +9760,7 @@ msgstr "Kan inte ange fält {0} för kopiering i varianter"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Kan inte starta borttagning. Annan borttagning {0} är redan i kö/körs. Vänta tills den är klar."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "Kan inte uppdatera pris eftersom artikel {0} redan är beställd eller köpt mot denna offert"
@@ -9796,7 +9793,7 @@ msgstr "Kapacitet (Lager Enhet)"
msgid "Capacity Planning"
msgstr "Kapacitet Planering"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Kapacitet Planering Fel, planerad start tid kan inte vara samma som slut tid"
@@ -9815,13 +9812,13 @@ msgstr "Kapacitet i Lager Enhet"
msgid "Capacity must be greater than 0"
msgstr "Kapacitet måste vara högre än 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Kapital Utrustning"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Aktie Kapital"
@@ -10038,7 +10035,7 @@ msgstr "Kategori Detaljer"
msgid "Category-wise Asset Value"
msgstr "Tillgång Värde per Kategori"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Varning"
@@ -10143,7 +10140,7 @@ msgstr "Ändra Utgivning Datum"
msgid "Change in Stock Value"
msgstr "Förändring i Lager Värde"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Ändra Konto Typ till Fordring Konto eller välj annat konto."
@@ -10153,7 +10150,7 @@ msgstr "Ändra Konto Typ till Fordring Konto eller välj annat konto."
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Ange datum för nästa synkronisering"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Ändrade kund namn till '{}' eftersom '{}' redan finns."
@@ -10161,7 +10158,7 @@ msgstr "Ändrade kund namn till '{}' eftersom '{}' redan finns."
msgid "Changes in {0}"
msgstr "Ändras om {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Ändring av Kund Grupp för vald Kund är inte tillåtet."
@@ -10176,7 +10173,7 @@ msgid "Channel Partner"
msgstr "Partner"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Debitering av typ \"Faktisk\" i rad {0} kan inte inkluderas i Artikel Pris eller Betald Belopp"
@@ -10230,7 +10227,7 @@ msgstr "Diagram Träd"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10373,7 +10370,7 @@ msgstr "Check Bredd"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Referens Datum"
@@ -10431,7 +10428,7 @@ msgstr "Underordnad Dokument Namn"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Underordnad Rad Referens"
@@ -10483,6 +10480,11 @@ msgstr "Klasificering av Kunder per region"
msgid "Classify As"
msgstr "Klassificera som"
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr "Klassificera vilken typ av marknad denna kund tillhör, använd för försäljning statistik och målgrupp inriktning."
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10625,11 +10627,11 @@ msgstr "Stängd Dokument"
msgid "Closed Documents"
msgstr "Stängda Dokument"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Stängd Arbetsorder kan inte stoppas eller öppnas igen"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Stängd Order kan inte annulleras. Öppna igen för att annullera."
@@ -10881,11 +10883,17 @@ msgstr "Provision Sats %"
msgid "Commission Rate (%)"
msgstr "Provision Sats %"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Provision på Försäljning Konto"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr "Provision som betalats till Försäljning Partner på transaktioner med denna kund."
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10916,7 +10924,7 @@ msgstr "Kommunikation Medium Tid"
msgid "Communication Medium Type"
msgstr "Komunikation Medium Typ"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Kompakt Artikel Utskrift"
@@ -11315,8 +11323,8 @@ msgstr "Bolag"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11369,7 +11377,7 @@ msgstr "Bolag"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11458,18 +11466,20 @@ msgstr "Bolag Adress Visning"
msgid "Company Address Name"
msgstr "Bolag Adress Namn"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
msgid "Company Address is missing. You don't have permission to create an Address. Please contact your System Manager."
msgstr "Bolag adress saknas. Du har inte behörighet att skapa adress. Kontakta din Systemansvarig."
-#: erpnext/controllers/accounts_controller.py:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Bolag Adress saknas. Du har inte behörighet att uppdatera den. Kontakta System Ansvarig."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Bolag Bank Konto"
@@ -11565,7 +11575,7 @@ msgstr "Bolag och Registrering Datum erfordras"
msgid "Company and account filters not set!"
msgstr "Bolag och konto filter är inte angivna!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Bolag Valutor för båda Bolag ska matcha för Moder Bolag Transaktioner."
@@ -11600,7 +11610,7 @@ msgstr "Bolag erfordras"
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Fältnamn för bolag länk som används för filtrering (valfritt - lämna tomt för att radera alla poster)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Bolag Namn är inte samma"
@@ -11639,12 +11649,12 @@ msgstr "Bolag som intern leverantör representerar"
msgid "Company {0} added multiple times"
msgstr "Bolag {0} har lagts till flera gånger"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Bolag {0} finns inte"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Bolag{0} har lagts till mer än en gång"
@@ -11686,7 +11696,7 @@ msgstr "Konkurrent Namn"
msgid "Competitors"
msgstr "Konkurrenter"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Slutför Jobb"
@@ -11733,12 +11743,12 @@ msgstr "Slutförda Projekt"
msgid "Completed Qty"
msgstr "Klart Kvantitet"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Klart Kvantitet får inte vara högre än 'Kvantitet att Producera'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Klart Kvantitet"
@@ -11927,7 +11937,7 @@ msgstr "Inkludera Bokföring Dimensioner"
msgid "Consider Minimum Order Qty"
msgstr "Inkludera Minimum Order Kvantitet"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Inkludera Processförlust"
@@ -12121,7 +12131,7 @@ msgstr "Förbrukade Artiklar Kostnad"
msgid "Consumed Qty"
msgstr "Förbrukad Kvantitet"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Förbrukad Kvantitet kan inte vara högre än Reserverad Kvantitet för artikel {0}"
@@ -12150,7 +12160,7 @@ msgstr "Förbrukade Lager Artiklar, Förbrukade Tillgång Artiklar eller Förbru
msgid "Consumed Stock Total Value"
msgstr "Förbrukad Lager Värde"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Förbrukad kvantitet av artikel {0} överstiger överförd kvantitet."
@@ -12278,7 +12288,7 @@ msgstr "Avtal Nummer."
msgid "Contact Person"
msgstr "Kontakt Person"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Kontakt Person tillhör inte {0}"
@@ -12404,6 +12414,11 @@ msgstr "Tidigare Lager Transaktioner"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr "Kontrollerar hur råvaror förbrukas under \"Produktion\" lager post."
+#. 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 "Kontrollerar vilken moms mall som tillämpas automatiskt när denna kund väljs i en transaktion."
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12464,7 +12479,7 @@ msgstr "Konvertering Faktor"
msgid "Conversion Rate"
msgstr "Konvertering Sats"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Konvertering Faktor för Standard Enhet måste vara 1 på rad {0}"
@@ -12472,15 +12487,15 @@ msgstr "Konvertering Faktor för Standard Enhet måste vara 1 på rad {0}"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "Konvertering faktor för artikel {0} är återställd till 1,0 eftersom enhet {1} är samma som lager enhet {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Konverteringsvärde kan inte vara 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Konverteringsvärde är 1.00, men dokument valuta skiljer sig från bolag valuta"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Konverteringsvärde måste vara 1,00 om dokument valuta är samma som bolag valuta"
@@ -12557,13 +12572,13 @@ msgstr "Korrigerande"
msgid "Corrective Action"
msgstr "Korrigerande Åtgärd"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Korrigerande Jobbkort"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Korrigerande Åtgärd"
@@ -12730,7 +12745,7 @@ msgstr "Kostnadsfördelning / Processförlust"
#: 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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12863,7 +12878,7 @@ msgstr "Resultat Enhet {} är Grupp Resultat Enhet och Grupp Resultat Enhet kan
msgid "Cost Center: {0} does not exist"
msgstr "Resultat Enhet: {0} finns inte"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Resultat Enheter"
@@ -12906,17 +12921,13 @@ msgstr "Kostnad för Levererade Artiklar"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Kostnad för Sålda Artiklar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Kostnad för Sålda Artiklar i Artikel Inställningar"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Kostnad för Utfärdade Artiklar"
@@ -12996,7 +13007,7 @@ msgstr "Kunde inte ta bort Demo Data"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Kunde inte skapa Kund automatiskt pga följande erfodrade fält saknas:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Kunde inte skapa Kredit Faktura automatiskt, avmarkera 'Skapa Kredit Faktura' och skicka igen"
@@ -13185,7 +13196,7 @@ msgstr "Skapa Fakturor"
msgid "Create Item"
msgstr "Skapa Artikel"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Skapa Jobbkort"
@@ -13217,7 +13228,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Skapa Register Poster för Växel Belopp"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Skapa Länk"
@@ -13284,7 +13295,7 @@ msgstr "Skapa Betalning Post för Konsoliderade Kassa Fakturor."
msgid "Create Payment Request"
msgstr "Skapa Betalning Begäran"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Skapa Plocklista"
@@ -13429,7 +13440,7 @@ msgstr "Skapa Uppgift"
msgid "Create Tasks"
msgstr "Skapa Uppgifter"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Skapa Moms Mall"
@@ -13467,12 +13478,12 @@ msgstr "Skapa Användare Behörighet"
msgid "Create Users"
msgstr "Skapa Användare"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Skapa Variant"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Skapa Varianter"
@@ -13503,12 +13514,12 @@ msgstr "Skapa ny post baserat på regel"
msgid "Create a new rule to automatically classify transactions."
msgstr "Skapa ny regel för att automatiskt klassificera transaktioner."
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Skapa variant med Mall Bild."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Skapa inkommande Lager Transaktion för Artikel."
@@ -13542,7 +13553,7 @@ msgstr "Skapa {0} {1} ?"
msgid "Created By Migration"
msgstr "Skapad av Migrering"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Skapade {0} Resultatkort för {1} mellan:"
@@ -13575,7 +13586,7 @@ msgstr "Skapar Försäljning Följesedel ..."
msgid "Creating Delivery Schedule..."
msgstr "Skapar Leverans Schema..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Skapar Dimensioner..."
@@ -13770,7 +13781,7 @@ msgstr "Kredit Dagar"
msgid "Credit Limit"
msgstr "Kredit Gräns"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Kredit Gräns Överskriden"
@@ -13780,12 +13791,6 @@ msgstr "Kredit Gräns Överskriden"
msgid "Credit Limit Settings"
msgstr "Kredit Gräns Inställningar"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Kredit Gräns och Betalning Villkor"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Kredit Gräns:"
@@ -13817,7 +13822,7 @@ msgstr "Kredit Månader"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13845,7 +13850,7 @@ msgstr "Kredit Faktura Skapad"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Kredit Faktura kommer att uppdatera sitt eget utestående belopp, även om \"Retur Mot\" är angivet."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Kredit Faktura {0} skapad automatiskt"
@@ -13853,7 +13858,7 @@ msgstr "Kredit Faktura {0} skapad automatiskt"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Kredit Till"
@@ -13862,20 +13867,20 @@ msgstr "Kredit Till"
msgid "Credit in Company Currency"
msgstr "Kredit i Bolag Valuta"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Kredit Gräns överskriden för Kund {0} ({1} / {2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Kredit Gräns är redan definierad för Bolag {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Kredit gräns uppnåd för Kund {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr "Varning för kreditgräns - godkännande kan komma att blockeras: {0}"
@@ -13883,8 +13888,8 @@ msgstr "Varning för kreditgräns - godkännande kan komma att blockeras: {0}"
msgid "Creditor Turnover Ratio"
msgstr "Kreditor Omsättningsgrad"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Kreditorer"
@@ -14054,7 +14059,7 @@ msgstr "Valutaväxling måste vara tillämplig för Inköp eller Försäljning."
msgid "Currency and Price List"
msgstr "Valuta och Prislista"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Valuta kan inte ändras efter att poster är skapade med någon annan valuta"
@@ -14064,7 +14069,7 @@ msgstr "Valuta filter stöds för närvarande inte i Anpassad Finans Rapport."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Valuta för {0} måste vara {1}"
@@ -14147,8 +14152,8 @@ msgstr "Aktuell Faktura Start Datum"
msgid "Current Level"
msgstr "Aktuell Nivå"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Aktuella Skulder"
@@ -14215,6 +14220,11 @@ msgstr "Aktuell Lager"
msgid "Current Valuation Rate"
msgstr "Aktuell Grund Pris"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr "Aktuell nivå baserad på ackumulerade poäng. Uppdateras automatiskt på varje faktura."
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Kurvor"
@@ -14310,7 +14320,6 @@ msgstr "Anpassade Avgränsare"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14417,7 +14426,6 @@ msgstr "Anpassade Avgränsare"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14506,8 +14514,8 @@ msgstr "Kund Adress"
msgid "Customer Addresses And Contacts"
msgstr "Kund Adresser och Kontakter"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Kundförskott"
@@ -14521,7 +14529,7 @@ msgstr "Kund Kod"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14604,6 +14612,7 @@ msgstr "Kund Återkoppling"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14626,7 +14635,7 @@ msgstr "Kund Återkoppling"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14643,6 +14652,7 @@ msgstr "Kund Återkoppling"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14686,7 +14696,7 @@ msgstr "Kund Artikel"
msgid "Customer Items"
msgstr "Kund Artiklar"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Kund Lokal Inköp Order"
@@ -14738,7 +14748,7 @@ msgstr "Kund Mobil Nummer"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14844,7 +14854,7 @@ msgstr "Kund Försedd"
msgid "Customer Provided Item Cost"
msgstr "Kund Försedd Artikel Kostnad"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Kund Tjänst"
@@ -14901,9 +14911,9 @@ msgstr "Kund eller Artikel"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Kund erfordras för \"Kund Rabatt\""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Kund {0} tillhör inte Projekt {1}"
@@ -15015,7 +15025,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Daglig Projekt Översikt för {0}"
@@ -15106,7 +15116,7 @@ msgstr "Födelsedag Datum kan inte vara senare än i dag."
msgid "Date of Commencement"
msgstr "Start Datum"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Datum för Start ska vara senare än Bolagisering datum"
@@ -15332,7 +15342,7 @@ msgstr "Debet Belopp i Transaktion Valuta"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15360,13 +15370,13 @@ msgstr "Debet Faktura kommer att uppdatera sitt eget utestående belopp, även o
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Debet Till"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Debet till erfordras"
@@ -15494,8 +15504,7 @@ msgstr "Standard Konto"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15521,14 +15530,14 @@ msgstr "Standard Förskött Konto"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Standard Förskött Skuld Konto"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Standard Förskött Intäkt Konto"
@@ -15543,19 +15552,19 @@ msgstr "Standard Åldring Intervall"
msgid "Default BOM"
msgstr "Standard Stycklista"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Standard Stycklista ({0}) måste vara aktiv för denna artikel eller dess mall"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Standard Stycklista för {0} hittades inte"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Standard Stycklista hittades inte för Färdig Artikel {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Standard Stycklista hittades inte för Artikel {0} och Projekt {1}"
@@ -15608,9 +15617,7 @@ msgid "Default Company"
msgstr "Standard Bolag"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Standard Bank Konto"
@@ -15726,6 +15733,16 @@ msgstr "Standard Artikel Grupp"
msgid "Default Item Manufacturer"
msgstr "Standard Artikel Producent"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr "Standard Brevhuvud (DocType)"
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr "Standard Brevhuvud (Rapport)"
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15761,23 +15778,19 @@ msgid "Default Payment Request Message"
msgstr "Standard Betalning Begäran Meddelande"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Standard Betalning Villkor"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15900,15 +15913,15 @@ msgstr " Standard Distrikt"
msgid "Default Unit of Measure"
msgstr "Standard Enhet"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 Enhet för Artikel {0} kan inte ändras eftersom det finns några transaktion(er) med annan Enhet. Man måste antingen annullera länkade dokument eller skapa ny artikel."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 Enhet för Artikel {0} kan inte ändras direkt eftersom man redan har skapat vissa transaktioner (s) med annan enhet. Man måste skapa ny Artikel för att använda annan standard enhet."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Standard Enhet för Variant '{0}' måste vara samma som i Mall '{1}'"
@@ -15960,7 +15973,7 @@ msgstr "Standard prislista för att inköp eller försäljning av denna artikel"
msgid "Default settings for your stock-related transactions"
msgstr "Standard inställningar för lager relaterade transaktioner"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Standard Moms Mallar för Försäljning,Inköp och Artiklar är skapade. "
@@ -16051,6 +16064,12 @@ msgstr "Skapa Projekt Typ"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Definierar datum efter vilket artikel inte längre kan användas i transaktioner eller produktion"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr "Definierar när betalning ska ske (t.ex. Netto 30, 50% förskott). Används automatiskt på fakturor för den här kunden."
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16133,12 +16152,12 @@ msgstr "Ta bort Prospekt och Adresser"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Ta bort Transaktioner"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Ta bort alla Transaktioner för detta Bolag"
@@ -16159,8 +16178,8 @@ msgstr "Tar bort regel..."
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Tar bort {0} och alla tillhörande Gemensamma Kod dokument..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Borttagning Pågår!"
@@ -16271,11 +16290,11 @@ msgstr "Levererad Kvantitet"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Levererad Kvantitet (i Lager Enhet)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr "Levererad kvantitet kan inte ökas med mer än {0} för artikel {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr "Levererad kvantitet kan inte minskas med mer än {0} för artikel {1}"
@@ -16356,7 +16375,7 @@ msgstr "Leverans Ansvarig"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16416,11 +16435,11 @@ msgstr "Försäljning Följesedel Packad Artikel"
msgid "Delivery Note Trends"
msgstr "Försäljning Följesedel Statistik"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Försäljning Följesedel {0} ej godkänd"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Försäljning Följesedlar"
@@ -16506,10 +16525,6 @@ msgstr "Leverans Lager"
msgid "Delivery to"
msgstr "Leverera Till"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Leverans Lager erfordras för Artikel {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16629,8 +16644,8 @@ msgstr "Avskriven Belopp"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16723,7 +16738,7 @@ msgstr "Avskrivning Alternativ"
msgid "Depreciation Posting Date"
msgstr "Avskrivning Registrering Datum"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Avskrivning Registrering Datum kan inte vara före Tillgänglig för Användning Datum"
@@ -16881,15 +16896,15 @@ msgstr "Differens (Dr - Cr)"
msgid "Difference Account"
msgstr "Differens Konto"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Differens Konto i Artikel Inställningar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Differens konto måste vara konto av typ Tillgång/Skuld (Tillfällig Öppning), eftersom denna Lager Post är Öppning Post."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Differens Konto måste vara Tillgång / Skuld Konto Typ, eftersom denna Inventering är Öppning Post"
@@ -17001,15 +17016,15 @@ msgstr "Dimensioner"
msgid "Direct Expense"
msgstr "Direkta Kostnader"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Direkta Kostnader"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Direkta Intäkter"
@@ -17090,6 +17105,11 @@ msgstr "Inaktivera Avrundad Totalt Belopp"
msgid "Disable Serial No And Batch Selector"
msgstr "Inaktivera Serie Nummer och Parti Väljare"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr "Inaktivera Levererad men inte Fakturerad Lager i Försäljning Retur"
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17126,11 +17146,11 @@ msgstr "Inaktiverad Lager {0} kan inte användas för denna transaktion."
msgid "Disabled items cannot be selected in any transaction."
msgstr "Inaktiverade artiklar kan inte väljas i någon transaktion."
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Inaktiverade Prissättning Regler eftersom detta {} är intern överföring"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Inaktiverade Pris Inklusive Moms eftersom detta {} är intern överföring"
@@ -17146,7 +17166,7 @@ msgstr "Inaktiverar automatisk hämtning av befintlig kvantitet"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17154,15 +17174,15 @@ msgstr "Inaktiverar automatisk hämtning av befintlig kvantitet"
msgid "Disassemble"
msgstr "Demontera"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Demontering Order"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Demontering kvantitet kan inte vara mindre än eller lika med 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Demontering kvantitet kan inte vara mindre än eller lika med 0 ."
@@ -17449,7 +17469,7 @@ msgstr "Diskretionär Anledning"
msgid "Dislikes"
msgstr "Gillar Ej"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Avsändning"
@@ -17530,7 +17550,7 @@ msgstr "Visningsnamn"
msgid "Disposal Date"
msgstr "Avskrivning Datum"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Avyttringsdatum {0} kan inte infalla före {1} datum {2} för tillgång."
@@ -17591,7 +17611,7 @@ msgstr "Fördela Avgifter Baserad på"
#. Label of the distribute_equally (Check) field in DocType 'Budget'
#: erpnext/accounts/doctype/budget/budget.json
msgid "Distribute Equally"
-msgstr "Fördela Lika"
+msgstr "Fördela Proportionellt"
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
@@ -17644,8 +17664,8 @@ msgstr "Fördelning Namn"
msgid "Distributor"
msgstr "Distributör"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Betalda Utdelningar"
@@ -17707,7 +17727,7 @@ msgstr "Visa inte någon valuta symbol t.ex. $."
msgid "Do not update variants on save"
msgstr "Uppdatera inte Varianter vid Spara"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Ska avskriven Tillgång återställas?"
@@ -17731,7 +17751,7 @@ msgstr "Ska alla kunder meddelas via E-post?"
msgid "Do you want to submit the material request"
msgstr "Ska Material Begäran godkännas"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Vill du godkänna lagerpost?"
@@ -17798,11 +17818,11 @@ msgstr "Dokument Nr"
msgid "Document Type "
msgstr "DocType"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Dokument Typ används redan som dimension"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dokumentation"
@@ -17965,12 +17985,6 @@ msgstr "Körkort Kategorier"
msgid "Driving License Category"
msgstr "Körkort Kategori"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Slopa Procedurer"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17991,12 +18005,6 @@ msgstr "Släpp fil här, eller klicka för att välja fil"
msgid "Drop some files here, or click to select files"
msgstr "Släpp några filer här, eller klicka för att välja filer"
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Slopar befintliga SQL Procedurer och Funktion Inställningar för Fordring rapport"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Förfallodatum kan inte vara efter {0}"
@@ -18155,8 +18163,8 @@ msgstr "Varaktighet (Dagar)"
msgid "Duration in Days"
msgstr "Varaktighet i Dagar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Tullar Moms och Skatter"
@@ -18239,7 +18247,7 @@ msgstr "System kommer att skapa lager bokföring post för varje transaktion av
msgid "Each Transaction"
msgstr "Varje Transaktion"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Yngsta"
@@ -18353,6 +18361,10 @@ msgstr "Mål Kvantitet eller Mål Belopp erfordras"
msgid "Either target qty or target amount is mandatory."
msgstr "Mål Kvantitet eller Mål Belopp erfordras."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr "Förfluten Tid"
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18372,8 +18384,8 @@ msgstr "Elektricitet"
msgid "Electricity down"
msgstr "Elavbrått"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronisk Utrustning"
@@ -18577,8 +18589,8 @@ msgstr "Personal Förskott"
msgid "Employee Advances"
msgstr "Personal Förskott"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Personal Förmåner Skyldighet"
@@ -18661,7 +18673,7 @@ msgstr "Personal {0} har redan länkad användare"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Personal {0} tillhör inte {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "{0} arbetar för närvarande på en annan arbetsstation. Tilldela annan anställd."
@@ -18677,7 +18689,7 @@ msgstr "Personal"
msgid "Empty"
msgstr "Tom"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Töm för att ta bort lista"
@@ -18708,7 +18720,7 @@ msgstr "Aktivera Tid Bokning Schema"
msgid "Enable Auto Email"
msgstr "Aktivera Automatisk E-post"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Aktivera Automatisk Ombeställning"
@@ -18874,12 +18886,6 @@ msgstr "Aktivera stopp datum vid skapande av följesedlar"
msgid "Enable discount accounting for selling"
msgstr "Aktivera Rabatt Bokföring för Försäljning"
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr "Aktivera direkt leverans – leverantör levererar direkt till kund utan att passera genom lager."
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19013,8 +19019,8 @@ msgstr "Slut datum kan inte vara tidigare än Start datum."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19113,8 +19119,8 @@ msgstr "Ange Manuellt"
msgid "Enter Serial Nos"
msgstr "Ange Serie Nummer"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Ange Värde"
@@ -19139,7 +19145,7 @@ msgstr "Ange namn för denna Helg Lista."
msgid "Enter amount to be redeemed."
msgstr "Ange belopp som ska lösas in."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Ange Artikel Kod, namn kommer att automatiskt hämtas på samma sätt som Artikel Kod när man klickar i Artikel Namn fält ."
@@ -19151,7 +19157,7 @@ msgstr "Ange Kund E-post"
msgid "Enter customer's phone number"
msgstr "Ange Kund Telefon Nummer"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Ange datum för tillgång avskrivning"
@@ -19195,7 +19201,7 @@ msgstr "Ange namn på Förmånstagare innan godkännande."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Ange namn på Bank eller Låne Bolag innan godkännande."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Ange Öppning Lager Enheter."
@@ -19203,7 +19209,7 @@ msgstr "Ange Öppning Lager Enheter."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Ange kvantitet för Artikel som ska produceras från denna Stycklista."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Ange kvantitet som ska produceras. Råmaterial Artiklar hämtas endast när detta är angivet."
@@ -19215,8 +19221,8 @@ msgstr "Ange {0} belopp."
msgid "Entertainment & Leisure"
msgstr "Underhållning & Fritid"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Representation Kostnader Konto"
@@ -19240,8 +19246,8 @@ msgstr "Post Typ"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19302,7 +19308,7 @@ msgstr "Fel uppstod vid registrering av avskrivning poster"
msgid "Error while processing deferred accounting for {0}"
msgstr "Fel uppstod när uppskjuten bokföring för {0} bearbetades"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Fel uppstod vid ombokning av artikel värdering"
@@ -19314,7 +19320,7 @@ msgstr "Fel: Denna tillgång har redan {0} avskrivning perioder bokade.\n"
"\t\t\t\t\tStart datum för \"avskrivning\" måste vara minst {1} perioder efter \"tillgänglig för användning\" datum.\t\t\t\t\t\n"
" Korrigera datum enligt detta."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Fel: {0} är erfordrad fält"
@@ -19360,7 +19366,7 @@ msgstr "Fritt Fabrik"
msgid "Example URL"
msgstr "Exempel URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Exempel på länkad dokument: {0}"
@@ -19379,7 +19385,7 @@ msgstr "Exempel: ABCD.#####. Om serie är angiven och Parti Nummer inte anges i
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr "Exempel: Om transaktion belopp är 200, beräknas detta som {} = {}"
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Exempel: Serie Nummer {0} reserverad i {1}."
@@ -19389,7 +19395,7 @@ msgstr "Exempel: Serie Nummer {0} reserverad i {1}."
msgid "Exception Budget Approver Role"
msgstr "Godkännande Roll för Undantag i Budget"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr "Överskrid Demontering"
@@ -19397,7 +19403,7 @@ msgstr "Överskrid Demontering"
msgid "Excess Materials Consumed"
msgstr "Överskott Material Förbrukad"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Överskott Överföring"
@@ -19428,17 +19434,17 @@ msgstr "Valutaväxling Resultat"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Valutaväxling Resultat"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Valutaväxling Resultat Belopp har bokförts genom {0}"
@@ -19577,7 +19583,7 @@ msgstr "Verkställande Assistent"
msgid "Executive Search"
msgstr "Verkställande Sökning"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Undantagna Leveranser"
@@ -19664,7 +19670,7 @@ msgstr "Förväntad Avslut Datum"
msgid "Expected Delivery Date"
msgstr "Förväntad Leverans Datum"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Förväntad Leverans Datum ska vara efter Försäljning Order Datum"
@@ -19748,7 +19754,7 @@ msgstr "Förväntad Värde Efter Användning"
msgid "Expense"
msgstr "Kostnader"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Kostnad / Differens Konto ({0}) måste vara \"Resultat\" konto"
@@ -19826,23 +19832,23 @@ msgstr "Kostnad Konto erfordras för Artikel {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr "Kostnad för denna artikel kommer att bokföras över period av månader. Exempel: förbetald försäkring eller årlig programvara licens"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Kostnader"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Kostnader Inkluderade i Tillgång Värdering Konto"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Kostnader Inkluderade i Värdering Konto"
@@ -19921,7 +19927,7 @@ msgstr "Extern Arbetsliverfarenhet"
msgid "Extra Consumed Qty"
msgstr "Extra Förbrukad Kvantitet"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Extra Jobbkort Kvantitet"
@@ -20058,7 +20064,7 @@ msgstr "Misslyckades med att konfigurera Bolag"
msgid "Failed to setup defaults"
msgstr "Misslyckades att konfigurera Standard Värden"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Misslyckades att ange standard inställningar för {0}. Kontakta support."
@@ -20176,6 +20182,11 @@ msgstr "Hämta Värde Från"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Hämta Utvidgade Stycklistor (inklusive Underenheter)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr "Hämtas automatiskt på försäljning ordrar och fakturor för denna kund."
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Hämtade endast {0} tillgängliga serienummer."
@@ -20213,21 +20224,29 @@ msgstr "Fält Mappning"
msgid "Field in Bank Transaction"
msgstr "Fält i Bank Transaktion"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr "Fältnamn Konflikt"
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr "Fältnamn {0} finns redan i följande dokument typer: {1}. Separat dimension fält kommer inte att läggas till i dessa dokument typer. Bokföring Poster kommer att använda värdet för befintlig fält som dimension värde."
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Fält kopieras över endast när variant skapas."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Filen tillhör inte denna Transaktion Borttagning Post"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Filen hittades inte"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Filen hittades inte på servern"
@@ -20381,7 +20400,7 @@ msgstr "Ekonomi Ansvarig"
#. Name of a report
#: erpnext/accounts/report/financial_ratios/financial_ratios.json
msgid "Financial Ratios"
-msgstr "Finans Nyckeltal"
+msgstr "Bokslut Nyckeltal"
#. Name of a DocType
#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
@@ -20393,15 +20412,15 @@ msgstr "Finans Rapport Rad"
#: erpnext/accounts/doctype/financial_report_template/financial_report_template.json
#: erpnext/workspace_sidebar/financial_reports.json
msgid "Financial Report Template"
-msgstr "Finans Rapport Mall"
+msgstr "Bokslut Rapport Mall"
#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:276
msgid "Financial Report Template {0} is disabled"
-msgstr "Finans Rapport Mall {0} är inaktiverad"
+msgstr "Bokslut Rapport Mall {0} är inaktiverad"
#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:273
msgid "Financial Report Template {0} not found"
-msgstr "Finans Rapport Mall {0} hittades inte"
+msgstr "Bokslut Rapport Mall {0} hittades inte"
#. Name of a Workspace
#. Label of a Desktop Icon
@@ -20413,7 +20432,7 @@ msgstr "Finans Rapport Mall {0} hittades inte"
#: erpnext/workspace_sidebar/invoicing.json
#: erpnext/workspace_sidebar/payments.json
msgid "Financial Reports"
-msgstr "Rapporter"
+msgstr "Bokslut Rapporter"
#: erpnext/setup/setup_wizard/data/industry_type.txt:24
msgid "Financial Services"
@@ -20427,17 +20446,17 @@ msgstr "Bokslut"
#: erpnext/public/js/setup_wizard.js:48
msgid "Financial Year Begins On"
-msgstr "Bokföringsår Start Datum"
+msgstr "Bokslut Start Datum"
#. Description of the 'Ignore Account Closing Balance' (Check) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
msgid "Financial reports will be generated using GL Entry doctypes (should be enabled if Period Closing Voucher is not posted for all years sequentially or missing) "
-msgstr "Finans Rapporter kommer att genereras med hjälp av Bokföring Poster Doctypes (ska vara aktiverat om Period Stängning Verifikat inte publiceras för alla år i följd eller saknas) "
+msgstr "Bokslut Rapporter kommer att genereras med hjälp av Bokföring Poster DocTyper (ska vara aktiverat om Period Stängning Verifikat inte publiceras för alla år i följd eller saknas) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Färdig"
@@ -20494,15 +20513,15 @@ msgstr "Färdig Artikel Kvantitet"
msgid "Finished Good Item Quantity"
msgstr "Färdig Artikel Kvantitet"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Färdig Artikel är inte specificerad för service artikel {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Färdig Artikel {0} kvantitet kan inte vara noll"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Färdig Artikel {0} måste vara underleverantör artikel"
@@ -20548,7 +20567,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Färdig Artikel {0} måste vara underleverantör artikel."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Färdig Artikel"
@@ -20589,7 +20608,7 @@ msgstr "Färdig Artikel Lager"
msgid "Finished Goods based Operating Cost"
msgstr "Färdiga Artiklar baserad Drift Kostnad"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Färdig Artikel {0} stämmer inte med Arbetsorder {1}"
@@ -20730,6 +20749,7 @@ msgstr "Fast Pris"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Fast Tillgång"
@@ -20748,7 +20768,7 @@ msgstr "Fast Tillgång Konto"
msgid "Fixed Asset Defaults"
msgstr "Fasta Tillgångar"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Fast Tillgång Artikel får ej vara Lager Artikel."
@@ -20761,14 +20781,14 @@ msgstr "Fast Tillgång Register"
#: erpnext/accounts/report/financial_ratios/financial_ratios.py:211
msgid "Fixed Asset Turnover Ratio"
-msgstr "Fasta Tillgångar Omsättningsgrad"
+msgstr "Omsättningsgrad för Fasta Tillgångar"
#: erpnext/manufacturing/doctype/bom/bom.py:788
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Anläggning Tillgång Artikel {0} kan inte användas i Stycklistor."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Fasta Tillgångar"
@@ -20841,7 +20861,7 @@ msgstr "Följ Kalender Månader"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Följande Material Begäran skapades automatiskt baserat på Artikel beställning nivå"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Följande fält erfordras att skapa adress:"
@@ -20898,7 +20918,7 @@ msgstr "För Bolag"
msgid "For Item"
msgstr "För Artikel"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "För Artikel {0} kan inte tas emot mer än {1} i kvantitet mot {2} {3}"
@@ -20908,7 +20928,7 @@ msgid "For Job Card"
msgstr "För Jobbkort"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "För Åtgärd"
@@ -20929,17 +20949,13 @@ msgstr "För Prislista"
msgid "For Production"
msgstr "För Produktion"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "För Kvantitet (Producerad Kvantitet) erfordras"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Råmaterial"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "För Retur Fakturor med Lager påverkan, '0' kvantitet artiklar är inte tillåtna. Följande rader påverkas: {0}"
@@ -20967,11 +20983,11 @@ msgstr "För Lager"
msgid "For Work Order"
msgstr "För Arbetsorder"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "För Artikel {0} måste kvantitet vara negativt tal"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "För Artikel {0} måste kvantitet vara positivt tal"
@@ -21009,7 +21025,7 @@ msgstr "För Enskild Leverantör"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "För artikel {0} endast {1} tillgång har skapats eller länkats till {2} . Skapa eller länka {3} fler tillgångar med respektive dokument."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "För Artikel {0} pris måste vara positiv tal. Att tillåta negativa priser, aktivera {1} i {2}"
@@ -21023,7 +21039,7 @@ msgstr "För äldre serienummer, hämta inte inköp pris från serienummer och b
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "För åtgärd {0} på rad {1}, lägg till råmaterial eller ange Stycklista."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "För Åtgärd {0}: Kvantitet ({1}) kan inte vara högre än pågående kvantitet ({2})"
@@ -21040,7 +21056,7 @@ msgstr "För projekt - {0}, uppdatera din status"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "För beräknade och förväntade kvantiteter kommer system att inkludera alla underordnade lager under vald överordnad lager."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "För Kvantitet {0} ska inte vara högre än tillåten kvantitet {1}"
@@ -21049,12 +21065,12 @@ msgstr "För Kvantitet {0} ska inte vara högre än tillåten kvantitet {1}"
msgid "For reference"
msgstr "Referens"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "För rad {0} i {1}. Om man vill inkludera {2} i Artikel Pris, rader {3} måste också inkluderas"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "För rad {0}: Ange Planerad Kvantitet"
@@ -21073,7 +21089,7 @@ msgstr "För 'Tillämpa Regel på' villkor erfordras fält {0}"
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "För kundernas bekvämlighet kan dessa koder användas i utskriftsformat som Fakturor och Följesedlar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "För artikel {0} förbrukad kvantitet ska vara {1} enligt stycklista {2}."
@@ -21120,11 +21136,6 @@ msgstr "Prognos"
msgid "Forecast Demand"
msgstr "Efterfråga Prognos"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Prognos Kvantitet"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21170,7 +21181,7 @@ msgstr "Forum Inlägg"
msgid "Forum URL"
msgstr "Forum Adress"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Frappe Skola"
@@ -21215,8 +21226,8 @@ msgstr "Gratis Artikel inte angiven i pris regel {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Lås Lager äldre än (dagar)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Leverans Kostnader Konto"
@@ -21650,8 +21661,8 @@ msgstr "Fullt Betald"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Möbler och Inventarier"
@@ -21668,13 +21679,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Fler noder kan endast skapas under 'Grupp' Typ noder"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Framtida Betalning Belopp"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Framtida Betalning Referens"
@@ -21682,7 +21693,7 @@ msgstr "Framtida Betalning Referens"
msgid "Future Payments"
msgstr "Framtida Betalningar"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Framtida datum är inte tillåtet"
@@ -21767,9 +21778,9 @@ msgstr "Resultat Bokförd"
msgid "Gain/Loss from Revaluation"
msgstr "Omvärdering Resultat"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Tillgång Avyttring Resultat"
@@ -21942,7 +21953,7 @@ msgstr "Hämta Saldo"
msgid "Get Current Stock"
msgstr "Hämta Aktuell Lager"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Hämta Kund Grupp Detaljer"
@@ -22000,7 +22011,7 @@ msgstr "Hämta Artikel Platser"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22039,7 +22050,7 @@ msgstr "Hämta Artiklar från Stycklista"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Hämta Artiklar från Material Begäran mot denna Leverantör"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Hämta Artiklar från Artikel Paket"
@@ -22213,7 +22224,7 @@ msgstr "Målsättningar"
msgid "Goods"
msgstr "Gods"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "I Transit"
@@ -22222,7 +22233,7 @@ msgstr "I Transit"
msgid "Goods Transferred"
msgstr "Överförd"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Artiklarna redan mottagna mot extern post {0}"
@@ -22405,7 +22416,7 @@ msgstr "Total summa måste stämma med summan av Betalning Referenser"
msgid "Grant Commission"
msgstr "Tillåt Provision"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Högre än Belopp"
@@ -22848,7 +22859,7 @@ msgstr "Hjälper vid fördelning av Budget/ Mål över månader om bolag har sä
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Här är felloggar för ovannämnda misslyckade avskrivning poster: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Här är alternativ för att fortsätta:"
@@ -22876,7 +22887,7 @@ msgstr "Här är dina veckoledigheter förifyllda baserat på tidigare val. Du k
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Hej,"
@@ -23075,7 +23086,7 @@ msgstr "Hur värden ska formateras och presenteras i finans rapport (endast om d
msgid "Hrs"
msgstr "Tid"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Personal Resurser"
@@ -23244,6 +23255,12 @@ msgstr "Om vald, kommer moms belopp anses vara inkluderad i Betald Belopp i Beta
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Om vald, kommer moms belopp anses vara inkluderad i Utskrift Pris / Utskrift Belopp"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr "Om vald betraktas denna artikel som direktlevererad som standard i Försäljning Ordrar, Försäljning Fakturor och Inköp Ordrar. Flagga kan åsidosättas på varje transaktion rad."
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Om vald,kommer demo data skapas så att man kan utforska system. Dessa demo data kan raderas senare."
@@ -23464,7 +23481,7 @@ msgstr "Om inget Artikel Pris hittas för artikel i Prislista angiven i transakt
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Om ingen Moms är angiven och Moms och Avgifter Mall är vald, kommer system automatiskt att tillämpa Moms från vald mall."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Om inte kan man Annullera/Godkänna denna post"
@@ -23490,13 +23507,18 @@ msgstr "Om regel stämmer, då:"
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 "Om vald prissättningsregel är angiven för \"Pris\" kommer den att skriva över Prislista Pris. Prissättning Regel Pris är slutgiltig pris, så ingen ytterligare rabatt ska tillämpas. Därför kommer den i transaktioner som försäljningsorder, inköpsorder etc. att sättas i \"Pris\" fält istället för \"Prislista Pris\" fält."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr "Om angiven, kommer bokföring poster för denna kund att bokföras på dessa konton istället för bolag standard konto."
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Om angiven kommer system inte använda användarens e-post eller standard konto för utgående e-post för att skicka offert begäran."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Om Stycklista har Rest Material måste Rest Lager väljas."
@@ -23505,7 +23527,7 @@ msgstr "Om Stycklista har Rest Material måste Rest Lager väljas."
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Om konto är låst, tillåts poster för Behöriga Användare."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Om artikel handlas som Noll Grund Pris i denna post, aktivera 'Tillåt Noll Grund Pris' i {0} Artikel Tabell."
@@ -23515,7 +23537,7 @@ msgstr "Om artikel handlas som Noll Grund Pris i denna post, aktivera 'Tillåt N
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 "Om ombeställning kontroll är angiven på grupp lager nivå blir tillgänglig kvantitet summa av planerad kvantitet för alla underordnade lager."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Om vald Stycklista har angivna Åtgärder kommer system att hämta alla Åtgärder från Stycklista, dessa värden kan ändras."
@@ -23592,7 +23614,7 @@ msgstr "Om lojalitet poäng inte ska ha giltig tid, lämna giltighets tid tom el
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Om ja, kommer detta lager att användas för att lagra avvisat material"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Om man har denna artikel i Lager, kommer System att lagerbokföra varje transaktion av denna artikel."
@@ -23606,7 +23628,7 @@ msgstr "Om man behöver stämma av specifika transaktioner mot varandra, välj d
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Om du fortfarande vill fortsätta, avmarkera \"Hoppa över tillgängliga underenhet artiklar\"."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "För att fortsätta, aktivera {0}."
@@ -23690,7 +23712,7 @@ msgstr "Ignorera Valutakurs omvärdering och Resultat Journaler"
msgid "Ignore Existing Ordered Qty"
msgstr "Ignorera Befintlig Försäljning Order Kvantitet"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Ignorera Befintligt Uppskattad Kvantitet"
@@ -23777,12 +23799,12 @@ msgstr "Ignorera Arbetsplats Tid Överlappning"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Ignorerar gammal 'Är Öppning' fält i Bokföring Post som gör det möjligt att lägga till Öppning Saldo Post efter att system används vid skapande av rapporter"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "Bilden i beskrivningen har tagits bort. För att inaktivera detta beteende, inaktivera \"{0}\" i {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Nedskrivningar"
@@ -23940,7 +23962,7 @@ msgstr "I Produktion"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "I Kvantitet"
@@ -24064,7 +24086,7 @@ msgstr "I fallet med flernivå program kommer kunderna att automatiskt tilldelas
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 "I detta fall beräknas belopp som 25 % av transaktion belopp. Om transaktion belopp är 200 beräknas detta som 200 * 0,25 = 50."
-#: erpnext/stock/doctype/item/item.js:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "I detta sektion kan man definiera bolagsomfattande transaktion relaterade standard inställningar för denna artikel. T.ex. Standard Lager, Standard Prislista, Leverantör, osv."
@@ -24295,8 +24317,8 @@ msgstr "Inklusive artiklar för underenhet"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24367,7 +24389,7 @@ msgstr "Inkommande Betalning"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24399,7 +24421,7 @@ msgstr "Felaktig Saldo Kvantitet Efter Transaktion"
msgid "Incorrect Batch Consumed"
msgstr "Felaktig Parti Förbrukad"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Felaktig vald (grupp) Lager för Ombeställning"
@@ -24407,7 +24429,7 @@ msgstr "Felaktig vald (grupp) Lager för Ombeställning"
msgid "Incorrect Company"
msgstr "Felaktigt Bolag"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Felaktig Komponent Kvantitet"
@@ -24541,15 +24563,15 @@ msgstr "Anger att Förpackning är del av Leverans (Endast Utkast)"
msgid "Indirect Expense"
msgstr "Indirekt Kostnad"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Indirekta Kostnader"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Indirekt Intäkt"
@@ -24617,14 +24639,14 @@ msgstr "Initierad"
msgid "Inspected By"
msgstr "Kontrollerad Av"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Kontroll Avvisad"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Kontroll Erfordras"
@@ -24641,8 +24663,8 @@ msgstr "Kontroll Erfordras före Leverans"
msgid "Inspection Required before Purchase"
msgstr "Kontroll Erfordras före Inköp"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Kontroll Godkännande"
@@ -24672,7 +24694,7 @@ msgstr "Installation Avisering"
msgid "Installation Note Item"
msgstr "Installation Avisering Post"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Installation Avisering {0} är redan godkänd"
@@ -24711,11 +24733,11 @@ msgstr "Instruktion"
msgid "Insufficient Capacity"
msgstr "Otillräcklig Kapacitet"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Otillräckliga Behörigheter"
@@ -24723,13 +24745,12 @@ msgstr "Otillräckliga Behörigheter"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Otillräcklig Lager"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Otillräcklig Lager för Parti"
@@ -24849,13 +24870,13 @@ msgstr "Intern Överföring Referens"
msgid "Interest"
msgstr "Ränta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Räntekostnader"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Ränteintäkter"
@@ -24863,8 +24884,8 @@ msgstr "Ränteintäkter"
msgid "Interest and/or dunning fee"
msgstr "Ränta och/eller Påminnelse avgift"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Ränta på Fasta Insättningar"
@@ -24884,7 +24905,7 @@ msgstr "Intern"
msgid "Internal Customer Accounting"
msgstr "Internt Kund Bokföring"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Intern Kund för Bolag {0} finns redan"
@@ -24892,7 +24913,7 @@ msgstr "Intern Kund för Bolag {0} finns redan"
msgid "Internal Purchase Order"
msgstr "Intern Inköp Order"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Intern Försäljning eller Leverans Referens saknas."
@@ -24900,7 +24921,7 @@ msgstr "Intern Försäljning eller Leverans Referens saknas."
msgid "Internal Sales Order"
msgstr "Intern Försäljning Order"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Intern Försäljning Referens saknas"
@@ -24931,7 +24952,7 @@ msgstr "Intern Leverantör för Bolag {0} finns redan"
msgid "Internal Transfer"
msgstr "Intern Överföring"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Intern Överföring Referens saknas"
@@ -24944,7 +24965,12 @@ msgstr "Interna Överföringar"
msgid "Internal Work History"
msgstr "Intern Arbetsliv Erfarenhet"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr "Interna anteckningar om denna kund. Syns inte på transaktioner eller i portalen."
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Interna Överföringar kan endast göras i bolag standard valuta"
@@ -24960,12 +24986,12 @@ msgstr "Intervall ska vara mellan 1 och 59 minuter"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Ogiltig Konto"
@@ -24986,7 +25012,7 @@ msgstr "Ogiltig Belopp"
msgid "Invalid Attribute"
msgstr "Ogiltig Egenskap"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Ogiltig Återkommande Datum"
@@ -24999,7 +25025,7 @@ msgstr "Ogiltigt Bankkonto"
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Ogiltig Streck/QR Kod. Det finns ingen Artikel med denna Streck/QR Kod."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Ogiltig Ramavtal Order för vald Kund och Artikel"
@@ -25015,21 +25041,21 @@ msgstr "Ogiltig Underordnad Procedur"
msgid "Invalid Company Field"
msgstr "Ogiltigt Bolag Fält"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Ogiltig Bolag för Intern Bolag Transaktion"
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Ogiltig Resultat Enhet"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr "Ogiltig Kund Grupp"
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Ogiltig Leverans Datum"
@@ -25067,7 +25093,7 @@ msgstr "Ogiltig Gruppera Efter"
msgid "Invalid Item"
msgstr "Ogiltig Artikel"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Ogiltig Artikel Standard"
@@ -25081,7 +25107,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Ogiltig Netto Inköp Belopp"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Ogiltig Öppning Post"
@@ -25089,11 +25115,11 @@ msgstr "Ogiltig Öppning Post"
msgid "Invalid POS Invoices"
msgstr "Ogiltig Kassa Faktura"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Ogiltig Överordnad Konto"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Ogiltig Artikel Nummer"
@@ -25123,12 +25149,12 @@ msgstr "Ogiltig Process Förlust Konfiguration"
msgid "Invalid Purchase Invoice"
msgstr "Ogiltig Inköp Faktura"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Ogiltig Kvantitet"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Ogiltig Kvantitet"
@@ -25153,12 +25179,12 @@ msgstr "Ogiltig Schema"
msgid "Invalid Selling Price"
msgstr "Ogiltig Försäljning Pris"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Felaktig Serie och Parti Paket"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Ogiltig från och till lager"
@@ -25183,7 +25209,7 @@ msgstr "Ogiltigt belopp i bokföring av {} {} för Konto {}: {}"
msgid "Invalid condition expression"
msgstr "Ogiltig Villkor Uttryck"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "Ogiltig fil URL"
@@ -25195,7 +25221,7 @@ msgstr "Ogiltig filterformel. Kontrollera syntaxen."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Ogiltig förlorad anledning {0}, skapa ny förlorad anledning"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Ogiltig namngivning serie (. saknas) för {0}"
@@ -25221,8 +25247,8 @@ msgstr "Ogiltig sökfråga"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Ogiltigt värde {0} för {1} mot konto {2}"
@@ -25230,7 +25256,7 @@ msgstr "Ogiltigt värde {0} för {1} mot konto {2}"
msgid "Invalid {0}"
msgstr "Ogiltig {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Ogiltig {0} för Inter Bolag Transaktion."
@@ -25240,7 +25266,7 @@ msgid "Invalid {0}: {1}"
msgstr "Ogiltig {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Lager"
@@ -25289,8 +25315,8 @@ msgstr "Lager Värdering"
msgid "Investment Banking"
msgstr "Risk Kapital"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Investeringar"
@@ -25340,7 +25366,7 @@ msgstr "Faktura Rabatt"
msgid "Invoice Document Type Selection Error"
msgstr "Faktura Dokument Typ Val Fel"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Fakturera Totalt Belopp"
@@ -25445,7 +25471,7 @@ msgstr "Faktura kan inte skapas för noll fakturerbar tid"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25466,7 +25492,7 @@ msgstr "Fakturerad Kvantitet"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25562,8 +25588,7 @@ msgstr "Är Alternativ"
msgid "Is Billable"
msgstr "Är Fakturerbar"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Är Fakturering Kontakt"
@@ -26005,8 +26030,7 @@ msgstr "Är Mall"
msgid "Is Transporter"
msgstr "Är Leverantör"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Är Bolag Adress"
@@ -26112,8 +26136,8 @@ msgstr "Ärende Typ"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Utfärda Debet Faktura med 0 i Kvantitet mot befintlig Försäljning Faktura"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr "Utfärda debet nota mot befintlig Försäljning Faktura för att justera pris. Kvantitet kommer att behållas från ursprunglig faktura."
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26143,11 +26167,11 @@ msgstr "Ärende"
msgid "Issuing Date"
msgstr "Utfärdande Datum"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Det kan ta upp till några timmar för korrekta lagervärden att vara synliga efter sammanslagning av artiklar."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Behövs för att hämta Artikel Detaljer."
@@ -26161,7 +26185,7 @@ msgstr "Allt är bra!"
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.py:217
msgid "It's not possible to distribute charges equally when total amount is zero, please set 'Distribute Charges Based On' as 'Quantity'"
-msgstr "Det är inte möjligt att fördela avgifter lika när det totala belopp är noll, vänligen ange \"Distribuera Avgifter Baserat På\" som \"Kvantitet\""
+msgstr "Det är inte möjligt att fördela avgifter proportionellt när det totala belopp är noll, vänligen ange \"Distribuera Avgifter Baserat På\" som \"Kvantitet\""
#. Label of the italic_text (Check) field in DocType 'Financial Report Row'
#: erpnext/accounts/doctype/financial_report_row/financial_report_row.json
@@ -26271,7 +26295,7 @@ msgstr "Kursiv text för delsummor eller anteckningar"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26519,7 +26543,7 @@ msgstr "Artikel Kundkorg"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26581,7 +26605,7 @@ msgstr "Artikel Kundkorg"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26780,13 +26804,13 @@ msgstr "Artikel Detaljer "
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -27003,7 +27027,7 @@ msgstr "Artikel Producent"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27043,10 +27067,10 @@ msgstr "Artikel Producent"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27087,10 +27111,6 @@ msgstr "Artikeln är slut i lager"
msgid "Item Price"
msgstr "Artikel Pris"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Artikel Pris Tillagt för {0} i Prislista {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27106,19 +27126,20 @@ msgstr "Artikel Pris Inställningar"
msgid "Item Price Stock"
msgstr "Lager Artikel Pris"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Artikel Pris lagd till för {0} i Prislista {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr "Artikel pris tillagt för {0} i Prislista - {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 "Artikel Pris visas flera gånger baserat på Prislista, Leverantör/Kund, Valuta, Artikel, Parti, Enhet, Kvantitet och Datum."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr "Artikelpris skapat till pris {0}"
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Artikel Pris uppdaterad för {0} i Prislista {1}"
@@ -27305,11 +27326,11 @@ msgstr "Artikel Variant Detaljer"
msgid "Item Variant Settings"
msgstr "Artikel Variant Inställningar"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Artikel Variant {0} finns redan med samma attribut"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Artikel Varianter uppdaterade"
@@ -27410,11 +27431,11 @@ msgstr "Artikel och Lager"
msgid "Item and Warranty Details"
msgstr "Artikel och Garanti Information"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Artikel för rad {0} matchar inte Material Begäran"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Artikel har varianter."
@@ -27440,11 +27461,7 @@ msgstr "Artikel Namn"
msgid "Item operation"
msgstr "Artikel Åtgärd"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Artikel kvantitet kan inte uppdateras eftersom råmaterial redan är bearbetad."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Artikel pris har ändrats till noll eftersom Tillåt Noll Grund Pris är vald för artikel {0}"
@@ -27463,11 +27480,11 @@ msgstr "Grund Pris räknas om med hänsyn till landad kostnad verifikat belopp"
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Artikel värdering ombokning pågår. Rapport kan visa felaktig artikelvärde."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Artikel variant {0} finns med lika egenskap"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr "Artikel med namn {0} hittades inte i Inköp Order"
@@ -27484,7 +27501,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Artikel {0} kan inte skapas order för mer än {1} mot Ramavtal Order {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Artikel {0} finns inte"
@@ -27496,7 +27513,7 @@ msgstr "Artikel finns inte {0} i system eller har förfallit"
msgid "Item {0} does not exist."
msgstr "Artikel {0} finns inte."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Artikel {0} är angiven flera gånger."
@@ -27508,15 +27525,15 @@ msgstr "Artikel {0} är redan returnerad"
msgid "Item {0} has been disabled"
msgstr "Artikel {0} är inaktiverad"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Artikel {0} har ingen serie nummer. Endast serie nummer artiklar kan ha leverans baserat på serie nummer"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
msgid "Item {0} has no changes in delivered quantity. Please unselect the row if you do not wish to update its quantity."
msgstr "Artikel {0} har inga ändringar i levererad kvantitet. Inaktivera denna rad om du inte vill uppdatera dess kvantitet."
-#: erpnext/stock/doctype/item/item.py:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Artikel {0} har nått slut på sin livslängd {1}"
@@ -27528,15 +27545,15 @@ msgstr "Artikel {0} ignorerad eftersom det inte är Lager Artikel"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Artikel {0} är redan reserverad/levererad mot Försäljning Order {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Artikel {0} är anullerad"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Artikel {0} är inaktiverad"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr "Artikel {0} är inte direkt leverans artikel. Endast direkt leverans artiklar kan ha Levererad Kvantitet uppdaterad."
@@ -27544,7 +27561,7 @@ msgstr "Artikel {0} är inte direkt leverans artikel. Endast direkt leverans art
msgid "Item {0} is not a serialized Item"
msgstr "Artikel {0} är inte serialiserad Artikel"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Artikel {0} är inte Lager Artikel"
@@ -27552,11 +27569,11 @@ msgstr "Artikel {0} är inte Lager Artikel"
msgid "Item {0} is not a subcontracted item"
msgstr "Artikel {0} är inte underleverantör artikel"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr "Artikel {0} är inte mall artikel."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Artikel {0} är inte aktiv eller livslängd har uppnåtts"
@@ -27572,7 +27589,7 @@ msgstr "Artikel {0} måste vara Ej Lager Artikel"
msgid "Item {0} must be a non-stock item"
msgstr "Artikel {0} får inte vara Lager Artikel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Artikel {0} hittades inte i \"Råmaterial Levererad\" tabell i {1} {2}"
@@ -27580,7 +27597,7 @@ msgstr "Artikel {0} hittades inte i \"Råmaterial Levererad\" tabell i {1} {2}"
msgid "Item {0} not found."
msgstr "Artikel {0} hittades inte."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Artikel {0}: Order Kvantitet {1} kan inte vara lägre än minimum order kvantitet {2} (definierad i Artikel Inställningar)."
@@ -27588,7 +27605,7 @@ msgstr "Artikel {0}: Order Kvantitet {1} kan inte vara lägre än minimum order
msgid "Item {0}: {1} qty produced. "
msgstr "Artikel {0}: {1} Kvantitet producerad ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Artikel {} finns inte."
@@ -27634,7 +27651,7 @@ msgstr "Försäljning Register per Artikel"
msgid "Item-wise sales Register"
msgstr "Försäljning Register per Artikel"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Artikel / Artikel Kod erfordras för att hämta Artikel Moms Mall."
@@ -27658,7 +27675,7 @@ msgstr "Artikel Katalog"
msgid "Items Filter"
msgstr "Artikel Filter"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Artiklar Erfodrade"
@@ -27682,11 +27699,11 @@ msgstr "Inköp Artiklar att Begära"
msgid "Items and Pricing"
msgstr "Artiklar & Prissättning"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Artiklar kan inte uppdateras eftersom det finns en eller flera Interna Underleverantör Ordrar mot denna Underleverantör Försäljning Order."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Artiklar kan inte uppdateras eftersom underleverantör order är skapad mot Inköp Order {0}."
@@ -27698,7 +27715,7 @@ msgstr "Artiklar för Råmaterial Begäran"
msgid "Items not found."
msgstr "Artiklar hittades inte."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Artikel Pris har ändrats till noll eftersom Tillåt Noll Grund Pris är vald för följande artiklar: {0}"
@@ -27708,7 +27725,7 @@ msgstr "Artikel Pris har ändrats till noll eftersom Tillåt Noll Grund Pris är
msgid "Items to Be Repost"
msgstr "Artikel som ska Läggas om"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Artiklar som ska produceras erfordras för att hämta tilldelad Råmaterial."
@@ -27773,9 +27790,9 @@ msgstr "Arbetskapacitet"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27837,7 +27854,7 @@ msgstr "Jobbkort Tid Logg"
msgid "Job Card and Capacity Planning"
msgstr "Jobbkort & Kapacitet Planering"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Jobbkort {0} klar"
@@ -27913,7 +27930,7 @@ msgstr "Jobb Ansvarig Namn"
msgid "Job Worker Warehouse"
msgstr "Jobb Ansvarig Lager"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Jobbkort {0} skapad"
@@ -28133,7 +28150,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowattimme"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Vänligen annullera Produktion Poster först mot Arbetsorder {0}."
@@ -28261,7 +28278,7 @@ msgstr "Senaste Utförande Datum"
msgid "Last Fiscal Year"
msgstr "Senaste Bokföringsår"
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Senaste uppdatering av Bokföring Register gjordes {}. Denna åtgärd är inte tillåten när system används aktivt. Vänta i 5 minuter innan du försöker igen."
@@ -28343,7 +28360,7 @@ msgstr "Senaste CO2 Kontroll Datum kan inte vara framtida datum"
msgid "Last transacted"
msgstr "Senast genomförd:"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Senaste"
@@ -28549,12 +28566,12 @@ msgstr "Register Status Övervakning Bolag"
#. Name of a DocType
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
msgid "Ledger Merge"
-msgstr "Bokgöring Register Sammanslagning"
+msgstr "Bokföring Register Sammanslagning"
#. Name of a DocType
#: erpnext/accounts/doctype/ledger_merge_accounts/ledger_merge_accounts.json
msgid "Ledger Merge Accounts"
-msgstr "Register Sammanslagning Konton"
+msgstr "Bokföring Register Sammanslagning Konton"
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:146
msgid "Ledger Type"
@@ -28593,12 +28610,12 @@ msgstr "Äldre Fält"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Juridisk Entitet / Dotterbolag med separat Kontoplan som tillhör Bolag."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Juridisk Kostnad Konto"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Förklaring"
@@ -28609,7 +28626,7 @@ msgstr "Förklaring"
msgid "Length (cm)"
msgstr "Längd (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Lägre än Belopp"
@@ -28668,7 +28685,7 @@ msgstr "Körkort Nummer"
msgid "License Plate"
msgstr "Registrering Nummer"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Gräns Överskriden"
@@ -28729,7 +28746,7 @@ msgstr "Länk till Material Begäran"
msgid "Link with Customer"
msgstr "Länka med Kund"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Länka med Leverantör"
@@ -28750,12 +28767,12 @@ msgstr "Länkade Fakturor"
msgid "Linked Location"
msgstr "Länkad Plats"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Länkad med godkända dokument"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Länkning Misslyckad"
@@ -28763,7 +28780,7 @@ msgstr "Länkning Misslyckad"
msgid "Linking to Customer Failed. Please try again."
msgstr "Länkning med Kund Misslyckades. Var god försök igen."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Länkning med Leverantör Misslyckades. Var god försök igen."
@@ -28821,8 +28838,8 @@ msgstr "Lån Start Datum"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Lån Start Datum och Lån Period erfordras för att spara Faktura Rabatt"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Lån (Skulder)"
@@ -28867,8 +28884,8 @@ msgstr "Logga försäljning och inköp pris för Artikel"
msgid "Logo"
msgstr "Logotyp"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Långfristiga Avsättningar"
@@ -29069,6 +29086,11 @@ msgstr "Lojalitet Program Nivå"
msgid "Loyalty Program Type"
msgstr "Lojalitet Program Typ"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr "Lojalitet program som denna kund tjänar poäng under. Tilldelas automatiskt om ett matchande program finns."
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29112,10 +29134,10 @@ msgstr "Maskin Fel"
msgid "Machine operator errors"
msgstr "Operatör Fel"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Standard Resultat Enhet"
@@ -29358,9 +29380,9 @@ msgstr "Valfri Ämne"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Märke"
@@ -29380,7 +29402,7 @@ msgstr "Skapa Avskrivning Post"
msgid "Make Difference Entry"
msgstr "Skapa Differens Post"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Skapa Ledtid"
@@ -29418,12 +29440,12 @@ msgstr "Skapa Försäljning Faktura"
msgid "Make Serial No / Batch from Work Order"
msgstr "Skapa Serie / Parti Nummer från Arbetsorder"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Skapa Lager Post"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Skapa Inköp Order"
@@ -29439,11 +29461,11 @@ msgstr "Ring Samtal"
msgid "Make project from a template."
msgstr "Skapa Projekt från Mall."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Skapa {0} Variant"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Skapa {0} Varianter"
@@ -29451,8 +29473,8 @@ msgstr "Skapa {0} Varianter"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Skapa Journal Poster mot förskott konton: {0} rekommenderas inte. Dessa journaler kommer inte att vara tillgängliga för avstämning."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Hantera"
@@ -29471,7 +29493,7 @@ msgstr "Hantera försäljningspartner och försäljningsteam provisioner"
msgid "Manage your orders"
msgstr "Hantera Ordrar"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Ledning"
@@ -29487,7 +29509,7 @@ msgstr "Verkställande Direktör"
msgid "Mandatory Accounting Dimension"
msgstr "Erfodrad Bokföring Dimension"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Erfodrad Fält"
@@ -29586,8 +29608,8 @@ msgstr "Manuell post kan inte skapas! Inaktivera automatisk post för uppskjuten
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29666,7 +29688,7 @@ msgstr "Producent"
msgid "Manufacturer Part Number"
msgstr "Producent Artikel Nummer"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Producent Artikel Nummer {0} är ogiltig"
@@ -29691,7 +29713,7 @@ msgstr "Producenter för Artiklar"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29736,10 +29758,6 @@ msgstr "Produktion Datum"
msgid "Manufacturing Manager"
msgstr "Produktion Ansvarig"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Produktion Kvantitet erfordras"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29906,6 +29924,12 @@ msgstr "Civilstånd"
msgid "Mark As Closed"
msgstr "Ange som Stängd "
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr "Ange om denna kund representerar intern bolag. Möjliggör transaktioner mellan bolag."
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29920,12 +29944,12 @@ msgstr "Ange som Stängd "
msgid "Market Segment"
msgstr "Marknad Segment"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Marknadsföring"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Marknadsföring Kostnader Konto"
@@ -30004,7 +30028,7 @@ msgstr "Avstämning Regler"
msgid "Material"
msgstr "Material"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Material Förbrukning"
@@ -30012,7 +30036,7 @@ msgstr "Material Förbrukning"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Material Förbrukning för Produktion"
@@ -30093,7 +30117,7 @@ msgstr "Material Kvitto"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30190,11 +30214,11 @@ msgstr "Material Begäran Plan Artikel"
msgid "Material Request Type"
msgstr "Material Begäran Typ"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Material Begäran är redan skapad för order kvantitet"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Material Begäran är inte skapad eftersom kvantitet för Råmaterial är redan tillgänglig."
@@ -30262,7 +30286,7 @@ msgstr "Material Retur från Pågående Arbete"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30328,12 +30352,12 @@ msgstr "Material till Leverantör"
msgid "Materials To Be Transferred"
msgstr "Råmaterial att Överföra"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Material mottagen mot {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Material måste överföras till Pågående Arbete Lager för Jobbkort {0}"
@@ -30404,9 +30428,9 @@ msgstr "Maximum Resultat"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Maximum tillåten rabatt för artikel: {0} är {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30438,11 +30462,11 @@ msgstr "Maximum Betalning Belopp"
msgid "Maximum Producible Items"
msgstr "Maximalt antal artiklar att producera"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maximum Prov - {0} kan behållas för Parti {1} och Artikel {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maximum Prov - {0} har redan behållits för Parti {1} och Artikel {2} i Parti {3}."
@@ -30503,15 +30527,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Ange Grund Pris i Artikel Inställningar."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Ange om ej Standard Fordring Konto"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30561,7 +30580,7 @@ msgstr "Slå Samman med Befintlig Konto"
msgid "Merged"
msgstr "Sammanslagen"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Sammanslagning är endast möjlig om följande egenskaper är lika i båda poster. Är Grupp, Konto Klass, Bolag och Konto Valuta"
@@ -30591,7 +30610,7 @@ msgstr "Meddelande kommer att skickas till användarna för att få deras status
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Meddelande som är längre än 160 tecken delas in i flera meddelande"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "Säljstöd Kampanj Meddelanden"
@@ -30792,7 +30811,7 @@ msgstr "Minimum Kvantitet kan inte vara högre än Maximum Kvantitet"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimum Kvantitet ska vara högre än Rekurs över kvantitet"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Min Värde: {0}, Max Värde: {1}, i steg om: {2}"
@@ -30881,8 +30900,8 @@ msgstr "Minuter"
msgid "Miscellaneous"
msgstr "Övrigt"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Diverse Kostnader"
@@ -30890,15 +30909,15 @@ msgstr "Diverse Kostnader"
msgid "Mismatch"
msgstr "Felavstämd"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Saknas"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Konto Saknas"
@@ -30928,7 +30947,7 @@ msgstr "Saknade Filter"
msgid "Missing Finance Book"
msgstr "Finans Register Saknas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Färdig Artikel Saknas"
@@ -30936,7 +30955,7 @@ msgstr "Färdig Artikel Saknas"
msgid "Missing Formula"
msgstr "Formel Saknas"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Saknad Artikel"
@@ -30973,7 +30992,7 @@ msgid "Missing required filter: {0}"
msgstr "Erfordrad filter saknas: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Värde Saknas"
@@ -31222,11 +31241,11 @@ msgstr "Flera Konto"
msgid "Multiple Accounts (Journal Template)"
msgstr "Flera Konto (Journal Mall)"
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Flera Lojalitet Program hittades för Kund {}. Välj manuellt."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Flera Kassa Öppning Poster"
@@ -31248,11 +31267,11 @@ msgstr "Flera Varianter"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Flera bolag fält tillgängliga: {0}. Välj manuellt."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Flera Bokföringsår finns för datum {0}. Ange Bolag under Bokföringsår"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Flera artiklar kan inte väljas som färdiga artiklar"
@@ -31261,7 +31280,7 @@ msgid "Music"
msgstr "Musik"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31348,7 +31367,7 @@ msgstr "Namngivning Serie alternativ"
msgid "Naming Series updated"
msgstr "Namngivning Serie uppdaterad"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Namngivning serie '{0}' för DocType '{1}' innehåller inte standard '.' eller '{{' avgränsare. Använder reserv extraktion."
@@ -31392,7 +31411,7 @@ msgstr "Behöv Statistik"
msgid "Negative Batch Report"
msgstr "Negativ Parti Rapport"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negativ Kvantitet är inte tillåtet"
@@ -31401,7 +31420,7 @@ msgstr "Negativ Kvantitet är inte tillåtet"
msgid "Negative Stock Error"
msgstr "Negativt Lager Fel"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negativ Grund Pris är inte tillåtet"
@@ -31707,7 +31726,7 @@ msgstr "Netto Vikt"
msgid "Net Weight UOM"
msgstr "Netto Vikt Enhet"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Netto Total Beräkning Precision Förlust"
@@ -31884,7 +31903,7 @@ msgstr "Ny Lager Namn"
msgid "New Workplace"
msgstr "Ny Arbetsplats"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Ny Kredit Gräns är lägre än aktuell utestående belopp för kund. Kredit Gräns måste vara minst {0}"
@@ -31938,7 +31957,7 @@ msgstr "Nästa E-post kommer att skickas:"
msgid "No Account Data row found"
msgstr "Ingen rad med Konto Data hittades"
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Inget konto stämmer med filter: {}"
@@ -31951,7 +31970,7 @@ msgstr "Ingen Åtgärd"
msgid "No Answer"
msgstr "Ingen Svar"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Ingen Kund hittades för Inter Bolag Transaktioner som representerar Bolag {0}"
@@ -31964,7 +31983,7 @@ msgstr "Inga Kunder hittades med valda alternativ."
msgid "No Delivery Note selected for Customer {}"
msgstr "Ingen Försäljning Följesedel vald för Kund {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Inga DocTypes i Att ta bort lista. Skapa eller importera listan innan godkännande."
@@ -31980,7 +31999,7 @@ msgstr "Ingen Artikel med Streck/QR Kod {0}"
msgid "No Item with Serial No {0}"
msgstr "Ingen Artikel med Serie Nummer {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Inga Artiklar har valts för överföring."
@@ -32015,7 +32034,7 @@ msgstr "Ingen Kassa Profil hittad. Skapa ny Kassa Profil"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Ingen Behörighet"
@@ -32044,19 +32063,19 @@ msgstr "Ingen Lager Tillgänglig för närvarande"
msgid "No Summary"
msgstr "Ingen Översikt"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Ingen Leverantör hittades för Inter Bolag Transaktioner som representerar Bolag {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Ingen Moms Avdrag data hittades för aktuell registrering datum."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Inget moms avdrag konto har angetts för {0} i Moms Avdrag Kategori {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Inga Villkor"
@@ -32086,7 +32105,7 @@ msgstr "Inga konto konfigurerade"
msgid "No accounts found."
msgstr "Inga konton hittades."
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Ingen aktiv Stycklista hittades för Artikel {0}. Leverans efter Serie Nummer kan inte garanteras"
@@ -32280,7 +32299,7 @@ msgstr "Antal Arbetsplatser"
msgid "No open Material Requests found for the given criteria."
msgstr "Inga öppna Material Begäran hittades för angivna kriterier."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Ingen öppen Öppning Kassa Post hittades för Kassa Profil {0}."
@@ -32304,7 +32323,7 @@ msgstr "Inga utestående fakturor kräver valutaväxling kurs omvärdering"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Inga utestående {0} hittades för {1} {2} som uppfyller angiven filter."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Inga pågående Material Begäran hittades att länka för angivna artiklar."
@@ -32375,7 +32394,7 @@ msgstr "Inga regler inställda ännu"
msgid "No stock available for this batch."
msgstr "Inget lager tillgängligt för denna parti."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Inga Lager Register Poster skapade. Ange kvantitet eller grund pris för artiklar på rätt sätt och försök igen."
@@ -32408,7 +32427,7 @@ msgstr "Inga Värden"
msgid "No vouchers found for this transaction"
msgstr "Inga verifikat hittades för denna transaktion"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Ingen {0} hittades för Inter Bolag Transaktioner."
@@ -32453,8 +32472,8 @@ msgstr "Förening"
msgid "Non stock items"
msgstr "Ej Lager Artiklar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Långfristiga Skulder"
@@ -32555,7 +32574,7 @@ msgstr "Kunde inte hitta tidigare Bokföringsår för angiven bolag."
msgid "Not allow to set alternative item for the item {0}"
msgstr "Ej Tillåtet att ange alternativ Artikel för Artikel {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Ej Tillåtet att skapa Bokföring Dimension för {0}"
@@ -32609,7 +32628,7 @@ msgstr "Obs: Om du vill använda färdig artikel {0} som råmaterial, markera kr
msgid "Note: Item {0} added multiple times"
msgstr "Obs: Artikel {0} angiven flera gånger"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Obs: Betalning post kommer inte skapas eftersom \"Kassa eller Bank Konto\" angavs inte"
@@ -32617,7 +32636,7 @@ msgstr "Obs: Betalning post kommer inte skapas eftersom \"Kassa eller Bank Konto
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Obs: Detta Resultat Enhet är en Grupp. Kan inte skapa bokföring poster mot Grupper."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Obs: För att slå samman artiklar skapar separat lager avstämning för gamla artikel {0}"
@@ -32800,6 +32819,11 @@ msgstr "Nummer på ny Konto, kommer att ingå i Konto Namn som prefix"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Nummer på ny Resultat Enheter,kommer att ingå i Resultat Enhet namn som prefix"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr "Nummer som kund använder för att identifiera ditt bolag i sitt eget system."
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32859,18 +32883,18 @@ msgstr "Vägmätare Ställning (Senaste)"
msgid "Offer Date"
msgstr "Erbjudande Datum"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Kontors Material"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Kontor Underhåll Kostnader Konto"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Kontor Hyra Konto"
@@ -32998,7 +33022,7 @@ msgstr "Lager Introduktion!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Om vald, kommer faktura spärras tills angiven datum"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "När Arbetsorder är Stängd kan den inte återupptas."
@@ -33038,7 +33062,7 @@ msgstr "Endast \"Betalning Poster\" som skapas mot detta förskott konto stöds.
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Endast CSV och Excel filer kan användas för data import. Kontrollera filformat du försöker ladda upp"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Endast CSV filer är tillåtna"
@@ -33057,7 +33081,7 @@ msgstr "Endast Dra av Skatt på Överskjutande Belopp"
msgid "Only Include Allocated Payments"
msgstr "Endast Inkludera allokerade betalningar"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Endast Överordnad kan vara av typ {0}"
@@ -33094,7 +33118,7 @@ msgstr "Endast en av insättningar eller uttag ska inte vara noll när Exklusive
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "Endast en operation kan ha \"Är Slutgiltig Färdig Artikel\" angiven när \"Spåra Halvfärdiga Artiklar\" är aktiverat."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Endast en {0} post kan skapas mot Arbetsorder {1}"
@@ -33312,8 +33336,8 @@ msgstr "Öppning Saldo = Period Start, Stängning Saldo = Period Slut, Period F
msgid "Opening Balance Details"
msgstr "Öppning Saldo Detalj"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Öppning Saldo Eget Kapital"
@@ -33336,7 +33360,7 @@ msgstr "Öppning Datum"
msgid "Opening Entry"
msgstr "Öppning Post"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Öppning Post kan inte skapas efter att Period Stängning Verifikat är skapad."
@@ -33369,7 +33393,7 @@ msgid "Opening Invoice Tool"
msgstr "Öppning Faktura Verktyg"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Öppning Fakturan har avrundning justering på {0}. '{1}' konto erfordras för att bokföra dessa värden. Ange det i Bolag: {2}. Eller så kan '{3}' aktiveras för att inte bokföra någon avrundning justering."
@@ -33405,16 +33429,16 @@ msgstr "Öppning Försäljning Fakturor är skapade."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Öppning Lager"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr "Öppning Lager post skapad med noll grund pris: {0}"
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr "Öppning Lager post skapad: {0}"
@@ -33432,12 +33456,15 @@ msgstr "Öppning Värde"
msgid "Opening and Closing"
msgstr "Öppning & Stängning"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Öppning lager post har placerats i kö och kommer att skapas i bakgrunden. Kontrollera lager post efter en stund."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Drift Komponent"
@@ -33469,7 +33496,7 @@ msgstr "Drift Kostnad (Bolag Valuta)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Drift Kostnad per Stycklista Kvantitet"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Drift Kostnad per Arbetsorder / Styckelista"
@@ -33512,15 +33539,15 @@ msgstr "Åtgärd Beskrivning"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "Åtgärd ID"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Åtgärd ID"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33545,7 +33572,7 @@ msgstr "Åtgärd Rad Nummer"
msgid "Operation Time"
msgstr "Åtgärd Tid"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Åtgärd Tid måste vara högre än 0 för Åtgärd {0}"
@@ -33560,11 +33587,11 @@ msgstr "Åtgärd Klar för hur många färdiga artiklar?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Åtgärd Tid beror inte på kvantitet som ska produceras"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Åtgärd {0} har lagts till flera gånger i Arbetsorder {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Åtgärd {0} tillhör inte Arbetsorder {1}"
@@ -33580,9 +33607,9 @@ msgstr "Åtgärd {0} är längre än alla tillgängliga arbetstider för Arbetsp
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33755,7 +33782,7 @@ msgstr "Möjlighet {0} skapad"
msgid "Optimize Route"
msgstr "Optimera Sökväg"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr "Valfritt. Välj specifik produktion post att återföra."
@@ -33905,7 +33932,7 @@ msgstr "Order Kvantitet"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Order"
@@ -34021,7 +34048,7 @@ 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/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Utgående Kvantitet"
@@ -34059,7 +34086,7 @@ msgstr "Ingen Garanti"
msgid "Out of stock"
msgstr "Ej på Lager"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Föråldrad Kassa Öppning Post"
@@ -34078,6 +34105,7 @@ msgstr "Utgående Betalning"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Utgående Pris"
@@ -34113,7 +34141,7 @@ msgstr "Utestående (Bolag Valuta)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34123,7 +34151,7 @@ msgstr "Utestående (Bolag Valuta)"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34183,17 +34211,22 @@ msgstr "Överfakturering Tillåtelse för Inköp Följesedel Artikel {0} ({1})
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Över Leverans/Följesedel Tillåtelse (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr "Över Order Tillåtelse (%)"
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Över Plock Tillåtelse"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Över Följesedel"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Över Följesedel/Leverans av {0} {1} ignoreras för artikel {2} eftersom du har {3} roll."
@@ -34213,11 +34246,11 @@ msgstr "Över Överföring Tillåtelse (%)"
msgid "Over Withheld"
msgstr "Över Avdrag"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Överfakturering av {0} {1} ignoreras för artikel {2} eftersom du har {3} roll."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Överfakturering av {} ignoreras eftersom du har {} roll."
@@ -34517,7 +34550,7 @@ msgstr "Kassa Artikel Väljare"
msgid "POS Opening Entry"
msgstr "Kassa Öppning Post"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Kassa Öppning Post - {0} är föråldrad. Stäng Kass och skapa ny Kassa Öppning Post."
@@ -34538,7 +34571,7 @@ msgstr "Kassa Öppning Post Detalj"
msgid "POS Opening Entry Exists"
msgstr "Kassa Öppning Post Existerar"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Kassa Öppning Post Saknas"
@@ -34574,7 +34607,7 @@ msgstr "Kassa Betalning Sätt"
msgid "POS Profile"
msgstr "Kassa Profil"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Kassa Profil - {0} har flera öppna Kassa Öppning Poster. Stäng eller annullera befintliga poster innan fortsättning."
@@ -34592,11 +34625,11 @@ msgstr "Kassa Profil Användare"
msgid "POS Profile doesn't match {}"
msgstr "Kassa Profil matchar inte {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Kassa Profil erfordras för att välja denna faktura som Kassa Transaktion."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Kassa Profil erfordras att skapa Kassa Post"
@@ -34702,7 +34735,7 @@ msgstr "Packad Artikel"
msgid "Packed Items"
msgstr "Packade Artiklar"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Packade artiklar kan inte överföras internt"
@@ -34739,7 +34772,7 @@ msgstr "Packsedel"
msgid "Packing Slip Item"
msgstr "Packsedel Artikel"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Packsedel Annullerad"
@@ -34780,7 +34813,7 @@ msgstr "Betald"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34846,7 +34879,7 @@ msgid "Paid To Account Type"
msgstr "Betald till Konto Typ"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Betald Belopp + Avskrivning Belopp kan inte vara högre än Totalt Belopp"
@@ -34940,7 +34973,7 @@ msgstr "Överordnad Parti"
msgid "Parent Company"
msgstr "Moder Bolag"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Moder Bolag måste vara Grupp Bolag"
@@ -35067,7 +35100,7 @@ msgstr "Delvis avstämning"
msgid "Partial Material Transferred"
msgstr "Delvis Material Överförd"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Delbetalningar i Kassa Transaktioner är inte tillåtna."
@@ -35280,7 +35313,7 @@ msgstr "Delar Per Million"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35307,7 +35340,7 @@ msgstr "Parti"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Parti Konto"
@@ -35340,7 +35373,7 @@ msgstr "Party Konto Nummer."
msgid "Party Account No. (Bank Statement)"
msgstr "Parti Konto Nummer (Kontoutdrag)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Parti Konto {0} valuta ({1}) och dokument valuta ({2}) ska vara samma"
@@ -35492,7 +35525,7 @@ msgstr "Parti Specifik Artikel"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35601,7 +35634,7 @@ msgstr "Tidigare Händelser"
msgid "Pause"
msgstr "Paus"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Pausa Jobb"
@@ -35652,7 +35685,7 @@ msgid "Payable"
msgstr "Skulder"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35686,7 +35719,7 @@ msgstr "Betalning Inställningar"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35833,7 +35866,7 @@ msgstr "Betalning Post har ändrats efter hämtning.Hämta igen."
msgid "Payment Entry is already created"
msgstr "Betalning Post är redan skapad"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Betalning Post {0} är länkad till Order {1}, kontrollera om den ska hämtas som förskott på denna faktura."
@@ -36058,7 +36091,7 @@ msgstr "Betalning Referenser"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36123,7 +36156,7 @@ msgstr "Betalning Begäran som görs från Försäljning / Inköp Faktura kommer
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36152,7 +36185,7 @@ msgstr "Betalning Scheman"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36208,6 +36241,7 @@ msgstr "Betalning Villkor Status för Försäljning Order"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36222,6 +36256,7 @@ msgstr "Betalning Villkor Status för Försäljning Order"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36279,7 +36314,7 @@ msgstr "Betalning port {0} kunde inte skapa betalning session"
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Betalning Sätt erfordras. Lägg till minst ett Betalning Sätt."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Betalning metoder är uppdaterade. Kontrollera dem innan du fortsätter."
@@ -36354,8 +36389,8 @@ msgstr "Betalningar uppdaterade."
msgid "Payroll Entry"
msgstr "Löneregistrering"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Löneutbetalning"
@@ -36402,10 +36437,14 @@ msgstr "Väntar på Aktiviteter"
msgid "Pending Amount"
msgstr "Väntande Belopp"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36414,9 +36453,18 @@ msgstr "Väntande Kvantitet"
#: 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:273
msgid "Pending Quantity"
msgstr "Väntar på Kvantitet"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr "Väntande Kvantitet kan inte vara högre än {0}"
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr "Väntande Kvantitet kan inte vara lägre än 0"
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36446,6 +36494,14 @@ msgstr "Väntar på aktiviteter för idag"
msgid "Pending processing"
msgstr "Väntar på bearbetning"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr "Väntande Kvantitet kan inte vara högre än angiven kvantitet."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr "Väntande Kvantitet kan inte vara negativ."
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Pensionsfonder"
@@ -36556,7 +36612,7 @@ msgstr "Uppfattning Statistik"
msgid "Period Based On"
msgstr "Period Baserat på"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Period Stängd"
@@ -37120,8 +37176,8 @@ msgstr "Fabrik Översikt Panel"
msgid "Plant Floor"
msgstr "Produktion Yta"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Växter och Maskiner"
@@ -37157,7 +37213,7 @@ msgstr "Ange Prioritet"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Ange Leverantör Grupp i Inköp Inställningar."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Specificera Konto"
@@ -37205,7 +37261,7 @@ msgstr "Lägg till Bank Konto kolumn"
msgid "Please add the account to root level Company - {0}"
msgstr "Lägg till Konto till Överordnad Bolag - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Lägg till konto i rot nivå Bolag - {}"
@@ -37213,7 +37269,7 @@ msgstr "Lägg till konto i rot nivå Bolag - {}"
msgid "Please add {1} role to user {0}."
msgstr "Lägg till roll {1} till användare {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Justera kvantitet eller redigera {0} för att fortsätta."
@@ -37221,7 +37277,7 @@ msgstr "Justera kvantitet eller redigera {0} för att fortsätta."
msgid "Please attach CSV file"
msgstr "Bifoga CSV Fil"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Annullera och ändra Betalning Post"
@@ -37255,7 +37311,7 @@ msgstr "Välj antingen Med Åtgärder eller Färdig Artikel Baserad Åtgärd Kos
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr "Välj 'Aktivera Serie och Parti Nummer för Artikel' i {0} för att skapa Serie och Parti Paket för artikel."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Kontrollera felmeddelande och vidta nödvändiga åtgärder för att åtgärda fel och starta sedan ombokning igen."
@@ -37280,11 +37336,15 @@ msgstr "Klicka på \"Skapa Schema\" för att hämta Serie Nummer skapad för Art
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Klicka på \"Skapa Schema\" för att skapa schema"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr "Avsluta jobb först innan angivning av Väntande Kvantitet"
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr "Konfigurera konton för Bank Post regel."
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Kontakta någon av följande användare för att utöka kredit gränser för {0}: {1}"
@@ -37292,11 +37352,11 @@ msgstr "Kontakta någon av följande användare för att utöka kredit gränser
msgid "Please contact any of the following users to {} this transaction."
msgstr "Kontakta någon av följande användare för att {} denna transaktion."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Kontakta administratör för att utöka kredit gränser för {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Konvertera Överordnad Konto i motsvarande Dotter Bolag till ett Grupp Konto."
@@ -37308,11 +37368,11 @@ msgstr "Skapa Kund från Potentiell Kund {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Skapa Landad Kostnad Verifikat mot fakturor som har \"Uppdatera Lager\" aktiverad."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Skapa Bokföring Dimension vid behov."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Skapa Inköp från intern Försäljning eller Följesedel"
@@ -37320,11 +37380,11 @@ msgstr "Skapa Inköp från intern Försäljning eller Följesedel"
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Skapa Inköp Följesdel eller Inköp Faktura för Artikel {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Ta bort Artikel Paket {0} innan sammanslagning av {1} med {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Inaktivera Arbetsflöde tillfälligt för Journal Post {0}"
@@ -37332,7 +37392,7 @@ msgstr "Inaktivera Arbetsflöde tillfälligt för Journal Post {0}"
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Bokför inte kostnader för flera Tillgångar mot enskild Tillgång."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Skapa inte mer än 500 Artiklar åt gång"
@@ -37356,7 +37416,7 @@ msgstr "Aktivera endast om du förstår effekterna av att aktivera detta."
msgid "Please enable {0} in the {1}."
msgstr "Aktivera {0} i {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Aktivera {} i {} för att tillåta samma Artikel i flera rader"
@@ -37368,20 +37428,20 @@ msgstr "Kontrollera att {0} konto är Balans Rapport Konto. Ändra Överordnad K
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 "Kontrollera att {0} konto {1} är Skuld Konto. Ändra Konto Typ till Skuld Konto Typ eller välj ett annat konto."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Kontrollera att {} konto är Balans Rapport konto."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Kontrollera att {} konto {} är fordring konto."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Ange Differens Konto eller standard konto för Lager Justering Konto för bolag {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Ange Växel Belopp Konto"
@@ -37389,15 +37449,15 @@ msgstr "Ange Växel Belopp Konto"
msgid "Please enter Approving Role or Approving User"
msgstr "Ange Godkännande Roll eller Godkännande Användare"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Vänligen ange Parti Nummer"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Ange Resultat Enhet"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Ange Leverans Datum"
@@ -37405,7 +37465,7 @@ msgstr "Ange Leverans Datum"
msgid "Please enter Employee Id of this sales person"
msgstr "Ange Anställning ID för denna Säljare"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Ange Kostnad Konto"
@@ -37414,7 +37474,7 @@ msgstr "Ange Kostnad Konto"
msgid "Please enter Item Code to get Batch Number"
msgstr "Ange Artikel Kod att hämta Parti Nummer"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Ange Artikel Kod att hämta Parti Nummer"
@@ -37430,7 +37490,7 @@ msgstr "Ange Underhåll Detaljer"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Ange Planerad Kvantitet för Artikel {0} vid rad {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Ange Produktion Artikel"
@@ -37450,7 +37510,7 @@ msgstr "Ange Referens Datum"
msgid "Please enter Root Type for account- {0}"
msgstr "Ange Konto Klass för konto {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Vänligen ange Serienummer"
@@ -37467,7 +37527,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Ange Lager och Datum"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Ange Avskrivning Konto"
@@ -37487,7 +37547,7 @@ msgstr "Ange minst ett leverans datum och kvantitet"
msgid "Please enter company name first"
msgstr "Ange Bolag Namn"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Ange Standard Valuta i Bolag Tabell"
@@ -37515,7 +37575,7 @@ msgstr "Ange Avlösning Datum."
msgid "Please enter serial nos"
msgstr "Ange Serie Nummer"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Ange Bolag Namn att bekräfta"
@@ -37583,11 +37643,11 @@ msgstr "Se till att Personal ovan rapporterar till annan Aktiv Personal."
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Kontrollera att fil har kolumn \"Överordnad Konto\" i rubrik."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Kontrollera att du verkligen vill ta bort alla transaktioner för Bolag. Grund data kommer att förbli som den är. Denna åtgärd kan inte ångras."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Ange \"Vikt Enhet\" tillsammans med Vikt."
@@ -37646,7 +37706,7 @@ msgstr "Välj Mall Typ att ladda ner mall"
msgid "Please select Apply Discount On"
msgstr "Välj Tillämpa Rabatt på"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Välj Stycklista mot Artikel {0}"
@@ -37662,7 +37722,7 @@ msgstr "Välj Bank Konto"
msgid "Please select Category first"
msgstr "Välj Kategori"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37692,7 +37752,7 @@ msgstr "Välj Slutdatum för Klar Tillgång Service Logg"
msgid "Please select Customer first"
msgstr "Välj Kund"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Välj Befintligt Bolag att skapa Kontoplan"
@@ -37701,8 +37761,8 @@ msgstr "Välj Befintligt Bolag att skapa Kontoplan"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Välj Färdig Artikel för Service Artikel {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Välj Artikel Kod"
@@ -37734,11 +37794,11 @@ msgstr "Välj Registrering Datum"
msgid "Please select Price List"
msgstr "Välj Prislista"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Välj Kvantitet mot Artikel {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Välj Prov Lager i Lager Inställningar"
@@ -37754,7 +37814,7 @@ msgstr "Välj Startdatum och Slutdatum för Artikel {0}"
msgid "Please select Stock Asset Account"
msgstr "Välj Lager Tillgång Konto"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Välj Orealiserad Resultat Konto eller ange standard konto för Orealiserad Resultat Konto för Bolag {0}"
@@ -37771,7 +37831,7 @@ msgstr "Välj Bolag"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Välj Bolag"
@@ -37795,7 +37855,7 @@ msgstr "Välj Leverantör"
msgid "Please select a Warehouse"
msgstr "Välj Lager"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Välj Arbetsorder"
@@ -37868,11 +37928,15 @@ msgstr "Välj värde för {0} Försäljning Offert {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Välj Artikel Kod innan du anger Lager."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr "Välj minst en egenskap värde"
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Välj minst ett filter: Artikel Kod, Parti eller Serie Nummer."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr "Välj minst en artikel för att uppdatera levererad kvantitet."
@@ -37892,7 +37956,7 @@ msgstr "Välj minst ett schema."
msgid "Please select atleast one item to continue"
msgstr "Välj artikel för att fortsätta"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Välj minst en åtgärd för att skapa Jobb Kort"
@@ -37950,7 +38014,7 @@ msgstr "Välj Bolag"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Välj Fler Nivå Program typ för mer än en inlösning regel."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Välj Lager först"
@@ -37979,7 +38043,7 @@ msgstr "Välj giltig dokument typ."
msgid "Please select weekly off day"
msgstr "Välj Ledig Veckodag"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Välj {0}"
@@ -37988,11 +38052,11 @@ msgstr "Välj {0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Ange 'Tillämpa Extra Rabatt På'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Ange 'Tillgång Avskrivning Resultat Enhet' i Bolag {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Ange 'Tillgång Avskrivning Resultat Konto' för Bolag {0}"
@@ -38004,7 +38068,7 @@ msgstr "Ange '{0}' i Bolag: {1}"
msgid "Please set Account"
msgstr "Ange Konto"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Ange Växel Belopp Konto "
@@ -38034,7 +38098,7 @@ msgstr "Ange Bolag"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Ange Kund Adress för att avgöra om transaktion är till export."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Ange Avskrivning relaterade konton i Tillgångar Kategori {0} eller Bolag {1}"
@@ -38052,7 +38116,7 @@ msgstr "Ange Org.Nr. för Kund \"%s\""
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Ange Org.Nr. för Offentlig Förvaltning \"%s\""
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Ange Fast Tillgång Konto för Tillgång Kategori {0}"
@@ -38098,7 +38162,7 @@ msgstr "Ange Bolag"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Ange Resultat Enhet för Tillgång eller ange Resultat Enhet för Tillgång Avskrivningar för Bolag {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Ange standard Helg Lista för Bolag {0}"
@@ -38135,23 +38199,23 @@ msgstr "Ange minst en rad i Moms och Avgifter Tabell"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Ange både Moms och Org. Nr. för {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Ange Standard Kassa eller Bank Konto i Betalning Sätt {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Ange Standard Valutaväxling Resultat Konto för Bolag {}"
@@ -38180,7 +38244,7 @@ msgstr "Ange Standard {0} i Bolag {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Ange filter baserad på Artikel eller Lager"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Ange något av följande:"
@@ -38188,7 +38252,7 @@ msgstr "Ange något av följande:"
msgid "Please set opening number of booked depreciations"
msgstr "Ange Öppning Nummer för Bokförda Avskrivningar"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Ange Återkommande efter spara"
@@ -38200,15 +38264,15 @@ msgstr "Ange Kund Adress"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Ange Standard Resultat Enhet i {0} Bolag."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Ange Artikel Kod"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Ange Till Lager i Jobbkortet"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Ange Pågående Arbete Lager i Jobb Kort"
@@ -38247,7 +38311,7 @@ msgstr "Ange {0} i Stycklista Generator {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Ange {0} i Bolag {1} för att bokföra valutaväxling resultat"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Ange {0} till {1}, samma konto som användes i ursprunglig faktura {2}."
@@ -38269,7 +38333,7 @@ msgstr "Ange Bolag"
msgid "Please specify Company to proceed"
msgstr "Ange Bolag att fortsätta"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Ange giltig Rad ID för Rad {0} i Tabell {1}"
@@ -38282,7 +38346,7 @@ msgstr "Ange {0} först."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Ange minst en Egenskap i Egenskap Tabell"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Ange antingen Kvantitet eller Grund Pris eller båda"
@@ -38387,8 +38451,8 @@ msgstr "Ange Sökväg Sträng"
msgid "Post Title Key"
msgstr "Ange Benämning Nyckel"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Post Kostnader Konto"
@@ -38453,7 +38517,7 @@ msgstr "Datum"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38471,7 +38535,7 @@ msgstr "Datum"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38593,10 +38657,6 @@ msgstr "Registrering Datum och Tid"
msgid "Posting Time"
msgstr "Registrering Tid"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Registrering Datum och Tid erfordras"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr "Bokföring datum stämmer inte med vald transaktion"
@@ -38670,18 +38730,23 @@ msgstr "Tillhandahålls av {0}"
msgid "Pre Sales"
msgstr "Offerter"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr "Förinsänd Varning"
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr "Varning före Godkännande: Kreditgräns"
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr "Varning före Godkännande: Paket Kvantitet"
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr "Förifyllda betalning poster för denna kund. Måste vara bolag konto."
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Preferens"
@@ -38854,6 +38919,7 @@ msgstr "Pris Rabatt Tabeller"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38877,6 +38943,7 @@ msgstr "Pris Rabatt Tabeller"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38928,7 +38995,7 @@ msgstr "Prislista Land"
msgid "Price List Currency"
msgstr "Prislista Valuta"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Prislista Valuta inte vald"
@@ -39283,7 +39350,7 @@ msgstr "Skriv ut"
msgid "Print Receipt on Order Complete"
msgstr "Skriv ut kvitto när Order är klar"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Visa Enhet efter Kvantitet"
@@ -39292,8 +39359,8 @@ msgstr "Visa Enhet efter Kvantitet"
msgid "Print Without Amount"
msgstr "Skriv ut Utan Belopp"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Utskrift och Papper"
@@ -39301,7 +39368,7 @@ msgstr "Utskrift och Papper"
msgid "Print settings updated in respective print format"
msgstr "Utskrift Inställningar uppdateras i respektive Utskrift Format"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Visa Moms med Noll Belopp"
@@ -39404,10 +39471,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Procedur"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Procedurer slopade"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39461,7 +39524,7 @@ msgstr "Process Förlust i Procent får inte vara större än 100 "
msgid "Process Loss Qty"
msgstr "Process Förlust Kvantitet"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Process Förlust Kvantitet"
@@ -39542,6 +39605,10 @@ msgstr "Behandla Prenumeration"
msgid "Process in Single Transaction"
msgstr "Process i Singel Transaktion"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr "Process förlust kvantitet kan inte vara negativ."
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39637,8 +39704,8 @@ msgstr "Artikel"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39703,7 +39770,7 @@ msgstr "Artikel Pris"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Produktion"
@@ -39917,7 +39984,7 @@ msgstr "Framsteg % för uppgift kan inte vara mer än 100."
msgid "Progress (%)"
msgstr "Framsteg(%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Projekt Samarbete Inbjudan"
@@ -39961,7 +40028,7 @@ msgstr "Projekt Status"
msgid "Project Summary"
msgstr "Projekt Översikt"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Projekt Översikt för {0}"
@@ -40092,7 +40159,7 @@ msgstr "Förväntad Kvantitet"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40238,7 +40305,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Potentiella Kunder Engagerade men inte Konverterade"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "Skyddad DocType"
@@ -40253,7 +40320,7 @@ msgstr "Ange E-post registrerad i Bolag"
msgid "Providing"
msgstr "Tillhandahåller"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Provisoriskt Konto"
@@ -40325,8 +40392,9 @@ msgstr "Utgivning"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40649,7 +40717,7 @@ msgstr "Inköp Order {0} skapad"
msgid "Purchase Order {0} is not submitted"
msgstr "Inköp Order {0} ej godkänd"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Inköp Ordrar"
@@ -40664,7 +40732,7 @@ msgstr "Inköp Order"
msgid "Purchase Orders Items Overdue"
msgstr "Inköp Ordrar Försenade Artiklar"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Inköp Order är inte tillåtna för {0} på grund av Resultat Kort med {1}."
@@ -40679,7 +40747,7 @@ msgstr "Inköp Ordrar att Betala"
msgid "Purchase Orders to Receive"
msgstr "Inköp Ordrar att Ta Emot"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Inköp Ordrar {0} är inte länkade"
@@ -40813,7 +40881,7 @@ msgstr "Inköp Retur"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Inköp Moms Mall"
@@ -40911,6 +40979,7 @@ msgstr "Inköp"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40920,10 +40989,6 @@ msgstr "Inköp"
msgid "Purpose"
msgstr "Anledning"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Anledning måste vara en av {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40979,6 +41044,7 @@ msgstr "K4"
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41027,6 +41093,7 @@ msgstr "K4"
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41135,11 +41202,11 @@ msgstr "Kvantitet per Enhet"
msgid "Qty To Manufacture"
msgstr "Kvantitet att Producera"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Kvantitet att Producera ({0}) kan inte vara bråkdel för enhet {2}. För att tillåta detta, inaktivera '{1}' i enhet {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "Kvantitet att producera på jobbkortet kan inte vara högre än kvantitet att producera i arbetsordern för åtgärd {0}. Lösning: Du kan antingen minska kvantitet att producera på jobbkortet eller ange 'Överproduktion Procent för Arbetsorder' i {1}."
@@ -41190,8 +41257,8 @@ msgstr "Kvantitet (per Lager Enhet)"
msgid "Qty for which recursion isn't applicable."
msgstr "Kvantitet för vilket rekursion inte är tillämplig."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Kvantitet för {0}"
@@ -41246,8 +41313,8 @@ msgstr "Kvantitet att demontera"
msgid "Qty to Fetch"
msgstr "Kvantitet att Hämta"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Kvantitet att Producera"
@@ -41483,17 +41550,17 @@ msgstr "Kvalitet Kontroll Mall"
msgid "Quality Inspection Template Name"
msgstr "Kvalitet Kontroll Mall Namn"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Kvalitet Kontroll erfordras för artikel {0} innan jobbkort {1} avslutas"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Kvalitet Kontroll {0} är inte godkänd för artikel: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Kvalitet Kontroll {0} är avvisad för artikel: {1}"
@@ -41507,7 +41574,7 @@ msgstr "Kvalitet Kontroll"
msgid "Quality Inspections"
msgstr "Kvalitetskontroller"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Kvalitet Hantering"
@@ -41639,7 +41706,7 @@ msgstr "Kvantiteter uppdaterade."
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41774,7 +41841,7 @@ msgstr "Kvantitet måste vara högre än noll"
msgid "Quantity must be less than or equal to {0}"
msgstr "Kvantitet måste vara lägre än eller lika med {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Kvantitet får inte vara mer än {0}"
@@ -41784,21 +41851,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Kvantitet som erfodras för artikel {0} på rad {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Kvantitet ska vara högre än 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Kvantitet att Producera"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Kvantitet att Producera kan inte vara noll för åtgärd {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Kvantitet att Producera måste vara högre än 0."
@@ -41821,7 +41888,7 @@ msgstr "Quart Dry (US)"
msgid "Quart Liquid (US)"
msgstr "Quart Liquid (US)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Kvartal {0} {1}"
@@ -41940,11 +42007,11 @@ msgstr "Försäljning Offert Till"
msgid "Quotation Trends"
msgstr "Försäljning Offert Statistik"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Försäljning Offert {0} är annullerad"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Försäljning Offert {0} inte av typ {1}"
@@ -42251,7 +42318,7 @@ msgstr "Värde med vilket Leverantör valuta omvandlas till Bolag Bas valuta"
msgid "Rate at which this tax is applied"
msgstr "Moms Sats"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Pris på \"{}\" artiklar kan inte ändras"
@@ -42417,7 +42484,7 @@ msgstr "Råmaterial Förbrukad"
msgid "Raw Materials Consumption"
msgstr "Råmaterial Förbrukning"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Råmaterial Saknas"
@@ -42456,12 +42523,6 @@ msgstr "Råmaterial kan inte vara tom."
msgid "Raw Materials to Customer"
msgstr "Råmaterial till Kund"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "Rå SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42470,7 +42531,7 @@ msgstr "Kvantitet förbrukade råvaror kommer att valideras baserat på antal so
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42585,7 +42646,7 @@ msgstr "Anledning för Spärr:"
#: erpnext/accounts/doctype/bisect_accounting_statements/bisect_accounting_statements.js:93
msgid "Rebuilding BTree for period ..."
-msgstr "Bygger om BTree för period ..."
+msgstr "Återbygger om BTree för period ..."
#: erpnext/stock/doctype/batch/batch.js:26
msgid "Recalculate Batch Qty"
@@ -42651,7 +42712,7 @@ msgid "Receivable / Payable Account"
msgstr "Fordring / Skuld Konto"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43112,7 +43173,7 @@ msgstr "Referens #"
msgid "Reference #{0} dated {1}"
msgstr "Referens # {0} daterad {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Referens Datum för Tidig Betalning Rabatt"
@@ -43276,11 +43337,11 @@ msgstr "Referens: {0}, Artikel Nummer: {1} och Kund: {2}"
msgid "References"
msgstr "Referenser"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Referenser till Försäljning Fakturor är ofullständiga"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Referenser till Försäljning Ordrar är ofullständiga"
@@ -43442,7 +43503,7 @@ msgid "Remaining Amount"
msgstr "Återstående Belopp"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Återstående Saldo"
@@ -43500,7 +43561,7 @@ msgstr "Anmärkning"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43564,7 +43625,7 @@ msgstr "Ändra Namn på Egenskap i Artikel Egenskaper."
msgid "Rename Log"
msgstr "Ändra Namn på Logg"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr " Ej Tillåtet att Ändra Namn"
@@ -43581,7 +43642,7 @@ msgstr "Ändra Namn Jobb för doctype {0} är i kö."
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Ändra Namn Jobb för doctype {0} är inte i kö."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Ändra namn är endast tillåtet via moderbolag {0} för att undvika att det inte stämmer."
@@ -43705,7 +43766,7 @@ msgstr "Rapportmall"
msgid "Report Type is mandatory"
msgstr "Rapport Typ erfordras"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Rapportera Ärende"
@@ -43950,7 +44011,7 @@ msgstr "Information Begäran"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44131,7 +44192,7 @@ msgstr "Erfodrar Uppfyllande"
msgid "Research"
msgstr "Forskning"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Forskning & Utveckling"
@@ -44176,7 +44237,7 @@ msgstr "Reservation"
msgid "Reservation Based On"
msgstr "Reservation Baserad På"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44220,7 +44281,7 @@ msgstr "Reservera för Undermontering"
msgid "Reserved"
msgstr "Reserverad"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Reserverad Parti Konflikt"
@@ -44290,14 +44351,14 @@ msgstr "Reserverad Kvantitet"
msgid "Reserved Quantity for Production"
msgstr "Reserverad Kvantitet för Produktion"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Reserverad Serie Nummer"
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44306,13 +44367,13 @@ msgstr "Reserverad Serie Nummer"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Reserverad"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Reserverad för Parti"
@@ -44578,7 +44639,7 @@ msgstr "Resultat Benämning Fält"
msgid "Resume"
msgstr "Återuppta"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Återuppta Jobb"
@@ -44603,8 +44664,8 @@ msgstr "Detaljhandel"
msgid "Retain Sample"
msgstr "Bevara Prov"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Balanserad Resultat"
@@ -44679,7 +44740,7 @@ msgstr "Retur mot Inköp Följesedel"
msgid "Return Against Subcontracting Receipt"
msgstr "Retur mot Underleverantör Följesedel"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Returnera Komponenter"
@@ -44715,7 +44776,7 @@ msgstr "Retur Kvantitet från Avvisad Lager"
msgid "Return Raw Material to Customer"
msgstr "Returnera Råmaterial till Kund"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Returfaktura för annullerad tillgång"
@@ -44813,8 +44874,8 @@ msgstr "Retur"
msgid "Revaluation Journals"
msgstr "Omvärdering Journaler"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Omvärdering Överskott"
@@ -44989,13 +45050,13 @@ msgstr "Roll Godkänd att Åsidosätta Stopp Åtgärd"
#. Label of the credit_controller (Link) field in DocType 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
msgid "Role allowed to bypass Credit Limit"
-msgstr "Roll Godkänd att Åsidosätta Kredit Gräns"
+msgstr "Roll som tillåts att ignorera Kredit Gräns"
#. Description of the 'Exempted Role' (Link) field in DocType 'Accounting
#. Period'
#: erpnext/accounts/doctype/accounting_period/accounting_period.json
msgid "Role allowed to bypass period restrictions."
-msgstr "Roll som tillåts kringgå periodbegränsningar."
+msgstr "Roll som tillåts att ignorera period begränsningar."
#. Label of the role_to_override_stop_action (Link) field in DocType 'Buying
#. Settings'
@@ -45046,7 +45107,7 @@ msgstr "Konto Klass för {0} måste vara en av följande klasser: Tillgång, Sku
msgid "Root Type is mandatory"
msgstr "Konto Klass erfordras"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Konto Klass kan inte redigeras."
@@ -45065,8 +45126,8 @@ msgstr "Avrunda Gratis Kvantitet"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45246,21 +45307,21 @@ msgstr "Rad # {0}: Pris kan inte vara högre än den använd i {1} {2}"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Rad # {0}: Returnerad Artikel {1} finns inte i {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Rad #1: Sekvens ID måste vara 1 för Åtgärd {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Rad # {0} (Betalning Tabell): Belopp måste vara negativ"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Rad # {0} (Betalning Tabell): Belopp måste vara positiv"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Rad # {0}: Återbeställning Post finns redan för lager {1} med återbeställning typ {2}."
@@ -45281,7 +45342,7 @@ msgstr "Rad # {0}: Godkänd Lager och Avvisat Lager kan inte vara samma"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Rad #{0}: Godkänd Lager erfordras för godkänd Artikel {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Rad # {0}: Konto {1} tillhör inte Bolag {2}"
@@ -45342,31 +45403,31 @@ msgstr "Rad #{0}: Kan inte avbryta denna Lager Post eftersom returnerad kvantite
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Rad #{0}: Det går inte att skapa post med olika länkar till moms OCH moms avdrag dokument."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Rad # {0}: Kan inte ta bort Artikel {1} som redan är fakturerad."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Rad # {0}: Kan inte ta bort artikel {1} som redan är levererad"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Rad #{0}: Kan inte ta bort Artikel {1} som redan är mottagen"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Rad # {0}: Kan inte ta bort Artikel {1} som har tilldelad Arbetsorder."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Rad #{0}: Det går inte att ta bort artikel {1} som finns mot denna Försäljning Order."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Rad #{0}: Kan inte ange Pris om fakturerad belopp är högre än belopp för artikel {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Rad # {0}: Kan inte överföra mer än Erforderlig Kvantitet {1} för Artikel {2} mot Jobbkort {3}"
@@ -45416,11 +45477,11 @@ msgstr "Rad #{0}: Kund Försedd Artikel {1} mot Underleverantör Intern Order Ar
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Rad #{0}: Kund Försedd Artikel {1} kan inte läggas till flera gånger i Intern Underleverantör process."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Rad #{0}: Kund Försedd Artikel {1} kan inte läggas till flera gånger."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Erfordrad Artikel Tabell länkad till Intern Underleverantör Order."
@@ -45428,7 +45489,7 @@ msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Erfordrad Artikel Tabel
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Rad #{0}: Kund Försedd Artikel {1} överstiger tillgänglig kvantitet via Intern Underleverantör Order"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Rad #{0}: Kund Försedd Artikel {1} har otillräcklig kvantitet i Intern Underleverantör Order. Tillgänglig kvantitet är {2}."
@@ -45445,7 +45506,7 @@ msgstr "Rad #{0}: Kund Försedd Artikel {1} finns inte i Underleverantör Order
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Rad #{0}: Datum överlappar med annan rad i grupp {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Rad # {0}: Standard Stycklista hittades inte för Färdig Artikel {1} "
@@ -45469,22 +45530,22 @@ msgstr "Rad # {0}: Kostnad Konto inte angiven för Artikel {1}. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Rad #{0}: Kostnad konto {1} är inte giltigt för inköp faktura {2}. Endast kostnad konton från ej lager artiklar är tillåtna."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Rad # {0}: Färdig Artikel Kvantitet kan inte vara noll"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Rad # {0}: Färdig Artikel är inte specificerad för Service Artikel {1} "
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Rad # {0}: Färdig Artikel {1} måste vara Underleverantör Artikel "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Rad #{0}: Färdig Artikel måste vara {1}"
@@ -45513,7 +45574,7 @@ msgstr "Rad #{0}: Avskrivning intervall måste vara högre än noll"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Rad # {0}: Från Datum kan inte vara före Till Datum"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Rad #{0}: Fält Från Tid och Till Tid erfordras"
@@ -45521,7 +45582,7 @@ msgstr "Rad #{0}: Fält Från Tid och Till Tid erfordras"
msgid "Row #{0}: Item added"
msgstr "Rad # {0}: Artikel Lagt till"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Rad #{0}: Artikel {1} kan inte överföras mer än {2} mot {3} {4}"
@@ -45549,7 +45610,7 @@ msgstr "Rad #{0}: Artikel {1} i lager {2}: Tillgänglig {3}, Behövs {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Rad #{0}: Artikel {1} är inte Kund Försedd Artikel."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Rad # {0}: Artikel {1} är inte Serialiserad/Parti Artikel. Det kan inte ha Serie Nummer / Parti Nummer mot det."
@@ -45590,7 +45651,7 @@ msgstr "Rad #{0}: Nästa avskrivning datum kan inte vara före datum för tillg
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Rad #{0}: Nästa avskrivning datum kan inte vara före inköp datum"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Rad # {0}: Otillåtet att ändra Leverantör eftersom Inköp Order finns redan"
@@ -45602,10 +45663,6 @@ msgstr "Rad # {0}: Endast {1} tillgänglig att reservera för artikel {2} "
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Rad #{0}: Ingående Ackumulerad Avskrivning måste vara lägre än eller lika med {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Rad # {0}: Åtgärd {1} är inte Klar för {2} Kvantitet färdiga artiklar i Arbetsorder {3}. Uppdatera drift status via Jobbkort {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45627,11 +45684,11 @@ msgstr "Rad #{0}: Välj Färdig Artikel mot vilken denna Kund Försedd Artikel s
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Rad #{0}: Välj Underenhet Lager"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Rad # {0}: Ange Ombeställning Kvantitet"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Rad # {0}: Uppdatera konto för uppskjutna intäkter/kostnader i artikel rad eller standard konto i bolag"
@@ -45653,15 +45710,15 @@ msgstr "Rad # {0}: Kvantitet måste vara psitivt tal"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Rad # {0}: Kvantitet ska vara mindre än eller lika med tillgänglig kvantitet att reservera (verklig antal - reserverad antal) {1} för artikel {2} mot parti {3} i lager {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Rad #{0}: Kvalitet Kontroll erfordras för artikel {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Rad #{0}: Kvalitet Kontroll {1} är inte godkänd för artikel: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Rad #{0}: Kvalitet Kontroll {1} avvisades för artikel {2}"
@@ -45669,7 +45726,7 @@ msgstr "Rad #{0}: Kvalitet Kontroll {1} avvisades för artikel {2}"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Rad #{0}: Kvantitet kan inte vara negativ tal. Ange kvantitet eller ta bort artikel {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Rad # {0}: Kvantitet för Artikel {1} kan inte vara noll."
@@ -45685,18 +45742,18 @@ msgstr "Rad #{0}: Kvantitet ska vara högre än 0 för {1} Artikel {2}"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Rad # {0}: Kvantitet att reservera för Artikel {1} ska vara högre än 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Rad #{0}: Pris måste vara samma som {1}: {2} ({3} / {4}) "
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Rad # {0}: Referens Dokument Typ måste vara Inköp Order, Inköp Faktura eller Journal Post"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Rad # {0}: Referens Dokument Typ måste vara Försäljning Order, Försäljning Faktura, Journal Post eller Påmminelse"
@@ -45733,12 +45790,12 @@ msgid "Row #{0}: Selling rate for item {1} is lower than its {2}.\n"
"\t\t\t\t\tSelling {3} should be atleast {4}. Alternatively,\n"
"\t\t\t\t\tyou can disable '{5}' in {6} to bypass\n"
"\t\t\t\t\tthis validation."
-msgstr "Rad #{0}: Försäljningspriset för artikel {1} är lägre än dess {2}.\n"
+msgstr "Rad #{0}: Försäljning pris för artikel {1} är lägre än {2}.\n"
"\t\t\t\t\tFörsäljning {3} ska vara minst {4}. Alternativt,\n"
-"\t\t\t\t\tkan du inaktivera '{5}' i {6} för att kringgå\n"
+"\t\t\t\t\tinaktivera '{5}' i {6} för att ignorera\n"
"\t\t\t\t\tdenna validering."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Rad #{0}: Sekvens ID måste vara {1} eller {2} för Åtgärd {3}."
@@ -45758,19 +45815,19 @@ msgstr "Rad # {0}: Serie Nummer {1} är redan vald."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Rad #{0}: Serie Nummer {1} finns inte i länkad Intern Underleverantör Order. Välj giltiga Serie Nummer."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Rad # {0}: Service Slut Datum kan inte vara före Faktura Registrering Datum"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Rad # {0}: Service Start Datum kan inte vara senare än Slut datum för service"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Rad # {0}: Service start och slutdatum erfordras för uppskjuten Bokföring"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Rad # {0}: Ange Leverantör för artikel {1}"
@@ -45782,19 +45839,19 @@ msgstr "Rad #{0}: Eftersom \"Spåra Halvfärdiga Artiklar\" är aktiverat kan in
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Rad #{0}: Lager måste vara samma som Kund Lager {1} från länkad Intern Underleverantör Order"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Rad #{0}: Lager {1} för artikel {2} får inte vara Kund Lager."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Rad #{0}: Lager {1} för artikel {2} måste vara samma som Lager {3} i Arbetsorder."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Rad #{0}: Från och Till Lager kan inte vara samma för Material Överföring"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Rad #{0}: Från, Till och Lager Dimensioner kan inte vara exakt samma för Material Överföring"
@@ -45810,6 +45867,10 @@ msgstr "Rad # {0}: Status erfordras"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Rad # {0}: Status måste vara {1} för Faktura Rabatt {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr "Rad #{0}: Lager Levererad men ej Fakturerad konto kan inte användas för artiklar som är kopplade till Försäljning Faktura"
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Rad # {0}: Lager kan inte reserveras för artikel {1} mot inaktiverad Parti {2}."
@@ -45826,7 +45887,7 @@ msgstr "Rad # {0}: Lager kan inte reserveras i Grupp Lager {1}."
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Rad # {0}: Lager är redan reserverad för artikel {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Rad # {0}: Lager är reserverad för artikel {1} i lager {2}."
@@ -45839,7 +45900,7 @@ msgstr "Rad # {0}: Lager är inte tillgänglig att reservera för artikel {1} mo
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Rad # {0}: Kvantitet ej tillgänglig för reservation för Artikel {1} på {2} Lager."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Rad #{0}: Lager kvantitet {1} ({2}) för artikel {3} får inte överstiga {4}"
@@ -45851,7 +45912,7 @@ msgstr "Rad #{0}: Lager måste vara samma som Kund Lager {1} från länkad Inter
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Rad # {0}: Parti {1} har förfallit."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Rad # {0}: Lager {1} är inte underordnad till grupp lager {2}"
@@ -45887,7 +45948,7 @@ msgstr "Rad # {0}: Man kan inte använda Lager Dimension '{1}' i Lager Avstämni
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Rad # {0}: Du måste välja Tillgång för Artikel {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Rad # {0}: {1} kan inte vara negativ för Artikel {2}"
@@ -45903,7 +45964,7 @@ msgstr "Rad # {0}: {1} erfordras för att skapa Öppning {2} Fakturor"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Rad # {0}: {1} av {2} ska vara {3}. Uppdatera {1} eller välj ett annat konto."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Rad #{0}: Kvantitet för Artikel {1} kan inte vara noll."
@@ -46004,7 +46065,7 @@ msgstr "Rad # {}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Rad # {}: {} {} finns inte."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Rad # {}: {} {} tillhör inte bolag {}. Välj giltig {}."
@@ -46012,7 +46073,7 @@ msgstr "Rad # {}: {} {} tillhör inte bolag {}. Välj giltig {}."
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Rad # {0}: Lager erfordras. Ange Standard Lager för Artikel {1} och Bolag {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Rad # {0}: Åtgärd erfodras mot Råmaterial post {1}"
@@ -46020,7 +46081,7 @@ msgstr "Rad # {0}: Åtgärd erfodras mot Råmaterial post {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Rad {0} plockad kvantitet är mindre än önskad kvantitet, extra {1} {2} erfordras."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Rad # {0}: Artikel {1} hittades inte i tabellen \"Råmaterial Levererad\" i {2} {3}"
@@ -46052,11 +46113,11 @@ msgstr "Rad # {0}: Tilldelad belopp {1} måste vara lägre än eller lika med ut
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Rad # {0}: Tilldelad belopp {1} måste vara lägre än eller lika med återstående betalning belopp {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Rad {0}: Eftersom {1} är aktiverat kan råmaterial inte läggas till {2} post. Använd {3} post för att förbruka råmaterial."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Rad # {0}: Stycklista hittades inte för Artikel {1}"
@@ -46074,7 +46135,7 @@ msgstr "Rad {0}: Förbrukad Kvantitet {1} {2} måste vara mindre än eller lika
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Rad # {0}: Konvertering Faktor erfordras"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Rad # {0}: Resultat Enhet {1} tillhör inte Bolag {2}"
@@ -46094,7 +46155,7 @@ msgstr "Rad # {0}: Valuta för Stycklista # {1} ska vara lika med vald valuta {2
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Rad # {0}: Debet Post kan inte länkas till {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Rad # {0}: Leverans Lager ({1}) och Kund Lager ({2}) kan inte vara samma"
@@ -46102,7 +46163,7 @@ msgstr "Rad # {0}: Leverans Lager ({1}) och Kund Lager ({2}) kan inte vara samma
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Rad {0}: Leverans Lager kan inte vara samma som Kund Lager för artikel {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Rad # {0}: Förfallo Datum i Betalning Villkor Tabell får inte vara före Registrering Datum"
@@ -46147,16 +46208,16 @@ msgstr "Rad # {0}: För Leverantör {1} erfordras E-post att skicka E-post medde
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Rad # {0}: Från Tid och till Tid erfordras."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Rad # {0}: Från Tid och till Tid av {1} överlappar med {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Rad # {0}: Från Lager erfordras för interna överföringar"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Rad # {0}: Från Tid måste vara före till Tid"
@@ -46172,7 +46233,7 @@ msgstr "Rad # {0}: Ogiltig Referens {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Rad # {0}: Artikel Moms Mall uppdaterad enligt giltighet och tillämpad moms sats"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Rad # {0}: Artikel Pris är uppdaterad enligt Grund Pris eftersom det är intern lager överföring"
@@ -46196,7 +46257,7 @@ msgstr "Rad {0}: Artikel {1} kvantitet kan inte vara högre än tillgänglig kva
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Rad {0}: Åtgärd tid ska vara högre än 0 för åtgärd {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Rad # {0}: Packad Kvantitet måste vara lika med {1} Kvantitet."
@@ -46264,7 +46325,7 @@ msgstr "Rad # {0}: Inköp Faktura {1} har ingen efekt på lager."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Rad # {0}: Kvantitet får inte vara högre än {1} för Artikel {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Rad # {0}: Kvantitet i Lager Enhet kan inte vara noll."
@@ -46276,10 +46337,6 @@ msgstr "Rad # {0}: Kvantitet måste vara högre än 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Rad {0}: Kvantitet kan inte vara negativ."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Rad # {0}: Kvantitet är inte tillgänglig för {4} på lager {1} vid registrering tid för post ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Rad {0}: Försäljning Faktura {1} har redan skapats för {2}"
@@ -46288,11 +46345,11 @@ msgstr "Rad {0}: Försäljning Faktura {1} har redan skapats för {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Rad {0}: Skift kan inte ändras eftersom avskrivning redan är behandlad"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Rad # {0}: Underleverantör Artikel erfordras för Råmaterial {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Rad # {0}: Till Lager erfordras för interna överföringar"
@@ -46304,11 +46361,11 @@ msgstr "Rad {0}: Uppgift {1} tillhör inte Projekt {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Rad {0}: Hela kostnad belopp för konto {1} i {2} är redan tilldelad."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Rad # {0}: Artikel {1}, Kvantitet måste vara positivt tal"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Rad {0}: {3} Konto {1} tillhör inte bolag {2}"
@@ -46316,11 +46373,11 @@ msgstr "Rad {0}: {3} Konto {1} tillhör inte bolag {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Rad # {0}: För att ange periodicitet för {1} måste skillnaden mellan från och till datum vara större än eller lika med {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Rad {0}: Överförd kvantitet får inte vara högre än begärd kvantitet."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Rad # {0}: Enhet Konvertering Faktor erfordras"
@@ -46333,11 +46390,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Rad {0}: Lager {1} är länkat till {2}. Välj lager som tillhör {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Rad {0}: Arbetsplats eller Arbetsplats Typ erfordras för åtgärd {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Rad # {0}: Användare har inte tillämpat regel {1} på Artikel {2}"
@@ -46349,7 +46406,7 @@ msgstr "Rad # {0}: {1} konto är redan tillämpad för Bokföring Dimension {2}"
msgid "Row {0}: {1} must be greater than 0"
msgstr "Rad # {0}: {1} måste vara högre än 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Rad # {0}: {1} {2} kan inte vara samma som {3} (Parti Konto) {4}"
@@ -46395,7 +46452,7 @@ msgstr "Rader Borttagna i {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Rader med samma Konto Poster kommer slås samman i Bokföring Register"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Rader med dubbla förfallodatum hittades i andra rader: {0}"
@@ -46403,7 +46460,7 @@ msgstr "Rader med dubbla förfallodatum hittades i andra rader: {0}"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Rader: {0} har \"Betalning Post\" som referens typ. Detta ska inte anges manuellt."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Rader: {0} i sektion {1} är ogiltiga. Referens namn ska peka på giltig Betalning Post eller Journal Post"
@@ -46611,8 +46668,8 @@ msgstr "Säkerhet Lager"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46634,8 +46691,8 @@ msgstr "Löneutbetalning Sätt"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46649,18 +46706,23 @@ msgstr "Löneutbetalning Sätt"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Försäljning"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr "Försäljning & Inköp"
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Försäljning Konto"
@@ -46684,8 +46746,8 @@ msgstr "Försäljning Bidrag och Motivation"
msgid "Sales Defaults"
msgstr "Försäljning Inställningar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Försäljning Kostnader Konto"
@@ -46854,11 +46916,11 @@ msgstr "Försäljning Faktura skapas inte av {}"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Försäljning Faktura Läge är aktiverad för Kassa. Skapa Försäljning Faktura istället."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Försäljning Faktura {0} är redan godkänd"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Försäljning Faktura {0} måste tas bort innan annullering av denna Försäljning Order"
@@ -47056,25 +47118,25 @@ msgstr "Försäljning Order Statistik"
msgid "Sales Order required for Item {0}"
msgstr "Försäljning Order erfordras för Artikel {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Försäljning Order {0} finns redan mot Kund Inköp Order {1}. För att tillåta flera Försäljning Ordrar, aktivera {2} i {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr "Försäljning Order {0} är inte tillgänglig för produktion"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Försäljning Order {0} ej godkänd"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Försäljning Order {0} är inte giltig"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Försäljning Order {0} är {1}"
@@ -47118,6 +47180,7 @@ msgstr "Försäljning Ordrar att Leverera"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47130,7 +47193,7 @@ msgstr "Försäljning Ordrar att Leverera"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47236,7 +47299,7 @@ msgstr "Försäljning Betalning Översikt"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47329,7 +47392,7 @@ msgstr "Försäljning Register"
msgid "Sales Representative"
msgstr "Försäljningsrepresentant"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Försäljning Retur"
@@ -47353,7 +47416,7 @@ msgstr "Försäljning Översikt"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Försäljning Moms Mall"
@@ -47472,7 +47535,7 @@ msgstr "Samma Artikel"
msgid "Same day"
msgstr "Samma dag"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Samma artikel och lager kombination är redan angivna."
@@ -47504,12 +47567,12 @@ msgstr "Prov Lager"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Prov Kvantitet"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Prov Kvantitet {0} kan inte vara högre än mottagen kvantitet {1}"
@@ -47753,7 +47816,7 @@ msgstr "Skrot Tillgång"
msgid "Scrap Warehouse"
msgstr "Skrot Lager"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Skrotning datum kan inte vara före inköp datum"
@@ -47872,8 +47935,8 @@ msgstr "Sekundär Roll"
msgid "Secretary"
msgstr "Sekreterare"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Säkrade Lån"
@@ -47911,7 +47974,7 @@ msgstr "Välj Alternativ Artikel"
msgid "Select Alternative Items for Sales Order"
msgstr "Välj Alternativ Artikel för Försäljning Order"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Välj Egenskap Värden"
@@ -47953,7 +48016,7 @@ msgstr "Välj Bolag"
msgid "Select Company Address"
msgstr "Välj Bolag Adress"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Välj Korrigerande Åtgärd"
@@ -47989,7 +48052,7 @@ msgstr "Välj Dimension"
msgid "Select Dispatch Address "
msgstr "Välj Avsändning Adress "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Välj Personal"
@@ -48014,7 +48077,7 @@ msgstr "Välj Artiklar"
msgid "Select Items based on Delivery Date"
msgstr "Välj Artiklar baserad på Leverans Datum"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr " Välj Artiklar för Kvalitet Kontroll"
@@ -48052,7 +48115,7 @@ msgstr "Välj Betalning Schema"
msgid "Select Possible Supplier"
msgstr "Välj Möjlig Leverantör"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Välj Kvantitet"
@@ -48127,7 +48190,7 @@ msgstr "Välj Standard Prioritet."
msgid "Select a Payment Method."
msgstr "Välj Betalning Metod."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Välj Leverantör"
@@ -48150,7 +48213,7 @@ msgstr "Välj transaktion att jämföra och stämma av med verifikationer"
msgid "Select all"
msgstr "Välj alla"
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Välj Artikel Grupp"
@@ -48166,9 +48229,9 @@ msgstr "Välj faktura för att ladda översikt data"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Välj artikel från varje uppsättning som ska användas i Försäljning Order."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Välj minst ett värde från var och en av egenskaper."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr "Välj minst en egenskap värde."
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48184,7 +48247,7 @@ msgstr "Välj Bolag Namn."
msgid "Select date"
msgstr "Välj datum"
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Välj Finans Register för artikel {0} på rad {1}"
@@ -48216,7 +48279,7 @@ msgstr "Välj Bank Konto att stämma av."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Välj Standard Arbetsstation där Åtgärd ska utföras. Detta kommer att läggas till Stycklistor och Arbetsordrar."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Välj Artikel som ska produceras."
@@ -48233,7 +48296,7 @@ msgstr "Välj Lager"
msgid "Select the customer or supplier."
msgstr "Välj Kund eller Leverantör."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Välj datum"
@@ -48241,6 +48304,12 @@ msgstr "Välj datum"
msgid "Select the date and your timezone"
msgstr "Välj Datum och Tidzon"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr "Välj grupp först för att filtrera tillämpliga källskatt kategorier nedan."
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Välj Råmaterial (Artiklar) som erfordras för att producera artikel"
@@ -48269,7 +48338,7 @@ msgstr "Välj, för att göra kund sökbar med dessa fält"
msgid "Selected POS Opening Entry should be open."
msgstr "Vald Kassa Öppning Post ska vara öppen."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Vald Prislista ska ha Inköp och Försäljning Fält vald."
@@ -48300,30 +48369,30 @@ msgstr "Vald dokument måste ha godkänd status"
msgid "Self delivery"
msgstr "Egen Leverans"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Försäljning"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Sälj Tillgång"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Försäljning Kvantitet"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Försäljning kvantitet får inte överstiga tillgång kvantitet"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "Försäljning kvantitet får inte överstiga tillgång kvantitet. Tillgång {0} har endast {1} artiklar."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Försäljning kvantitet måste vara högre än noll"
@@ -48576,7 +48645,7 @@ msgstr "Serie / Parti Nummer"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48596,7 +48665,7 @@ msgstr "Serie / Parti Nummer"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48641,7 +48710,7 @@ msgstr "Serienummer Intervall"
msgid "Serial No Reserved"
msgstr "Serienummer Reserverad"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Serienummer Serie Överlappning"
@@ -48781,7 +48850,7 @@ msgstr "Serie Nummer / Partier"
msgid "Serial Nos are created successfully"
msgstr "Serie Nummer skapade"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Serie Nmmer är reserverade iLagerreservationsinlägg, du måste avboka dem innan du fortsätter."
@@ -48851,7 +48920,7 @@ msgstr "Serie Nummer och Parti "
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49265,7 +49334,7 @@ msgstr "Ange Förskott och Tilldela (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Ange Bas Pris Manuellt"
@@ -49284,8 +49353,8 @@ msgstr "Ange Leverans Lager"
msgid "Set Dropship Items Delivered Quantity"
msgstr "Ange leverans kvantitet för Dropship artiklar"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Ange Färdig Artikel Kvantitet"
@@ -49452,11 +49521,11 @@ msgstr "Angiven av Artikel Moms Mall"
msgid "Set closing balance as per bank statement"
msgstr "Ange stängning saldo enligt bankutdrag"
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Ange Standard Lager Konto för Kontinuerlig Lager Hantering"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Ange Standard {0} konto för Ej Lager Artiklar"
@@ -49488,7 +49557,7 @@ msgstr "Ange pris för underenhet artikel baserat på Stycklista"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Ange mål enligt Artikel Grupp för Säljare."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Ange Planerad Start Datum"
@@ -49599,7 +49668,7 @@ msgid "Setting up company"
msgstr "Konfigurerar Bolag"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Inställning av {0} erfordras"
@@ -49617,7 +49686,11 @@ msgstr "Inställningar för Försäljning Modul "
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting_list.js:11
#: erpnext/accounts/doctype/tax_withholding_entry/tax_withholding_entry.json
msgid "Settled"
-msgstr "Avstämd"
+msgstr "Avräknad"
+
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr "Avräknad med Kredit Nota"
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
@@ -49811,7 +49884,7 @@ msgstr "Leverans Typ"
msgid "Shipment details"
msgstr "Leverans Detaljer"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Leveranser"
@@ -49849,7 +49922,7 @@ msgstr "Leverans Adress Namn"
msgid "Shipping Address Template"
msgstr "Leverans Adress Mall"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Leveransadress tillhör inte {0}"
@@ -49992,8 +50065,8 @@ msgstr "Kort beskrivning för Webbplats och andra Publikationer."
msgid "Short-term Investments"
msgstr "Kortfristiga Investeringar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Kortfristiga Avsättningar"
@@ -50327,7 +50400,7 @@ msgstr "Samtidig"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Eftersom det finns aktiva avskrivningsbara tillgångar i denna kategori erfordras följande konton. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Eftersom det finns processförlust på {0} enheter för färdig artikel {1}, ska man minska kvantitet med {0} enheter för färdig artikel {1} i Artikel Tabell."
@@ -50372,7 +50445,7 @@ msgstr "Hoppa över Försäljning Följesedel"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50414,8 +50487,8 @@ msgstr "Utjämning Konstant"
msgid "Soap & Detergent"
msgstr "Tvål & Rengöringsmedel"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Programvara"
@@ -50439,7 +50512,7 @@ msgstr "Säljare"
msgid "Solvency Ratios"
msgstr "Soliditetsgrad"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Vissa erfordrade bolagsuppgifter saknas. Du har inte behörighet att uppdatera dem. Kontakta System Ansvarig."
@@ -50503,7 +50576,7 @@ msgstr "Käll Fältnamn"
msgid "Source Location"
msgstr "Hämt Plats"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr "Från Produktion Post"
@@ -50512,11 +50585,11 @@ msgstr "Från Produktion Post"
msgid "Source Stock Entry (Manufacture)"
msgstr "Från Produktion Post (Produktion)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr "Från Lager Post {0} tillhör arbetsorder {1}, inte {2}. Använd produktion post från samma Arbetsorder."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr "Från Lager Post {0} har inte färdig artikel kvantitet"
@@ -50574,7 +50647,12 @@ msgstr "Från Lager Adress"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Från Lager erfordras för artikel {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr "Från Lager erfordras för artikel {0}"
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Lager {0} måste vara samma som Kund Lager {1} i Intern Underleverantör Order."
@@ -50582,24 +50660,23 @@ msgstr "Lager {0} måste vara samma som Kund Lager {1} i Intern Underleverantör
msgid "Source and Target Location cannot be same"
msgstr "Hämta och Lämna Plats kan inte vara samma"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Från och Till Lager kan inte vara samma för rad {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Från och Till Lager måste vara olika"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Skulder"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Från Lager erfordras för rad {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr "Från eller Till Lager erfordras för artikel {0}"
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr "Från Lager erfordras för lager artikel {0}"
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50640,7 +50717,7 @@ msgstr "Utgifter för konto {0} ({1}) mellan {2} och {3} har redan överskridit
msgid "Spent"
msgstr "Spenderat"
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50648,7 +50725,7 @@ msgid "Split"
msgstr "Dela"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Dela Tillgång"
@@ -50672,7 +50749,7 @@ msgstr "Dela Från"
msgid "Split Issue"
msgstr "Delad Ärende"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Dela Kvantitet"
@@ -50684,6 +50761,11 @@ msgstr "Delad Kvantitet måste vara lägre än Tillgång Kvantitet"
msgid "Split across {} accounts"
msgstr "Dela mellan {} konton"
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr "Dela upp provision mellan flera säljare."
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Delar {0} {1} i {2} rader enligt Betalning Villkor"
@@ -50756,13 +50838,13 @@ msgstr "Standard Inköp"
msgid "Standard Description"
msgstr "Standard Beskrivning"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Standard Klassade Kostnader"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standard Försäljning"
@@ -50783,8 +50865,8 @@ msgstr "Standard Mall"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Standard Villkor som kan läggas till Försäljning och Inköp. Exempel: Erbjudande Giltighet, Betalningsvillkor, Säkerhet,Användning, etc."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Standard Klassade Förbrukning Artiklar i {0}"
@@ -50819,7 +50901,7 @@ msgstr "Start Datum kan inte vara före Aktuell Datum"
msgid "Start Date should be lower than End Date"
msgstr "Startdatum ska vara före Slutdatum"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Starta Jobb"
@@ -50948,7 +51030,7 @@ msgstr "Statusbild"
msgid "Status and Reference"
msgstr "Status och Referens"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Status måste vara Annullerad eller Klar"
@@ -50978,6 +51060,7 @@ msgstr "Lagstadgad information och annan allmän information om Leverantör"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50986,8 +51069,8 @@ msgstr "Lager"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51087,6 +51170,16 @@ msgstr "Lagerstängning Post {0} är i kö för behandling, och kommer att ta li
msgid "Stock Closing Log"
msgstr "Lagerstängning Logg"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr "Lager Levererad men Ej Fakturerad"
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51096,10 +51189,6 @@ msgstr "Lagerstängning Logg"
msgid "Stock Details"
msgstr "Lager Detaljer"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Lager Poster redan skapade för Arbetsorder {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51163,7 +51252,7 @@ msgstr "Lager Post är redan skapad mot denna Plocklista"
msgid "Stock Entry {0} created"
msgstr "Lager Post {0} skapades"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Lager Post {0} skapad"
@@ -51171,8 +51260,8 @@ msgstr "Lager Post {0} skapad"
msgid "Stock Entry {0} is not submitted"
msgstr "Lager Post {0} ej godkänd"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Lager Kostnader"
@@ -51250,8 +51339,8 @@ msgstr "Lager Kvantitet"
msgid "Stock Levels HTML"
msgstr "Lagernivåer HTML"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Lager Skulder"
@@ -51354,8 +51443,8 @@ msgstr "Lager Kvantitet mot Serie Nummer Kvantitet"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51367,7 +51456,7 @@ msgstr "Lager Mottagen men ej Fakturerad Konto"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51379,7 +51468,7 @@ msgstr "Inventering"
msgid "Stock Reconciliation Item"
msgstr "Inventering Post"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Lager Inventeringar"
@@ -51404,9 +51493,9 @@ msgstr "Lager Ombokning Inställningar"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51417,7 +51506,7 @@ msgstr "Lager Ombokning Inställningar"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51442,10 +51531,10 @@ msgstr "Lager Reservation"
msgid "Stock Reservation Entries Cancelled"
msgstr "Lager Reservation Poster Annullerade"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Lager Reservation Poster Skapade"
@@ -51473,7 +51562,7 @@ msgstr "Lager Reservation Post kan inte uppdateras eftersom den är levererad. "
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 "Lager Reservation Post skapad mot Plocklista kan inte uppdateras. Om man behöver göra ändringar rekommenderas att man anullerar befintlig post och skapar ny. "
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Lager Reservation för Lager stämmer inte"
@@ -51513,7 +51602,7 @@ msgstr "Lager Reserverad Kvantitet (Lager Enhet)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51628,7 +51717,7 @@ msgstr "Lager Transaktion Inställningar"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51761,11 +51850,11 @@ msgstr "Lager kan inte reserveras i grupp lager {0}."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Lager kan inte reserveras i grupp lager {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Lager kan inte uppdateras mot följande Försäljning Följesedel {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Lager kan inte uppdateras eftersom fakturan innehåller en direkt leverans artikel. Inaktivera \"Uppdatera lager\" eller ta bort direkt leverans artikel."
@@ -51820,14 +51909,14 @@ msgstr "Sten"
msgid "Stop Reason"
msgstr "Driftstopp Anledning"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Stoppad Arbetsorder kan inte annulleras, Ångra först för att annullera"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Butiker"
@@ -51885,7 +51974,7 @@ msgstr "Underenhet Lager"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52147,7 +52236,7 @@ msgstr "Order Service Artikel"
msgid "Subcontracting Order Supplied Item"
msgstr "Order Levererad Artikel"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Order {0} skapad."
@@ -52236,7 +52325,7 @@ msgstr "Underleverantör Inställningar"
msgid "Subdivision"
msgstr "Underavdelning"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Godkännande Misslyckades"
@@ -52257,7 +52346,7 @@ msgstr "Godkänn Skapade Fakturor"
msgid "Submit Journal Entries"
msgstr "Godkänn Journal Poster"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Godkänn Arbetsorder för vidare behandling."
@@ -52411,7 +52500,7 @@ msgstr "Avstämd"
msgid "Successfully Set Supplier"
msgstr "Leverantör vald"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Lager Enhet ändrad, ändra konvertering faktor för ny enhet."
@@ -52435,7 +52524,7 @@ msgstr "Importerade {0} poster."
msgid "Successfully linked to Customer"
msgstr "Länkad till Kund"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Länkad till Leverantör"
@@ -52595,7 +52684,7 @@ msgstr "Levererad Kvantitet"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52693,6 +52782,7 @@ msgstr "Leverantör Detaljer"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52702,7 +52792,7 @@ msgstr "Leverantör Detaljer"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52717,6 +52807,7 @@ msgstr "Leverantör Detaljer"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52801,7 +52892,7 @@ msgstr "Leverantör Register"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52836,8 +52927,6 @@ msgid "Supplier Number At Customer"
msgstr "Leverantörsnummer hos Kund"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Leverantörsnummer"
@@ -52889,7 +52978,7 @@ msgstr "Leverantör Primär Kontakt"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52918,7 +53007,7 @@ msgstr "Leverentör Offert Jämförelse"
msgid "Supplier Quotation Item"
msgstr "Leverentör Offert Artikel"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Leverantör Offert {0} Skapad"
@@ -53007,7 +53096,7 @@ msgstr "Leverantör Typ"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Leverantör Lager"
@@ -53024,17 +53113,12 @@ msgstr "Leverantör Levererar till Kund"
msgid "Supplier is required for all selected Items"
msgstr "Leverantör erfordras för alla valda artiklar"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Leverantörsnummer tilldelade av kund"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Leverantör av Varor eller Tjänster"
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Leverantör {0} hittas inte i {1}"
@@ -53047,8 +53131,8 @@ msgstr "Leverantör(er)"
msgid "Suppliers"
msgstr "Leverantörer"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Leveranser som omfattas av omvänd betalning provision"
@@ -53139,7 +53223,7 @@ msgstr "Synkronisering Startad"
msgid "Synchronize all accounts every hour"
msgstr "Synkronisera alla Konto varje timme"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "System Används"
@@ -53170,7 +53254,7 @@ msgstr "System kommer att skapa implicit konvertering med hjälp av bunden valut
msgid "System will fetch all the entries if limit value is zero."
msgstr "System hämtar alla poster om gräns värde är noll."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "System kontrollerar inte överfakturering eftersom belopp för Artikel {0} i {1} är noll"
@@ -53191,10 +53275,16 @@ msgstr "Källskatt Beräknad Översikt"
msgid "TDS Deducted"
msgstr "Avdragen Källskatt"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Källskatt"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr "TDS/TCS beräknas enligt sats som anges här på varje betalning från denna kund."
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53342,7 +53432,7 @@ msgstr "Till Lager Adress"
msgid "Target Warehouse Address Link"
msgstr "Till Lager Adress"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Fel vid reservation av Till Lager"
@@ -53350,24 +53440,23 @@ msgstr "Fel vid reservation av Till Lager"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Lager för Färdiga Artiklar måste vara samma som Färdig Artikel Lager {1} i Arbetsorder {2} som är länkad till Intern Underleverantör Order."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "För Lager erfordras före Godkännande"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr "Till Lager erfordras för artikel {0}"
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Till Lager angiven för vissa artiklar men kund är inte intern kund."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Lager {0} måste vara samma som Leverans Lager {1} i Intern Underleverantör Order."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Till Lager erfordras för rad {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53484,8 +53573,8 @@ msgstr "Moms Belopp efter Rabatt Belopp (Bolag Valuta)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Moms Belopp kommer att avrundas per Artikelrad"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Skatt Tillgångar"
@@ -53517,7 +53606,6 @@ msgstr "Skatt Tillgångar"
msgid "Tax Breakup"
msgstr "Moms Fördelning"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53539,7 +53627,6 @@ msgstr "Moms Fördelning"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53555,6 +53642,7 @@ msgstr "Moms Fördelning"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53566,8 +53654,8 @@ msgstr "Moms Kategori"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Moms Kategori har ändrats till 'Totalt' eftersom alla Artiklar är Ej Lager Artiklar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Skattekostnad"
@@ -53641,7 +53729,7 @@ msgstr "Moms %"
msgid "Tax Rates"
msgstr "Moms Satser"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Moms Återbäring till turister enligt momsåterbäring för turister"
@@ -53659,7 +53747,7 @@ msgstr "Momsrad"
msgid "Tax Rule"
msgstr "Moms Regel"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Moms Regel i konflikt med {0}"
@@ -53674,7 +53762,7 @@ msgstr "Moms Inställningar"
msgid "Tax Template"
msgstr "Moms Mall"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Moms Mall erfordras."
@@ -53994,7 +54082,7 @@ msgstr "Moms och Avgifter Avdragna"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Moms och Avgifter Avdragna (Bolag Valuta)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Momsrad #{0}: {1} kan inte vara lägre än {2}"
@@ -54027,8 +54115,8 @@ msgstr "Teknologi"
msgid "Telecommunications"
msgstr "Telekommunikation"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefon Kostnader Konto"
@@ -54079,13 +54167,13 @@ msgstr "Tillfälligt Parkerad"
msgid "Temporary"
msgstr "Tillfällig"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Tillfällig Konto"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Tillfällig Öppning"
@@ -54267,7 +54355,7 @@ msgstr "Regler och Villkor Mall"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54366,7 +54454,7 @@ msgstr "Text som visas i Finans Rapport (t.ex. \"Totala Intäkter\", \"Likvida M
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "'Från Paket Nummer' Fält får inte vara tom eller dess värde mindre än 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Åtkomst till Inköp Offert från Portal är inaktiverad. För att tillåta åtkomst, aktivera i Portal Inställningar."
@@ -54419,7 +54507,8 @@ msgstr "Betalning Villkor på rad {0} är eventuellt dubblett."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Plocklista med Lager Reservation kan inte uppdateras. Om ändringar behöver göras rekommenderas annullering av befintlig Lager Reservation innan uppdatering av Plocklista."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Process Förlust Kvantitet är återställd enligt Jobbkort Process Förlust Kvantitet"
@@ -54435,7 +54524,7 @@ msgstr "Serie Nummer på rad #{0}: {1} är inte tillgänglig i lager {2}."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Serienummer {0} är reserverad för {1} {2} och får inte användas för någon annan transaktion."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Serie och Parti Paket {0} är inte giltigt för denna transaktion. \"Typ av Transaktion\" ska vara \"Extern\" istället för \"Intern\" i Serie och Parti Paket {0}"
@@ -54471,7 +54560,7 @@ msgstr "Bankkonto är inaktiverad. Aktivera det"
msgid "The bank account is not a company account. Please select a company account"
msgstr "Bank konto är inte bolag konto. Välj bolag konto"
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "Parti {0} är redan reserverad i {1} {2}. Därför kan vi inte gå vidare med {3} {4}, som skapas mot {5} {6}."
@@ -54479,7 +54568,11 @@ msgstr "Parti {0} är redan reserverad i {1} {2}. Därför kan vi inte gå vidar
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr "Bolag {0} är inte registrerad i Sydafrika. Momsrevision rapport är endast tillgänglig för bolag i Sydafrika."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr "Bolag {0} finns inte i Förenade Arabemiraten. UAE VAT 201 rapport är endast tillgänglig för bolag i Förenade Arabemiraten."
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "Färdig kvantitet {0} för åtgärd {1} kan inte vara högre än färdig kvantitet {2} för tidigare åtgärd {3}."
@@ -54499,7 +54592,7 @@ msgstr "Datum format som upptäcktes i utdrag fil. Detta används för att analy
msgid "The date of the transaction"
msgstr "Transaktion Datum"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Standard Stycklista för artikel kommer att hämtas av system. Man kan också ändra Stycklista."
@@ -54532,7 +54625,7 @@ msgstr "Från Aktieägare fält kan inte vara tom"
msgid "The field To Shareholder cannot be blank"
msgstr "Till Aktieägare fält kan inte vara tom"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Fält {0} i rad {1} är inte angiven"
@@ -54573,11 +54666,11 @@ msgstr "Följande tillgångar kunde inte bokföra avskrivning poster automatiskt
msgid "The following batches are expired, please restock them: {0}"
msgstr "Följande partier är utgångna, fyll på dem: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Följande avbrutna återpublicering poster finns för {0} : {1} Radera dessa poster innan du fortsätter."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Följande raderade egenskaper finns i varianter men inte i mall. Antingen ta bort varianter eller behålla egenskaper i mall."
@@ -54599,7 +54692,7 @@ msgstr "Följande betalning schema(n) finns redan:\n"
msgid "The following rows are duplicates:"
msgstr "Följande rader är dubbletter:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Följande {0} skapades: {1}"
@@ -54626,7 +54719,7 @@ msgstr "Faktura är inte fullt tilldelad eftersom det finns skillnad på {0}."
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Artikel {item} är inte angiven som {type_of} artikel. Du kan aktivera det som {type_of} artikel från dess Artikel Inställningar."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Artiklar {0} och {1} finns i följande {2}:"
@@ -54684,7 +54777,7 @@ msgstr "Åtgärd {0} kan inte vara underåtgärd"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Original Faktura ska konsolideras före eller tillsammans med retur faktura."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Utestående belopp {0} i {1} är mindre än {2}. Uppdaterar utestående belopp till denna faktura."
@@ -54696,6 +54789,12 @@ msgstr "Överordnad Konto {0} finns inte i uppladdad mall"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Betalning Typ i plan {0} skiljer sig från Betalning Typ i Betalning Förslag"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr "Den procentandel med vilken du får beställa mer på Inköp Order än kvantitet som begärts på ursprunglig Material Begäran. Om Material Begäran till exempel har 100 enheter och tillägget är 10 % kan order skapas för upp till 110 enheter"
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54737,7 +54836,7 @@ msgstr "Lager Reservation kommer att släppas när artiklar uppdaterats. Fortsä
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Lager Reservation kommer att släppas. Fortsätt?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Konto Klass {0} måste vara grupp"
@@ -54753,7 +54852,7 @@ msgstr "Vald Kassa Växel Konto {} tillhör inte Bolag {}."
msgid "The selected item cannot have Batch"
msgstr "Vald Artikel kan inte ha Parti"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Försäljning kvantitet är lägre än total tillgång kvantitet. Återstående kvantitet kommer att delas upp i ny tillgång. Denna åtgärd kan inte ångras. Vill du fortsätta? "
@@ -54786,7 +54885,7 @@ msgstr "Aktier finns inte med {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Lager för artikel {0} i {1} lager var negativt {2}. Skapa positiv post {3} före {4} och {5} för att bokföra rätt grund pris. För mer information, läs dokumentation ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Lager är reserverad för följande Artiklar och Lager, ta bort reservation till {0} Lager Inventering : {1}"
@@ -54808,11 +54907,11 @@ msgstr "System kommer att försöka automatiskt stämma av part till bank transa
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "System kommer att skapa Försäljning Faktura eller Kassa Faktura från Kassa baserat på denna inställning. För transaktioner med stora volymer rekommenderas att Kassa Faktura används."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Uppgift är i kö som bakgrund jobb. Om det finns problem med behandling i bakgrund kommer system att lägga till kommentar om fel i denna Lager Inventering och återgå till Utkast status."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Uppgift är i kö som ett bakgrund jobb. Om det finns några problem med bearbetning i bakgrund kommer system att lägga till kommentar om fel på denna Lager Inventering och återgå till Godkänd status"
@@ -54860,15 +54959,15 @@ msgstr "Värde för {0} skiljer sig mellan Artikel {1} och {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Värde {0} är redan tilldelad befintlig Artikel {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Lager där färdiga artiklar lagras innan de levereras."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "Lager där råmaterial lagras. Varje erfodrad artikel kan ha separat från lager. Grupp lager kan också väljas som från lager. Vid godkännade av arbetsorder kommer råmaterial att reserveras i dessa lager för produktion."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Lager där artiklar kommer att överföras när produktion påbörjas. Grupp Lager kan också väljas som Pågående Arbete lager."
@@ -54876,19 +54975,19 @@ msgstr "Lager där artiklar kommer att överföras när produktion påbörjas. G
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr "Uttag eller insättning belopp - erfordras endast om det inte finns belopp kolumn."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) måste vara lika med {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} innehåller Enhet Pris Artiklar."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Prefix {0} '{1}' finns redan. Ändra serienummer, annars blir det dubblett post."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} är skapade"
@@ -54896,7 +54995,7 @@ msgstr "{0} {1} är skapade"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} stämmer inte med {0} {2} på {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} används för att beräkna grund kostnad för färdig artikel {2}."
@@ -54912,7 +55011,7 @@ msgstr "Det finns aktivt service eller reparationer mot tillgång. Du måste slu
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Det finns inkonsekvenser mellan pris, antal aktier och beräknad belopp"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Det finns bokföring register poster mot detta konto. Om du ändrar {0} till ej {1} i system kommer det att orsaka felaktig utdata i \"Konto {2}\" rapport"
@@ -54941,7 +55040,7 @@ msgstr "Det finns inga lediga tider för detta datum"
msgid "There are no transactions in the system for the selected bank account and dates that match the filters."
msgstr "Det finns inga transaktioner i system för vald bankkonto och datum som stämmer med filter."
-#: erpnext/stock/doctype/item/item.js:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Det finns två alternativ för att upprätthålla värderingen av aktier. FIFO (först in - först ut) och MA medelvärde. För att förstå detta ämne i detalj, besök Artikelvärdering, FIFO och MA. "
@@ -54981,7 +55080,7 @@ msgstr "Det finns ingen Parti mot {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr "Det finns en ej avstämd transaktion före {0}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Det måste finnas minst en färdig artikel i denna Lager Post"
@@ -55037,11 +55136,11 @@ msgstr "Artikel är variant av {0} (Mall)."
msgid "This Month's Summary"
msgstr "Månads Översikt"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Denna Inköp Order har lagts ut helt på underleverantörsleverantör."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "Denna Försäljning Order har lagts ut helt på underleverantörsleverantör."
@@ -55075,7 +55174,7 @@ msgstr "Detta kan innehålla \"CR\"/\"DR\" värden eller positiva/negativa värd
msgid "This covers all scorecards tied to this Setup"
msgstr "Detta täcker alla resultatkort kopplade till denna inställning"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Detta dokument är över gräns med {0} {1} för post {4}. Skapa annan {3} mot samma {2}?"
@@ -55178,11 +55277,11 @@ msgstr "Detta anses vara farligt ur bokföring synpunkt."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Detta görs för att hantera bokföring i fall där Inköp Följesedel skapas efter Inköp Faktura"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Detta är aktiverat som standard. Planeras material för underenheter för artikel som produceras, lämna detta aktiverat. Planeras och produceras underenheterna separat kan den inaktiveras."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Detta är för råmaterial artiklar som kommer att användas för att skapa färdiga artiklar. Om artikel är tillägg service som \"tvätt\" som kommer att användas i stycklista, låt den vara inaktiverad"
@@ -55251,7 +55350,7 @@ msgstr "Detta schema skapades när Tillgång {0} förbrukades genom Tillgång Ka
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Detta schema skapades när Tillgång {0} reparerades genom Tillgång Reparation {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Detta schema skapades när tillgång {0} återställdes på grund av att försäljning faktura {1} annullerades."
@@ -55259,15 +55358,15 @@ msgstr "Detta schema skapades när tillgång {0} återställdes på grund av att
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Detta schema skapades när Tillgång {0} återställdes vid annullering av Tillgång Kapitalisering {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Detta schema skapades när Tillgång {0} återställdes."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Detta schema skapades när Tillgång {0} returnerades via Försäljning Faktura {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Detta schema skapades när Tillgång {0} skrotades."
@@ -55275,7 +55374,7 @@ msgstr "Detta schema skapades när Tillgång {0} skrotades."
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Detta schema skapades när tillgång {0} var {1} till ny tillgång {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Detta schema skapades när tillgång {0} var {1} genom Försäljning Faktura {2}."
@@ -55344,7 +55443,7 @@ msgstr "Detta kommer bara föreslå att skapa en ny post och kommer inte att ska
msgid "This will restrict user access to other employee records"
msgstr "Detta kommer att begränsa användar åtkomst till annan Personal Register"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Denna {} kommer att behandlas som material överföring."
@@ -55455,7 +55554,7 @@ msgstr "Tid i minuter"
msgid "Time in mins."
msgstr "Tid i minuter"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Tidloggar erfordras för {0} {1}"
@@ -55564,7 +55663,7 @@ msgstr "Att Fakturera"
msgid "To Currency"
msgstr "Till Valuta"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Till Datum kan inte vara tidiggare än Start Datum"
@@ -55791,11 +55890,15 @@ msgstr "Att lägga till Åtgärder kryssa i rutan 'Med Åtgärder'."
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Att lägga till Underleverantör Artikel råmaterial om Inkludera Utvidgade Artiklar är inaktiverad."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Att tillåta överfakturering uppdatera 'Över Fakturering Tillåtelse' i Konto Inställningar eller Artikel."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr "För att tillåta utöver order kvantitet, uppdatera \"Över Order Tillåtelse\" i Inköp Inställningar."
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Att tillåta överleverans/övermottagning, uppdatera 'Över Leverans/Mottagning Tillåtelse' i Lager Inställningar eller Artikel."
@@ -55838,11 +55941,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "För att inkludera delmontering kostnader och sekundära artiklar i Färdiga Artiklar på arbetsorder utan att använda jobbkort, när alternativ \"Använd Fler Nivå Stycklista\" är aktiverat."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Att inkludera moms på rad {0} i artikel pris, moms i rader {1} måste också inkluderas"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Att slå samman, måste följande egenskaper vara samma för båda artiklar"
@@ -55850,7 +55953,7 @@ msgstr "Att slå samman, måste följande egenskaper vara samma för båda artik
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "För att inte tillämpa prissättningsregel i viss transaktion måste alla tillämpliga prissättningsregler inaktiveras."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Att åsidosätta detta, aktivera {0} i bolag {1}"
@@ -55875,7 +55978,7 @@ msgstr "Att godkänna faktura utan inköp följesedel ange {0} som {1} i {2}"
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Att använda annan finans register, inaktivera \"Inkludera Standard Finans Register Tillgångar\""
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56025,7 +56128,7 @@ msgstr "Totala Tilldelningar"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56132,12 +56235,12 @@ msgstr "Totalt Provision"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Totalt Färdig Kvantitet"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Total Färdig Kvantitet krävs för Jobbkort {0}, starta och slutför jobbkort innan godkännande"
@@ -56439,7 +56542,7 @@ msgstr "Totalt Utestående Belopp"
msgid "Total Paid Amount"
msgstr "Totalt Betald Belopp"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Totalt Betalning Belopp i Betalning Plan måste vara lika med Totalt Summa / Avrundad Totalt"
@@ -56451,7 +56554,7 @@ msgstr "Totalt Betalning Begäran kan inte överstiga {0} belopp"
msgid "Total Payments"
msgstr "Totala Betalningar"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Plockad Kvantitet {0} är mer än order kvantitet {1}. Du kan ange överplock tillåtelse i Lager Inställningar."
@@ -56734,13 +56837,13 @@ msgstr "Total Arbetsplats Tid (I Timmar)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Totalt tilldelad procentsats för Försäljning Team ska vara 100%"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Totalt bidrag procentsats ska vara lika med 100%"
#: erpnext/accounts/doctype/budget/budget.py:361
msgid "Total distributed amount {0} must be equal to Budget Amount {1}"
-msgstr "Totalt fördelat belopp {0} måste vara lika med budget belopp {1}"
+msgstr "Totalt fördelad belopp {0} måste vara lika med budget belopp {1}"
#: erpnext/accounts/doctype/budget/budget.py:368
msgid "Total distribution percent must equal 100 (currently {0})"
@@ -56909,7 +57012,7 @@ msgstr "Transaktion Datum"
msgid "Transaction Dates"
msgstr "Transaktion Datum"
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Transaktion Borttagning Dokument {0} har utlösts för {1}"
@@ -56933,11 +57036,11 @@ msgstr "Transaktion Borttagning Post Artikel"
msgid "Transaction Deletion Record To Delete"
msgstr "Transaktion Borttagning Post att ta bort"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Transaktion Borttagning Post {0} körs redan. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Transaktion Borttagning Poste {0} tar för närvarande bort {1}. Det går inte att spara dokument förrän borttagning är klar."
@@ -57042,7 +57145,8 @@ msgstr "Transaktion för vilken moms är avdragen"
msgid "Transaction from which tax is withheld"
msgstr "Transaktion från vilken moms dras av"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Transaktion tillåts inte mot stoppad Arbetsorder {0}"
@@ -57089,11 +57193,16 @@ msgstr "Transaktioner Årshistorik"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Transaktioner mot bolag finns redan! Kontoplan kan endast importeras för bolag utan transaktioner."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr "Transaktioner blockeras eller varnas när utestående saldo överstiger detta belopp."
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr "Transaktioner som ska importeras till system"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Transaktioner med Försäljning Faktura för Kassa är inaktiverade."
@@ -57274,8 +57383,8 @@ msgstr "Leverantör Info"
msgid "Transporter Name"
msgstr "Leverantör Namn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Rese Kostnader Konto"
@@ -57539,6 +57648,7 @@ msgstr "UAE VAT Inställningar"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57554,7 +57664,7 @@ msgstr "UAE VAT Inställningar"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57615,7 +57725,7 @@ msgstr "Enhet Konvertering Detaljer"
msgid "UOM Conversion Factor"
msgstr "Enhet Konvertering Faktor"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Enhet Konvertering Faktor ({0} -> {1}) hittades inte för Artikel: {2}"
@@ -57628,7 +57738,7 @@ msgstr "Enhet Konvertering Faktor erfordras på rad {0}"
msgid "UOM Name"
msgstr "Enhet Namn"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Enhet Konvertering Faktor erfordras för Enhet: {0} för Artikel: {1}"
@@ -57700,13 +57810,13 @@ msgstr "Kunde inte hitta valuta växelkurs för {0} till {1} för nyckel datum {
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Kunde inte att hitta resultatkort från {0}. Du måste ha stående resultatkort som täcker 0 till 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Kunde inte att hitta tider under de kommande {0} dagarna för åtgärd {1}. Öka \"Kapacitet Planering för (Dagar)\" i {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Kan inte hitta variabel:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr "Kunde inte hitta variabel: {0}"
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57787,7 +57897,7 @@ msgstr "Ångra Transaktion Avstämning"
msgid "Undo {}?"
msgstr "Ångra {}?"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Oväntat Namngivning Serie Mönster"
@@ -57806,7 +57916,7 @@ msgstr "Enhet"
msgid "Unit Of Measure"
msgstr "Enhet"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Enhet Pris"
@@ -57823,7 +57933,7 @@ msgstr "Enhet"
msgid "Unit of Measure (UOM)"
msgstr "Enhet"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Enhet {0} är angiven mer än en gång i Konvertering Faktor Tabell"
@@ -57968,7 +58078,7 @@ msgstr "Ej Avstämda Poster"
msgid "Unreconciled Transactions"
msgstr "Ej Avstämda Transaktioner"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -58008,12 +58118,12 @@ msgstr "Olöst"
msgid "Unscheduled"
msgstr "Ej Schemalagd"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Osäkrade Lån"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Ångra Avstämd Betalning Begäran"
@@ -58189,7 +58299,7 @@ msgstr "Uppdatera Artiklar"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Uppdatera Utestående belopp för detta dokument"
@@ -58268,11 +58378,11 @@ msgstr "Uppdaterad {0} Finans Rapport Rad(er) med ny kategori namn"
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Uppdaterar Kostnad och Fakturering fält för Projekt..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Uppdaterar Varianter..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Uppdaterar Arbetsorder status"
@@ -58474,7 +58584,7 @@ msgstr "Använd Förslag"
msgid "Use Transaction Date Exchange Rate"
msgstr "Använd Transaktion Datum Växelkurs"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Använd namn som skiljer sig från tidigare projekt namn"
@@ -58516,7 +58626,7 @@ msgstr "Används för att skapa Öppning Lager Post med Grund Pris när artikel
msgid "Used with Financial Report Template"
msgstr "Används med Finans Rapport Mall"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Användare Forum"
@@ -58580,6 +58690,11 @@ msgstr "Användare kan kryssa i rut Om de vill justera inköp pris (anges med in
msgid "Users can make manufacture entry against Job Cards"
msgstr "Användare kan skapa produktion post mot Jobbkort"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr "Användare som listas här kan logga in på kundportal för att se ordrar, fakturor och leveranser."
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58602,8 +58717,8 @@ msgstr "Användare med den här rollen kommer att meddelas om avskrivning av til
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Användning av negativ lager inaktiverar FIFO/MA värdering sätt när lager värde är negativ."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Pension Kostnader"
@@ -58613,7 +58728,7 @@ msgstr "Pension Kostnader"
msgid "VAT Accounts"
msgstr "Moms Konton"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Moms Belopp (AED)"
@@ -58623,12 +58738,12 @@ msgid "VAT Audit Report"
msgstr "Moms Revision Rapport"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "Moms på Utgifter och Alla Andra intäkter"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "Moms på Försäljning och Alla Andra utgifter"
@@ -58822,7 +58937,6 @@ msgstr "Värdering Sätt"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58838,14 +58952,12 @@ msgstr "Värdering Sätt"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Grund Pris"
@@ -58853,19 +58965,19 @@ msgstr "Grund Pris"
msgid "Valuation Rate (In / Out)"
msgstr "Grund Pris (In/Ut)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Grund Pris Saknas"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Grund Pris för Artikel {0} erfordras att skapa bokföring poster för {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Grund Pris erfordras om Öppning Lager anges"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Grund Pris erfordras för Artikel {0} på rad {1}"
@@ -58875,7 +58987,7 @@ msgstr "Grund Pris erfordras för Artikel {0} på rad {1}"
msgid "Valuation and Total"
msgstr "Grund Pris och Totalt"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Grund Pris för Kund Försedda Artiklar angavs till noll."
@@ -58889,7 +59001,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Grund Pris för artikel enligt Försäljning Faktura (endast för Interna Överföringar)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Värdering typ avgifter kan inte väljas som Inklusiva"
@@ -58901,7 +59013,7 @@ msgstr "Värdering Typ Avgifter kan inte anges som Inklusiva"
msgid "Value (G - D)"
msgstr "Värde (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Värde ({0})"
@@ -59020,12 +59132,12 @@ msgid "Variance ({})"
msgstr "Avvikelse ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Variant"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Variant Egenskap Fel"
@@ -59044,7 +59156,7 @@ msgstr "Variant Stycklista"
msgid "Variant Based On"
msgstr "Variant Baserad På"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Variant Baserad På kan inte ändras"
@@ -59062,7 +59174,7 @@ msgstr "Variant Fält"
msgid "Variant Item"
msgstr "Variant Artikel"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Variant Artiklar"
@@ -59073,7 +59185,7 @@ msgstr "Variant Artiklar"
msgid "Variant Of"
msgstr "Variant av"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Variant skapande i kö."
@@ -59367,7 +59479,7 @@ msgstr "Verifikat"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Verifikat #"
@@ -59439,7 +59551,7 @@ msgstr "Verifikat Namn"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59513,7 +59625,7 @@ msgstr "Verifikat Undertyp"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59540,7 +59652,7 @@ msgstr "Verifikat Undertyp"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59720,8 +59832,8 @@ msgstr "Lager erfordras för att hämta Färdiga Artiklar att producera"
msgid "Warehouse not found against the account {0}"
msgstr "Lager hittades inte mot konto {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Lager erfodras för Lager Artikel {0}"
@@ -59746,7 +59858,7 @@ msgstr "Lager {0} tillhör inte Bolag {1}"
msgid "Warehouse {0} does not exist"
msgstr "Lagret {0} finns inte"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Lager {0} är inte tillåtet för Försäljning Order {1}, det ska vara {2}"
@@ -59883,11 +59995,11 @@ msgstr "Varning: Annan {0} # {1} finns mot lager post {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Varning: Inköp Förslag Kvantitet är mindre än Minimum Order Kvantitet"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Varning: Kvantitet överskrider maximal producerbar kvantitet baserat på kvantitet råmaterial som mottagits genom Intern Underleverantör Order {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Varning: Försäljning Order {0} finns redan mot Kund Inköp Order {1}"
@@ -59977,7 +60089,7 @@ msgstr "Våglängd i Kilometer"
msgid "Wavelength In Megametres"
msgstr "Våglängd i Megameter"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Vi kan se att {0} görs mot {1}. Om du vill att {1} s utestående ska uppdateras, inaktivera '{2}'."
@@ -60046,7 +60158,7 @@ msgstr "Webbplats:"
msgid "Week of the year"
msgstr "Årets Vecka"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Vecka {0} {1}"
@@ -60176,7 +60288,7 @@ msgstr "När detta är valt tillämpas endast transaktion tröskel för individu
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 "När detta alternativ är aktiverad använder system dokument registrering datum och tid för att namnge dokument istället för dokuments skapande datum och tid."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "När artikel skapas, om värde är angiven för detta fält, skapas artikel pris automatiskt i bakgrunden."
@@ -60186,7 +60298,7 @@ msgstr "När artikel skapas, om värde är angiven för detta fält, skapas arti
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 "När funktion är aktiverad läggs ett filter för stopp datum till i följesedlar som skapas från försäljning order. Detta gör att du endast kan bearbeta order med transaktion datum upp till angiven stopp datumet, vilket är användbart för behandling i slutet av period och parti."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "När det finns flera färdiga artiklar ({0}) i en ompackning lager transaktion måste bas pris för alla färdiga artiklar anges manuellt. För att ange pris manuellt, aktivera \"Aktivera bas pris manuellt\" på respektive rad för färdiga artiklar."
@@ -60196,11 +60308,11 @@ msgstr "När det finns flera färdiga artiklar ({0}) i en ompackning lager trans
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr "När något betalas i förskott (som årsförsäkring) sparas här och bokförs gradvis över tid"
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "När konto skapades för Dotter Bolag {0} hittades Överordnad Konto {1} som Bokföring Register Konto."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "När konto skapades för Dotter Bolag {0} hittades inte Överordnad Konto {1}. Skapa Överordnad Konto i motsvarande Kontoplan"
@@ -60345,7 +60457,7 @@ msgstr "Arbete Klar"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Pågående"
@@ -60382,7 +60494,7 @@ msgstr "Pågående"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60416,7 +60528,7 @@ msgstr "Arbetsorder Förbrukad Material"
msgid "Work Order Item"
msgstr "Arbetsorder Artikel"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr "Avvikande Arbetsorder"
@@ -60457,19 +60569,23 @@ msgstr "Arbetsorder Översikt"
msgid "Work Order Summary Report"
msgstr "Arbetsorder Översikt Rapport"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Arbetsorder kan inte skapas för följande anledning: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Arbetsorder kan inte skapas mot Artikel Mall"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Arbetsorder har varit {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr "Arbetsorder erfordras"
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Arbetsorder inte skapad"
@@ -60478,16 +60594,16 @@ msgstr "Arbetsorder inte skapad"
msgid "Work Order {0} created"
msgstr "Arbetsorder {0} skapad"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr "Arbetsorder {0} har inte producerad kvantitet"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Arbetsorder {0}: Jobbkort hittades inte för Åtgärd {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr "Arbetsorder {0} måste godkännas"
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Arbetsordrar"
@@ -60512,7 +60628,7 @@ msgstr "Pågående Arbete"
msgid "Work-in-Progress Warehouse"
msgstr "Pågående Arbete Lager"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Pågående Arbete Lager erfordras före Godkännande"
@@ -60560,7 +60676,7 @@ msgstr "Arbets Timmar"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60651,14 +60767,14 @@ msgstr "Arbetsplatser"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Avskrivningar"
@@ -60763,7 +60879,7 @@ msgstr "Avskriven Värde"
msgid "Wrong Company"
msgstr "Fel Bolag"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Fel Lösenord"
@@ -60819,11 +60935,11 @@ msgstr "År Start Datum eller Slut Datum överlappar med {0}. För att undvika d
msgid "You are importing data for the code list:"
msgstr "Du importerar data för Kod Lista:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Du är inte behörig att uppdatera enligt villkoren i {} Arbetsflöde."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Du är inte behörig att lägga till eller uppdatera poster före {0}"
@@ -60831,7 +60947,7 @@ msgstr "Du är inte behörig att lägga till eller uppdatera poster före {0}"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Du är inte behörig att skapa/redigera lager transaktioner för artikel {0} under lager {1} före denna tidpunkt."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Du är inte behörig att ange låst värde"
@@ -60859,7 +60975,7 @@ msgstr "Du kan också ange standard Kapital Arbete Pågår konto i Bolag {}"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr "Du kan också använda variabler i namngivning serie namn genom att placera dem mellan (.) punkter"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Du kan ändra Överordnad Konto till Balans Rapport Konto eller välja annat konto."
@@ -60900,11 +61016,11 @@ msgstr "Du kan ange den som maskin namn eller åtgärd typ. Till exempel sy mask
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr "Du kan skapa regel för att dela upp transaktion över flera konto."
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Du kan använda {0} för att stämma av mot {1} senare."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Du kan inte göra några ändringar i Jobbkort eftersom Arbetsorder är stängd."
@@ -60928,7 +61044,7 @@ msgstr "Du kan inte skapa {0} inom stängd bokföring period {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Du kan inte skapa eller annullera bokföring poster under stängd bokföring period {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Du kan inte skapa/ändra några bokföring poster fram till detta datum."
@@ -60989,7 +61105,7 @@ msgstr "Du har inte behörighet att importera och godkänna bank transaktioner"
msgid "You do not have permission to import bank transactions"
msgstr "Du har inte behörighet att importera bank transaktioner"
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Du har inte behörighet att {} artikel i {}."
@@ -61001,19 +61117,19 @@ msgstr "Det finns inte tillräckligt med Lojalitet Poäng för att lösa in"
msgid "You don't have enough points to redeem."
msgstr "Du har inte tillräckligt med poäng för att lösa in"
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr "Du har inte behörighet att skapa bolag adress. Kontakta Systemansvarig."
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr "Du har inte behörighet att uppdatera bolag detaljer. Kontakta Systemansvarig."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr "Du har inte behörighet att uppdatera Mottagen Kvantitet Dokument för artikel {0}"
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr "Du har inte behörighet att uppdatera detta dokument. Kontakta Systemansvarig."
@@ -61025,7 +61141,7 @@ msgstr "Du hade {} fel när du skapade öppning fakturor. Kontrollera {} för me
msgid "You have already selected items from {0} {1}"
msgstr "Du har redan valt Artikel från {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Du är inbjuden att medverka i projekt {0}."
@@ -61049,7 +61165,7 @@ msgstr "Du har inte lagt till några bank konto i ditt bolag."
msgid "You have not performed any reconciliations in this session yet."
msgstr "Du har inte utfört några avstämningar i denna sessionen ännu."
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Du måste aktivera automatisk ombeställning i lager inställningar för att behålla ombeställning nivåer."
@@ -61065,7 +61181,7 @@ msgstr "Välj Kund före Artikel."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Annullera Kassa Stängning Post {} för att annullera detta dokument."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Du valde kontogrupp {1} som {2} Konto på rad {0}. Välj ett enskilt konto."
@@ -61112,11 +61228,11 @@ msgstr "Postnummer"
msgid "Zero Balance"
msgstr "Noll Saldo"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Noll Sats"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Noll Kvantitet"
@@ -61138,11 +61254,11 @@ msgstr "Zip Fil"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Viktigt] [System] Automatisk Ombeställning Fel"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "\"Tillåt Negativa Priser för Artiklar\"."
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "efter"
@@ -61183,7 +61299,7 @@ msgid "cannot be greater than 100"
msgstr "Rabatt kan inte vara högre än 100%"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "daterad {0}"
@@ -61332,7 +61448,7 @@ msgstr "payment app är inte installerad. Installera det från {0} eller {1}"
msgid "per hour"
msgstr "Kostnad per Timme"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "utför någon av dem nedan:"
@@ -61365,7 +61481,7 @@ msgstr "mottagen från"
msgid "reconciled"
msgstr "avstämd"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "återlämnad"
@@ -61400,7 +61516,7 @@ msgstr "höger"
msgid "sandbox"
msgstr "Test"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "såld"
@@ -61408,8 +61524,8 @@ msgstr "såld"
msgid "subscription is already cancelled."
msgstr "prenumeration är redan annullerad."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61427,7 +61543,7 @@ msgstr "benämning"
msgid "to"
msgstr "till"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "att ta bort belopp för denna Retur Faktura innan annullering."
@@ -61454,7 +61570,7 @@ msgstr "valda transaktioner"
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "unik t.ex. SPARA20 Används för att få rabatt"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr "uppdaterade levererad kvantitet för artikel {0} till {1}"
@@ -61476,7 +61592,7 @@ msgstr "via Stycklista Uppdatering Verktyg"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "Välj Kapitalarbete Pågår Konto i Konto Tabell"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} {1} är inaktiverad"
@@ -61484,7 +61600,7 @@ msgstr "{0} {1} är inaktiverad"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} {1} inte under Bokföringsår {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) kan inte vara högre än planerad kvantitet ({2}) i arbetsorder {3}"
@@ -61492,7 +61608,7 @@ msgstr "{0} ({1}) kan inte vara högre än planerad kvantitet ({2}) i arbetsorde
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} har godkänt tillgångar. Ta bort Artikel {2} från tabell för att fortsätta."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{0} Konto hittades inte mot Kund {1}."
@@ -61525,11 +61641,11 @@ msgstr "{0} Namngivning Serie"
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Nummer {1} används redan i {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} Operation Kostnad för åtgärd {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Åtgärder: {1}"
@@ -61537,7 +61653,7 @@ msgstr "{0} Åtgärder: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Begäran för {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Behåll Prov är baserad på Parti. välj Har Parti Nummer att behålla prov på Artikel"
@@ -61625,11 +61741,11 @@ msgstr "{0} skapad"
msgid "{0} creation for the following records will be skipped."
msgstr "{0} skapande för följande poster kommer att hoppas över."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} valuta måste vara samma som bolag standard valuta. Välj ett annat konto."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} har för närvarande {1} leverantör resultatkort och inköp order till denna leverantör ska utfärdas med försiktighet!"
@@ -61641,7 +61757,7 @@ msgstr "{0} har för närvarande {1} Leverantör Resultatkort och offert försla
msgid "{0} does not belong to Company {1}"
msgstr "{0} tillhör inte Bolag {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} tillhör inte {1}."
@@ -61650,7 +61766,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} angiven två gånger under Artikel Moms"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} angiven två gånger {1} under Artikel Moms"
@@ -61675,7 +61791,7 @@ msgstr "{0} är godkänd"
msgid "{0} hours"
msgstr "{0} timmar"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} på rad {1}"
@@ -61697,7 +61813,7 @@ msgstr "{0} läggs till flera gånger på rader: {1}"
msgid "{0} is already running for {1}"
msgstr " {0} körs redan för {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} är spärrad så denna transaktion kan inte fortsätta"
@@ -61705,12 +61821,12 @@ msgstr "{0} är spärrad så denna transaktion kan inte fortsätta"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} är i utkast. Godkänn det innan tillgång skapas."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} är erfodrad för Artikel {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} är erfodrad för konto {1}"
@@ -61718,7 +61834,7 @@ msgstr "{0} är erfodrad för konto {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} till {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} till {2}."
@@ -61726,7 +61842,7 @@ msgstr "{0} är erfordrad. Kanske Valutaväxling Post är inte skapad för {1} t
msgid "{0} is not a CSV file."
msgstr "{0} är inte CSV fil."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} är inte bolag bank konto"
@@ -61734,7 +61850,7 @@ msgstr "{0} är inte bolag bank konto"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} är inte grupp. Välj grupp som Överordnad Resultat Enhet"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} är inte lager artikel"
@@ -61774,27 +61890,27 @@ msgstr "{0} är parkerad till {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} är öppen. Stäng Kassa eller avbryt befintlig Kassa Öppning Post för att skapa ny Kassa Öppning Post."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} artiklar demonterade"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} artiklar pågår"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} artiklar förlorade under processen."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} artiklar producerade"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} artiklar returnerade"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} objekt att returnera"
@@ -61802,7 +61918,7 @@ msgstr "{0} objekt att returnera"
msgid "{0} must be negative in return document"
msgstr "{0} måste vara negativ i retur dokument"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} får inte göra transaktioner med {1}. Ändra fbolag eller lägg till bolag i \"Tillåtet att handla med\" i kundregister."
@@ -61818,7 +61934,7 @@ msgstr "{0} parameter är ogiltig"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} betalning poster kan inte filtreras efter {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} kvantitet av artikel {1} tas emot i Lager {2} med kapacitet {3}."
@@ -61831,7 +61947,7 @@ msgstr "{0} till {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr "{0} transaktioner kommer att importeras till system. Granska information nedan och klicka på knapp \"Importera\" för att fortsätta."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} enheter är reserverade för Artikel {1} i Lager {2}, ta bort reservation för {3} Lager Inventering."
@@ -61847,16 +61963,16 @@ msgstr "{0} enheter av artikel {1} är inte tillgänglig i något av lagren. And
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} enheter av {1} erfordras i {2} med lagerdimension: {3} på {4} {5} för {6} för att slutföra transaktion."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} enheter av {1} behövs i {2} den {3} {4} för {5} för att slutföra denna transaktion."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} enheter av {1} behövs i {2} den {3} {4} för att slutföra denna transaktion."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} enheter av {1} behövs i {2} för att slutföra denna transaktion."
@@ -61868,7 +61984,7 @@ msgstr "{0} till {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} giltig serie nummer för Artikel {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varianter skapade."
@@ -61884,7 +62000,7 @@ msgstr "{0} kommer att ges som rabatt."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} kommer att anges som {1} i efterföljande skannade artiklar"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61922,8 +62038,8 @@ msgstr "{0} {1} är redan betalad till fullo."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} är redan delvis betald. Använd knapp \"Hämta Utestående Faktura\" eller \"Hämta Utestående Ordrar\" knapp för att hämta senaste utestående belopp."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} har ändrats. Uppdatera."
@@ -62033,7 +62149,7 @@ msgstr "{0} {1}: Konto {2} är inaktiv"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Bokföring Post för {2} kan endast skapas i valuta: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Resultat Enhet erfordras för Artikel {2}"
@@ -62082,8 +62198,8 @@ msgstr "{0}% of total invoice value will be given as discount."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0}s {1} kan inte vara efter förväntad slut datum för {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, slutför åtgärd {1} före åtgärd {2}."
@@ -62103,11 +62219,11 @@ msgstr "{0}: Skyddad DocType"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: Virtuell DocType (ingen databas tabell)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} tillhör inte bolag: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} finns inte"
@@ -62115,11 +62231,11 @@ msgstr "{0}: {1} finns inte"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} finns inte"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} är grupp konto."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} måste vara mindre än {2}"
@@ -62131,7 +62247,7 @@ msgstr "{count} Tillgångar skapade för {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} är annullerad eller stängd."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "{item_name} Prov Kvantitet ({sample_size}) kan inte vara högre än accepterad kvantitete ({accepted_quantity})"
@@ -62143,7 +62259,7 @@ msgstr "{ref_doctype} {ref_name} är {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} kan inte annulleras eftersom intjänade Lojalitet Poäng har lösts in. Först annullera {} Nummer {}"
diff --git a/erpnext/locale/th.po b/erpnext/locale/th.po
index 59bf240ceae..18267040eff 100644
--- a/erpnext/locale/th.po
+++ b/erpnext/locale/th.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " ส่วนประกอบย่อย"
msgid " Summary"
msgstr " สรุป"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"สินค้าที่ลูกค้าจัดเตรียมให้\" ไม่สามารถเป็นสินค้าที่ซื้อได้เช่นกัน"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"รายการที่ลูกค้าจัดเตรียมไว้\" ไม่สามารถมีอัตราการประเมินค่าได้"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "ไม่สามารถยกเลิกการเลือก \"เป็นสินทรัพย์ถาวร\" ได้ เนื่องจากมีบันทึกสินทรัพย์อยู่ในรายการ"
@@ -268,11 +268,11 @@ msgstr "% ของวัสดุที่จัดส่งตามราย
msgid "% of materials delivered against this Sales Order"
msgstr "% ของวัสดุที่ถูกเรียกเก็บเงินตามใบสั่งขายนี้"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'บัญชี' ในส่วนบัญชีของลูกค้า"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'ยอมให้มีใบสั่งซื้อหลายใบที่อ้างอิงใบสั่งซื้อเดียวกันของลูกค้า'"
@@ -284,7 +284,7 @@ msgstr "'Based On' กับ 'Group By' ไม่ต้องเหมือน
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "จำนวนวันตั้งแต่คำสั่งซื้อครั้งล่าสุด ต้องมากกว่าหรือเท่ากับศูนย์"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "บัญชี {0} เริ่มต้น ในบริษัท {1}"
@@ -302,7 +302,7 @@ msgstr "กรุณากรอก 'ตั้งแต่วันที่'"
msgid "'From Date' must be after 'To Date'"
msgstr "จากวันที่ ต้องอยู่หลัง ถึงวันที่"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "มีหมายเลขซีเรียล ไม่สามารถเป็น ใช่ สำหรับสินค้าที่ไม่ใช่สต็อก"
@@ -314,9 +314,9 @@ msgstr "ต้องการการตรวจสอบก่อนการ
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "ต้องการการตรวจสอบก่อนการซื้อ ถูกปิดใช้งานสำหรับสินค้า {0}, ไม่จำเป็นต้องสร้าง QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "เปิด"
@@ -346,8 +346,8 @@ msgstr "บัญชี '{0}' ถูกใช้โดย {1} แล้ว ใ
msgid "'{0}' has been already added."
msgstr "'{0}' ถูกเพิ่มแล้ว"
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' ควรอยู่ในสกุลเงินของบริษัท {1}"
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 วัน"
msgid "90 Above"
msgstr "90 ขึ้นไป"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "การ
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "วันที่เคลียร์ต้องเป็นวันที่หลังวันที่เช็คสำหรับแถว: {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "รายการ {0} ในแถว(s) {1} ถูกเรียกเก็บเงินมากกว่า {2} "
@@ -820,7 +820,7 @@ msgstr "เอกสารการชำระเงินที่ต้
msgid " {} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "ไม่สามารถเรียกเก็บเงินเกินสำหรับรายการต่อไปนี้:
"
@@ -883,7 +883,7 @@ msgstr "วันที่โพสต์ {0} ไม่สามารถเ
msgid "
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr "รายการราคาไม่ได้ถูกตั้งค่าให้แก้ไขได้ในตั้งค่าการขาย ในกรณีนี้ การตั้งค่า\"อัปเดตราคาตาม\" เป็น\"ราคาตามรายการ\" จะป้องกันการอัปเดตอัตโนมัติของราคาสินค้า
คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "หากต้องการอนุญาตให้มีการเรียกเก็บเงินเกิน โปรดตั้งค่าการอนุญาตในส่วนการตั้งค่าบัญชี
"
@@ -971,11 +971,11 @@ msgstr "ทางลัดของคุณ\n"
msgid "Your Shortcuts "
msgstr "ทางลัดของคุณ "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "ยอดรวมทั้งหมด: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "จำนวนเงินคงเหลือ: {0}"
@@ -1045,7 +1045,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "มีกลุ่มลูกค้าที่ใช้ชื่อเดียวกันนี้อยู่แล้ว กรุณาเปลี่ยนชื่อลูกค้าหรือเปลี่ยนชื่อกลุ่มลูกค้า"
@@ -1209,11 +1209,11 @@ msgstr "ตัวย่อ"
msgid "Abbreviation"
msgstr "ตัวย่อ"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "ตัวย่อนี้ถูกใช้โดยบริษัทอื่นแล้ว"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "ต้องระบุตัวย่อ"
@@ -1221,7 +1221,7 @@ msgstr "ต้องระบุตัวย่อ"
msgid "Abbreviation: {0} must appear only once"
msgstr "ตัวย่อ: {0} ต้องปรากฏเพียงครั้งเดียว"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "ด้านบน"
@@ -1275,7 +1275,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "ปริมาณที่ยอมรับในหน่วยสต็อก"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "ปริมาณที่ยอมรับ"
@@ -1311,7 +1311,7 @@ msgstr "จำเป็นต้องมีคีย์การเข้าถ
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "ตาม CEFACT/ICG/2010/IC013 หรือ CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "ตามรายการวัตถุดิบ (BOM) {0}, สินค้า '{1}' ไม่มีอยู่ในรายการบันทึกสต็อก"
@@ -1429,8 +1429,8 @@ msgstr "หัวบัญชี"
msgid "Account Manager"
msgstr "ผู้จัดการบัญชี"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "ไม่พบบัญชี"
@@ -1448,7 +1448,7 @@ msgstr "ไม่พบบัญชี"
msgid "Account Name"
msgstr "ชื่อบัญชี"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "ไม่พบบัญชี"
@@ -1461,7 +1461,7 @@ msgstr "ไม่พบบัญชี"
msgid "Account Number"
msgstr "เลขที่บัญชี"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "เลขที่บัญชี {0} ถูกใช้แล้วในบัญชี {1}"
@@ -1500,7 +1500,7 @@ msgstr "ประเภทย่อยของบัญชี"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1516,11 +1516,11 @@ msgstr "ประเภทบัญชี"
msgid "Account Value"
msgstr "มูลค่าบัญชี"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "ยอดคงเหลือในบัญชีเป็นเครดิตอยู่แล้ว ไม่อนุญาตให้ตั้งค่า 'ยอดคงเหลือต้องเป็น' เป็น 'เดบิต'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "ยอดคงเหลือในบัญชีเป็นเดบิตอยู่แล้ว ไม่อนุญาตให้ตั้งค่า 'ยอดคงเหลือต้องเป็น' เป็น 'เครดิต'"
@@ -1587,15 +1587,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "บัญชีที่มีโหนดลูกไม่สามารถแปลงเป็นบัญชีแยกประเภทได้"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "บัญชีที่มีโหนดลูกไม่สามารถตั้งเป็นบัญชีแยกประเภทได้"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "บัญชีที่มีธุรกรรมอยู่แล้วไม่สามารถแปลงเป็นกลุ่มได้"
@@ -1603,8 +1603,8 @@ msgstr "บัญชีที่มีธุรกรรมอยู่แล้
msgid "Account with existing transaction can not be deleted"
msgstr "บัญชีที่มีธุรกรรมอยู่แล้วไม่สามารถลบได้"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "บัญชีที่มีธุรกรรมอยู่แล้วไม่สามารถแปลงเป็นบัญชีแยกประเภทได้"
@@ -1612,11 +1612,11 @@ msgstr "บัญชีที่มีธุรกรรมอยู่แล้
msgid "Account {0} added multiple times"
msgstr "บัญชี {0} ถูกเพิ่มหลายครั้ง"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "บัญชี {0} ไม่สามารถเปลี่ยนเป็นกลุ่มได้เนื่องจากได้ตั้งค่าเป็น {1} แล้วสำหรับ {2}"
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "บัญชี {0} ไม่สามารถปิดการใช้งานได้เนื่องจากได้ตั้งค่าเป็น {1} สำหรับ {2}แล้ว"
@@ -1624,11 +1624,11 @@ msgstr "บัญชี {0} ไม่สามารถปิดการใช
msgid "Account {0} does not belong to company {1}"
msgstr "บัญชี {0} ไม่เป็นของบริษัท {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "บัญชี {0} ไม่ได้อยู่ในบริษัท: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "ไม่มีบัญชี {0}"
@@ -1644,15 +1644,15 @@ msgstr "บัญชี {0} ไม่ตรงกับบริษัท {1}
msgid "Account {0} doesn't belong to Company {1}"
msgstr "บัญชี {0} ไม่ได้อยู่ในบริษัท {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "บัญชี {0} มีอยู่ในบริษัทแม่ {1}"
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "บัญชี {0} ถูกเพิ่มในบริษัทลูก {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "บัญชี {0} ถูกปิดใช้งานแล้ว"
@@ -1660,7 +1660,7 @@ msgstr "บัญชี {0} ถูกปิดใช้งานแล้ว"
msgid "Account {0} is frozen"
msgstr "บัญชี {0} ถูกระงับ"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "บัญชี {0} ไม่ถูกต้อง สกุลเงินของบัญชีต้องเป็น {1}"
@@ -1668,19 +1668,19 @@ msgstr "บัญชี {0} ไม่ถูกต้อง สกุลเงิ
msgid "Account {0} should be of type Expense"
msgstr "บัญชี {0} ควรเป็นประเภทค่าใช้จ่าย"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "บัญชี {0}: บัญชีแม่ {1} ไม่สามารถเป็นบัญชีแยกประเภทได้"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "บัญชี {0}: บัญชีแม่ {1} ไม่ได้อยู่ในบริษัท: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "บัญชี {0}: ไม่มีบัญชีแม่ {1}"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "บัญชี {0}: คุณไม่สามารถกำหนดตัวเองเป็นบัญชีแม่ได้"
@@ -1696,7 +1696,7 @@ msgstr "บัญชี: {0} สามารถอัปเดตได้ผ่
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "บัญชี: {0} ไม่ได้รับอนุญาตภายใต้รายการการชำระเงิน"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "บัญชี: {0} ที่มีสกุลเงิน: {1} ไม่สามารถเลือกได้"
@@ -1981,8 +1981,8 @@ msgstr "รายการทางบัญชี"
msgid "Accounting Entry for Asset"
msgstr "รายการทางบัญชีสำหรับสินทรัพย์"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "รายการทางบัญชีสำหรับ LCV ในรายการสต็อก {0}"
@@ -2006,8 +2006,8 @@ msgstr "รายการทางบัญชีสำหรับบริก
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "รายการทางบัญชีสำหรับสต็อก"
@@ -2016,7 +2016,7 @@ msgstr "รายการทางบัญชีสำหรับสต็อ
msgid "Accounting Entry for {0}"
msgstr "รายการทางบัญชีสำหรับ {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "รายการทางบัญชีสำหรับ {0}: {1} สามารถทำได้ในสกุลเงิน: {2} เท่านั้น"
@@ -2071,7 +2071,6 @@ msgstr "รายการบัญชีถูกแช่แข็งจนถ
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2084,14 +2083,13 @@ msgstr "รายการบัญชีถูกแช่แข็งจนถ
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "บัญชี"
@@ -2121,8 +2119,8 @@ msgstr "บัญชีที่หายไปจากรายงาน"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2222,15 +2220,15 @@ msgstr "ตารางบัญชีต้องไม่ว่างเปล
msgid "Accounts to Merge"
msgstr "บัญชีที่จะรวม"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "ค่าใช้จ่ายค้างจ่าย"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "ค่าเสื่อมราคาสะสม"
@@ -2395,7 +2393,7 @@ msgstr "การกระทำที่ดำเนินการ"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2519,7 +2517,7 @@ msgstr "วันที่สิ้นสุดจริง"
msgid "Actual End Date (via Timesheet)"
msgstr "วันที่สิ้นสุดจริง (ผ่านแบบฟอร์มบันทึกเวลา)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "วันที่สิ้นสุดจริงไม่สามารถเป็นก่อนวันที่เริ่มต้นจริงได้"
@@ -2641,7 +2639,7 @@ msgstr "เวลาจริงเป็นชั่วโมง (จากแ
msgid "Actual qty in stock"
msgstr "จำนวนจริงในสต็อก"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "ไม่สามารถรวมภาษีประเภทจริงในอัตราของรายการในแถว {0}"
@@ -2650,7 +2648,7 @@ msgstr "ไม่สามารถรวมภาษีประเภทจร
msgid "Ad-hoc Qty"
msgstr "จำนวนเฉพาะกิจ"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "เพิ่ม / แก้ไขราคา"
@@ -3149,7 +3147,7 @@ msgstr "ข้อมูลเพิ่มเติม"
msgid "Additional Information updated successfully."
msgstr "ข้อมูลเพิ่มเติมได้รับการอัปเดตเรียบร้อยแล้ว"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "การโอนวัสดุเพิ่มเติม"
@@ -3172,7 +3170,7 @@ msgstr "ค่าใช้จ่ายในการดำเนินงาน
msgid "Additional Transferred Qty"
msgstr "จำนวนที่โอนเพิ่มเติม"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3184,11 +3182,6 @@ msgstr "ปริมาณที่โอนเพิ่มเติม {0}\n"
"\t\t\t\t\tของฟิลด์ 'โอนวัตถุดิบเพิ่มเติมไปยัง WIP'\n"
"\t\t\t\t\tในการตั้งค่าการผลิต"
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "ข้อมูลเพิ่มเติมเกี่ยวกับลูกค้า"
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "จำเป็นต้องใช้ชิ้นส่วนเพิ่มเติม {0} {1} ของรายการ {2} ตาม BOM เพื่อดำเนินการธุรกรรมนี้ให้เสร็จสมบูรณ์"
@@ -3334,11 +3327,6 @@ msgstr "ที่อยู่จำเป็นต้องเชื่อมโ
msgid "Address used to determine Tax Category in transactions"
msgstr "ที่อยู่ที่ใช้ในการกำหนดประเภทภาษีในธุรกรรม"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "ปรับจำนวน"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "การปรับปรุงหักล้าง"
@@ -3351,8 +3339,8 @@ msgstr "การปรับปรุงตามอัตราใบแจ้
msgid "Administrative Assistant"
msgstr "ผู้ช่วยฝ่ายธุรการ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "ค่าใช้จ่ายในการบริหาร"
@@ -3420,7 +3408,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "การชำระเงินล่วงหน้า"
@@ -3540,7 +3528,7 @@ msgstr "เทียบกับบัญชี"
msgid "Against Blanket Order"
msgstr "อ้างอิงใบสั่งซื้อแบบครอบคลุม"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "อ้างอิงคำสั่งซื้อของลูกค้า {0}"
@@ -3682,11 +3670,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "อายุ (วัน)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "อายุ ({0})"
@@ -3836,21 +3824,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "ทุกแผนก"
@@ -3930,7 +3918,7 @@ msgstr "ทุกกลุ่มผู้จัดจำหน่าย"
msgid "All Territories"
msgstr "ทุกพื้นที่"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "ทุกคลังสินค้า"
@@ -3944,6 +3932,11 @@ msgstr "การจัดสรรทั้งหมดได้รับกา
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "การสื่อสารทั้งหมดรวมถึงที่สูงกว่านี้จะถูกย้ายไปยังปัญหาใหม่"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "สินค้าทุกรายการถูกร้องขอแล้ว"
@@ -3952,23 +3945,23 @@ msgstr "สินค้าทุกรายการถูกร้องขอ
msgid "All items have already been Invoiced/Returned"
msgstr "สินค้าทุกรายการถูกออกใบแจ้งหนี้/คืนแล้ว"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "ได้รับสินค้าทุกรายการแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "สินค้าทุกรายการสำหรับใบสั่งงานนี้ถูกโอนย้ายแล้ว"
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "สินค้าทุกรายการในเอกสารนี้มีการตรวจสอบคุณภาพที่เชื่อมโยงอยู่แล้ว"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "คำสั่งขายที่เชื่อมโยงทั้งหมดต้องมีการจ้างช่วงงาน"
@@ -3982,11 +3975,11 @@ msgstr "ความคิดเห็นและอีเมลทั้งห
msgid "All the items have been already returned."
msgstr "สินค้าทุกรายการถูกคืนแล้ว"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "สินค้าที่ต้องการทั้งหมด (วัตถุดิบ) จะถูกดึงมาจาก BOM และเติมลงในตารางนี้ ที่นี่คุณยังสามารถเปลี่ยนคลังสินค้าต้นทางสำหรับสินค้าใด ๆ ได้ และในระหว่างการผลิต คุณสามารถติดตามวัตถุดิบที่โอนย้ายจากตารางนี้ได้"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "สินค้าเหล่านี้ถูกออกใบแจ้งหนี้/คืนแล้ว"
@@ -4005,7 +3998,7 @@ msgstr "จัดสรร"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "จัดสรรเงินทดรองจ่ายอัตโนมัติ (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "จัดสรรจำนวนเงินที่ชำระ"
@@ -4015,7 +4008,7 @@ msgstr "จัดสรรจำนวนเงินที่ชำระ"
msgid "Allocate Payment Based On Payment Terms"
msgstr "จัดสรรการชำระเงินตามเงื่อนไขการชำระเงิน"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "จัดสรรคำขอชำระเงิน"
@@ -4045,7 +4038,7 @@ msgstr "จัดสรรแล้ว"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4102,7 +4095,7 @@ msgstr "ปริมาณที่จัดสรร"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4166,7 +4159,7 @@ msgstr "อนุญาตในการคืนสินค้า"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "อนุญาตการโอนย้ายภายในตามราคาตลาด"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "อนุญาตให้เพิ่มสินค้าหลายครั้งในหนึ่งธุรกรรม"
@@ -4289,16 +4282,6 @@ msgstr "อนุญาตการรีเซ็ตข้อตกลงระ
msgid "Allow Sales"
msgstr "อนุญาตการขาย"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "อนุญาตสร้างใบกำกับภาษีขายโดยไม่มีใบส่งของ"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "อนุญาตสร้างใบกำกับภาษีขายโดยไม่มีใบสั่งขาย"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4424,6 +4407,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4500,10 +4493,8 @@ msgstr "สินค้าที่อนุญาต"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "อนุญาตให้ทำธุรกรรมกับ"
@@ -4515,6 +4506,11 @@ msgstr "บทบาทหลักที่อนุญาตคือ 'ลู
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4556,8 +4552,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "นอกจากนี้ คุณไม่สามารถเปลี่ยนกลับไปใช้ FIFO ได้หลังจากตั้งค่าวิธีการประเมินมูลค่าเป็นแบบถัวเฉลี่ยเคลื่อนที่สำหรับสินค้านี้"
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4798,7 +4794,7 @@ msgstr "ถามเสมอ"
msgid "Amount"
msgstr "จำนวนเงิน"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "จำนวนเงิน (AED)"
@@ -4932,12 +4928,12 @@ msgid "Amount to Bill"
msgstr "จำนวนเงินที่จะเรียกเก็บ"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "จำนวน {0} {1} เทียบกับ {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "จำนวน {0} {1} ถูกหักออกจาก {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4982,11 +4978,11 @@ msgstr "จำนวน"
msgid "An Item Group is a way to classify items based on types."
msgstr "กลุ่มสินค้าคือวิธีการจำแนกสินค้าตามประเภท"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "เกิดข้อผิดพลาดขณะลงรายการประเมินค่าสินค้าอีกครั้งผ่าน {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "เกิดข้อผิดพลาดระหว่างกระบวนการอัปเดต"
@@ -5526,7 +5522,7 @@ msgstr "เนื่องจากฟิลด์ {0} ถูกเปิดใ
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "เนื่องจากฟิลด์ {0} ถูกเปิดใช้งาน ค่าของฟิลด์ {1} ควรมากกว่า 1"
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "เนื่องจากมีธุรกรรมที่ส่งแล้วที่เกี่ยวข้องกับรายการ {0} คุณไม่สามารถเปลี่ยนค่าของ {1} ได้"
@@ -5538,7 +5534,7 @@ msgstr "เนื่องจากมีสต็อกที่ถูกจอ
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "เนื่องจากมีรายการชิ้นส่วนย่อยเพียงพอ จึงไม่จำเป็นต้องมีคำสั่งงานสำหรับคลังสินค้า {0}"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "เนื่องจากมีวัตถุดิบเพียงพอ จึงไม่จำเป็นต้องมีคำขอวัสดุสำหรับคลังสินค้า {0}"
@@ -5676,7 +5672,7 @@ msgstr "บัญชีหมวดหมู่สินทรัพย์"
msgid "Asset Category Name"
msgstr "ชื่อหมวดหมู่สินทรัพย์"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "หมวดหมู่สินทรัพย์เป็นฟิลด์บังคับสำหรับรายการสินทรัพย์ถาวร"
@@ -5853,8 +5849,8 @@ msgstr "ปริมาณสินทรัพย์"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5954,7 +5950,7 @@ msgstr "สินทรัพย์ถูกยกเลิก"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "ไม่สามารถยกเลิกสินทรัพย์ได้ เนื่องจากมันอยู่ในสถานะ {0} แล้ว"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "ไม่สามารถทิ้งสินทรัพย์ได้ก่อนการบันทึกค่าเสื่อมราคาครั้งสุดท้าย"
@@ -5986,7 +5982,7 @@ msgstr "สินทรัพย์ไม่สามารถใช้งาน
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "สินทรัพย์ได้รับที่ตำแหน่ง {0} และออกให้พนักงาน {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "สินทรัพย์ถูกกู้คืน"
@@ -5994,20 +5990,20 @@ msgstr "สินทรัพย์ถูกกู้คืน"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "สินทรัพย์ถูกกู้คืนหลังจากการยกเลิกการเพิ่มมูลค่าสินทรัพย์ {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "สินทรัพย์ถูกคืน"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "สินทรัพย์ถูกทิ้ง"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "สินทรัพย์ถูกทิ้งผ่านรายการบัญชี {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "สินทรัพย์ถูกขาย"
@@ -6027,7 +6023,7 @@ msgstr "สินทรัพย์ถูกอัปเดตหลังจา
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "สินทรัพย์ถูกอัปเดตเนื่องจากการซ่อมแซมสินทรัพย์ {0} {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "สินทรัพย์ {0} ไม่สามารถทิ้งได้ เนื่องจากมันอยู่ในสถานะ {1} แล้ว"
@@ -6068,7 +6064,7 @@ msgstr "สินทรัพย์ {0} ไม่ได้ตั้งค่า
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "สินทรัพย์ {0} ยังไม่ได้รับการส่ง กรุณาส่งสินทรัพย์ก่อนดำเนินการต่อ"
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "สินทรัพย์ {0} ต้องถูกส่ง"
@@ -6118,7 +6114,7 @@ msgstr "สินทรัพย์ไม่ได้ถูกสร้างส
msgid "Assets {assets_link} created for {item_code}"
msgstr "สินทรัพย์ {assets_link} ถูกสร้างสำหรับ {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "มอบหมายงานให้พนักงาน"
@@ -6179,7 +6175,7 @@ msgstr "ต้องเลือกโมดูลที่เกี่ยวข
msgid "At least one of the Selling or Buying must be selected"
msgstr "ต้องเลือกการขายหรือการซื้ออย่างน้อยหนึ่งอย่าง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "ต้องมีวัตถุดิบอย่างน้อยหนึ่งรายการในรายการสต็อกสำหรับประเภท {0}"
@@ -6187,21 +6183,17 @@ msgstr "ต้องมีวัตถุดิบอย่างน้อยห
msgid "At least one row is required for a financial report template"
msgstr "จำเป็นต้องมีอย่างน้อยหนึ่งแถวสำหรับแม่แบบรายงานทางการเงิน"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "ต้องระบุคลังสินค้าอย่างน้อยหนึ่งแห่ง"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "ที่แถว #{0}: บัญชีผลต่างต้องไม่ใช่บัญชีประเภทสต็อก กรุณาเปลี่ยนประเภทบัญชีสำหรับบัญชี {1} หรือเลือกบัญชีอื่น"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "ที่แถว #{0}: รหัสลำดับ {1} ต้องไม่น้อยกว่ารหัสลำดับของแถวก่อนหน้า {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "ที่แถว #{0}: คุณได้เลือกบัญชีผลต่าง {1} ซึ่งเป็นบัญชีประเภทต้นทุนขาย กรุณาเลือกบัญชีอื่น"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6283,11 +6275,11 @@ msgstr "ชื่อคุณลักษณะ"
msgid "Attribute Value"
msgstr "ค่าคุณลักษณะ"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "ตารางคุณลักษณะเป็นสิ่งจำเป็น"
@@ -6295,19 +6287,19 @@ msgstr "ตารางคุณลักษณะเป็นสิ่งจำ
msgid "Attribute value: {0} must appear only once"
msgstr "ค่าคุณลักษณะ: {0} ต้องปรากฏเพียงครั้งเดียว"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "คุณลักษณะ {0} ถูกเลือกหลายครั้งในตารางคุณลักษณะ"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "คุณลักษณะ"
@@ -6519,7 +6511,7 @@ msgstr "จับคู่และตั้งค่าคู่ค้าใน
msgid "Auto re-order"
msgstr "สั่งซื้อซ้ำอัตโนมัติ"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "อัปเดตเอกสารที่ทำซ้ำอัตโนมัติแล้ว"
@@ -6631,7 +6623,7 @@ msgstr "วันที่พร้อมใช้งาน"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "ปริมาณที่ใช้ได้"
@@ -6720,10 +6712,6 @@ msgstr "วันที่พร้อมใช้งาน"
msgid "Available for use date is required"
msgstr "ต้องระบุวันที่พร้อมใช้งาน"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "ปริมาณที่มีอยู่คือ {0} คุณต้องการ {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "มีอยู่ {0}"
@@ -6732,8 +6720,8 @@ msgstr "มีอยู่ {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "วันที่พร้อมใช้งานควรอยู่หลังวันที่ซื้อ"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "อายุเฉลี่ย"
@@ -6757,7 +6745,9 @@ msgstr "มูลค่าการสั่งซื้อเฉลี่ย"
msgid "Average Order Values"
msgstr "มูลค่าการสั่งซื้อเฉลี่ย"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "อัตราเฉลี่ย"
@@ -6781,7 +6771,7 @@ msgid "Avg Rate"
msgstr "อัตราเฉลี่ย"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "อัตราเฉลี่ย (สต็อกคงเหลือ)"
@@ -6839,7 +6829,7 @@ msgstr "ปริมาณในช่องเก็บ"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6862,7 +6852,7 @@ msgstr "รายการวัตถุดิบ"
msgid "BOM 1"
msgstr "บิลรายการ 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} และ BOM 2 {1} ไม่ควรเหมือนกัน"
@@ -6934,11 +6924,6 @@ msgstr "รายการการระเบิด BOM"
msgid "BOM ID"
msgstr "รหัส BOM"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "ข้อมูล BOM"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7092,7 +7077,7 @@ msgstr "รายการ BOM บนเว็บไซต์"
msgid "BOM Website Operation"
msgstr "การดำเนินการ BOM บนเว็บไซต์"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "ปริมาณ BOM และสินค้าสำเร็จรูปเป็นข้อมูลที่จำเป็นสำหรับการถอดประกอบ"
@@ -7160,7 +7145,7 @@ msgstr "รายการสต็อกย้อนหลัง"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "เบิกจ่ายวัสดุจากคลังสินค้างานระหว่างทำ"
@@ -7224,7 +7209,7 @@ msgstr "ยอดคงเหลือในสกุลเงินหลัก
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "ปริมาณคงเหลือ"
@@ -7289,7 +7274,7 @@ msgstr "ประเภทสมดุล"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "มูลค่าคงเหลือ"
@@ -7445,8 +7430,8 @@ msgid "Bank Balance"
msgstr "ยอดคงเหลือในธนาคาร"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "ค่าธรรมเนียมธนาคาร"
@@ -7561,8 +7546,8 @@ msgstr "ประเภทหนังสือค้ำประกันขอ
msgid "Bank Name"
msgstr "ชื่อธนาคาร"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "บัญชีเงินเบิกเกินบัญชี"
@@ -7735,11 +7720,11 @@ msgstr "การธนาคาร"
msgid "Barcode Type"
msgstr "ประเภทบาร์โค้ด"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "บาร์โค้ด {0} ถูกใช้แล้วในสินค้า {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "บาร์โค้ด {0} ไม่ใช่รหัส {1} ที่ถูกต้อง"
@@ -7896,7 +7881,7 @@ msgstr "อัตราพื้นฐาน (ตามหน่วยวัด
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7971,7 +7956,7 @@ msgstr "สถานะการหมดอายุของสินค้า
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8060,13 +8045,13 @@ msgstr "จำนวนสินค้าในล็อตที่อัปเ
msgid "Batch Quantity"
msgstr "ปริมาณแบทช์"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8083,7 +8068,7 @@ msgstr "หน่วยนับของแบทช์"
msgid "Batch and Serial No"
msgstr "แบทช์และหมายเลขซีเรียล"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "ไม่ได้สร้างแบทช์สำหรับสินค้า {} เนื่องจากไม่มีชุดเลขที่แบทช์"
@@ -8106,12 +8091,12 @@ msgstr "แบทช์ {0} และคลังสินค้า"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "แบทช์ {0} ไม่มีในคลังสินค้า {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "แบทช์ {0} ของสินค้า {1} หมดอายุแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "แบทช์ {0} ของสินค้า {1} ถูกปิดใช้งาน"
@@ -8166,7 +8151,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8175,7 +8160,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8189,11 +8174,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "รายการวัตถุดิบในการผลิต"
@@ -8294,7 +8281,7 @@ msgstr "รายละเอียดที่อยู่สำหรับเ
msgid "Billing Address Name"
msgstr "ชื่อที่อยู่สำหรับเรียกเก็บเงิน"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "ที่อยู่สำหรับเรียกเก็บเงินไม่ได้เป็นของ {0}"
@@ -8546,6 +8533,16 @@ msgstr "ระงับใบแจ้งหนี้"
msgid "Block Supplier"
msgstr "ระงับซัพพลายเออร์"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8642,7 +8639,7 @@ msgstr "จองแล้ว"
msgid "Booked Fixed Asset"
msgstr "สินทรัพย์ถาวรที่จองแล้ว"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "บัญชีถูกปิดจนถึงงวดสิ้นสุดวันที่ {0}"
@@ -8901,8 +8898,8 @@ msgstr "สร้างโครงสร้างต้นไม้"
msgid "Buildable Qty"
msgstr "ปริมาณที่สร้างได้"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "อาคาร"
@@ -9063,16 +9060,16 @@ msgstr "โดยค่าเริ่มต้น ชื่อซัพพล
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "ข้ามการตรวจสอบวงเงินเครดิตที่ใบสั่งขาย"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "ข้ามการตรวจสอบวงเงินเครดิตที่ใบสั่งขาย"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9120,8 +9117,8 @@ msgstr "บันทึก CRM"
msgid "CRM Settings"
msgstr "การตั้งค่า CRM"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "บัญชีเงินทุนระหว่างดำเนินการ"
@@ -9376,7 +9373,7 @@ msgstr "แคมเปญ {0} ไม่พบ"
msgid "Can be approved by {0}"
msgstr "สามารถอนุมัติโดย {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "ไม่สามารถปิดใบสั่งงานได้ เนื่องจากมีบัตรงาน {0} ใบอยู่ในสถานะ 'กำลังดำเนินการ'"
@@ -9409,13 +9406,13 @@ msgstr "ไม่สามารถกรองตามเลขที่ใบ
msgid "Can only make payment against unbilled {0}"
msgstr "สามารถชำระเงินได้เฉพาะกับ {0} ที่ยังไม่ได้เรียกเก็บเงิน"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "สามารถอ้างอิงแถวได้ก็ต่อเมื่อประเภทค่าใช้จ่ายเป็น 'ตามจำนวนเงินแถวก่อนหน้า' หรือ 'ยอดรวมแถวก่อนหน้า'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "ไม่สามารถเปลี่ยนวิธีการประเมินค่าได้ เนื่องจากมีธุรกรรมที่เกี่ยวข้องกับสินค้าบางรายการที่ไม่มีวิธีการประเมินค่าของตนเอง"
@@ -9457,7 +9454,7 @@ msgstr "ไม่สามารถมอบหมายพนักงานเ
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "ไม่สามารถคำนวณเวลาถึงได้เนื่องจากไม่มีที่อยู่คนขับ"
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "ไม่สามารถเปลี่ยนการตั้งค่าบัญชีสินค้าคงคลังได้"
@@ -9465,9 +9462,9 @@ msgstr "ไม่สามารถเปลี่ยนการตั้งค
msgid "Cannot Create Return"
msgstr "ไม่สามารถสร้างรายการคืนสินค้าได้"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "ไม่สามารถรวมได้"
@@ -9495,7 +9492,7 @@ msgstr "ไม่สามารถแก้ไข {0} {1} ได้ กรุ
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "ไม่สามารถใช้หัก ณ ที่จ่ายกับหลายคู่ค้าในรายการเดียวได้"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "ไม่สามารถเป็นสินทรัพย์ถาวรได้เนื่องจากมีการสร้างบัญชีแยกประเภทสต็อกแล้ว"
@@ -9515,7 +9512,7 @@ msgstr "ไม่สามารถยกเลิกการจองสต็
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "ไม่สามารถยกเลิกได้เนื่องจากกำลังรอการประมวลผลเอกสารที่ยกเลิก"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "ไม่สามารถยกเลิกได้เนื่องจากมีรายการสต็อกที่ส่งแล้ว {0} อยู่"
@@ -9535,15 +9532,15 @@ msgstr "ไม่สามารถยกเลิกเอกสารนี้
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "ไม่สามารถยกเลิกเอกสารนี้ได้เนื่องจากเชื่อมโยงกับสินทรัพย์ที่ส่งแล้ว {asset_link} กรุณายกเลิกสินทรัพย์เพื่อดำเนินการต่อ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "ไม่สามารถยกเลิกธุรกรรมสำหรับใบสั่งงานที่เสร็จสมบูรณ์แล้วได้"
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "ไม่สามารถเปลี่ยนคุณลักษณะได้หลังจากมีธุรกรรมสต็อกแล้ว ให้สร้างสินค้าใหม่และโอนสต็อกไปยังสินค้าใหม่"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "ไม่สามารถเปลี่ยนประเภทเอกสารอ้างอิงได้"
@@ -9551,11 +9548,11 @@ msgstr "ไม่สามารถเปลี่ยนประเภทเอ
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "ไม่สามารถเปลี่ยนวันที่หยุดให้บริการสำหรับสินค้าในแถวที่ {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
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:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "ไม่สามารถเปลี่ยนสกุลเงินเริ่มต้นของบริษัทได้เนื่องจากมีธุรกรรมอยู่แล้ว ต้องยกเลิกธุรกรรมเพื่อเปลี่ยนสกุลเงินเริ่มต้น"
@@ -9571,11 +9568,11 @@ msgstr "ไม่สามารถแปลงศูนย์ต้นทุน
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "ไม่สามารถแปลงงานเป็นแบบไม่มีกลุ่มได้เนื่องจากมีงานย่อยต่อไปนี้อยู่: {0}"
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "ไม่สามารถแปลงเป็นกลุ่มได้เนื่องจากมีการเลือกประเภทบัญชีไว้"
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "ไม่สามารถแปลงเป็นกลุ่มได้เนื่องจากมีการเลือกประเภทบัญชีไว้"
@@ -9583,7 +9580,7 @@ msgstr "ไม่สามารถแปลงเป็นกลุ่มได
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "ไม่สามารถสร้างรายการสำรองสต็อกสำหรับใบรับสินค้าที่ลงวันที่ในอนาคตได้"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "ไม่สามารถสร้างรายการเลือกสินค้าสำหรับใบสั่งขาย {0} ได้เนื่องจากมีการสำรองสต็อกไว้ กรุณายกเลิกการสำรองสต็อกเพื่อสร้างรายการเลือกสินค้า"
@@ -9609,7 +9606,7 @@ msgstr "ไม่สามารถประกาศเป็น 'สูญห
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "ไม่สามารถหักได้เมื่อหมวดหมู่อยู่ใน 'การประเมินค่า' หรือ 'การประเมินค่าและยอดรวม'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "ไม่สามารถลบแถวกำไร/ขาดทุนจากอัตราแลกเปลี่ยนได้"
@@ -9617,12 +9614,12 @@ msgstr "ไม่สามารถลบแถวกำไร/ขาดทุ
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "ไม่สามารถลบหมายเลขซีเรียล {0} ได้เนื่องจากมีการใช้ในธุรกรรมสต็อก"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "ไม่สามารถลบรายการที่ได้สั่งซื้อแล้ว"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "ไม่สามารถลบ DocType ที่ได้รับการป้องกันได้: {0}"
@@ -9634,7 +9631,7 @@ msgstr "ไม่สามารถลบ DocType เสมือน: {0}. DocTy
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "ไม่สามารถปิดการใช้งานระบบสินค้าคงคลังถาวรได้ เนื่องจากมีรายการในบัญชีสต็อกสำหรับบริษัท {0}อยู่ กรุณายกเลิกรายการสินค้าคงคลังก่อนแล้วลองใหม่อีกครั้ง"
@@ -9642,20 +9639,20 @@ msgstr "ไม่สามารถปิดการใช้งานระบ
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "ไม่สามารถถอดประกอบเกินกว่าปริมาณที่ผลิตได้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "ไม่สามารถเปิดใช้งานบัญชีสินค้าคงคลังแบบรายรายการได้ เนื่องจากมีรายการบัญชีสต็อกคงเหลืออยู่แล้วสำหรับบริษัท {0} โดยใช้บัญชีสินค้าคงคลังแบบแยกตามคลังสินค้า กรุณายกเลิกรายการธุรกรรมสต็อกก่อนแล้วลองใหม่อีกครั้ง"
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "ไม่สามารถรับประกันการจัดส่งด้วยหมายเลขซีเรียลได้ เนื่องจากสินค้า {0} ถูกเพิ่มทั้งแบบมีและไม่มีการรับประกันการจัดส่งด้วยหมายเลขซีเรียล"
@@ -9671,7 +9668,7 @@ msgstr "ไม่พบสินค้าหรือคลังสินค้
msgid "Cannot find Item with this Barcode"
msgstr "ไม่พบสินค้าที่มีบาร์โค้ดนี้"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "ไม่พบคลังสินค้าเริ่มต้นสำหรับสินค้า {0} กรุณาตั้งค่าในข้อมูลหลักของสินค้าหรือในการตั้งค่าสต็อก"
@@ -9679,15 +9676,15 @@ msgstr "ไม่พบคลังสินค้าเริ่มต้นส
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "ไม่สามารถรวม {0} '{1}' เข้าเป็น '{2}' ได้ เนื่องจากทั้งสองมีรายการบัญชีที่มีอยู่แล้วในสกุลเงินที่แตกต่างกันสำหรับบริษัท '{3}'"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "ไม่สามารถผลิตสินค้าได้มากกว่าปริมาณคำสั่งซื้อ {0} กว่าปริมาณคำสั่งซื้อ {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "ไม่สามารถผลิตสินค้าเพิ่มสำหรับ {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "ไม่สามารถผลิตสินค้าเกิน {0} ชิ้นสำหรับ {1}"
@@ -9695,12 +9692,12 @@ msgstr "ไม่สามารถผลิตสินค้าเกิน {0
msgid "Cannot receive from customer against negative outstanding"
msgstr "ไม่สามารถรับเงินจากลูกค้าที่มียอดค้างชำระติดลบได้"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "ไม่สามารถลดปริมาณได้น้อยกว่าปริมาณที่สั่งหรือซื้อ"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "ไม่สามารถอ้างอิงหมายเลขแถวที่มากกว่าหรือเท่ากับหมายเลขแถวปัจจุบันสำหรับประเภทค่าใช้จ่ายนี้ได้"
@@ -9713,14 +9710,14 @@ msgstr "ไม่สามารถดึงโทเค็นลิงก์ส
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "ไม่สามารถดึงโทเค็นลิงก์ได้ ตรวจสอบบันทึกข้อผิดพลาดสำหรับข้อมูลเพิ่มเติม"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9734,7 +9731,7 @@ msgstr "ไม่สามารถตั้งเป็น 'สูญหาย'
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "ไม่สามารถตั้งค่าการอนุมัติตามส่วนลดสำหรับ {0} ได้"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "ไม่สามารถตั้งค่าเริ่มต้นของสินค้าหลายรายการสำหรับบริษัทเดียวได้"
@@ -9742,11 +9739,11 @@ msgstr "ไม่สามารถตั้งค่าเริ่มต้น
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "ไม่สามารถตั้งค่าปริมาณน้อยกว่าปริมาณที่จัดส่งแล้ว."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "ไม่สามารถตั้งค่าปริมาณน้อยกว่าปริมาณที่ได้รับแล้ว."
@@ -9758,7 +9755,7 @@ msgstr "ไม่สามารถตั้งค่าฟิลด์ {0}
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "ไม่สามารถเริ่มการลบได้ การลบ {0} กำลังอยู่ในคิว/กำลังดำเนินการอยู่ กรุณารอจนกว่าจะเสร็จสิ้น"
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9791,7 +9788,7 @@ msgstr "ความจุ (หน่วยสต็อก)"
msgid "Capacity Planning"
msgstr "การวางแผนกำลังการผลิต"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "ข้อผิดพลาดในการวางแผนกำลังการผลิต เวลาเริ่มต้นที่วางแผนไว้ต้องไม่ตรงกับเวลาสิ้นสุด"
@@ -9810,13 +9807,13 @@ msgstr "ความจุในหน่วยสต็อก"
msgid "Capacity must be greater than 0"
msgstr "ความจุต้องมากกว่า 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "เครื่องจักร"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "ทุนเรือนหุ้น"
@@ -10033,7 +10030,7 @@ msgstr "รายละเอียดหมวดหมู่"
msgid "Category-wise Asset Value"
msgstr "มูลค่าสินทรัพย์ตามหมวดหมู่"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "คำเตือน"
@@ -10138,7 +10135,7 @@ msgstr "เปลี่ยนวันที่เผยแพร่"
msgid "Change in Stock Value"
msgstr "การเปลี่ยนแปลงมูลค่าสต็อก"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "เปลี่ยนประเภทบัญชีเป็น 'ลูกหนี้' หรือเลือกบัญชีอื่น"
@@ -10148,7 +10145,7 @@ msgstr "เปลี่ยนประเภทบัญชีเป็น 'ล
msgid "Change this date manually to setup the next synchronization start date"
msgstr "เปลี่ยนวันที่นี้ด้วยตนเองเพื่อตั้งค่าวันที่เริ่มต้นการซิงโครไนซ์ครั้งถัดไป"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "เปลี่ยนชื่อลูกค้าเป็น '{}' เนื่องจากมี '{}' อยู่แล้ว"
@@ -10156,7 +10153,7 @@ msgstr "เปลี่ยนชื่อลูกค้าเป็น '{}' เ
msgid "Changes in {0}"
msgstr "การเปลี่ยนแปลงใน {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "ไม่อนุญาตให้เปลี่ยนกลุ่มลูกค้าสำหรับลูกค้าที่เลือก"
@@ -10171,7 +10168,7 @@ msgid "Channel Partner"
msgstr "คู่ค้าช่องทาง"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "ค่าใช้จ่ายประเภท 'ตามจริง' ในแถวที่ {0} ไม่สามารถรวมอยู่ในอัตราสินค้าหรือจำนวนเงินที่ชำระได้"
@@ -10225,7 +10222,7 @@ msgstr "โครงสร้างของผัง"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10368,7 +10365,7 @@ msgstr "ความกว้างเช็ค"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "วันที่เช็ค/อ้างอิง"
@@ -10426,7 +10423,7 @@ msgstr "ชื่อเอกสารลูก"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "การอ้างอิงแถวลูก"
@@ -10478,6 +10475,11 @@ msgstr "การจำแนกลูกค้าตามภูมิภาค
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10620,11 +10622,11 @@ msgstr "เอกสารที่ปิดแล้ว"
msgid "Closed Documents"
msgstr "เอกสารที่ปิดแล้ว"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "ใบสั่งงานที่ปิดแล้วไม่สามารถหยุดหรือเปิดใหม่ได้"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "คำสั่งซื้อที่ปิดแล้วไม่สามารถยกเลิกได้ กรุณาเปิดใหม่เพื่อยกเลิก"
@@ -10876,11 +10878,17 @@ msgstr "อัตราค่าคอมมิชชั่น %"
msgid "Commission Rate (%)"
msgstr "อัตราค่าคอมมิชชั่น (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "ค่านายหน้า"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10911,7 +10919,7 @@ msgstr "ช่วงเวลาของสื่อกลางการสื
msgid "Communication Medium Type"
msgstr "ประเภทสื่อกลางการสื่อสาร"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "พิมพ์รายการสินค้าแบบย่อ"
@@ -11310,8 +11318,8 @@ msgstr "บริษัท"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11364,7 +11372,7 @@ msgstr "บริษัท"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11453,18 +11461,20 @@ msgstr "การแสดงที่อยู่บริษัท"
msgid "Company Address Name"
msgstr "ชื่อที่อยู่บริษัท"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "ที่อยู่บริษัทไม่ครบถ้วน. คุณไม่มีสิทธิ์ในการอัปเดต. กรุณาติดต่อผู้ดูแลระบบของคุณ."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "บัญชีธนาคารของบริษัท"
@@ -11560,7 +11570,7 @@ msgstr "ต้องระบุบริษัทและวันที่ล
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "สกุลเงินของทั้งสองบริษัทต้องตรงกันสำหรับธุรกรรมระหว่างบริษัท"
@@ -11595,7 +11605,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "ชื่อฟิลด์ลิงก์บริษัทที่ใช้สำหรับการกรอง (ไม่บังคับ - ปล่อยว่างไว้เพื่อลบข้อมูลทั้งหมด)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "ชื่อบริษัทไม่ตรงกัน"
@@ -11634,12 +11644,12 @@ msgstr "บริษัทที่ซัพพลายเออร์ภาย
msgid "Company {0} added multiple times"
msgstr "บริษัท {0} ถูกเพิ่มหลายครั้ง"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "ไม่มีบริษัท {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "บริษัท {0} ถูกเพิ่มมากกว่าหนึ่งครั้ง"
@@ -11681,7 +11691,7 @@ msgstr "ชื่อคู่แข่ง"
msgid "Competitors"
msgstr "คู่แข่ง"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "ทำให้งานเสร็จสมบูรณ์"
@@ -11728,12 +11738,12 @@ msgstr "โครงการที่เสร็จสมบูรณ์"
msgid "Completed Qty"
msgstr "ปริมาณที่เสร็จสมบูรณ์"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "ปริมาณที่เสร็จสมบูรณ์ต้องไม่มากกว่า 'ปริมาณที่จะผลิต'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "ปริมาณที่เสร็จสมบูรณ์"
@@ -11922,7 +11932,7 @@ msgstr "พิจารณามิติทางการบัญชี"
msgid "Consider Minimum Order Qty"
msgstr "พิจารณาปริมาณสั่งซื้อขั้นต่ำ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "พิจารณาการสูญเสียจากกระบวนการ"
@@ -12116,7 +12126,7 @@ msgstr "ต้นทุนสินค้าที่ใช้ไป"
msgid "Consumed Qty"
msgstr "ปริมาณที่ใช้ไป"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "ปริมาณที่ใช้ไปต้องไม่มากกว่าปริมาณที่สำรองไว้สำหรับสินค้า {0}"
@@ -12145,7 +12155,7 @@ msgstr "ต้องระบุรายการสต็อกที่ใช
msgid "Consumed Stock Total Value"
msgstr "มูลค่ารวมของสต็อกที่ใช้ไป"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "ปริมาณที่บริโภคของรายการ {0} เกินปริมาณที่โอนย้าย"
@@ -12273,7 +12283,7 @@ msgstr "เบอร์ติดต่อ"
msgid "Contact Person"
msgstr "ผู้ติดต่อ"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "ผู้ติดต่อไม่ได้เป็นของ {0}"
@@ -12399,6 +12409,11 @@ msgstr "ควบคุมธุรกรรมสต็อกในอดีต
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12459,7 +12474,7 @@ msgstr "ปัจจัยการแปลง"
msgid "Conversion Rate"
msgstr "อัตราการแปลง"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "ปัจจัยการแปลงสำหรับหน่วยวัดเริ่มต้นต้องเป็น 1 ในแถว {0}"
@@ -12467,15 +12482,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 "ปัจจัยการแปลงสำหรับรายการ {0} ถูกรีเซ็ตเป็น 1.0 เนื่องจาก uom {1} เหมือนกับ uom สต็อก {2}"
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "อัตราการแปลงไม่สามารถเป็น 0 ได้"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "อัตราการแปลงคือ 1.00 แต่สกุลเงินของเอกสารแตกต่างจากสกุลเงินของบริษัท"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "อัตราการแปลงต้องเป็น 1.00 หากสกุลเงินของเอกสารเหมือนกับสกุลเงินของบริษัท"
@@ -12552,13 +12567,13 @@ msgstr "การแก้ไข"
msgid "Corrective Action"
msgstr "การดำเนินการแก้ไข"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "บัตรงานแก้ไข"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "การดำเนินการแก้ไข"
@@ -12589,13 +12604,13 @@ msgstr "ต้นทุน"
#. Label of the cost_allocation (Currency) field in DocType 'BOM'
#: erpnext/manufacturing/doctype/bom/bom.json
msgid "Cost Allocation"
-msgstr ""
+msgstr "การจัดสรรต้นทุน"
#. Label of the cost_allocation_per (Percent) field in DocType 'BOM Secondary
#. Item'
#: erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
msgid "Cost Allocation %"
-msgstr ""
+msgstr "การจัดสรรต้นทุน %"
#. Label of the cost_allocation__process_loss_section (Section Break) field in
#. DocType 'BOM'
@@ -12725,7 +12740,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12858,7 +12873,7 @@ msgstr "ศูนย์ต้นทุน {} เป็นศูนย์ต้
msgid "Cost Center: {0} does not exist"
msgstr "ศูนย์ต้นทุน: {0} ไม่มีอยู่"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "ศูนย์ต้นทุน"
@@ -12901,17 +12916,13 @@ msgstr "ต้นทุนของรายการที่ส่งมอบ
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "ต้นทุนขายสินค้าและบริการ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "บัญชีต้นทุนสินค้าที่ขายในตารางรายการ"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "ต้นทุนของรายการที่ออก"
@@ -12991,7 +13002,7 @@ msgstr "ไม่สามารถลบข้อมูลตัวอย่า
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "ไม่สามารถสร้างลูกค้าอัตโนมัติได้เนื่องจากขาดฟิลด์บังคับต่อไปนี้:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "ไม่สามารถสร้างใบลดหนี้อัตโนมัติได้ กรุณายกเลิกการเลือก 'ออกใบลดหนี้' และส่งอีกครั้ง"
@@ -13180,7 +13191,7 @@ msgstr "สร้างใบแจ้งหนี้"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "สร้างใบงาน"
@@ -13212,7 +13223,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "สร้างรายการบัญชีแยกประเภทสำหรับเงินทอน"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "สร้างลิงก์"
@@ -13279,7 +13290,7 @@ msgstr "สร้างรายการชำระเงินสำหรั
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "สร้างรายการเลือกสินค้า"
@@ -13424,7 +13435,7 @@ msgstr "สร้างงาน"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "สร้างเทมเพลตภาษี"
@@ -13462,12 +13473,12 @@ msgstr "สร้างสิทธิ์ผู้ใช้"
msgid "Create Users"
msgstr "สร้างผู้ใช้"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "สร้างตัวแปร"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "สร้างตัวแปร"
@@ -13498,12 +13509,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "สร้างตัวแปรพร้อมรูปภาพเทมเพลต"
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "สร้างธุรกรรมสต็อกขาเข้าสำหรับสินค้า"
@@ -13537,7 +13548,7 @@ msgstr "สร้าง {0} {1} ?"
msgid "Created By Migration"
msgstr "สร้างโดยการย้ายข้อมูล"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "สร้าง {0} scorecards สำหรับ {1} ระหว่าง:"
@@ -13570,7 +13581,7 @@ msgstr "กำลังสร้างใบส่งของ..."
msgid "Creating Delivery Schedule..."
msgstr "กำลังสร้างกำหนดการส่งมอบ..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "กำลังสร้างมิติ..."
@@ -13765,7 +13776,7 @@ msgstr "วันเครดิต"
msgid "Credit Limit"
msgstr "วงเงินเครดิต"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "เกินวงเงินเครดิต"
@@ -13775,12 +13786,6 @@ msgstr "เกินวงเงินเครดิต"
msgid "Credit Limit Settings"
msgstr "การตั้งค่าวงเงินเครดิต"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "วงเงินเครดิตและเงื่อนไขการชำระเงิน"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "วงเงินเครดิต:"
@@ -13812,7 +13817,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13840,7 +13845,7 @@ msgstr "ออกใบลดหนี้แล้ว"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "ใบลดหนี้จะอัปเดตยอดค้างชำระของตัวเอง แม้ว่าจะระบุ 'คืนสินค้าอ้างอิง' ก็ตาม"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "ใบลดหนี้ {0} ถูกสร้างขึ้นโดยอัตโนมัติ"
@@ -13848,7 +13853,7 @@ msgstr "ใบลดหนี้ {0} ถูกสร้างขึ้นโด
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "เครดิตไปยัง"
@@ -13857,20 +13862,20 @@ msgstr "เครดิตไปยัง"
msgid "Credit in Company Currency"
msgstr "เครดิตในสกุลเงินบริษัท"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "เกินวงเงินเครดิตสำหรับลูกค้า {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "มีการกำหนดวงเงินเครดิตสำหรับบริษัท {0} แล้ว"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "ถึงวงเงินเครดิตสำหรับลูกค้า {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13878,8 +13883,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "อัตราส่วนการหมุนเวียนของเจ้าหนี้"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "เจ้าหนี้"
@@ -14049,7 +14054,7 @@ msgstr "การแลกเปลี่ยนสกุลเงินต้อ
msgid "Currency and Price List"
msgstr "สกุลเงินและรายการราคา"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "ไม่สามารถเปลี่ยนสกุลเงินได้หลังจากทำรายการโดยใช้สกุลเงินอื่นแล้ว"
@@ -14059,7 +14064,7 @@ msgstr "ขณะนี้ตัวกรองสกุลเงินยัง
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "สกุลเงินสำหรับ {0} ต้องเป็น {1}"
@@ -14142,8 +14147,8 @@ msgstr "วันที่เริ่มต้นใบแจ้งหนี้
msgid "Current Level"
msgstr "ระดับปัจจุบัน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "หนี้สินหมุนเวียน"
@@ -14210,6 +14215,11 @@ msgstr "สต็อกปัจจุบัน"
msgid "Current Valuation Rate"
msgstr "อัตราการประเมินค่าปัจจุบัน"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "เส้นโค้ง"
@@ -14305,7 +14315,6 @@ msgstr "ตัวคั่นที่กำหนดเอง"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14412,7 +14421,6 @@ msgstr "ตัวคั่นที่กำหนดเอง"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14501,8 +14509,8 @@ msgstr "ที่อยู่ลูกค้า"
msgid "Customer Addresses And Contacts"
msgstr "ที่อยู่และผู้ติดต่อของลูกค้า"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "เงินล่วงหน้าจากลูกค้า"
@@ -14516,7 +14524,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14599,6 +14607,7 @@ msgstr "ข้อเสนอแนะจากลูกค้า"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14621,7 +14630,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14638,6 +14647,7 @@ msgstr "ข้อเสนอแนะจากลูกค้า"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14681,7 +14691,7 @@ msgstr "รายการของลูกค้า"
msgid "Customer Items"
msgstr "รายการของลูกค้า"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "ใบสั่งซื้อของลูกค้า"
@@ -14733,7 +14743,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14839,7 +14849,7 @@ msgstr "ลูกค้าให้มา"
msgid "Customer Provided Item Cost"
msgstr "ต้นทุนสินค้าที่ลูกค้าจัดหาให้"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "บริการลูกค้า"
@@ -14896,9 +14906,9 @@ msgstr "ลูกค้าหรือรายการ"
msgid "Customer required for 'Customerwise Discount'"
msgstr "จำเป็นต้องมีลูกค้าสำหรับ 'ส่วนลดตามลูกค้า'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "ลูกค้า {0} ไม่ได้เป็นของโครงการ {1}"
@@ -15010,7 +15020,7 @@ msgstr "ดี - อี"
msgid "DFS"
msgstr "ดีเอฟเอส"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "สรุปโครงการรายวันสำหรับ {0}"
@@ -15101,7 +15111,7 @@ msgstr "วันเกิดต้องไม่เกินวันนี้
msgid "Date of Commencement"
msgstr "วันที่เริ่มต้น"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "วันที่เริ่มต้นควรมากกว่าวันที่จดทะเบียน"
@@ -15327,7 +15337,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15355,13 +15365,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "เดบิตไปยัง"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "ต้องระบุเดบิตไปยัง"
@@ -15489,8 +15499,7 @@ msgstr "บัญชีเริ่มต้น"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15516,14 +15525,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "บัญชีรับล่วงหน้าเริ่มต้น"
@@ -15538,19 +15547,19 @@ msgstr "ช่วงอายุการเสื่อมสภาพเริ
msgid "Default BOM"
msgstr "BOM เริ่มต้น"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "BOM เริ่มต้น ({0}) ต้องเปิดใช้งานสำหรับสินค้านี้หรือเทมเพลตของมัน"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "BOM เริ่มต้นสำหรับ {0} ไม่พบ"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "ไม่พบ BOM เริ่มต้นสำหรับสินค้าสำเร็จรูป {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "ไม่พบ BOM เริ่มต้นสำหรับสินค้า {0} และโครงการ {1}"
@@ -15603,9 +15612,7 @@ msgid "Default Company"
msgstr "บริษัทเริ่มต้น"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "บัญชีธนาคารบริษัทเริ่มต้น"
@@ -15721,6 +15728,16 @@ msgstr "กลุ่มสินค้าเริ่มต้น"
msgid "Default Item Manufacturer"
msgstr "ผู้ผลิตสินค้าเริ่มต้น"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15756,23 +15773,19 @@ msgid "Default Payment Request Message"
msgstr "ข้อความขอชำระเงินเริ่มต้น"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "เทมเพลตเงื่อนไขการชำระเงินเริ่มต้น"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15895,15 +15908,15 @@ msgstr "เขตพื้นที่เริ่มต้น"
msgid "Default Unit of Measure"
msgstr "หน่วยวัดเริ่มต้น"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "ไม่สามารถเปลี่ยนหน่วยวัดเริ่มต้นสำหรับสินค้า {0} ได้โดยตรงเนื่องจากคุณได้ทำธุรกรรมกับหน่วยวัดอื่นไปแล้ว คุณต้องยกเลิกเอกสารที่เชื่อมโยงหรือสร้างสินค้าใหม่"
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "ไม่สามารถเปลี่ยนหน่วยวัดเริ่มต้นสำหรับสินค้า {0} ได้โดยตรงเนื่องจากคุณได้ทำธุรกรรมกับหน่วยวัดอื่นไปแล้ว คุณจะต้องสร้างสินค้าใหม่เพื่อใช้หน่วยวัดเริ่มต้นที่แตกต่างกัน"
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "หน่วยวัดเริ่มต้นสำหรับตัวแปร '{0}' ต้องเหมือนกับในเทมเพลต '{1}'"
@@ -15955,7 +15968,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "การตั้งค่าเริ่มต้นสำหรับธุรกรรมที่เกี่ยวข้องกับสต็อกของคุณ"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "สร้างแม่แบบภาษีเริ่มต้นสำหรับการขาย การซื้อ และรายการแล้ว"
@@ -16046,6 +16059,12 @@ msgstr "กำหนดประเภทโครงการ"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16128,12 +16147,12 @@ msgstr "ลบลีดและที่อยู่"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "ลบธุรกรรม"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "ลบธุรกรรมทั้งหมดสำหรับบริษัทนี้"
@@ -16154,8 +16173,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "กำลังลบ {0} และเอกสาร Common Code ที่เกี่ยวข้องทั้งหมด..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "กำลังดำเนินการลบ!"
@@ -16266,11 +16285,11 @@ msgstr "ปริมาณที่จัดส่งแล้ว"
msgid "Delivered Qty (in Stock UOM)"
msgstr "ปริมาณที่จัดส่งแล้ว (ในหน่วยสต็อก)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16351,7 +16370,7 @@ msgstr "ผู้จัดการการจัดส่ง"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16411,11 +16430,11 @@ msgstr "รายการที่บรรจุในใบส่งของ
msgid "Delivery Note Trends"
msgstr "แนวโน้มใบส่งของ"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "ใบส่งของ {0} ยังไม่ได้ส่ง"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "ใบส่งของ"
@@ -16501,10 +16520,6 @@ msgstr "คลังสินค้าสำหรับการจัดส่
msgid "Delivery to"
msgstr "จัดส่งถึง"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "ต้องการคลังสินค้าสำหรับการจัดส่งสำหรับรายการสต็อก {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16624,8 +16639,8 @@ msgstr "จำนวนเงินที่คิดค่าเสื่อม
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16718,7 +16733,7 @@ msgstr "ตัวเลือกค่าเสื่อมราคา"
msgid "Depreciation Posting Date"
msgstr "วันที่ลงรายการค่าเสื่อมราคา"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "วันที่ลงรายการค่าเสื่อมราคาต้องไม่มาก่อนวันที่พร้อมใช้งาน"
@@ -16876,15 +16891,15 @@ msgstr "ผลต่าง (เดบิต - เครดิต)"
msgid "Difference Account"
msgstr "บัญชีผลต่าง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "บัญชีผลต่างในตารางสินค้า"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "บัญชีผลต่างต้องเป็นบัญชีประเภทสินทรัพย์/หนี้สิน (ยอดยกมา) เนื่องจากรายการสต็อกนี้เป็นรายการยอดยกมา"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "บัญชีผลต่างต้องเป็นบัญชีประเภทสินทรัพย์/หนี้สิน เนื่องจากรายการกระทบยอดสต็อกนี้เป็นรายการยอดยกมา"
@@ -16996,15 +17011,15 @@ msgstr "มิติ"
msgid "Direct Expense"
msgstr "ค่าใช้จ่ายทางตรง"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "ค่าใช้จ่ายทางตรง"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "รายได้ทางตรง"
@@ -17085,6 +17100,11 @@ msgstr "ปิดใช้งานยอดรวมปัดเศษ"
msgid "Disable Serial No And Batch Selector"
msgstr "ปิดใช้งานตัวเลือกหมายเลขซีเรียลและแบทช์"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17121,11 +17141,11 @@ msgstr "ไม่สามารถใช้คลังสินค้าที
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "ปิดใช้งานกฎการกำหนดราคาเนื่องจาก {} นี้เป็นการโอนภายใน"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "ปิดใช้งานราคาที่รวมภาษีแล้วเนื่องจาก {} นี้เป็นการโอนภายใน"
@@ -17141,7 +17161,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17149,15 +17169,15 @@ msgstr "ปิดใช้งานการดึงปริมาณที่
msgid "Disassemble"
msgstr "ถอดประกอบ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "ใบสั่งถอดประกอบ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "จำนวนชิ้นส่วนที่ต้องถอดประกอบไม่สามารถน้อยกว่าหรือเท่ากับ0 ได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "จำนวนชิ้นส่วนที่ต้องถอดประกอบไม่สามารถน้อยกว่าหรือเท่ากับ0 ได้"
@@ -17444,7 +17464,7 @@ msgstr "เหตุผลตามดุลยพินิจ"
msgid "Dislikes"
msgstr "ไม่ชอบ"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "การจัดส่ง"
@@ -17525,7 +17545,7 @@ msgstr "ชื่อที่แสดง"
msgid "Disposal Date"
msgstr "วันที่จำหน่าย"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "วันที่จำหน่าย {0} ต้องไม่มาก่อนวันที่ {1} {2} ของสินทรัพย์"
@@ -17639,8 +17659,8 @@ msgstr "ชื่อการกระจาย"
msgid "Distributor"
msgstr "ผู้จัดจำหน่าย"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "เงินปันผล"
@@ -17702,7 +17722,7 @@ msgstr "ห้ามแสดงสัญลักษณ์ใดๆ เช่
msgid "Do not update variants on save"
msgstr "ห้ามอัปเดตตัวแปรเมื่อบันทึก"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "คุณต้องการกู้คืนสินทรัพย์ที่จำหน่ายแล้วนี้จริงๆ หรือ?"
@@ -17726,7 +17746,7 @@ msgstr "คุณต้องการแจ้งลูกค้าทั้ง
msgid "Do you want to submit the material request"
msgstr "คุณต้องการส่งใบขอวัสดุหรือไม่"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "คุณต้องการส่งรายการสต็อกหรือไม่?"
@@ -17793,11 +17813,11 @@ msgstr ""
msgid "Document Type "
msgstr "ประเภทเอกสาร "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "ประเภทเอกสารถูกใช้เป็นมิติแล้ว"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "เอกสารประกอบ"
@@ -17960,12 +17980,6 @@ msgstr "หมวดหมู่ใบขับขี่"
msgid "Driving License Category"
msgstr "หมวดหมู่ใบขับขี่"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "ขั้นตอนการลบ"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17986,12 +18000,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "ลบขั้นตอนและฟังก์ชัน SQL ที่มีอยู่ที่ตั้งค่าโดยรายงานลูกหนี้"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "วันที่ครบกำหนดต้องไม่เกิน {0}"
@@ -18150,8 +18158,8 @@ msgstr "ระยะเวลา (วัน)"
msgid "Duration in Days"
msgstr "ระยะเวลาเป็นวัน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "อากรและภาษี"
@@ -18234,7 +18242,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "แต่ละธุรกรรม"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "เร็วที่สุด"
@@ -18348,6 +18356,10 @@ msgstr "ต้องระบุปริมาณเป้าหมายหร
msgid "Either target qty or target amount is mandatory."
msgstr "ต้องระบุปริมาณเป้าหมายหรือจำนวนเงินเป้าหมาย"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18367,8 +18379,8 @@ msgstr "ไฟฟ้า"
msgid "Electricity down"
msgstr "ไฟฟ้าดับ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "อุปกรณ์อิเล็คทรอนิกส์"
@@ -18572,8 +18584,8 @@ msgstr "เงินล่วงหน้าพนักงาน"
msgid "Employee Advances"
msgstr "เงินทดรองจ่ายพนักงาน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "ข้อผูกพันด้านสวัสดิการพนักงาน"
@@ -18656,7 +18668,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "พนักงาน {0} ไม่ได้เป็นพนักงานของบริษัท {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "พนักงาน {0} กำลังทำงานอยู่ที่สถานีงานอื่น โปรดกำหนดพนักงานคนอื่น"
@@ -18672,7 +18684,7 @@ msgstr "พนักงาน"
msgid "Empty"
msgstr "ว่างเปล่า"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "ว่างเปล่า เพื่อลบบัญชี"
@@ -18703,7 +18715,7 @@ msgstr "เปิดใช้งานการจัดตารางนัด
msgid "Enable Auto Email"
msgstr "เปิดใช้งานอีเมลอัตโนมัติ"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "เปิดใช้งานการสั่งซื้อใหม่อัตโนมัติ"
@@ -18869,12 +18881,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -19003,8 +19009,8 @@ msgstr "วันที่สิ้นสุดต้องไม่มาก่
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19103,8 +19109,8 @@ msgstr "ป้อนด้วยตนเอง"
msgid "Enter Serial Nos"
msgstr "ป้อนหมายเลขซีเรียล"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "ป้อนค่า"
@@ -19129,7 +19135,7 @@ msgstr "ป้อนชื่อสำหรับรายการวันห
msgid "Enter amount to be redeemed."
msgstr "ป้อนจำนวนเงินที่จะแลก"
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "ป้อนรหัสสินค้า ชื่อจะถูกเติมอัตโนมัติเหมือนกับรหัสสินค้าเมื่อคลิกในฟิลด์ชื่อสินค้า"
@@ -19141,7 +19147,7 @@ msgstr "ป้อนอีเมลของลูกค้า"
msgid "Enter customer's phone number"
msgstr "ป้อนหมายเลขโทรศัพท์ของลูกค้า"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "ป้อนวันที่เพื่อทิ้งสินทรัพย์"
@@ -19185,7 +19191,7 @@ msgstr "ป้อนชื่อผู้รับผลประโยชน์
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "ป้อนชื่อธนาคารหรือสถาบันการเงินก่อนส่ง"
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "ป้อนหน่วยสต็อกเริ่มต้น"
@@ -19193,7 +19199,7 @@ msgstr "ป้อนหน่วยสต็อกเริ่มต้น"
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "ป้อนปริมาณที่จะผลิต รายการวัตถุดิบจะถูกดึงมาเฉพาะเมื่อมีการตั้งค่านี้"
@@ -19205,8 +19211,8 @@ msgstr "ป้อนจำนวนเงิน {0}"
msgid "Entertainment & Leisure"
msgstr "บันเทิงและสันทนาการ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "ค่ารับรอง"
@@ -19230,8 +19236,8 @@ msgstr "ประเภทการป้อนข้อมูล"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19292,7 +19298,7 @@ msgstr "ข้อผิดพลาดขณะโพสต์รายการ
msgid "Error while processing deferred accounting for {0}"
msgstr "ข้อผิดพลาดขณะประมวลผลการบัญชีรอตัดบัญชีสำหรับ {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "ข้อผิดพลาดขณะโพสต์การประเมินมูลค่าสินค้าใหม่"
@@ -19304,7 +19310,7 @@ msgstr "ข้อผิดพลาด: สินทรัพย์นี้ม
"\t\t\t\t\tวันที่ `เริ่มคิดค่าเสื่อมราคา` ต้องอยู่หลังวันที่ `พร้อมใช้งาน` อย่างน้อย {1} รอบ\n"
"\t\t\t\t\tกรุณาแก้ไขวันที่ให้ถูกต้อง"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "ข้อผิดพลาด: {0} เป็นฟิลด์บังคับ"
@@ -19350,7 +19356,7 @@ msgstr "รับมอบหน้าโรงงาน"
msgid "Example URL"
msgstr "ตัวอย่าง URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "ตัวอย่างของเอกสารที่เชื่อมโยง: {0}"
@@ -19370,7 +19376,7 @@ msgstr "ตัวอย่าง: ABCD.#####. หากตั้งค่าซ
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "ตัวอย่าง: หมายเลขซีเรียล {0} ถูกจองใน {1}"
@@ -19380,7 +19386,7 @@ msgstr "ตัวอย่าง: หมายเลขซีเรียล {0}
msgid "Exception Budget Approver Role"
msgstr "บทบาทผู้อนุมัติงบประมาณข้อยกเว้น"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19388,7 +19394,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "วัสดุที่ใช้เกิน"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "การโอนเกิน"
@@ -19419,17 +19425,17 @@ msgstr "กำไรหรือขาดทุนจากอัตราแล
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "กำไร/ขาดทุนจากอัตราการแลกเปลี่ยน"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "จำนวนกำไร/ขาดทุนจากอัตราแลกเปลี่ยนถูกบันทึกผ่าน {0}"
@@ -19568,7 +19574,7 @@ msgstr "ผู้ช่วยผู้บริหาร"
msgid "Executive Search"
msgstr "การสรรหาผู้บริหาร"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "การจัดหาที่ได้รับการยกเว้น"
@@ -19655,7 +19661,7 @@ msgstr "วันที่ปิดที่คาดหวัง"
msgid "Expected Delivery Date"
msgstr "วันที่ส่งมอบที่คาดหวัง"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "วันที่ส่งมอบที่คาดหวังควรอยู่หลังวันที่คำสั่งขาย"
@@ -19739,7 +19745,7 @@ msgstr "มูลค่าที่คาดหวังหลังจากอ
msgid "Expense"
msgstr "ค่าใช้จ่าย"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "บัญชีค่าใช้จ่าย/ความแตกต่าง ({0}) ต้องเป็นบัญชี 'กำไรหรือขาดทุน'"
@@ -19817,23 +19823,23 @@ msgstr "บัญชีค่าใช้จ่ายเป็นสิ่งจ
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "ค่าใช้จ่าย"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "ค่าใช้จ่ายรวมทั้งการประเมินมูลค่าสินทรัพย์"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "ค่าใช้จ่ายที่รวมอยู่ในการประเมินมูลค่า"
@@ -19912,7 +19918,7 @@ msgstr "ประวัติการทำงานภายนอก"
msgid "Extra Consumed Qty"
msgstr "ปริมาณที่ใช้เกิน"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "ปริมาณบัตรงานเพิ่มเติม"
@@ -20049,7 +20055,7 @@ msgstr "ล้มเหลวในการตั้งค่าบริษั
msgid "Failed to setup defaults"
msgstr "ล้มเหลวในการตั้งค่าค่าเริ่มต้น"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "ล้มเหลวในการตั้งค่าค่าเริ่มต้นสำหรับประเทศ {0} โปรดติดต่อฝ่ายสนับสนุน"
@@ -20167,6 +20173,11 @@ msgstr "ดึงค่าจาก"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "ดึง BOM ที่ระเบิดออก (รวมถึงชุดย่อย)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "ดึงหมายเลขซีเรียลที่มีอยู่เพียง {0} หมายเลข"
@@ -20204,21 +20215,29 @@ msgstr "การจับคู่ฟิลด์"
msgid "Field in Bank Transaction"
msgstr "ฟิลด์ในธุรกรรมธนาคาร"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "ฟิลด์จะถูกคัดลอกเมื่อสร้างเท่านั้น"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "ไฟล์นี้ไม่เกี่ยวข้องกับบันทึกการลบธุรกรรมนี้"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "ไฟล์ไม่พบ"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "ไฟล์ไม่พบในเซิร์ฟเวอร์"
@@ -20426,9 +20445,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 "รายงานทางการเงินจะถูกสร้างโดยใช้ประเภทเอกสาร GL Entry (ควรเปิดใช้งานหากใบสำคัญปิดงวดไม่ได้ลงรายการสำหรับทุกปีตามลำดับหรือขาดหายไป) "
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "เสร็จสิ้น"
@@ -20485,15 +20504,15 @@ msgstr "ปริมาณสินค้าสำเร็จรูป"
msgid "Finished Good Item Quantity"
msgstr "ปริมาณสินค้าสำเร็จรูป"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "ไม่ได้ระบุสินค้าสำเร็จรูปสำหรับบริการ {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "ปริมาณสินค้าสำเร็จรูป {0} ต้องไม่เป็นศูนย์"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "สินค้าสำเร็จรูป {0} ต้องเป็นสินค้าจ้างเหมาช่วง"
@@ -20539,7 +20558,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "สินค้าสำเร็จรูป {0} ต้องเป็นสินค้าจ้างเหมาช่วง"
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "สินค้าสำเร็จรูป"
@@ -20580,7 +20599,7 @@ msgstr "คลังสินค้าสำเร็จรูป"
msgid "Finished Goods based Operating Cost"
msgstr "ต้นทุนการดำเนินงานตามสินค้าสำเร็จรูป"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "สินค้าสำเร็จรูป {0} ไม่ตรงกับใบสั่งงาน {1}"
@@ -20721,6 +20740,7 @@ msgstr "คงที่"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "สินทรัพย์ถาวร"
@@ -20739,7 +20759,7 @@ msgstr "บัญชีสินทรัพย์ถาวร"
msgid "Fixed Asset Defaults"
msgstr "ค่าเริ่มต้นสินทรัพย์ถาวร"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "รายการสินทรัพย์ถาวรต้องเป็นรายการที่ไม่ใช่สต็อก"
@@ -20758,8 +20778,8 @@ msgstr "อัตราส่วนการหมุนเวียนของ
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "รายการสินทรัพย์ถาวร {0} ไม่สามารถใช้ใน BOM ได้"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "สินทรัพย์ถาวร"
@@ -20832,7 +20852,7 @@ msgstr "ติดตามเดือนปฏิทิน"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "คำขอวัสดุต่อไปนี้ถูกยกขึ้นโดยอัตโนมัติตามระดับการสั่งซื้อใหม่ของรายการ"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "ฟิลด์ต่อไปนี้เป็นสิ่งจำเป็นในการสร้างที่อยู่:"
@@ -20889,7 +20909,7 @@ msgstr "สำหรับบริษัท"
msgid "For Item"
msgstr "สำหรับสินค้า"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "สำหรับสินค้า {0} ไม่สามารถรับเกินกว่า {1} หน่วยสำหรับ {2} {3}"
@@ -20899,7 +20919,7 @@ msgid "For Job Card"
msgstr "สำหรับใบงาน"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "สำหรับการดำเนินงาน"
@@ -20920,17 +20940,13 @@ msgstr "สำหรับรายการราคา"
msgid "For Production"
msgstr "สำหรับการผลิต"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "ต้องระบุปริมาณสำหรับ (ปริมาณที่ผลิต)"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "สำหรับวัตถุดิบ"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "สำหรับใบแจ้งหนี้คืนสินค้าที่มีผลต่อสต็อก ไม่อนุญาตให้มีสินค้าจำนวน '0' แถวต่อไปนี้ได้รับผลกระทบ: {0}"
@@ -20958,11 +20974,11 @@ msgstr "สำหรับคลังสินค้า"
msgid "For Work Order"
msgstr "สำหรับใบสั่งงาน"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "สำหรับรายการ {0}จำนวนต้องเป็นจำนวนลบ"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "สำหรับรายการ {0}ปริมาณต้องเป็นจำนวนบวก"
@@ -21000,7 +21016,7 @@ msgstr "สำหรับผู้จัดจำหน่ายรายบุ
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "สำหรับรายการ {0} มีเพียง {1} สินทรัพย์ที่ถูกสร้างหรือเชื่อมโยงกับ {2} โปรดสร้างหรือเชื่อมโยง {3} สินทรัพย์เพิ่มเติมกับเอกสารที่เกี่ยวข้อง"
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "สำหรับรายการ {0} อัตราต้องเป็นตัวเลขบวก หากต้องการอนุญาตอัตราเชิงลบ ให้เปิดใช้งาน {1} ใน {2}"
@@ -21014,7 +21030,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "สำหรับการดำเนินการ {0} ที่แถว {1}โปรดเพิ่มวัตถุดิบหรือกำหนด BOM ให้กับรายการนี้"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "สำหรับการดำเนินการ {0}: ปริมาณ ({1}) ไม่สามารถมากกว่าปริมาณที่ค้างอยู่ ({2})"
@@ -21031,7 +21047,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "สำหรับปริมาณที่คาดการณ์และประมาณการ ระบบจะพิจารณาคลังสินค้าย่อยทั้งหมดที่อยู่ภายใต้คลังสินค้าหลักที่เลือกไว้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "สำหรับปริมาณ {0} ไม่ควรมากกว่าปริมาณที่อนุญาต {1}"
@@ -21040,12 +21056,12 @@ msgstr "สำหรับปริมาณ {0} ไม่ควรมากก
msgid "For reference"
msgstr "สำหรับการอ้างอิง"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "สำหรับแถว {0} ใน {1} เพื่อรวม {2} ในอัตรารายการ ต้องรวมแถว {3} ด้วย"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "สำหรับแถว {0}: ป้อนปริมาณที่วางแผนไว้"
@@ -21064,7 +21080,7 @@ msgstr "สำหรับเงื่อนไข 'ใช้กฎกับผ
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "เพื่อความสะดวกของลูกค้า รหัสเหล่านี้สามารถใช้ในรูปแบบการพิมพ์ เช่น ใบแจ้งหนี้และใบส่งของ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "สำหรับรายการ {0}ปริมาณที่ใช้ควรเป็น {1} ตาม BOM {2}"
@@ -21111,11 +21127,6 @@ msgstr "การพยากรณ์"
msgid "Forecast Demand"
msgstr "การคาดการณ์ความต้องการ"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "ปริมาณที่คาดการณ์"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21161,7 +21172,7 @@ msgstr "โพสต์ฟอรัม"
msgid "Forum URL"
msgstr "URL ฟอรัม"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "โรงเรียนแฟรปเป้"
@@ -21206,8 +21217,8 @@ msgstr "ไม่ได้ตั้งค่ารายการฟรีใน
msgid "Freeze Stocks Older Than (Days)"
msgstr "แช่แข็งสต็อกที่เก่ากว่า (วัน)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "ค่าขนส่งและค่าดำเนินการ"
@@ -21641,8 +21652,8 @@ msgstr "ชำระเงินเต็มจำนวน"
msgid "Furlong"
msgstr "เฟอร์ลอง"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "เครื่องตกแต่งและอุปกรณ์"
@@ -21659,13 +21670,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "อ้างอิงการชำระเงินในอนาคต"
@@ -21673,7 +21684,7 @@ msgstr "อ้างอิงการชำระเงินในอนาค
msgid "Future Payments"
msgstr "การชำระเงินในอนาคต"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "ไม่อนุญาตให้ใช้วันที่ในอนาคต"
@@ -21758,9 +21769,9 @@ msgstr "กำไร/ขาดทุนที่ได้บันทึกไ
msgid "Gain/Loss from Revaluation"
msgstr "กำไร/ขาดทุนจากการประเมินมูลค่าใหม่"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "กำไร/ขาดทุนจากการจำหน่ายสินทรัพย์"
@@ -21933,7 +21944,7 @@ msgstr "สร้างสมดุล"
msgid "Get Current Stock"
msgstr "ตรวจสอบสินค้าคงคลังปัจจุบัน"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "รับรายละเอียดกลุ่มลูกค้า"
@@ -21991,7 +22002,7 @@ msgstr "รับตำแหน่งสินค้า"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22030,7 +22041,7 @@ msgstr "รับสินค้าจาก BOM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "รับสินค้าจากใบขอวัสดุสำหรับซัพพลายเออร์นี้"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "รับสินค้าจากชุดสินค้า"
@@ -22204,7 +22215,7 @@ msgstr "เป้าหมาย"
msgid "Goods"
msgstr "สินค้า"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "สินค้าระหว่างทาง"
@@ -22213,7 +22224,7 @@ msgstr "สินค้าระหว่างทาง"
msgid "Goods Transferred"
msgstr "สินค้าโอนแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "ได้รับสินค้าสำหรับรายการขาออก {0} แล้ว"
@@ -22396,7 +22407,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "มอบค่าคอมมิชชั่น"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "จำนวนที่มากกว่า"
@@ -22839,7 +22850,7 @@ msgstr "ช่วยให้คุณกระจายงบประมาณ
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "นี่คือบันทึกข้อผิดพลาดสำหรับรายการค่าเสื่อมราคาที่ล้มเหลวที่กล่าวถึงข้างต้น: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "นี่คือตัวเลือกในการดำเนินการต่อ:"
@@ -22867,7 +22878,7 @@ msgstr "ที่นี่ วันหยุดประจำสัปดา
msgid "Hertz"
msgstr "เฮิรตซ์"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "สวัสดี,"
@@ -23066,7 +23077,7 @@ msgstr "วิธีการจัดรูปแบบและนำเสน
msgid "Hrs"
msgstr "ชั่วโมง"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "ทรัพยากรบุคคล"
@@ -23235,6 +23246,12 @@ msgstr "หากเลือก จำนวนภาษีจะถือว
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "หากเลือก จำนวนภาษีจะถือว่ารวมอยู่ในอัตราการพิมพ์ / จำนวนเงินพิมพ์แล้ว"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "หากเลือก เราจะสร้างข้อมูลตัวอย่างเพื่อให้คุณสำรวจระบบ ข้อมูลตัวอย่างนี้สามารถลบได้ในภายหลัง"
@@ -23454,7 +23471,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "หากไม่ใช่ คุณสามารถยกเลิก / ส่งรายการนี้"
@@ -23480,13 +23497,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr "หากเลือกกฎการกำหนดราคาที่สร้างขึ้นสำหรับ 'อัตรา' จะเขียนทับรายการราคา กฎการกำหนดราคาจะเป็นอัตราสุดท้าย ดังนั้นไม่ควรใช้ส่วนลดเพิ่มเติม ดังนั้น ในธุรกรรมเช่น ใบสั่งขาย, ใบสั่งซื้อ ฯลฯ จะถูกดึงในช่อง 'อัตรา' แทนช่อง 'อัตราตามรายการราคา'"
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "หากตั้งค่าไว้ ระบบจะไม่ใช้ที่อยู่อีเมลของผู้ใช้หรือบัญชีอีเมลขาออกมาตรฐานในการส่งคำขอใบเสนอราคา"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "หาก BOM ส่งผลให้เกิดวัสดุเศษ คลังสินค้าเศษต้องถูกเลือก"
@@ -23495,7 +23517,7 @@ msgstr "หาก BOM ส่งผลให้เกิดวัสดุเศ
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "หากบัญชีถูกแช่แข็ง จะอนุญาตให้ผู้ใช้ที่ถูกจำกัดทำรายการได้"
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "หากรายการกำลังทำธุรกรรมเป็นรายการที่มีอัตราการประเมินมูลค่าเป็นศูนย์ในรายการนี้ โปรดเปิดใช้งาน 'อนุญาตอัตราการประเมินมูลค่าเป็นศูนย์' ในตารางรายการ {0}"
@@ -23505,7 +23527,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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "หาก BOM ที่เลือกมีการดำเนินการที่กล่าวถึงในนั้น ระบบจะดึงการดำเนินการทั้งหมดจาก BOM ค่านี้สามารถเปลี่ยนแปลงได้"
@@ -23582,7 +23604,7 @@ msgstr "หากคะแนนสะสมไม่มีวันหมดอ
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "หากใช่ คลังสินค้านี้จะถูกใช้เพื่อเก็บวัสดุที่ถูกปฏิเสธ"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "หากคุณเก็บสต็อกของรายการนี้ในสินค้าคงคลังของคุณ ERPNext จะสร้างรายการบัญชีสต็อกสำหรับแต่ละธุรกรรมของรายการนี้"
@@ -23596,7 +23618,7 @@ msgstr "หากคุณต้องการกระทบยอดธุร
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "หากคุณยังต้องการดำเนินการต่อ โปรดยกเลิกการเลือกช่องทำเครื่องหมาย 'ข้ามรายการประกอบย่อยที่มีอยู่'"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "หากคุณยังต้องการดำเนินการต่อ โปรดเปิดใช้งาน {0}"
@@ -23680,7 +23702,7 @@ msgstr "ละเว้นการตีราคาอัตราแลกเ
msgid "Ignore Existing Ordered Qty"
msgstr "ละเว้นปริมาณที่สั่งซื้อที่มีอยู่"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "ละเว้นปริมาณที่คาดการณ์ที่มีอยู่"
@@ -23767,12 +23789,12 @@ 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 "ละเว้นฟิลด์ Is Opening แบบเก่าที่อนุญาตให้เพิ่มยอดเปิดหลังจากที่ระบบถูกใช้งานในขณะสร้างรายงาน"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "รูปภาพในคำอธิบายถูกลบออกแล้ว หากต้องการปิดการทำงานนี้ ให้ยกเลิกการเลือก \"{0}\" ใน {1}"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "การด้อยค่า"
@@ -23930,7 +23952,7 @@ msgstr "อยู่ในกระบวนการผลิต"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "ในปริมาณ"
@@ -24054,7 +24076,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "ในส่วนนี้ คุณสามารถกำหนดค่าเริ่มต้นที่เกี่ยวข้องกับธุรกรรมทั่วทั้งบริษัทสำหรับรายการนี้ เช่น คลังสินค้าเริ่มต้น รายการราคาเริ่มต้น ผู้จัดจำหน่าย ฯลฯ"
@@ -24285,8 +24307,8 @@ msgstr "รวมรายการสำหรับชุดย่อย"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24357,7 +24379,7 @@ msgstr "การชำระเงินเข้า"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24389,7 +24411,7 @@ msgstr "ปริมาณคงเหลือไม่ถูกต้องห
msgid "Incorrect Batch Consumed"
msgstr "แบทช์ที่ใช้ไม่ถูกต้อง"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "การตรวจสอบในคลังสินค้า (กลุ่ม) สำหรับการสั่งซื้อใหม่ไม่ถูกต้อง"
@@ -24397,7 +24419,7 @@ msgstr "การตรวจสอบในคลังสินค้า (ก
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "ปริมาณส่วนประกอบไม่ถูกต้อง"
@@ -24531,15 +24553,15 @@ msgstr "ระบุว่าแพ็คเกจเป็นส่วนหน
msgid "Indirect Expense"
msgstr "ค่าใช้จ่ายทางอ้อม"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "ค่าใช้จ่ายทางอ้อม"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "รายได้ทางอ้อม"
@@ -24607,14 +24629,14 @@ msgstr "เริ่มต้นแล้ว"
msgid "Inspected By"
msgstr "ตรวจสอบโดย"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "การตรวจสอบถูกปฏิเสธ"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "ต้องการการตรวจสอบ"
@@ -24631,8 +24653,8 @@ msgstr "ต้องการการตรวจสอบก่อนการ
msgid "Inspection Required before Purchase"
msgstr "ต้องการการตรวจสอบก่อนการซื้อ"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "การส่งการตรวจสอบ"
@@ -24662,7 +24684,7 @@ msgstr "บันทึกการติดตั้ง"
msgid "Installation Note Item"
msgstr "รายการบันทึกการติดตั้ง"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "บันทึกการติดตั้ง {0} ได้ถูกส่งแล้ว"
@@ -24701,11 +24723,11 @@ msgstr "คำแนะนำ"
msgid "Insufficient Capacity"
msgstr "ความจุไม่เพียงพอ"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "สิทธิ์ไม่เพียงพอ"
@@ -24713,13 +24735,12 @@ msgstr "สิทธิ์ไม่เพียงพอ"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "สต็อกไม่เพียงพอ"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "สต็อกไม่เพียงพอสำหรับแบทช์"
@@ -24839,13 +24860,13 @@ msgstr "การอ้างอิงการโอนระหว่าง"
msgid "Interest"
msgstr "ดอกเบี้ย"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "ดอกเบี้ยจ่าย"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "รายได้จากดอกเบี้ย"
@@ -24853,8 +24874,8 @@ msgstr "รายได้จากดอกเบี้ย"
msgid "Interest and/or dunning fee"
msgstr "ดอกเบี้ยและ/หรือค่าธรรมเนียมการทวงถาม"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "ดอกเบี้ยเงินฝากประจำ"
@@ -24874,7 +24895,7 @@ msgstr "ภายใน"
msgid "Internal Customer Accounting"
msgstr "บัญชีลูกค้าภายใน"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "ลูกค้าภายในสำหรับบริษัท {0} มีอยู่แล้ว"
@@ -24882,7 +24903,7 @@ msgstr "ลูกค้าภายในสำหรับบริษัท {0
msgid "Internal Purchase Order"
msgstr "ใบสั่งซื้อภายใน"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "การอ้างอิงการขายหรือการจัดส่งภายในหายไป"
@@ -24890,7 +24911,7 @@ msgstr "การอ้างอิงการขายหรือการจ
msgid "Internal Sales Order"
msgstr "คำสั่งซื้อภายใน"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "การอ้างอิงการขายภายในหายไป"
@@ -24921,7 +24942,7 @@ msgstr "ผู้จัดจำหน่ายภายในสำหรับ
msgid "Internal Transfer"
msgstr "การโอนภายใน"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "การอ้างอิงการโอนภายในหายไป"
@@ -24934,7 +24955,12 @@ msgstr "การโอนภายใน"
msgid "Internal Work History"
msgstr "ประวัติการทำงานภายใน"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "การโอนภายในสามารถทำได้เฉพาะในสกุลเงินเริ่มต้นของบริษัทเท่านั้น"
@@ -24950,12 +24976,12 @@ msgstr "ช่วงเวลาควรอยู่ระหว่าง 1 ถ
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "บัญชีไม่ถูกต้อง"
@@ -24976,7 +25002,7 @@ msgstr "จำนวนเงินไม่ถูกต้อง"
msgid "Invalid Attribute"
msgstr "แอตทริบิวต์ไม่ถูกต้อง"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "วันที่ทำซ้ำอัตโนมัติไม่ถูกต้อง"
@@ -24989,7 +25015,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "บาร์โค้ดไม่ถูกต้อง ไม่มีรายการที่แนบมากับบาร์โค้ดนี้"
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "คำสั่งซื้อแบบครอบคลุมไม่ถูกต้องสำหรับลูกค้าและรายการที่เลือก"
@@ -25005,21 +25031,21 @@ msgstr "กระบวนการย่อยไม่ถูกต้อง"
msgid "Invalid Company Field"
msgstr "ฟิลด์บริษัทไม่ถูกต้อง"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "บริษัทไม่ถูกต้องสำหรับธุรกรรมระหว่างบริษัท"
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "ศูนย์ต้นทุนไม่ถูกต้อง"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "วันที่จัดส่งไม่ถูกต้อง"
@@ -25057,7 +25083,7 @@ msgstr "จัดกลุ่มตามไม่ถูกต้อง"
msgid "Invalid Item"
msgstr "รายการไม่ถูกต้อง"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "ค่าเริ่มต้นของรายการไม่ถูกต้อง"
@@ -25071,7 +25097,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "จำนวนเงินซื้อสุทธิไม่ถูกต้อง"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "รายการเปิดไม่ถูกต้อง"
@@ -25079,11 +25105,11 @@ msgstr "รายการเปิดไม่ถูกต้อง"
msgid "Invalid POS Invoices"
msgstr "ใบแจ้งหนี้ POS ไม่ถูกต้อง"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "บัญชีหลักไม่ถูกต้อง"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "หมายเลขชิ้นส่วนไม่ถูกต้อง"
@@ -25113,12 +25139,12 @@ msgstr "การกำหนดค่าการสูญเสียกระ
msgid "Invalid Purchase Invoice"
msgstr "ใบแจ้งหนี้ซื้อไม่ถูกต้อง"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "ปริมาณไม่ถูกต้อง"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "ปริมาณไม่ถูกต้อง"
@@ -25143,12 +25169,12 @@ msgstr "ตารางเวลาไม่ถูกต้อง"
msgid "Invalid Selling Price"
msgstr "ราคาขายไม่ถูกต้อง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "ชุดหมายเลขซีเรียลและแบทช์ไม่ถูกต้อง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "คลังสินค้าต้นทางและปลายทางไม่ถูกต้อง"
@@ -25173,7 +25199,7 @@ msgstr "จำนวนเงินไม่ถูกต้องในราย
msgid "Invalid condition expression"
msgstr "นิพจน์เงื่อนไขไม่ถูกต้อง"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "ไฟล์ URL ไม่ถูกต้อง"
@@ -25185,7 +25211,7 @@ msgstr "สูตรตัวกรองไม่ถูกต้อง กร
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "เหตุผลที่สูญหายไม่ถูกต้อง {0} โปรดสร้างเหตุผลที่สูญหายใหม่"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "ชุดการตั้งชื่อไม่ถูกต้อง (. หายไป) สำหรับ {0}"
@@ -25211,8 +25237,8 @@ msgstr "คำค้นหาไม่ถูกต้อง"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "ค่า {0} ไม่ถูกต้องสำหรับ {1} กับบัญชี {2}"
@@ -25220,7 +25246,7 @@ msgstr "ค่า {0} ไม่ถูกต้องสำหรับ {1} ก
msgid "Invalid {0}"
msgstr "{0} ไม่ถูกต้อง"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} ไม่ถูกต้องสำหรับธุรกรรมระหว่างบริษัท"
@@ -25230,7 +25256,7 @@ msgid "Invalid {0}: {1}"
msgstr "{0} ไม่ถูกต้อง: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "สินค้าคงคลัง"
@@ -25279,8 +25305,8 @@ msgstr "การประเมินมูลค่าสินค้าคง
msgid "Investment Banking"
msgstr "วาณิชธนกิจ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "การลงทุน"
@@ -25330,7 +25356,7 @@ msgstr "การขายลดใบแจ้งหนี้"
msgid "Invoice Document Type Selection Error"
msgstr "ข้อผิดพลาดในการเลือกประเภทเอกสารใบแจ้งหนี้"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "ยอดรวมทั้งหมดในใบแจ้งหนี้"
@@ -25435,7 +25461,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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25456,7 +25482,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25552,8 +25578,7 @@ msgstr "เป็นทางเลือก"
msgid "Is Billable"
msgstr "สามารถเรียกเก็บเงินได้"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "เป็นผู้ติดต่อสำหรับการเรียกเก็บเงิน"
@@ -25995,8 +26020,7 @@ msgstr "เป็นแม่แบบ"
msgid "Is Transporter"
msgstr "เป็นผู้ขนส่ง"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "เป็นที่อยู่บริษัทของคุณ"
@@ -26102,8 +26126,8 @@ msgstr "ประเภทปัญหา"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "ออกใบเดบิตที่มีปริมาณ 0 ต่อใบแจ้งหนี้ขายที่มีอยู่"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26133,11 +26157,11 @@ msgstr "ปัญหา"
msgid "Issuing Date"
msgstr "วันที่ออก"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "อาจใช้เวลาสองสามชั่วโมงเพื่อให้ค่าคงคลังที่ถูกต้องปรากฏหลังจากการรวมรายการ"
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "จำเป็นต้องดึงรายละเอียดรายการ"
@@ -26261,7 +26285,7 @@ msgstr "ข้อความตัวเอียงสำหรับผลร
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26509,7 +26533,7 @@ msgstr "ตะกร้ารายการ"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26571,7 +26595,7 @@ msgstr "ตะกร้ารายการ"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26770,13 +26794,13 @@ msgstr "รายละเอียดของรายการ"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26993,7 +27017,7 @@ msgstr "ผู้ผลิตรายการ"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27033,10 +27057,10 @@ msgstr "ผู้ผลิตรายการ"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27077,10 +27101,6 @@ msgstr "สินค้าหมด"
msgid "Item Price"
msgstr "ราคาของรายการ"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27096,19 +27116,20 @@ msgstr "การตั้งค่าราคาของรายการ"
msgid "Item Price Stock"
msgstr "ราคาสต็อกของรายการ"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "เพิ่มราคาของรายการ {0} ในรายการราคา {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "ราคาของรายการปรากฏหลายครั้งตามรายการราคา ผู้จัดจำหน่าย/ลูกค้า สกุลเงิน รายการ แบทช์ หน่วยวัด ปริมาณ และวันที่"
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "อัปเดตราคาของรายการ {0} ในรายการราคา {1}"
@@ -27295,11 +27316,11 @@ msgstr "รายละเอียดของตัวเลือกของ
msgid "Item Variant Settings"
msgstr "การตั้งค่าตัวเลือกของรายการ"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "ตัวเลือกของรายการ {0} มีอยู่แล้วพร้อมแอตทริบิวต์เดียวกัน"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "อัปเดตตัวเลือกของรายการแล้ว"
@@ -27400,11 +27421,11 @@ msgstr "รายการและคลังสินค้า"
msgid "Item and Warranty Details"
msgstr "รายการและรายละเอียดการรับประกัน"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "รายการสำหรับแถว {0} ไม่ตรงกับคำขอวัสดุ"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "รายการมีตัวเลือก"
@@ -27430,11 +27451,7 @@ msgstr "ชื่อรายการ"
msgid "Item operation"
msgstr "การดำเนินการของรายการ"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "ไม่สามารถอัปเดตปริมาณรายการได้เนื่องจากวัตถุดิบได้รับการประมวลผลแล้ว"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "อัตรารายการถูกอัปเดตเป็นศูนย์เนื่องจากเลือกอนุญาตอัตราการประเมินมูลค่าเป็นศูนย์สำหรับรายการ {0}"
@@ -27453,11 +27470,11 @@ msgstr "อัตราการประเมินมูลค่าของ
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "กำลังดำเนินการโพสต์ใหม่การประเมินมูลค่าของรายการ รายงานอาจแสดงการประเมินมูลค่าของรายการไม่ถูกต้อง"
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "ตัวเลือกของรายการ {0} มีอยู่พร้อมแอตทริบิวต์เดียวกัน"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27474,7 +27491,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "ไม่สามารถสั่งซื้อรายการ {0} ได้มากกว่า {1} ต่อคำสั่งซื้อแบบครอบคลุม {2}"
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "รายการ {0} ไม่มีอยู่"
@@ -27486,7 +27503,7 @@ msgstr "รายการ {0} ไม่มีอยู่ในระบบห
msgid "Item {0} does not exist."
msgstr "รายการ {0} ไม่มีอยู่"
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "รายการ {0} ถูกป้อนหลายครั้ง"
@@ -27498,15 +27515,15 @@ msgstr "รายการ {0} ถูกคืนแล้ว"
msgid "Item {0} has been disabled"
msgstr "รายการ {0} ถูกปิดใช้งาน"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "รายการ {0} ไม่มีหมายเลขซีเรียล เฉพาะรายการที่มีหมายเลขซีเรียลเท่านั้นที่สามารถจัดส่งตามหมายเลขซีเรียลได้"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "รายการ {0} ถึงจุดสิ้นสุดของอายุการใช้งานในวันที่ {1}"
@@ -27518,15 +27535,15 @@ msgstr "ละเว้นรายการ {0} เนื่องจากไ
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "รายการ {0} ถูกจอง/จัดส่งแล้วต่อคำสั่งขาย {1}"
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "รายการ {0} ถูกยกเลิก"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "รายการ {0} ถูกปิดใช้งาน"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27534,7 +27551,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "รายการ {0} ไม่ใช่รายการที่มีหมายเลขซีเรียล"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "รายการ {0} ไม่ใช่รายการสต็อก"
@@ -27542,11 +27559,11 @@ msgstr "รายการ {0} ไม่ใช่รายการสต็อ
msgid "Item {0} is not a subcontracted item"
msgstr "รายการ {0} ไม่ใช่รายการที่จ้างช่วง"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "รายการ {0} ไม่ได้ใช้งานหรือถึงจุดสิ้นสุดของอายุการใช้งานแล้ว"
@@ -27562,7 +27579,7 @@ msgstr "รายการ {0} ต้องเป็นรายการที
msgid "Item {0} must be a non-stock item"
msgstr "รายการ {0} ต้องเป็นรายการที่ไม่ใช่สต็อก"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "ไม่พบรายการ {0} ในตาราง 'วัตถุดิบที่จัดหา' ใน {1} {2}"
@@ -27570,7 +27587,7 @@ msgstr "ไม่พบรายการ {0} ในตาราง 'วัต
msgid "Item {0} not found."
msgstr "ไม่พบรายการ {0}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "รายการ {0}: ปริมาณที่สั่งซื้อ {1} ต้องไม่น้อยกว่าปริมาณการสั่งซื้อขั้นต่ำ {2} (กำหนดในรายการ)"
@@ -27578,7 +27595,7 @@ msgstr "รายการ {0}: ปริมาณที่สั่งซื้
msgid "Item {0}: {1} qty produced. "
msgstr "สินค้า {0}: ผลิตแล้ว {1} หน่วย "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "รายการ {} ไม่มีอยู่"
@@ -27624,7 +27641,7 @@ msgstr "ทะเบียนการขายสินค้าตามรา
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "ต้องระบุสินค้า/รหัสสินค้าเพื่อรับเทมเพลตภาษีสินค้า"
@@ -27648,7 +27665,7 @@ msgstr "แคตตาล็อกสินค้า"
msgid "Items Filter"
msgstr "ตัวกรองรายการ"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "ต้องการรายการ"
@@ -27672,11 +27689,11 @@ msgstr "รายการที่ต้องการ"
msgid "Items and Pricing"
msgstr "สินค้าและราคา"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "ไม่สามารถอัปเดตสินค้าได้เนื่องจากมีคำสั่งซื้อผู้รับเหมาช่วงขาเข้าที่เชื่อมโยงกับใบสั่งขายผู้รับเหมาช่วงนี้อยู่"
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "ไม่สามารถอัปเดตรายการได้เนื่องจากมีการสร้างคำสั่งจ้างช่วงต่อใบสั่งซื้อ {0}"
@@ -27688,7 +27705,7 @@ msgstr "รายการสำหรับคำขอวัตถุดิบ
msgid "Items not found."
msgstr "ไม่พบรายการ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "อัตรารายการถูกอัปเดตเป็นศูนย์เนื่องจากเลือกอนุญาตอัตราการประเมินมูลค่าเป็นศูนย์สำหรับรายการต่อไปนี้: {0}"
@@ -27698,7 +27715,7 @@ msgstr "อัตรารายการถูกอัปเดตเป็น
msgid "Items to Be Repost"
msgstr "รายการที่จะโพสต์ใหม่"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "ต้องการรายการที่จะผลิตเพื่อดึงวัตถุดิบที่เกี่ยวข้องกับมัน"
@@ -27763,9 +27780,9 @@ msgstr "กำลังการผลิตของงาน"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27827,7 +27844,7 @@ msgstr "บันทึกเวลาในใบงาน"
msgid "Job Card and Capacity Planning"
msgstr "ใบงานและการวางแผนกำลังการผลิต"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "ใบงาน {0} เสร็จสมบูรณ์แล้ว"
@@ -27903,7 +27920,7 @@ msgstr "ชื่อผู้รับจ้างงาน"
msgid "Job Worker Warehouse"
msgstr "คลังสินค้าผู้รับจ้างงาน"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "สร้างใบงาน {0} แล้ว"
@@ -28123,7 +28140,7 @@ msgstr "กิโลวัตต์"
msgid "Kilowatt-Hour"
msgstr "กิโลวัตต์-ชั่วโมง"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "กรุณายกเลิกการบันทึกการผลิตก่อนสำหรับคำสั่งงาน {0}"
@@ -28251,7 +28268,7 @@ msgstr "วันที่เสร็จสิ้นล่าสุด"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "การอัปเดตรายการบัญชีแยกประเภททั่วไปครั้งล่าสุดเสร็จสิ้น {} การดำเนินการนี้ไม่ได้รับอนุญาตในขณะที่ระบบกำลังใช้งานอยู่ โปรดรอ 5 นาทีก่อนลองอีกครั้ง"
@@ -28333,7 +28350,7 @@ msgstr "วันที่ตรวจสอบคาร์บอนครั้
msgid "Last transacted"
msgstr "ธุรกรรมครั้งล่าสุด"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "ล่าสุด"
@@ -28584,12 +28601,12 @@ msgstr "ฟิลด์เก่า"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "นิติบุคคล / บริษัทในเครือที่มีผังบัญชีแยกต่างหากที่เป็นขององค์กร"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "ค่าใช้จ่ายทางกฎหมาย"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "คำอธิบาย"
@@ -28600,7 +28617,7 @@ msgstr "คำอธิบาย"
msgid "Length (cm)"
msgstr "ความยาว (ซม.)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "น้อยกว่าจำนวนเงิน"
@@ -28659,7 +28676,7 @@ msgstr "หมายเลขใบอนุญาต"
msgid "License Plate"
msgstr "ป้ายทะเบียน"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "เกินขีดจำกัด"
@@ -28720,7 +28737,7 @@ msgstr "ลิงก์ไปยังคำขอวัสดุ"
msgid "Link with Customer"
msgstr "ลิงก์กับลูกค้า"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "ลิงก์กับผู้จัดจำหน่าย"
@@ -28741,12 +28758,12 @@ msgstr "ใบแจ้งหนี้ที่ลิงก์"
msgid "Linked Location"
msgstr "ตำแหน่งที่ลิงก์"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "ลิงก์กับเอกสารที่ส่งแล้ว"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "การลิงก์ล้มเหลว"
@@ -28754,7 +28771,7 @@ msgstr "การลิงก์ล้มเหลว"
msgid "Linking to Customer Failed. Please try again."
msgstr "การลิงก์กับลูกค้าล้มเหลว โปรดลองอีกครั้ง"
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "การลิงก์กับผู้จัดจำหน่ายล้มเหลว โปรดลองอีกครั้ง"
@@ -28812,8 +28829,8 @@ msgstr "วันที่เริ่มเงินกู้"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "ต้องระบุวันที่เริ่มเงินกู้และระยะเวลาเงินกู้เพื่อบันทึกการขายลดใบแจ้งหนี้"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "สินเชื่อ (หนี้สิน)"
@@ -28858,8 +28875,8 @@ msgstr "บันทึกอัตราการขายและการซ
msgid "Logo"
msgstr "โลโก้"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "การกันสำรองระยะยาว"
@@ -29060,6 +29077,11 @@ msgstr "ระดับโปรแกรมสะสมคะแนน"
msgid "Loyalty Program Type"
msgstr "ประเภทโปรแกรมสะสมคะแนน"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29103,10 +29125,10 @@ msgstr "เครื่องจักรขัดข้อง"
msgid "Machine operator errors"
msgstr "ข้อผิดพลาดจากผู้ควบคุมเครื่องจักร"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "หลัก"
@@ -29349,9 +29371,9 @@ msgstr "วิชาเอก/วิชาเลือก"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "สร้าง"
@@ -29371,7 +29393,7 @@ msgstr "สร้างรายการค่าเสื่อมราคา
msgid "Make Difference Entry"
msgstr "สร้างรายการความแตกต่าง"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "กำหนดระยะเวลาการผลิต"
@@ -29409,12 +29431,12 @@ msgstr "สร้างใบแจ้งหนี้ขาย"
msgid "Make Serial No / Batch from Work Order"
msgstr "สร้างหมายเลขซีเรียล / แบทช์จากคำสั่งงาน"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "สร้างรายการสต็อก"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "สร้างใบสั่งซื้อจ้างช่วง"
@@ -29430,11 +29452,11 @@ msgstr "โทรออก"
msgid "Make project from a template."
msgstr "สร้างโครงการจากแม่แบบ"
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "สร้างตัวเลือก {0}"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "สร้างตัวเลือก {0} หลายตัว"
@@ -29442,8 +29464,8 @@ msgstr "สร้างตัวเลือก {0} หลายตัว"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "การสร้างรายการบัญชีต่อบัญชีล่วงหน้า: {0} ไม่แนะนำ รายการเหล่านี้จะไม่สามารถใช้สำหรับการกระทบยอดได้"
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "จัดการ"
@@ -29462,7 +29484,7 @@ msgstr "จัดการค่าคอมมิชชั่นของพั
msgid "Manage your orders"
msgstr "จัดการคำสั่งซื้อของคุณ"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "การจัดการ"
@@ -29478,7 +29500,7 @@ msgstr "กรรมการผู้จัดการ"
msgid "Mandatory Accounting Dimension"
msgstr "มิติการบัญชีที่จำเป็น"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "ฟิลด์ที่จำเป็น"
@@ -29577,8 +29599,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29657,7 +29679,7 @@ msgstr "ผู้ผลิต"
msgid "Manufacturer Part Number"
msgstr "หมายเลขชิ้นส่วนผู้ผลิต"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "หมายเลขชิ้นส่วนผู้ผลิต {0} ไม่ถูกต้อง"
@@ -29682,7 +29704,7 @@ msgstr "ผู้ผลิตที่ใช้ในรายการ"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29727,10 +29749,6 @@ msgstr "วันที่ผลิต"
msgid "Manufacturing Manager"
msgstr "ผู้จัดการการผลิต"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "ปริมาณการผลิตเป็นสิ่งจำเป็น"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29897,6 +29915,12 @@ msgstr "สถานภาพสมรส"
msgid "Mark As Closed"
msgstr "ทำเครื่องหมายเป็นปิด"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29911,12 +29935,12 @@ msgstr "ทำเครื่องหมายเป็นปิด"
msgid "Market Segment"
msgstr "ส่วนแบ่งตลาด"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "การตลาด"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "ค่าการตลาด"
@@ -29995,7 +30019,7 @@ msgstr ""
msgid "Material"
msgstr "วัสดุ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "การใช้วัสดุ"
@@ -30003,7 +30027,7 @@ msgstr "การใช้วัสดุ"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "การใช้วัสดุเพื่อการผลิต"
@@ -30084,7 +30108,7 @@ msgstr "การรับวัสดุ"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30181,11 +30205,11 @@ msgstr "รายการในแผนใบขอวัสดุ"
msgid "Material Request Type"
msgstr "ประเภทใบขอวัสดุ"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "ไม่ได้สร้างใบขอวัสดุ เนื่องจากมีปริมาณวัตถุดิบเพียงพอแล้ว"
@@ -30253,7 +30277,7 @@ msgstr "วัสดุที่คืนจากงานระหว่าง
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30319,12 +30343,12 @@ msgstr "วัสดุให้ซัพพลายเออร์"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "ได้รับวัสดุสำหรับ {0} {1} แล้ว"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "ต้องโอนวัสดุไปยังคลังสินค้าระหว่างทำสำหรับใบงาน {0}"
@@ -30395,9 +30419,9 @@ msgstr "คะแนนสูงสุด"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "ส่วนลดสูงสุดที่อนุญาตสำหรับสินค้า: {0} คือ {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30429,11 +30453,11 @@ msgstr "จำนวนเงินชำระสูงสุด"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "ตัวอย่างสูงสุด - {0} สามารถเก็บไว้สำหรับแบทช์ {1} และรายการ {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "ตัวอย่างสูงสุด - {0} ได้ถูกเก็บไว้แล้วสำหรับแบทช์ {1} และรายการ {2} ในแบทช์ {3}"
@@ -30494,15 +30518,10 @@ msgstr "เมกะจูล"
msgid "Megawatt"
msgstr "เมกะวัตต์"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "ระบุอัตราการประเมินมูลค่าในมาสเตอร์รายการ"
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "ระบุหากเป็นบัญชีลูกหนี้ที่ไม่เป็นมาตรฐาน"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30552,7 +30571,7 @@ msgstr "รวมกับบัญชีที่มีอยู่"
msgid "Merged"
msgstr "ถูกรวมแล้ว"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "การรวมสามารถทำได้เฉพาะเมื่อคุณสมบัติต่อไปนี้เหมือนกันในทั้งสองระเบียน: เป็นกลุ่ม, ประเภทหลัก, บริษัท และสกุลเงินบัญชี"
@@ -30582,7 +30601,7 @@ msgstr "ข้อความจะถูกส่งไปยังผู้ใ
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "ข้อความที่ยาวกว่า 160 ตัวอักษรจะถูกแบ่งเป็นหลายข้อความ"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30783,7 +30802,7 @@ msgstr "ปริมาณขั้นต่ำต้องไม่มากก
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "ปริมาณขั้นต่ำควรมากกว่าปริมาณที่วนซ้ำ"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "ค่าต่ำสุด: {0}, ค่าสูงสุด: {1}, เพิ่มทีละ: {2}"
@@ -30872,8 +30891,8 @@ msgstr "นาที"
msgid "Miscellaneous"
msgstr "เบ็ดเตล็ด"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "ค่าใช้จ่ายเบ็ดเตล็ด"
@@ -30881,15 +30900,15 @@ msgstr "ค่าใช้จ่ายเบ็ดเตล็ด"
msgid "Mismatch"
msgstr "ไม่ตรงกัน"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "หายไป"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "บัญชีที่หายไป"
@@ -30919,7 +30938,7 @@ msgstr "ฟิลเตอร์ที่หายไป"
msgid "Missing Finance Book"
msgstr "สมุดการเงินที่หายไป"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "สินค้าสำเร็จรูปที่หายไป"
@@ -30927,7 +30946,7 @@ msgstr "สินค้าสำเร็จรูปที่หายไป"
msgid "Missing Formula"
msgstr "สูตรที่หายไป"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "รายการที่หายไป"
@@ -30964,7 +30983,7 @@ msgid "Missing required filter: {0}"
msgstr "ไม่มีตัวกรองที่จำเป็น: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "ค่าที่หายไป"
@@ -31213,11 +31232,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "พบโปรแกรมสะสมคะแนนหลายรายการสำหรับลูกค้า {} โปรดเลือกด้วยตนเอง"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "รายการเปิด POS หลายรายการ"
@@ -31239,11 +31258,11 @@ msgstr "ตัวเลือกหลายรายการ"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "มีหลายช่องสำหรับข้อมูลบริษัท: {0}กรุณาเลือกด้วยตนเอง"
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "มีปีงบประมาณหลายปีสำหรับวันที่ {0} โปรดตั้งค่าบริษัทในปีงบประมาณ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "ไม่สามารถทำเครื่องหมายรายการหลายรายการเป็นรายการที่เสร็จสิ้นแล้ว"
@@ -31252,7 +31271,7 @@ msgid "Music"
msgstr "ดนตรี"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31339,7 +31358,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "การตั้งชื่อซีรีส์ '{0}' สำหรับ DocType '{1}' ไม่มีตัวคั่นมาตรฐาน '.' หรือ '{{' ใช้การดึงข้อมูลแบบ fallback แทน"
@@ -31383,7 +31402,7 @@ msgstr "การวิเคราะห์ความต้องการ"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "ไม่อนุญาตให้มีปริมาณติดลบ"
@@ -31392,7 +31411,7 @@ msgstr "ไม่อนุญาตให้มีปริมาณติดล
msgid "Negative Stock Error"
msgstr "ข้อผิดพลาดของสินค้าคงคลังติดลบ"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "ไม่อนุญาตให้อัตราการประเมินมูลค่าติดลบ"
@@ -31698,7 +31717,7 @@ msgstr "น้ำหนักสุทธิ"
msgid "Net Weight UOM"
msgstr "หน่วยวัดน้ำหนักสุทธิ"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "การสูญเสียความแม่นยำในการคำนวณยอดรวมสุทธิ"
@@ -31875,7 +31894,7 @@ msgstr "ชื่อคลังสินค้าใหม่"
msgid "New Workplace"
msgstr "สถานที่ทำงานใหม่"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "วงเงินเครดิตใหม่ต่ำกว่ายอดค้างชำระปัจจุบันสำหรับลูกค้า วงเงินเครดิตต้องไม่น้อยกว่า {0}"
@@ -31929,7 +31948,7 @@ msgstr "อีเมลถัดไปจะถูกส่งใน:"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "ไม่มีบัญชีที่ตรงกับตัวกรองเหล่านี้: {}"
@@ -31942,7 +31961,7 @@ msgstr "ไม่มีการดำเนินการ"
msgid "No Answer"
msgstr "ไม่มีคำตอบ"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "ไม่พบลูกค้าสำหรับธุรกรรมระหว่างบริษัทที่เป็นตัวแทนของบริษัท {0}"
@@ -31955,7 +31974,7 @@ msgstr "ไม่พบลูกค้าตามตัวเลือกที
msgid "No Delivery Note selected for Customer {}"
msgstr "ไม่ได้เลือกใบส่งของสำหรับลูกค้า {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "ไม่มี DocTypes ในรายการที่จะลบ กรุณาสร้างหรือนำเข้ารายการก่อนส่ง"
@@ -31971,7 +31990,7 @@ msgstr "ไม่มีสินค้าที่มีบาร์โค้ด
msgid "No Item with Serial No {0}"
msgstr "ไม่มีสินค้าที่มีหมายเลขซีเรียล {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "ไม่ได้เลือกสินค้าสำหรับการโอน"
@@ -32006,7 +32025,7 @@ msgstr "ไม่พบโปรไฟล์ POS กรุณาสร้าง
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "ไม่มีสิทธิ์"
@@ -32035,19 +32054,19 @@ msgstr "ไม่มีสต็อกในขณะนี้"
msgid "No Summary"
msgstr "ไม่มีสรุป"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "ไม่พบซัพพลายเออร์สำหรับธุรกรรมระหว่างบริษัทที่เป็นตัวแทนของบริษัท {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "ไม่พบข้อมูลการหักภาษี ณ ที่จ่ายสำหรับวันที่ลงรายการปัจจุบัน"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "ยังไม่ได้ตั้งค่าบัญชีหักภาษี ณ ที่จ่ายสำหรับบริษัท {0} ในหมวดหมู่การหักภาษี ณ ที่จ่าย {1}"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "ไม่มีเงื่อนไข"
@@ -32077,7 +32096,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "ไม่พบ BOM ที่ใช้งานอยู่สำหรับสินค้า {0} ไม่สามารถรับประกันการจัดส่งด้วยหมายเลขซีเรียลได้"
@@ -32271,7 +32290,7 @@ msgstr "จำนวนสถานีงาน"
msgid "No open Material Requests found for the given criteria."
msgstr "ไม่พบคำขอวัสดุที่เปิดอยู่ตามเกณฑ์ที่กำหนด"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "ไม่พบรายการเปิด POS ที่เปิดอยู่สำหรับโปรไฟล์ POS {0}"
@@ -32295,7 +32314,7 @@ msgstr "ไม่มีใบแจ้งหนี้ที่ค้างชำ
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "ไม่พบ {0} ที่ค้างชำระสำหรับ {1} {2} ที่ตรงตามตัวกรองที่คุณระบุ"
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "ไม่พบคำขอวัสดุที่ค้างอยู่เพื่อเชื่อมโยงกับรายการที่ให้มา"
@@ -32366,7 +32385,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "ไม่มีการสร้างรายการบัญชีแยกประเภทสต็อก โปรดตั้งค่าปริมาณหรืออัตราการประเมินมูลค่าสำหรับรายการอย่างถูกต้องและลองอีกครั้ง"
@@ -32399,7 +32418,7 @@ msgstr "ไม่มีค่า"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "ไม่พบ {0} สำหรับธุรกรรมระหว่างบริษัท"
@@ -32444,8 +32463,8 @@ msgstr "ไม่แสวงหากำไร"
msgid "Non stock items"
msgstr "รายการที่ไม่ใช่สต็อก"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "หนี้สินหมุนเวียน"
@@ -32546,7 +32565,7 @@ msgstr "ไม่สามารถค้นหาปีงบประมาณ
msgid "Not allow to set alternative item for the item {0}"
msgstr "ไม่อนุญาตให้ตั้งค่ารายการทางเลือกสำหรับรายการ {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "ไม่อนุญาตให้สร้างมิติการบัญชีสำหรับ {0}"
@@ -32600,7 +32619,7 @@ msgstr "หมายเหตุ: หากคุณต้องการใช
msgid "Note: Item {0} added multiple times"
msgstr "หมายเหตุ: เพิ่มรายการ {0} หลายครั้ง"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "หมายเหตุ: จะไม่สร้างรายการชำระเงินเนื่องจากไม่ได้ระบุ 'บัญชีเงินสดหรือธนาคาร'"
@@ -32608,7 +32627,7 @@ msgstr "หมายเหตุ: จะไม่สร้างรายกา
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "หมายเหตุ: ศูนย์ต้นทุนนี้เป็นกลุ่ม ไม่สามารถทำรายการบัญชีกับกลุ่มได้"
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "หมายเหตุ: เพื่อรวมรายการ ให้สร้างการกระทบยอดสต็อกแยกต่างหากสำหรับรายการเก่า {0}"
@@ -32791,6 +32810,11 @@ msgstr "จำนวนบัญชีใหม่ จะรวมอยู่
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "จำนวนศูนย์ต้นทุนใหม่ จะรวมอยู่ในชื่อศูนย์ต้นทุนเป็นคำนำหน้า"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32850,18 +32874,18 @@ msgstr "ค่ามาตรวัดระยะทาง (ล่าสุด)
msgid "Offer Date"
msgstr "วันที่เสนอ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "เครื่องใช้สำนักงาน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "ค่าบำรุงรักษาสำนักงาน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "ค่าเช่าสำนักงาน"
@@ -32989,7 +33013,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "เมื่อกำหนดแล้ว ใบแจ้งหนี้นี้จะถูกระงับจนถึงวันที่กำหนด"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "เมื่อคำสั่งงานถูกปิดแล้ว จะไม่สามารถดำเนินการต่อได้"
@@ -33029,7 +33053,7 @@ msgstr "รองรับเฉพาะ 'รายการชำระเง
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "สามารถใช้เฉพาะไฟล์ CSV และ Excel สำหรับการนำเข้าข้อมูล โปรดตรวจสอบรูปแบบไฟล์ที่คุณพยายามอัปโหลด"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "อนุญาตเฉพาะไฟล์ CSV เท่านั้น"
@@ -33048,7 +33072,7 @@ msgstr "หักภาษีเฉพาะส่วนที่เกินเ
msgid "Only Include Allocated Payments"
msgstr "รวมเฉพาะการชำระเงินที่จัดสรรแล้ว"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "เฉพาะผู้ปกครองเท่านั้นที่สามารถเป็นประเภท {0}"
@@ -33085,7 +33109,7 @@ msgstr "เมื่อใช้ค่าธรรมเนียมยกเว
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "สามารถเลือก 'Is Final Finished Good' ได้เพียงหนึ่งรายการเท่านั้นเมื่อเปิดใช้งาน 'ติดตามสินค้าครึ่งสำเร็จ'"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "สามารถสร้างรายการ {0} ได้เพียงรายการเดียวต่อคำสั่งงาน {1}"
@@ -33303,8 +33327,8 @@ msgstr "ยอดคงเหลือเปิด = ยอดเริ่มต
msgid "Opening Balance Details"
msgstr "รายละเอียดยอดคงเหลือเปิด"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "ยอดคงเหลือเปิดทุน"
@@ -33327,7 +33351,7 @@ msgstr "วันเปิดทำการ"
msgid "Opening Entry"
msgstr "รายการเปิด"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "ไม่สามารถสร้างรายการเปิดได้หลังจากที่มีการสร้างใบเสร็จปิดงวดแล้ว"
@@ -33360,7 +33384,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "ใบแจ้งหนี้มีการปรับยอดปัดเศษจำนวน {0}. จำเป็นต้องมีบัญชี '{1}' เพื่อลงรายการค่าเหล่านี้ กรุณาตั้งค่าใน บริษัท: {2}. หรือ สามารถเปิดใช้งาน '{3}' เพื่อไม่ให้มีการลงรายการการปรับยอดปัดเศษใดๆ"
@@ -33396,16 +33420,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "สต็อกเริ่มต้น"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33423,12 +33447,15 @@ msgstr "มูลค่าเริ่มต้น"
msgid "Opening and Closing"
msgstr "การเปิดและการปิด"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "การสร้างสต็อกเริ่มต้นได้ถูกจัดคิวแล้วและจะสร้างขึ้นในเบื้องหลัง กรุณาตรวจสอบรายการสต็อกหลังจากผ่านไปสักครู่"
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "องค์ประกอบปฏิบัติการ"
@@ -33460,7 +33487,7 @@ msgstr "ค่าใช้จ่ายในการดำเนินงาน
msgid "Operating Cost Per BOM Quantity"
msgstr "ต้นทุนการดำเนินงานต่อปริมาณ BOM"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "ค่าใช้จ่ายในการดำเนินงานตามใบสั่งงาน / BOM"
@@ -33503,15 +33530,15 @@ msgstr "คำอธิบายการปฏิบัติการ"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "รหัสประจำตัว"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ปฏิบัติการ ไอดี"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33536,7 +33563,7 @@ msgstr "การดำเนินการตามหมายเลขแถ
msgid "Operation Time"
msgstr "เวลาการดำเนินการ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "เวลาการดำเนินการต้องมากกว่า 0 สำหรับการดำเนินการ {0}"
@@ -33551,11 +33578,11 @@ msgstr "การดำเนินการเสร็จสิ้นสำห
msgid "Operation time does not depend on quantity to produce"
msgstr "เวลาในการดำเนินการไม่ได้ขึ้นอยู่กับปริมาณที่จะผลิต"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "การดำเนินการ {0} ถูกเพิ่มหลายครั้งในคำสั่งงาน {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "การดำเนินการ {0} ไม่ได้เป็นของคำสั่งงาน {1}"
@@ -33571,9 +33598,9 @@ msgstr "การดำเนินการ {0} ยาวนานกว่า
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33746,7 +33773,7 @@ msgstr "สร้างโอกาส {0}"
msgid "Optimize Route"
msgstr "เพิ่มประสิทธิภาพเส้นทาง"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33896,7 +33923,7 @@ msgstr "ปริมาณที่สั่งซื้อ"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "คำสั่งซื้อ"
@@ -34012,7 +34039,7 @@ msgstr "ออนซ์/แกลลอน (สหรัฐอเมริกา
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "ปริมาณออก"
@@ -34050,7 +34077,7 @@ msgstr "หมดประกัน"
msgid "Out of stock"
msgstr "สินค้าหมด"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "รายการเปิดระบบ POS ล้าสมัย"
@@ -34069,6 +34096,7 @@ msgstr "การชำระเงินขาออก"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "อัตราขาออก"
@@ -34104,7 +34132,7 @@ msgstr "ค้างชำระ (สกุลเงินบริษัท)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34114,7 +34142,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34174,17 +34202,22 @@ msgstr "ค่าเผื่อการเรียกเก็บเกิน
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "ค่าเผื่อการส่งมอบ/การรับมอบเกิน (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "ค่าเผื่อการหยิบเกิน"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "การรับเกิน"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "การรับ/ส่งมอบเกิน {0} {1} ถูกละเว้นสำหรับรายการ {2} เนื่องจากคุณมีบทบาท {3}"
@@ -34204,11 +34237,11 @@ msgstr "ค่าเบี้ยเลี้ยงเกินกำหนด (%
msgid "Over Withheld"
msgstr "เกินที่ถูกหักไว้"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "การเรียกเก็บเงินเกิน {0} {1} ถูกละเว้นสำหรับรายการ {2} เนื่องจากคุณมีบทบาท {3}"
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "การเรียกเก็บเงินเกิน {} ถูกละเว้นเนื่องจากคุณมีบทบาท {}"
@@ -34508,7 +34541,7 @@ msgstr "ตัวเลือกสินค้า POS"
msgid "POS Opening Entry"
msgstr "รายการเปิด POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "รายการเปิด POS - {0} ล้าสมัยแล้ว กรุณาปิด POS และสร้างรายการเปิด POS ใหม่"
@@ -34529,7 +34562,7 @@ msgstr "รายละเอียดรายการเปิด POS"
msgid "POS Opening Entry Exists"
msgstr "มีรายการเปิดใช้งาน POS อยู่แล้ว"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "ไม่มีรายการเปิด POS"
@@ -34565,7 +34598,7 @@ msgstr "วิธีการชำระเงิน POS"
msgid "POS Profile"
msgstr "โปรไฟล์ POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "โปรไฟล์ POS - {0} มีรายการเปิด POS ที่เปิดอยู่หลายรายการ กรุณาปิดหรือยกเลิกรายการที่มีอยู่ก่อนดำเนินการต่อ"
@@ -34583,11 +34616,11 @@ msgstr "ผู้ใช้โปรไฟล์ POS"
msgid "POS Profile doesn't match {}"
msgstr "โปรไฟล์ POS ไม่ตรงกับ {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "โปรไฟล์ POS เป็นสิ่งจำเป็นในการทำเครื่องหมายใบแจ้งหนี้นี้เป็นธุรกรรม POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "ต้องการโปรไฟล์ POS เพื่อสร้างรายการ POS"
@@ -34693,7 +34726,7 @@ msgstr "รายการที่บรรจุแล้ว"
msgid "Packed Items"
msgstr "รายการที่บรรจุแล้ว"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "รายการที่บรรจุแล้วไม่สามารถโอนภายในได้"
@@ -34730,7 +34763,7 @@ msgstr "ใบบรรจุ"
msgid "Packing Slip Item"
msgstr "รายการใบบรรจุ"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "ใบบรรจุถูกยกเลิก"
@@ -34771,7 +34804,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34837,7 +34870,7 @@ msgid "Paid To Account Type"
msgstr "ชำระไปยังประเภทบัญชี"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "จำนวนเงินที่ชำระ + จำนวนเงินที่ตัดบัญชีไม่สามารถมากกว่ายอดรวมได้"
@@ -34931,7 +34964,7 @@ msgstr "ชุดผู้ปกครอง"
msgid "Parent Company"
msgstr "บริษัทผู้ปกครอง"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "บริษัทผู้ปกครองต้องเป็นบริษัทกลุ่ม"
@@ -35058,7 +35091,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "โอนวัสดุบางส่วน"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "ไม่อนุญาตให้ชำระเงินบางส่วนในธุรกรรม POS"
@@ -35271,7 +35304,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35298,7 +35331,7 @@ msgstr "คู่สัญญา"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "บัญชีคู่สัญญา"
@@ -35331,7 +35364,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "เลขที่บัญชีคู่สัญญา (ใบแจ้งยอดธนาคาร)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "สกุลเงินบัญชีคู่สัญญา {0} ({1}) และสกุลเงินเอกสาร ({2}) ควรเหมือนกัน"
@@ -35483,7 +35516,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35592,7 +35625,7 @@ msgstr "เหตุการณ์ที่ผ่านมา"
msgid "Pause"
msgstr "หยุดชั่วคราว"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "หยุดงานชั่วคราว"
@@ -35643,7 +35676,7 @@ msgid "Payable"
msgstr "เจ้าหนี้"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35677,7 +35710,7 @@ msgstr "การตั้งค่าผู้จ่าย"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35824,7 +35857,7 @@ msgstr "รายการชำระเงินถูกแก้ไขหล
msgid "Payment Entry is already created"
msgstr "สร้างรายการชำระเงินแล้ว"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "รายการชำระเงิน {0} เชื่อมโยงกับคำสั่งซื้อ {1} ตรวจสอบว่าควรดึงเป็นเงินล่วงหน้าในใบแจ้งหนี้นี้หรือไม่"
@@ -36049,7 +36082,7 @@ msgstr "การอ้างอิงการชำระเงิน"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36114,7 +36147,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36143,7 +36176,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36199,6 +36232,7 @@ msgstr "สถานะเงื่อนไขการชำระเงิน
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36213,6 +36247,7 @@ msgstr "สถานะเงื่อนไขการชำระเงิน
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36270,7 +36305,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "วิธีการชำระเงินเป็นสิ่งจำเป็น โปรดเพิ่มวิธีการชำระเงินอย่างน้อยหนึ่งวิธี"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36345,8 +36380,8 @@ msgstr "การชำระเงินได้รับการปรับ
msgid "Payroll Entry"
msgstr "รายการบัญชีเงินเดือน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "เงินเดือนค้างจ่าย"
@@ -36393,10 +36428,14 @@ msgstr "กิจกรรมที่รอดำเนินการ"
msgid "Pending Amount"
msgstr "จำนวนเงินค้างชำระ"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36405,9 +36444,18 @@ 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:273
msgid "Pending Quantity"
msgstr "ปริมาณที่รอดำเนินการ"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36437,6 +36485,14 @@ msgstr "กิจกรรมที่รอดำเนินการสำห
msgid "Pending processing"
msgstr "อยู่ระหว่างการดำเนินการ"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "กองทุนบำเหน็จบำนาญ"
@@ -36547,7 +36603,7 @@ msgstr "การวิเคราะห์การรับรู้"
msgid "Period Based On"
msgstr "รอบที่อ้างอิง"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "ปิดรอบ"
@@ -37111,8 +37167,8 @@ msgstr "แดชบอร์ดโรงงาน"
msgid "Plant Floor"
msgstr "พื้นที่โรงงาน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "โรงงานและเครื่องจักร"
@@ -37148,7 +37204,7 @@ msgstr "โปรดตั้งค่าลำดับความสำคั
msgid "Please Set Supplier Group in Buying Settings."
msgstr "โปรดตั้งค่ากลุ่มผู้จัดจำหน่ายในการตั้งค่าการซื้อ"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "โปรดระบุบัญชี"
@@ -37196,7 +37252,7 @@ msgstr "โปรดเพิ่มคอลัมน์บัญชีธนา
msgid "Please add the account to root level Company - {0}"
msgstr "โปรดเพิ่มบัญชีไปยังบริษัทระดับราก - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "โปรดเพิ่มบัญชีไปยังบริษัทระดับราก - {}"
@@ -37204,7 +37260,7 @@ msgstr "โปรดเพิ่มบัญชีไปยังบริษั
msgid "Please add {1} role to user {0}."
msgstr "โปรดเพิ่มบทบาท {1} ให้กับผู้ใช้ {0}"
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "โปรดปรับปริมาณหรือแก้ไข {0} เพื่อดำเนินการต่อ"
@@ -37212,7 +37268,7 @@ msgstr "โปรดปรับปริมาณหรือแก้ไข {0
msgid "Please attach CSV file"
msgstr "โปรดแนบไฟล์ CSV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "โปรดยกเลิกและแก้ไขรายการชำระเงิน"
@@ -37246,7 +37302,7 @@ msgstr "โปรดตรวจสอบกับการดำเนินก
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "โปรดตรวจสอบข้อความข้อผิดพลาดและดำเนินการที่จำเป็นเพื่อแก้ไขข้อผิดพลาด จากนั้นเริ่มการโพสต์ใหม่อีกครั้ง"
@@ -37271,11 +37327,15 @@ msgstr "โปรดคลิกที่ 'สร้างกำหนดกา
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "โปรดคลิกที่ 'สร้างกำหนดการ' เพื่อรับกำหนดการ"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "โปรดติดต่อผู้ใช้ใด ๆ ต่อไปนี้เพื่อขยายวงเงินเครดิตสำหรับ {0}: {1}"
@@ -37283,11 +37343,11 @@ msgstr "โปรดติดต่อผู้ใช้ใด ๆ ต่อไ
msgid "Please contact any of the following users to {} this transaction."
msgstr "โปรดติดต่อผู้ใช้ใด ๆ ต่อไปนี้เพื่อ {} ธุรกรรมนี้"
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "โปรดติดต่อผู้ดูแลระบบของคุณเพื่อขยายวงเงินเครดิตสำหรับ {0}"
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "โปรดแปลงบัญชีหลักในบริษัทลูกที่เกี่ยวข้องให้เป็นบัญชีกลุ่ม"
@@ -37299,11 +37359,11 @@ msgstr "โปรดสร้างลูกค้าจากลูกค้า
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "โปรดสร้างใบสำคัญต้นทุนที่ดินกับใบแจ้งหนี้ที่เปิดใช้งาน 'อัปเดตสต็อก'"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "โปรดสร้างมิติการบัญชีใหม่หากจำเป็น"
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "โปรดสร้างการซื้อจากการขายภายในหรือเอกสารการจัดส่งเอง"
@@ -37311,11 +37371,11 @@ msgstr "โปรดสร้างการซื้อจากการขา
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "โปรดสร้างใบรับซื้อหรือใบแจ้งหนี้ซื้อสำหรับรายการ {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "โปรดลบชุดผลิตภัณฑ์ {0} ก่อนรวม {1} เข้ากับ {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "โปรดปิดใช้งานเวิร์กโฟลว์ชั่วคราวสำหรับรายการบัญชี {0}"
@@ -37323,7 +37383,7 @@ msgstr "โปรดปิดใช้งานเวิร์กโฟลว์
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "โปรดอย่าบันทึกค่าใช้จ่ายของสินทรัพย์หลายรายการกับสินทรัพย์เดียว"
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "โปรดอย่าสร้างรายการมากกว่า 500 รายการในครั้งเดียว"
@@ -37347,7 +37407,7 @@ msgstr "โปรดเปิดใช้งานเฉพาะเมื่อ
msgid "Please enable {0} in the {1}."
msgstr "โปรดเปิดใช้งาน {0} ใน {1}"
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "โปรดเปิดใช้งาน {} ใน {} เพื่ออนุญาตรายการเดียวกันในหลายแถว"
@@ -37359,20 +37419,20 @@ msgstr "โปรดตรวจสอบว่าบัญชี {0} เป็
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 "โปรดตรวจสอบว่าบัญชี {0} {1} เป็นบัญชีเจ้าหนี้ คุณสามารถเปลี่ยนประเภทบัญชีเป็นเจ้าหนี้หรือเลือกบัญชีอื่น"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "โปรดตรวจสอบว่าบัญชี {} เป็นบัญชีงบดุล"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "โปรดตรวจสอบว่าบัญชี {} {} เป็นบัญชีลูกหนี้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "โปรดป้อน บัญชีส่วนต่าง หรือกำหนดค่าเริ่มต้น บัญชีปรับปรุงสต็อก สำหรับบริษัท {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "โปรดป้อนบัญชีสำหรับจำนวนเงินที่เปลี่ยนแปลง"
@@ -37380,15 +37440,15 @@ msgstr "โปรดป้อนบัญชีสำหรับจำนวน
msgid "Please enter Approving Role or Approving User"
msgstr "โปรดป้อนบทบาทการอนุมัติหรือผู้ใช้งานที่อนุมัติ"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "กรุณาป้อนหมายเลขชุด"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "โปรดป้อนศูนย์ต้นทุน"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "โปรดป้อนวันที่จัดส่ง"
@@ -37396,7 +37456,7 @@ msgstr "โปรดป้อนวันที่จัดส่ง"
msgid "Please enter Employee Id of this sales person"
msgstr "โปรดป้อนรหัสพนักงานของพนักงานขายนี้"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "โปรดป้อนบัญชีค่าใช้จ่าย"
@@ -37405,7 +37465,7 @@ msgstr "โปรดป้อนบัญชีค่าใช้จ่าย"
msgid "Please enter Item Code to get Batch Number"
msgstr "โปรดป้อนรหัสรายการเพื่อรับหมายเลขแบทช์"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "โปรดป้อนรหัสรายการเพื่อรับหมายเลขแบทช์"
@@ -37421,7 +37481,7 @@ msgstr "โปรดป้อนรายละเอียดการบำร
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "โปรดป้อนปริมาณที่วางแผนไว้สำหรับรายการ {0} ที่แถว {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "โปรดป้อนรายการผลิตก่อน"
@@ -37441,7 +37501,7 @@ msgstr "โปรดป้อนวันที่อ้างอิง"
msgid "Please enter Root Type for account- {0}"
msgstr "กรุณากรอกหมวดหมู่สำหรับบัญชี- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "กรุณากรอกหมายเลขซีเรียล"
@@ -37458,7 +37518,7 @@ msgid "Please enter Warehouse and Date"
msgstr "โปรดป้อนคลังสินค้าและวันที่"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "โปรดป้อนบัญชีตัดบัญชี"
@@ -37478,7 +37538,7 @@ msgstr "กรุณากรอกวันที่จัดส่งอย่
msgid "Please enter company name first"
msgstr "โปรดป้อนชื่อบริษัทก่อน"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "โปรดป้อนสกุลเงินเริ่มต้นใน Company Master"
@@ -37506,7 +37566,7 @@ msgstr "โปรดป้อนวันที่ปลดปล่อย"
msgid "Please enter serial nos"
msgstr "โปรดป้อนหมายเลขซีเรียล"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "โปรดป้อนชื่อบริษัทเพื่อยืนยัน"
@@ -37574,11 +37634,11 @@ msgstr "โปรดตรวจสอบว่าพนักงานข้า
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "กรุณาตรวจสอบว่าไฟล์ที่คุณใช้มีคอลัมน์ 'บัญชีแม่' อยู่ในส่วนหัว"
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "โปรดตรวจสอบว่าคุณต้องการลบธุรกรรมทั้งหมดสำหรับบริษัทนี้จริง ๆ ข้อมูลหลักของคุณจะยังคงอยู่ การกระทำนี้ไม่สามารถยกเลิกได้"
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "โปรดระบุ 'หน่วยวัดน้ำหนัก' พร้อมกับน้ำหนัก"
@@ -37637,7 +37697,7 @@ msgstr "กรุณาเลือก ประเภทเทมเพล
msgid "Please select Apply Discount On"
msgstr "โปรดเลือกใช้ส่วนลดใน"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "โปรดเลือก BOM สำหรับรายการ {0}"
@@ -37653,7 +37713,7 @@ msgstr "โปรดเลือกบัญชีธนาคาร"
msgid "Please select Category first"
msgstr "โปรดเลือกหมวดหมู่ก่อน"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37683,7 +37743,7 @@ msgstr "โปรดเลือกวันที่เสร็จสิ้น
msgid "Please select Customer first"
msgstr "โปรดเลือกลูกค้าก่อน"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "กรุณาเลือกบริษัทที่มีอยู่เพื่อสร้างผังบัญชี"
@@ -37692,8 +37752,8 @@ msgstr "กรุณาเลือกบริษัทที่มีอยู
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "โปรดเลือกรายการสินค้าสำเร็จรูปสำหรับรายการบริการ {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "โปรดเลือกรหัสรายการก่อน"
@@ -37725,11 +37785,11 @@ msgstr "โปรดเลือกวันที่โพสต์ก่อน
msgid "Please select Price List"
msgstr "โปรดเลือกรายการราคา"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "โปรดเลือกปริมาณสำหรับรายการ {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "โปรดเลือกคลังสินค้าสำหรับเก็บตัวอย่างในการตั้งค่าสต็อกก่อน"
@@ -37745,7 +37805,7 @@ msgstr "โปรดเลือกวันที่เริ่มต้นแ
msgid "Please select Stock Asset Account"
msgstr "กรุณาเลือก บัญชีสินทรัพย์คงคลัง"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "โปรดเลือกบัญชีกำไร/ขาดทุนที่ยังไม่รับรู้หรือเพิ่มบัญชีกำไร/ขาดทุนที่ยังไม่รับรู้เริ่มต้นสำหรับบริษัท {0}"
@@ -37762,7 +37822,7 @@ msgstr "โปรดเลือกบริษัท"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "โปรดเลือกบริษัทก่อน"
@@ -37786,7 +37846,7 @@ msgstr "โปรดเลือกผู้จัดจำหน่าย"
msgid "Please select a Warehouse"
msgstr "โปรดเลือกคลังสินค้า"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "โปรดเลือกคำสั่งงานก่อน"
@@ -37859,11 +37919,15 @@ msgstr "โปรดเลือกค่าสำหรับ {0} quotation_to
msgid "Please select an item code before setting the warehouse."
msgstr "โปรดเลือกรหัสรายการก่อนตั้งค่าคลังสินค้า"
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "กรุณาเลือกอย่างน้อยหนึ่งตัวกรอง: รหัสสินค้า, ชุดการผลิต, หรือหมายเลขซีเรียล"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37883,7 +37947,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr "กรุณาเลือกอย่างน้อยหนึ่งรายการเพื่อดำเนินการต่อ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "กรุณาเลือกอย่างน้อยหนึ่งการดำเนินการเพื่อสร้างบัตรงาน"
@@ -37941,7 +38005,7 @@ msgstr "โปรดเลือกบริษัท"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "โปรดเลือกประเภทโปรแกรมหลายระดับสำหรับกฎการรวบรวมมากกว่าหนึ่งข้อ"
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "กรุณาเลือกคลังสินค้าก่อน"
@@ -37970,7 +38034,7 @@ msgstr "โปรดเลือกประเภทเอกสารที่
msgid "Please select weekly off day"
msgstr "โปรดเลือกวันหยุดประจำสัปดาห์"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "โปรดเลือก {0} ก่อน"
@@ -37979,11 +38043,11 @@ msgstr "โปรดเลือก {0} ก่อน"
msgid "Please set 'Apply Additional Discount On'"
msgstr "โปรดตั้งค่า 'ใช้ส่วนลดเพิ่มเติมใน'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "โปรดตั้งค่า 'ศูนย์ต้นทุนค่าเสื่อมราคาสินทรัพย์' ในบริษัท {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "โปรดตั้งค่า 'บัญชีกำไร/ขาดทุนจากการจำหน่ายสินทรัพย์' ในบริษัท {0}"
@@ -37995,7 +38059,7 @@ msgstr "โปรดตั้งค่า '{0}' ในบริษัท: {1}"
msgid "Please set Account"
msgstr "โปรดตั้งค่าบัญชี"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "โปรดตั้งค่าบัญชีสำหรับจำนวนเงินที่เปลี่ยนแปลง"
@@ -38025,7 +38089,7 @@ msgstr "โปรดตั้งค่าบริษัท"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "กรุณาตั้งค่าที่อยู่ลูกค้าเพื่อกำหนดว่าธุรกรรมนี้เป็นการส่งออกหรือไม่"
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "โปรดตั้งค่าบัญชีที่เกี่ยวข้องกับค่าเสื่อมราคาในหมวดสินทรัพย์ {0} หรือบริษัท {1}"
@@ -38043,7 +38107,7 @@ msgstr "กรุณาตั้งค่ารหัสภาษีสำหร
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "กรุณาตั้งค่ารหัสการเงินสำหรับการบริหารราชการแผ่นดิน '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "โปรดตั้งค่าบัญชีสินทรัพย์ถาวรในหมวดสินทรัพย์ {0}"
@@ -38089,7 +38153,7 @@ msgstr "โปรดตั้งค่าบริษัท"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "โปรดตั้งค่าศูนย์ต้นทุนสำหรับสินทรัพย์หรือศูนย์ต้นทุนค่าเสื่อมราคาสินทรัพย์สำหรับบริษัท {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "โปรดตั้งค่ารายการวันหยุดเริ่มต้นสำหรับบริษัท {0}"
@@ -38126,23 +38190,23 @@ msgstr "โปรดตั้งค่าอย่างน้อยหนึ่
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "โปรดตั้งค่าทั้งหมายเลขประจำตัวผู้เสียภาษีและรหัสการเงินในบริษัท {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "โปรดตั้งค่าบัญชีเงินสดหรือธนาคารเริ่มต้นในโหมดการชำระเงิน {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "โปรดตั้งค่าบัญชีกำไร/ขาดทุนจากอัตราแลกเปลี่ยนเริ่มต้นในบริษัท {}"
@@ -38171,7 +38235,7 @@ msgstr "โปรดตั้งค่าเริ่มต้น {0} ในบ
msgid "Please set filter based on Item or Warehouse"
msgstr "โปรดตั้งค่าตัวกรองตามรายการหรือคลังสินค้า"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "โปรดตั้งค่าหนึ่งในสิ่งต่อไปนี้:"
@@ -38179,7 +38243,7 @@ msgstr "โปรดตั้งค่าหนึ่งในสิ่งต่
msgid "Please set opening number of booked depreciations"
msgstr "โปรดตั้งค่าจำนวนการหักค่าเสื่อมราคาที่จองไว้"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "โปรดตั้งค่าการเกิดซ้ำหลังจากบันทึก"
@@ -38191,15 +38255,15 @@ msgstr "โปรดตั้งค่าที่อยู่ลูกค้า
msgid "Please set the Default Cost Center in {0} company."
msgstr "โปรดตั้งค่าศูนย์ต้นทุนเริ่มต้นในบริษัท {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "โปรดตั้งค่ารหัสรายการก่อน"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "โปรดตั้งค่าคลังเป้าหมายในบัตรงาน"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "โปรดตั้งค่าคลัง WIP ในบัตรงาน"
@@ -38238,7 +38302,7 @@ msgstr "โปรดตั้งค่า {0} ใน BOM Creator {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "โปรดตั้งค่า {0} ในบริษัท {1} เพื่อบันทึกกำไร/ขาดทุนจากอัตราแลกเปลี่ยน"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "โปรดตั้งค่า {0} เป็น {1} ซึ่งเป็นบัญชีเดียวกับที่ใช้ในใบแจ้งหนี้ต้นฉบับ {2}"
@@ -38260,7 +38324,7 @@ msgstr "โปรดระบุบริษัท"
msgid "Please specify Company to proceed"
msgstr "โปรดระบุบริษัทเพื่อดำเนินการต่อ"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "โปรดระบุรหัสแถวที่ถูกต้องสำหรับแถว {0} ในตาราง {1}"
@@ -38273,7 +38337,7 @@ msgstr "โปรดระบุ {0} ก่อน"
msgid "Please specify at least one attribute in the Attributes table"
msgstr "โปรดระบุอย่างน้อยหนึ่งแอตทริบิวต์ในตารางแอตทริบิวต์"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "โปรดระบุปริมาณหรืออัตราการประเมินมูลค่าหรือทั้งสองอย่าง"
@@ -38378,8 +38442,8 @@ msgstr "สตริงเส้นทางโพสต์"
msgid "Post Title Key"
msgstr "คีย์ชื่อโพสต์"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "ค่าส่งไปรษณีย์"
@@ -38444,7 +38508,7 @@ msgstr "โพสต์เมื่อ"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38462,7 +38526,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38584,10 +38648,6 @@ msgstr "วันที่และเวลาที่โพสต์"
msgid "Posting Time"
msgstr "เวลาที่โพสต์"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "วันที่และเวลาที่โพสต์เป็นสิ่งจำเป็น"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38661,18 +38721,23 @@ msgstr "ขับเคลื่อนโดย {0}"
msgid "Pre Sales"
msgstr "ก่อนการขาย"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "ความชอบ"
@@ -38845,6 +38910,7 @@ msgstr "ระดับส่วนลดราคา"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38868,6 +38934,7 @@ msgstr "ระดับส่วนลดราคา"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38919,7 +38986,7 @@ msgstr "ประเทศในรายการราคา"
msgid "Price List Currency"
msgstr "สกุลเงินในรายการราคา"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "ไม่ได้เลือกสกุลเงินในรายการราคา"
@@ -39274,7 +39341,7 @@ msgstr "พิมพ์ใบเสร็จ"
msgid "Print Receipt on Order Complete"
msgstr "พิมพ์ใบเสร็จเมื่อคำสั่งซื้อเสร็จสมบูรณ์"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "พิมพ์หน่วยวัดหลังปริมาณ"
@@ -39283,8 +39350,8 @@ msgstr "พิมพ์หน่วยวัดหลังปริมาณ"
msgid "Print Without Amount"
msgstr "พิมพ์โดยไม่มีจำนวนเงิน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "สิ่งพิมพ์และเครื่องเขียน"
@@ -39292,7 +39359,7 @@ msgstr "สิ่งพิมพ์และเครื่องเขียน
msgid "Print settings updated in respective print format"
msgstr "การตั้งค่าการพิมพ์ได้รับการอัปเดตในรูปแบบการพิมพ์ที่เกี่ยวข้อง"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "พิมพ์ภาษีที่มีจำนวนเงินเป็นศูนย์"
@@ -39395,10 +39462,6 @@ msgstr "ปัญหา"
msgid "Procedure"
msgstr "กระบวนการ"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "ขั้นตอนที่ถูกยกเลิก"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39452,7 +39515,7 @@ msgstr "เปอร์เซ็นต์การสูญเสียกระ
msgid "Process Loss Qty"
msgstr "ปริมาณการสูญเสียกระบวนการ"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "ปริมาณการสูญเสียกระบวนการ"
@@ -39533,6 +39596,10 @@ msgstr "ประมวลผลการสมัครสมาชิก"
msgid "Process in Single Transaction"
msgstr "ประมวลผลในธุรกรรมเดียว"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39628,8 +39695,8 @@ msgstr "สินค้า"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39694,7 +39761,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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "การผลิต"
@@ -39908,7 +39975,7 @@ msgstr "ความคืบหน้าของงานไม่สามา
msgid "Progress (%)"
msgstr "ความคืบหน้า (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "คำเชิญร่วมมือโครงการ"
@@ -39952,7 +40019,7 @@ msgstr "สถานะโครงการ"
msgid "Project Summary"
msgstr "สรุปโครงการ"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "สรุปโครงการสำหรับ {0}"
@@ -40083,7 +40150,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40229,7 +40296,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "โอกาสที่มีการติดต่อแต่ยังไม่เปลี่ยนเป็นลูกค้า"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "ประเภทเอกสารที่ได้รับการคุ้มครอง"
@@ -40244,7 +40311,7 @@ msgstr "ระบุที่อยู่อีเมลที่ลงทะเ
msgid "Providing"
msgstr "การให้บริการ"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "บัญชีชั่วคราว"
@@ -40316,8 +40383,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40640,7 +40708,7 @@ msgstr "ใบสั่งซื้อสินค้า {0} สร้างข
msgid "Purchase Order {0} is not submitted"
msgstr "คำสั่งซื้อ {0} ยังไม่ได้ส่ง"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "คำสั่งซื้อ"
@@ -40655,7 +40723,7 @@ msgstr "จำนวนใบสั่งซื้อ"
msgid "Purchase Orders Items Overdue"
msgstr "รายการคำสั่งซื้อเกินกำหนด"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "ไม่อนุญาตคำสั่งซื้อสำหรับ {0} เนื่องจากสถานะคะแนน {1}"
@@ -40670,7 +40738,7 @@ msgstr "คำสั่งซื้อที่ต้องเรียกเก
msgid "Purchase Orders to Receive"
msgstr "คำสั่งซื้อที่ต้องรับ"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "คำสั่งซื้อ {0} ถูกยกเลิกการเชื่อมโยง"
@@ -40804,7 +40872,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "แม่แบบภาษีซื้อ"
@@ -40902,6 +40970,7 @@ msgstr "กำลังซื้อ"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40911,10 +40980,6 @@ msgstr "กำลังซื้อ"
msgid "Purpose"
msgstr "วัตถุประสงค์"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "วัตถุประสงค์ต้องเป็นหนึ่งใน {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40970,6 +41035,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41018,6 +41084,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41126,11 +41193,11 @@ msgstr "ปริมาณต่อหน่วย"
msgid "Qty To Manufacture"
msgstr "ปริมาณที่จะผลิต"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "ปริมาณที่จะผลิต ({0}) ไม่สามารถเป็นเศษส่วนสำหรับหน่วยวัด {2} ได้ หากต้องการอนุญาต ให้ปิดใช้งาน '{1}' ในหน่วยวัด {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41181,8 +41248,8 @@ msgstr "ปริมาณตามหน่วยวัดสต็อก"
msgid "Qty for which recursion isn't applicable."
msgstr "ปริมาณที่การวนซ้ำไม่สามารถใช้ได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "ปริมาณสำหรับ {0}"
@@ -41237,8 +41304,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "ปริมาณที่จะดึง"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "ปริมาณที่จะผลิต"
@@ -41474,17 +41541,17 @@ msgstr "แม่แบบการตรวจสอบคุณภาพ"
msgid "Quality Inspection Template Name"
msgstr "ชื่อแม่แบบการตรวจสอบคุณภาพ"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "การตรวจสอบคุณภาพเป็นสิ่งจำเป็นสำหรับรายการ {0} ก่อนทำการกรอกบัตรงานให้เสร็จสิ้น {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "การตรวจสอบคุณภาพ {0} ไม่ได้ส่งสำหรับรายการ: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "การตรวจสอบคุณภาพ {0} ถูกปฏิเสธสำหรับรายการ: {1}"
@@ -41498,7 +41565,7 @@ msgstr "การตรวจสอบคุณภาพ"
msgid "Quality Inspections"
msgstr "การตรวจสอบคุณภาพ"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "การจัดการคุณภาพ"
@@ -41630,7 +41697,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41765,7 +41832,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "ปริมาณต้องไม่เกิน {0}"
@@ -41775,21 +41842,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "ปริมาณที่ต้องการสำหรับรายการ {0} ในแถว {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "ปริมาณควรมากกว่า 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "ปริมาณที่จะผลิต"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "ปริมาณที่จะผลิตไม่สามารถเป็นศูนย์สำหรับการดำเนินการ {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "ปริมาณที่จะผลิตต้องมากกว่า 0"
@@ -41812,7 +41879,7 @@ msgstr "ควอร์ตแห้ง (สหรัฐอเมริกา)"
msgid "Quart Liquid (US)"
msgstr "ควอร์ตของเหลว (สหรัฐอเมริกา)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "ไตรมาส {0} {1}"
@@ -41931,11 +41998,11 @@ msgstr "ใบเสนอราคาถึง"
msgid "Quotation Trends"
msgstr "แนวโน้มใบเสนอราคา"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "ใบเสนอราคา {0} ถูกยกเลิก"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "ใบเสนอราคา {0} ไม่ใช่ประเภท {1}"
@@ -42242,7 +42309,7 @@ msgstr "อัตราที่สกุลเงินของผู้จั
msgid "Rate at which this tax is applied"
msgstr "อัตราที่ใช้ในการเรียกเก็บภาษีนี้"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "ไม่สามารถเปลี่ยนแปลงอัตราของรายการ '{}' ได้"
@@ -42408,7 +42475,7 @@ msgstr "วัตถุดิบที่ใช้"
msgid "Raw Materials Consumption"
msgstr "การบริโภควัตถุดิบ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "วัตถุดิบขาดหาย"
@@ -42447,12 +42514,6 @@ msgstr "วัตถุดิบไม่สามารถเป็นแบบ
msgid "Raw Materials to Customer"
msgstr "วัตถุดิบสู่ลูกค้า"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "SQL ดิบ"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42461,7 +42522,7 @@ msgstr "ปริมาณวัตถุดิบที่ใช้จะถู
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42642,7 +42703,7 @@ msgid "Receivable / Payable Account"
msgstr "บัญชีลูกหนี้/เจ้าหนี้"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43103,7 +43164,7 @@ msgstr "อ้างอิง #"
msgid "Reference #{0} dated {1}"
msgstr "อ้างอิง #{0} ลงวันที่ {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "วันที่อ้างอิงสำหรับส่วนลดการชำระเงินล่วงหน้า"
@@ -43267,11 +43328,11 @@ msgstr "อ้างอิง: {0}, รหัสสินค้า: {1} แล
msgid "References"
msgstr "การอ้างอิง"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "การอ้างอิงถึงใบแจ้งหนี้ขายไม่สมบูรณ์"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "การอ้างอิงถึงคำสั่งขายไม่สมบูรณ์"
@@ -43433,7 +43494,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "ยอดคงเหลือที่เหลืออยู่"
@@ -43491,7 +43552,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43555,7 +43616,7 @@ msgstr "เปลี่ยนค่าคุณลักษณะในคุณ
msgid "Rename Log"
msgstr "เปลี่ยนชื่อบันทึก"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "ไม่อนุญาตให้เปลี่ยนชื่อ"
@@ -43572,7 +43633,7 @@ msgstr "งานเปลี่ยนชื่อสำหรับประเ
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "งานเปลี่ยนชื่อสำหรับประเภทเอกสาร {0} ยังไม่ได้ถูกจัดคิว"
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "การเปลี่ยนชื่ออนุญาตเฉพาะผ่านบริษัทหลัก {0} เพื่อหลีกเลี่ยงความไม่ตรงกัน"
@@ -43696,7 +43757,7 @@ msgstr "แบบรายงาน"
msgid "Report Type is mandatory"
msgstr "ประเภทรายงานเป็นสิ่งจำเป็น"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "รายงานปัญหา"
@@ -43941,7 +44002,7 @@ msgstr "คำขอข้อมูล"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44122,7 +44183,7 @@ msgstr "ต้องการการดำเนินการ"
msgid "Research"
msgstr "การวิจัย"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "การวิจัยและพัฒนา"
@@ -44167,7 +44228,7 @@ msgstr "การจอง"
msgid "Reservation Based On"
msgstr "การจองตาม"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44211,7 +44272,7 @@ msgstr "สำรองสำหรับการประกอบย่อย
msgid "Reserved"
msgstr "สงวนสิทธิ์"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "ความขัดแย้งของชุดข้อมูลที่จองไว้"
@@ -44281,14 +44342,14 @@ msgstr "จำนวนที่สำรองไว้"
msgid "Reserved Quantity for Production"
msgstr "จำนวนที่สำรองไว้สำหรับการผลิต"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44297,13 +44358,13 @@ msgstr "หมายเลขประจำเครื่องที่สง
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "สต็อกสำรองสำหรับชุดการผลิต"
@@ -44569,7 +44630,7 @@ msgstr "ฟิลด์ชื่อผลลัพธ์"
msgid "Resume"
msgstr "ดำเนินการต่อ"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "ดำเนินงานต่อ"
@@ -44594,8 +44655,8 @@ msgstr "ผู้ค้าปลีก"
msgid "Retain Sample"
msgstr "เก็บตัวอย่าง"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "กำไรสะสม"
@@ -44670,7 +44731,7 @@ msgstr "คืนกับใบรับซื้อ"
msgid "Return Against Subcontracting Receipt"
msgstr "คืนกับใบรับจ้างช่วง"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "คืนส่วนประกอบ"
@@ -44706,7 +44767,7 @@ msgstr "ปริมาณที่คืนจากคลังสินค้
msgid "Return Raw Material to Customer"
msgstr "ส่งคืนวัตถุดิบให้กับลูกค้า"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "ยกเลิกใบแจ้งหนี้คืนสินทรัพย์"
@@ -44804,8 +44865,8 @@ msgstr "การคืน"
msgid "Revaluation Journals"
msgstr "สมุดรายวันการประเมินมูลค่าใหม่"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "ส่วนเกินทุนจากการตีราคาสินทรัพย์"
@@ -45037,7 +45098,7 @@ msgstr "หมวดหมู่สำหรับ {0} ต้องเป็น
msgid "Root Type is mandatory"
msgstr "ประเภทหลักเป็นสิ่งจำเป็น"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "ไม่สามารถแก้ไขรากได้"
@@ -45056,8 +45117,8 @@ msgstr "ปริมาณฟรีที่ปัดเศษ"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45237,21 +45298,21 @@ msgstr "แถว # {0}: อัตราไม่สามารถมากก
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "แถว # {0}: รายการที่คืน {1} ไม่มีอยู่ใน {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "แถวที่ 1: รหัสลำดับต้องเป็น 1 สำหรับการดำเนินการ {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "แถว #{0} (ตารางการชำระเงิน): จำนวนเงินต้องเป็นค่าลบ"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "แถว #{0} (ตารางการชำระเงิน): จำนวนเงินต้องเป็นค่าบวก"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "แถว #{0}: มีรายการสั่งซื้อใหม่สำหรับคลังสินค้า {1} ที่มีประเภทการสั่งซื้อใหม่ {2} อยู่แล้ว"
@@ -45272,7 +45333,7 @@ msgstr "แถว #{0}: คลังสินค้าที่รับแล
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "แถว #{0}: คลังสินค้าที่รับเป็นสิ่งจำเป็นสำหรับรายการที่รับ {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "แถว #{0}: บัญชี {1} ไม่ได้เป็นของบริษัท {2}"
@@ -45333,31 +45394,31 @@ msgstr "แถว #{0}: ไม่สามารถยกเลิกการ
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "แถว #{0}: ไม่สามารถสร้างรายการที่มีเอกสารภาษีและเอกสารหัก ณ ที่จ่ายที่แตกต่างกันได้"
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "แถว #{0}: ไม่สามารถลบรายการ {1} ที่ถูกเรียกเก็บเงินแล้ว"
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "แถว #{0}: ไม่สามารถลบรายการ {1} ที่ถูกส่งมอบแล้ว"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "แถว #{0}: ไม่สามารถลบรายการ {1} ที่ถูกได้รับแล้ว"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "แถว #{0}: ไม่สามารถลบรายการ {1} ที่มีคำสั่งงานที่กำหนดให้"
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "แถว #{0}: ไม่สามารถลบรายการ {1} ได้ เนื่องจากได้สั่งซื้อไว้กับใบสั่งขายนี้แล้ว"
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "แถว #{0}: ไม่สามารถตั้งค่าอัตราได้หากจำนวนเงินที่เรียกเก็บมากกว่าจำนวนเงินสำหรับรายการ {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "แถว #{0}: ไม่สามารถโอนมากกว่าปริมาณที่ต้องการ {1} สำหรับรายการ {2} กับบัตรงาน {3}"
@@ -45407,11 +45468,11 @@ msgstr "แถว #{0}: รายการที่ลูกค้าจัด
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่สามารถเพิ่มหลายครั้งในกระบวนการรับงานช่วงขาเข้า"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่สามารถเพิ่มได้หลายครั้ง"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} ไม่มีอยู่ในตารางรายการที่จำเป็นที่เชื่อมโยงกับใบสั่งซื้อจากผู้รับเหมาช่วงขาเข้า"
@@ -45419,7 +45480,7 @@ msgstr "แถว #{0}: รายการที่ลูกค้าจัด
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} เกินปริมาณที่มีอยู่ผ่านคำสั่งซื้อจากผู้รับเหมาช่วงขาเข้า"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "แถว #{0}: รายการที่ลูกค้าจัดหาให้ {1} มีจำนวนไม่เพียงพอในใบสั่งซื้อจากผู้รับเหมาช่วง จำนวนที่มีอยู่คือ {2}"
@@ -45436,7 +45497,7 @@ msgstr "แถว #{0}: รายการที่ลูกค้าจัด
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "แถว #{0}: วันที่ทับซ้อนกับแถวอื่นในกลุ่ม {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "แถว #{0}: ไม่พบ BOM เริ่มต้นสำหรับรายการ FG {1}"
@@ -45460,22 +45521,22 @@ msgstr "แถว #{0}: ไม่ได้ตั้งค่าบัญชี
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "แถว #{0}: บัญชีค่าใช้จ่าย {1} ไม่ถูกต้องสำหรับใบแจ้งหนี้การซื้อ {2}. อนุญาตเฉพาะบัญชีค่าใช้จ่ายจากสินค้าที่ไม่มีสต็อกเท่านั้น"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "แถว #{0}: ปริมาณรายการสินค้าสำเร็จรูปไม่สามารถเป็นศูนย์ได้"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "แถว #{0}: ไม่ได้ระบุรายการสินค้าสำเร็จรูปสำหรับรายการบริการ {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "แถว #{0}: รายการสินค้าสำเร็จรูป {1} ต้องเป็นรายการจ้างช่วง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "แถว #{0}: สินค้าสำเร็จรูปต้องเป็น {1}"
@@ -45504,7 +45565,7 @@ msgstr "แถว #{0}: ความถี่ของการคิดค่
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "แถว #{0}: วันที่เริ่มต้นไม่สามารถก่อนวันที่สิ้นสุดได้"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "แถว #{0}: ต้องการฟิลด์เวลาเริ่มต้นและเวลาสิ้นสุด"
@@ -45512,7 +45573,7 @@ msgstr "แถว #{0}: ต้องการฟิลด์เวลาเร
msgid "Row #{0}: Item added"
msgstr "แถว #{0}: เพิ่มรายการแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "แถว #{0}: รายการ {1} ไม่สามารถโอนได้มากกว่า {2} ต่อ {3} {4}"
@@ -45540,7 +45601,7 @@ msgstr "แถว #{0}: รายการ {1} ในคลังสินค้
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "แถว #{0}: รายการ {1} ไม่ใช่รายการที่ลูกค้าจัดหาให้"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "แถว #{0}: รายการ {1} ไม่ใช่รายการที่มีซีเรียล/แบทช์ ไม่สามารถมีหมายเลขซีเรียล/แบทช์ได้"
@@ -45581,7 +45642,7 @@ msgstr "แถว #{0}: วันที่หักค่าเสื่อม
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "แถว #{0}: วันที่หักค่าเสื่อมราคาครั้งถัดไปไม่สามารถก่อนวันที่ซื้อได้"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "แถว #{0}: ไม่อนุญาตให้เปลี่ยนผู้จัดจำหน่ายเนื่องจากมีคำสั่งซื้ออยู่แล้ว"
@@ -45593,10 +45654,6 @@ msgstr "แถว #{0}: มีเพียง {1} ที่สามารถจ
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "แถว #{0}: การหักค่าเสื่อมราคาสะสมเริ่มต้นต้องน้อยกว่าหรือเท่ากับ {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "แถว #{0}: การดำเนินการ {1} ยังไม่เสร็จสิ้นสำหรับปริมาณ {2} ของสินค้าสำเร็จรูปในคำสั่งงาน {3} โปรดอัปเดตสถานะการดำเนินการผ่านบัตรงาน {4}"
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45618,11 +45675,11 @@ msgstr "แถว #{0}: กรุณาเลือกสินค้าสำ
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "แถว #{0}: โปรดเลือกคลังสินค้าย่อย"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "แถว #{0}: โปรดตั้งค่าปริมาณการสั่งซื้อใหม่"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "โปรดอัปเดตบัญชีรายได้/ค่าใช้จ่ายรอตัดบัญชีในแถวรายการหรือบัญชีเริ่มต้นในมาสเตอร์บริษัท"
@@ -45644,15 +45701,15 @@ msgstr "ปริมาณต้องเป็นตัวเลขบวก"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "ปริมาณควรน้อยกว่าหรือเท่ากับปริมาณที่สามารถจองได้ (ปริมาณจริง - ปริมาณที่จอง) {1} สำหรับรายการ {2} ในแบทช์ {3} ในคลังสินค้า {4}"
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "ต้องการการตรวจสอบคุณภาพสำหรับรายการ {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "การตรวจสอบคุณภาพ {1} ยังไม่ได้ส่งสำหรับรายการ: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "การตรวจสอบคุณภาพ {1} ถูกปฏิเสธสำหรับรายการ {2}"
@@ -45660,7 +45717,7 @@ msgstr "การตรวจสอบคุณภาพ {1} ถูกปฏิ
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "แถว #{0}: ปริมาณไม่สามารถเป็นจำนวนที่ไม่เป็นบวกได้ กรุณาเพิ่มปริมาณหรือลบสินค้า {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "ปริมาณสำหรับรายการ {1} ไม่สามารถเป็นศูนย์ได้"
@@ -45676,18 +45733,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "ปริมาณที่จะจองสำหรับรายการ {1} ควรมากกว่า 0"
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "อัตราต้องเท่ากับ {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "ประเภทเอกสารอ้างอิงต้องเป็นหนึ่งในคำสั่งซื้อ, ใบแจ้งหนี้ซื้อ หรือรายการสมุดรายวัน"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "ประเภทเอกสารอ้างอิงต้องเป็นหนึ่งในคำสั่งขาย, ใบแจ้งหนี้ขาย, รายการสมุดรายวัน หรือการติดตามหนี้"
@@ -45729,7 +45786,7 @@ msgstr "แถว #{0}: อัตราการขายสำหรับส
"\t\t\t\t\tคุณสามารถปิดใช้งาน '{5}' ใน {6} เพื่อข้ามการตรวจสอบ\n"
"\t\t\t\t\tนี้ได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "แถว #{0}: รหัสลำดับต้องเป็น {1} หรือ {2} สำหรับการดำเนินการ {3}."
@@ -45749,19 +45806,19 @@ msgstr "หมายเลขซีเรียล {1} ถูกเลือก
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "แถว #{0}: หมายเลขซีเรียล {1} ไม่เป็นส่วนหนึ่งของใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง กรุณาเลือกหมายเลขซีเรียลที่ถูกต้อง"
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "วันที่สิ้นสุดบริการไม่สามารถก่อนวันที่โพสต์ใบแจ้งหนี้ได้"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "วันที่เริ่มต้นบริการไม่สามารถมากกว่าวันที่สิ้นสุดบริการได้"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "ต้องการวันที่เริ่มต้นและสิ้นสุดบริการสำหรับการบัญชีรอตัดบัญชี"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "ตั้งค่าผู้จัดจำหน่ายสำหรับรายการ {1}"
@@ -45773,19 +45830,19 @@ msgstr "แถว #{0}: เนื่องจาก 'ติดตามสิน
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "แถว #{0}: คลังสินค้าต้นทางต้องเป็นคลังสินค้าของลูกค้า {1} จากใบสั่งซื้อจากผู้รับเหมาช่วงที่เชื่อมโยง"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "แถว #{0}: คลังสินค้าต้นทาง {1} สำหรับรายการ {2} ไม่สามารถเป็นคลังสินค้าลูกค้าได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "แถว #{0}: คลังสินค้าต้นทาง {1} สำหรับรายการ {2} ต้องเป็นคลังสินค้าต้นทางเดียวกันกับคลังสินค้าต้นทาง {3} ในใบสั่งงาน"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "แถว #{0}: แหล่งและเป้าหมายของคลังสินค้าไม่สามารถเป็นคลังเดียวกันได้สำหรับการโอนวัสดุ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "แถว #{0}: แหล่งที่มา, คลังสินค้าเป้าหมาย และมิติของสินค้าคงคลังไม่สามารถเหมือนกันได้สำหรับการโอนย้ายวัสดุ"
@@ -45801,6 +45858,10 @@ msgstr "สถานะเป็นสิ่งจำเป็น"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "สถานะต้องเป็น {1} สำหรับการลดราคาใบแจ้งหนี้ {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "ไม่สามารถจองสต็อกสำหรับรายการ {1} ในแบทช์ที่ปิดใช้งาน {2} ได้"
@@ -45817,7 +45878,7 @@ msgstr "ไม่สามารถจองสต็อกในคลังส
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "สต็อกถูกจองไว้แล้วสำหรับรายการ {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "สต็อกถูกจองสำหรับรายการ {1} ในคลังสินค้า {2}"
@@ -45830,7 +45891,7 @@ msgstr "ไม่มีสต็อกสำหรับจองสำหรั
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "ไม่มีสต็อกสำหรับจองสำหรับรายการ {1} ในคลังสินค้า {2}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "แถว #{0}: จำนวนคงคลัง {1} ({2}) สำหรับรายการ {3} ไม่สามารถเกิน {4}"
@@ -45842,7 +45903,7 @@ msgstr "แถว #{0}: คลังสินค้าเป้าหมาย
msgid "Row #{0}: The batch {1} has already expired."
msgstr "แบทช์ {1} หมดอายุแล้ว"
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "คลังสินค้า {1} ไม่ใช่คลังสินค้าย่อยของคลังสินค้ากลุ่ม {2}"
@@ -45878,7 +45939,7 @@ msgstr "คุณไม่สามารถใช้มิติสินค้
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "คุณต้องเลือกสินทรัพย์สำหรับรายการ {1}"
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "{1} ไม่สามารถเป็นค่าลบสำหรับรายการ {2}"
@@ -45894,7 +45955,7 @@ msgstr "ต้องการ {1} เพื่อสร้างใบแจ้
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "{1} ของ {2} ควรเป็น {3} โปรดอัปเดต {1} หรือเลือกบัญชีอื่น"
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45995,7 +46056,7 @@ msgstr "แถว #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "{} {} ไม่มีอยู่"
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "{} {} ไม่ได้เป็นของบริษัท {} โปรดเลือก {} ที่ถูกต้อง"
@@ -46003,7 +46064,7 @@ msgstr "{} {} ไม่ได้เป็นของบริษัท {} โ
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "{1} หมายเลขแถว {0}: จำเป็นต้องมีคลังสินค้า กรุณากำหนดคลังสินค้าเริ่มต้นสำหรับรายการ และบริษัท {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "แถว {0} : ต้องการการดำเนินการสำหรับรายการวัตถุดิบ {1}"
@@ -46011,7 +46072,7 @@ msgstr "แถว {0} : ต้องการการดำเนินกา
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "แถว {0} ปริมาณที่เลือกน้อยกว่าปริมาณที่ต้องการ ต้องการเพิ่มเติม {1} {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "แถว {0}# รายการ {1} ไม่พบในตาราง 'วัตถุดิบที่จัดหา' ใน {2} {3}"
@@ -46043,11 +46104,11 @@ msgstr "แถว {0}: จำนวนเงินที่จัดสรร {1
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "แถว {0}: จำนวนเงินที่จัดสรร {1} ต้องน้อยกว่าหรือเท่ากับจำนวนเงินที่เหลืออยู่ {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "แถว {0}: เนื่องจาก {1} ถูกเปิดใช้งาน วัตถุดิบไม่สามารถเพิ่มในรายการ {2} ได้ ใช้รายการ {3} เพื่อใช้วัตถุดิบ"
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "แถว {0}: ไม่พบใบกำกับวัสดุสำหรับรายการ {1}"
@@ -46065,7 +46126,7 @@ msgstr "แถว {0}: ปริมาณที่ใช้ไปแล้ว {1
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "แถว {0}: ปัจจัยการแปลงเป็นสิ่งจำเป็น"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "แถว {0}: ศูนย์ต้นทุน {1} ไม่ได้เป็นของบริษัท {2}"
@@ -46085,7 +46146,7 @@ msgstr "แถว {0}: สกุลเงินของ BOM #{1} ควรเ
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "แถว {0}: รายการเดบิตไม่สามารถเชื่อมโยงกับ {1} ได้"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "แถว {0}: คลังสินค้าส่งมอบ ({1}) และคลังสินค้าลูกค้า ({2}) ไม่สามารถเป็นคลังเดียวกันได้"
@@ -46093,7 +46154,7 @@ msgstr "แถว {0}: คลังสินค้าส่งมอบ ({1})
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "แถว {0}: คลังสินค้าสำหรับการจัดส่งไม่สามารถเป็นคลังสินค้าของลูกค้าได้สำหรับสินค้า {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "แถว {0}: วันที่ครบกำหนดในตารางเงื่อนไขการชำระเงินไม่สามารถก่อนวันที่โพสต์ได้"
@@ -46138,16 +46199,16 @@ msgstr "แถว {0}: สำหรับผู้จัดจำหน่าย
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "แถว {0}: เวลาเริ่มต้นและเวลาสิ้นสุดเป็นสิ่งจำเป็น"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "แถว {0}: เวลาเริ่มต้นและเวลาสิ้นสุดของ {1} ทับซ้อนกับ {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "แถว {0}: คลังสินค้าเริ่มต้นเป็นสิ่งจำเป็นสำหรับการโอนภายใน"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "แถว {0}: เวลาเริ่มต้นต้องน้อยกว่าเวลาสิ้นสุด"
@@ -46163,7 +46224,7 @@ msgstr "แถว {0}: การอ้างอิง {1} ไม่ถูกต
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "แถว {0}: แม่แบบภาษีรายการอัปเดตตามความถูกต้องและอัตราที่ใช้"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "แถว {0}: อัตรารายการได้รับการอัปเดตตามอัตราการประเมินมูลค่าเนื่องจากเป็นการโอนสต็อกภายใน"
@@ -46187,7 +46248,7 @@ msgstr "แถว {0}: ปริมาณของรายการ {1} ไม
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "แถว {0}: ปริมาณที่บรรจุต้องเท่ากับปริมาณ {1}"
@@ -46255,7 +46316,7 @@ msgstr "แถว {0}: ใบแจ้งหนี้ซื้อ {1} ไม่
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "แถว {0}: ปริมาณไม่สามารถมากกว่า {1} สำหรับรายการ {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "แถว {0}: ปริมาณในหน่วยวัดสต็อกไม่สามารถเป็นศูนย์ได้"
@@ -46267,10 +46328,6 @@ msgstr "แถว {0}: ปริมาณต้องมากกว่า 0"
msgid "Row {0}: Quantity cannot be negative."
msgstr "แถว {0}: ปริมาณไม่สามารถเป็นค่าลบได้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "แถว {0}: ไม่มีปริมาณสำหรับ {4} ในคลังสินค้า {1} ณ เวลาที่โพสต์รายการ ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "แถว {0}: ใบแจ้งหนี้การขาย {1} ได้ถูกสร้างขึ้นแล้วสำหรับ {2}"
@@ -46279,11 +46336,11 @@ msgstr "แถว {0}: ใบแจ้งหนี้การขาย {1} ไ
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "แถว {0}: ไม่สามารถเปลี่ยนกะได้เนื่องจากการหักค่าเสื่อมราคาได้ถูกประมวลผลแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "แถว {0}: รายการจ้างช่วงเป็นสิ่งจำเป็นสำหรับวัตถุดิบ {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "แถว {0}: คลังสินค้าเป้าหมายเป็นสิ่งจำเป็นสำหรับการโอนภายใน"
@@ -46295,11 +46352,11 @@ msgstr "แถว {0}: งาน {1} ไม่ได้เป็นของโ
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "แถว {0}: จำนวนค่าใช้จ่ายทั้งหมดสำหรับบัญชี {1} ใน {2} ได้ถูกจัดสรรไปแล้ว"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "แถว {0}: รายการ {1} ปริมาณต้องเป็นตัวเลขบวก"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "แถว {0}: บัญชี {3} {1} ไม่ได้เป็นของบริษัท {2}"
@@ -46307,11 +46364,11 @@ msgstr "แถว {0}: บัญชี {3} {1} ไม่ได้เป็นข
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "แถว {0}: ในการตั้งค่าความถี่ {1} ความแตกต่างระหว่างวันที่เริ่มต้นและสิ้นสุดต้องมากกว่าหรือเท่ากับ {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "แถว {0}: ปริมาณที่โอนไม่สามารถมากกว่าปริมาณที่ขอได้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "แถว {0}: ปัจจัยการแปลงหน่วยวัดเป็นสิ่งจำเป็น"
@@ -46324,11 +46381,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "แถว {0}: สถานีงานหรือประเภทสถานีงานเป็นสิ่งจำเป็นสำหรับการดำเนินการ {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "แถว {0}: ผู้ใช้ไม่ได้ใช้กฎ {1} กับรายการ {2}"
@@ -46340,7 +46397,7 @@ msgstr "แถว {0}: บัญชี {1} ถูกใช้แล้วสำ
msgid "Row {0}: {1} must be greater than 0"
msgstr "แถว {0}: {1} ต้องมากกว่า 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "แถว {0}: {1} {2} ไม่สามารถเหมือนกับ {3} (บัญชีคู่สัญญา) {4}"
@@ -46386,7 +46443,7 @@ msgstr "แถวที่ถูกลบใน {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "แถวที่มีหัวบัญชีเดียวกันจะถูกผสานรวมในบัญชีแยกประเภท"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "พบแถวที่มีวันที่ครบกำหนดซ้ำในแถวอื่น: {0}"
@@ -46394,7 +46451,7 @@ msgstr "พบแถวที่มีวันที่ครบกำหนด
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "แถว: {0} มี 'Payment Entry' เป็น reference_type ซึ่งไม่ควรตั้งค่าด้วยตนเอง"
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "แถว: {0} ใน {1} ส่วนไม่ถูกต้อง ชื่อการอ้างอิงควรชี้ไปที่รายการชำระเงินหรือรายการบัญชีที่ถูกต้อง"
@@ -46601,8 +46658,8 @@ msgstr "สต็อกปลอดภัย"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46624,8 +46681,8 @@ msgstr "โหมดเงินเดือน"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46639,18 +46696,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "การขายสินค้า"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "บัญชีขาย"
@@ -46674,8 +46736,8 @@ msgstr "การสนับสนุนและแรงจูงใจกา
msgid "Sales Defaults"
msgstr "ค่าเริ่มต้นการขาย"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "ค่าใช้จ่ายในการขายสินค้า"
@@ -46844,11 +46906,11 @@ msgstr "ใบแจ้งหนี้ขายไม่ได้ถูกสร
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "โหมดใบแจ้งหนี้ขายถูกเปิดใช้งานใน POS โปรดสร้างใบแจ้งหนี้ขายแทน"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "ใบแจ้งหนี้ขาย {0} ถูกส่งแล้ว"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "ใบแจ้งหนี้ขาย {0} ต้องถูกลบก่อนที่จะยกเลิกคำสั่งขายนี้"
@@ -47046,25 +47108,25 @@ msgstr "แนวโน้มคำสั่งขาย"
msgid "Sales Order required for Item {0}"
msgstr "ต้องการคำสั่งขายสำหรับรายการ {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "คำสั่งขาย {0} มีอยู่แล้วสำหรับคำสั่งซื้อของลูกค้า {1} หากต้องการอนุญาตคำสั่งขายหลายรายการ ให้เปิดใช้งาน {2} ใน {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "คำสั่งขาย {0} ยังไม่ได้ส่ง"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "คำสั่งขาย {0} ไม่ถูกต้อง"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "คำสั่งขาย {0} คือ {1}"
@@ -47108,6 +47170,7 @@ msgstr "คำสั่งขายที่จะส่งมอบ"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47120,7 +47183,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47226,7 +47289,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47319,7 +47382,7 @@ msgstr "ทะเบียนการขาย"
msgid "Sales Representative"
msgstr "พนักงานขาย"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "การคืนสินค้า"
@@ -47343,7 +47406,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "แม่แบบภาษีการขาย"
@@ -47462,7 +47525,7 @@ msgstr "รายการเดียวกัน"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "การรวมกันของรายการและคลังสินค้าเดียวกันถูกป้อนแล้ว"
@@ -47494,12 +47557,12 @@ msgstr "คลังสินค้าที่เก็บตัวอย่า
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "ขนาดตัวอย่าง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "ปริมาณตัวอย่าง {0} ไม่สามารถมากกว่าปริมาณที่ได้รับ {1}"
@@ -47743,7 +47806,7 @@ msgstr "สินทรัพย์เศษ"
msgid "Scrap Warehouse"
msgstr "โกดังเศษวัสดุ"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "วันที่ยกเลิกไม่สามารถเป็นก่อนวันที่ซื้อ"
@@ -47862,8 +47925,8 @@ msgstr "บทบาทรอง"
msgid "Secretary"
msgstr "เลขานุการ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "สินเชื่อแบบมีหลักประกัน"
@@ -47901,7 +47964,7 @@ msgstr "เลือกสินค้าทดแทน"
msgid "Select Alternative Items for Sales Order"
msgstr "เลือกสินค้าทางเลือกสำหรับใบสั่งขาย"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "เลือกค่าของแอตทริบิวต์"
@@ -47943,7 +48006,7 @@ msgstr "เลือกบริษัท"
msgid "Select Company Address"
msgstr "เลือกที่อยู่บริษัท"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "เลือกการดำเนินการแก้ไข"
@@ -47979,7 +48042,7 @@ msgstr "เลือกมิติ"
msgid "Select Dispatch Address "
msgstr "เลือกที่อยู่จัดส่ง "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "เลือกพนักงาน"
@@ -48004,7 +48067,7 @@ msgstr "เลือกรายการ"
msgid "Select Items based on Delivery Date"
msgstr "เลือกรายการตามวันที่ส่งมอบ"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "เลือกรายการสำหรับการตรวจสอบคุณภาพ"
@@ -48042,7 +48105,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "เลือกผู้จัดจำหน่ายที่เป็นไปได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "เลือกปริมาณ"
@@ -48117,7 +48180,7 @@ msgstr "เลือกความสำคัญเริ่มต้น"
msgid "Select a Payment Method."
msgstr "เลือกวิธีการชำระเงิน"
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "เลือกผู้จัดจำหน่าย"
@@ -48140,7 +48203,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "เลือกกลุ่มรายการ"
@@ -48156,9 +48219,9 @@ msgstr "เลือกใบแจ้งหนี้เพื่อโหลด
msgid "Select an item from each set to be used in the Sales Order."
msgstr "เลือกรายการจากแต่ละชุดเพื่อใช้ในคำสั่งขาย"
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "เลือกอย่างน้อยหนึ่งค่าจากแต่ละคุณลักษณะ"
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48174,7 +48237,7 @@ msgstr "เลือกชื่อบริษัทก่อน"
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "เลือกสมุดการเงินสำหรับรายการ {0} ที่แถว {1}"
@@ -48206,7 +48269,7 @@ msgstr "เลือกบัญชีธนาคารเพื่อกระ
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "เลือกสถานีงานเริ่มต้นที่การดำเนินการจะดำเนินการ ซึ่งจะถูกดึงมาใน BOM และคำสั่งงาน"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "เลือกรายการที่จะผลิต"
@@ -48223,7 +48286,7 @@ msgstr "เลือกคลังสินค้า"
msgid "Select the customer or supplier."
msgstr "เลือกลูกค้าหรือผู้จัดจำหน่าย"
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "เลือกวันที่"
@@ -48231,6 +48294,12 @@ msgstr "เลือกวันที่"
msgid "Select the date and your timezone"
msgstr "เลือกวันที่และเขตเวลาของคุณ"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "เลือกวัตถุดิบ (รายการ) ที่จำเป็นสำหรับการผลิตรายการ"
@@ -48259,7 +48328,7 @@ msgstr "เลือกเพื่อทำให้ลูกค้าสาม
msgid "Selected POS Opening Entry should be open."
msgstr "รายการเปิด POS ที่เลือกควรเปิดอยู่"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "รายการราคาที่เลือกควรมีการตรวจสอบฟิลด์การซื้อและขาย"
@@ -48290,30 +48359,30 @@ msgstr "เอกสารที่เลือกต้องอยู่ใน
msgid "Self delivery"
msgstr "การจัดส่งด้วยตนเอง"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "ขาย"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "ขายสินทรัพย์"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "ขายจำนวน"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "จำนวนการขายไม่สามารถเกินจำนวนสินทรัพย์"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "จำนวนการขายไม่สามารถเกินจำนวนสินทรัพย์ได้ สินทรัพย์ {0} มีเพียง {1} รายการเท่านั้น"
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "จำนวนขายต้องมากกว่าศูนย์"
@@ -48566,7 +48635,7 @@ msgstr "หมายเลขซีเรียล / หมายเลขชุ
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48586,7 +48655,7 @@ msgstr "หมายเลขซีเรียล / หมายเลขชุ
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48631,7 +48700,7 @@ msgstr "หมายเลขประจำเครื่อง ช่วง"
msgid "Serial No Reserved"
msgstr "หมายเลขซีเรียลสงวนไว้"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "หมายเลขซีเรียล ซ้ำกันในชุด"
@@ -48771,7 +48840,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "หมายเลขซีเรียลถูกสร้างขึ้นสำเร็จ"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "หมายเลขซีเรียลถูกสำรองไว้ในรายการสำรองสินค้า คุณจำเป็นต้องยกเลิกการสำรองก่อนดำเนินการต่อ"
@@ -48841,7 +48910,7 @@ msgstr "ซีเรียล และ ชุด"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49255,7 +49324,7 @@ msgstr "ตั้งค่าล่วงหน้าและจัดสรร
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "ตั้งค่าอัตราพื้นฐานด้วยตนเอง"
@@ -49274,8 +49343,8 @@ msgstr "คลังสินค้าสำหรับการจัดส่
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "ตั้งค่าปริมาณสินค้าสำเร็จรูป"
@@ -49442,11 +49511,11 @@ msgstr "ตั้งค่าโดยแม่แบบภาษีรายก
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "ตั้งค่าบัญชีสินค้าคงคลังเริ่มต้นสำหรับสินค้าคงคลังถาวร"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "ตั้งค่าบัญชี {0} เริ่มต้นสำหรับรายการที่ไม่ใช่สต็อก"
@@ -49478,7 +49547,7 @@ msgstr "ตั้งค่าอัตราของรายการชุด
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "ตั้งค่าเป้าหมายตามกลุ่มรายการสำหรับพนักงานขายนี้"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "ตั้งค่าวันเริ่มต้นที่วางแผนไว้ (วันที่ประมาณการที่คุณต้องการให้การผลิตเริ่มต้น)"
@@ -49589,7 +49658,7 @@ msgid "Setting up company"
msgstr "กำลังตั้งค่าบริษัท"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "การตั้งค่า {0} เป็นสิ่งจำเป็น"
@@ -49609,6 +49678,10 @@ msgstr "การตั้งค่าสำหรับโมดูลการ
msgid "Settled"
msgstr "ตกลงแล้ว"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49801,7 +49874,7 @@ msgstr "ประเภทการจัดส่ง"
msgid "Shipment details"
msgstr "รายละเอียดการจัดส่ง"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "การจัดส่ง"
@@ -49839,7 +49912,7 @@ msgstr "ชื่อที่อยู่การขนส่ง"
msgid "Shipping Address Template"
msgstr "แม่แบบที่อยู่การขนส่ง"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "ที่อยู่การขนส่งไม่เป็นของ {0}"
@@ -49982,8 +50055,8 @@ msgstr "ชีวประวัติย่อสำหรับเว็บไ
msgid "Short-term Investments"
msgstr "การลงทุนระยะสั้น"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "การจัดสรรในระยะสั้น"
@@ -50317,7 +50390,7 @@ msgstr "พร้อมกัน"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "เนื่องจากมีการสูญเสียกระบวนการ {0} หน่วยสำหรับสินค้าสำเร็จรูป {1} คุณควรลดปริมาณลง {0} หน่วยสำหรับสินค้าสำเร็จรูป {1} ในตารางรายการ"
@@ -50362,7 +50435,7 @@ msgstr "ข้ามใบส่งของ"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50404,8 +50477,8 @@ msgstr "ค่าคงที่การทำให้เรียบ"
msgid "Soap & Detergent"
msgstr "สบู่และผงซักฟอก"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "ซอฟต์แวร์"
@@ -50429,7 +50502,7 @@ msgstr "ขายโดย"
msgid "Solvency Ratios"
msgstr "อัตราส่วนความมั่นคงทางการเงิน"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "ข้อมูลบริษัทที่จำเป็นบางรายการขาดหายไป คุณไม่มีสิทธิ์ในการอัปเดตข้อมูลเหล่านี้ กรุณาติดต่อผู้ดูแลระบบของคุณ"
@@ -50493,7 +50566,7 @@ msgstr "ชื่อฟิลด์ต้นทาง"
msgid "Source Location"
msgstr "ตำแหน่งต้นทาง"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50502,11 +50575,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50564,7 +50637,12 @@ msgstr "ลิงก์ที่อยู่คลังสินค้าต้
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "คลังสินค้าต้นทางเป็นสิ่งจำเป็นสำหรับรายการ {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "คลังสินค้าต้นทาง {0} ต้องเป็นคลังสินค้าของลูกค้า {1} ในใบสั่งซื้อจากผู้รับเหมาช่วง"
@@ -50572,24 +50650,23 @@ msgstr "คลังสินค้าต้นทาง {0} ต้องเป
msgid "Source and Target Location cannot be same"
msgstr "ตำแหน่งต้นทางและเป้าหมายไม่สามารถเหมือนกันได้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "คลังสินค้าต้นทางและเป้าหมายไม่สามารถเหมือนกันสำหรับแถว {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "คลังสินค้าต้นทางและเป้าหมายต้องแตกต่างกัน"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "แหล่งเงินทุน (หนี้สิน)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "คลังสินค้าต้นทางเป็นสิ่งจำเป็นสำหรับแถว {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50630,7 +50707,7 @@ msgstr "การใช้จ่ายสำหรับบัญชี {0} ({1}
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50638,7 +50715,7 @@ msgid "Split"
msgstr "แยก"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "แยกสินทรัพย์"
@@ -50662,7 +50739,7 @@ msgstr "แยกจาก"
msgid "Split Issue"
msgstr "แยกปัญหา"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "แยกปริมาณ"
@@ -50674,6 +50751,11 @@ msgstr "ปริมาณที่แยกต้องน้อยกว่า
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "กำลังแยก {0} {1} เป็น {2} แถวตามเงื่อนไขการชำระเงิน"
@@ -50746,13 +50828,13 @@ msgstr "การซื้อมาตรฐาน"
msgid "Standard Description"
msgstr "คำอธิบายมาตรฐาน"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "ค่าใช้จ่ายที่มีอัตรามาตรฐาน"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "การขายมาตรฐาน"
@@ -50773,8 +50855,8 @@ msgstr "เทมเพลตมาตรฐาน"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "ข้อกำหนดและเงื่อนไขมาตรฐานที่สามารถเพิ่มในการขายและการซื้อ ตัวอย่าง: ความถูกต้องของข้อเสนอ เงื่อนไขการชำระเงิน ความปลอดภัยและการใช้งาน เป็นต้น"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "อุปกรณ์ที่มีอัตรามาตรฐานใน {0}"
@@ -50809,7 +50891,7 @@ msgstr "ไม่สามารถเริ่มก่อนวันที่
msgid "Start Date should be lower than End Date"
msgstr "วันที่เริ่มต้นควรต่ำกว่าวันที่สิ้นสุด"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "เริ่มงาน"
@@ -50938,7 +51020,7 @@ msgstr "ภาพประกอบสถานะ"
msgid "Status and Reference"
msgstr "สถานะและอ้างอิง"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "สถานะต้องเป็น ยกเลิก หรือ เสร็จสมบูรณ์"
@@ -50968,6 +51050,7 @@ msgstr "ข้อมูลตามกฎหมายและข้อมูล
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50976,8 +51059,8 @@ msgstr "สต็อก"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51077,6 +51160,16 @@ msgstr "รายการปิดสต็อก {0} ได้ถูกจั
msgid "Stock Closing Log"
msgstr "บันทึกการปิดสต็อก"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51086,10 +51179,6 @@ msgstr "บันทึกการปิดสต็อก"
msgid "Stock Details"
msgstr "รายละเอียดสินค้าคงคลัง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "รายการสต็อกถูกสร้างขึ้นแล้วสำหรับคำสั่งงาน {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51153,7 +51242,7 @@ msgstr "รายการสต็อกถูกสร้างขึ้นแ
msgid "Stock Entry {0} created"
msgstr "สร้างรายการสต็อก {0} แล้ว"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "รายการสต็อก {0} ถูกสร้างขึ้นแล้ว"
@@ -51161,8 +51250,8 @@ msgstr "รายการสต็อก {0} ถูกสร้างขึ้
msgid "Stock Entry {0} is not submitted"
msgstr "รายการสต็อก {0} ยังไม่ได้ส่ง"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "ค่าใช้จ่ายสต็อก"
@@ -51240,8 +51329,8 @@ msgstr "ระดับสต็อก"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "หนี้สินสต๊อก"
@@ -51344,8 +51433,8 @@ msgstr "ปริมาณสต็อกเทียบกับจำนวน
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51357,7 +51446,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51369,7 +51458,7 @@ msgstr "การกระทบยอดสต็อก"
msgid "Stock Reconciliation Item"
msgstr "รายการกระทบยอดสต็อก"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "การกระทบยอดสต็อก"
@@ -51394,9 +51483,9 @@ msgstr "การตั้งค่าโพสต์สต็อกใหม่
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51407,7 +51496,7 @@ msgstr "การตั้งค่าโพสต์สต็อกใหม่
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51432,10 +51521,10 @@ msgstr "การจองสต็อก"
msgid "Stock Reservation Entries Cancelled"
msgstr "ยกเลิกรายการจองสต็อกแล้ว"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "สร้างรายการจองสต็อกแล้ว"
@@ -51463,7 +51552,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "คลังสินค้าการจองสต็อกไม่ตรงกัน"
@@ -51503,7 +51592,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51618,7 +51707,7 @@ msgstr "การตั้งค่าธุรกรรมสต็อก"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51751,11 +51840,11 @@ msgstr "ไม่สามารถจองสต็อกในคลังส
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "ไม่สามารถจองสต็อกในคลังสินค้ากลุ่ม {0} ได้"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "ไม่สามารถอัปเดตสต็อกกับใบส่งของต่อไปนี้: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "ไม่สามารถอัปเดตสต็อกได้เนื่องจากใบแจ้งหนี้มีรายการจัดส่งโดยตรง โปรดปิดใช้งาน 'อัปเดตสต็อก' หรือเอารายการจัดส่งโดยตรงออก"
@@ -51810,14 +51899,14 @@ msgstr "หิน"
msgid "Stop Reason"
msgstr "เหตุผลในการหยุด"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "ไม่สามารถยกเลิกคำสั่งหยุดงานได้ กรุณายกเลิกการหยุดก่อนจึงจะยกเลิกได้"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "ร้านค้า"
@@ -51875,7 +51964,7 @@ msgstr "คลังสินค้าชิ้นส่วนย่อย"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52137,7 +52226,7 @@ msgstr "รายการบริการคำสั่งจ้างช่
msgid "Subcontracting Order Supplied Item"
msgstr "รายการที่จัดหาสำหรับคำสั่งจ้างช่วง"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "คำสั่งจ้างช่วง {0} ถูกสร้างขึ้นแล้ว"
@@ -52226,7 +52315,7 @@ msgstr ""
msgid "Subdivision"
msgstr "การแบ่งย่อย"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "การส่งล้มเหลว"
@@ -52247,7 +52336,7 @@ msgstr "ส่งใบแจ้งหนี้ที่สร้างขึ้
msgid "Submit Journal Entries"
msgstr "ส่งรายการวารสาร"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "ส่งคำสั่งงานนี้เพื่อดำเนินการต่อ"
@@ -52401,7 +52490,7 @@ msgstr "กระทบยอดสำเร็จ"
msgid "Successfully Set Supplier"
msgstr "ตั้งค่าผู้จัดจำหน่ายสำเร็จ"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "เปลี่ยนหน่วยวัดสต็อกสำเร็จ โปรดกำหนดปัจจัยการแปลงใหม่สำหรับหน่วยวัดใหม่"
@@ -52425,7 +52514,7 @@ msgstr "นำเข้า {0} รายการสำเร็จ"
msgid "Successfully linked to Customer"
msgstr "เชื่อมโยงกับลูกค้าสำเร็จ"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "เชื่อมโยงกับผู้จัดจำหน่ายสำเร็จ"
@@ -52585,7 +52674,7 @@ msgstr "จำนวนที่จัดหา"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52683,6 +52772,7 @@ msgstr "รายละเอียดผู้จัดจำหน่าย"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52692,7 +52782,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52707,6 +52797,7 @@ msgstr "รายละเอียดผู้จัดจำหน่าย"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52791,7 +52882,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52826,8 +52917,6 @@ msgid "Supplier Number At Customer"
msgstr "หมายเลขผู้จัดจำหน่ายที่ลูกค้า"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "หมายเลขผู้จัดจำหน่าย"
@@ -52879,7 +52968,7 @@ msgstr "ผู้ติดต่อหลักของผู้จัดจำ
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52908,7 +52997,7 @@ msgstr "การเปรียบเทียบใบเสนอราคา
msgid "Supplier Quotation Item"
msgstr "รายการใบเสนอราคาผู้จัดจำหน่าย"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "สร้างใบเสนอราคาผู้จัดจำหน่าย {0} แล้ว"
@@ -52997,7 +53086,7 @@ msgstr "ประเภทผู้จัดจำหน่าย"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "คลังสินค้าผู้จัดจำหน่าย"
@@ -53014,17 +53103,12 @@ msgstr "ผู้จัดจำหน่ายส่งมอบให้ลู
msgid "Supplier is required for all selected Items"
msgstr "ผู้จัดหาสินค้าจำเป็นสำหรับสินค้าที่เลือกไว้ทั้งหมด"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "หมายเลขผู้จัดจำหน่ายที่กำหนดโดยลูกค้า"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "ผู้จัดจำหน่ายสินค้าและบริการ"
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "ไม่พบผู้จัดจำหน่าย {0} ใน {1}"
@@ -53037,8 +53121,8 @@ msgstr "ผู้จัดจำหน่าย"
msgid "Suppliers"
msgstr "ผู้จัดจำหน่าย"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "อุปกรณ์ที่อยู่ภายใต้ข้อกำหนดการเรียกเก็บเงินย้อนกลับ"
@@ -53129,7 +53213,7 @@ msgstr "เริ่มการซิงค์แล้ว"
msgid "Synchronize all accounts every hour"
msgstr "ซิงค์บัญชีทั้งหมดทุกชั่วโมง"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "ระบบกำลังใช้งาน"
@@ -53160,7 +53244,7 @@ msgstr "ระบบจะทำการแปลงค่าโดยปริ
msgid "System will fetch all the entries if limit value is zero."
msgstr "ระบบจะดึงรายการทั้งหมดหากค่าขีดจำกัดเป็นศูนย์"
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "ระบบจะไม่ตรวจสอบการเรียกเก็บเงินเกินเนื่องจากจำนวนเงินสำหรับรายการ {0} ใน {1} เป็นศูนย์"
@@ -53181,10 +53265,16 @@ msgstr "สรุปการคำนวณ TDS"
msgid "TDS Deducted"
msgstr "หัก ณ ที่จ่าย TDS"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "ภาษีหัก ณ ที่จ่าย"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53332,7 +53422,7 @@ msgstr "ที่อยู่คลังสินค้าเป้าหมา
msgid "Target Warehouse Address Link"
msgstr "ลิงก์ที่อยู่ของ Target Warehouse"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "ข้อผิดพลาดในการจอง Target Warehouse"
@@ -53340,24 +53430,23 @@ msgstr "ข้อผิดพลาดในการจอง Target Warehouse"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "คลังสินค้าสำหรับสินค้าสำเร็จรูปต้องเป็นคลังสินค้าเดียวกันกับคลังสินค้าสำเร็จรูป {1} ในใบสั่งงาน {2} ที่เชื่อมโยงกับใบสั่งซื้อภายนอกแบบรับจ้างผลิต"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "จำเป็นต้องมี Target Warehouse ก่อนส่ง"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Target Warehouse ถูกกำหนดไว้สำหรับสินค้าบางรายการ แต่ลูกค้าไม่ใช่ลูกค้าภายใน"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "คลังสินค้าเป้าหมาย {0} ต้องเป็นคลังสินค้าเดียวกันกับคลังสินค้าปลายทาง {1} ในรายการสินค้าขาเข้าตามสัญญาช่วง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "คลังสินค้าเป้าหมายเป็นข้อบังคับสำหรับแถว {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53474,8 +53563,8 @@ msgstr "จำนวนภาษีหลังส่วนลด (สกุล
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "จำนวนภาษีจะถูกปัดเศษในระดับแถว (รายการ)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "สินทรัพย์ภาษี"
@@ -53507,7 +53596,6 @@ msgstr "สินทรัพย์ภาษี"
msgid "Tax Breakup"
msgstr "การแยกภาษี"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53529,7 +53617,6 @@ msgstr "การแยกภาษี"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53545,6 +53632,7 @@ msgstr "การแยกภาษี"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53556,8 +53644,8 @@ msgstr "หมวดหมู่ภาษี"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "หมวดหมู่ภาษีได้ถูกเปลี่ยนเป็น \"รวม\" เนื่องจากรายการทั้งหมดเป็นรายการที่ไม่มีสต็อก"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "ค่าใช้จ่ายภาษี"
@@ -53631,7 +53719,7 @@ msgstr "อัตราภาษี %"
msgid "Tax Rates"
msgstr "อัตราภาษี"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "การคืนภาษีที่มอบให้แก่ผู้เดินทางภายใต้โครงการคืนภาษีสำหรับนักท่องเที่ยว"
@@ -53649,7 +53737,7 @@ msgstr "ข้อพิพาททางภาษี"
msgid "Tax Rule"
msgstr "กฎภาษี"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "ข้อขัดแย้งของกฎภาษีกับ {0}"
@@ -53664,7 +53752,7 @@ msgstr "การตั้งค่าภาษี"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "แบบฟอร์มภาษีเป็นสิ่งที่ต้องใช้"
@@ -53984,7 +54072,7 @@ msgstr "ภาษีและค่าธรรมเนียมที่ถู
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "ภาษีและค่าธรรมเนียมที่ถูกหัก (สกุลเงินของบริษัท)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "ข้อพิพาทเรื่องภาษี #{0}: {1} ไม่สามารถน้อยกว่า {2}ได้"
@@ -54017,8 +54105,8 @@ msgstr "เทคโนโลยี"
msgid "Telecommunications"
msgstr "โทรคมนาคม"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "ค่าโทรศัพท์"
@@ -54069,13 +54157,13 @@ msgstr "อยู่ระหว่างการพักชั่วครา
msgid "Temporary"
msgstr "ชั่วคราว"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "บัญชีชั่วคราว"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "เปิดชั่วคราว"
@@ -54257,7 +54345,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54356,7 +54444,7 @@ msgstr "ข้อความที่แสดงในงบการเงิ
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "ช่อง 'หมายเลขชุดที่' ต้องไม่ว่างเปล่าหรือมีค่าต่ำกว่า 1"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "การเข้าถึงเพื่อขอใบเสนอราคาจากพอร์ทัลถูกปิดใช้งาน หากต้องการให้เข้าถึงได้ กรุณาเปิดใช้งานในตั้งค่าพอร์ทัล"
@@ -54409,7 +54497,8 @@ msgstr "เงื่อนไขการชำระเงินในแถว
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "รายการเลือกที่มีรายการจองสินค้าคงคลังไม่สามารถอัปเดตได้ หากคุณต้องการทำการเปลี่ยนแปลง เราขอแนะนำให้ยกเลิกการจองสินค้าคงคลังที่มีอยู่ก่อนทำการอัปเดตรายการเลือก"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "ปริมาณการสูญเสียกระบวนการได้ถูกตั้งค่าใหม่ตามปริมาณการสูญเสียกระบวนการในบัตรงาน"
@@ -54425,7 +54514,7 @@ msgstr "หมายเลขซีเรียลที่แถว #{0}: {1}
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "หมายเลขซีเรียล {0} ถูกสงวนไว้สำหรับ {1} {2} และไม่สามารถใช้กับธุรกรรมอื่นใดได้"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "บันเดิลหมายเลขประจำเครื่องและชุดการผลิต {0} ไม่สามารถใช้ได้กับรายการนี้. 'ประเภทของรายการ' ควรเป็น 'ส่งออก' แทนที่จะเป็น 'นำเข้า' ในบันเดิลหมายเลขประจำเครื่องและชุดการผลิต {0}"
@@ -54461,7 +54550,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "ชุดการผลิต {0} ได้ถูกจองไว้แล้วใน {1} {2}ดังนั้น ไม่สามารถดำเนินการกับ {3} {4}ซึ่งถูกสร้างขึ้นตาม {5} {6}ได้"
@@ -54469,7 +54558,11 @@ msgstr "ชุดการผลิต {0} ได้ถูกจองไว้
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "ปริมาณที่ดำเนินการเสร็จสิ้น {0} ของการดำเนินการ {1} ไม่สามารถมากกว่าปริมาณที่ดำเนินการเสร็จสิ้น {2} ของการดำเนินการก่อนหน้า {3}"
@@ -54489,7 +54582,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "ระบบจะดึง BOM เริ่มต้นสำหรับรายการนั้น คุณสามารถเปลี่ยน BOM ได้"
@@ -54522,7 +54615,7 @@ msgstr "ฟิลด์จากผู้ถือหุ้นต้องไม
msgid "The field To Shareholder cannot be blank"
msgstr "ฟิลด์ถึงผู้ถือหุ้นต้องไม่ว่างเปล่า"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "ฟิลด์ {0} ในแถว {1} ไม่ได้ตั้งค่า"
@@ -54563,11 +54656,11 @@ msgstr "สินทรัพย์ต่อไปนี้ล้มเหลว
msgid "The following batches are expired, please restock them: {0}"
msgstr "แบทช์ต่อไปนี้หมดอายุแล้ว โปรดเติมสต็อกใหม่: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "รายการโพสต์ซ้ำที่ถูกยกเลิกต่อไปนี้ยังคงมีอยู่สำหรับ {0} : {1} กรุณาลบรายการเหล่านี้ก่อนดำเนินการต่อ"
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "คุณลักษณะที่ถูกลบต่อไปนี้มีอยู่ในตัวแปรแต่ไม่อยู่ในแม่แบบ คุณสามารถลบตัวแปรหรือเก็บคุณลักษณะไว้ในแม่แบบ"
@@ -54588,7 +54681,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr "แถวต่อไปนี้ซ้ำกัน:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "{0} ต่อไปนี้ถูกสร้างขึ้น: {1}"
@@ -54615,7 +54708,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "รายการ {item} ไม่ได้ถูกทำเครื่องหมายเป็นรายการ {type_of} คุณสามารถเปิดใช้งานเป็นรายการ {type_of} ได้จากมาสเตอร์รายการ"
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "รายการ {0} และ {1} มีอยู่ใน {2} ต่อไปนี้:"
@@ -54673,7 +54766,7 @@ msgstr "การดำเนินการ {0} ไม่สามารถเ
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "ใบแจ้งหนี้ต้นฉบับควรถูกรวมก่อนหรือพร้อมกับใบแจ้งหนี้คืน"
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "ยอดคงเหลือ {0} ใน {1} น้อยกว่า {2}. กำลังปรับปรุงยอดคงเหลือให้เป็นไปตามใบแจ้งหนี้ฉบับนี้"
@@ -54685,6 +54778,12 @@ msgstr "บัญชีแม่ {0} ไม่มีในเทมเพลต
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "บัญชีเกตเวย์การชำระเงินในแผน {0} แตกต่างจากบัญชีเกตเวย์การชำระเงินในคำขอชำระเงินนี้"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54726,7 +54825,7 @@ msgstr "สต็อกที่จองไว้จะถูกปล่อย
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "สต็อกที่จองไว้จะถูกปล่อย คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "บัญชีราก {0} ต้องเป็นกลุ่ม"
@@ -54742,7 +54841,7 @@ msgstr "บัญชีเปลี่ยนแปลงที่เลือก
msgid "The selected item cannot have Batch"
msgstr "รายการที่เลือกไม่สามารถมีแบทช์ได้"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "ปริมาณการขายน้อยกว่าปริมาณสินทรัพย์ทั้งหมด ปริมาณที่เหลือจะถูกแบ่งเป็นสินทรัพย์ใหม่ การกระทำนี้ไม่สามารถยกเลิกได้คุณต้องการดำเนินการต่อหรือไม่ "
@@ -54775,7 +54874,7 @@ msgstr "หุ้นไม่มีอยู่กับ {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "สต็อกสำหรับรายการ {0} ในคลังสินค้า {1} เป็นลบเมื่อวันที่ {2} คุณควรสร้างรายการบวก {3} ก่อนวันที่ {4} และเวลา {5} เพื่อโพสต์อัตราการประเมินมูลค่าที่ถูกต้อง สำหรับรายละเอียดเพิ่มเติม โปรดอ่าน เอกสาร ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "สต็อกถูกจองไว้สำหรับรายการและคลังสินค้าต่อไปนี้ ยกเลิกการจองเพื่อ {0} การกระทบยอดสต็อก: {1}"
@@ -54797,11 +54896,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "ระบบจะสร้างใบแจ้งหนี้การขายหรือใบแจ้งหนี้ POS จากอินเทอร์เฟซ POS ตามการตั้งค่านี้ สำหรับการทำธุรกรรมที่มีปริมาณมาก แนะนำให้ใช้ใบแจ้งหนี้ POS"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "งานถูกจัดคิวเป็นงานพื้นหลัง หากมีปัญหาในการประมวลผลในพื้นหลัง ระบบจะเพิ่มความคิดเห็นเกี่ยวกับข้อผิดพลาดในกระทบยอดสต็อกนี้และเปลี่ยนกลับไปยังสถานะร่าง"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "งานถูกจัดคิวเป็นงานพื้นหลัง หากมีปัญหาในการประมวลผลในพื้นหลัง ระบบจะเพิ่มความคิดเห็นเกี่ยวกับข้อผิดพลาดในกระทบยอดสต็อกนี้และเปลี่ยนกลับไปยังสถานะที่ส่งแล้ว"
@@ -54849,15 +54948,15 @@ msgstr "ค่าของ {0} แตกต่างกันระหว่า
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "ค่า {0} ถูกกำหนดให้กับรายการที่มีอยู่แล้ว {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "คลังสินค้าที่คุณเก็บรายการที่เสร็จสมบูรณ์ก่อนที่จะจัดส่ง"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "คลังสินค้าที่รายการของคุณจะถูกโอนเมื่อคุณเริ่มการผลิต คลังสินค้ากลุ่มยังสามารถเลือกเป็นคลังสินค้างานระหว่างทำได้"
@@ -54865,19 +54964,19 @@ msgstr "คลังสินค้าที่รายการของคุ
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) ต้องเท่ากับ {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} มีรายการราคาต่อหน่วย"
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "{1}คำนำหน้า ' {0} ' (' ') มีอยู่แล้ว กรุณาเปลี่ยนหมายเลขซีเรียลซีรีส์ มิฉะนั้นคุณจะได้รับข้อผิดพลาดการบันทึกซ้ำ"
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "สร้าง {0} {1} สำเร็จแล้ว"
@@ -54885,7 +54984,7 @@ msgstr "สร้าง {0} {1} สำเร็จแล้ว"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} ไม่ตรงกับ {0} {2} ใน {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} ถูกใช้ในการคำนวณต้นทุนการประเมินมูลค่าสำหรับสินค้าสำเร็จรูป {2}"
@@ -54901,7 +55000,7 @@ msgstr "มีการบำรุงรักษาหรือซ่อมแ
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "มีความไม่สอดคล้องกันระหว่างอัตรา จำนวนหุ้น และจำนวนเงินที่คำนวณได้"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "มีรายการบัญชีในสมุดบัญชีสำหรับบัญชีนี้ การเปลี่ยน {0} เป็น non-{1} ในระบบจริงจะทำให้รายงาน 'บัญชี {2}' แสดงผลลัพธ์ไม่ถูกต้อง"
@@ -54930,7 +55029,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "มีสองทางเลือกในการรักษาการประเมินมูลค่าของหุ้น ได้แก่ FIFO (เข้าแรกออกก่อน) และค่าเฉลี่ยเคลื่อนที่ หากต้องการทำความเข้าใจหัวข้อนี้อย่างละเอียด โปรดไปที่การประเมินมูลค่าสินค้า, FIFO และค่าเฉลี่ยเคลื่อนที่ "
@@ -54970,7 +55069,7 @@ msgstr "ไม่พบชุดข้อมูลที่ตรงกับ {0
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "ต้องมีสินค้าสำเร็จรูปอย่างน้อย 1 รายการในรายการสต็อกนี้"
@@ -55026,11 +55125,11 @@ msgstr "รายการนี้เป็นตัวแปรของ {0} (
msgid "This Month's Summary"
msgstr "สรุปเดือนนี้"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "ใบสั่งซื้อใบนี้ได้ถูกมอบหมายให้ผู้รับเหมาช่วงดำเนินการทั้งหมดแล้ว"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "ใบสั่งขายนี้ได้รับการว่าจ้างช่วงเต็มจำนวนแล้ว"
@@ -55064,7 +55163,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "ครอบคลุมการ์ดคะแนนทั้งหมดที่เชื่อมโยงกับการตั้งค่านี้"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "เอกสารนี้เกินขีดจำกัด {0} {1} สำหรับรายการ {4} คุณกำลังทำ {3} อื่นกับ {2} เดียวกันหรือไม่?"
@@ -55167,11 +55266,11 @@ msgstr "นี่ถือว่าอันตรายจากมุมมอ
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "นี่คือสำหรับรายการวัตถุดิบที่จะใช้ในการสร้างสินค้าสำเร็จรูป หากรายการเป็นบริการเพิ่มเติมเช่น 'การซัก' ที่จะใช้ใน BOM ให้ปล่อยช่องนี้ว่างไว้"
@@ -55240,7 +55339,7 @@ msgstr "กำหนดการนี้ถูกสร้างขึ้นเ
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกซ่อมแซมผ่านการซ่อมแซมสินทรัพย์ {1}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกคืนค่าเนื่องจากการยกเลิกใบแจ้งหนี้ขาย {1}"
@@ -55248,15 +55347,15 @@ msgstr "กำหนดการนี้ถูกสร้างขึ้นเ
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกคืนค่าเนื่องจากการยกเลิกการเพิ่มทุนสินทรัพย์ {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกคืนค่า"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกคืนผ่านใบแจ้งหนี้ขาย {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูกทิ้ง"
@@ -55264,7 +55363,7 @@ msgstr "กำหนดการนี้ถูกสร้างขึ้นเ
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูก {1} เป็นสินทรัพย์ใหม่ {2}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "กำหนดการนี้ถูกสร้างขึ้นเมื่อสินทรัพย์ {0} ถูก {1} ผ่านใบแจ้งหนี้ขาย {2}"
@@ -55333,7 +55432,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "สิ่งนี้จะจำกัดการเข้าถึงของผู้ใช้ไปยังระเบียนพนักงานอื่น"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "{} นี้จะถือว่าเป็นการโอนวัสดุ"
@@ -55444,7 +55543,7 @@ msgstr "เวลาเป็นนาที"
msgid "Time in mins."
msgstr "เวลาเป็นนาที"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "จำเป็นต้องมีบันทึกเวลาสำหรับ {0} {1}"
@@ -55553,7 +55652,7 @@ msgstr "ถึง บิล"
msgid "To Currency"
msgstr "เป็นสกุลเงิน"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "ไม่สามารถเป็นวันที่ก่อนวันที่เริ่มต้นได้"
@@ -55780,11 +55879,15 @@ msgstr "เพื่อเพิ่มการดำเนินการ ใ
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "เพื่อเพิ่มวัตถุดิบของรายการที่จ้างช่วง หากไม่ได้เปิดใช้งานการรวมรายการที่ขยายแล้ว"
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "หากต้องการอนุญาตให้มีการเรียกเก็บเงินเกิน ให้อัปเดต \"วงเงินการเรียกเก็บเงินเกิน\" ในตั้งค่าบัญชีหรือสินค้า"
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "หากต้องการอนุญาตให้มีการรับ/ส่งเกิน ให้อัปเดต \"การอนุญาตให้รับ/ส่งเกิน\" ใน การตั้งค่าสต็อก หรือในรายการสินค้า"
@@ -55827,11 +55930,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "เพื่อรวมภาษีในแถว {0} ในอัตรารายการ ต้องรวมภาษีในแถว {1} ด้วย"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "เพื่อรวม คุณสมบัติต่อไปนี้ต้องเหมือนกันสำหรับทั้งสองรายการ"
@@ -55839,7 +55942,7 @@ msgstr "เพื่อรวม คุณสมบัติต่อไปน
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "หากไม่ต้องการใช้กฎการกำหนดราคาในรายการธุรกรรมใดรายการหนึ่ง ควรปิดใช้งานกฎการกำหนดราคาทั้งหมดที่เกี่ยวข้อง"
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "เพื่อยกเลิกกฎนี้ ให้เปิดใช้งาน '{0}' ในบริษัท {1}"
@@ -55864,7 +55967,7 @@ msgstr "เพื่อส่งใบแจ้งหนี้โดยไม่
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "เพื่อใช้สมุดการเงินที่แตกต่าง โปรดยกเลิกการเลือก 'รวมสินทรัพย์ FB เริ่มต้น'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56014,7 +56117,7 @@ msgstr "รวมการจัดสรร"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56121,12 +56224,12 @@ msgstr "รวมค่าคอมมิชชั่น"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "รวมปริมาณที่เสร็จสิ้น"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "จำเป็นต้องมีจำนวนที่เสร็จสิ้นทั้งหมดสำหรับบัตรงาน {0}กรุณาเริ่มและกรอกบัตรงานให้เสร็จสมบูรณ์ก่อนการส่ง"
@@ -56428,7 +56531,7 @@ msgstr "รวมจำนวนเงินค้างชำระ"
msgid "Total Paid Amount"
msgstr "รวมจำนวนเงินที่ชำระ"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "จำนวนเงินชำระรวมในตารางการชำระเงินต้องเท่ากับยอดรวม/ยอดปัดเศษ"
@@ -56440,7 +56543,7 @@ msgstr "จำนวนคำขอชำระเงินรวมต้อง
msgid "Total Payments"
msgstr "รวมการชำระเงิน"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "ปริมาณที่เลือกทั้งหมด {0} มากกว่าปริมาณที่สั่ง {1} คุณสามารถตั้งค่าค่าเผื่อการเลือกเกินในการตั้งค่าสต็อก"
@@ -56723,7 +56826,7 @@ msgstr "เวลาทั้งหมดที่ใช้กับเวิร
msgid "Total allocated percentage for sales team should be 100"
msgstr "เปอร์เซ็นต์ที่จัดสรรสำหรับทีมขายควรเป็น 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "เปอร์เซ็นต์การสนับสนุนรวมควรเท่ากับ 100"
@@ -56898,7 +57001,7 @@ msgstr "วันที่ธุรกรรม"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "เอกสารการลบธุรกรรม {0} ได้ถูกกระตุ้นสำหรับบริษัท {1}"
@@ -56922,11 +57025,11 @@ msgstr "รายการบันทึกการลบธุรกรรม
msgid "Transaction Deletion Record To Delete"
msgstr "บันทึกการลบรายการธุรกรรม เพื่อลบ"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "{1}บันทึกการลบธุรกรรม {0} กำลังทำงานอยู่แล้ว"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "บันทึกการลบรายการธุรกรรม {0} กำลังลบ {1}ไม่สามารถบันทึกเอกสารได้จนกว่าการลบจะเสร็จสมบูรณ์"
@@ -57031,7 +57134,8 @@ msgstr "ธุรกรรมที่มีการหักภาษี ณ
msgid "Transaction from which tax is withheld"
msgstr "ธุรกรรมที่มีการหักภาษี ณ ที่จ่าย"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "ไม่อนุญาตให้ทำธุรกรรมกับคำสั่งงานที่หยุด {0}"
@@ -57078,11 +57182,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "การใช้ใบแจ้งหนี้ขายใน POS ถูกปิดใช้งาน"
@@ -57263,8 +57372,8 @@ msgstr "ข้อมูลผู้ขนส่ง"
msgid "Transporter Name"
msgstr "ชื่อผู้ขนส่ง"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "ค่าเดินทาง"
@@ -57528,6 +57637,7 @@ msgstr "การตั้งค่าภาษีมูลค่าเพิ่
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57543,7 +57653,7 @@ msgstr "การตั้งค่าภาษีมูลค่าเพิ่
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57604,7 +57714,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "ปัจจัยการแปลงหน่วย"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "ไม่พบตัวคูณการแปลงหน่วย ({0} -> {1}) สำหรับรายการ: {2}"
@@ -57617,7 +57727,7 @@ msgstr "จำเป็นต้องมีตัวคูณการแปล
msgid "UOM Name"
msgstr "ชื่อหน่วยวัด"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "ปัจจัยการแปลงหน่วยที่ต้องการสำหรับหน่วย: {0} ในรายการ: {1}"
@@ -57689,13 +57799,13 @@ msgstr "ไม่สามารถหาอัตราแลกเปลี่
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "ไม่สามารถหาคะแนนเริ่มต้นที่ {0} ได้ คุณต้องมีคะแนนที่ครอบคลุมตั้งแต่ 0 ถึง 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "ไม่สามารถหาช่วงเวลาภายใน {0} วันถัดไปสำหรับการดำเนินการ {1} ได้ โปรดเพิ่ม 'การวางแผนความจุสำหรับ (วัน)' ใน {2}"
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "ไม่สามารถหาตัวแปรได้:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57776,7 +57886,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "รูปแบบการตั้งชื่อที่ไม่คาดคิด"
@@ -57795,7 +57905,7 @@ msgstr "หน่วย"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "ราคาต่อหน่วย"
@@ -57812,7 +57922,7 @@ msgstr "หน่วยวัด"
msgid "Unit of Measure (UOM)"
msgstr "หน่วยวัด (UOM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "หน่วยวัด {0} ถูกป้อนมากกว่าหนึ่งครั้งในตารางปัจจัยการแปลง"
@@ -57957,7 +58067,7 @@ msgstr "รายการที่ยังไม่ได้กระทบย
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57997,12 +58107,12 @@ msgstr "ยังไม่ได้แก้ไข"
msgid "Unscheduled"
msgstr "ยังไม่ได้กำหนดเวลา"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "สินเชื่อแบบไม่มีหลักประกัน"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "ยกเลิกการตั้งค่าคำขอชำระเงินที่ตรงกัน"
@@ -58178,7 +58288,7 @@ msgstr "อัปเดตรายการ"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "อัปเดตยอดค้างชำระสำหรับตัวเอง"
@@ -58257,11 +58367,11 @@ msgstr "อัปเดต {0} รายงานทางการเงิน
msgid "Updating Costing and Billing fields against this Project..."
msgstr "อัปเดตข้อมูลต้นทุนและการเรียกเก็บเงินสำหรับโครงการนี้..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "กำลังอัปเดตตัวแปร..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "กำลังอัปเดตสถานะคำสั่งงาน"
@@ -58463,7 +58573,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "ใช้อัตราแลกเปลี่ยนตามวันที่ธุรกรรม"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "ใช้ชื่อที่แตกต่างจากชื่อโครงการก่อนหน้า"
@@ -58505,7 +58615,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "ใช้ร่วมกับแม่แบบรายงานทางการเงิน"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "ฟอรัมผู้ใช้"
@@ -58569,6 +58679,11 @@ msgstr "ผู้ใช้สามารถเปิดใช้งานช่
msgid "Users can make manufacture entry against Job Cards"
msgstr "ผู้ใช้สามารถทำการบันทึกการผลิตสำหรับบัตรงานได้"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58591,8 +58706,8 @@ msgstr "ผู้ใช้ที่มีบทบาทนี้จะได้
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "การใช้สต็อกติดลบจะปิดใช้งานการประเมินมูลค่า FIFO/ค่าเฉลี่ยเคลื่อนที่เมื่อสินค้าคงคลังติดลบ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "ค่าสาธารณูปโภค"
@@ -58602,7 +58717,7 @@ msgstr "ค่าสาธารณูปโภค"
msgid "VAT Accounts"
msgstr "บัญชี VAT"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "จำนวนเงิน VAT (AED)"
@@ -58612,12 +58727,12 @@ msgid "VAT Audit Report"
msgstr "รายงานการตรวจสอบ VAT"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "VAT ในค่าใช้จ่ายและข้อมูลอื่น ๆ ทั้งหมด"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "VAT ในการขายและผลลัพธ์อื่น ๆ ทั้งหมด"
@@ -58811,7 +58926,6 @@ msgstr "วิธีการประเมินมูลค่า"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58827,14 +58941,12 @@ msgstr "วิธีการประเมินมูลค่า"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "อัตราการประเมินมูลค่า"
@@ -58842,19 +58954,19 @@ msgstr "อัตราการประเมินมูลค่า"
msgid "Valuation Rate (In / Out)"
msgstr "อัตราการประเมินมูลค่า (เข้า / ออก)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "ไม่มีอัตราการประเมินมูลค่า"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "อัตราการประเมินมูลค่าสำหรับรายการ {0} จำเป็นสำหรับการทำรายการบัญชีสำหรับ {1} {2}"
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "อัตราการประเมินมูลค่าเป็นสิ่งจำเป็นหากป้อนสต็อกเริ่มต้น"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "ต้องการอัตราการประเมินมูลค่าสำหรับรายการ {0} ที่แถว {1}"
@@ -58864,7 +58976,7 @@ msgstr "ต้องการอัตราการประเมินมู
msgid "Valuation and Total"
msgstr "การประเมินมูลค่าและรวม"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "อัตราการประเมินมูลค่าสำหรับรายการที่ลูกค้าให้ถูกตั้งค่าเป็นศูนย์"
@@ -58878,7 +58990,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "อัตราการประเมินมูลค่าสำหรับรายการตามใบแจ้งหนี้ขาย (เฉพาะสำหรับการโอนภายใน)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "ค่าธรรมเนียมประเภทการประเมินมูลค่าไม่สามารถทำเครื่องหมายว่าเป็นแบบรวมได้"
@@ -58890,7 +59002,7 @@ msgstr "ค่าธรรมเนียมประเภทการประ
msgid "Value (G - D)"
msgstr "ค่า (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "ค่า ({0})"
@@ -59009,12 +59121,12 @@ msgid "Variance ({})"
msgstr "ความแปรปรวน ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "ตัวแปร"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "ข้อผิดพลาดของคุณลักษณะตัวแปร"
@@ -59033,7 +59145,7 @@ msgstr "BOM ตัวแปร"
msgid "Variant Based On"
msgstr "ตัวแปรตาม"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "ตัวแปรตามไม่สามารถเปลี่ยนแปลงได้"
@@ -59051,7 +59163,7 @@ msgstr "ฟิลด์ตัวแปร"
msgid "Variant Item"
msgstr "รายการตัวแปร"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "รายการตัวแปร"
@@ -59062,7 +59174,7 @@ msgstr "รายการตัวแปร"
msgid "Variant Of"
msgstr "ตัวแปรของ"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "การสร้างตัวแปรถูกจัดคิวแล้ว"
@@ -59356,7 +59468,7 @@ msgstr "ใบสำคัญ"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "ใบสำคัญ #"
@@ -59428,7 +59540,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59502,7 +59614,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59529,7 +59641,7 @@ msgstr "ประเภทใบสำคัญย่อย"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59709,8 +59821,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "ไม่พบคลังสินค้าสำหรับบัญชี {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "ต้องการคลังสินค้าสำหรับรายการสต็อก {0}"
@@ -59735,7 +59847,7 @@ msgstr "คลังสินค้า {0} ไม่ได้เป็นขอ
msgid "Warehouse {0} does not exist"
msgstr "คลังสินค้า {0} ไม่มีอยู่"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "คลังสินค้า {0} ไม่ได้รับอนุญาตสำหรับคำสั่งขาย {1} ควรเป็น {2}"
@@ -59872,11 +59984,11 @@ msgstr "คำเตือน: มี {0} # {1} อื่นที่มีอ
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "คำเตือน: ปริมาณที่ขอวัสดุน้อยกว่าปริมาณการสั่งซื้อขั้นต่ำ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "คำเตือน: ปริมาณเกินปริมาณสูงสุดที่สามารถผลิตได้ ตามปริมาณวัตถุดิบที่ได้รับผ่านคำสั่งซื้อจากผู้รับเหมาช่วงขาเข้า {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "คำเตือน: คำสั่งขาย {0} มีอยู่แล้วสำหรับคำสั่งซื้อของลูกค้า {1}"
@@ -59966,7 +60078,7 @@ msgstr "ความยาวคลื่นเป็นกิโลเมตร
msgid "Wavelength In Megametres"
msgstr "ความยาวคลื่น ในเมกะเมตร"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "เราสามารถเห็นได้ว่า {0} ถูกสร้างขึ้นเพื่อ {1}หากคุณต้องการให้ยอดคงเหลือของ {1}ได้รับการอัปเดต ให้ยกเลิกการเลือกช่อง '{2}'"
@@ -60035,7 +60147,7 @@ msgstr "เว็บไซต์:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "สัปดาห์ {0} {1}"
@@ -60165,7 +60277,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "เมื่อสร้างรายการ การป้อนค่าลงในฟิลด์นี้จะสร้างราคาสินค้าในส่วนหลังโดยอัตโนมัติ"
@@ -60175,7 +60287,7 @@ msgstr "เมื่อสร้างรายการ การป้อน
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "เมื่อมีสินค้าสำเร็จรูปหลายรายการ ({0}) ในรายการสต็อกการบรรจุใหม่ (Repack) อัตราพื้นฐานสำหรับสินค้าสำเร็จรูปทั้งหมดจะต้องถูกกำหนดด้วยตนเอง เพื่อกำหนดอัตราด้วยตนเอง ให้เปิดใช้งานช่องทำเครื่องหมาย 'กำหนดอัตราพื้นฐานด้วยตนเอง' ในแถวของสินค้าสำเร็จรูปที่เกี่ยวข้อง"
@@ -60185,11 +60297,11 @@ msgstr "เมื่อมีสินค้าสำเร็จรูปหล
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "ขณะสร้างบัญชีสำหรับบริษัทลูก {0} พบว่าบัญชีหลัก {1} เป็นบัญชีแยกประเภท"
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "ขณะสร้างบัญชีสำหรับบริษัทลูก {0} ไม่พบบัญชีหลัก {1} โปรดสร้างบัญชีหลักใน COA ที่เกี่ยวข้อง"
@@ -60334,7 +60446,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "งานที่กำลังดำเนินการ"
@@ -60371,7 +60483,7 @@ msgstr "งานที่กำลังดำเนินการ"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60405,7 +60517,7 @@ msgstr "วัสดุที่ใช้ในคำสั่งงาน"
msgid "Work Order Item"
msgstr "รายการคำสั่งงาน"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60446,19 +60558,23 @@ msgstr "สรุปคำสั่งงาน"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "ไม่สามารถสร้างคำสั่งงานได้เนื่องจากเหตุผลต่อไปนี้: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "ไม่สามารถสร้างคำสั่งงานสำหรับแม่แบบรายการได้"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "คำสั่งงานได้ถูก {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "ไม่ได้สร้างคำสั่งงาน"
@@ -60467,16 +60583,16 @@ msgstr "ไม่ได้สร้างคำสั่งงาน"
msgid "Work Order {0} created"
msgstr "ใบสั่งงาน {0} สร้าง"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "คำสั่งงาน {0}: ไม่พบการ์ดงานสำหรับการดำเนินการ {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "คำสั่งงาน"
@@ -60501,7 +60617,7 @@ msgstr "งานที่กำลังดำเนินการ"
msgid "Work-in-Progress Warehouse"
msgstr "คลังสินค้างานที่กำลังดำเนินการ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "ต้องการคลังสินค้างานที่กำลังดำเนินการก่อนการส่ง"
@@ -60549,7 +60665,7 @@ msgstr "ชั่วโมงทำงาน"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60640,14 +60756,14 @@ msgstr "สถานีงาน"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "หนี้สูญ"
@@ -60752,7 +60868,7 @@ msgstr "มูลค่าหลังการตัดจำหน่าย"
msgid "Wrong Company"
msgstr "บริษัทผิดอัน"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "รหัสผ่านผิด"
@@ -60808,11 +60924,11 @@ msgstr "วันที่เริ่มปีหรือวันที่ส
msgid "You are importing data for the code list:"
msgstr "คุณกำลังนำเข้าข้อมูลสำหรับรายการรหัส:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตตามเงื่อนไขที่ตั้งไว้ในเวิร์กโฟลว์ {}"
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "คุณไม่ได้รับอนุญาตให้เพิ่มหรืออัปเดตรายการก่อน {0}"
@@ -60820,7 +60936,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้เพิ
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "คุณไม่ได้รับอนุญาตให้ทำ/แก้ไขธุรกรรมสต็อกสำหรับรายการ {0} ภายใต้คลังสินค้า {1} ก่อนเวลานี้"
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "คุณไม่ได้รับอนุญาตให้ตั้งค่าค่าที่ถูกแช่แข็ง"
@@ -60848,7 +60964,7 @@ msgstr "คุณยังสามารถตั้งค่าบัญชี
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "คุณสามารถเปลี่ยนบัญชีหลักเป็นบัญชีงบดุลหรือเลือกบัญชีอื่น"
@@ -60889,11 +61005,11 @@ msgstr "คุณสามารถตั้งค่าเป็นชื่อ
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "คุณสามารถใช้ {0} เพื่อตรวจสอบความถูกต้องกับ {1} ในภายหลังได้"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "คุณไม่สามารถเปลี่ยนแปลงใด ๆ กับการ์ดงานได้เนื่องจากคำสั่งงานถูกปิด"
@@ -60917,7 +61033,7 @@ msgstr "คุณไม่สามารถสร้าง {0} ภายใน
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "คุณไม่สามารถสร้างหรือยกเลิกรายการบัญชีใด ๆ ภายในช่วงเวลาบัญชีที่ปิด {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "คุณไม่สามารถสร้าง/แก้ไขรายการบัญชีใด ๆ จนถึงวันนี้"
@@ -60978,7 +61094,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "คุณไม่มีสิทธิ์ {} รายการใน {}"
@@ -60990,19 +61106,19 @@ msgstr "คุณไม่มีคะแนนสะสมเพียงพอ
msgid "You don't have enough points to redeem."
msgstr "คุณไม่มีคะแนนเพียงพอที่จะแลก"
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61014,7 +61130,7 @@ msgstr "คุณมีข้อผิดพลาด {} ขณะสร้า
msgid "You have already selected items from {0} {1}"
msgstr "คุณได้เลือกรายการจาก {0} {1} แล้ว"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "คุณได้รับเชิญให้ร่วมมือในโครงการ {0}"
@@ -61038,7 +61154,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "คุณต้องเปิดใช้งานการสั่งซื้ออัตโนมัติในการตั้งค่าสต็อกเพื่อรักษาระดับการสั่งซื้อใหม่"
@@ -61054,7 +61170,7 @@ msgstr "คุณต้องเลือกลูกค้าก่อนเพ
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "คุณต้องยกเลิกการปิด POS Entry {} เพื่อที่จะยกเลิกเอกสารนี้"
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "คุณเลือกกลุ่มบัญชี {1} เป็นบัญชี {2} ในแถว {0} โปรดเลือกบัญชีเดียว"
@@ -61101,11 +61217,11 @@ msgstr "รหัสไปรษณีย์"
msgid "Zero Balance"
msgstr "ยอดคงเหลือศูนย์"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "อัตราศูนย์"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "ปริมาณศูนย์"
@@ -61127,11 +61243,11 @@ msgstr "ไฟล์ซิป"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[สำคัญ] [ERPNext] ข้อผิดพลาดการสั่งซื้ออัตโนมัติ"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`อนุญาตอัตราเชิงลบสำหรับรายการ`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "หลังจาก"
@@ -61172,7 +61288,7 @@ msgid "cannot be greater than 100"
msgstr "ต้องไม่เกิน 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "ลงวันที่ {0}"
@@ -61321,7 +61437,7 @@ msgstr "ไม่ได้ติดตั้งแอปการชำระเ
msgid "per hour"
msgstr "ต่อชั่วโมง"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "ดำเนินการอย่างใดอย่างหนึ่งด้านล่าง:"
@@ -61354,7 +61470,7 @@ msgstr "ได้รับจาก"
msgid "reconciled"
msgstr "กระทบยอดแล้ว"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "ส่งคืน"
@@ -61389,7 +61505,7 @@ msgstr "ขวา"
msgid "sandbox"
msgstr "แซนด์บ็อกซ์"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "ขายแล้ว"
@@ -61397,8 +61513,8 @@ msgstr "ขายแล้ว"
msgid "subscription is already cancelled."
msgstr "การสมัครสมาชิกถูกยกเลิกแล้ว"
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "ฟิลด์อ้างอิงเป้าหมาย"
@@ -61416,7 +61532,7 @@ msgstr "ชื่อเรื่อง"
msgid "to"
msgstr "ถึง"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "เพื่อยกเลิกการจัดสรรจำนวนเงินของใบแจ้งหนี้คืนนี้ก่อนที่จะยกเลิก"
@@ -61443,7 +61559,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "ไม่ซ้ำ เช่น SAVE20 ใช้เพื่อรับส่วนลด"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61465,7 +61581,7 @@ msgstr "ผ่านเครื่องมืออัปเดต BOM"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "คุณต้องเลือกบัญชีงานทุนที่กำลังดำเนินการในตารางบัญชี"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' ถูกปิดใช้งาน"
@@ -61473,7 +61589,7 @@ msgstr "{0} '{1}' ถูกปิดใช้งาน"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' ไม่อยู่ในปีงบประมาณ {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) ต้องไม่เกินปริมาณที่วางแผนไว้ ({2}) ในคำสั่งงาน {3}"
@@ -61481,7 +61597,7 @@ msgstr "{0} ({1}) ต้องไม่เกินปริมาณที่
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} ได้ส่งสินทรัพย์แล้ว ลบรายการ {2} ออกจากตารางเพื่อดำเนินการต่อ"
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "ไม่พบบัญชี {0} สำหรับลูกค้า {1}"
@@ -61514,11 +61630,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "หมายเลข {0} {1} ถูกใช้แล้วใน {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} ค่าใช้จ่ายในการดำเนินงาน {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "การดำเนินการ {0}: {1}"
@@ -61526,7 +61642,7 @@ msgstr "การดำเนินการ {0}: {1}"
msgid "{0} Request for {1}"
msgstr "คำขอ {0} สำหรับ {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "การเก็บตัวอย่าง {0} ขึ้นอยู่กับแบทช์ โปรดตรวจสอบว่ามีหมายเลขแบทช์เพื่อเก็บตัวอย่างของรายการ"
@@ -61614,11 +61730,11 @@ msgstr "{0} สร้างแล้ว"
msgid "{0} creation for the following records will be skipped."
msgstr "{0} การสร้างสำหรับบันทึกต่อไปนี้จะถูกข้ามไป"
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "สกุลเงิน {0} ต้องเหมือนกับสกุลเงินเริ่มต้นของบริษัท โปรดเลือกบัญชีอื่น"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} ปัจจุบันมีสถานะ Supplier Scorecard {1} และควรออกคำสั่งซื้อให้กับผู้จัดจำหน่ายนี้ด้วยความระมัดระวัง"
@@ -61630,7 +61746,7 @@ msgstr "{0} ปัจจุบันมีสถานะ Supplier Scorecard {1}
msgid "{0} does not belong to Company {1}"
msgstr "{0} ไม่ได้เป็นของบริษัท {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} ไม่เกี่ยวข้องกับบริษัท {1}"
@@ -61639,7 +61755,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} ป้อนสองครั้งในภาษีรายการ"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} ป้อนสองครั้ง {1} ในภาษีรายการ"
@@ -61664,7 +61780,7 @@ msgstr "{0} ส่งสำเร็จแล้ว"
msgid "{0} hours"
msgstr "{0} ชั่วโมง"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} ในแถว {1}"
@@ -61686,7 +61802,7 @@ msgstr "{0} ถูกเพิ่มหลายครั้งในแถว:
msgid "{0} is already running for {1}"
msgstr "{0} กำลังทำงานอยู่สำหรับ {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} ถูกบล็อกดังนั้นธุรกรรมนี้ไม่สามารถดำเนินการต่อได้"
@@ -61694,12 +61810,12 @@ msgstr "{0} ถูกบล็อกดังนั้นธุรกรรม
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} อยู่ในร่าง กรุณาส่งก่อนที่จะสร้างสินทรัพย์"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} เป็นสิ่งจำเป็นสำหรับรายการ {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} เป็นสิ่งจำเป็นสำหรับบัญชี {1}"
@@ -61707,7 +61823,7 @@ msgstr "{0} เป็นสิ่งจำเป็นสำหรับบั
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มีการสร้างระเบียนอัตราแลกเปลี่ยนสำหรับ {1} ถึง {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มีการสร้างระเบียนอัตราแลกเปลี่ยนสำหรับ {1} ถึง {2}"
@@ -61715,7 +61831,7 @@ msgstr "{0} เป็นสิ่งจำเป็น อาจไม่มี
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} ไม่ใช่บัญชีธนาคารของบริษัท"
@@ -61723,7 +61839,7 @@ msgstr "{0} ไม่ใช่บัญชีธนาคารของบร
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} ไม่ใช่โหนดกลุ่ม โปรดเลือกโหนดกลุ่มเป็นศูนย์ต้นทุนหลัก"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} ไม่ใช่รายการสต็อก"
@@ -61763,27 +61879,27 @@ msgstr "{0} ถูกระงับจนถึง {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} เปิดอยู่ ปิดระบบ POS หรือยกเลิกการเปิดระบบ POS ที่มีอยู่เพื่อสร้างการเปิดระบบ POS ใหม่"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} รายการกำลังดำเนินการ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} รายการสูญหายระหว่างกระบวนการ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} รายการที่ผลิต"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61791,7 +61907,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} ต้องเป็นค่าลบในเอกสารคืน"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} ไม่อนุญาตให้ทำธุรกรรมกับ {1} โปรดเปลี่ยนบริษัทหรือเพิ่มบริษัทในส่วน 'อนุญาตให้ทำธุรกรรมด้วย' ในระเบียนลูกค้า"
@@ -61807,7 +61923,7 @@ msgstr "พารามิเตอร์ {0} ไม่ถูกต้อง"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "ไม่สามารถกรองรายการชำระเงิน {0} ด้วย {1} ได้"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "ปริมาณ {0} ของรายการ {1} กำลังถูกรับเข้าสู่คลังสินค้า {2} ที่มีความจุ {3}"
@@ -61820,7 +61936,7 @@ msgstr "{0} ถึง {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} หน่วยถูกจองไว้สำหรับรายการ {1} ในคลังสินค้า {2} โปรดยกเลิกการจองเพื่อ {3} การกระทบยอดสต็อก"
@@ -61836,16 +61952,16 @@ msgstr ""
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} หน่วยของ {1} จำเป็นต้องใช้ใน {2} โดยมีมิติของสินค้าคงคลัง: {3} บน {4} {5} สำหรับ {6} เพื่อดำเนินการธุรกรรมให้เสร็จสมบูรณ์"
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} ใน {3} {4} สำหรับ {5} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์"
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} ใน {3} {4} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์"
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "ต้องการ {0} หน่วยของ {1} ใน {2} เพื่อทำธุรกรรมนี้ให้เสร็จสมบูรณ์"
@@ -61857,7 +61973,7 @@ msgstr "{0} จนถึง {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "หมายเลขซีเรียลที่ถูกต้อง {0} สำหรับรายการ {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "สร้างตัวแปร {0} แล้ว"
@@ -61873,7 +61989,7 @@ msgstr "จะให้ส่วนลด {0}"
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} จะถูกตั้งค่าเป็น {1} ในรายการที่ถูกสแกนในภายหลัง"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}การแปล: \"การแปล\""
@@ -61911,8 +62027,8 @@ msgstr "{0} {1} ได้รับการชำระเงินเต็ม
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} ได้รับการชำระเงินบางส่วนแล้ว โปรดใช้ปุ่ม 'รับใบแจ้งหนี้ค้างชำระ' หรือ 'รับคำสั่งซื้อค้างชำระ' เพื่อรับยอดค้างชำระล่าสุด"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} ถูกแก้ไขแล้ว โปรดรีเฟรช"
@@ -62022,7 +62138,7 @@ msgstr "{0} {1}: บัญชี {2} ไม่ได้ใช้งาน"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: รายการบัญชีสำหรับ {2} สามารถทำได้เฉพาะในสกุลเงิน: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: ศูนย์ต้นทุนเป็นสิ่งจำเป็นสำหรับรายการ {2}"
@@ -62071,8 +62187,8 @@ msgstr "{0}% ของมูลค่ารวมในใบแจ้งหน
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{1} ของ {0} ไม่สามารถอยู่หลังวันที่สิ้นสุดที่คาดไว้ของ {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, โปรดทำการดำเนินการ {1} ให้เสร็จก่อนการดำเนินการ {2}"
@@ -62092,11 +62208,11 @@ msgstr "{0}: ประเภทเอกสารที่ได้รับก
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: ประเภทเอกสารเสมือน (ไม่มีตารางฐานข้อมูล)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} ไม่ได้เป็นของบริษัท: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62104,11 +62220,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} ไม่มีอยู่"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} เป็นบัญชีกลุ่ม"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} ต้องน้อยกว่า {2}"
@@ -62120,7 +62236,7 @@ msgstr "สร้างสินทรัพย์ {count} สำหรับ {i
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} ถูกยกเลิกหรือปิดแล้ว"
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "ขนาดตัวอย่าง ({sample_size}) ของ {item_name} ต้องไม่เกินปริมาณที่ยอมรับได้ ({accepted_quantity})"
@@ -62132,7 +62248,7 @@ msgstr "{ref_doctype} {ref_name} มีสถานะ {status}"
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} ไม่สามารถยกเลิกได้เนื่องจากคะแนนสะสมที่ได้รับถูกแลกไปแล้ว โปรดยกเลิก {} หมายเลข {} ก่อน"
diff --git a/erpnext/locale/tr.po b/erpnext/locale/tr.po
index 9d87f19224e..c2f1970e4dd 100644
--- a/erpnext/locale/tr.po
+++ b/erpnext/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Alt Montaj"
msgid " Summary"
msgstr " Özet"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Müşterinin Tedarik Ettiği Ürün\" aynı zamanda Satın Alma Ürünü olamaz."
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Müşterinin Tedarik Ettiği Ürün\" Değerleme Oranına sahip olamaz."
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "Varlık kaydı yapıldığından, 'Sabit Varlık' seçimi kaldırılamaz."
@@ -268,11 +268,11 @@ msgstr ""
msgid "% of materials delivered against this Sales Order"
msgstr "Satış Siparişine karşılık teslim edilen malzemelerin yüzdesi"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "{0} isimli Müşterinin Muhasebe bölümündeki ‘Hesap’"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Müşterinin Satın Alma Siparişine Karşı Çoklu Satış Siparişlerine İzin Ver'"
@@ -284,7 +284,7 @@ msgstr "'Şuna Göre' ve 'Gruplandırma Ölçütü' aynı olamaz"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Son Siparişten bu yana geçen süre' sıfırdan büyük veya sıfıra eşit olmalıdır"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "Şirket {1} için Varsayılan {0} Hesabı"
@@ -302,7 +302,7 @@ msgstr "'Başlangıç Tarihi' alanı zorunlu"
msgid "'From Date' must be after 'To Date'"
msgstr "Başlangıç Tarihi Bitiş Tarihinden önce olmalıdır"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "Stokta olmayan ürünün 'Seri No' değeri 'Evet' olamaz."
@@ -314,9 +314,9 @@ msgstr "Teslimattan Önce Kalite Kontrol Gereklidir ayarı {0} ürünü için de
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "Satın Alma Öncesi Kalite Kontrol Gereklidir ayarı {0} ürünü için devre dışı bırakılmıştır, Kalite Kontrol Raporu oluşturmanıza gerek yok."
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Açılış'"
@@ -346,8 +346,8 @@ msgstr "'{0}' hesabı zaten {1} tarafından kullanılıyor. Başka bir hesap kul
msgid "'{0}' has been already added."
msgstr "'{0}' zaten eklenmiş."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' şirket para birimi {1} olmalıdır."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 Gün"
msgid "90 Above"
msgstr "90 Üstü"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Tarih Ayarl
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr ""
@@ -820,7 +820,7 @@ msgstr ""
msgid "{} "
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr ""
@@ -883,7 +883,7 @@ msgstr ""
msgid "Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price.
Are you sure you want to continue?"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr ""
@@ -971,11 +971,11 @@ msgstr "Kısayollar\n"
msgid "Your Shortcuts "
msgstr "Kısayollar "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Genel Toplam: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Ödenmemiş Tutar: {0}"
@@ -1045,7 +1045,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Aynı isimde bir Müşteri Grubu mevcut. Lütfen Müşteri adını değiştirin veya Müşteri Grubunu yeniden adlandırın."
@@ -1209,11 +1209,11 @@ msgstr "Kısaltma"
msgid "Abbreviation"
msgstr "Kısaltma"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Kısaltma zaten başka bir şirket için kullanılıyor"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Kısaltma zorunludur"
@@ -1221,7 +1221,7 @@ msgstr "Kısaltma zorunludur"
msgid "Abbreviation: {0} must appear only once"
msgstr "Kısaltma: {0} yalnızca bir kez görünmelidir"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Yukarıdaki"
@@ -1275,7 +1275,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Stok Biriminde Kabul Edilen Miktar"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Kabul Edilen Miktar"
@@ -1311,7 +1311,7 @@ msgstr "Servis Sağlayıcı için Erişim Anahtarı gereklidir: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "CEFACT/ICG/2010/IC013 veya CEFACT/ICG/2010/IC010 Standartına Göre"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "{0} Ürün Ağacı, ‘{1}’ ürünü stok girişinde eksik."
@@ -1429,8 +1429,8 @@ msgstr "Ana Hesap"
msgid "Account Manager"
msgstr "Muhasebe Müdürü"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Hesap Eksik"
@@ -1448,7 +1448,7 @@ msgstr "Hesap Eksik"
msgid "Account Name"
msgstr "Hesap İsmi"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Hesap Bulunamadı"
@@ -1461,7 +1461,7 @@ msgstr "Hesap Bulunamadı"
msgid "Account Number"
msgstr "Hesap Numarası"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "{0} Hesap Numarası {1} isimli hesapta kullanılıyor."
@@ -1500,7 +1500,7 @@ msgstr "Hesap Alt Türü"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1516,11 +1516,11 @@ msgstr "Hesap Türü"
msgid "Account Value"
msgstr "Hesap Değeri"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Hesap bakiyesi Alacaklı olarak ayarlanmış, ‘Bakiye Durumunu’ olarak Borç değiştirmenize izin verilmiyor."
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Hesap bakiyesi Borç olarak ayarlanmış, ‘Bakiye Durumunu’ olarak Alacak değiştirmenize izin verilmiyor."
@@ -1587,15 +1587,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Alt kırılımları olan hesaplar, deftere dönüştürülemez."
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Alt kırılımları olan hesaplar Hesap Defteri olarak ayarlanamaz"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "İşlemleri bulunan bir Hesap gruba dönüştürülemez."
@@ -1603,8 +1603,8 @@ msgstr "İşlemleri bulunan bir Hesap gruba dönüştürülemez."
msgid "Account with existing transaction can not be deleted"
msgstr "İşlemleri bulunan bir Hesap silinemez."
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "İşlemleri bulunan bir Hesap Muhasebe Defterine dönüştürülemez."
@@ -1612,11 +1612,11 @@ msgstr "İşlemleri bulunan bir Hesap Muhasebe Defterine dönüştürülemez."
msgid "Account {0} added multiple times"
msgstr "{0} Hesabı birden çok kez eklendi"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr ""
@@ -1624,11 +1624,11 @@ msgstr ""
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "{0} isimli Hesap, {1} şirketine ait değil."
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "{0} Hesabı bulunamadı"
@@ -1644,15 +1644,15 @@ msgstr "Hesap {0}, Hesap Türü {2} ile Şirket {1} eşleşmiyor"
msgid "Account {0} doesn't belong to Company {1}"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "{0} hesabı, {1} ana şirkette mevcut."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "{0} Hesabı, {1} isimli alt şirkete eklendi"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr ""
@@ -1660,7 +1660,7 @@ msgstr ""
msgid "Account {0} is frozen"
msgstr "{0} Hesabı donduruldu"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Hesap {0} geçersiz. Hesap Para Birimi {1} olmalıdır"
@@ -1668,19 +1668,19 @@ msgstr "Hesap {0} geçersiz. Hesap Para Birimi {1} olmalıdır"
msgid "Account {0} should be of type Expense"
msgstr "Hesap {0} Gider türünde olmalıdır"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "{0} Hesabı: Ana hesap {1} bir defter olamaz"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Hesap {0}: Ana hesap {1}, {2} şirkete ait değil"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Hesap {0}: Ana hesap {1} mevcut değil"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Hesap {0}: Kendi kendine ana hesap olarak atayamazsınız"
@@ -1696,7 +1696,7 @@ msgstr "Hesap: {0} yalnızca Stok İşlemleri aracılığıyla güncellenebilir"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Hesap: {0} Ödeme Girişi altında izin verilmiyor"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Hesap: {0} para ile: {1} seçilemez"
@@ -1981,8 +1981,8 @@ msgstr "Muhasebe Girişleri"
msgid "Accounting Entry for Asset"
msgstr "Varlık İçin Muhasebe Girişi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr ""
@@ -2006,8 +2006,8 @@ msgstr "Hizmet için Muhasebe Girişi"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Stok İçin Muhasebe Girişi"
@@ -2016,7 +2016,7 @@ msgstr "Stok İçin Muhasebe Girişi"
msgid "Accounting Entry for {0}"
msgstr "{0} için Muhasebe Girişi"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "{0}: {1} için Muhasebe Kaydı yalnızca {2} para biriminde yapılabilir."
@@ -2071,7 +2071,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2084,14 +2083,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Muhasebe"
@@ -2121,8 +2119,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2222,15 +2220,15 @@ msgstr "Hesaplar tablosu boş bırakılamaz."
msgid "Accounts to Merge"
msgstr "Birleştirilecek Hesaplar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Birikmiş Amortisman"
@@ -2395,7 +2393,7 @@ msgstr "Gerçekleştirilen İşlemler"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2519,7 +2517,7 @@ msgstr "Gerçek Bitiş Tarihi"
msgid "Actual End Date (via Timesheet)"
msgstr "Gerçek bitiş tarihi (Zaman Tablosu'ndan)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr ""
@@ -2641,7 +2639,7 @@ msgstr "Toplam Saat (Zaman Çizgelgesi)"
msgid "Actual qty in stock"
msgstr "Güncel Stok Miktarı"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Gerçek tip vergi satırda Ürün fiyatına dahil edilemez {0}"
@@ -2650,7 +2648,7 @@ msgstr "Gerçek tip vergi satırda Ürün fiyatına dahil edilemez {0}"
msgid "Ad-hoc Qty"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Fiyat Ekle / Düzenle"
@@ -3149,7 +3147,7 @@ msgstr "Ekle Bilgi"
msgid "Additional Information updated successfully."
msgstr "Ek Bilgiler başarıyla güncellendi."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr ""
@@ -3172,7 +3170,7 @@ msgstr "Ek Operasyon Maliyeti"
msgid "Additional Transferred Qty"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3180,11 +3178,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr ""
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Müşteri ile ilgili ek bilgiler."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3330,11 +3323,6 @@ msgstr "Adresin bir Şirkete bağlanması gerekir. Lütfen Bağlantılar tablosu
msgid "Address used to determine Tax Category in transactions"
msgstr "Vergi Kategorisini belirlemek için kullanılacak olan adres."
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr ""
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Karşılığına Yapılan Düzenleme"
@@ -3347,8 +3335,8 @@ msgstr "Satın Alma Faturası oranına göre düzeltme"
msgid "Administrative Assistant"
msgstr "Yönetici Asistanı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Yönetim Giderleri"
@@ -3416,7 +3404,7 @@ msgstr "Peşinat Ödemesi Durumu"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Peşinat Ödemeleri"
@@ -3536,7 +3524,7 @@ msgstr "Hesap"
msgid "Against Blanket Order"
msgstr "Genel Siparişe Karşılık"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Müşteri Siparişi {0} Karşılığında"
@@ -3678,11 +3666,11 @@ msgstr "Gün"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Geçen Gün"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Yaş ({0})"
@@ -3832,21 +3820,21 @@ msgstr "Tüm Müşteri Grupları"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Tüm Departmanlar"
@@ -3926,7 +3914,7 @@ msgstr "Tüm Tedarikçi Grupları"
msgid "All Territories"
msgstr "Tüm Bölgeler"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Tüm Depolar"
@@ -3940,6 +3928,11 @@ msgstr "Tüm tahsisatların mutabakatı başarıyla sağlandı"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Bu ve bunun üzerindeki tüm iletişimler yeni Sayıya taşınacaktır."
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Tüm ürünler zaten talep edildi"
@@ -3948,23 +3941,23 @@ msgstr "Tüm ürünler zaten talep edildi"
msgid "All items have already been Invoiced/Returned"
msgstr "Tüm ürünler zaten Faturalandırıldı/İade Edildi"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Tüm ürünler zaten alındı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Bu İş Emri için tüm öğeler zaten aktarıldı."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Bu belgedeki tüm Ürünlerin zaten bağlantılı bir Kalite Kontrolü var."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr ""
@@ -3978,11 +3971,11 @@ msgstr "Tüm Yorumlar ve E-postalar, CRM belgeleri boyunca bir belgeden yeni olu
msgid "All the items have been already returned."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Tüm gerekli malzemeler (hammadde) Ürün Ağacı'ndan alınarak bu tabloya eklenir. Burada herhangi bir ürün için Kaynak Depo'yu da değiştirebilirsiniz. Üretim sırasında, bu tablodan transfer edilen hammaddeleri takip edebilirsiniz."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Bu öğelerin tümü zaten Faturalandırılmış/İade edilmiştir"
@@ -4001,7 +3994,7 @@ msgstr "Ayrılan"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Avansları Otomatik Olarak Tahsis Et (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Ayrılan Ödeme Tutarı"
@@ -4011,7 +4004,7 @@ msgstr "Ayrılan Ödeme Tutarı"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Ödeme Koşullarına Göre Ödeme Tahsis Edin"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Ödeme Talebini Tahsis Et"
@@ -4041,7 +4034,7 @@ msgstr "Ayrılan"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4098,7 +4091,7 @@ msgstr "Ayrılan Miktar"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4162,7 +4155,7 @@ msgstr "İadelere İzin Ver"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "İç Transferlerde Piyasa Fiyatına İzin Ver"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Öğenin Bir İşlemde Birden Fazla Kez Eklenmesine İzin Verin"
@@ -4285,16 +4278,6 @@ msgstr "Destek Ayarlarından Hizmet Seviyesi Sözleşmesinin Sıfırlanmasına
msgid "Allow Sales"
msgstr "Satışa İzin Ver"
-#. 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 "İrsaliye olmadan Fatura Oluşturmaya İzin ver"
-
-#. 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 "Sipariş Olmadan Fatura Oluşturmaya İzin Ver"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4420,6 +4403,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4496,10 +4489,8 @@ msgstr "İzin Verilen Ürünler"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "İşlem Yapma Yetkileri"
@@ -4511,6 +4502,11 @@ msgstr "İzin verilen birincil roller 'Müşteri' ve 'Tedarikçi'dir. Lütfen ya
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4552,8 +4548,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4794,7 +4790,7 @@ msgstr "Her Zaman Sor"
msgid "Amount"
msgstr "Tutar"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Tutar (AED)"
@@ -4928,12 +4924,12 @@ msgid "Amount to Bill"
msgstr "Fatura Tutarı"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Tutar {0} {1} Karşılığı {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "{2} karşılığında düşülen tutar {0} {1}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4978,11 +4974,11 @@ msgstr "Tutar"
msgid "An Item Group is a way to classify items based on types."
msgstr "Ürün Grubu, Ürünleri türlerine göre sınıflandırmanın bir yoludur."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Ürün değerlemesi {0} üzerinden yeniden yayınlanırken bir hata oluştu"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Güncelleme sırasında bir hata oluştu"
@@ -5522,7 +5518,7 @@ msgstr "{0} alanı etkinleştirildiğinden, {1} alanı zorunludur."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "{0} alanı etkinleştirildiğinden, {1} alanının değeri 1'den fazla olmalıdır."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "{0} Ürününe karşı mevcut gönderilmiş işlemler olduğundan, {1} değerini değiştiremezsiniz."
@@ -5534,7 +5530,7 @@ msgstr "Depolarda Rezerv stok olduğu için {0} ayarını devre dışı bırakam
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Yeterli Alt Montaj Ürünleri mevcut olduğundan, {0} Deposu için İş Emri gerekli değildir."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Yeterli hammadde olduğundan, {0} Deposu için Malzeme Talebi gerekli değildir."
@@ -5672,7 +5668,7 @@ msgstr "Varlık Kategorisi Hesabı"
msgid "Asset Category Name"
msgstr "Varlık Kategorisi Adı"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Duran Varlık için Varlık Kategorisi zorunludur"
@@ -5849,8 +5845,8 @@ msgstr "Varlık Miktarı"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5950,7 +5946,7 @@ msgstr "Varlık iptal edildi"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Varlık iptal edilemez, çünkü zaten {0} durumda"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Varlık, son amortisman girişinden önce hurdaya çıkarılamaz."
@@ -5982,7 +5978,7 @@ msgstr "Varlık, {0} nedeniyle onarımda ve şuan devre dışı."
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Varlık {0} Konumunda alındı ve {1} Çalışanına verildi"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Varlık geri yüklendi"
@@ -5990,20 +5986,20 @@ msgstr "Varlık geri yüklendi"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Varlık Sermayelendirmesi {0} iptal edildikten sonra varlık geri yüklendi"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Varlık iade edildi"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Varlık hurdaya çıkarıldı"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Varlık, Yevmiye Kaydı {0} ile hurdaya ayrıldı"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Satılan Varlık"
@@ -6023,7 +6019,7 @@ msgstr "Varlık, Varlığa bölündükten sonra güncellendi {0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Varlık {0} hurdaya ayrılamaz, çünkü zaten {1} durumda"
@@ -6064,7 +6060,7 @@ msgstr ""
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Varlık {0} kaydedilmelidir"
@@ -6114,7 +6110,7 @@ msgstr "{item_code} için varlıklar oluşturulamadı. Varlığı manuel olarak
msgid "Assets {assets_link} created for {item_code}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Yapılacak İşi Personele Ata"
@@ -6175,7 +6171,7 @@ msgstr "Uygulanabilir Modüllerden en az biri seçilmelidir"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Satış veya Satın Alma seçeneklerinden en az biri seçilmelidir"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6183,20 +6179,16 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "En az bir Depo zorunludur"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "Satır #{0}: Sıra numarası {1}, önceki satırın sıra numarası {2} değerinden küçük olamaz"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
@@ -6279,11 +6271,11 @@ msgstr "Özellik İsmi"
msgid "Attribute Value"
msgstr "Özellik Değeri"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Özellik tablosu zorunludur"
@@ -6291,19 +6283,19 @@ msgstr "Özellik tablosu zorunludur"
msgid "Attribute value: {0} must appear only once"
msgstr "Özellik değeri: {0} yalnızca bir kez görünmelidir"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Özellik {0}, Özellikler Tablosunda birden çok kez seçilmiş"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Özellikler"
@@ -6515,7 +6507,7 @@ msgstr "Banka İşlemlerinde Tarafları otomatik eşleştirin ve ayarlayın"
msgid "Auto re-order"
msgstr "Otomatik Yeniden Sipariş"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Otomatik tekrar dokümanı güncellendi"
@@ -6627,7 +6619,7 @@ msgstr "Kullanıma Hazır Tarihi"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Mevcut Miktar"
@@ -6716,10 +6708,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "Kullanıma Hazır Tarihi gereklidir"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Mevcut miktar {0}, gereken {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "{0} Kullanılabilir"
@@ -6728,8 +6716,8 @@ msgstr "{0} Kullanılabilir"
msgid "Available-for-use Date should be after purchase date"
msgstr "Kullanıma hazır tarihi satın alma tarihinden sonra olmalıdır"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Ortalama Yaş"
@@ -6753,7 +6741,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Ortalama Fiyat"
@@ -6777,7 +6767,7 @@ msgid "Avg Rate"
msgstr "Ortalama Fiyat"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Ortalama Fiyat (Stok Bakiyesi)"
@@ -6835,7 +6825,7 @@ msgstr "Ürün Ağacı Miktarı"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6858,7 +6848,7 @@ msgstr "Ürün Ağacı"
msgid "BOM 1"
msgstr "Ürün Ağacı 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "Ürün Ağacı 1 {0} ve Ürün Ağacı 2 {1} aynı olmamalıdır"
@@ -6930,11 +6920,6 @@ msgstr "Ürün Ağacı Patlatılmış Malzemeler"
msgid "BOM ID"
msgstr "Ürün Ağacı ID"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Ürün Ağacı Bilgisi"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7088,7 +7073,7 @@ msgstr "Ürün Ağacı Web Sitesi Ürünü"
msgid "BOM Website Operation"
msgstr "Ürün Ağacı Web Sitesi Operasyonu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7156,7 +7141,7 @@ msgstr "Geriye Dönük Stok Hareketi"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Üretim Deposundan Hammaddeleri Geri Akışla Kullan"
@@ -7220,7 +7205,7 @@ msgstr "Ana Para Birimi Bakiyesi"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Mevcut Bakiye"
@@ -7285,7 +7270,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Bakiye Değeri"
@@ -7441,8 +7426,8 @@ msgid "Bank Balance"
msgstr "Banka Hesap Bakiyesi"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Banka Masrafları"
@@ -7557,8 +7542,8 @@ msgstr "Banka Teminat Türü"
msgid "Bank Name"
msgstr "Banka Adı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Banka Kredili Mevduat Hesabı"
@@ -7731,11 +7716,11 @@ msgstr "Banka İşlemleri"
msgid "Barcode Type"
msgstr "Barkod Türü"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "{0} barkodu zaten {1} ürününde kullanılmış"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Barkod {0}, geçerli bir {1} kodu değil"
@@ -7892,7 +7877,7 @@ msgstr "Birim Fiyat (Ölçü Birimine Göre)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7967,7 +7952,7 @@ msgstr "Parti Ürünü Son Kullanma Durumu"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8056,13 +8041,13 @@ msgstr ""
msgid "Batch Quantity"
msgstr "Parti Miktarı"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8079,7 +8064,7 @@ msgstr "Parti Ölçü Birimi"
msgid "Batch and Serial No"
msgstr "Parti ve Seri No"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "{} öğesi için parti oluşturulamadı çünkü parti serisi yok."
@@ -8102,12 +8087,12 @@ msgstr "Parti {0} ve Depo"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "{0} partisi {1} deposunda mevcut değil"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "{0} partisindeki {1} ürününün ömrü doldu."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "{0} partisindeki {1} isimli ürün devre dışı bırakıldı."
@@ -8162,7 +8147,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8171,7 +8156,7 @@ msgstr "Fatura Tarihi"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8185,11 +8170,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Ürün Ağacı"
@@ -8290,7 +8277,7 @@ msgstr "Fatura Adresi Bilgileri"
msgid "Billing Address Name"
msgstr "Fatura Adresi Adı"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr ""
@@ -8542,6 +8529,16 @@ msgstr "Faturayı Engelle"
msgid "Block Supplier"
msgstr "Tedarikçiye Engelleme Getir"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8638,7 +8635,7 @@ msgstr "Rezerve"
msgid "Booked Fixed Asset"
msgstr "Ayrılmış Sabit Varlık"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Defterler {0} adresinde sona eren döneme kadar kapatılmıştır."
@@ -8897,8 +8894,8 @@ msgstr "Ağaç Oluştur"
msgid "Buildable Qty"
msgstr "Üretilebilir Miktar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Binalar"
@@ -9059,16 +9056,16 @@ msgstr "Varsayılan olarak Tedarikçi Adı, girilen Tedarikçi Adına göre ayar
msgid "By-Product"
msgstr ""
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Satış Limiti Kontrolünü Atla"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Satış Siparişinde Borç Limiti Kontrolünü Atla"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9116,8 +9113,8 @@ msgstr "CRM Notu"
msgid "CRM Settings"
msgstr "Müşteri Yönetimi Ayarları"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "CWIP Hesabı"
@@ -9372,7 +9369,7 @@ msgstr ""
msgid "Can be approved by {0}"
msgstr "{0} tarafından onaylanabilir"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "{0} İş Kartı Devam Ediyor durumunda olduğu için İş Emri kapatılamıyor."
@@ -9405,13 +9402,13 @@ msgstr "Belgelerle gruplandırılmışsa, Belge No ile filtreleme yapılamaz."
msgid "Can only make payment against unbilled {0}"
msgstr "Sadece faturalandırılmamış ödemeler yapılabilir {0}"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Yalnızca ücret türü 'Önceki Satır Tutarında' veya 'Önceki Satır Toplamında' ise satıra referans verebilir"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Kendi değerleme yöntemi olmayan bazı kalemlere karşı işlemler olduğu için değerleme yöntemi değiştirilemez"
@@ -9453,7 +9450,7 @@ msgstr ""
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Sürücü Adresi Eksik Olduğu İçin Varış Saati Hesaplanamıyor."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr ""
@@ -9461,9 +9458,9 @@ msgstr ""
msgid "Cannot Create Return"
msgstr "İade Oluşturulamıyor"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Birleştirilemez"
@@ -9491,7 +9488,7 @@ msgstr "{0} {1} değiştirilemiyor, lütfen bunu düzenlemek yerine yeni bir tan
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Bir girişte birden fazla tarafa karşı Stopaj Vergisi uygulanamaz"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Stok Defterine girişi olan bir kalem Sabit Varlık olarak ayarlanamaz."
@@ -9511,7 +9508,7 @@ msgstr ""
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "İptal edilen belgelerin işlenmesi beklemede olduğundan iptal edilemiyor."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Gönderilen Stok Girişi {0} mevcut olduğundan iptal edilemiyor"
@@ -9531,15 +9528,15 @@ msgstr ""
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Tamamlanan İş Emri için işlem iptal edilemez."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Stok işlemi sonrasında Özellikler değiştirilemez. Yeni bir Ürün oluşturun ve stoğu yeni Ürüne aktarmayı deneyin."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Referans Belge Türü değiştirilemiyor."
@@ -9547,11 +9544,11 @@ msgstr "Referans Belge Türü değiştirilemiyor."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "{0} satırındaki öğe için Hizmet Durdurma Tarihi değiştirilemiyor"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Stok işlemi sonrasında Varyant özellikleri değiştirilemez. Bunu yapmak için yeni bir Ürün oluşturmanız gerekecektir."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Şirketin varsayılan para birimi değiştirilemiyor çünkü mevcut işlemler var. Varsayılan para birimini değiştirmek için işlemlerin iptal edilmesi gerekiyor."
@@ -9567,11 +9564,11 @@ msgstr "Alt kırılımları olduğundan Maliyet Merkezi muhasebe defterine dön
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Aşağıdaki alt Görevler mevcut olduğundan Görev grup dışı olarak dönüştürülemiyor: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Hesap Türü seçili olduğundan Gruba dönüştürülemiyor."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Hesap Türü seçili olduğundan Gruba dönüştürülemiyor."
@@ -9579,7 +9576,7 @@ msgstr "Hesap Türü seçili olduğundan Gruba dönüştürülemiyor."
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "İleri tarihli Alış İrsaliyeleri için Stok Rezervasyon Girişleri oluşturulamıyor."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Rezerve stok olduğundan {0} Satış Siparişi için bir Çekme Listesi oluşturulamıyor. Çekme Listesi oluşturmak için lütfen stok rezervini kaldırın."
@@ -9605,7 +9602,7 @@ msgstr "Kayıp olarak belirtilemez, çünkü Fiyat Teklifi verilmiş."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "'Değerleme' veya 'Değerleme ve Toplam' kategorisi için çıkarma işlemi yapılamaz."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Kur Farkı Satırı Silinemiyor"
@@ -9613,12 +9610,12 @@ msgstr "Kur Farkı Satırı Silinemiyor"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "{0} Seri Numarası stok işlemlerinde kullanıldığından silinemiyor"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9630,7 +9627,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 ""
@@ -9638,20 +9635,20 @@ msgstr ""
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
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/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "{0} Ürünü Seri No ile \"Teslimatı Sağla ile ve Seri No ile Teslimatı Sağla\" olmadan eklendiğinden, Seri No ile teslimat sağlanamaz."
@@ -9667,7 +9664,7 @@ msgstr ""
msgid "Cannot find Item with this Barcode"
msgstr "Bu Barkoda Sahip Ürün Bulunamadı"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "{0} ürünü için varsayılan bir depo bulunamadı. Lütfen Ürün Ana Verisi'nde veya Stok Ayarları'nda bir tane ayarlayın."
@@ -9675,15 +9672,15 @@ msgstr "{0} ürünü için varsayılan bir depo bulunamadı. Lütfen Ürün Ana
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "{0} için daha fazla ürün üretilemiyor"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "{1} için {0} Üründen fazlasını üretemezsiniz"
@@ -9691,12 +9688,12 @@ msgstr "{1} için {0} Üründen fazlasını üretemezsiniz"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Negatif bakiye karşılığında müşteriden teslim alınamıyor"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Bu ücret türü için geçerli satır numarasından büyük veya bu satır numarasına eşit satır numarası verilemiyor"
@@ -9709,14 +9706,14 @@ msgstr "Güncelleme için bağlantı token'ı alınamıyor. Daha fazla bilgi iç
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Güncelleme için bağlantı token'ı alınamıyor. Daha fazla bilgi için Hata Günlüğünü kontrol edin"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9730,7 +9727,7 @@ msgstr "Satış Siparişi verildiği için Kayıp olarak ayarlanamaz."
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "{0} için İndirim bazında yetkilendirme ayarlanamıyor"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Bir şirket için birden fazla Ürün Varsayılanı belirlenemez."
@@ -9738,11 +9735,11 @@ msgstr "Bir şirket için birden fazla Ürün Varsayılanı belirlenemez."
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Teslim edilen miktardan daha az miktar ayarlanamıyor."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Alınan miktardan daha az miktar ayarlanamıyor."
@@ -9754,7 +9751,7 @@ msgstr "Değişkenlere kopyalamak için {0} alanı ayarlanamıyor"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9787,7 +9784,7 @@ msgstr "Kapasite (Stok Birimi)"
msgid "Capacity Planning"
msgstr "Kapasite Planlaması"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Kapasite Planlama Hatası, planlanan başlangıç zamanı bitiş zamanı ile aynı olamaz"
@@ -9806,13 +9803,13 @@ msgstr "Stok Birimindeki Kapasite"
msgid "Capacity must be greater than 0"
msgstr "Kapasite 0'dan büyük olmalıdır"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Sermaye Ekipmanı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Sermaye Stoku"
@@ -10029,7 +10026,7 @@ msgstr "Kategori Detayları"
msgid "Category-wise Asset Value"
msgstr "Kategori Bazında Varlık Değeri"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Dikkat"
@@ -10134,7 +10131,7 @@ msgstr "Yayın Tarihi Değiştir"
msgid "Change in Stock Value"
msgstr "Stok Değerindeki Değişim"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Hesap türünü Alacak olarak değiştirin veya farklı bir hesap seçin."
@@ -10144,7 +10141,7 @@ msgstr "Hesap türünü Alacak olarak değiştirin veya farklı bir hesap seçin
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Sonraki senkronizasyon başlangıç tarihini ayarlamak için bu tarihi manuel olarak değiştirin."
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "'{}' zaten mevcut olduğundan müşteri adı '{}' olarak değiştirildi."
@@ -10152,7 +10149,7 @@ msgstr "'{}' zaten mevcut olduğundan müşteri adı '{}' olarak değiştirildi.
msgid "Changes in {0}"
msgstr "{0} adresindeki değişiklikler"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Seçilen Müşteri için Müşteri Grubunu değiştirmeye izin verilmiyor."
@@ -10167,7 +10164,7 @@ msgid "Channel Partner"
msgstr "Kanal Ortağı"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "{0} satırındaki 'Gerçekleşen' türündeki ücret Kalem Oranına veya Ödenen Tutara dahil edilemez"
@@ -10221,7 +10218,7 @@ msgstr "Grafik Ağacı"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10364,7 +10361,7 @@ msgstr "Çek Genişliği"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "İşlem Tarihi"
@@ -10422,7 +10419,7 @@ msgstr "Alt Dokuman Adı"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Alt Satır Referansı"
@@ -10474,6 +10471,11 @@ msgstr "Müşterilerin Bölgeye Göre Sınıflandırılması"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10616,11 +10618,11 @@ msgstr "Kapalı Belge"
msgid "Closed Documents"
msgstr "Kapalı Belgeler"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Kapatılan İş Emri durdurulamaz veya Yeniden Açılamaz"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Kapalı sipariş iptal edilemez. İptal etmek için önce açın."
@@ -10872,11 +10874,17 @@ msgstr "Komisyon Oranı %"
msgid "Commission Rate (%)"
msgstr "Komisyon Oranı (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Satış Komisyonu"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10907,7 +10915,7 @@ msgstr "İletişim Aracı Zaman Dilimi"
msgid "Communication Medium Type"
msgstr "İletişim Orta İpucu"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "Kompakt Ürün Baskısı"
@@ -11306,8 +11314,8 @@ msgstr "Şirketler"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11360,7 +11368,7 @@ msgstr "Şirketler"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11449,18 +11457,20 @@ msgstr "Şirket Adres Gösterimi"
msgid "Company Address Name"
msgstr "Şirket Adresi Adı"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr ""
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Şirket Banka Hesabı"
@@ -11556,7 +11566,7 @@ msgstr "Şirket ve Kaydetme Tarihi zorunludur"
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Şirketler Arası İşlemler için her iki şirketin para birimlerinin eşleşmesi gerekir."
@@ -11591,7 +11601,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Şirket adı aynı değil"
@@ -11630,12 +11640,12 @@ msgstr "Dahili tedarikçinin temsil ettiği şirket"
msgid "Company {0} added multiple times"
msgstr "{0} şirketi birden fazla kez eklendi"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "{0} Şirketi mevcut değil"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Şirket {0} birden fazla kez eklendi"
@@ -11677,7 +11687,7 @@ msgstr "Rakip Adı"
msgid "Competitors"
msgstr "Rakipler"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "İşi Tamamla"
@@ -11724,12 +11734,12 @@ msgstr ""
msgid "Completed Qty"
msgstr "Tamamlanan Miktar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Tamamlanan Miktar, Üretilecek Miktardan fazla olamaz."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Tamamlanan Miktar"
@@ -11918,7 +11928,7 @@ msgstr "Muhasebe Boyutları"
msgid "Consider Minimum Order Qty"
msgstr "Minimum Sipariş Miktarını Dikkate Al"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr ""
@@ -12112,7 +12122,7 @@ msgstr ""
msgid "Consumed Qty"
msgstr "Tüketilen Miktar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Tüketilen Miktar, {0} öğesi için Ayrılmış Miktardan büyük olamaz"
@@ -12141,7 +12151,7 @@ msgstr "Tüketilen Stok Kalemleri, Tüketilen Varlık Kalemleri veya Tüketilen
msgid "Consumed Stock Total Value"
msgstr "Tüketilen Stok Toplam Değeri"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12269,7 +12279,7 @@ msgstr "İletişim No"
msgid "Contact Person"
msgstr "İlgili kişi"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr ""
@@ -12395,6 +12405,11 @@ msgstr "Geçmiş Stok İşlemlerini Kontrol Et"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12455,7 +12470,7 @@ msgstr "Dönüşüm Faktörü"
msgid "Conversion Rate"
msgstr "Dönüşüm Oranı"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Varsayılan Ölçü Birimi için dönüşüm faktörü {0} satırında 1 olmalıdır"
@@ -12463,15 +12478,15 @@ msgstr "Varsayılan Ölçü Birimi için dönüşüm faktörü {0} satırında 1
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "Ürün {0} için dönüşüm faktörü, birimi {1} stok birimi {2} ile aynı olduğu için 1.0 olarak sıfırlandı"
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Dönüşüm oranı 0 olamaz"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr ""
@@ -12548,13 +12563,13 @@ msgstr "Düzeltici"
msgid "Corrective Action"
msgstr "Düzeltici Faaliyet"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Düzeltici Faaliyet İş Kartı"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Düzeltici Faaliyet"
@@ -12721,7 +12736,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12854,7 +12869,7 @@ msgstr "Maliyet Merkezi {} bir grup maliyet merkezidir ve grup maliyet merkezler
msgid "Cost Center: {0} does not exist"
msgstr "Maliyet Merkezi: {0} mevcut değil"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Maliyet Merkezleri"
@@ -12897,17 +12912,13 @@ msgstr "Teslim edilen Ürün Maliyeti"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Satılan Ürünün Maliyeti"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr ""
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Verilen Ürünlerin Maliyeti"
@@ -12987,7 +12998,7 @@ msgstr "Demo Verileri Silinemedi"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Aşağıdaki zorunlu alanlar eksik olduğundan Müşteri otomatik olarak oluşturulamadı:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Alacak Dekontu otomatik olarak oluşturulamadı, lütfen 'Alacak Dekontu Düzenle' seçeneğinin işaretini kaldırın ve tekrar gönderin"
@@ -13176,7 +13187,7 @@ msgstr "Faturaları Oluştur"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "İş Kartı Oluştur"
@@ -13208,7 +13219,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Değişiklik Tutarı için Defter Girişleri Oluşturun"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Bağlantı Oluştur"
@@ -13275,7 +13286,7 @@ msgstr ""
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Toplama Listesi Oluştur"
@@ -13420,7 +13431,7 @@ msgstr ""
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Vergi Şablonu Oluştur"
@@ -13458,12 +13469,12 @@ msgstr "Kullanıcı İzni Oluştur"
msgid "Create Users"
msgstr "Kullanıcıları Oluştur"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Varyasyon Oluştur"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Varyantları Oluştur"
@@ -13494,12 +13505,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Şablon görselini kullanarak bir varyant oluşturun."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Ürün için yeni bir stok girişi oluşturun."
@@ -13533,7 +13544,7 @@ msgstr "{0} {1} oluştur?"
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "{1} için, şu tarih aralığında {0} adet puan kartı oluşturuldu:\n"
@@ -13566,7 +13577,7 @@ msgstr "İrsaliye Oluşturuluyor..."
msgid "Creating Delivery Schedule..."
msgstr ""
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Boyutlar oluşturuluyor..."
@@ -13761,7 +13772,7 @@ msgstr "Vade Günü"
msgid "Credit Limit"
msgstr "Bakiye Limiti"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Borç Limiti Aşıldı"
@@ -13771,12 +13782,6 @@ msgstr "Borç Limiti Aşıldı"
msgid "Credit Limit Settings"
msgstr "Kredi Limiti Ayarları"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Ödeme Koşulları"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Bakiye Limiti:"
@@ -13808,7 +13813,7 @@ msgstr "Alacak Ayı"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13836,7 +13841,7 @@ msgstr "Alacak Dekontu Düzenlendi"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Alacak Dekontu, \"Karşı İade\" belirtilmiş olsa bile kendi bakiye tutarını güncelleyecektir."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Alacak Dekontu {0} otomatik olarak kurulmuştur"
@@ -13844,7 +13849,7 @@ msgstr "Alacak Dekontu {0} otomatik olarak kurulmuştur"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Bakiye Eklenecek Hesap"
@@ -13853,20 +13858,20 @@ msgstr "Bakiye Eklenecek Hesap"
msgid "Credit in Company Currency"
msgstr "Şirket Para Biriminde Alacak"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Müşteri {0} için borçlanma limiti aşılmıştır ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Şirket {0} için borçlanma limiti zaten tanımlanmış."
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "{0} müşterisi için kredi limitine ulaşıldı"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13874,8 +13879,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Alacaklılar"
@@ -14045,7 +14050,7 @@ msgstr "Alım veya satım işlemlerinde Döviz Kurunun geçerli olması gerekmek
msgid "Currency and Price List"
msgstr "Fiyat Listesi"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Başka bir para birimi kullanılarak giriş yapıldıktan sonra para birimi değiştirilemez"
@@ -14055,7 +14060,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "{0} için para birimi {1} olmalıdır"
@@ -14138,8 +14143,8 @@ msgstr "Mevcut Fatura Başlangıç Tarihi"
msgid "Current Level"
msgstr "Mevcut Seviye"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Kısa Vadeli Borçlar"
@@ -14206,6 +14211,11 @@ msgstr "Mevcut Stok"
msgid "Current Valuation Rate"
msgstr "Güncel Değerleme Oranı"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Eğriler"
@@ -14301,7 +14311,6 @@ msgstr "Özel Ayırıcılar"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14408,7 +14417,6 @@ msgstr "Özel Ayırıcılar"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14497,8 +14505,8 @@ msgstr "Müşteri Adresi"
msgid "Customer Addresses And Contacts"
msgstr "Müşteri Adresleri ve İletişim Bilgileri"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14512,7 +14520,7 @@ msgstr "Müşteri Kodu"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14595,6 +14603,7 @@ msgstr "Müşteri Görüşleri"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14617,7 +14626,7 @@ msgstr "Müşteri Görüşleri"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14634,6 +14643,7 @@ msgstr "Müşteri Görüşleri"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14677,7 +14687,7 @@ msgstr "Müşteri Ürünü"
msgid "Customer Items"
msgstr "Müşteri Ürünleri"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "Müşteri Yerel Satın Alma Emri"
@@ -14729,7 +14739,7 @@ msgstr "Müşteri Mobil No"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14835,7 +14845,7 @@ msgstr "Müşteri Tarafından Sağlanan"
msgid "Customer Provided Item Cost"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Müşteri Hizmetleri"
@@ -14892,9 +14902,9 @@ msgstr "Müşteri veya Ürün"
msgid "Customer required for 'Customerwise Discount'"
msgstr "'Müşteri Bazlı İndirim' için müşteri seçilmesi gereklidir"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Müşteri {0} {1} projesine ait değil"
@@ -15006,7 +15016,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "{0} için Günlük Proje Özeti"
@@ -15097,7 +15107,7 @@ msgstr "Doğum Tarihi bugünün tarihinden büyük olamaz."
msgid "Date of Commencement"
msgstr "Başlama Tarihi"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Başlangıç Tarihi Kuruluş Tarihinden büyük olmalıdır"
@@ -15323,7 +15333,7 @@ msgstr "İşlem Para Birimindeki Borç Tutarı"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15351,13 +15361,13 @@ msgstr "İade Faturası, ‘Karşı Fatura’ belirtilmiş olsa bile kendi açı
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Borçlandırma"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Borçlandırılacak Hesap gerekli"
@@ -15485,8 +15495,7 @@ msgstr "Varsayılan Hesap"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15512,14 +15521,14 @@ msgstr "Varsayılan Avans Hesabı"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Varsayılan Ödenen Avans Hesabı"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Varsayılan Alınan Avans Hesabı"
@@ -15534,19 +15543,19 @@ msgstr ""
msgid "Default BOM"
msgstr "Varsayılan Ürün Ağacı"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "Bu ürün veya şablonu için varsayılan Ürün Ağacı ({0}) aktif olmalıdır"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "{0} İçin Ürün Ağacı Bulunamadı"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "{0} Ürünü için Varsayılan Ürün Ağacı bulunamadı"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "{0} Ürünü ve {1} Projesi için varsayılan Ürün Ağacı bulunamadı"
@@ -15599,9 +15608,7 @@ msgid "Default Company"
msgstr "Varsayılan Şirket"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Varsayılan Şirket Banka Hesabı"
@@ -15717,6 +15724,16 @@ msgstr "Varsayılan Ürün Grubu"
msgid "Default Item Manufacturer"
msgstr "Varsayılan Üretici Firma"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15752,23 +15769,19 @@ msgid "Default Payment Request Message"
msgstr "Varsayılan Ödeme Talebi Mesajı"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Varsayılan Ödeme Koşulları Şablonu"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15891,15 +15904,15 @@ msgstr "Varsayılan Bölge"
msgid "Default Unit of Measure"
msgstr "Varsayılan Ölçü Birimi"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "{0} Ürünü için Varsayılan Ölçü Birimi doğrudan değiştirilemez çünkü zaten başka bir Ölçü Birimi ile bazı işlemler yaptınız. Ya bağlantılı belgeleri iptal etmeniz ya da yeni bir Ürün oluşturmanız gerekir."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Ürün {0} için Varsayılan Ölçü Birimi doğrudan değiştirilemez çünkü başka bir ölçü birimiyle işlem yapılmıştır. Farklı bir Varsayılan Ölçü Birimi kullanmak için yeni bir Ürün oluşturmanız gerekecek."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Değişiklik için varsayılan ölçü birimi '{0}' şablondaki ile aynı olmalıdır '{1}'"
@@ -15951,7 +15964,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Stok ile alakalı işlemlerin Varsayılan Ayarları"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Satış, satın alma ve kalemler için varsayılan vergi şablonları oluşturulur."
@@ -16042,6 +16055,12 @@ msgstr "Proje türünü tanımlayın."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16124,12 +16143,12 @@ msgstr "Potansiyel Müşterileri ve Adresleri Sil"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "İşlemleri Sil"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Bu Şirkete ait tüm İşlemleri Sil"
@@ -16150,8 +16169,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "{0} ve ilişkili tüm Ortak Kod belgeleri siliniyor..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Silme İşlemi Devam Ediyor!"
@@ -16262,11 +16281,11 @@ msgstr "Teslim Edilen Miktar"
msgid "Delivered Qty (in Stock UOM)"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16347,7 +16366,7 @@ msgstr "Sevkiyat Yöneticisi"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16407,11 +16426,11 @@ msgstr "İrsaliyesi Kesilmiş Paketlenmiş Ürün"
msgid "Delivery Note Trends"
msgstr "İrsaliye Trendleri"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Satış İrsaliyesi {0} kaydedilmedi"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "İrsaliyeler"
@@ -16497,10 +16516,6 @@ msgstr "Teslimat Deposu"
msgid "Delivery to"
msgstr "Teslimat"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "{0} stok kalemi için teslimat deposu gerekli"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16620,8 +16635,8 @@ msgstr "Amortisman Tutarı"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16714,7 +16729,7 @@ msgstr "Amortisman Seçenekleri"
msgid "Depreciation Posting Date"
msgstr "Amortisman Kayıt Tarihi"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Amortisman Kayıt Tarihi, Kullanıma Hazır Tarihten önce olamaz"
@@ -16872,15 +16887,15 @@ msgstr "Toplam Fark"
msgid "Difference Account"
msgstr "Fark Hesabı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Kalemler Tablosundaki Fark Hesabı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Bu Stok Mutabakatı bir Hesap Açılış Kaydı olduğundan farklı hesabının aktif ya da pasif bir hesap tipi olması gerekmektedir"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Fark Hesabı, bu Stok Mutabakatı bir Açılış Girişi olduğundan Varlık/Yükümlülük türü bir hesap olmalıdır"
@@ -16992,15 +17007,15 @@ msgstr "Boyutlar"
msgid "Direct Expense"
msgstr "Doğrudan Gider"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Doğrudan Giderler"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Doğrudan Gelir"
@@ -17081,6 +17096,11 @@ msgstr "Yuvarlatılmış Toplamı Kapat"
msgid "Disable Serial No And Batch Selector"
msgstr "Seri No ve Parti Seçiciyi Devre Dışı Bırak"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17117,11 +17137,11 @@ msgstr "{0} Deposu devre dışı bırakıldığından, bu işlem için kullanıl
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "{} iç transfer olduğu için, fiyatlandırma kuralı devre dışı bırakıldı."
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "{0} bir dahili transfer olduğundan, vergiler dahil fiyatlar devre dışı bırakıldı"
@@ -17137,7 +17157,7 @@ msgstr "Mevcut miktarın otomatik olarak getirilmesini devre dışı bırakır"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17145,15 +17165,15 @@ msgstr "Mevcut miktarın otomatik olarak getirilmesini devre dışı bırakır"
msgid "Disassemble"
msgstr "Sök"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Sökme Emri"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17440,7 +17460,7 @@ msgstr "Takdire Bağlı Sebep"
msgid "Dislikes"
msgstr "Beğenilmeyenler"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Sevkiyat"
@@ -17521,7 +17541,7 @@ msgstr ""
msgid "Disposal Date"
msgstr "Bertaraf Tarihi"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Elden çıkarma tarihi {0} varlığın {1} tarihinden {2} önce olamaz."
@@ -17635,8 +17655,8 @@ msgstr "Dağıtım İsmi"
msgid "Distributor"
msgstr "Distribütör"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Ödenen Temettüler"
@@ -17698,7 +17718,7 @@ msgstr "Para Birimlerinin yanındaki sembolü gizler"
msgid "Do not update variants on save"
msgstr "Kaydetme türevlerini güncelleme"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Gerçekten bu hurdaya ayrılmış varlığı geri getirmek istiyor musunuz?"
@@ -17722,7 +17742,7 @@ msgstr "Tüm müşterilere e-posta yoluyla bildirim göndermek ister misiniz?"
msgid "Do you want to submit the material request"
msgstr "Malzeme talebini göndermek istiyor musunuz?"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr ""
@@ -17789,11 +17809,11 @@ msgstr ""
msgid "Document Type "
msgstr "Belge Türü"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Belge Türü zaten bir boyut olarak kullanılıyor"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Dökümantasyon"
@@ -17956,12 +17976,6 @@ msgstr "Ehliyet Kategorileri"
msgid "Driving License Category"
msgstr "Sürücü Belgesi Kategorisi"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr ""
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17982,12 +17996,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr ""
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Son Tarih {0} tarihinden sonra olamaz"
@@ -18146,8 +18154,8 @@ msgstr "Süre (Gün)"
msgid "Duration in Days"
msgstr "Süre (Gün)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Gümrük ve Vergiler"
@@ -18230,7 +18238,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Her Bir İşlemde"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "En erken"
@@ -18344,6 +18352,10 @@ msgstr "Hedef miktar veya hedef tutarından biri zorunludur"
msgid "Either target qty or target amount is mandatory."
msgstr "Hedef miktar veya hedef tutarından biri zorunludur."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18363,8 +18375,8 @@ msgstr ""
msgid "Electricity down"
msgstr "Elektrik Kesintisi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Elektronik Ekipman"
@@ -18568,8 +18580,8 @@ msgstr "Personel Avansı"
msgid "Employee Advances"
msgstr "Personel Avansları"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18652,7 +18664,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr ""
@@ -18668,7 +18680,7 @@ msgstr "Personeller"
msgid "Empty"
msgstr "Boş"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18699,7 +18711,7 @@ msgstr "Randevu Zamanlamayı Etkinleştirme"
msgid "Enable Auto Email"
msgstr "Otomatik E-postayı Etkinleştir"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Otomatik Yeniden Siparişi Etkinleştir"
@@ -18865,12 +18877,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18999,8 +19005,8 @@ msgstr "Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19099,8 +19105,8 @@ msgstr "Elle Girin"
msgid "Enter Serial Nos"
msgstr "Seri Numaralarını Girin"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Değer Girin"
@@ -19125,7 +19131,7 @@ msgstr "Bu Tatil Listesi için bir ad girin."
msgid "Enter amount to be redeemed."
msgstr "Kullanılacak tutarı giriniz."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Bir Ürün Kodu girin, Ürün Adı alanına tıklandığında ad, Ürün Kodu ile aynı şekilde otomatik olarak doldurulacaktır."
@@ -19137,7 +19143,7 @@ msgstr "Müşterinin e-postasını girin"
msgid "Enter customer's phone number"
msgstr "Müşterinin telefon numarasını girin"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Varlığın hurdaya çıkarılacağı tarihi girin"
@@ -19181,7 +19187,7 @@ msgstr "Göndermeden önce Yararlanıcının adını giriniz."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Göndermeden önce bankanın veya kredi veren kurumun adını girin."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Açılış stok birimlerini girin."
@@ -19189,7 +19195,7 @@ msgstr "Açılış stok birimlerini girin."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Bu Ürün Ağacından üretilecek Ürünün miktarını girin."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Üretilecek miktarı girin. Hammadde Kalemleri yalnızca bu ayarlandığında getirilecektir."
@@ -19201,8 +19207,8 @@ msgstr "{0} tutarını girin."
msgid "Entertainment & Leisure"
msgstr "Eğlence ve Keyif"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Eğlence Giderleri"
@@ -19226,8 +19232,8 @@ msgstr "Giriş Türü"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19288,7 +19294,7 @@ msgstr "Amortisman girişleri kaydedilirken hata oluştu"
msgid "Error while processing deferred accounting for {0}"
msgstr "{0} için ertelenmiş muhasebe işlenirken hata oluştu"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Ürün değerlemesi yeniden gönderilirken hata oluştu"
@@ -19300,7 +19306,7 @@ msgstr "Hata: Bu varlık için zaten {0} amortisman dönemi ayrılmıştır.\n"
"\t\t\t\t\tAmortisman başlangıç tarihi, `kullanıma hazır` tarihinden en az {1} dönem sonra olmalıdır.\n"
"\t\t\t\t\tLütfen tarihleri buna göre düzeltin."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Hata: {0} zorunlu bir alandır"
@@ -19346,7 +19352,7 @@ msgstr "Fabrika Teslim "
msgid "Example URL"
msgstr "Örnek URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Bağlantılı bir döküman örneği: {0}"
@@ -19366,7 +19372,7 @@ msgstr "Örnek: ABCD.#####. Seri ayarlanmışsa ve işlemlerde Parti No belirtil
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Örnek: Seri No {0} {1} adresinde ayrılmıştır."
@@ -19376,7 +19382,7 @@ msgstr "Örnek: Seri No {0} {1} adresinde ayrılmıştır."
msgid "Exception Budget Approver Role"
msgstr "İstisna Bütçe Onaylayıcı Rolü"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19384,7 +19390,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Tüketilen Fazla Malzemeler"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Fazla Transfer"
@@ -19415,17 +19421,17 @@ msgstr "Döviz Kazancı veya Zararı"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Döviz Kazancı/Zararı"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Döviz Kar/Zarar tutarı {0} adresinde muhasebeleştirilmiştir."
@@ -19564,7 +19570,7 @@ msgstr "Yönetici Asistanı"
msgid "Executive Search"
msgstr "Özel Araştırma"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Vergiden Muaf Malzemeler"
@@ -19651,7 +19657,7 @@ msgstr "Beklenen Kapanış Tarihi"
msgid "Expected Delivery Date"
msgstr "Beklenen Teslim Tarihi"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Beklenen Teslimat Tarihi Satış Siparişi Tarihinden sonra olmalıdır"
@@ -19735,7 +19741,7 @@ msgstr "Kullanım Ömrü Sonrası Beklenen Değer"
msgid "Expense"
msgstr "Gider"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Gider / Fark hesabı ({0}) bir ‘Kar veya Zarar’ hesabı olmalıdır"
@@ -19813,23 +19819,23 @@ msgstr "Gider hesabı {0} kalemi için zorunludur"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Harcamalar"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Varlık Değerlemesine Dahil Giderler"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Değerlemeye Dahil Giderler"
@@ -19908,7 +19914,7 @@ msgstr "Önceki Firmalardaki İş Deneyimi"
msgid "Extra Consumed Qty"
msgstr "Ekstra Tüketilen Miktar"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Ekstra İş Kartı Miktarı"
@@ -20045,7 +20051,7 @@ msgstr "Şirket kurulumu başarısız oldu"
msgid "Failed to setup defaults"
msgstr "Varsayılanlar ayarlanamadı"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Ülke için varsayılanlar ayarlanamadı {0}. Lütfen destek ile iletişime geçin."
@@ -20163,6 +20169,11 @@ msgstr "Değeri Şuradan Getir"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Patlatılmış Ürün Ağacını Getir"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr ""
@@ -20200,21 +20211,29 @@ msgstr "Alan Eşleştirme"
msgid "Field in Bank Transaction"
msgstr "Banka İşlemindeki Alan"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Alanlar yalnızca oluşturulma anında kopyalanır."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20422,9 +20441,9 @@ msgstr "Mali Yıl Başlangıcı"
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 "Mali raporlar Genel Muhasebe Girişi belge türleri kullanılarak oluşturulacaktır (Dönem Kapanış Fişinin tüm sene boyunca sırayla kaydedilmemesi veya eksik olması durumunda etkinleştirilmelidir)"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Tamamla"
@@ -20481,15 +20500,15 @@ msgstr "Bitmiş Ürün Miktarı"
msgid "Finished Good Item Quantity"
msgstr "Bitmiş Ürün Miktarı"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "{0} Hizmet kalemi için Tamamlanmış Ürün belirtilmemiş"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Bitmiş Ürün {0} Miktarı sıfır olamaz"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Bitmiş Ürün {0} alt yüklenici ürünü olmalıdır"
@@ -20535,7 +20554,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Bitmiş Ürün {0} alt yüklenici ürünü olmalıdır."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Bitmiş Ürünler"
@@ -20576,7 +20595,7 @@ msgstr "Ürün Kabul Deposu"
msgid "Finished Goods based Operating Cost"
msgstr "Bitmiş Ürün Operasyon Maliyeti"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Bitmiş Ürün {0} İş Emri {1} ile eşleşmiyor"
@@ -20717,6 +20736,7 @@ msgstr "Sabit"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Sabit Varlık"
@@ -20735,7 +20755,7 @@ msgstr "Sabit Varlık Hesabı"
msgid "Fixed Asset Defaults"
msgstr "Sabit Varlık Varsayılanları"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Sabit Varlık Kalemi stok dışı bir kalem olmalıdır."
@@ -20754,8 +20774,8 @@ msgstr ""
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Sabit Varlıklar"
@@ -20828,7 +20848,7 @@ msgstr "Takvim Aylarını Takip Edin"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Aşağıdaki Malzeme Talepleri, Ürünün yeniden sipariş seviyesine göre otomatik olarak oluşturulmuştur."
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Adres oluşturmak için aşağıdaki alanların doldurulması zorunludur:"
@@ -20885,7 +20905,7 @@ msgstr "Şirket Seçimi"
msgid "For Item"
msgstr "Ürün için"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "{0} Ürünü için {2} {3} karşılığında {1} miktarından fazla alınamaz."
@@ -20895,7 +20915,7 @@ msgid "For Job Card"
msgstr "İş Kartı İçin"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Operasyon"
@@ -20916,17 +20936,13 @@ msgstr "Fiyat Listesi Seçimi"
msgid "For Production"
msgstr "Üretim için"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Üretim Miktarı zorunludur"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Stok etkili İade Faturaları için '0' adetlik Kalemlere izin verilmez. Aşağıdaki satırlar etkilenir: {0}"
@@ -20954,11 +20970,11 @@ msgstr "Hedef Depo"
msgid "For Work Order"
msgstr "İş Emri İçin"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "{0} öğesinde, miktar negatif sayı olmalıdır"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Bir öğe için {0}, miktar pozitif sayı olmalıdır"
@@ -20996,7 +21012,7 @@ msgstr "Bireysel tedarikçi için"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr ""
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "{0} Ürünü için oran pozitif bir sayı olmalıdır. Negatif oranlara izin vermek için {2} sayfasında {1} ayarını etkinleştirin"
@@ -21010,7 +21026,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "{0} Operasyonu için: Miktar ({1}) bekleyen ({2}) miktarıdan büyük olamaz"
@@ -21027,7 +21043,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "{0} Miktarı izin verilen {1} miktarından büyük olmamalıdır"
@@ -21036,12 +21052,12 @@ msgstr "{0} Miktarı izin verilen {1} miktarından büyük olmamalıdır"
msgid "For reference"
msgstr "Referans İçin"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Satır {0} için {1} belgesi. Ürün fiyatına {2} masrafı dahil etmek için, satır {3} de dahil edilmelidir."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Satır {0}: Planlanan Miktarı Girin"
@@ -21060,7 +21076,7 @@ msgstr "‘Başka Bir Kurala Uygula’ koşulu için {0} alanı zorunludur."
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Müşterilere kolaylık sağlamak için bu kodlar Fatura ve İrsaliye gibi basılı formatlarda kullanılabilir"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21107,11 +21123,6 @@ msgstr "Tahmin"
msgid "Forecast Demand"
msgstr ""
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr ""
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21157,7 +21168,7 @@ msgstr "Forum Mesajları"
msgid "Forum URL"
msgstr "Forum URL'si"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21202,8 +21213,8 @@ msgstr "Fiyatlandırma kuralında ücretsiz ürün belirtilmemiş {0}"
msgid "Freeze Stocks Older Than (Days)"
msgstr "Daha Eski Stokları Dondur (Gün)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Nakliye ve Sevkiyat Ücretleri"
@@ -21637,8 +21648,8 @@ msgstr "Tamamı Ödenmiş"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Mobilya ve Demirbaşlar"
@@ -21655,13 +21666,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Alt elemanlar yalnızca 'Grup' altında oluşturulabilir."
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Gelecekteki Ödeme Tutarı"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Yaklaşan Ödeme Referansı"
@@ -21669,7 +21680,7 @@ msgstr "Yaklaşan Ödeme Referansı"
msgid "Future Payments"
msgstr "Yaklaşan Ödemeler"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Gelecek tarihe izin verilmiyor"
@@ -21754,9 +21765,9 @@ msgstr "Kazanç/Kayıp zaten kaydedildi"
msgid "Gain/Loss from Revaluation"
msgstr "Yeniden Değerlemeden Kaynaklanan Kâr/Zarar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Varlık Elden Çıkarma Kar/Zarar"
@@ -21929,7 +21940,7 @@ msgstr ""
msgid "Get Current Stock"
msgstr "Mevcut Stoğu Al"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Müşteri Grubu Ayrıntıları"
@@ -21987,7 +21998,7 @@ msgstr "Malzeme Konumlarını Getir"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22026,7 +22037,7 @@ msgstr "Ürün Ağacından Getir"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Bu Tedarikçiye karşılık gelen Malzeme Taleplerinden Ürünleri Getir"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Ürün Paketindeki Ürünleri Getir"
@@ -22200,7 +22211,7 @@ msgstr "Hedefler"
msgid "Goods"
msgstr "Ürünler"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Taşıma Halindeki Ürünler"
@@ -22209,7 +22220,7 @@ msgstr "Taşıma Halindeki Ürünler"
msgid "Goods Transferred"
msgstr "Transfer Edilen Mallar"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "{0} numaralı çıkış kaydına karşılık mallar zaten alınmış"
@@ -22392,7 +22403,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "Komisyona İzin Ver"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Tutardan Büyük"
@@ -22835,7 +22846,7 @@ msgstr "İşletmenizde mevsimsel çalışma varsa Bütçeyi/Hedefi aylara dağı
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Yukarıda bahsedilen başarısız amortisman girişleri için hata kayıtları şunlardır: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "İşleme devam etmek için seçenekleriniz:"
@@ -22863,7 +22874,7 @@ msgstr "Burada, haftalık izinleriniz önceki seçimlere göre önceden doldurul
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Merhaba,"
@@ -23062,7 +23073,7 @@ msgstr ""
msgid "Hrs"
msgstr "Saat"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "İnsan Kaynakları"
@@ -23231,6 +23242,12 @@ msgstr "İşaretlendiğinde, vergi tutarı Ödeme Girişindeki Ödenen Tutar'a z
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Vergi tutarı belirtilen oran/tutar içerisinde zaten dahil olarak kabul edilir."
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "İşaretlenirse, sistemi keşfetmeniz için demo verileri oluşturacağız. Bu demo verileri daha sonra silinebilir."
@@ -23449,7 +23466,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Aksi takdirde, bu girişi İptal Edebilir veya Gönderebilirsiniz"
@@ -23475,13 +23492,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr ""
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Ürün Ağacının Hurda malzemeyle sonuçlanması durumunda Hurda Deposunun seçilmesi gerekir."
@@ -23490,7 +23512,7 @@ msgstr "Ürün Ağacının Hurda malzemeyle sonuçlanması durumunda Hurda Depos
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Eğer hesap dondurulursa, yeni girişleri belirli kullanıcılar yapabilir."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Eğer ürünün değerinin sıfır olmasını istiyorsanız, Ürünler tablosundan \"Sıfır Değerlemeye İzin Ver\" kutusunu işaretleyebilirsiniz."
@@ -23500,7 +23522,7 @@ msgstr "Eğer ürünün değerinin sıfır olmasını istiyorsanız, Ürünler t
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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Seçilen Ürün Ağacında belirtilen İşlemler varsa, sistem Ürün Ağacından tüm İşlemleri getirir, bu değerler değiştirilebilir."
@@ -23577,7 +23599,7 @@ msgstr "Sadakat Puanları için sınırsız son kullanma tarihi varsa, Son Kulla
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Reddedilen malzemeleri depolamak için kullanılacak"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Bu Ürünün stokunu Envanterinizde tutuyorsanız, ERPNext bu ürünün her işlemi için bir stok defteri girişi yapacaktır."
@@ -23591,7 +23613,7 @@ msgstr "Belirli işlemleri birbiriyle mutabık hale getirmeniz gerekiyorsa, lüt
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Yine de devam etmek istiyorsanız, lütfen 'Mevcut Alt Montaj Öğelerini Atla' onay kutusunu devre dışı bırakın."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Hala devam etmek istiyorsanız lütfen {0} ayarını etkinleştirin."
@@ -23675,7 +23697,7 @@ msgstr ""
msgid "Ignore Existing Ordered Qty"
msgstr "Mevcut Sipariş Miktarını Yoksay"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Mevcut Öngörülen Miktarı Yoksay"
@@ -23762,12 +23784,12 @@ msgstr "İş İstasyonu Zaman Çakışmasını Yoksay"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Raporlar oluşturulurken sistemin kullanımda olduğu açılış bakiyesi sonrası eklemeye izin veren Defter Girişindeki eski Açılış mı alanını yok sayar"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Değer Düşüklüğü"
@@ -23925,7 +23947,7 @@ msgstr "Üretimde"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "Miktar olarak"
@@ -24049,7 +24071,7 @@ msgstr "Çok kademeli bir program durumunda, müşteriler harcamalarına göre i
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "Bu bölümde, bu ürün için Şirket Genelinde yapılacak işlemlerle ilgili varsayılanları tanımlayabilirsiniz. Örneğin; Varsayılan Depo, Varsayılan Fiyat Listesi, Tedarikçi vb."
@@ -24280,8 +24302,8 @@ msgstr "Alt montajlar için gereken ürünler dahil"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24352,7 +24374,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24384,7 +24406,7 @@ msgstr "İşlem Sonrası Yanlış Bakiye Miktarı"
msgid "Incorrect Batch Consumed"
msgstr "Yanlış Parti Tüketildi"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Yeniden Sipariş İçin Depoda Yanlış Giriş (grup)"
@@ -24392,7 +24414,7 @@ msgstr "Yeniden Sipariş İçin Depoda Yanlış Giriş (grup)"
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Yanlış Bileşen Miktarı"
@@ -24526,15 +24548,15 @@ msgstr "Paketin bu teslimatın bir parçası olduğunu belirtir (Yalnızca Tasla
msgid "Indirect Expense"
msgstr "Dolaylı Gider"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Dolaylı Giderler"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Dolaylı Gelir"
@@ -24602,14 +24624,14 @@ msgstr "Başlatıldı"
msgid "Inspected By"
msgstr "Kontrol Eden"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Kalite Kontrol Rededildi"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Kalite Kontrol Gerekli"
@@ -24626,8 +24648,8 @@ msgstr "Teslim Almadan Önce Kontrol Gerekli"
msgid "Inspection Required before Purchase"
msgstr "Satın Almadan Önce Kontrol Gerekli"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Kontrol Gönderimi"
@@ -24657,7 +24679,7 @@ msgstr "Kurulum Notu"
msgid "Installation Note Item"
msgstr "Kurulum Notu Kalemi"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Kurulum Notu {0} zaten gönderilmiş."
@@ -24696,11 +24718,11 @@ msgstr "Talimat"
msgid "Insufficient Capacity"
msgstr "Yetersiz Kapasite"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Yetersiz Yetki"
@@ -24708,13 +24730,12 @@ msgstr "Yetersiz Yetki"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Yetersiz Stok"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Parti için Yetersiz Stok"
@@ -24834,13 +24855,13 @@ msgstr "Transferler Arası Referans"
msgid "Interest"
msgstr "İlgi Alanı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24848,8 +24869,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr "Faiz ve/veya gecikme ücreti"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24869,7 +24890,7 @@ msgstr "Dahili"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Şirket için İç Müşteri {0} zaten mevcut"
@@ -24877,7 +24898,7 @@ msgstr "Şirket için İç Müşteri {0} zaten mevcut"
msgid "Internal Purchase Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Dahili Satış veya Teslimat Referansı eksik."
@@ -24885,7 +24906,7 @@ msgstr "Dahili Satış veya Teslimat Referansı eksik."
msgid "Internal Sales Order"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Dahili Satış Referansı Eksik"
@@ -24916,7 +24937,7 @@ msgstr "{0} şirketinin Dahili Tedarikçisi zaten mevcut"
msgid "Internal Transfer"
msgstr "Hesaplar Arası Transfer"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Dahili Transfer Referansı Eksik"
@@ -24929,7 +24950,12 @@ msgstr "İç Transferler"
msgid "Internal Work History"
msgstr "Firma İçindeki Geçmişi"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Hesaplar arası transfer yalnızca şirketin varsayılan para biriminde yapılabilir"
@@ -24945,12 +24971,12 @@ msgstr "Aralık 1 ila 59 Dakika arasında olmalıdır"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Geçersiz Hesap"
@@ -24971,7 +24997,7 @@ msgstr "Geçersiz Miktar"
msgid "Invalid Attribute"
msgstr "Geçersiz Özellik"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Geçersiz Otomatik Tekrar Tarihi"
@@ -24984,7 +25010,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Geçersiz Barkod. Bu barkoda bağlı bir Ürün yok."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Seçilen Müşteri ve Ürün için Geçersiz Genel Sipariş"
@@ -25000,21 +25026,21 @@ msgstr "Geçersiz Alt Prosedür"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Şirketler Arası İşlem için Geçersiz Şirket."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Geçersiz Maliyet Merkezi"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Geçersiz Teslimat Tarihi"
@@ -25052,7 +25078,7 @@ msgstr "Geçersiz Gruplama Ölçütü"
msgid "Invalid Item"
msgstr "Geçersiz Öğe"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Geçersiz Ürün Varsayılanları"
@@ -25066,7 +25092,7 @@ msgid "Invalid Net Purchase Amount"
msgstr ""
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Geçersiz Açılış Girişi"
@@ -25074,11 +25100,11 @@ msgstr "Geçersiz Açılış Girişi"
msgid "Invalid POS Invoices"
msgstr "Geçersiz POS Faturaları"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Geçersiz Ana Hesap"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Geçersiz Parça Numarası"
@@ -25108,12 +25134,12 @@ msgstr "Geçersiz Proses Kaybı Yapılandırması"
msgid "Invalid Purchase Invoice"
msgstr "Geçersiz Satın Alma Faturası"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Geçersiz Miktar"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Geçersiz Miktar"
@@ -25138,12 +25164,12 @@ msgstr "Geçersiz Program"
msgid "Invalid Selling Price"
msgstr "Geçersiz Satış Fiyatı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Geçersiz Seri ve Parti"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25168,7 +25194,7 @@ msgstr "Hesap {} için {} {} muhasebe girişlerinde geçersiz tutar: {}"
msgid "Invalid condition expression"
msgstr "Geçersiz koşul ifadesi"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25180,7 +25206,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Geçersiz kayıp nedeni {0}, lütfen yeni bir kayıp nedeni oluşturun"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "{0} için geçersiz adlandırma serisi (. eksik)"
@@ -25206,8 +25232,8 @@ msgstr ""
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "{2} hesabına karşı {1} için geçersiz değer {0}"
@@ -25215,7 +25241,7 @@ msgstr "{2} hesabına karşı {1} için geçersiz değer {0}"
msgid "Invalid {0}"
msgstr "Geçersiz {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Şirketler Arası İşlem için geçersiz {0}."
@@ -25225,7 +25251,7 @@ msgid "Invalid {0}: {1}"
msgstr "Geçersiz {0}: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Envanter"
@@ -25274,8 +25300,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "Yatırım Bankacılığı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Yatırımlar"
@@ -25325,7 +25351,7 @@ msgstr "Fatura İndirimi"
msgid "Invoice Document Type Selection Error"
msgstr ""
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Fatura Genel Toplamı"
@@ -25430,7 +25456,7 @@ msgstr "Sıfır fatura saati için fatura kesilemez"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25451,7 +25477,7 @@ msgstr "Faturalanan Miktar"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25547,8 +25573,7 @@ msgstr "Alternatif Ürün"
msgid "Is Billable"
msgstr "Faturalandırılabilir"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Fatura Yetkilisi"
@@ -25990,8 +26015,7 @@ msgstr "Şablon"
msgid "Is Transporter"
msgstr "Nakliyeci"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Şirket Adresi"
@@ -26097,8 +26121,8 @@ msgstr "Sorun Türü"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Mevcut bir Satış Faturasına karşılık ürün miktarını değiştirmeden fiyat değişikliğini yansıtmak bir borç makbuzu düzenleyin."
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26128,11 +26152,11 @@ msgstr "Sorunlar"
msgid "Issuing Date"
msgstr "Veriliş Tarihi"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Ürünlerin birleştirilmesinden sonra doğru stok değerlerinin görünür hale gelmesi birkaç saat sürebilir."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Ürün Detaylarını almak için gereklidir."
@@ -26256,7 +26280,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26504,7 +26528,7 @@ msgstr "Ürün Sepeti"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26566,7 +26590,7 @@ msgstr "Ürün Sepeti"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26765,13 +26789,13 @@ msgstr "Ürün Detayları"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26988,7 +27012,7 @@ msgstr "Üretici Firma"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27028,10 +27052,10 @@ msgstr "Üretici Firma"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27072,10 +27096,6 @@ msgstr ""
msgid "Item Price"
msgstr "Ürün Fiyatı"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27091,19 +27111,20 @@ msgstr "Ürün Fiyat Ayarları"
msgid "Item Price Stock"
msgstr "Ürün Stok Fiyatı"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "{0} Ürün Fiyatı {1} Fiyat Listesinde Güncellendi"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Ürün Fiyatı, Fiyat Listesi, Tedarikçi/Müşteri, Para Birimi, Ürün, Parti, Birim, Miktar ve Tarihlere göre birden fazla kez görünür."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Ürün Fiyatı {0} için Fiyat Listesinde {1} güncellendi"
@@ -27290,11 +27311,11 @@ msgstr "Ürün Varyant Detayları"
msgid "Item Variant Settings"
msgstr "Ürün Varyant Ayarları"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Öğe Varyantı {0} aynı niteliklerle zaten mevcut"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Ürün Varyantları Güncellendi"
@@ -27395,11 +27416,11 @@ msgstr "Ürün ve Depo"
msgid "Item and Warranty Details"
msgstr "Ürün ve Garanti Detayları"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "{0} satırındaki Kalem Malzeme Talebi ile eşleşmiyor"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Ürünün varyantları mevcut."
@@ -27425,11 +27446,7 @@ msgstr "Ürün Adı"
msgid "Item operation"
msgstr "Operasyon"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Ürün miktarı güncellenemez çünkü hammaddeler zaten işlenmiş durumda."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Aşağıdaki kalemler için Sıfır Değerlemeye İzin Ver işaretlendiğinden, fiyat sıfır olarak güncellenmiştir: {0}"
@@ -27448,11 +27465,11 @@ msgstr "Ürün değerleme oranı, indirilmiş maliyet kuponu tutarı dikkate al
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Ürün değerlemesi yeniden yapılıyor. Rapor geçici olarak yanlış değerleme gösterebilir."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Öğe Varyantı {0} aynı niteliklerle zaten mevcut"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27469,7 +27486,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Ürün {0}, Toplu Sipariş {2} kapsamında {1} miktarından daha fazla sipariş edilemez."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "{0} ürünü mevcut değil"
@@ -27481,7 +27498,7 @@ msgstr "{0} Ürünü sistemde mevcut değil veya süresi dolmuş"
msgid "Item {0} does not exist."
msgstr "{0} ürünü mevcut değil."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "{0} ürünü birden fazla kez girildi."
@@ -27493,15 +27510,15 @@ msgstr "Ürün {0} zaten iade edilmiş"
msgid "Item {0} has been disabled"
msgstr "Ürün {0} Devre dışı bırakılmış"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "{0} Ürününe ait Seri Numarası yoktur. Yalnızca serileştirilmiş Ürünler Seri Numarasına göre teslimat yapılabilir"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Ürün {0} {1} tarihinde kullanım süresinin sonuna gelmiştir."
@@ -27513,15 +27530,15 @@ msgstr "{0} Stok Kalemi olmadığından, ürün yok sayılır"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Ürün {0} zaten {1} Satış Siparişi karşılığında rezerve edilmiş/teslim edilmiştir."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Ürün {0} iptal edildi"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "{0} ürünü devre dışı bırakıldı"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27529,7 +27546,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Ürün {0} bir serileştirilmiş Ürün değildir"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Ürün {0} bir stok ürünü değildir"
@@ -27537,11 +27554,11 @@ msgstr "Ürün {0} bir stok ürünü değildir"
msgid "Item {0} is not a subcontracted item"
msgstr "{0} Ürünü Alt Yüklenici Kalemi olmalıdır"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Ürün {0} aktif değil veya kullanım süresinin sonuna gelindi"
@@ -27557,7 +27574,7 @@ msgstr "Ürün {0} Stokta Olmayan Ürün olmalıdır"
msgid "Item {0} must be a non-stock item"
msgstr "{0} kalemi stok dışı bir ürün olmalıdır"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Ürün {0}, {1} {2} içindeki ‘Tedarik Edilen Ham Maddeler’ tablosunda bulunamadı."
@@ -27565,7 +27582,7 @@ msgstr "Ürün {0}, {1} {2} içindeki ‘Tedarik Edilen Ham Maddeler’ tablosun
msgid "Item {0} not found."
msgstr "{0} ürünü bulunamadı."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "{0} ürünü {1} adetten daha az sipariş edilemez. Bu ayar ürün sayfasında tanımlanır."
@@ -27573,7 +27590,7 @@ msgstr "{0} ürünü {1} adetten daha az sipariş edilemez. Bu ayar ürün sayfa
msgid "Item {0}: {1} qty produced. "
msgstr "{0} Ürünü {1} adet üretildi. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "{0} Ürünü mevcut değil."
@@ -27619,7 +27636,7 @@ msgstr "Ürün Bazında Satış Kaydı"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr ""
@@ -27643,7 +27660,7 @@ msgstr "Ürün Kataloğu"
msgid "Items Filter"
msgstr "Ürünler Filtresi"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Ürünler Gereklidir"
@@ -27667,11 +27684,11 @@ msgstr "Talep Edilen Ürünler"
msgid "Items and Pricing"
msgstr "Ürünler ve Fiyatlar"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Alt Yüklenici Siparişi {0} Satın Alma Siparişine karşı oluşturulduğu için kalemler güncellenemez."
@@ -27683,7 +27700,7 @@ msgstr "Hammadde Talebi için Ürünler"
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Aşağıdaki kalemler için Sıfır Değerleme Oranına İzin Ver işaretlendiğinden kalem oranı sıfır olarak güncellenmiştir: {0}"
@@ -27693,7 +27710,7 @@ msgstr "Aşağıdaki kalemler için Sıfır Değerleme Oranına İzin Ver işare
msgid "Items to Be Repost"
msgstr "Tekrar Gönderilecek Öğeler"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Üretilecek Ürünlerin, ilgili Hammaddeleri çekmesi gerekmektedir."
@@ -27758,9 +27775,9 @@ msgstr "İş Kapasitesi"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27822,7 +27839,7 @@ msgstr "İş Kartı Zaman Kaydı"
msgid "Job Card and Capacity Planning"
msgstr "İş Kartı ve Kapasite Planlama"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "İş Kartı {0} tamamlandı"
@@ -27898,7 +27915,7 @@ msgstr "Yetkili Kişi Adı"
msgid "Job Worker Warehouse"
msgstr "Alt Yüklenici Deposu"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "İş Kartı {0} oluşturuldu"
@@ -28118,7 +28135,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowatt-Saat"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Lütfen önce {0} İş Emri adına Üretim Girişlerini iptal edin."
@@ -28246,7 +28263,7 @@ msgstr "Son Tamamlanma Tarihi"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr ""
@@ -28328,7 +28345,7 @@ msgstr "Son karbon kontrol tarihi gelecekteki bir tarih olamaz"
msgid "Last transacted"
msgstr "Son İşlem"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Son"
@@ -28579,12 +28596,12 @@ msgstr "Eski Alanlar"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Kuruluşa ait ayrı bir Hesap Planına sahip Tüzel Kişilik / Bağlı Ortaklık."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Yasal Giderler"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Defter"
@@ -28595,7 +28612,7 @@ msgstr "Defter"
msgid "Length (cm)"
msgstr "Uzunluk (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Tutardan Az"
@@ -28654,7 +28671,7 @@ msgstr "Ehliyet Numarası"
msgid "License Plate"
msgstr "Plaka"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Limit Aşıldı"
@@ -28715,7 +28732,7 @@ msgstr "Malzeme Taleplerine Bağla"
msgid "Link with Customer"
msgstr "Müşteri ile İlişkilendir"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Tedarikçi ile İlişkilendir"
@@ -28736,12 +28753,12 @@ msgstr "Bağlı Faturalar"
msgid "Linked Location"
msgstr "Bağlantılı Konum"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Gönderilen belgelerle bağlantılı"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Bağlantı Başarısız"
@@ -28749,7 +28766,7 @@ msgstr "Bağlantı Başarısız"
msgid "Linking to Customer Failed. Please try again."
msgstr "Müşteriye Bağlantı Başarısız Oldu. Lütfen tekrar deneyin."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Tedarikçiye Bağlantı Başarısız Oldu. Lütfen tekrar deneyin."
@@ -28807,8 +28824,8 @@ msgstr "Kredi Başlangıç Tarihi"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Fatura İndirimi kaydetmek için Borç Başlangıç Tarihi ve Süresi zorunludur"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Krediler"
@@ -28853,8 +28870,8 @@ msgstr "Bir Ürünün alış ve satış fiyatının kaydı"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29055,6 +29072,11 @@ msgstr "Sadakat Katmanı Programı"
msgid "Loyalty Program Type"
msgstr "Sadakat Programı Türü"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29098,10 +29120,10 @@ msgstr "Makine Arızası"
msgid "Machine operator errors"
msgstr "Operatör Hataları"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Ana Kategori"
@@ -29344,9 +29366,9 @@ msgstr "Bölüm"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Oluştur"
@@ -29366,7 +29388,7 @@ msgstr "Amortisman kaydı yap"
msgid "Make Difference Entry"
msgstr "Farklı Giriş Ekle"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr ""
@@ -29404,12 +29426,12 @@ msgstr "Satış Faturası Oluşturma"
msgid "Make Serial No / Batch from Work Order"
msgstr "İş Emrinden Seri No / Parti Oluştur"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Stok Girişi Oluştur"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Alt Yüklenici Siparişi Oluştur"
@@ -29425,11 +29447,11 @@ msgstr "Arama yap"
msgid "Make project from a template."
msgstr "Bir şablondan proje oluşturun."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "{0} Varyantı Oluştur"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "{0} Varyantları Oluştur"
@@ -29437,8 +29459,8 @@ msgstr "{0} Varyantları Oluştur"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Avans hesaplarına karşı yevmiye kayıtları yapmak: {0} önerilmez. Bu yevmiye kayıtları mutabakat için uygun olmayacaktır."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Yönet"
@@ -29457,7 +29479,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "Siparişlerinizi Yönetin"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Yönetim"
@@ -29473,7 +29495,7 @@ msgstr "Genel Müdür"
msgid "Mandatory Accounting Dimension"
msgstr "Zorunlu Muhasebe Boyutu"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Zorunlu Alan"
@@ -29572,8 +29594,8 @@ msgstr "Manuel giriş oluşturulamaz! Hesap ayarlarında ertelenmiş muhasebe i
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29652,7 +29674,7 @@ msgstr "Üretici"
msgid "Manufacturer Part Number"
msgstr "Üretici Parça Numarası"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Üretici Parça Numarası {0} geçersiz"
@@ -29677,7 +29699,7 @@ msgstr "Ürünlerde kullanılan Üretici Ürünleri"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29722,10 +29744,6 @@ msgstr "Üretim Tarihi"
msgid "Manufacturing Manager"
msgstr "Üretim Müdürü"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Üretim Miktarı zorunludur"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29892,6 +29910,12 @@ msgstr "Medeni Hâl"
msgid "Mark As Closed"
msgstr "Kapalı Olarak İşaretle"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29906,12 +29930,12 @@ msgstr "Kapalı Olarak İşaretle"
msgid "Market Segment"
msgstr "Pazar Segmenti"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Pazarlama"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Pazarlama Giderleri"
@@ -29990,7 +30014,7 @@ msgstr ""
msgid "Material"
msgstr "Malzeme"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Malzeme Tüketimi"
@@ -29998,7 +30022,7 @@ msgstr "Malzeme Tüketimi"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Üretim İçin Malzeme Tüketimi"
@@ -30079,7 +30103,7 @@ msgstr "Stok Girişi"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30176,11 +30200,11 @@ msgstr "Malzeme Talebi Planı Ürünü"
msgid "Material Request Type"
msgstr "Malzeme Talep Türü"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Hammaddeler için miktar zaten mevcut olduğundan Malzeme Talebi oluşturulmadı."
@@ -30248,7 +30272,7 @@ msgstr "Devam Eden İşlerden Geri Dönen Malzemeler"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30314,12 +30338,12 @@ msgstr "Tedarikçi için Malzeme"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Malzemeler zaten {0} {1} karşılığında alındı"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "{0} nolu İş Kartı için malzemelerin devam eden işler deposuna aktarılması gerekiyor"
@@ -30390,9 +30414,9 @@ msgstr "Maksimum Puan"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "{0} Ürünü için izin verilen maksimum indirim %{1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30424,11 +30448,11 @@ msgstr "Maksimum Ödeme Tutarı"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Maksimum Numuneler - {0} Parti {1} ve Ürün {2} için saklanabilir."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Maksimum Numuneler - {0} zaten {1} Partisi ve {3}Partisi için {2} Ürünü için saklandı."
@@ -30489,15 +30513,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Ürün ana verisinde Değerleme Oranını belirtin."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Standart Değilse Ayrıca Belirtin"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30547,7 +30566,7 @@ msgstr "Mevcut Hesapla Birleştir"
msgid "Merged"
msgstr "Birleştirildi"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Birleştirme sadece aşağıdaki özelliklerin her iki kayıtta da aynı olması durumunda mümkündür. Grup, Kök Türü, Şirket ve Hesap Para Birimi"
@@ -30577,7 +30596,7 @@ msgstr "Kullanıcılara Projedeki durumlarını öğrenmek için mesaj gönderil
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "160 karakterden daha büyük mesajlar birden fazla mesaja bölünecektir"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30778,7 +30797,7 @@ msgstr "Minimum Miktar Maksimum Miktardan Fazla olamaz"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Minimum Miktar, Yeniden İşlenecek Miktardan büyük olmalıdır."
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30867,8 +30886,8 @@ msgstr "Süreler"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Çeşitli Giderler"
@@ -30876,15 +30895,15 @@ msgstr "Çeşitli Giderler"
msgid "Mismatch"
msgstr "Uyuşmazlık"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Eksik"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Eksik Hesap"
@@ -30914,7 +30933,7 @@ msgstr ""
msgid "Missing Finance Book"
msgstr "Kayıp Finans Kitabı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Eksik Bitmiş Ürün"
@@ -30922,7 +30941,7 @@ msgstr "Eksik Bitmiş Ürün"
msgid "Missing Formula"
msgstr "Eksik Formül"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Eksik Ürünler"
@@ -30959,7 +30978,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Eksik Değer"
@@ -31208,11 +31227,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Müşteri {} için birden fazla Sadakat Programı bulundu. Lütfen manuel olarak seçin."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr ""
@@ -31234,11 +31253,11 @@ msgstr "Çoklu Varyantlar"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "{0} tarihi için birden fazla mali yıl var. Lütfen Mali Yıl'da şirketi ayarlayın"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Birden fazla ürün bitmiş ürün olarak işaretlenemez"
@@ -31247,7 +31266,7 @@ msgid "Music"
msgstr "Müzik"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31334,7 +31353,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31378,7 +31397,7 @@ msgstr "İhtiyaç Analizi"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Negatif Miktara izin verilmez"
@@ -31387,7 +31406,7 @@ msgstr "Negatif Miktara izin verilmez"
msgid "Negative Stock Error"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Negatif Değerleme Oranına izin verilmez"
@@ -31693,7 +31712,7 @@ msgstr "Net Ağırlığı"
msgid "Net Weight UOM"
msgstr "Net Ağırlık Ölçü Birimi"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Net toplam hesaplama hassasiyet kaybı"
@@ -31870,7 +31889,7 @@ msgstr "Yeni Depo İsmi"
msgid "New Workplace"
msgstr "Yeni Çalışma Bölümü"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Yeni kredi limiti, müşterinin mevcut ödenmemiş tutarından daha azdır. Kredi limiti en az {0} olmalıdır."
@@ -31924,7 +31943,7 @@ msgstr "Sıradaki E-Posta Gönderimi"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Bu filtrelerle eşleşen bir Hesap bulunamadı: {}"
@@ -31937,7 +31956,7 @@ msgstr "Aksiyon Yok"
msgid "No Answer"
msgstr "Cevap Yok"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Şirketi temsil eden Şirketler Arası İşlemler için Müşteri bulunamadı {0}"
@@ -31950,7 +31969,7 @@ msgstr "Seçilen seçeneklere sahip Müşteri bulunamadı."
msgid "No Delivery Note selected for Customer {}"
msgstr "Müşteri {} için İrsaliye seçilmedi"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31966,7 +31985,7 @@ msgstr "{0} Barkodlu Ürün Bulunamadı"
msgid "No Item with Serial No {0}"
msgstr "{0} Seri Numaralı Ürün Bulunamadı"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Transfer için hiçbir Ürün seçilmedi."
@@ -32001,7 +32020,7 @@ msgstr "POS Profili bulunamadı. Lütfen önce Yeni bir POS Profili oluşturun"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "İzin yok"
@@ -32030,19 +32049,19 @@ msgstr "Şu Anda Stok Mevcut Değil"
msgid "No Summary"
msgstr "Özet Yok"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "{0} şirketini temsil eden Şirketler Arası İşlemler için Tedarikçi bulunamadı"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Geçerli kayıt tarihi için Vergi Stopajı verisi bulunamadı."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Şart Yok"
@@ -32072,7 +32091,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "{0} ürünü için aktif bir Ürün Ağacı bulunamadı. Seri No'ya göre teslimat sağlanamaz"
@@ -32266,7 +32285,7 @@ msgstr ""
msgid "No open Material Requests found for the given criteria."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr ""
@@ -32290,7 +32309,7 @@ msgstr "Döviz kuru yeniden değerlemesi gerektiren ödenmemiş fatura yok"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Belirttiğiniz filtreleri karşılayan {1} {2} için bekleyen {0} bulunamadı."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Verilen ürünler için bağlantı kurulacak bekleyen Malzeme İsteği bulunamadı."
@@ -32361,7 +32380,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr ""
@@ -32394,7 +32413,7 @@ msgstr "Veri Yok"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Şirketler Arası İşlemler için {0} bulunamadı."
@@ -32439,8 +32458,8 @@ msgstr "Kâr Amacı Gütmeyen"
msgid "Non stock items"
msgstr "Stok dışı ürünler"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32541,7 +32560,7 @@ msgstr ""
msgid "Not allow to set alternative item for the item {0}"
msgstr "{0} öğesi için alternatif öğeyi ayarlamaya izin verilmez"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "{0} için muhasebe boyutu oluşturulmasına izin verilmiyor"
@@ -32595,7 +32614,7 @@ msgstr ""
msgid "Note: Item {0} added multiple times"
msgstr "Not: {0} ürünü birden çok kez eklendi"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Not: 'Nakit veya Banka Hesabı' belirtilmediği için Ödeme Girişi oluşturulmayacaktır."
@@ -32603,7 +32622,7 @@ msgstr "Not: 'Nakit veya Banka Hesabı' belirtilmediği için Ödeme Girişi olu
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Not: Bu Maliyet Merkezi bir Gruptur. Gruplara karşı muhasebe girişleri yapılamaz."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Kalemleri birleştirmek istiyorsanız, eski kalem {0} için ayrı bir Stok Mutabakatı oluşturun"
@@ -32786,6 +32805,11 @@ msgstr "Yeni Hesap Numarası, hesap adına önek olarak eklenecektir"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Yeni Maliyet Merkezi Numarası, maliyet merkezi adına önek olarak eklenecektir"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32845,18 +32869,18 @@ msgstr "Kilometre Sayacı Değeri (Son)"
msgid "Offer Date"
msgstr "Teklif Tarihi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Ofis Ekipmanları"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Ofis Bakım Giderleri"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "İşyeri Kirası"
@@ -32984,7 +33008,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Bir kez ayarlandığında, bu fatura belirlenen tarihe kadar bekletilecektir."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "İş Emri Kapatıldıktan sonra, Devam ettirilemez."
@@ -33024,7 +33048,7 @@ msgstr "Sadece bu avans hesabına yapılan 'Ödeme Girişleri' desteklenmektedir
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Verileri içe aktarmak için yalnızca CSV ve Excel dosyaları kullanılabilir. Lütfen yüklemeye çalıştığınız dosya biçimini kontrol edin"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33043,7 +33067,7 @@ msgstr "Sadece Fazla Tutar Üzerinden Vergi Kesintisi Yapın "
msgid "Only Include Allocated Payments"
msgstr "Sadece Ayrılan Ödemeleri Dahil Et"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Yalnızca Üst Öğe {0} türünde olabilir"
@@ -33080,7 +33104,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "İş Emri {1} için yalnızca bir {0} girişi oluşturulabilir"
@@ -33298,8 +33322,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "Bakiye Ayrıntılarını Açma"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Açılış Bakiyesi Sermayesi"
@@ -33322,7 +33346,7 @@ msgstr "Açılış Tarihi"
msgid "Opening Entry"
msgstr "Açılış Fişi"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Dönem Kapanış Fişi oluşturulduktan sonra Açılış Fişi oluşturulamaz."
@@ -33355,7 +33379,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Açılış Faturası {0} yuvarlama ayarına sahiptir. '{1}' hesabının bu değerleri göndermesi gerekir. Lütfen Şirket'te bu hesabı ayarlayın: {2}. Veya, herhangi bir yuvarlama ayarı göndermemek için '{3}' seçeneğini aktifleştirin."
@@ -33391,16 +33415,16 @@ msgstr "Açılış Satış Faturaları oluşturuldu."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Açılış Stoku"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33418,12 +33442,15 @@ msgstr "Açılış Değeri"
msgid "Opening and Closing"
msgstr "Açılış ve Kapanış"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr ""
@@ -33455,7 +33482,7 @@ msgstr "Operasyon Maliyeti (Şirket Para Birimi)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Ürün Ağacındaki Miktara Göre Operasyon Maliyeti"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "İş Emri / Ürün Ağacına Göre İşletme Maliyeti"
@@ -33498,15 +33525,15 @@ msgstr "Operasyon Detayı"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "İşlem kimliği"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "Operasyon Kimliği"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33531,7 +33558,7 @@ msgstr "Operasyon Satır Numarası"
msgid "Operation Time"
msgstr "Operasyon Süresi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "{0} Operasyonu için İşlem Süresi 0'dan büyük olmalıdır"
@@ -33546,11 +33573,11 @@ msgstr "Operasyon tamamlandıktan sonra elde edilecek ürün miktarı"
msgid "Operation time does not depend on quantity to produce"
msgstr "Operasyon süresi üretilecek ürün miktarına bağlı değildir."
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Operasyon {0}, iş emrine birden çok kez eklendi {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "{0} Operasyonu {1} İş Emrine ait değil"
@@ -33566,9 +33593,9 @@ msgstr "{0} Operasyonu, {1} iş istasyonundaki herhangi bir kullanılabilir çal
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33741,7 +33768,7 @@ msgstr "Fırsat {0} oluşturuldu"
msgid "Optimize Route"
msgstr "Rotayı Optimize Et"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33891,7 +33918,7 @@ msgstr "Sipariş Miktarı"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Siparişler"
@@ -34007,7 +34034,7 @@ msgstr "Ons/Galon (ABD)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Çıkış Miktarı"
@@ -34045,7 +34072,7 @@ msgstr "Garanti Dışı"
msgid "Out of stock"
msgstr "Stokta yok"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr ""
@@ -34064,6 +34091,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Giden Oranı"
@@ -34099,7 +34127,7 @@ msgstr ""
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34109,7 +34137,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34169,17 +34197,22 @@ msgstr ""
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Fazla Teslimat/Alınan Ürün Ödeneği (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Fazla Seçim İzni"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Fazla Teslim Alma"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "{3} rolüne sahip olduğunuz için {2} ürünü için {0} {1} fazla alım/teslimat göz ardı edildi."
@@ -34199,11 +34232,11 @@ msgstr "Fazla Transfer İzni (%)"
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "{3} rolüne sahip olduğunuz için {2} ürünü için {0} {1} fazla faturalandırma göz ardı edildi."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Rolünüz {} olduğu için {} fazla fatura türü göz ardı edildi."
@@ -34503,7 +34536,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "POS Açılış Kaydı"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr ""
@@ -34524,7 +34557,7 @@ msgstr "POS Açılış Girişi Detayı"
msgid "POS Opening Entry Exists"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr ""
@@ -34560,7 +34593,7 @@ msgstr "POS Ödeme Yöntemi"
msgid "POS Profile"
msgstr "POS Profili"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr ""
@@ -34578,11 +34611,11 @@ msgstr "POS Profil Kullanıcısı"
msgid "POS Profile doesn't match {}"
msgstr "POS Profili {} ile eşleşmiyor"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "POS Girişi yapmak için POS Profili gereklidir"
@@ -34688,7 +34721,7 @@ msgstr "Paketli Ürün"
msgid "Packed Items"
msgstr "Paketli Ürünler"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Paketlenmiş Ürünler dahili olarak transfer edilemez"
@@ -34725,7 +34758,7 @@ msgstr "Paketleme Fişi"
msgid "Packing Slip Item"
msgstr "Paketleme Fişi Kalemi"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Paketleme iptal edildi"
@@ -34766,7 +34799,7 @@ msgstr "Ödenmiş"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34832,7 +34865,7 @@ msgid "Paid To Account Type"
msgstr "Ödenen Yapılacak Hesap Türü"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Ödenen Tutar + Kapatılan Tutar, Genel Toplamdan büyük olamaz."
@@ -34926,7 +34959,7 @@ msgstr "Ana Batch"
msgid "Parent Company"
msgstr "Ana Şirket"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Ana Şirket bir grup şirketi olmalıdır"
@@ -35053,7 +35086,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Kısmi Malzeme Transferi"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr ""
@@ -35266,7 +35299,7 @@ msgstr "Milyonda Parça Sayısı"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35293,7 +35326,7 @@ msgstr "Cari"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Cari Hesabı"
@@ -35326,7 +35359,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Taraf Hesap No. (Banka Hesap Özeti)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Cari Hesabı {0} para birimi ({1}) ve belge para birimi ({2}) aynı olmalıdır"
@@ -35478,7 +35511,7 @@ msgstr "Partiye Özel Ürün"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35587,7 +35620,7 @@ msgstr "Geçmiş Etkinlikler"
msgid "Pause"
msgstr "Duraklat"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "İşi Duraklat"
@@ -35638,7 +35671,7 @@ msgid "Payable"
msgstr "Ödenecek Borç"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35672,7 +35705,7 @@ msgstr "Ödeyici Ayarları"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35819,7 +35852,7 @@ msgstr "Ödeme Girişi, aldıktan sonra değiştirildi. Lütfen tekrar alın."
msgid "Payment Entry is already created"
msgstr "Ödeme Girişi zaten oluşturuldu"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Ödeme Girişi {0}, Sipariş {1} ile bağlantılı. Bu ödemenin bu faturada avans olarak kullanılıp kullanılmayacağını kontrol edin."
@@ -36044,7 +36077,7 @@ msgstr "Ödeme Referansları"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36109,7 +36142,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36138,7 +36171,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36194,6 +36227,7 @@ msgstr "Satış Siparişi için Ödeme Koşulları Durumu"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36208,6 +36242,7 @@ msgstr "Satış Siparişi için Ödeme Koşulları Durumu"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36265,7 +36300,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Ödeme yöntemleri zorunludur. Lütfen en az bir ödeme yöntemi ekleyin."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36340,8 +36375,8 @@ msgstr "Ödemeler güncellendi."
msgid "Payroll Entry"
msgstr "Bordro Girişi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Ödenecek Bordro"
@@ -36388,10 +36423,14 @@ msgstr "Bekleyen Etkinlikler"
msgid "Pending Amount"
msgstr "Bekleyen Tutar"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36400,9 +36439,18 @@ msgstr "Bekleyen Miktar"
#: 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:273
msgid "Pending Quantity"
msgstr "Bekleyen Miktar"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36432,6 +36480,14 @@ msgstr "Bugün için bekleyen etkinlikler"
msgid "Pending processing"
msgstr "Bekleyen İşlemler"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Emeklilik Fonları"
@@ -36541,7 +36597,7 @@ msgstr "Algı Analizi"
msgid "Period Based On"
msgstr "Döneme Göre"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Dönem Kapalı"
@@ -36738,7 +36794,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/bom/bom_item_preview.html:16
#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:321
msgid "Phantom Item"
-msgstr ""
+msgstr "Hayalet Seçenek"
#: erpnext/public/js/bom_configurator/bom_configurator.bundle.js:430
msgid "Phantom Item is mandatory"
@@ -37105,8 +37161,8 @@ msgstr "Üretim Alanı Gösterge Panosu"
msgid "Plant Floor"
msgstr "Üretim Alanı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Tesisler ve Makineler"
@@ -37142,7 +37198,7 @@ msgstr "Lütfen Önceliği Belirleyin"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Lütfen Satın Alma Ayarlarında Tedarikçi Grubunu Ayarlayın."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Lütfen Hesap Belirtin"
@@ -37190,7 +37246,7 @@ msgstr "Lütfen Banka Hesabı sütununu ekleyin"
msgid "Please add the account to root level Company - {0}"
msgstr "Lütfen hesabı kök seviyesindeki Şirkete ekleyin - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Lütfen hesabın kök bölgesindeki Şirkete ekleyin - {}"
@@ -37198,7 +37254,7 @@ msgstr "Lütfen hesabın kök bölgesindeki Şirkete ekleyin - {}"
msgid "Please add {1} role to user {0}."
msgstr "Lütfen {0} kullanıcısına {1} rolünü ekleyin."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Lütfen miktarı ayarlayın veya devam etmek için {0} öğesini düzenleyin."
@@ -37206,7 +37262,7 @@ msgstr "Lütfen miktarı ayarlayın veya devam etmek için {0} öğesini düzenl
msgid "Please attach CSV file"
msgstr "Lütfen CSV dosyasını ekleyin"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Lütfen Ödeme Girişini iptal edin ve düzeltin"
@@ -37240,7 +37296,7 @@ msgstr "Lütfen operasyonları veya Bitmiş Ürün Bazlı İşletme Maliyetini k
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Lütfen hata mesajını kontrol edin ve hatayı düzeltmek için gerekli işlemleri yapın ve ardından yeniden göndermeyi yeniden başlatın."
@@ -37265,11 +37321,15 @@ msgstr "{0} Ürünü için eklenen Seri No'yu almak için lütfen 'Program Oluş
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Programı almak için lütfen 'Program Oluştur'a tıklayın"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Kredi limitlerini uzatmak için lütfen aşağıdaki kullanıcılardan herhangi biriyle iletişime geçin: {0}: {1}"
@@ -37277,11 +37337,11 @@ msgstr "Kredi limitlerini uzatmak için lütfen aşağıdaki kullanıcılardan h
msgid "Please contact any of the following users to {} this transaction."
msgstr "Bu işlemi {} yapmak için lütfen aşağıdaki kullanıcılardan herhangi biriyle iletişime geçin."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "{0} için kredi limitlerini uzatmak amacıyla lütfen yöneticinizle iletişime geçin."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Lütfen ilgili alt şirketteki ana hesabı bir grup hesabına dönüştürün."
@@ -37293,11 +37353,11 @@ msgstr "Lütfen {0} Müşteri Adayından oluşturun."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Lütfen ‘Stok Güncelle’ seçeneği etkin olan faturalar için İndirgenmiş Maliyet Fişleri oluşturun."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Gerekirse lütfen yeni bir Muhasebe Boyutu oluşturun."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Lütfen satın alma işlemini dahili satış veya teslimat belgesinin kendisinden oluşturun"
@@ -37305,11 +37365,11 @@ msgstr "Lütfen satın alma işlemini dahili satış veya teslimat belgesinin ke
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Lütfen {0} ürünü için alış irsaliyesi veya alış faturası alın"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Lütfen {1} adresini {2} adresiyle birleştirmeden önce {0} Ürün Paketini silin"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr ""
@@ -37317,7 +37377,7 @@ msgstr ""
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Lütfen birden fazla varlığın giderini tek bir Varlığa karşı muhasebeleştirmeyin."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Lütfen bir kerede 500'den fazla öğe oluşturmayın"
@@ -37341,7 +37401,7 @@ msgstr "Lütfen yalnızca bunu etkinleştirmenin etkilerini anlıyorsanız etkin
msgid "Please enable {0} in the {1}."
msgstr "Lütfen {1} içindeki {0} öğesini etkinleştirin."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Aynı öğeye birden fazla satırda izin vermek için lütfen {} içinde {} ayarını etkinleştirin"
@@ -37353,20 +37413,20 @@ msgstr "Lütfen {0} hesabının bir Bilanço hesabı olduğundan emin olun. Ana
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 "Lütfen {0} hesabının {1} bir Borç hesabı olduğundan emin olun. Hesap türünü Ödenecek olarak değiştirebilir veya farklı bir hesap seçebilirsiniz."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Lütfen {} hesabının bir Bilanço Hesabı olduğundan emin olun."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Lütfen {} hesabının {} bir Alacak hesabı olduğundan emin olun."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Lütfen Fark Hesabı girin veya şirket için varsayılan Stok Ayarlama Hesabı olarak ayarlayın {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Değişim Miktarı Hesabı girin"
@@ -37374,15 +37434,15 @@ msgstr "Değişim Miktarı Hesabı girin"
msgid "Please enter Approving Role or Approving User"
msgstr "Lütfen Onaylayan Rolü veya Onaylayan Kullanıcıyı girin"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Lütfen maliyet merkezini girin"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Lütfen Teslimat Tarihini giriniz"
@@ -37390,7 +37450,7 @@ msgstr "Lütfen Teslimat Tarihini giriniz"
msgid "Please enter Employee Id of this sales person"
msgstr "Lütfen bu satış elemanının Personel Kimliğini girin"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Lütfen Gider Hesabını girin"
@@ -37399,7 +37459,7 @@ msgstr "Lütfen Gider Hesabını girin"
msgid "Please enter Item Code to get Batch Number"
msgstr "Parti Numarasını almak için lütfen Ürün Kodunu girin"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Parti numarasını almak için lütfen Ürün Kodunu girin"
@@ -37415,7 +37475,7 @@ msgstr "Lütfen önce Bakım Ayrıntılarını girin"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Satır {1} deki {0} Ürünü için planlanan miktarı giriniz"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Lütfen Önce Üretilecek Ürünü Seçin"
@@ -37435,7 +37495,7 @@ msgstr "Lütfen Referans tarihini giriniz"
msgid "Please enter Root Type for account- {0}"
msgstr "Lütfen hesap için Kök Türünü girin- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37452,7 +37512,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Lütfen Depo ve Tarihi giriniz"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Lütfen Şüpheli Alacak Hesabını Girin"
@@ -37472,7 +37532,7 @@ msgstr ""
msgid "Please enter company name first"
msgstr "Lütfen önce şirket adını girin"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Lütfen Şirket Ana Verisi'ne varsayılan para birimini girin"
@@ -37500,7 +37560,7 @@ msgstr "Lütfen işten ayrılma tarihini girin."
msgid "Please enter serial nos"
msgstr "Lütfen seri numaralarını girin"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Lütfen onaylamak için şirket adını girin"
@@ -37568,11 +37628,11 @@ msgstr "Lütfen yukarıdaki işyerinde başka bir çalışana rapor ettiğinden
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Lütfen kullandığınız dosyanın başlığında 'Ana Hesap' sütununun bulunduğundan emin olun."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Lütfen bu şirket için tüm işlemleri gerçekten silmek istediğinizden emin olun. Ana verileriniz olduğu gibi kalacaktır. Bu eylem geri alınamaz."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Lütfen Ağırlık ile birlikte 'Ağırlık Ölçü Birimini de belirtin."
@@ -37631,7 +37691,7 @@ msgstr "Şablonu indirmek için lütfen Şablon Türünü seçin"
msgid "Please select Apply Discount On"
msgstr "Lütfen indirim uygula seçeneğini belirleyin"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Lütfen {0} Ürününe karşı Ürün Ağacını Seçin"
@@ -37647,7 +37707,7 @@ msgstr "Lütfen Banka Hesabını Seçin"
msgid "Please select Category first"
msgstr "Lütfen önce Kategoriyi seçin"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37677,7 +37737,7 @@ msgstr "Lütfen Tamamlanan Varlık Bakım Kayıtları için Tamamlanma Tarihini
msgid "Please select Customer first"
msgstr "Lütfen önce Müşteriyi Seçin"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Hesap Planı oluşturmak için Mevcut Şirketi seçiniz"
@@ -37686,8 +37746,8 @@ msgstr "Hesap Planı oluşturmak için Mevcut Şirketi seçiniz"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Lütfen Hizmet Kalemi için Bitmiş Ürünü seçin {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Lütfen önce Ürün Kodunu seçin"
@@ -37719,11 +37779,11 @@ msgstr "Lütfen önce Gönderi Tarihini seçin"
msgid "Please select Price List"
msgstr "Lütfen Fiyat Listesini Seçin"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Lütfen {0} ürünü için miktar seçin"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Lütfen önce Stok Ayarlarında Numune Saklama Deposunu seçin"
@@ -37739,7 +37799,7 @@ msgstr "Ürün {0} için Başlangıç ve Bitiş tarihini seçiniz"
msgid "Please select Stock Asset Account"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Lütfen Gerçekleşmemiş Kâr / Zarar hesabını seçin veya {0} şirketi için varsayılan Gerçekleşmemiş Kâr / Zarar hesabı hesabını ekleyin"
@@ -37756,7 +37816,7 @@ msgstr "Bir Şirket Seçiniz"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Lütfen önce bir Şirket seçin."
@@ -37780,7 +37840,7 @@ msgstr "Lütfen bir Tedarikçi Seçin"
msgid "Please select a Warehouse"
msgstr "Lütfen bir Depo seçin"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Lütfen önce bir İş Emri seçin."
@@ -37853,11 +37913,15 @@ msgstr "Lütfen {1} Fiyat Teklifi {0} için bir değer seçin"
msgid "Please select an item code before setting the warehouse."
msgstr "Depoyu ayarlamadan önce lütfen bir ürün kodu seçin."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37877,7 +37941,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr ""
@@ -37935,7 +37999,7 @@ msgstr "Lütfen Şirketi seçiniz"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Birden fazla tahsilat kuralı için lütfen Çok Katmanlı Program türünü seçin."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37964,7 +38028,7 @@ msgstr "Lütfen geçerli belge türünü seçin."
msgid "Please select weekly off day"
msgstr "Haftalık izin süresini seçin"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Lütfen Önce {0} Seçin"
@@ -37973,11 +38037,11 @@ msgstr "Lütfen Önce {0} Seçin"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Lütfen 'Ek İndirim Uygula' seçeneğini ayarlayın"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Lütfen {0} Şirketinde 'Varlık Amortisman Masraf Merkezi' ayarlayın"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Şirket {0} için ‘Varlık Elden Çıkarma Kar/Zarar Hesabı’nı ayarlayın"
@@ -37989,7 +38053,7 @@ msgstr "Lütfen Şirket: {1} için '{0}' değerini ayarlayın"
msgid "Please set Account"
msgstr "Lütfen Hesabı Ayarlayın"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Lütfen Tutar Değişikliği için Hesap ayarlayın"
@@ -38019,7 +38083,7 @@ msgstr "Lütfen Şirketi ayarlayın"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr ""
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Lütfen Değer Kaybı ile ilgili Hesapları, Varlık Kategorisi {0} veya Firma {1} içinde belirleyin"
@@ -38037,7 +38101,7 @@ msgstr "Lütfen müşteri için Mali Kodu ayarlayın '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Lütfen kamu idaresi için Mali Kodu belirleyin '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr ""
@@ -38083,7 +38147,7 @@ msgstr "Lütfen bir Şirket ayarlayın"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Lütfen Varlık için bir Maliyet Merkezi belirleyin veya Şirket için bir Varlık Amortisman Maliyet Merkezi belirleyin {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Lütfen {1} Şirketi için varsayılan bir Tatil Listesi ayarlayın"
@@ -38120,23 +38184,23 @@ msgstr "Lütfen Vergiler ve Ücretler Tablosunda en az bir satır ayarlayın"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Lütfen {0} Şirketi için hem Vergi Kimlik Numarasını hem de Muhasebe Kodunu ayarlayın"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Lütfen Ödeme Şeklinde varsayılan Nakit veya Banka hesabını ayarlayın {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Lütfen {} Şirketi varsayılan Döviz Kazanç/Zarar Hesabını ayarlayın"
@@ -38165,7 +38229,7 @@ msgstr "Lütfen {1} Şirketinde {0} varsayılan ayarını yapın"
msgid "Please set filter based on Item or Warehouse"
msgstr "Lütfen filtreyi Ürüne veya Depoya göre ayarlayın"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Lütfen aşağıdakilerden birini ayarlayın:"
@@ -38173,7 +38237,7 @@ msgstr "Lütfen aşağıdakilerden birini ayarlayın:"
msgid "Please set opening number of booked depreciations"
msgstr ""
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Lütfen kaydettikten sonra yinelemeyi ayarlayın"
@@ -38185,15 +38249,15 @@ msgstr "Lütfen Müşteri Adresinizi ayarlayın"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Lütfen {0} şirketinde Varsayılan Maliyet Merkezini ayarlayın."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Lütfen önce Ürün Kodunu ayarlayın"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr ""
@@ -38232,7 +38296,7 @@ msgstr "{1} Ürün Ağacı Oluşturucuda {0} değerini ayarlayın"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Lütfen {1} şirketinde Döviz Kur Farkı Kâr/Zarar hesabını ayarlamak için {0} belirleyin."
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Lütfen {0} alanını {1} olarak ayarlayın, bu orijinal fatura {2} için kullanılan hesapla aynı olmalıdır."
@@ -38254,7 +38318,7 @@ msgstr "Lütfen Şirketi belirtin"
msgid "Please specify Company to proceed"
msgstr "Lütfen devam etmek için Şirketi belirtin"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Lütfen {1} tablosundaki {0} satırında geçerli bir Satır Kimliği belirtin"
@@ -38267,7 +38331,7 @@ msgstr "Lütfen önce bir {0} belirtin."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Lütfen Özellikler tablosunda en az bir özelliği belirtin"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Miktar veya Birim Fiyatı ya da her ikisini de belirtiniz"
@@ -38372,8 +38436,8 @@ msgstr "Rota Dizisi Gönder"
msgid "Post Title Key"
msgstr "Yazı Başlığı Anahtarı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Posta Giderleri"
@@ -38438,7 +38502,7 @@ msgstr "Yayınlama Tarihi"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38456,7 +38520,7 @@ msgstr "Yayınlama Tarihi"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38578,10 +38642,6 @@ msgstr "Gönderim Tarih ve Saati"
msgid "Posting Time"
msgstr "Gönderme Saati"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Gönderi tarihi ve gönderi saati zorunludur"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38655,18 +38715,23 @@ msgstr "{0} Tarafından desteklenmektedir"
msgid "Pre Sales"
msgstr "Ön Satış"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Tercihler"
@@ -38839,6 +38904,7 @@ msgstr "Fiyat İndirim Levhaları"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38862,6 +38928,7 @@ msgstr "Fiyat İndirim Levhaları"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38913,7 +38980,7 @@ msgstr "Fiyat Listesi Ülkesi"
msgid "Price List Currency"
msgstr "Fiyat Listesi Para Birimi"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Fiyat Listesi Para Birimi seçilmedi"
@@ -39268,7 +39335,7 @@ msgstr "Makbuz Yazdır"
msgid "Print Receipt on Order Complete"
msgstr "Sipariş Tamamlandığında Makbuz Yazdır"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "Miktardan Sonra Ölçü Birimini Yazdır"
@@ -39277,8 +39344,8 @@ msgstr "Miktardan Sonra Ölçü Birimini Yazdır"
msgid "Print Without Amount"
msgstr "Miktar Olmadan Yazdır"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "Baskı ve Kırtasiye"
@@ -39286,7 +39353,7 @@ msgstr "Baskı ve Kırtasiye"
msgid "Print settings updated in respective print format"
msgstr "Yazdırma ayarları ilgili yazdırma biçiminde güncellendi"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "Yazdırmada Vergiyi Sıfır Göster"
@@ -39389,10 +39456,6 @@ msgstr "Problem"
msgid "Procedure"
msgstr "Prosedür"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr ""
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39446,7 +39509,7 @@ msgstr "Proses Kaybı Yüzdesi 100'den büyük olamaz"
msgid "Process Loss Qty"
msgstr "Kayıp Proses Miktarı"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr ""
@@ -39527,6 +39590,10 @@ msgstr "Aboneliği İşle"
msgid "Process in Single Transaction"
msgstr "Tek Bir İşlemde İşle"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39622,8 +39689,8 @@ msgstr "Ürün"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39688,7 +39755,7 @@ msgstr "Ürün Fiyat Kimliği"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Üretim"
@@ -39902,7 +39969,7 @@ msgstr "Bir görevin ilerleme yüzdesi 100'den fazla olamaz."
msgid "Progress (%)"
msgstr "İlerleme (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Proje Ortak Çalışma Daveti"
@@ -39946,7 +40013,7 @@ msgstr "Proje Durumu"
msgid "Project Summary"
msgstr "Proje Özeti"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "{0} için Proje Özeti"
@@ -40077,7 +40144,7 @@ msgstr "Öngörülen Miktar"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40223,7 +40290,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Etkileşimde Bulunulan Ancak Dönüşmeyen Adaylar"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40238,7 +40305,7 @@ msgstr "Şirkete kayıtlı E-posta Adresi"
msgid "Providing"
msgstr "Sağlama"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Geçici Hesap"
@@ -40310,8 +40377,9 @@ msgstr "Yayıncılık"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40634,7 +40702,7 @@ msgstr ""
msgid "Purchase Order {0} is not submitted"
msgstr "Satın Alma Emri {0} kaydedilmedi"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Satın Alma Siparişleri"
@@ -40649,7 +40717,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr "Satın Alma Siparişleri Vadesi Geçenler"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "{0} için, puan kartı durumu {1} olduğundan satın alma siparişlerine izin verilmiyor."
@@ -40664,7 +40732,7 @@ msgstr "Faturalanacak Satınalma Siparişleri"
msgid "Purchase Orders to Receive"
msgstr "Alınacak Satınalma Siparişleri"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Satın Alma Siparişleri {0} bağlantısı kaldırıldı"
@@ -40798,7 +40866,7 @@ msgstr "İade"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Alış Vergisi Şablonu"
@@ -40896,6 +40964,7 @@ msgstr "Satın Alma"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40905,10 +40974,6 @@ msgstr "Satın Alma"
msgid "Purpose"
msgstr "İşlem"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Amaç {0} değerinden biri olmalıdır"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40964,6 +41029,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41012,6 +41078,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41120,11 +41187,11 @@ msgstr "Birim Başına Miktar"
msgid "Qty To Manufacture"
msgstr "Üretilecek Miktar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Üretim Miktarı ({0}), {2} için kesirli olamaz. Bunu sağlamak için, {2} içindeki '{1}' seçeneğini devre dışı bırakın."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41175,8 +41242,8 @@ msgstr "Stok Ölçü Birimine Göre Miktar"
msgid "Qty for which recursion isn't applicable."
msgstr "Yinelemenin uygulanamadığı miktar."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "{0} Miktarı"
@@ -41231,8 +41298,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Getirilecek Miktar"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Üretilecek Miktar"
@@ -41468,17 +41535,17 @@ msgstr "Kalite Kontrol Şablonu"
msgid "Quality Inspection Template Name"
msgstr "Kalite Kontrol Şablonu Adı"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41492,7 +41559,7 @@ msgstr "Kalite Kontrolleri"
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Kalite Yönetimi"
@@ -41624,7 +41691,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41759,7 +41826,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Miktar {0} değerinden fazla olmamalıdır"
@@ -41769,21 +41836,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Satır {1} deki Ürün {0} için gereken miktar"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Miktar 0'dan büyük olmalıdır"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Üretilecek Miktar"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "{0} işlemi için Üretim Miktarı sıfır olamaz"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Üretim Miktar 0'dan büyük olmalıdır."
@@ -41806,7 +41873,7 @@ msgstr "Quart Kuru (ABD)"
msgid "Quart Liquid (US)"
msgstr "Quart Sıvı (ABD)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "{0}. Çeyrek {1}"
@@ -41925,11 +41992,11 @@ msgstr "Teklif Edilen"
msgid "Quotation Trends"
msgstr "Teklif Analizi"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Teklif {0} iptal edildi"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Teklif {0} {1} türü değil"
@@ -42236,7 +42303,7 @@ msgstr "Tedarikçinin para biriminin şirketin temel para birimine dönüştürm
msgid "Rate at which this tax is applied"
msgstr "Bu verginin uygulandığı oran"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42402,7 +42469,7 @@ msgstr "Tüketilen Hammaddeler"
msgid "Raw Materials Consumption"
msgstr "Hammadde Tüketimi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42441,12 +42508,6 @@ msgstr "Hammadde alanı boş bırakılamaz."
msgid "Raw Materials to Customer"
msgstr ""
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr ""
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42455,7 +42516,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42636,7 +42697,7 @@ msgid "Receivable / Payable Account"
msgstr "Alacak / Borç Hesabı"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43097,7 +43158,7 @@ msgstr "Referans #"
msgid "Reference #{0} dated {1}"
msgstr "Referans #{0} tarih {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Erken Ödeme İndirimi için Referans Tarihi"
@@ -43261,11 +43322,11 @@ msgstr "Referans: {0}, Ürün Kodu: {1} ve Müşteri: {2}"
msgid "References"
msgstr "Referanslar"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Satış Faturalarına İlişkin Referanslar Eksik"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Satış Siparişlerine Yapılan Referanslar Eksik"
@@ -43427,7 +43488,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Kalan Bakiye"
@@ -43485,7 +43546,7 @@ msgstr "Açıklama"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43549,7 +43610,7 @@ msgstr "Öğe Özniteliğinde Öznitelik Değerini Yeniden Adlandırın."
msgid "Rename Log"
msgstr "Girişi yeniden tanımlama"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Yeniden Adlandırmaya İzin Verilmiyor"
@@ -43566,7 +43627,7 @@ msgstr ""
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Uyuşmazlığı önlemek için yeniden adlandırılmasına yalnızca ana şirket {0} yoluyla izin verilir."
@@ -43689,7 +43750,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "Rapor Türü zorunludur"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Sorun Bildir"
@@ -43934,7 +43995,7 @@ msgstr "Bilgi Talebi"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44115,7 +44176,7 @@ msgstr "Yerine Getirilmesi Gerekenler"
msgid "Research"
msgstr "Araştırma"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Araştırma & Geliştirme"
@@ -44160,7 +44221,7 @@ msgstr ""
msgid "Reservation Based On"
msgstr "Rezervasyona Göre"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44204,7 +44265,7 @@ msgstr ""
msgid "Reserved"
msgstr "Ayrılmış"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44274,14 +44335,14 @@ msgstr "Ayrılan Miktar"
msgid "Reserved Quantity for Production"
msgstr "Üretim İçin Ayrılan Miktar"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Ayrılmış Seri No."
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44290,13 +44351,13 @@ msgstr "Ayrılmış Seri No."
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Ayrılmış Stok"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Parti için Ayrılmış Stok"
@@ -44562,7 +44623,7 @@ msgstr "Sonuç Başlık Alanı"
msgid "Resume"
msgstr "Özgeçmiş"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "İşi Devam Ettir"
@@ -44587,8 +44648,8 @@ msgstr "Perakendeci"
msgid "Retain Sample"
msgstr "Numuneyi Sakla"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Birikmiş Kazançlar"
@@ -44663,7 +44724,7 @@ msgstr "İrsaliye Karşılığında İade"
msgid "Return Against Subcontracting Receipt"
msgstr "Alt Yüklenici İade İrsaliyesi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Bileşenleri İade Et"
@@ -44699,7 +44760,7 @@ msgstr "Reddedilen Depodan İade Miktarı"
msgid "Return Raw Material to Customer"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr ""
@@ -44797,8 +44858,8 @@ msgstr "İadeler"
msgid "Revaluation Journals"
msgstr "Yeniden Değerleme Kayıtları"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Yeniden Değerleme Fazlası"
@@ -45030,7 +45091,7 @@ msgstr "{0} için Kök Tipi Varlık, Borç, Gelir, Gider ve Özkaynaklardan biri
msgid "Root Type is mandatory"
msgstr "Kök Türü zorunludur"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Kök düzenlenemez."
@@ -45049,8 +45110,8 @@ msgstr "Bedelsiz Miktarı Yuvarla"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45230,21 +45291,21 @@ msgstr "Satır # {0}: {1} {2} alanında kullanılan orandan daha yüksek bir ora
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Satır # {0}: İade Edilen Ürün {1} {2} {3} içinde mevcut değil"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr ""
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Satır #{0} (Ödeme Tablosu): Tutar negatif olmalıdır"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Satır #{0} (Ödeme Tablosu): Tutar pozitif olmalıdır"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Satır #{0}: {1} deposu için {2} yeniden sipariş türüyle zaten yeniden bir sipariş girişi mevcut."
@@ -45265,7 +45326,7 @@ msgstr "Satır #{0}: Kabul Deposu ve Red Deposu aynı olamaz"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Satır #{0}: Kabul Deposu, kabul edilen {1} Ürünü için zorunludur"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Sıra # {0}: Hesap {1}, şirkete {2} ait değil"
@@ -45326,31 +45387,31 @@ msgstr ""
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Satır #{0}: Zaten faturalandırılmış olan {1} kalemi silinemiyor."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Satır #{0}: Zaten teslim edilmiş olan {1} kalem silinemiyor"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Satır #{0}: Daha önce alınmış olan {1} kalem silinemiyor"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Satır # {0}: İş emri atanmış {1} kalem silinemez."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Satır #{0}: İş Kartı {3} için {2} Ürünü için Gerekli Olan {1} Miktardan fazlasını aktaramazsınız."
@@ -45400,11 +45461,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:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr ""
@@ -45412,7 +45473,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:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr ""
@@ -45429,7 +45490,7 @@ msgstr ""
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Satır #{0}: Bitmiş Ürün için varsayılan {1} Ürün Ağacı bulunamadı"
@@ -45453,22 +45514,22 @@ msgstr "Satır #{0}: Gider Hesabı {1} Öğesi için ayarlanmadı. {2}"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Satır #{0}: Bitmiş Ürün Miktarı sıfır olamaz."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Satır #{0}: Hizmet ürünü {1} için Bitmiş Ürün belirtilmemiş."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Satır #{0}: Bitmiş Ürün {1} bir alt yüklenici ürünü olmalıdır"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Satır #{0}: Bitmiş Ürün {1} olmalıdır"
@@ -45497,7 +45558,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Satır #{0}: Başlangıç Tarihi Bitiş Tarihinden önce olamaz"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr ""
@@ -45505,7 +45566,7 @@ msgstr ""
msgid "Row #{0}: Item added"
msgstr "Satır # {0}: Ürün eklendi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45533,7 +45594,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Satır #{0}: Ürün {1}, Serili/Partili bir ürün değil. Seri No/Parti No’su atanamaz."
@@ -45574,7 +45635,7 @@ msgstr ""
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Satır #{0}: Satın Alma Emri zaten mevcut olduğundan Tedarikçiyi değiştirmenize izin verilmiyor"
@@ -45586,10 +45647,6 @@ msgstr "Satır #{0}: Yalnızca {1} Öğesi {2} için rezerve edilebilir"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Satır #{0}: {1} Operasyonu {3} İş Emrindeki {2} adet için tamamlanamadı. Lütfen önce {4} İş Kartındaki operasyon durumunu güncelleyin."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45611,11 +45668,11 @@ msgstr ""
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Satır #{0}: Lütfen Alt Montaj Deposunu seçin"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Satır #{0}: Lütfen yeniden sipariş miktarını ayarlayın"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Satır #{0}: Lütfen kalem satırındaki ertelenmiş gelir/gider hesabını veya şirket ana sayfasındaki varsayılan hesabı güncelleyin"
@@ -45637,15 +45694,15 @@ msgstr "Satır #{0}: Miktar pozitif bir sayı olmalıdır"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Satır #{0}: Miktar, {4} deposunda {3} Partisi için {2} ürününe karşı Rezerve Edilebilir Miktar'dan (Gerçek Miktar - Rezerve Edilen Miktar) {1} küçük veya eşit olmalıdır."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Satır #{0}: {1} ürünü için Kalite Kontrol gereklidir"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Satır #{0}: {1} Kalite Kontrol {2} Ürünü için gönderilmemiş"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Satır #{0}: {1} Kalite Kontrolü {2} Ürünü için reddedildi"
@@ -45653,7 +45710,7 @@ msgstr "Satır #{0}: {1} Kalite Kontrolü {2} Ürünü için reddedildi"
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:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Satır #{0}: {1} kalemi için miktar sıfır olamaz."
@@ -45669,18 +45726,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Satır #{0}: {1} Kalemi için rezerve edilecek miktar 0'dan büyük olmalıdır."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Satır #{0}: {1} işlemindeki fiyat ile aynı olmalıdır: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Satır #{0}: Referans Belge Türü Satın Alma Emri, Satın Alma Faturası veya Defter Girişi'nden biri olmalıdır"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Satır #{0}: Referans Belge Türü, Satış Siparişi, Satış Faturası, Yevmiye Kaydı veya Takip Uyarısı’ndan biri olmalıdır"
@@ -45719,7 +45776,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr ""
@@ -45739,19 +45796,19 @@ msgstr "Satır #{0}: Seri No {1} zaten seçilidir."
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:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Satır #{0}: Hizmet Bitiş Tarihi Fatura Kayıt Tarihinden önce olamaz"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Satır #{0}: Hizmet Başlangıç Tarihi, Hizmet Bitiş Tarihinden büyük olamaz"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Satır #{0}: Ertelenmiş muhasebe için Hizmet Başlangıç ve Bitiş Tarihi gereklidir"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Satır #{0}: {1} kalemi için Tedarikçiyi Ayarla"
@@ -45763,19 +45820,19 @@ 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:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45791,6 +45848,10 @@ msgstr "Satır #{0}: Durum zorunludur"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Satır # {0}: Fatura İndirimi {2} için durum {1} olmalı"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Satır #{0}: Stok, devre dışı bırakılmış bir Parti {2} karşılığında {1} Kalemi için ayrılamaz."
@@ -45807,7 +45868,7 @@ msgstr "Satır #{0}: {1} deposu bir Grup Deposu olduğundan, stok rezerve edilem
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Satır #{0}: Stok zaten {1} kalemi için ayrılmıştır."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Satır #{0}: Stok, {2} Deposunda bulunan {1} Ürünü için ayrılmıştır."
@@ -45820,7 +45881,7 @@ msgstr "Satır #{0}: {3} Deposunda, {2} Partisi için {1} ürününe ayrılacak
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Satır #{0}: {2} Deposundaki {1} Ürünü için rezerve edilecek stok mevcut değil."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr ""
@@ -45832,7 +45893,7 @@ msgstr ""
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Satır #{0}: {1} grubu zaten sona erdi."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Satır #{0}: {1} deposu, {2} grup deposunun alt deposu değildir."
@@ -45868,7 +45929,7 @@ msgstr "Satır #{0}: Envanter boyutu ‘{1}’ Stok Sayımı miktarı veya değe
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Satır #{0}: {1} Öğesi için bir Varlık seçmelisiniz."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Satır #{0}: {1} kalemi {2} için negatif olamaz"
@@ -45884,7 +45945,7 @@ msgstr "Açılış {2} Faturalarını oluşturmak için #{0}: {1} satırı gerek
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Satır #{0}: {1}/{2} değeri {3} olmalıdır. Lütfen {1} alanını güncelleyin veya farklı bir hesap seçin."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45985,7 +46046,7 @@ msgstr "Satır #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Satır #{}: {} {} mevcut değil."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Satır #{}: {} {}, {} Şirketine ait değil. Lütfen geçerli {} seçin."
@@ -45993,7 +46054,7 @@ msgstr "Satır #{}: {} {}, {} Şirketine ait değil. Lütfen geçerli {} seçin.
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Satır No {0}: Depo gereklidir. Lütfen {1} ürünü ve {2} Şirketi için Varsayılan Depoyu ayarlayın."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Satır {0} : Hammadde öğesine karşı işlem gerekiyor {1}"
@@ -46001,7 +46062,7 @@ msgstr "Satır {0} : Hammadde öğesine karşı işlem gerekiyor {1}"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Satır {0}: Seçilen miktar gereken miktardan daha az, ek olarak {1} {2} gerekli."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Satır {0}#: Ürün {1}, {2} {3} içindeki ‘Tedarik Edilen Ham Maddeler’ tablosunda bulunamadı."
@@ -46033,11 +46094,11 @@ msgstr "Satır {0}: Tahsis edilen tutar {1}, fatura kalan tutarı {2}’den az v
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Satır {0}: Tahsis edilen tutar {1}, kalan ödeme tutarı {2} değerinden az veya ona eşit olmalıdır."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Satır {0}: {1} etkin olduğu için, ham maddeler {2} girişine eklenemez. Ham maddeleri tüketmek için {3} girişini kullanın."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Satır {0}: {1} Ürünü için Ürün Ağacı bulunamadı"
@@ -46054,7 +46115,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Satır {0}: Dönüşüm Faktörü zorunludur"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Satır {0}: Maliyet Merkezi {1} {2} şirketine ait değil"
@@ -46074,7 +46135,7 @@ msgstr "Satır {0}: Ürün Ağacı #{1} para birimi, seçilen para birimi {2} il
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Satır {0}: Borç girişi {1} ile ilişkilendirilemez"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Satır {0}: Teslimat Deposu ({1}) ve Müşteri Deposu ({2}) aynı olamaz"
@@ -46082,7 +46143,7 @@ msgstr "Satır {0}: Teslimat Deposu ({1}) ve Müşteri Deposu ({2}) aynı olamaz
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Satır {0}: Ödeme Koşulları tablosundaki Son Tarih, Gönderim Tarihinden önce olamaz"
@@ -46127,16 +46188,16 @@ msgstr "Satır {0}: Tedarikçi {1} için, e-posta göndermek için E-posta Adres
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Satır {0}: Başlangıç Saati ve Bitiş Saati zorunludur."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Satır {0}: {1} için Başlangıç ve Bitiş Saatleri {2} ile çakışıyor"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Satır {0}: İç transferler için Gönderen Depo zorunludur."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Satır {0}: Başlangıç zamanı bitiş zamanından küçük olmalıdır"
@@ -46152,7 +46213,7 @@ msgstr "Satır {0}: Geçersiz referans {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Satır {0}: Ürün Vergi şablonu geçerliliğe ve uygulanan orana göre güncellendi"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Satır {0}: Ürün oranı, dahili bir stok transferi olduğu için değerleme oranına göre güncellenmiştir"
@@ -46176,7 +46237,7 @@ msgstr "Satır {0}: Öğe {1} miktarı mevcut miktardan daha fazla olamaz."
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Satır {0}: Paketlenen Miktar {1} Miktarına eşit olmalıdır."
@@ -46244,7 +46305,7 @@ msgstr "Satır {0}: {1} Alış Faturasının stok etkisi yoktur."
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Satır {0}: Miktar, {2} Kalemi için {1} değerinden büyük olamaz."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Satır {0}: Stoktaki Miktar Ölçü Birimi sıfır olamaz."
@@ -46256,10 +46317,6 @@ msgstr "Satır {0}: Miktar Sıfırdan büyük olmalıdır."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Satır {0}: Miktar negatif olamaz."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Satır {0}: Girişin kayıt zamanında ({2} {3}) depo {1} için {4} miktarı mevcut değil"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46268,11 +46325,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Satır {0}: Amortisman zaten işlenmiş olduğundan vardiya değiştirilemez"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Satır {0}: Hammadde {1} için alt yüklenici kalemi zorunludur"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Satır {0}: İç transferler için Hedef Depo zorunludur."
@@ -46284,11 +46341,11 @@ msgstr "Satır {0}: Görev {1}, {2} Projesine ait değil"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Satır {0}: Ürün {1} için miktar pozitif sayı olmalıdır"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Satır {0}: {3} Hesabı {1} {2} şirketine ait değildir"
@@ -46296,11 +46353,11 @@ msgstr "Satır {0}: {3} Hesabı {1} {2} şirketine ait değildir"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Satır {0}: {1} periyodunu ayarlamak için başlangıç ve bitiş tarihleri arasındaki fark {2} değerinden büyük veya eşit olmalıdır."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Satır {0}: Ölçü Birimi Dönüşüm Faktörü zorunludur"
@@ -46313,11 +46370,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Satır {0}: Bir Operasyon için İş İstasyonu veya İş İstasyonu Türü zorunludur {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Satır {0}: kullanıcı {2} öğesinde {1} kuralını uygulamadı"
@@ -46329,7 +46386,7 @@ msgstr "Satır {0}: {1} hesabı zaten Muhasebe Boyutu {2} için başvurdu"
msgid "Row {0}: {1} must be greater than 0"
msgstr "Satır {0}: {1} 0'dan büyük olmalıdır"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Satır {0}: {1} {2} , {3} (Cari Hesabı) {4} ile aynı olamaz"
@@ -46375,7 +46432,7 @@ msgstr "{0} İçinde Silinen Satırlar"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Aynı Hesap Başlığına sahip satırlar, Muhasebe Defterinde birleştirilecektir."
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Diğer satırlardaki yinelenen teslim dosyalarına sahip satırlar bulundu: {0}"
@@ -46383,7 +46440,7 @@ msgstr "Diğer satırlardaki yinelenen teslim dosyalarına sahip satırlar bulun
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Satırlar: {0} referans_türü olarak 'Ödeme Girişi'ne sahiptir. Bu manuel olarak ayarlanmamalıdır."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Satırlar: {0} {1} bölümünde Geçersiz. Referans Adı geçerli bir Ödeme Kaydına veya Yevmiye Kaydına işaret etmelidir."
@@ -46590,8 +46647,8 @@ msgstr "Güvenli Stok"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46613,8 +46670,8 @@ msgstr "Maaş Ödemesi"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46628,18 +46685,23 @@ msgstr "Maaş Ödemesi"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Satış"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Satış Hesabı"
@@ -46663,8 +46725,8 @@ msgstr "Satış Katkıları ve Teşvikler"
msgid "Sales Defaults"
msgstr "Satış Ayarları"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Satış Giderleri"
@@ -46833,11 +46895,11 @@ msgstr "Satış Faturası {} kullanıcısı tarafından oluşturulmadı"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Satış Faturası {0} zaten kaydedildi"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Bu Satış Siparişini iptal etmeden önce Satış Faturası {0} iptal edilmeli veya silinmelidir"
@@ -47035,25 +47097,25 @@ msgstr "Satış Trendleri"
msgid "Sales Order required for Item {0}"
msgstr "Ürün için Satış Siparişi gerekli {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Satış Siparişi {0} Müşterinin Satın Alma Siparişi {1} ile zaten mevcut. Birden fazla Satış Siparişine izin vermek için {2} adresini {3} adresinde etkinleştirin"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Satış Siparişi {0} kaydedilmedi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Satış Sipariş {0} geçerli değildir"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Satış Sipariş {0} {1}"
@@ -47097,6 +47159,7 @@ msgstr "Teslim Edilecek Satış Siparişleri"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47109,7 +47172,7 @@ msgstr "Teslim Edilecek Satış Siparişleri"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47215,7 +47278,7 @@ msgstr "Satış Ödeme Özeti"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47308,7 +47371,7 @@ msgstr "Satış Kaydı"
msgid "Sales Representative"
msgstr "Satış Temsilcisi"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Satış İadesi"
@@ -47332,7 +47395,7 @@ msgstr "Satış Özeti"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Satış Vergisi Şablonu"
@@ -47451,7 +47514,7 @@ msgstr "Aynı Ürün"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Aynı Ürün ve Depo kombinasyonu zaten girilmiş."
@@ -47483,12 +47546,12 @@ msgstr "Numune Saklama Deposu"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Numune Boyutu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Numune miktarı {0} alınan miktardan fazla olamaz {1}"
@@ -47732,7 +47795,7 @@ msgstr "Varlığı Hurdaya Ayır"
msgid "Scrap Warehouse"
msgstr "Hurda Deposu"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Hurdaya çıkarma tarihi satın alma tarihinden önce olamaz"
@@ -47851,8 +47914,8 @@ msgstr "İkincil Rol"
msgid "Secretary"
msgstr "Sekreter"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Teminatlı Krediler"
@@ -47890,7 +47953,7 @@ msgstr "Alternatif Ürün Seçin"
msgid "Select Alternative Items for Sales Order"
msgstr "Satış Siparişi için Alternatif Ürünleri Seçin"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Özellik Değerlerini Seç"
@@ -47932,7 +47995,7 @@ msgstr "Şirket Seç"
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Düzeltici Faaliyet Seçimi"
@@ -47968,7 +48031,7 @@ msgstr "Boyut Seçin"
msgid "Select Dispatch Address "
msgstr "Sevkiyat Adresini Seçin "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Personel Seçin"
@@ -47993,7 +48056,7 @@ msgstr "Ürünleri Seçin"
msgid "Select Items based on Delivery Date"
msgstr "Ürünleri Teslimat Tarihine Göre Seçin"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Kalite Kontrolü için Ürün Seçimi"
@@ -48031,7 +48094,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "Tedarikçi Adayı"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Miktarı Girin"
@@ -48106,7 +48169,7 @@ msgstr "Bir Varsayılan Öncelik seçin."
msgid "Select a Payment Method."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Bir Tedarikçi Seçin"
@@ -48129,7 +48192,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Bir Ürün Grubu seçin."
@@ -48145,9 +48208,9 @@ msgstr "Özet verileri yüklemek için bir fatura seçin"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Satış Siparişinde kullanılmak üzere her setten bir ürün seçin."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Tüm özelliklerden en az bir değer seçin."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48163,7 +48226,7 @@ msgstr "Önce şirket adını seçin."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "{1} satırındaki {0} kalemi için finans defterini seçin"
@@ -48195,7 +48258,7 @@ msgstr "Mutabakat yapılacak Banka Hesabını seçin."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "İşlemin gerçekleştirileceği Varsayılan İş İstasyonunu seçin. Ürün Ağaçları ve İş Emirlerinde geçerli olacaktır."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Üretilecek Ürünleri Seçin."
@@ -48212,7 +48275,7 @@ msgstr "Depoyu Seçin"
msgid "Select the customer or supplier."
msgstr "Müşteri veya tedarikçiyi seçin."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Tarihi seçin"
@@ -48220,6 +48283,12 @@ msgstr "Tarihi seçin"
msgid "Select the date and your timezone"
msgstr "Tarihi ve saat diliminizi seçin"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Ürünü üretmek için gerekli ham maddeleri seçin"
@@ -48248,7 +48317,7 @@ msgstr "Müşteriyi bu alanlar ile aranabilir hale getirmek için seçin."
msgid "Selected POS Opening Entry should be open."
msgstr "Seçilen POS Açılış Girişi açık olmalıdır."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Seçilen Fiyat Listesi alım satım merkezlerine sahip olmalıdır."
@@ -48279,30 +48348,30 @@ msgstr "Seçilen belgenin gönderilmiş durumda olması gerekir"
msgid "Self delivery"
msgstr "Kendi kendine teslimat"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Satış"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Varlığı Sat"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48555,7 +48624,7 @@ msgstr "Seri ve Parti Numaraları"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48575,7 +48644,7 @@ msgstr "Seri ve Parti Numaraları"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48620,7 +48689,7 @@ msgstr "Seri No Aralığı"
msgid "Serial No Reserved"
msgstr "Seri No Ayrılmış"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48760,7 +48829,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Seri Numaraları başarıyla oluşturuldu"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Seri Numaraları Stok Rezervasyon Girişlerinde rezerve edilmiştir, devam etmeden önce rezervasyonlarını kaldırmanız gerekmektedir."
@@ -48830,7 +48899,7 @@ msgstr "Seri No ve Parti"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49244,7 +49313,7 @@ msgstr "Peşinatları Ayarla ve Tahsis Et (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Birim Fiyatı Elle Ayarla"
@@ -49263,8 +49332,8 @@ msgstr ""
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Bitmiş Ürün Miktarını Ayarlayın"
@@ -49431,11 +49500,11 @@ msgstr "Ürün Vergi Şablonu Tarafından Ayarlandı"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Sürekli envanter için varsayılan envanter hesabını ayarlayın"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Stokta olmayan ürünler için varsayılan {0} hesabını ayarlayın"
@@ -49467,7 +49536,7 @@ msgstr "Ürün Ağacına Göre Alt Öğeleri Ayarla"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Bu Satış Personeli için Ürün Grubu bazında hedefler belirleyin."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Planlanan Başlangıç Tarihini belirleyin"
@@ -49578,7 +49647,7 @@ msgid "Setting up company"
msgstr "Şirket kuruluyor"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr ""
@@ -49598,6 +49667,10 @@ msgstr "Satış Modülü için Ayarlar"
msgid "Settled"
msgstr "Uzlaşıldı"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49790,7 +49863,7 @@ msgstr "Sevkiyat Türü"
msgid "Shipment details"
msgstr "Sevkiyat detayları"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Sevkiyatlar"
@@ -49828,7 +49901,7 @@ msgstr "Sevkiyat Adresi Adı"
msgid "Shipping Address Template"
msgstr "Sevkiyat Adresi Şablonu"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr ""
@@ -49971,8 +50044,8 @@ msgstr "Web sitesi ve diğer yayınlar için kısa biyografi."
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50306,7 +50379,7 @@ msgstr "Eşzamanlı"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Bitmiş ürün {1} için {0} birimlik bir proses kaybı olduğundan, Ürünler Tablosunda bitmiş ürün {1} miktarını {0} birim azaltmalısınız."
@@ -50351,7 +50424,7 @@ msgstr "Teslim Notunu Atlası"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50393,8 +50466,8 @@ msgstr "Düzeltme Sabiti"
msgid "Soap & Detergent"
msgstr "Sabun & Deterjan"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Yazılım"
@@ -50418,7 +50491,7 @@ msgstr "Tarafından satılan"
msgid "Solvency Ratios"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr ""
@@ -50482,7 +50555,7 @@ msgstr "Kaynak Alanı Adı"
msgid "Source Location"
msgstr "Kaynak Lokasyon"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50491,11 +50564,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50553,7 +50626,12 @@ msgstr "Kaynak Depo Adres Bağlantısı"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "{0} satırı için Kaynak Depo zorunludur."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr ""
@@ -50561,24 +50639,23 @@ msgstr ""
msgid "Source and Target Location cannot be same"
msgstr "Kaynak ve Hedef Konum aynı olamaz"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "{0} nolu satırda Kaynak ve Hedef Depo aynı olamaz"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Kaynak ve Hedef Depo farklı olmalıdır"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Fon Kaynakları (Borçlar)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "{0} satırı için Kaynak Depo zorunludur"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50619,7 +50696,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50627,7 +50704,7 @@ msgid "Split"
msgstr "Ayır"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Varlığı Böl"
@@ -50651,7 +50728,7 @@ msgstr "Bölünmüş"
msgid "Split Issue"
msgstr "Sorunu Böl"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Bölünmüş Miktar"
@@ -50663,6 +50740,11 @@ msgstr "Bölünmüş Miktar, Varlık Miktarından az olmalıdır"
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Ödeme Koşullarına göre {0} {1} satırlarını {2} satırlarına bölme"
@@ -50735,13 +50817,13 @@ msgstr "Varsayılan Alış"
msgid "Standard Description"
msgstr "Standart Açıklama"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Standart Oranlı Giderler"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Standart Satış"
@@ -50762,8 +50844,8 @@ msgstr "Standart Şablon"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Satış ve Satın Almalara eklenebilecek Standart Şartlar ve Koşullar. Örnekler: Teklifin geçerliliği, Ödeme Koşulları, Müşteri İstekleri ve Kullanım vb."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "{0}'da standart dereceli tedarikler"
@@ -50798,7 +50880,7 @@ msgstr "Başlangıç Tarihi, geçerli karşılaştırma önce olamaz"
msgid "Start Date should be lower than End Date"
msgstr "Başlangıç Tarihi Bitiş Tarihinden düşük olmalıdır"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "İşi Başlat"
@@ -50927,7 +51009,7 @@ msgstr "Durum Görseli"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Durum İptal Edilmeli veya Tamamlanmalı"
@@ -50957,6 +51039,7 @@ msgstr "Tedarikçi hakkında genel, yasal ve diğer bilgiler."
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50965,8 +51048,8 @@ msgstr "Stok"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51066,6 +51149,16 @@ msgstr "Stok Kapanış Girişi {0} işlenmek üzere sıraya alınmıştır, sist
msgid "Stock Closing Log"
msgstr "Stok Kapanış Günlüğü"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51075,10 +51168,6 @@ msgstr "Stok Kapanış Günlüğü"
msgid "Stock Details"
msgstr "Stok Detayları"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Stok Girişleri İş Emri için zaten oluşturuldu {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51142,7 +51231,7 @@ msgstr "Stok Girişi bu Seçim Listesine karşı zaten oluşturuldu"
msgid "Stock Entry {0} created"
msgstr "Stok Girişi {0} oluşturuldu"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Stok Girişi {0} oluşturuldu"
@@ -51150,8 +51239,8 @@ msgstr "Stok Girişi {0} oluşturuldu"
msgid "Stock Entry {0} is not submitted"
msgstr "Stok Girişi {0} kaydedilmedi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Stok Giderleri"
@@ -51229,8 +51318,8 @@ msgstr "Stok Seviyeleri"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Stok Yükümlülükleri"
@@ -51333,8 +51422,8 @@ msgstr "Stok Miktarı ve Seri No Sayısı"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51346,7 +51435,7 @@ msgstr "Faturalanmamış Alınan Stok"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51358,7 +51447,7 @@ msgstr "Stok Sayımı"
msgid "Stock Reconciliation Item"
msgstr "Stok Sayımı Kalemi"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Stok Sayımı"
@@ -51383,9 +51472,9 @@ msgstr "Stok Yeniden Gönderim Ayarları"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51396,7 +51485,7 @@ msgstr "Stok Yeniden Gönderim Ayarları"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51421,10 +51510,10 @@ msgstr "Stok Rezervasyonu"
msgid "Stock Reservation Entries Cancelled"
msgstr "Stok Rezervasyon Girişleri İptal Edildi"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Stok Rezervasyon Girişleri Oluşturuldu"
@@ -51452,7 +51541,7 @@ msgstr "Stok Rezervasyon Girişi teslim edildiği için güncellenemiyor."
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 "Bir Seçim Listesi için oluşturulan Stok Rezervi Girişi güncellenemez. Değişiklik yapmanız gerekiyorsa, mevcut girişi iptal etmenizi ve yeni bir giriş oluşturmanızı öneririz.\n"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Rezerv Stok Depo Uyuşmazlığı"
@@ -51492,7 +51581,7 @@ msgstr "Stok Rezerv Miktarı (Stok Ölçü Birimi)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51607,7 +51696,7 @@ msgstr "Stok İşlemleri Ayarları"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51740,11 +51829,11 @@ msgstr "{0} Grup Deposunda Stok Rezerve edilemez."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "{0} Grup Deposunda Stok Rezerve edilemez."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Aşağıdaki İrsaliyelere göre stok güncellenemez: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Stok güncellenemiyor çünkü faturada drop shipping ürünü var. Lütfen 'Stok Güncelle'yi devre dışı bırakın veya drop shipping ürününü kaldırın."
@@ -51799,14 +51888,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Duruş Nedeni"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Durdurulan İş Emri iptal edilemez, iptal etmek için önce durdurmayı kaldırın"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Mağazalar"
@@ -51864,7 +51953,7 @@ msgstr "Alt Montaj Deposu"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52126,7 +52215,7 @@ msgstr "Alt Yüklenici Sipariş Kalemi"
msgid "Subcontracting Order Supplied Item"
msgstr "Alt Yüklenici Siparişi Tedarik Edilen Ürün"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Alt Sözleşme Siparişi {0} oluşturuldu."
@@ -52215,7 +52304,7 @@ msgstr ""
msgid "Subdivision"
msgstr "Alt Bölüm"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Gönderim Eylemi Başarısız Oldu"
@@ -52236,7 +52325,7 @@ msgstr "Oluşturulan Faturaları Gönder"
msgid "Submit Journal Entries"
msgstr "Yevmiye Kayıtlarını Gönderin"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Daha fazla işlem için bu İş Emrini gönderin."
@@ -52390,7 +52479,7 @@ msgstr "Başarıyla Uzlaştırıldı"
msgid "Successfully Set Supplier"
msgstr "Tedarikçi Başarıyla Ayarlandı"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Stok Ölçü Birimi başarıyla değiştirildi, lütfen yeni Ölçü Birimi için dönüşüm faktörlerini yeniden tanımlayın."
@@ -52414,7 +52503,7 @@ msgstr "{0} kayıtları başarıyla içe aktarıldı."
msgid "Successfully linked to Customer"
msgstr "Müşteriye başarıyla bağlandı"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Tedarikçiye başarıyla bağlandı"
@@ -52574,7 +52663,7 @@ msgstr "Tedarik Edilen Miktar"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52672,6 +52761,7 @@ msgstr "Tedarikçi Detayları"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52681,7 +52771,7 @@ msgstr "Tedarikçi Detayları"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52696,6 +52786,7 @@ msgstr "Tedarikçi Detayları"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52780,7 +52871,7 @@ msgstr "Tedarikçi Defteri Özeti"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52815,8 +52906,6 @@ msgid "Supplier Number At Customer"
msgstr ""
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr ""
@@ -52868,7 +52957,7 @@ msgstr "Birincil İrtibat Kişisi"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52897,7 +52986,7 @@ msgstr "Tedarikçi Teklifi Karşılaştırması"
msgid "Supplier Quotation Item"
msgstr "Tedarikçi Teklif Ürünü"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Tedarikçi Teklifi {0} Oluşturuldu"
@@ -52986,7 +53075,7 @@ msgstr "Tedarikçi Türü"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Tedarikçi Deposu"
@@ -53003,17 +53092,12 @@ msgstr "Tedarikçi Müşteriye Teslim Eder"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr ""
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Ürün veya Hizmet Tedarikçisi."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Tedarikçi {0} {1} konumunda bulunamadı"
@@ -53026,8 +53110,8 @@ msgstr "Tedarikçiler"
msgid "Suppliers"
msgstr "Tedarikçiler"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Ters tahsilat hükmüne tabi tedarikler"
@@ -53118,7 +53202,7 @@ msgstr "Senkronizasyon Başladı"
msgid "Synchronize all accounts every hour"
msgstr "Tüm hesapları her saat başı senkronize et"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr ""
@@ -53148,7 +53232,7 @@ msgstr ""
msgid "System will fetch all the entries if limit value is zero."
msgstr "Eğer limit değeri sıfırsa, sistem tüm kayıtlarını alır."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "{1} içinde {0} ürünü için tutar sıfır olduğundan, sistem fazla faturalandırmayı kontrol etmeyecek."
@@ -53169,10 +53253,16 @@ msgstr "Stopaj Vergisi Hesaplama Özeti"
msgid "TDS Deducted"
msgstr "Kesilen Stopaj Vergisi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "Ödenecek Stopaj Vergisi"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53320,7 +53410,7 @@ msgstr "Hedef Depo Adresi"
msgid "Target Warehouse Address Link"
msgstr "Hedef Depo Adres Bağlantısı"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Hedef Depo Stok Rezerve Edilemedi"
@@ -53328,24 +53418,23 @@ msgstr "Hedef Depo Stok Rezerve Edilemedi"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Kaydetmeden önce Devam Eden İşler Deposu gereklidir"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Bazı ürünler için Hedef Depo ayarlanmış ancak Müşteri İç Müşteri değil."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "{0} satırı için Hedef Depo zorunlu"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53462,8 +53551,8 @@ msgstr "İndirim Sonrası Vergi Tutarı (Şirket Para Birimi)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Vergi Tutarı satır (öğeler) düzeyinde yuvarlanacaktır"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Vergi Varlıkları"
@@ -53495,7 +53584,6 @@ msgstr "Vergi Varlıkları"
msgid "Tax Breakup"
msgstr "Vergi Dağılımı"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53517,7 +53605,6 @@ msgstr "Vergi Dağılımı"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53533,6 +53620,7 @@ msgstr "Vergi Dağılımı"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53544,8 +53632,8 @@ msgstr "Vergi Kategorisi"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Vergi Kategorisi \"Toplam\" olarak değiştirildi çünkü tüm Ürünler stok dışı kalemlerdir"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53619,7 +53707,7 @@ msgstr "Vergi Oranı %"
msgid "Tax Rates"
msgstr "Vergi Oranları"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Turistler için Vergi İadesi Programı kapsamında Turistlere sağlanan Vergi İadeleri"
@@ -53637,7 +53725,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "Vergi Kuralı"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Vergi Kuralı {0} ile Çakışıyor"
@@ -53652,7 +53740,7 @@ msgstr "Vergi Ayarları"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Vergi şablonu zorunludur."
@@ -53972,7 +54060,7 @@ msgstr "Çıkarılan Vergiler"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Düşülen Vergi ve Harçlar (Şirket Para Biriminde)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Vergi Satırı #{0}: {1} değeri {2} değerinden küçük olamaz"
@@ -54005,8 +54093,8 @@ msgstr "Teknoloji"
msgid "Telecommunications"
msgstr "Telekomünikasyon"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Telefon Giderleri"
@@ -54057,13 +54145,13 @@ msgstr "Geçici Olarak Beklemede"
msgid "Temporary"
msgstr "Geçici"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Geçici Hesaplar"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Geçici Açılış"
@@ -54245,7 +54333,7 @@ msgstr "Şartlar ve Koşullar"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54344,7 +54432,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "'Paket No'dan' alanı boş olmamalı veya değeri 1'den küçük olmamalıdır."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Portaldan Teklif İsteğine Erişim Devre Dışı Bırakıldı. Erişime İzin Vermek için Portal Ayarlarında etkinleştirin."
@@ -54397,7 +54485,8 @@ msgstr "{0} satırındaki Ödeme Süresi muhtemelen bir tekrardır."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Stok Rezervasyon Girişleri olan Seçim Listesi güncellenemez. Değişiklik yapmanız gerekiyorsa, Seçim Listesini güncellemeden önce mevcut Stok Rezervasyon Girişlerini iptal etmenizi öneririz."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Proses Kaybı Miktarı, iş kartlarındaki Proses Kaybı Miktarına göre sıfırlandı."
@@ -54413,7 +54502,7 @@ msgstr "Satır #{0}: {1} Seri Numarası, {2} deposunda mevcut değil."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Seri No {0} , {1} {2} için ayrılmıştır ve başka bir işlem için kullanılamaz."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Seri ve Parti Paketi {0}, bu işlem için geçerli değil. Seri ve Parti Paketi {0} içinde ‘İşlem Türü’ ‘Giriş’ yerine ‘Çıkış’ olmalıdır."
@@ -54449,7 +54538,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54457,7 +54546,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54477,7 +54570,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "Bu kalem için varsayılan Ürün Ağacı sistem tarafından getirilecektir. Ürün Ağacını da değiştirebilirsiniz."
@@ -54510,7 +54603,7 @@ msgstr "Hissedardan alanı boş bırakılamaz"
msgid "The field To Shareholder cannot be blank"
msgstr "Hissedara alanı boş bırakılamaz"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "{1} satırındaki {0} alanı ayarlanmamış"
@@ -54551,11 +54644,11 @@ msgstr "Aşağıdaki varlıklar amortisman girişlerini otomatik olarak kaydedem
msgid "The following batches are expired, please restock them: {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Aşağıdaki silinmiş nitelikler Varyantlarda mevcuttur ancak Şablonda mevcut değildir. Varyantları silebilir veya nitelikleri şablonda tutabilirsiniz."
@@ -54576,7 +54669,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "Aşağıdaki {0} oluşturuldu: {1}"
@@ -54603,7 +54696,7 @@ msgstr ""
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:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Ürünler {0} ve {1}, aşağıdaki {2} içinde bulunmaktadır:"
@@ -54661,7 +54754,7 @@ msgstr "{0} işlemi alt işlem olamaz"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Orijinal fatura, iade faturasından önce veya iade faturasıyla birlikte birleştirilmelidir."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54673,6 +54766,12 @@ msgstr "{0} ana hesabı yüklenen şablonda mevcut değil"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "{0} planındaki ödeme ağ geçidi hesabı, bu ödeme talebindeki ödeme ağ geçidi hesabından farklıdır"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54714,7 +54813,7 @@ msgstr "Rezerv stok, öğeleri güncellediğinizde serbest bırakılacaktır. De
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Rezerv stok, öğeleri güncellediğinizde serbest bırakılacaktır. Devam etmek istediğinizden emin misiniz?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Kök hesap {0} bir grup olmalıdır"
@@ -54730,7 +54829,7 @@ msgstr "Seçilen değişim hesabı {} {} Şirketine ait değil."
msgid "The selected item cannot have Batch"
msgstr "Seçili öğe toplu iş olamaz"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54763,7 +54862,7 @@ msgstr "{0} ile paylaşımlar mevcut değil"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "{1} deposundaki {0} ürünü için stok, {2} tarihinde negatife düştü. Bu durumu düzeltmek için {4} tarihi ve {5} saatinden önce {3} işlemiyle pozitif bir stok girişi oluşturmalısınız. Aksi takdirde, sistem doğru değerleme oranını hesaplayamaz."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Stok aşağıdaki Ürünler ve Depolar için rezerve edilmiştir, Stok Sayımı {0} için rezerve edilmeyen hale getirin: {1}"
@@ -54785,11 +54884,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Görev arka plan işi olarak sıraya alındı. Arka planda işlemede herhangi bir sorun olması durumunda, sistem bu Stok Sayımı hata hakkında bir yorum ekleyecek ve Taslak aşamasına geri dönecektir."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Görev arka plan işi olarak kuyruğa alındı. Arka planda işlem yapılmasında herhangi bir sorun olması durumunda sistem bu Stok Sayımı hata hakkında yorum ekleyecek ve Gönderildi aşamasına geri dönecektir."
@@ -54837,15 +54936,15 @@ msgstr "{0} değeri {1} ve {2} Ürünleri arasında farklılık gösterir"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "{0} değeri zaten mevcut bir Öğeye {1} atandı."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Ürünler sevk edilmeden önce bitmiş ürünlerin saklandığı depo."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "Hammaddeleri depoladığınız depo. Gereken her bir ürün için ayrı bir kaynak depo belirlenebilir. Grup deposu da kaynak depo olarak seçilebilir. İş Emri gönderildiğinde, hammadde üretim kullanımı için bu depolarda rezerve edilecektir."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Üretim başladığında ürünlerinizin aktarılacağı depo. Grup Deposu aynı zamanda Devam Eden İşler Deposu olarak da seçilebilir."
@@ -54853,19 +54952,19 @@ msgstr "Üretim başladığında ürünlerinizin aktarılacağı depo. Grup Depo
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) ile {2} ({3}) eşit olmalıdır"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} başarıyla oluşturuldu"
@@ -54873,7 +54972,7 @@ msgstr "{0} {1} başarıyla oluşturuldu"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} , bitmiş ürün {2} adına değerleme maliyetini hesaplamak için kullanılır."
@@ -54889,7 +54988,7 @@ msgstr "Varlık üzerinde aktif bakım veya onarımlar var. Varlığı iptal etm
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Hisse senedi sayısı ve hesaplanan tutar arasında tutarsızlıklar var"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Bu hesaba karşı defter kayıtları vardır. Canlı sistemde {0} adresinin {1} olmayan bir adresle değiştirilmesi 'Hesaplar {2}' raporunda yanlış çıktıya neden olacaktır"
@@ -54918,7 +55017,7 @@ msgstr "Bu tarihte boş yer bulunmamaktadır"
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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Stok değerlemesini sürdürmek için iki seçenek vardır. FIFO (ilk giren ilk çıkar) ve Hareketli Ortalama. Bu konuyu ayrıntılı olarak anlamak için lütfen Öğe Değerleme, FIFO ve Hareketli Ortalama bölümünü ziyaret edin."
@@ -54958,7 +55057,7 @@ msgstr "{0} için grup bulunamadı: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Bu Stok Girişinde en az 1 Bitmiş Ürün bulunmalıdır"
@@ -55014,11 +55113,11 @@ msgstr "Bu Ürün {0} Kodlu Ürünün Bir Varyantıdır."
msgid "This Month's Summary"
msgstr "Bu Ayın Özeti"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr ""
@@ -55052,7 +55151,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Kuruluma bağlı tüm puan kartlarını kapsar"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Bu belge, {4} ürünü için {0} {1} sınırını aşmış. Aynı {2} için başka bir {3} mi oluşturuyorsunuz?"
@@ -55155,11 +55254,11 @@ msgstr "Bu durum muhasebe açısından tehlikeli kabul edilmektedir."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Bu işlem, Satın Alma Faturası oluşturulduktan sonra Satın Alma İrsaliyesi oluşturulduğunda muhasebe işlemlerini yönetmek için yapılır"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Bu varsayılan olarak aktiftir. Ürettiğiniz Ürünün alt montajları için malzemeler planlamak istiyorsanız bunu aktif bırakın. Alt montajları ayrı ayrı planlıyor ve üretiyorsanız, bu onay kutusunu devre dışı bırakabilirsiniz."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Bu, bitmiş ürünlerin üretiminde kullanılacak ham madde ürünleri içindir. Eğer ürün, Ürün Ağacında kullanılacak bir ek hizmet (örneğin, ‘boyama’) ise, bu seçeneği işaretli bırakmayın."
@@ -55228,7 +55327,7 @@ msgstr "Bu plan, Varlık {0}, Varlık Sermayeleştirme {1} işlemiyle tüketildi
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Bu plan, Varlık {0} için Varlık Onarımı {1} ile onarıldığı zaman oluşturuldu."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr ""
@@ -55236,15 +55335,15 @@ msgstr ""
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Bu çizelge, Varlık Kapitalizasyonu {1}'un iptali üzerine Varlık {0} geri yüklendiğinde oluşturulmuştur."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Bu program, Varlık {0} geri yüklendiğinde oluşturulmuştur."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Bu çizelge, Varlık {0} 'ın Satış Faturası {1} aracılığıyla iade edilmesiyle oluşturuldu."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Bu program, Varlık {0} hurdaya çıkarıldığında oluşturuldu."
@@ -55252,7 +55351,7 @@ msgstr "Bu program, Varlık {0} hurdaya çıkarıldığında oluşturuldu."
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr ""
@@ -55321,7 +55420,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Kullanıcının diğer personel kayıtlarına erişimini kısıtlayacaktır."
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "Bu {} hammadde transferi olarak değerlendirilecektir."
@@ -55432,7 +55531,7 @@ msgstr "Dakika"
msgid "Time in mins."
msgstr "Dakika"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "{0} {1} için zaman kaydı gerekli."
@@ -55541,7 +55640,7 @@ msgstr "Fatura Kesilecek"
msgid "To Currency"
msgstr "Para Birimine"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz"
@@ -55768,11 +55867,15 @@ msgstr "Operasyonları Yönetmek için 'Operasyonlar' kutusunu işaretleyin."
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Alt yüklenici ürünü için ham maddeleri eklemek, “Patlatılmış Ürünleri Dahil Et” seçeneği devre dışı bırakıldığında mümkündür."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Fazla faturalandırmaya izin vermek için Hesap Ayarları'nda veya Öğe'de \"Fazla Faturalandırma İzni \"ni güncelleyin."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Fazla alım/teslimat yapılmasına izin vermek için Stok Ayarlarında veya Üründe \"Fazla Alım/Teslimat Ödeneği\"ni güncelleyin."
@@ -55815,11 +55918,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "{0} nolu satırdaki verginin ürün fiyatına dahil edilebilmesi için, {1} satırındaki vergiler de dahil edilmelidir"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Birleştirmek için, aşağıdaki özellikler her iki öğe için de aynı olmalıdır"
@@ -55827,7 +55930,7 @@ msgstr "Birleştirmek için, aşağıdaki özellikler her iki öğe için de ayn
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Bunu geçersiz kılmak için {1} şirketinde '{0}' ayarını etkinleştirin"
@@ -55852,7 +55955,7 @@ msgstr "Satın alma irsaliyesi olmadan faturayı göndermek için {0} değerini
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Farklı bir finans defteri kullanmak için lütfen 'Varsayılan FD Varlıklarını Dahil Et' seçeneğinin işaretini kaldırın"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56002,7 +56105,7 @@ msgstr "Toplam Tahsisler"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56109,12 +56212,12 @@ msgstr "Toplam Komisyon"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Tamamlanan Miktar"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56416,7 +56519,7 @@ msgstr "Toplam Ödenmemiş Tutar"
msgid "Total Paid Amount"
msgstr "Toplam Ödenen Tutar"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Ödeme Planındaki Toplam Ödeme Tutarı Genel / Yuvarlanmış Toplam'a eşit olmalıdır"
@@ -56428,7 +56531,7 @@ msgstr "Toplam Ödeme Talebi tutarı {0} tutarından büyük olamaz"
msgid "Total Payments"
msgstr "Toplam Ödemeler"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Toplam Toplanan Miktar {0} sipariş edilen {1} miktardan fazladır. Fazla Toplama Ödeneğini Stok Ayarlarında ayarlayabilirsiniz."
@@ -56711,7 +56814,7 @@ msgstr ""
msgid "Total allocated percentage for sales team should be 100"
msgstr "Satış ekibine ayrılan toplam yüzde 100 olmalıdır"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Toplam katkı yüzdesi 100'e eşit olmalıdır"
@@ -56886,7 +56989,7 @@ msgstr "İşlem Tarihi"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56910,11 +57013,11 @@ msgstr "İşlem Silme Kayıt Öğesi"
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -57019,7 +57122,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Durdurulan İş Emrine karşı işlem yapılmasına izin verilmiyor {0}"
@@ -57066,11 +57170,16 @@ msgstr "İşlemler Yıllık Geçmişi"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Şirkete karşı işlemler zaten mevcut! Hesap Planı yalnızca hiçbir işlemi olmayan bir Şirket için içe aktarılabilir."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr ""
@@ -57251,8 +57360,8 @@ msgstr "Taşıyıcı Bilgisi"
msgid "Transporter Name"
msgstr "Şöför Adı"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Seyahat Giderleri"
@@ -57516,6 +57625,7 @@ msgstr "BAE KDV Ayarları"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57531,7 +57641,7 @@ msgstr "BAE KDV Ayarları"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57592,7 +57702,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Ölçü Birimi Dönüşüm Faktörü"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Ölçü Birimi Dönüşüm faktörü ({0} -> {1}) {2} Ürünü için bulunamadı"
@@ -57605,7 +57715,7 @@ msgstr "Ölçü Birimi Dönüşüm faktörü {0} satırında gereklidir"
msgid "UOM Name"
msgstr "Ölçü Birimi Adı"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Ürünü içinde: {1} ölçü birimi için: {0} dönüştürme faktörü gereklidir"
@@ -57677,13 +57787,13 @@ msgstr "{0} ile {1} arasındaki anahtar tarih için döviz kuru bulunamadı {2}.
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "{0} ile başlayan puan bulunamadı. 0 ile 100 arasında değişen sabit puanlara sahip olmanız gerekiyor"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Önümüzdeki {0} gün içinde {1} operasyonu için zaman aralığı bulunamıyor. Lütfen {2} sayfasındaki 'Kapasite Planlama' alanının değerini artırın."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Değişken bulunamadı:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57764,7 +57874,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57783,7 +57893,7 @@ msgstr "Birim"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57800,7 +57910,7 @@ msgstr "Ölçü Birimi"
msgid "Unit of Measure (UOM)"
msgstr "Ölçü Birimi"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Ölçü Birimi {0} Dönüşüm Faktörü Tablosuna birden fazla girildi"
@@ -57945,7 +58055,7 @@ msgstr "Mutabık Olunmayan Girişler"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57985,12 +58095,12 @@ msgstr "Çözülmemiş"
msgid "Unscheduled"
msgstr "planlanmamış"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Teminatsız Krediler"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Eşleşen Ödeme Talebini Ayarla"
@@ -58166,7 +58276,7 @@ msgstr "Ürünleri Güncelle"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Kendi Açık Bakiyesini Güncelle"
@@ -58245,11 +58355,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Varyantlar Güncelleniyor..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "İş Emri durumu güncelleniyor"
@@ -58451,7 +58561,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "İşlem Tarihi Döviz Kurunu Kullan"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Önceki proje isminden farklı bir isim kullanın"
@@ -58493,7 +58603,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Kullanıcı Forumu"
@@ -58557,6 +58667,11 @@ msgstr "Kullanıcılar, satın alma faturasındaki fiyatı (satın alma irsaliye
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58579,8 +58694,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Negatif stok kullanımı, envanter negatif olduğunda FIFO/Hareketli ortalama değerlemesini devre dışı bırakır."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Hizmet Giderleri"
@@ -58590,7 +58705,7 @@ msgstr "Hizmet Giderleri"
msgid "VAT Accounts"
msgstr "KDV Hesapları"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "KDV Tutarı (AED)"
@@ -58600,12 +58715,12 @@ msgid "VAT Audit Report"
msgstr "KDV Denetim Raporu"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "Giderler ve Diğer Tüm Girdi Üzerindeki KDV"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "Satışlarda ve Diğer Tüm Çıktılarda KDV"
@@ -58799,7 +58914,6 @@ msgstr "Değerleme Yöntemi"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58815,14 +58929,12 @@ msgstr "Değerleme Yöntemi"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Değerleme Fiyatı / Oranı"
@@ -58830,19 +58942,19 @@ msgstr "Değerleme Fiyatı / Oranı"
msgid "Valuation Rate (In / Out)"
msgstr "Değerleme Fiyatı (Giriş / Çıkış)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Değerleme Fiyatı Eksik"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Ürün {0} için Değerleme Oranı, {1} {2} muhasebe kayıtlarını yapmak için gereklidir."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Açılış Stoku girilirse Değerleme Oranı zorunludur"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "{1} nolu satırdaki {0} Ürünü için Değerleme Oranı gereklidir"
@@ -58852,7 +58964,7 @@ msgstr "{1} nolu satırdaki {0} Ürünü için Değerleme Oranı gereklidir"
msgid "Valuation and Total"
msgstr "Değerleme ve Toplam"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Müşteri tarafından sağlanan ürünler için değerleme oranı sıfır olarak ayarlandı."
@@ -58866,7 +58978,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Satış Faturasına göre ürün için değerleme oranı (Sadece Dahili Transferler için)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Değerleme türü ücretleri Dahil olarak işaretlenemez"
@@ -58878,7 +58990,7 @@ msgstr "Değerleme türü ücretleri Dahil olarak işaretlenemez"
msgid "Value (G - D)"
msgstr "Değer (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Değer ({0})"
@@ -58997,12 +59109,12 @@ msgid "Variance ({})"
msgstr "Varyans ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Varyant"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Varyant Özelliği Hatası"
@@ -59021,7 +59133,7 @@ msgstr "Varyant Ürün Ağacı"
msgid "Variant Based On"
msgstr "Varyant Referansı"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Varyant Tabanlı değiştirilemez"
@@ -59039,7 +59151,7 @@ msgstr "Varyant Alanı"
msgid "Variant Item"
msgstr "Varyant Ürün"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Varyant Ürünler"
@@ -59050,7 +59162,7 @@ msgstr "Varyant Ürünler"
msgid "Variant Of"
msgstr "Varyantı"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Varyant oluşturma işlemi sıraya alındı."
@@ -59344,7 +59456,7 @@ msgstr "Belge"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Belge #"
@@ -59416,7 +59528,7 @@ msgstr "Belge Adı"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59490,7 +59602,7 @@ msgstr "Giriş Türü"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59517,7 +59629,7 @@ msgstr "Giriş Türü"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59697,8 +59809,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "Hesap {0} karşılığında depo bulunamadı."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Stok Ürünü {0} için depo gereklidir"
@@ -59723,7 +59835,7 @@ msgstr "Depo {0} {1} şirketine ait değil"
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Depo {0}, Satış Siparişi {1} için kullanılamaz. Kullanılması gereken depo {2} şeklinde ayarlanmalı"
@@ -59860,11 +59972,11 @@ msgstr "Uyarı: Stok girişi {2} için başka bir {0} # {1} mevcut."
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Uyarı: Talep Edilen Malzeme Miktarı Minimum Sipariş Miktarından Az"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Uyarı: Müşterinin Satın Alma Siparişi {1} için Satış Siparişi {0} zaten mevcut."
@@ -59954,7 +60066,7 @@ msgstr "Kilometre Cinsinden Dalga Boyu"
msgid "Wavelength In Megametres"
msgstr "Megametre Cinsinden Dalga Boyu"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -60023,7 +60135,7 @@ msgstr "Website:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Hafta {0} {1}"
@@ -60153,7 +60265,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Bir Ürün oluştururken bu alana bir değer girilmesi, arka planda otomatik olarak bir Ürün Fiyatı oluşturacaktır."
@@ -60163,7 +60275,7 @@ msgstr "Bir Ürün oluştururken bu alana bir değer girilmesi, arka planda otom
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60173,11 +60285,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Alt Şirket {0} için hesap oluştururken, {1} ana hesap bir genel muhasebe hesabı olarak bulundu."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Bağlı Şirket {0} için hesap oluşturulurken, ana hesap {1} bulunamadı. Lütfen ilgili Hesap Planında ana hesabı oluşturun"
@@ -60322,7 +60434,7 @@ msgstr "İş Bitti"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Devam Eden İşler"
@@ -60359,7 +60471,7 @@ msgstr "Devam Eden İşler"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60393,7 +60505,7 @@ msgstr "İş Emri Tüketilen Malzemeler"
msgid "Work Order Item"
msgstr "İş Emri Ürünü"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60434,19 +60546,23 @@ msgstr "İş Emri Özeti"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Aşağıdaki nedenden dolayı İş Emri oluşturulamıyor: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "İş Emri bir Ürün Şablonuna karşı oluşturulamaz"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "İş Emri {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "İş Emri oluşturulmadı"
@@ -60455,16 +60571,16 @@ msgstr "İş Emri oluşturulmadı"
msgid "Work Order {0} created"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "İş Emri {0}: {1} operasyonu için İş Kartı bulunamadı"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "İş Emirleri"
@@ -60489,7 +60605,7 @@ msgstr "Devam Eden"
msgid "Work-in-Progress Warehouse"
msgstr "Devam Eden İş Deposu"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Göndermeden önce Devam Eden İşler Deposu gereklidir"
@@ -60537,7 +60653,7 @@ msgstr "Çalışma Saatleri"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60628,14 +60744,14 @@ msgstr "İş İstasyonları"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Şüpheli Alacak"
@@ -60740,7 +60856,7 @@ msgstr "İndirgenmiş Değer"
msgid "Wrong Company"
msgstr "Yanlış Şirket"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Yanlış Şifre"
@@ -60796,11 +60912,11 @@ msgstr "Yılın başlangıç tarihi veya bitiş tarihi {0} ile çakışıyor. Bu
msgid "You are importing data for the code list:"
msgstr "Kod listesi için veri aktarıyorsunuz:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "{} İş Akışında belirlenen koşullara göre güncelleme yapmanıza izin verilmiyor."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "{0} tarihinden önce giriş ekleme veya güncelleme yetkiniz yok"
@@ -60808,7 +60924,7 @@ msgstr "{0} tarihinden önce giriş ekleme veya güncelleme yetkiniz yok"
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Bu zamandan önce, {1} deposu altında {0} ürünü için Stok İşlemleri yapmaya/yapılanı düzenlemeye yetkiniz yok."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Dondurulmuş değeri ayarlama yetkiniz yok"
@@ -60836,7 +60952,7 @@ msgstr "Ayrıca, Şirket içinde genel Sermaye Devam Eden İşler hesabını da
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Ana hesabı Bilanço hesabına dönüştürebilir veya farklı bir hesap seçebilirsiniz."
@@ -60877,11 +60993,11 @@ msgstr "Bunu bir makine adı veya işlem türü olarak ayarlayabilirsiniz. Örne
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "İş Emri kapalı olduğundan İş Kartında herhangi bir değişiklik yapamazsınız."
@@ -60905,7 +61021,7 @@ msgstr "Kapatılan Hesap Dönemi {1} içinde bir {0} oluşturamazsınız"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Kapalı Hesap Döneminde herhangi bir muhasebe girişi oluşturamaz veya iptal edemezsiniz {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Bu tarihe kadar herhangi bir muhasebe kaydı oluşturamaz/değiştiremezsiniz."
@@ -60966,7 +61082,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "{} içindeki {} öğelerine ilişkin izniniz yok."
@@ -60978,19 +61094,19 @@ msgstr "Kullanmak için yeterli Sadakat Puanınız yok"
msgid "You don't have enough points to redeem."
msgstr "Kullanmak için yeterli puanınız yok."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61002,7 +61118,7 @@ msgstr "Açılış faturaları oluştururken {} hatayla karşılaştınız. Daha
msgid "You have already selected items from {0} {1}"
msgstr "Zaten öğelerinizi seçtiniz {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Projede işbirliği yapmak üzere davet edildiniz: {0}."
@@ -61026,7 +61142,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Yeniden sipariş seviyelerini korumak için Stok Ayarlarında otomatik yeniden siparişi etkinleştirmeniz gerekir."
@@ -61042,7 +61158,7 @@ msgstr "Bir Ürün eklemeden önce Müşteri seçmelisiniz."
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Bu belgeyi iptal edebilmek için POS Kapanış Girişini {} iptal etmeniz gerekmektedir."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Satır {0} için {2} Hesap olarak {1} hesap grubunu seçtiniz. Lütfen tek bir hesap seçin."
@@ -61089,11 +61205,11 @@ msgstr "Posta Kodu"
msgid "Zero Balance"
msgstr "Sıfır Bakiye"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Sıfır Değerinde"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Sıfır Adet"
@@ -61115,11 +61231,11 @@ msgstr "Sıkıştırılmış dosya"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Önemli] [ERPNext] Otomatik Yeniden Sıralama Hataları"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Ürünler için Negatif değerlere izin ver`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "sonra"
@@ -61160,7 +61276,7 @@ msgid "cannot be greater than 100"
msgstr "100'den büyük olamaz"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "{0} tarihli"
@@ -61309,7 +61425,7 @@ msgstr "ödeme uygulaması yüklü değil. Lütfen {} veya {} adresinden yükley
msgid "per hour"
msgstr "Saat Başı"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "aşağıdakilerden birini gerçekleştirin:"
@@ -61342,7 +61458,7 @@ msgstr "alındı:"
msgid "reconciled"
msgstr "mutabık"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "i̇ade Edildi"
@@ -61377,7 +61493,7 @@ msgstr "rgt"
msgid "sandbox"
msgstr "sandbox"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "satıldı"
@@ -61385,8 +61501,8 @@ msgstr "satıldı"
msgid "subscription is already cancelled."
msgstr "abonelik zaten iptal edildi."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "target_ref_field"
@@ -61404,7 +61520,7 @@ msgstr "Başlık"
msgid "to"
msgstr "giden"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "bu İade Faturası tutarını iptal etmeden önce tahsisini kaldırmak için."
@@ -61431,7 +61547,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "Benzersiz bir olmalı: INDIRIM20 İndirim almak için kullanılacak."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61453,7 +61569,7 @@ msgstr "Ürün Ağacı Güncelleme Aracı ile"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "Hesaplar tablosunda Sermaye Çalışması Devam Eden Hesabı'nı seçmelisiniz"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' devre dışı bırakıldı."
@@ -61461,7 +61577,7 @@ msgstr "{0} '{1}' devre dışı bırakıldı."
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' {2} mali yılında değil."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) İş Emrindeki üretilecek ({2}) miktar {3} değerinden fazla olamaz"
@@ -61469,7 +61585,7 @@ msgstr "{0} ({1}) İş Emrindeki üretilecek ({2}) miktar {3} değerinden fazla
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} Varlıklar gönderdi. Devam etmek için tablodan {2} Kalemini kaldırın."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "{1} Müşterisine ait {0} hesabı bulunamadı."
@@ -61502,11 +61618,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} {1} sayısı zaten {2} {3} içinde kullanılıyor"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Operasyonlar: {1}"
@@ -61514,7 +61630,7 @@ msgstr "{0} Operasyonlar: {1}"
msgid "{0} Request for {1}"
msgstr "{1} için {0} Talebi"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Numune Saklama partiye dayalıdır, lütfen Ürünün numunesini saklamak için Parti Numarası Var seçeneğini işaretleyin"
@@ -61602,11 +61718,11 @@ msgstr "{0} oluşturdu"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} para birimi şirketin varsayılan para birimi ile aynı olmalıdır. Lütfen başka bir hesap seçin."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} şu anda {1} Tedarikçi Puan Kartı durumuna sahiptir ve bu tedarikçiye verilen Satın Alma Siparişleri dikkatli verilmelidir."
@@ -61618,7 +61734,7 @@ msgstr "{0} şu anda {1} Tedarikçi Puan Kartı durumuna sahiptir ve bu tedarik
msgid "{0} does not belong to Company {1}"
msgstr "{0} {1} şirketine ait değildir"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61627,7 +61743,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} iki kere ürün vergisi girildi"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{1} Ürün Vergilerinde iki kez {0} olarak girildi"
@@ -61652,7 +61768,7 @@ msgstr "{0} Başarıyla Gönderildi"
msgid "{0} hours"
msgstr "{0} saat"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} {1} satırında"
@@ -61674,7 +61790,7 @@ msgstr "{0} satırlara birden çok kez eklendi: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} zaten {1} için çalışıyor"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} engellendi, bu işleme devam edilemiyor"
@@ -61682,12 +61798,12 @@ msgstr "{0} engellendi, bu işleme devam edilemiyor"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} {1} Ürünü için zorunludur"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} {1} hesabı için zorunludur"
@@ -61695,7 +61811,7 @@ msgstr "{0} {1} hesabı için zorunludur"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturulmamış olabilir"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturulmamış olabilir."
@@ -61703,7 +61819,7 @@ msgstr "{0} zorunludur. Belki {1} ile {2} arasında Döviz Kuru kaydı oluşturu
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} bir şirket banka hesabı değildir"
@@ -61711,7 +61827,7 @@ msgstr "{0} bir şirket banka hesabı değildir"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} bir grup düğümü değil. Lütfen ana maliyet merkezi olarak bir grup düğümü seçin"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} bir stok ürünü değildir"
@@ -61751,27 +61867,27 @@ msgstr "{0} {1} tarihine kadar beklemede"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} devam eden ürünler"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "İşlem sırasında {0} ürün kayboldu."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} Ürün Üretildi"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61779,7 +61895,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0} iade faturasında negatif değer olmalıdır"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} {1} ile işlem yapmaya izin verilmiyor. Lütfen Şirketi değiştirin veya Müşteri kaydındaki 'İşlem Yapmaya İzin Verilenler' bölümüne Şirketi ekleyin."
@@ -61795,7 +61911,7 @@ msgstr "{0} parametresi geçersiz"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0} ödeme girişleri {1} ile filtrelenemez"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{1} ürününden {0} miktarı, {3} kapasiteli {2} deposuna alınmaktadır."
@@ -61808,7 +61924,7 @@ msgstr "{0} ile {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} birim {1} Ürünü için {2} Deposunda rezerve edilmiştir, lütfen Stok Doğrulamasını {3} yapabilmek için stok rezevini kaldırın."
@@ -61824,16 +61940,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "Bu işlemi tamamlamak için {5} için {3} {4} üzerinde {2} içinde {0} birim {1} gereklidir."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "Bu işlemi tamamlamak için {3} {4} tarihinde {2} içinde {0} adet {1} gereklidir."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "Bu işlemi yapmak için {2} içinde {0} birim {1} gerekli."
@@ -61845,7 +61961,7 @@ msgstr "{0} kadar {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0}, {1} Ürünü için geçerli bir seri numarası"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} varyantları oluşturuldu."
@@ -61861,7 +61977,7 @@ msgstr "{0} indirim olarak verilecektir."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61899,8 +62015,8 @@ msgstr "{0} {1} zaten tamamen ödendi."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} zaten kısmen ödenmiştir. Ödenmemiş en son tutarları almak için lütfen 'Ödenmemiş Faturayı Al' veya 'Ödenmemiş Siparişleri Al' düğmesini kullanın."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0}, {1} düzenledi. Lütfen sayfayı yenileyin."
@@ -62010,7 +62126,7 @@ msgstr "{0} {1}: Hesap {2} etkin değil"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: {2} için muhasebe kaydı yalnızca bu para birimi ile yapılabilir: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Maliyet Merkezi {2} öğesi için zorunludur"
@@ -62059,8 +62175,8 @@ msgstr "Toplam fatura bedelinin %{0} oranında indirim yapılacaktır."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0} için {1} alanı {2} için Beklenen Bitiş Tarihinden sonra olamaz."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, {1} operasyonunu {2} operasyonundan önce tamamlayın."
@@ -62080,11 +62196,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} Şirketine ait değildir: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62092,11 +62208,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} mevcut değil"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} {2} değerinden küçük olmalıdır"
@@ -62108,7 +62224,7 @@ msgstr ""
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} iptal edildi veya kapatıldı."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "{item_name} için Numune Boyutu ({sample_size}) Kabul Edilen Miktardan ({accepted_quantity}) büyük olamaz"
@@ -62120,7 +62236,7 @@ msgstr ""
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "Kazanılan Sadakat Puanları kullanıldığından {} iptal edilemez. Önce {} No {}'yu iptal edin"
diff --git a/erpnext/locale/vi.po b/erpnext/locale/vi.po
index 29b85a57450..5f41e421c55 100644
--- a/erpnext/locale/vi.po
+++ b/erpnext/locale/vi.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr " Phân lắp phụ"
msgid " Summary"
msgstr " Tóm tắt"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "\"Mặt hàng do khách hàng cung cấp\" không thể đồng thời là Mặt hàng mua"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "\"Mặt hàng do khách hàng cung cấp\" không thể có Tỷ giá định giá"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "\"Là Tài sản cố định\" không thể bỏ chọn, vì tồn tại bản ghi Tài sản đối với mặt hàng này"
@@ -268,11 +268,11 @@ msgstr "% nguyên vật liệu đã giao cho Danh sách chọn này"
msgid "% of materials delivered against this Sales Order"
msgstr "% nguyên vật liệu đã giao cho Đơn hàng bán này"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "'Tài khoản' trong phần Kế toán của Khách hàng {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "'Cho phép nhiều Đơn hàng bán đối với Đơn mua hàng của Khách hàng'"
@@ -284,7 +284,7 @@ msgstr "'Dựa trên' và 'Nhóm theo' không thể giống nhau"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "'Số ngày kể từ lần đặt hàng cuối' phải lớn hơn hoặc bằng không"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "'Tài khoản {0} Mặc định' trong Công ty {1}"
@@ -302,7 +302,7 @@ msgstr "'Từ ngày' là bắt buộc"
msgid "'From Date' must be after 'To Date'"
msgstr "'Từ ngày' phải sau 'Đến ngày'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "'Có Serial No' không thể là 'Có' đối với mặt hàng không tồn kho"
@@ -314,9 +314,9 @@ msgstr "'Yêu cầu kiểm tra trước khi giao' đã bị vô hiệu hóa cho
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "'Yêu cầu kiểm tra trước khi mua' đã bị vô hiệu hóa cho mặt hàng {0}, không cần tạo QI"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'Mở đầu'"
@@ -346,8 +346,8 @@ msgstr "Tài khoản '{0}' đã được sử dụng bởi {1}. Hãy sử dụng
msgid "'{0}' has been already added."
msgstr "'{0}' đã được thêm vào."
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}' phải bằng đơn vị tiền tệ công ty {1}."
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90 - 120 Ngày"
msgid "90 Above"
msgstr "Trên 90"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -803,7 +803,7 @@ msgstr "Cài đặt
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "Ngày thanh toán phải sau ngày séc cho dòng: {0} "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "Mặt hàng {0} ở dòng {1} đã thanh toán nhiều hơn {2} "
@@ -820,7 +820,7 @@ msgstr "Yêu cầu chứng từ thanh toán cho dòng: {0} "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "Không thể thanh toán quá cho các mặt hàng sau:
"
@@ -864,7 +864,7 @@ msgstr "Ngày đăng {0} không thể trước ngày Đơn mua hàng cho:
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 "Đơn giá danh sách giá chưa được đặt là có thể chỉnh sửa trong Cài đặt Bán hàng. Trong trường hợp này, đặt Cập nhật Danh sách giá Dựa trên thành Đơn giá Danh sách giá sẽ ngăn việc tự động cập nhật Giá mặt hàng.
Bạn có chắc muốn tiếp tục?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "Để cho phép thanh toán quá, vui lòng đặt khoản cho phép trong Cài đặt Tài khoản.
"
@@ -947,11 +947,11 @@ msgstr "Lối tắt của Bạn\n"
msgid "Your Shortcuts "
msgstr ""
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "Tổng cộng: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "Số tiền còn nợ: {0}"
@@ -996,7 +996,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "Một Nhóm khách hàng đã tồn tại với cùng tên, vui lòng thay đổi tên Khách hàng hoặc đổi tên Nhóm khách hàng"
@@ -1160,11 +1160,11 @@ msgstr "Viết tắt"
msgid "Abbreviation"
msgstr "Viết tắt"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "Viết tắt đã được sử dụng cho công ty khác"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "Viết tắt là bắt buộc"
@@ -1172,7 +1172,7 @@ msgstr "Viết tắt là bắt buộc"
msgid "Abbreviation: {0} must appear only once"
msgstr "Viết tắt: {0} phải xuất hiện chỉ một lần"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "Trên"
@@ -1226,7 +1226,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "Số lượng được chấp nhận trong Đơn vị Kho"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "Số lượng được chấp nhận"
@@ -1262,7 +1262,7 @@ msgstr "Khóa Truy cập là bắt buộc cho Nhà cung cấp Dịch vụ: {0}"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "Theo CEFACT/ICG/2010/IC013 hoặc CEFACT/ICG/2010/IC010"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "Theo BOM {0}, Mặt hàng '{1}' thiếu trong phiếu kho."
@@ -1380,8 +1380,8 @@ msgstr "Tài khoản"
msgid "Account Manager"
msgstr "Quản lý Tài khoản"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "Thiếu Tài khoản"
@@ -1399,7 +1399,7 @@ msgstr "Thiếu Tài khoản"
msgid "Account Name"
msgstr "Tên Tài khoản"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "Không tìm thấy Tài khoản"
@@ -1412,7 +1412,7 @@ msgstr "Không tìm thấy Tài khoản"
msgid "Account Number"
msgstr "Số Tài khoản"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "Số Tài khoản {0} đã được sử dụng trong tài khoản {1}"
@@ -1451,7 +1451,7 @@ msgstr "Phân loại phụ Tài khoản"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1467,11 +1467,11 @@ msgstr "Loại Tài khoản"
msgid "Account Value"
msgstr "Giá trị Tài khoản"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "Số dư tài khoản đã có Dư Có, bạn không được đặt 'Số dư Phải là' là 'Dư Nợ'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "Số dư tài khoản đã có Dư Nợ, bạn không được đặt 'Số dư Phải là' là 'Dư Có'"
@@ -1538,15 +1538,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "Tài khoản có nút con không thể chuyển thành sổ cái"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "Tài khoản có nút con không thể đặt làm sổ cái"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "Tài khoản có giao dịch hiện tại không thể chuyển thành nhóm."
@@ -1554,8 +1554,8 @@ msgstr "Tài khoản có giao dịch hiện tại không thể chuyển thành n
msgid "Account with existing transaction can not be deleted"
msgstr "Tài khoản có giao dịch hiện tại không thể xóa"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "Tài khoản có giao dịch hiện tại không thể chuyển thành sổ cái"
@@ -1563,11 +1563,11 @@ msgstr "Tài khoản có giao dịch hiện tại không thể chuyển thành s
msgid "Account {0} added multiple times"
msgstr "Tài khoản {0} đã được thêm nhiều lần"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "Tài khoản {0} không thể chuyển thành Nhóm vì nó đã được đặt là {1} cho {2}."
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "Tài khoản {0} không thể vô hiệu vì nó đã được đặt là {1} cho {2}."
@@ -1575,11 +1575,11 @@ msgstr "Tài khoản {0} không thể vô hiệu vì nó đã được đặt l
msgid "Account {0} does not belong to company {1}"
msgstr "Tài khoản {0} không thuộc công ty {1}"
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "Tài khoản {0} không thuộc công ty: {1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "Tài khoản {0} không tồn tại"
@@ -1595,15 +1595,15 @@ msgstr "Tài khoản {0} không khớp với Công ty {1} trong Phương thức
msgid "Account {0} doesn't belong to Company {1}"
msgstr "Tài khoản {0} không thuộc Công ty {1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "Tài khoản {0} đã tồn tại trong công ty cha {1}."
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "Tài khoản {0} đã được thêm trong công ty con {1}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "Tài khoản {0} bị vô hiệu."
@@ -1611,7 +1611,7 @@ msgstr "Tài khoản {0} bị vô hiệu."
msgid "Account {0} is frozen"
msgstr "Tài khoản {0} bị đóng băng"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "Tài khoản {0} không hợp lệ. Tiền tệ Tài khoản phải là {1}"
@@ -1619,19 +1619,19 @@ msgstr "Tài khoản {0} không hợp lệ. Tiền tệ Tài khoản phải là
msgid "Account {0} should be of type Expense"
msgstr "Tài khoản {0} phải thuộc loại Chi phí"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "Tài khoản {0}: Tài khoản cha {1} không thể là sổ cái"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "Tài khoản {0}: Tài khoản cha {1} không thuộc công ty: {2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "Tài khoản {0}: Tài khoản cha {1} không tồn tại"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "Tài khoản {0}: Bạn không thể đặt chính nó làm tài khoản cha"
@@ -1647,7 +1647,7 @@ msgstr "Tài khoản: {0} chỉ có thể được cập nhật qua Giao dịch
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "Tài khoản: {0} không được phép theo Phiếu thanh toán"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "Tài khoản: {0} với tiền tệ: {1} không thể được chọn"
@@ -1932,8 +1932,8 @@ msgstr "Bút toán Kế toán"
msgid "Accounting Entry for Asset"
msgstr "Bút toán Kế toán cho Tài sản"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "Bút toán Kế toán cho LCV trong Phiếu kho {0}"
@@ -1957,8 +1957,8 @@ msgstr "Bút toán Kế toán cho Dịch vụ"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "Bút toán Kế toán cho Kho"
@@ -1967,7 +1967,7 @@ msgstr "Bút toán Kế toán cho Kho"
msgid "Accounting Entry for {0}"
msgstr "Bút toán Kế toán cho {0}"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "Bút toán Kế toán cho {0}: {1} chỉ có thể được thực hiện bằng tiền tệ: {2}"
@@ -2022,7 +2022,6 @@ msgstr "Các bút toán kế toán bị đóng băng cho đến ngày này. Ch
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2035,14 +2034,13 @@ msgstr "Các bút toán kế toán bị đóng băng cho đến ngày này. Ch
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "Tài khoản"
@@ -2072,8 +2070,8 @@ msgstr "Tài khoản Thiếu từ Báo cáo"
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2173,15 +2171,15 @@ msgstr "Bảng Tài khoản không được để trống."
msgid "Accounts to Merge"
msgstr "Tài khoản để Hợp nhất"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr "Chi phí phải trả"
#. 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:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "Khấu hao lũy kế"
@@ -2346,7 +2344,7 @@ msgstr "Các hành động đã thực hiện"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2470,7 +2468,7 @@ msgstr "Ngày kết thúc thực tế"
msgid "Actual End Date (via Timesheet)"
msgstr "Ngày kết thúc thực tế (qua Bảng chấm công)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "Ngày kết thúc thực tế không thể trước Ngày bắt đầu thực tế"
@@ -2592,7 +2590,7 @@ msgstr "Thời gian thực tế theo giờ (qua Bảng chấm công)"
msgid "Actual qty in stock"
msgstr "Số lượng thực tế trong kho"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "Thuế loại thực tế không thể bao gồm trong đơn giá mặt hàng ở dòng {0}"
@@ -2601,7 +2599,7 @@ msgstr "Thuế loại thực tế không thể bao gồm trong đơn giá mặt
msgid "Ad-hoc Qty"
msgstr "Số lượng Ad-hoc"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "Thêm / Sửa Giá"
@@ -3100,7 +3098,7 @@ msgstr "Thông tin bổ sung"
msgid "Additional Information updated successfully."
msgstr "Thông tin bổ sung đã cập nhật thành công."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "Chuyển nguyên liệu bổ sung"
@@ -3123,7 +3121,7 @@ msgstr "Chi phí hoạt động bổ sung"
msgid "Additional Transferred Qty"
msgstr "Số lượng chuyển thêm"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3135,11 +3133,6 @@ msgstr "Số lượng chuyển thêm {0}\n"
"\t\t\t\t\tcủa trường 'Chuyển Nguyên liệu thô Thêm vào WIP'\n"
"\t\t\t\t\ttrong Cài đặt Sản xuất."
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "Thông tin bổ sung về khách hàng."
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr "Thêm {0} {1} của mặt hàng {2} theo yêu cầu BOM để hoàn thành giao dịch này"
@@ -3285,11 +3278,6 @@ msgstr "Địa chỉ cần được liên kết với một Công ty. Vui lòng
msgid "Address used to determine Tax Category in transactions"
msgstr "Địa chỉ được sử dụng để xác định Danh mục Thuế trong giao dịch"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "Điều chỉnh Số lượng"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "Điều chỉnh đối với"
@@ -3302,8 +3290,8 @@ msgstr "Điều chỉnh dựa trên đơn giá Hóa đơn Mua"
msgid "Administrative Assistant"
msgstr "Trợ lý Hành chính"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "Chi phí Hành chính"
@@ -3371,7 +3359,7 @@ msgstr "Trạng thái Thanh toán Tạm ứng"
#: 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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "Thanh toán Tạm ứng"
@@ -3491,7 +3479,7 @@ msgstr "Đối với tài khoản"
msgid "Against Blanket Order"
msgstr "Đối với Đơn hàng tổng"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "Đối với Đơn hàng Khách hàng {0}"
@@ -3633,11 +3621,11 @@ msgstr "Tuổi"
#: 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "Tuổi (Ngày)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "Tuổi ({0})"
@@ -3787,21 +3775,21 @@ msgstr "Tất cả các nhóm khách hàng"
#: 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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "Tất cả Phòng ban"
@@ -3881,7 +3869,7 @@ msgstr "Tất cả các nhóm nhà cung cấp"
msgid "All Territories"
msgstr "Tất cả Lãnh thổ"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "Tất cả Kho"
@@ -3895,6 +3883,11 @@ msgstr "Tất cả phân bổ đã được đối soát thành công"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "Tất cả các thông tin liên lạc bao gồm và phía trên sẽ được chuyển vào Sự cố mới"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "Tất cả các mặt hàng đã được yêu cầu"
@@ -3903,23 +3896,23 @@ msgstr "Tất cả các mặt hàng đã được yêu cầu"
msgid "All items have already been Invoiced/Returned"
msgstr "Tất cả các mặt hàng đã được lập Hóa đơn/Trả lại"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "Tất cả các mặt hàng đã được nhận"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "Tất cả các mặt hàng đã được chuyển cho Lệnh sản xuất này."
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "Tất cả các mặt hàng trong tài liệu này đã có Kiểm tra Chất lượng được liên kết."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
msgid "All items must be linked to a Sales Order or Subcontracting Inward Order for this Sales Invoice."
msgstr "Tất cả các mặt hàng phải được liên kết với Đơn hàng Bán hoặc Đơn Giao việc ngoài vào cho Hóa đơn Bán hàng này."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "Tất cả Đơn hàng Bán được liên kết phải được giao việc ngoài."
@@ -3933,11 +3926,11 @@ msgstr "Tất cả Bình luận và Email sẽ được sao chép từ một tà
msgid "All the items have been already returned."
msgstr "Tất cả các mặt hàng đã được trả lại."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "Tất cả các mặt hàng yêu cầu (nguyên liệu thô) sẽ được lấy từ BOM và điền vào bảng này. Ở đây bạn cũng có thể thay đổi Kho nguồn cho bất kỳ mặt hàng nào. Và trong quá trình sản xuất, bạn có thể theo dõi nguyên liệu thô đã chuyển từ bảng này."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "Tất cả các mặt hàng này đã được lập Hóa đơn/Trả lại"
@@ -3956,7 +3949,7 @@ msgstr "Phân bổ"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "Phân bổ Tạm ứng Tự động (FIFO)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "Phân bổ số tiền thanh toán"
@@ -3966,7 +3959,7 @@ msgstr "Phân bổ số tiền thanh toán"
msgid "Allocate Payment Based On Payment Terms"
msgstr "Phân bổ Thanh toán Dựa trên Điều khoản Thanh toán"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "Phân bổ Yêu cầu Thanh toán"
@@ -3996,7 +3989,7 @@ msgstr "Đã phân bổ"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4053,7 +4046,7 @@ msgstr "Số lượng được phân bổ"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4117,7 +4110,7 @@ msgstr "Cho phép Trong Trả lại"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "Cho phép Chuyển nội bộ theo Giá Độc lập"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "Cho phép mục được thêm nhiều lần trong một giao dịch"
@@ -4240,16 +4233,6 @@ msgstr "Cho phép đặt lại Thỏa thuận cấp độ dịch vụ từ Cài
msgid "Allow Sales"
msgstr "Cho phép bán hàng"
-#. 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 "Cho phép tạo hóa đơn bán hàng không có phiếu giao hàng"
-
-#. 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 "Cho phép tạo hóa đơn bán hàng không có đơn hàng"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4375,6 +4358,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4451,10 +4444,8 @@ msgstr "Các mặt hàng được phép"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "Được phép giao dịch với"
@@ -4466,6 +4457,11 @@ msgstr "Các vai trò chính được phép là 'Khách hàng' và 'Nhà cung c
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4507,8 +4503,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "Ngoài ra, bạn không thể chuyển về FIFO sau khi đặt phương pháp định giá thành Bình quân gia quyền cho mặt hàng này."
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4749,7 +4745,7 @@ msgstr "Luôn hỏi"
msgid "Amount"
msgstr "Số tiền"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "Số tiền (AED)"
@@ -4883,12 +4879,12 @@ msgid "Amount to Bill"
msgstr "Số tiền cần thanh toán"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "Số tiền {0} {1} đối với {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "Số tiền {0} {1} được khấu trừ đối với {2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4933,11 +4929,11 @@ msgstr "Số tiền"
msgid "An Item Group is a way to classify items based on types."
msgstr "Nhóm mặt hàng là cách để phân loại mặt hàng theo loại."
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "Đã xảy ra lỗi khi định giá lại mặt hàng qua {0}"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "Đã xảy ra lỗi trong quá trình cập nhật"
@@ -5477,7 +5473,7 @@ msgstr "Khi trường {0} được bật, trường {1} là bắt buộc."
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "Khi trường {0} được bật, giá trị của trường {1} phải lớn hơn 1."
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "Khi có các giao dịch đã gửi đối với mặt hàng {0}, bạn không thể thay đổi giá trị của {1}."
@@ -5489,7 +5485,7 @@ msgstr "Khi có hàng tồn kho đã đặt, bạn không thể tắt {0}."
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "Khi có đủ các mặt hàng bán thành phẩm, Lệnh sản xuất không bắt buộc cho Kho {0}."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "Khi có đủ nguyên liệu thô, Yêu cầu vật tư không bắt buộc cho Kho {0}."
@@ -5627,7 +5623,7 @@ msgstr "Tài khoản Danh mục Tài sản"
msgid "Asset Category Name"
msgstr "Tên Danh mục Tài sản"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "Danh mục Tài sản là bắt buộc cho mặt hàng Tài sản cố định"
@@ -5804,8 +5800,8 @@ msgstr "Số lượng Tài sản"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5905,7 +5901,7 @@ msgstr "Tài sản đã bị hủy"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "Tài sản không thể bị hủy, vì nó đã là {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "Tài sản không thể thanh lý trước bút toán khấu hao cuối cùng."
@@ -5937,7 +5933,7 @@ msgstr "Tài sản ngừng hoạt động do Sửa chữa Tài sản {0}"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "Tài sản đã nhận tại Vị trí {0} và phát cho Nhân viên {1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "Tài sản đã được khôi phục"
@@ -5945,20 +5941,20 @@ msgstr "Tài sản đã được khôi phục"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "Tài sản đã được khôi phục sau khi Vốn hóa Tài sản {0} bị hủy"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "Tài sản đã trả lại"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "Tài sản đã thanh lý"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "Tài sản đã thanh lý qua Bút toán {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "Tài sản đã bán"
@@ -5978,7 +5974,7 @@ msgstr "Tài sản đã được cập nhật sau khi tách thành Tài sản {0
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "Tài sản đã được cập nhật do Sửa chữa Tài sản {0} {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "Tài sản {0} không thể thanh lý, vì nó đã là {1}"
@@ -6019,7 +6015,7 @@ msgstr "Tài sản {0} không được đặt để tính khấu hao."
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "Tài sản {0} chưa được trình. Vui lòng trình tài sản trước khi tiếp tục."
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "Tài sản {0} phải được trình"
@@ -6069,7 +6065,7 @@ msgstr "Tài sản không được tạo cho {item_code}. Bạn sẽ phải tạ
msgid "Assets {assets_link} created for {item_code}"
msgstr "Tài sản {assets_link} đã được tạo cho {item_code}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "Gán Công việc cho Nhân viên"
@@ -6130,7 +6126,7 @@ msgstr "Nên chọn ít nhất một trong các Mô-đun có thể áp dụng"
msgid "At least one of the Selling or Buying must be selected"
msgstr "Phải chọn ít nhất một trong Bán hàng hoặc Mua hàng"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr "Phải có ít nhất một mặt hàng nguyên liệu thô trong mục nhập kho cho loại {0}"
@@ -6138,21 +6134,17 @@ msgstr "Phải có ít nhất một mặt hàng nguyên liệu thô trong mục
msgid "At least one row is required for a financial report template"
msgstr "Cần ít nhất một dòng cho mẫu báo cáo tài chính"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "Bắt buộc phải có ít nhất một kho"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "Tại dòng #{0}: Tài khoản Chênh lệch không được là tài khoản loại Tồn kho, vui lòng thay đổi Loại Tài khoản cho tài khoản {1} hoặc chọn một tài khoản khác"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "Tại dòng #{0}: id trình tự {1} không thể nhỏ hơn id trình tự dòng trước {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "Tại dòng #{0}: bạn đã chọn Tài khoản Chênh lệch {1}, là tài khoản loại Giá vốn hàng bán. Vui lòng chọn một tài khoản khác"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6234,11 +6226,11 @@ msgstr "Tên thuộc tính"
msgid "Attribute Value"
msgstr "Giá trị thuộc tính"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "Bảng thuộc tính là bắt buộc"
@@ -6246,19 +6238,19 @@ msgstr "Bảng thuộc tính là bắt buộc"
msgid "Attribute value: {0} must appear only once"
msgstr "Giá trị thuộc tính: {0} phải xuất hiện chỉ một lần"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "Thuộc tính {0} được chọn nhiều lần trong Bảng Thuộc tính"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "Thuộc tính"
@@ -6470,7 +6462,7 @@ msgstr "Tự động đối sánh và đặt Bên liên quan trong Giao dịch N
msgid "Auto re-order"
msgstr "Tự động đặt hàng lại"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "Tài liệu tự động lặp lại đã được cập nhật"
@@ -6582,7 +6574,7 @@ msgstr "Ngày có sẵn để Sử dụng"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "Số lượng có sẵn"
@@ -6671,10 +6663,6 @@ msgstr "Ngày có sẵn để Sử dụng"
msgid "Available for use date is required"
msgstr "Ngày có sẵn để sử dụng là bắt buộc"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "Số lượng có sẵn là {0}, bạn cần {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "Có sẵn {0}"
@@ -6683,8 +6671,8 @@ msgstr "Có sẵn {0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "Ngày có sẵn để sử dụng phải sau ngày mua"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "Tuổi trung bình"
@@ -6708,7 +6696,9 @@ msgstr "Giá trị Đơn hàng Trung bình"
msgid "Average Order Values"
msgstr "Giá trị Đơn hàng Trung bình"
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "Tỷ lệ trung bình"
@@ -6732,7 +6722,7 @@ msgid "Avg Rate"
msgstr "Tỷ lệ Trung bình"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "Tỷ lệ Trung bình (Tồn kho Cân bằng)"
@@ -6790,7 +6780,7 @@ msgstr "Số lượng BIN"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6813,7 +6803,7 @@ msgstr "BOM"
msgid "BOM 1"
msgstr "BOM 1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "BOM 1 {0} và BOM 2 {1} không được giống nhau"
@@ -6885,11 +6875,6 @@ msgstr "Mục Nổ BOM"
msgid "BOM ID"
msgstr "ID BOM"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "Thông tin BOM"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7043,7 +7028,7 @@ msgstr "Mục Website BOM"
msgid "BOM Website Operation"
msgstr "Hoạt động Website BOM"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr "BOM và Số lượng Thành phẩm là bắt buộc cho Việc tháo dỡ"
@@ -7111,7 +7096,7 @@ msgstr "Phiếu kho có ngày trước đó"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "Hoàn nguyên Nguyên liệu từ Kho WIP"
@@ -7175,7 +7160,7 @@ msgstr "Số dư theo Tiền tệ Cơ sở"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "Số lượng cân đối"
@@ -7240,7 +7225,7 @@ msgstr "Loại Số dư"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "Giá trị số dư"
@@ -7396,8 +7381,8 @@ msgid "Bank Balance"
msgstr "Số dư Ngân hàng"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: 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:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "Phí ngân hàng"
@@ -7512,8 +7497,8 @@ msgstr "Loại bảo lãnh ngân hàng"
msgid "Bank Name"
msgstr "Tên Ngân hàng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "Tài khoản Ngân hàng Overdraft"
@@ -7686,11 +7671,11 @@ msgstr "Ngân hàng"
msgid "Barcode Type"
msgstr "Loại mã vạch"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "Mã vạch {0} đã được sử dụng trong Mục {1}"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "Mã vạch {0} không phải là mã {1} hợp lệ"
@@ -7847,7 +7832,7 @@ msgstr "Tỷ giá Cơ bản (theo Đơn vị Kho)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7922,7 +7907,7 @@ msgstr "Trạng thái hết hạn Lô Mặt hàng"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8011,13 +7996,13 @@ msgstr "Số lượng Lô đã được cập nhật thành {0}"
msgid "Batch Quantity"
msgstr "Số lượng Lô"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8034,7 +8019,7 @@ msgstr "UOM hàng loạt"
msgid "Batch and Serial No"
msgstr "Lô và Số Serial"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "Lô không được tạo cho mặt hàng {} vì nó không có chuỗi lô."
@@ -8057,12 +8042,12 @@ msgstr "Lô {0} và Kho"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "Lô {0} không có sẵn trong kho {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "Lô {0} của Mặt hàng {1} đã hết hạn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "Lô {0} của Mặt hàng {1} bị vô hiệu."
@@ -8117,7 +8102,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8126,7 +8111,7 @@ msgstr "Ngày hóa đơn"
#. 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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8140,11 +8125,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "Hóa đơn vật liệu"
@@ -8245,7 +8232,7 @@ msgstr "Chi tiết Địa chỉ Thanh toán"
msgid "Billing Address Name"
msgstr "Tên địa chỉ thanh toán"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "Địa chỉ Thanh toán không thuộc về {0}"
@@ -8497,6 +8484,16 @@ msgstr "Chặn hóa đơn"
msgid "Block Supplier"
msgstr "Khóa Nhà cung cấp"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8593,7 +8590,7 @@ msgstr "Đã đặt"
msgid "Booked Fixed Asset"
msgstr "Tài sản cố định đã đặt"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "Sổ sách đã được đóng cho đến kỳ kết thúc vào {0}"
@@ -8852,8 +8849,8 @@ msgstr "Xây dựng cây"
msgid "Buildable Qty"
msgstr "Số lượng có thể xây dựng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "Tòa nhà"
@@ -9014,16 +9011,16 @@ msgstr "Theo mặc định, Tên Nhà cung cấp được đặt theo Tên Nhà
msgid "By-Product"
msgstr "Sản phẩm phụ"
-#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
-#. Credit Limit'
-#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
-msgid "Bypass Credit Limit Check at Sales Order"
-msgstr "Bỏ qua kiểm tra hạn mức tín dụng tại Đơn hàng bán"
-
#: erpnext/selling/report/customer_credit_balance/customer_credit_balance.py:68
msgid "Bypass credit check at Sales Order"
msgstr "Bỏ qua kiểm tra tín dụng tại Đơn hàng bán"
+#. Label of the bypass_credit_limit_check (Check) field in DocType 'Customer
+#. Credit Limit'
+#: erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+msgid "Bypass credit limit check at sales order"
+msgstr ""
+
#. Label of the cc_to (Table MultiSelect) field in DocType 'Process Statement
#. Of Accounts'
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts.json
@@ -9071,8 +9068,8 @@ msgstr "Ghi chú CRM"
msgid "CRM Settings"
msgstr "Cài đặt CRM"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:71
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:122
msgid "CWIP Account"
msgstr "Tài khoản CWIP"
@@ -9327,7 +9324,7 @@ msgstr "Chiến dịch {0} không tìm thấy"
msgid "Can be approved by {0}"
msgstr "Có thể được phê duyệt bởi {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2583
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2584
msgid "Can not close Work Order. Since {0} Job Cards are in Work In Progress state."
msgstr "Không thể đóng Lệnh sản xuất. Vì {0} Thẻ công việc đang ở trạng thái Đang thực hiện."
@@ -9360,13 +9357,13 @@ msgstr "Không thể lọc theo Số chứng từ, nếu nhóm theo Chứng từ
msgid "Can only make payment against unbilled {0}"
msgstr "Chỉ có thể thanh toán đối với {0} chưa xuất hóa đơn"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1499
-#: erpnext/controllers/accounts_controller.py:3196
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1501
+#: erpnext/controllers/accounts_controller.py:3190
#: erpnext/public/js/controllers/accounts.js:103
msgid "Can refer row only if the charge type is 'On Previous Row Amount' or 'Previous Row Total'"
msgstr "Chỉ có thể tham chiếu dòng nếu loại phí là 'Theo Số tiền Dòng trước' hoặc 'Tổng Dòng trước'"
-#: erpnext/setup/doctype/company/company.py:206
+#: erpnext/setup/doctype/company/company.py:209
#: erpnext/stock/doctype/stock_settings/stock_settings.py:181
msgid "Can't change the valuation method, as there are transactions against some items which do not have its own valuation method"
msgstr "Không thể thay đổi phưadowccai định giá, vì có các giao dịch đối với một số mặt hàng không có phương pháp định giá riêng"
@@ -9408,7 +9405,7 @@ msgstr "Không thể chỉ định Thu ngân"
msgid "Cannot Calculate Arrival Time as Driver Address is Missing."
msgstr "Không thể tính Thời gian đến vì Địa chỉ Tài xế đang thiếu."
-#: erpnext/setup/doctype/company/company.py:225
+#: erpnext/setup/doctype/company/company.py:228
msgid "Cannot Change Inventory Account Setting"
msgstr "Không thể thay đổi Cài đặt Tài khoản Tồn kho"
@@ -9416,9 +9413,9 @@ msgstr "Không thể thay đổi Cài đặt Tài khoản Tồn kho"
msgid "Cannot Create Return"
msgstr "Không thể tạo Trả lại"
-#: erpnext/stock/doctype/item/item.py:699
-#: erpnext/stock/doctype/item/item.py:712
-#: erpnext/stock/doctype/item/item.py:726
+#: erpnext/stock/doctype/item/item.py:698
+#: erpnext/stock/doctype/item/item.py:711
+#: erpnext/stock/doctype/item/item.py:725
msgid "Cannot Merge"
msgstr "Không thể Hợp nhất"
@@ -9446,7 +9443,7 @@ msgstr "Không thể sửa đổi {0} {1}, vui lòng tạo mới thay thế."
msgid "Cannot apply TDS against multiple parties in one entry"
msgstr "Không thể áp dụng TDS đối với nhiều bên trong một bút toán"
-#: erpnext/stock/doctype/item/item.py:379
+#: erpnext/stock/doctype/item/item.py:378
msgid "Cannot be a fixed asset item as Stock Ledger is created."
msgstr "Không thể là mặt hàng tài sản cố định vì Sổ cái Tồn kho đã được tạo."
@@ -9466,7 +9463,7 @@ msgstr "Không thể hủy Bút toán Dự trữ Tồn kho {0} vì đã được
msgid "Cannot cancel as processing of cancelled documents is pending."
msgstr "Không thể hủy vì đang xử lý các tài liệu đã hủy."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1115
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1116
msgid "Cannot cancel because submitted Stock Entry {0} exists"
msgstr "Không thể hủy vì tồn tại Bút toán Kho {0} đã gửi"
@@ -9486,15 +9483,15 @@ msgstr "Không thể hủy tài liệu này vì nó được liên kết với
msgid "Cannot cancel this document as it is linked with the submitted asset {asset_link}. Please cancel the asset to continue."
msgstr "Không thể hủy tài liệu này vì nó được liên kết với tài sản đã gửi {asset_link}. Vui lòng hủy tài sản để tiếp tục."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:554
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:418
msgid "Cannot cancel transaction for Completed Work Order."
msgstr "Không thể hủy giao dịch cho Lệnh sản xuất Hoàn thành."
-#: erpnext/stock/doctype/item/item.py:994
+#: erpnext/stock/doctype/item/item.py:998
msgid "Cannot change Attributes after stock transaction. Make a new Item and transfer stock to the new Item"
msgstr "Không thể thay đổi Thuộc tính sau giao dịch tồn kho. Tạo Mặt hàng mới và chuyển tồn kho sang Mặt hàng mới"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:73
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
msgid "Cannot change Reference Document Type."
msgstr "Không thể thay đổi Loại Tài liệu Tham chiếu."
@@ -9502,11 +9499,11 @@ msgstr "Không thể thay đổi Loại Tài liệu Tham chiếu."
msgid "Cannot change Service Stop Date for item in row {0}"
msgstr "Không thể thay đổi Ngày Dừng Dịch vụ cho mặt hàng ở dòng {0}"
-#: erpnext/stock/doctype/item/item.py:985
+#: erpnext/stock/doctype/item/item.py:989
msgid "Cannot change Variant properties after stock transaction. You will have to make a new Item to do this."
msgstr "Không thể thay đổi Thuộc tính Biến thể sau giao dịch tồn kho. Bạn phải tạo Mặt hàng mới để làm việc này."
-#: erpnext/setup/doctype/company/company.py:330
+#: erpnext/setup/doctype/company/company.py:334
msgid "Cannot change company's default currency, because there are existing transactions. Transactions must be cancelled to change the default currency."
msgstr "Không thể thay đổi đơn vị tiền tệ mặc định của công ty vì có các giao dịch tồn tại. Các giao dịch phải bị hủy để thay đổi đơn vị tiền tệ mặc định."
@@ -9522,11 +9519,11 @@ msgstr "Không thể chuyển Trung tâm Chi phí sang sổ cái vì có nút co
msgid "Cannot convert Task to non-group because the following child Tasks exist: {0}."
msgstr "Không thể chuyển Công việc sang không phải nhóm vì tồn tại các Công việc con sau: {0}."
-#: erpnext/accounts/doctype/account/account.py:440
+#: erpnext/accounts/doctype/account/account.py:444
msgid "Cannot convert to Group because Account Type is selected."
msgstr "Không thể chuyển sang Nhóm vì Loại Tài khoản đã được chọn."
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "Không thể chuyển sang Nhóm vì Loại Tài khoản đã được chọn."
@@ -9534,7 +9531,7 @@ msgstr "Không thể chuyển sang Nhóm vì Loại Tài khoản đã được c
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "Không thể tạo Bút toán Dự trữ Tồn kho cho Biên nhận Mua hàng có ngày tương lai."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "Không thể tạo Danh sách chọn cho Đơn hàng bán {0} vì có tồn kho đã dự trữ. Vui lòng hủy dự trữ tồn kho để tạo danh sách chọn."
@@ -9560,7 +9557,7 @@ msgstr "Không thể tuyên bố là thất bại vì Đã tạo Báo giá."
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "Không thể khấu trừ khi loại là 'Định giá' hoặc 'Định giá và Tổng'"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "Không thể xóa dòng Lãi/Lỗ Chênh lệch Tỷ giá"
@@ -9568,12 +9565,12 @@ msgstr "Không thể xóa dòng Lãi/Lỗ Chênh lệch Tỷ giá"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "Không thể xóa Số Serial {0} vì nó được sử dụng trong các giao dịch tồn kho"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr "Không thể xóa mặt hàng đã được đặt"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr "Không thể xóa DocType cốt lõi được bảo vệ: {0}"
@@ -9585,7 +9582,7 @@ msgstr "Không thể xóa DocType ảo: {0}. DocType ảo không có bảng cơ
msgid "Cannot disable Serial and Batch No for Item, as there are existing records for serial / batch."
msgstr "Không thể vô hiệu hóa Serial và Số Lô cho Mặt hàng vì có các bản ghi serial / batch tồn tại."
-#: erpnext/setup/doctype/company/company.py:560
+#: erpnext/setup/doctype/company/company.py:564
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 "Không thể vô hiệu hóa tồn kho vĩnh viễn vì có các Bút toán Sổ cái Tồn kho cho công ty {0}. Vui lòng hủy các giao dịch tồn kho trước và thử lại."
@@ -9593,20 +9590,20 @@ msgstr "Không thể vô hiệu hóa tồn kho vĩnh viễn vì có các Bút to
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr "Không thể vô hiệu hóa {0} vì có thể dẫn đến định giá tồn kho không chính xác."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "Không thể tháo dỡ nhiều hơn số lượng đã sản xuất."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "Không thể bật Tài khoản Tồn kho theo Mặt hàng vì có các Bút toán Sổ cái Tồn kho cho công ty {0} với Tài khoản Tồn kho theo Kho. Vui lòng hủy các giao dịch tồn kho trước và thử lại."
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "Không thể đảm bảo giao hàng theo Serial No vì Mặt hàng {0} được thêm có và không có Đảm bảo Giao hàng theo Serial No."
@@ -9622,7 +9619,7 @@ msgstr "Không tìm thấy Mặt hàng hoặc Kho với Barcode này"
msgid "Cannot find Item with this Barcode"
msgstr "Không tìm thấy Mặt hàng với Barcode này"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "Không tìm thấy kho mặc định cho mặt hàng {0}. Vui lòng đặt một kho trong Mặt hàng chủ hoặc trong Cài đặt Kho."
@@ -9630,15 +9627,15 @@ msgstr "Không tìm thấy kho mặc định cho mặt hàng {0}. Vui lòng đ
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr "Không thể hợp nhất {0} '{1}' thành '{2}' vì cả hai đều có bút toán kế toán bằng các đơn vị tiền tệ khác nhau cho công ty '{3}'."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr "Không thể sản xuất nhiều Mặt hàng {0} hơn số lượng Đơn hàng bán {1} {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "Không thể sản xuất nhiều mặt hàng cho {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "Không thể sản xuất nhiều hơn {0} mặt hàng cho {1}"
@@ -9646,12 +9643,12 @@ msgstr "Không thể sản xuất nhiều hơn {0} mặt hàng cho {1}"
msgid "Cannot receive from customer against negative outstanding"
msgstr "Không thể nhận từ khách hàng đối với số dư âm"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr "Không thể giảm số lượng nhỏ hơn số lượng đã đặt hoặc đã mua"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "Không thể tham chiếu số dòng lớn hơn hoặc bằng số dòng hiện tại cho loại Phí này"
@@ -9664,14 +9661,14 @@ msgstr "Không thể truy xuất mã liên kết để cập nhật. Kiểm tra
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "Không thể truy xuất mã liên kết. Kiểm tra Nhật ký Lỗi để biết thêm thông tin"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9685,7 +9682,7 @@ msgstr "Không thể đặt là Thất bại vì Đơn hàng bán đã được
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "Không thể đặt ủy quyền dựa trên Chiết khấu cho {0}"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "Không thể đặt nhiều Mặc định Mặt hàng cho một công ty."
@@ -9693,11 +9690,11 @@ msgstr "Không thể đặt nhiều Mặc định Mặt hàng cho một công ty
msgid "Cannot set multiple account rows for the same company"
msgstr "Không thể đặt nhiều dòng tài khoản cho cùng một công ty"
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "Không thể đặt số lượng nhỏ hơn số lượng đã giao."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "Không thể đặt số lượng nhỏ hơn số lượng đã nhận."
@@ -9709,7 +9706,7 @@ msgstr "Không thể đặt trường {0} để sao chép trong các bi
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr "Không thể bắt đầu xóa. Xóa khác {0} đã được xếp hàng/chạy. Vui lòng đợi cho đến khi hoàn thành."
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr "Không thể cập nhật tỷ giá vì mặt hàng {0} đã được đặt hoặc mua đối với báo giá này"
@@ -9742,7 +9739,7 @@ msgstr "Công suất (Đơn vị Tồn kho)"
msgid "Capacity Planning"
msgstr "Quy hoạch Công suất"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "Lỗi Quy hoạch Công suất, thời gian bắt đầu dự kiến không thể giống thời gian kết thúc"
@@ -9761,13 +9758,13 @@ msgstr "Công suất theo Đơn vị Tồn kho"
msgid "Capacity must be greater than 0"
msgstr "Công suất phải lớn hơn 0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "Thiết bị Vốn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "Vốn Cổ phần"
@@ -9984,7 +9981,7 @@ msgstr "Chi tiết Danh mục"
msgid "Category-wise Asset Value"
msgstr "Giá trị Tài sản theo Danh mục"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "Cảnh báo"
@@ -10089,7 +10086,7 @@ msgstr "Thay đổi ngày phát hành"
msgid "Change in Stock Value"
msgstr "Thay đổi Giá trị Tồn kho"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "Thay đổi loại tài khoản thành Phải thu hoặc chọn tài khoản khác."
@@ -10099,7 +10096,7 @@ msgstr "Thay đổi loại tài khoản thành Phải thu hoặc chọn tài kho
msgid "Change this date manually to setup the next synchronization start date"
msgstr "Thay đổi ngày này thủ công để thiết lập ngày bắt đầu đồng bộ tiếp theo"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "Đã thay đổi tên khách hàng thành '{}' vì '{}' đã tồn tại."
@@ -10107,7 +10104,7 @@ msgstr "Đã thay đổi tên khách hàng thành '{}' vì '{}' đã tồn tại
msgid "Changes in {0}"
msgstr "Thay đổi trong {0}"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "Không cho phép thay đổi Nhóm Khách hàng cho Khách hàng đã chọn."
@@ -10122,7 +10119,7 @@ msgid "Channel Partner"
msgstr "Đối tác Kênh"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "Phí loại 'Thực tế' ở dòng {0} không thể bao gồm trong Đơn giá Mặt hàng hoặc Số tiền Đã thanh toán"
@@ -10176,7 +10173,7 @@ msgstr "Cây biểu đồ"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10319,7 +10316,7 @@ msgstr "Chiều rộng Séc"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "Ngày Séc/Ttham chiếu"
@@ -10377,7 +10374,7 @@ msgstr "Tên Doc Con"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "Tham chiếu Dòng Con"
@@ -10429,6 +10426,11 @@ msgstr "Phân loại Khách hàng theo khu vực"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10571,11 +10573,11 @@ msgstr "Tài liệu đã đóng"
msgid "Closed Documents"
msgstr "Tài liệu đã đóng"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "Lệnh Sản xuất Đã đóng không thể dừng hoặc Mở lại"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "Đơn hàng Đã đóng không thể hủy. Bỏ đóng để hủy."
@@ -10827,11 +10829,17 @@ msgstr "Tỷ lệ Hoa hồng %"
msgid "Commission Rate (%)"
msgstr "Tỷ lệ Hoa hồng (%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "Hoa hồng trên Bán hàng"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10862,7 +10870,7 @@ msgstr "Khe Thời gian Phương tiện Giao tiếp"
msgid "Communication Medium Type"
msgstr "Loại Phương tiện Giao tiếp"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "In Mặt hàng Gọn"
@@ -11261,8 +11269,8 @@ msgstr "Công ty"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11315,7 +11323,7 @@ msgstr "Công ty"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11404,18 +11412,20 @@ msgstr "Hiển thị Địa chỉ Công ty"
msgid "Company Address Name"
msgstr "Tên Địa chỉ Công ty"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "Địa chỉ Công ty đang thiếu. Bạn không có quyền cập nhật nó. Vui lòng liên hệ Quản trị Hệ thống."
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "Tài khoản ngân hàng công ty"
@@ -11511,7 +11521,7 @@ msgstr "Công ty và Ngày đăng là bắt buộc"
msgid "Company and account filters not set!"
msgstr "Bộ lọc Công ty và tài khoản chưa được đặt!"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "Đơn vị tiền tệ của cả hai công ty phải khớp nhau cho Giao dịch Nội bộ."
@@ -11546,7 +11556,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr "Tên trường liên kết công ty được sử dụng để lọc (tùy chọn - để trống để xóa tất cả bản ghi)"
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "Tên công ty không giống nhau"
@@ -11585,12 +11595,12 @@ msgstr "Công ty đại diện nhà cung cấp nội bộ"
msgid "Company {0} added multiple times"
msgstr "Công ty {0} được thêm nhiều lần"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "Công ty {0} không tồn tại"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "Công ty {0} được thêm nhiều hơn một lần"
@@ -11632,7 +11642,7 @@ msgstr "Tên Đối thủ"
msgid "Competitors"
msgstr "Đối thủ"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "Hoàn thành Công việc"
@@ -11679,12 +11689,12 @@ msgstr "Dự án Đã hoàn thành"
msgid "Completed Qty"
msgstr "Số lượng Hoàn thành"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "Số lượng Hoàn thành không thể lớn hơn 'Số lượng để Sản xuất'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "Số lượng Đã hoàn thành"
@@ -11873,7 +11883,7 @@ msgstr "Xem xét Chiều Kế toán"
msgid "Consider Minimum Order Qty"
msgstr "Xem xét Số lượng Đặt hàng Tối thiểu"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "Xem xét Tổn thất Quy trình"
@@ -12067,7 +12077,7 @@ msgstr "Chi phí các mặt hàng đã tiêu thụ"
msgid "Consumed Qty"
msgstr "Số lượng tiêu thụ"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "Số lượng đã tiêu thụ không thể lớn hơn Số lượng Đã đặt cho mặt hàng {0}"
@@ -12096,7 +12106,7 @@ msgstr "Mặt hàng Tồn kho đã tiêu thụ, Mặt hàng Tài sản đã tiê
msgid "Consumed Stock Total Value"
msgstr "Tổng giá trị Tồn kho đã tiêu thụ"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr "Số lượng đã tiêu thụ của mặt hàng {0} vượt quá số lượng đã chuyển."
@@ -12224,7 +12234,7 @@ msgstr "Số Liên hệ"
msgid "Contact Person"
msgstr "Người liên hệ"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "Người liên hệ không thuộc về {0}"
@@ -12350,6 +12360,11 @@ msgstr "Kiểm soát Giao dịch Tồn kho Lịch sử"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12410,7 +12425,7 @@ msgstr "Hệ số Chuyển đổi"
msgid "Conversion Rate"
msgstr "Tỷ lệ chuyển đổi"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "Hệ số chuyển đổi cho Đơn vị Đo lường mặc định phải là 1 ở hàng {0}"
@@ -12418,15 +12433,15 @@ msgstr "Hệ số chuyển đổi cho Đơn vị Đo lường mặc định ph
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "Hệ số chuyển đổi cho mặt hàng {0} đã được đặt lại thành 1.0 vì đơn vị {1} giống như đơn vị tồn kho {2}."
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "Tỷ giá chuyển đổi không thể là 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "Tỷ giá chuyển đổi là 1.00, nhưng đơn vị tiền tệ của tài liệu khác với đơn vị tiền tệ công ty"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "Tỷ giá chuyển đổi phải là 1.00 nếu đơn vị tiền tệ của tài liệu giống với đơn vị tiền tệ công ty"
@@ -12503,13 +12518,13 @@ msgstr "Sửa chữa"
msgid "Corrective Action"
msgstr "Hành động Sửa chữa"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "Thẻ Công việc Sửa chữa"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "Hoạt động Sửa chữa"
@@ -12676,7 +12691,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12809,7 +12824,7 @@ msgstr "Trung tâm Chi phí {} là trung tâm chi phí nhóm và các trung tâm
msgid "Cost Center: {0} does not exist"
msgstr "Trung tâm chi phí: {0} không tồn tại"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "Các Trung tâm Chi phí"
@@ -12852,17 +12867,13 @@ msgstr "Chi phí Các mặt hàng đã giao"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "Giá vốn Hàng bán"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "Tài khoản Giá vốn Hàng bán trong Bảng Mặt hàng"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "Chi phí Các mặt hàng đã xuất"
@@ -12942,7 +12953,7 @@ msgstr "Không thể Xóa Dữ liệu Demo"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "Không thể tự động tạo Khách hàng do thiếu (các) trường bắt buộc sau:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "Không thể tạo Thông báo Tín dụng tự động, vui lòng bỏ chọn 'Phát hành Thông báo Tín dụng' và gửi lại"
@@ -13131,7 +13142,7 @@ msgstr "Tạo Hóa đơn"
msgid "Create Item"
msgstr "Tạo Mặt hàng"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "Tạo Thẻ Công việc"
@@ -13163,7 +13174,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "Tạo Bút toán Sổ cái cho Số tiền Thay đổi"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "Tạo Liên kết"
@@ -13230,7 +13241,7 @@ msgstr "Tạo Mục Thanh toán cho Hóa đơn POS Hợp nhất."
msgid "Create Payment Request"
msgstr "Tạo Yêu cầu Thanh toán"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "Tạo Danh sách chọn"
@@ -13375,7 +13386,7 @@ msgstr "Tạo Công việc"
msgid "Create Tasks"
msgstr "Tạo các Công việc"
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "Tạo Mẫu Thuế"
@@ -13413,12 +13424,12 @@ msgstr "Tạo Quyền Người dùng"
msgid "Create Users"
msgstr "Tạo người dùng"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "Tạo biến thể"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "Tạo các biến thể"
@@ -13449,12 +13460,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "Tạo biến thể với hình ảnh khuôn mẫu."
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "Tạo một giao dịch chứng khoán đến cho Mặt hàng."
@@ -13488,7 +13499,7 @@ msgstr "Tạo {0} {1}?"
msgid "Created By Migration"
msgstr "Được tạo bởi Di chuyển"
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "Đã tạo {0} thẻ điểm cho {1} giữa:"
@@ -13521,7 +13532,7 @@ msgstr "Đang tạo Phiếu giao hàng..."
msgid "Creating Delivery Schedule..."
msgstr "Đang tạo Lịch giao hàng..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "Đang tạo Chiều..."
@@ -13716,7 +13727,7 @@ msgstr "Số ngày Tín dụng"
msgid "Credit Limit"
msgstr "Hạn mức tín dụng"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "Hạn mức Tín dụng đã bị vượt"
@@ -13726,12 +13737,6 @@ msgstr "Hạn mức Tín dụng đã bị vượt"
msgid "Credit Limit Settings"
msgstr "Cài đặt Hạn mức Tín dụng"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "Hạn mức Tín dụng và Điều khoản Thanh toán"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "Hạn mức Tín dụng:"
@@ -13763,7 +13768,7 @@ msgstr "Tháng tín dụng"
#: 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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13791,7 +13796,7 @@ msgstr "Đã phát hành Ghi Nợ"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "Ghi chú Tín dụng sẽ cập nhật số tiền còn nợ của chính nó, ngay cả khi 'Trả lại đối với' được chỉ định."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "Ghi chú Tín dụng {0} đã được tạo tự động"
@@ -13799,7 +13804,7 @@ msgstr "Ghi chú Tín dụng {0} đã được tạo tự động"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "Ghi nợ vào"
@@ -13808,20 +13813,20 @@ msgstr "Ghi nợ vào"
msgid "Credit in Company Currency"
msgstr "Ghi nợ theo Tiền tệ Công ty"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "Hạn mức tín dụng đã bị vượt cho khách hàng {0} ({1}/{2})"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "Hạn mức tín dụng đã được xác định cho Công ty {0}"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "Đã đạt hạn mức tín dụng cho khách hàng {0}"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13829,8 +13834,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "Tỷ lệ Vòng quay Công nợ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "Các khoản phải trả"
@@ -14000,7 +14005,7 @@ msgstr "Tỷ giá Tiền tệ phải được áp dụng cho Mua hoặc Bán."
msgid "Currency and Price List"
msgstr "Tiền tệ và Danh sách giá"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "Tiền tệ không thể thay đổi sau khi đã tạo các bút toán sử dụng một tiền tệ khác"
@@ -14010,7 +14015,7 @@ msgstr "Bộ lọc tiền tệ hiện không được hỗ trợ trong Báo cáo
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "Tiền tệ cho {0} phải là {1}"
@@ -14093,8 +14098,8 @@ msgstr "Ngày bắt đầu hóa đơn hiện tại"
msgid "Current Level"
msgstr "Cấp độ Hiện tại"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "Nợ ngắn hạn"
@@ -14161,6 +14166,11 @@ msgstr "Tồn kho Hiện tại"
msgid "Current Valuation Rate"
msgstr "Tỷ giá Định giá Hiện tại"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "Đường cong"
@@ -14256,7 +14266,6 @@ msgstr "Dấu phân cách tùy chỉnh"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14363,7 +14372,6 @@ msgstr "Dấu phân cách tùy chỉnh"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14452,8 +14460,8 @@ msgstr "Địa chỉ khách hàng"
msgid "Customer Addresses And Contacts"
msgstr "Địa chỉ và Liên hệ Khách hàng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr "Tạm ứng Khách hàng"
@@ -14467,7 +14475,7 @@ msgstr "Mã khách hàng"
#. 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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14550,6 +14558,7 @@ msgstr "Phản hồi của Khách hàng"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14572,7 +14581,7 @@ msgstr "Phản hồi của Khách hàng"
#: 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14589,6 +14598,7 @@ msgstr "Phản hồi của Khách hàng"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14632,7 +14642,7 @@ msgstr "Mặt hàng Khách hàng"
msgid "Customer Items"
msgstr "Các Mặt hàng Khách hàng"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "LPO của Khách hàng"
@@ -14684,7 +14694,7 @@ msgstr "Số Điện thoại Di động Khách hàng"
#: 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14790,7 +14800,7 @@ msgstr "Khách hàng cung cấp"
msgid "Customer Provided Item Cost"
msgstr "Chi phí Mặt hàng do Khách hàng Cung cấp"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "Dịch vụ Khách hàng"
@@ -14847,9 +14857,9 @@ msgstr "Khách hàng hoặc Mặt hàng"
msgid "Customer required for 'Customerwise Discount'"
msgstr "Yêu cầu Khách hàng cho 'Giảm giá theo Khách hàng'"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "Khách hàng {0} không thuộc dự án {1}"
@@ -14961,7 +14971,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "Tóm tắt dự án hàng ngày cho {0}"
@@ -15052,7 +15062,7 @@ msgstr "Ngày sinh không thể lớn hơn ngày hôm nay."
msgid "Date of Commencement"
msgstr "Ngày bắt đầu"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "Ngày bắt đầu phải lớn hơn Ngày thành lập"
@@ -15278,7 +15288,7 @@ msgstr "Số tiền Ghi nợ theo Tiền tệ Giao dịch"
#: 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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15306,13 +15316,13 @@ msgstr "Phiếu Ghi nợ sẽ cập nhật số tiền còn nợ của chính n
#. 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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "Ghi nợ vào"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "Yêu cầu Ghi nợ vào"
@@ -15440,8 +15450,7 @@ msgstr "Tài khoản mặc định"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15467,14 +15476,14 @@ msgstr "Tài khoản Tạm ứng Mặc định"
#. Label of the default_advance_paid_account (Link) field in DocType 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:315
+#: erpnext/setup/doctype/company/company.py:319
msgid "Default Advance Paid Account"
msgstr "Tài khoản Tạm ứng đã Thanh toán Mặc định"
#. Label of the default_advance_received_account (Link) field in DocType
#. 'Company'
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "Tài khoản Tạm ứng đã Nhận Mặc định"
@@ -15489,19 +15498,19 @@ msgstr "Khoảng thời gian Quá hạn Mặc định"
msgid "Default BOM"
msgstr "BOM mặc định"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "BOM mặc định ({0}) phải đang hoạt động cho mặt hàng này hoặc khuôn mẫu của nó"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "Không tìm thấy BOM mặc định cho {0}"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "Không tìm thấy BOM mặc định cho Mục {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "Không tìm thấy BOM mặc định cho Mục {0} và Dự án {1}"
@@ -15554,9 +15563,7 @@ msgid "Default Company"
msgstr "Công ty mặc định"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "Tài khoản ngân hàng công ty mặc định"
@@ -15672,6 +15679,16 @@ msgstr "Nhóm mặt hàng mặc định"
msgid "Default Item Manufacturer"
msgstr "Nhà sản xuất mặt hàng mặc định"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15707,23 +15724,19 @@ msgid "Default Payment Request Message"
msgstr "Thông điệp yêu cầu thanh toán mặc định"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "Mẫu điều khoản thanh toán mặc định"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15846,15 +15859,15 @@ msgstr "Khu vực mặc định"
msgid "Default Unit of Measure"
msgstr "Đơn vị đo mặc định"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "Đơn vị đo mặc định cho Mặt hàng {0} không thể thay đổi trực tiếp vì Bạn đã thực hiện một số giao dịch với đơn vị đo khác. Bạn cần hủy các tài liệu liên kết hoặc tạo Mặt hàng mới."
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "Đơn vị đo mặc định cho Mặt hàng {0} không thể thay đổi trực tiếp vì Bạn đã thực hiện một số giao dịch với đơn vị đo khác. Bạn cần tạo Mặt hàng mới để sử dụng Đơn vị đo mặc định khác."
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "Đơn vị đo mặc định cho biến thể '{0}' phải giống như trong khuôn mẫu '{1}'"
@@ -15906,7 +15919,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "Cài đặt mặc định cho các giao dịch liên quan đến tồn kho"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "Mẫu thuế mặc định cho bán hàng, mua hàng và mặt hàng đã được tạo."
@@ -15997,6 +16010,12 @@ msgstr "Xác định loại dự án."
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr "Xác định ngày sau đó mặt hàng không thể còn được sử dụng trong giao dịch hoặc sản xuất"
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16079,12 +16098,12 @@ msgstr "Xóa đầu mối và địa chỉ"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "Xóa giao dịch"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "Xóa tất cả giao dịch cho công ty này"
@@ -16105,8 +16124,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "Đang xóa {0} và tất cả tài liệu mã chung liên quan..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "Đang trong quá trình xóa!"
@@ -16217,11 +16236,11 @@ msgstr "Số lượng đã giao"
msgid "Delivered Qty (in Stock UOM)"
msgstr "Số lượng đã giao (theo Đơn vị đo tồn kho)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16302,7 +16321,7 @@ msgstr "Quản lý giao hàng"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16362,11 +16381,11 @@ msgstr "Mặt hàng đã đóng gói trong phiếu giao hàng"
msgid "Delivery Note Trends"
msgstr "Xu hướng phiếu giao hàng"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "Phiếu giao hàng {0} chưa được gửi"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "Các phiếu giao hàng"
@@ -16452,10 +16471,6 @@ msgstr "Kho giao hàng"
msgid "Delivery to"
msgstr "Giao đến"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "Kho giao hàng bắt buộc cho mặt hàng tồn kho {0}"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16575,8 +16590,8 @@ msgstr "Số tiền khấu hao"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16669,7 +16684,7 @@ msgstr "Tùy chọn Khấu hao"
msgid "Depreciation Posting Date"
msgstr "Ngày Đăng Khấu hao"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "Ngày Đăng Khấu hao không thể trước Ngày Sẵn sàng Sử dụng"
@@ -16827,15 +16842,15 @@ msgstr "Chênh lệch (Nợ - Có)"
msgid "Difference Account"
msgstr "Tài khoản chênh lệch"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "Tài khoản Chênh lệch trong Bảng Mặt hàng"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "Tài khoản Chênh lệch phải là tài khoản Tài sản/Nợ phải trả (Tạm mở), vì Phiếu kho này là Phiếu mở đầu"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "Tài khoản Chênh lệch phải là tài khoản Tài sản/Nợ phải trả, vì Đối soát Kho này là Đối soát Mở đầu"
@@ -16947,15 +16962,15 @@ msgstr "Các Chiều"
msgid "Direct Expense"
msgstr "Chi phí trực tiếp"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "Chi phí trực tiếp"
#. 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:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "Thu nhập trực tiếp"
@@ -17036,6 +17051,11 @@ msgstr "Vô hiệu Tổng làm tròn"
msgid "Disable Serial No And Batch Selector"
msgstr "Vô hiệu Bộ chọn Serial No và Batch"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17072,11 +17092,11 @@ msgstr "Kho bị Vô hiệu {0} không thể được sử dụng cho giao dịc
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "Đã vô hiệu quy tắc định giá vì {} này là chuyển nội bộ"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "Đã vô hiệu giá đã bao gồm thuế vì {} này là chuyển nội bộ"
@@ -17092,7 +17112,7 @@ msgstr "Vô hiệu tự động lấy số lượng hiện có"
#. 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17100,15 +17120,15 @@ msgstr "Vô hiệu tự động lấy số lượng hiện có"
msgid "Disassemble"
msgstr "Tháo dỡ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "Lệnh Tháo dỡ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "Số lượng tháo rời không được nhỏ hơn hoặc bằng 0."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr "Số lượng Tháo dỡ không thể nhỏ hơn hoặc bằng 0 ."
@@ -17395,7 +17415,7 @@ msgstr "Lý do Tùy ý"
msgid "Dislikes"
msgstr "Không thích"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "Công văn"
@@ -17476,7 +17496,7 @@ msgstr "Tên Hiển thị"
msgid "Disposal Date"
msgstr "Ngày xử lý"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "Ngày xử lý {0} không thể trước ngày {1} {2} của tài sản."
@@ -17590,8 +17610,8 @@ msgstr "Tên phân phối"
msgid "Distributor"
msgstr "Nhà phân phối"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "Cổ tức đã trả"
@@ -17653,7 +17673,7 @@ msgstr "Không hiển thị bất kỳ ký hiệu nào như $ v.v. bên cạnh c
msgid "Do not update variants on save"
msgstr "Không cập nhật biến thể khi lưu"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "Bạn có thực sự muốn khôi phục tài sản đã thanh lý này không?"
@@ -17677,7 +17697,7 @@ msgstr "Bạn có muốn thông báo cho tất cả khách hàng qua email khôn
msgid "Do you want to submit the material request"
msgstr "Bạn có muốn gửi yêu cầu tài liệu"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "Bạn có muốn trình phiếu kho không?"
@@ -17744,11 +17764,11 @@ msgstr "Số Tài liệu"
msgid "Document Type "
msgstr "Loại Tài liệu "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "Loại Tài liệu đã được sử dụng như một chiều"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "Tài liệu"
@@ -17911,12 +17931,6 @@ msgstr "Hạng Giấy phép Lái xe"
msgid "Driving License Category"
msgstr "Hạng Giấy phép Lái xe"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "Xóa Thủ tục"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17937,12 +17951,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "Xóa các Thủ tục SQL và Chức năng hiện có được thiết lập bởi báo cáo Công nợ phải thu"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "Ngày đến hạn không thể sau {0}"
@@ -18101,8 +18109,8 @@ msgstr "Thời lượng (Ngày)"
msgid "Duration in Days"
msgstr "Thời lượng tính bằng Ngày"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "Thuế và Phí"
@@ -18185,7 +18193,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "Mỗi giao dịch"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "Sớm nhất"
@@ -18299,6 +18307,10 @@ msgstr "Phải có số lượng mục tiêu hoặc số tiền mục tiêu"
msgid "Either target qty or target amount is mandatory."
msgstr "Phải có số lượng mục tiêu hoặc số tiền mục tiêu."
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18318,8 +18330,8 @@ msgstr "Điện"
msgid "Electricity down"
msgstr "Mất điện"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "Thiết bị Điện tử"
@@ -18523,8 +18535,8 @@ msgstr "Tạm ứng Nhân viên"
msgid "Employee Advances"
msgstr "Tạm ứng Nhân viên"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 "Nghĩa vụ Phúc lợi Nhân viên"
@@ -18607,7 +18619,7 @@ msgstr "Nhân viên {0} đã có người dùng được liên kết"
msgid "Employee {0} does not belong to the company {1}"
msgstr "Nhân viên {0} không thuộc công ty {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "Nhân viên {0} hiện đang làm việc trên máy trạm khác. Vui lòng chỉ định nhân viên khác."
@@ -18623,7 +18635,7 @@ msgstr "Nhân viên"
msgid "Empty"
msgstr "Trống"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr "Danh sách Xóa Trống"
@@ -18654,7 +18666,7 @@ msgstr "Bật Lập lịch Cuộc hẹn"
msgid "Enable Auto Email"
msgstr "Bật Email Tự động"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "Bật Tự động Đặt lại"
@@ -18820,12 +18832,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18954,8 +18960,8 @@ msgstr "Ngày kết thúc không thể trước Ngày bắt đầu."
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19054,8 +19060,8 @@ msgstr "Nhập Thủ công"
msgid "Enter Serial Nos"
msgstr "Nhập Serial Nos"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "Nhập Giá trị"
@@ -19080,7 +19086,7 @@ msgstr "Nhập tên cho Danh sách Ngày lễ này."
msgid "Enter amount to be redeemed."
msgstr "Nhập số tiền để thanh toán."
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "Nhập Mã Mặt hàng, tên sẽ tự điền giống như Mã Mặt hàng khi nhấp vào trường Tên Mặt hàng."
@@ -19092,7 +19098,7 @@ msgstr "Nhập email của khách hàng"
msgid "Enter customer's phone number"
msgstr "Nhập số điện thoại của khách hàng"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "Nhập ngày thanh lý tài sản"
@@ -19136,7 +19142,7 @@ msgstr "Nhập tên của Người thụ hưởng trước khi trình."
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "Nhập tên của ngân hàng hoặc tổ chức cho vay trước khi trình."
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "Nhập các đơn vị tồn kho đầu kỳ."
@@ -19144,7 +19150,7 @@ msgstr "Nhập các đơn vị tồn kho đầu kỳ."
msgid "Enter the quantity of the Item that will be manufactured from this Bill of Materials."
msgstr "Nhập số lượng Mặt hàng sẽ được sản xuất từ Định mức Nguyên vật liệu này."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "Nhập số lượng để sản xuất. Các Mặt hàng Nguyên liệu thô sẽ chỉ được lấy khi điều này được đặt."
@@ -19156,8 +19162,8 @@ msgstr "Nhập số tiền {0}."
msgid "Entertainment & Leisure"
msgstr "Giải trí và Giải trí"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "Chi phí giải trí"
@@ -19181,8 +19187,8 @@ msgstr "Loại Bút toán"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19243,7 +19249,7 @@ msgstr "Lỗi khi đăng các bút toán khấu hao"
msgid "Error while processing deferred accounting for {0}"
msgstr "Lỗi khi xử lý kế toán deferred cho {0}"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "Lỗi khi đăng lại định giá mặt hàng"
@@ -19255,7 +19261,7 @@ msgstr "Lỗi: Tài sản này đã có {0} kỳ khấu hao được đặt.\n"
"\t\t\t\t\tNgày `bắt đầu khấu hao` phải ít nhất {1} kỳ sau ngày `sẵn sàng sử dụng`.\n"
"\t\t\t\t\tVui lòng sửa các ngày cho phù hợp."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "Lỗi: {0} là trường bắt buộc"
@@ -19301,7 +19307,7 @@ msgstr "Giao tại xưởng"
msgid "Example URL"
msgstr "URL Ví dụ"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "Ví dụ của tài liệu được liên kết: {0}"
@@ -19321,7 +19327,7 @@ msgstr "Ví dụ: ABCD.#####. Nếu series được đặt và Batch No không
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "Ví dụ: Serial No {0} đã được đặt trước trong {1}."
@@ -19331,7 +19337,7 @@ msgstr "Ví dụ: Serial No {0} đã được đặt trước trong {1}."
msgid "Exception Budget Approver Role"
msgstr "Vai trò Phê duyệt Ngân sách Ngoại lệ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19339,7 +19345,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "Vật liệu Tiêu hao Quá nhiều"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "Chuyển quá nhiều"
@@ -19370,17 +19376,17 @@ msgstr "Lãi hoặc Lỗ Chênh lệch Tỷ giá"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "Lãi/Lỗ Chênh lệch Tỷ giá"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "Số tiền Lãi/Lỗ Chênh lệch Tỷ giá đã được ghi qua {0}"
@@ -19519,7 +19525,7 @@ msgstr "Trợ lý Điều hành"
msgid "Executive Search"
msgstr "Tìm kiếm Điều hành"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "Nguồn cung được Miễn thuế"
@@ -19606,7 +19612,7 @@ msgstr "Ngày Đóng dự kiến"
msgid "Expected Delivery Date"
msgstr "Ngày Giao hàng Dự kiến"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "Ngày Giao hàng Dự kiến phải sau Ngày Đơn hàng Bán"
@@ -19690,7 +19696,7 @@ msgstr "Giá trị Sau Thời gian Sử dụng"
msgid "Expense"
msgstr "Chi phí"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "Tài khoản Chi phí / Chênh lệch ({0}) phải là tài khoản 'Lãi hoặc Lỗ'"
@@ -19768,23 +19774,23 @@ msgstr "Tài khoản chi phí là bắt buộc đối với mục {0}"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "Chi phí"
#. 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:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "Chi phí Bao gồm trong Định giá Tài sản"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "Chi phí Bao gồm trong Định giá"
@@ -19863,7 +19869,7 @@ msgstr "Lịch sử Công việc Bên ngoài"
msgid "Extra Consumed Qty"
msgstr "Số lượng Tiêu hao Thêm"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "Số lượng Thẻ công việc Thêm"
@@ -20000,7 +20006,7 @@ msgstr "Không thể thiết lập công ty"
msgid "Failed to setup defaults"
msgstr "Không thể thiết lập giá trị mặc định"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "Không thể thiết lập giá trị mặc định cho quốc gia {0}. Vui lòng liên hệ hỗ trợ."
@@ -20118,6 +20124,11 @@ msgstr "Tìm nạp giá trị từ"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "Tìm nạp BOM mở rộng (bao gồm các phân hợp)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "Chỉ tìm nạp {0} số sê-ri có sẵn."
@@ -20155,21 +20166,29 @@ msgstr "Ánh xạ trường"
msgid "Field in Bank Transaction"
msgstr "Trường trong giao dịch ngân hàng"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "Các trường sẽ chỉ được sao chép khi tạo."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr "Tệp không thuộc về Bản ghi xóa giao dịch này"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr "Không tìm thấy tệp"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr "Không tìm thấy tệp trên máy chủ"
@@ -20377,9 +20396,9 @@ msgstr "Năm tài chính bắt đầu vào"
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 "Báo cáo tài chính sẽ được tạo bằng cách sử dụng các doctype GL Entry (nên được bật nếu Chứng từ đóng kỳ không được đăng tuần tự cho tất cả các năm hoặc bị thiếu)"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "Hoàn thành"
@@ -20436,15 +20455,15 @@ msgstr "Số lượng mặt hàng thành phẩm"
msgid "Finished Good Item Quantity"
msgstr "Số lượng mặt hàng thành phẩm"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "Mặt hàng thành phẩm không được chỉ định cho mặt hàng dịch vụ {0}"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "Số lượng mặt hàng thành phẩm {0} không thể bằng không"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "Mặt hàng thành phẩm {0} phải là mặt hàng ký gửi"
@@ -20490,7 +20509,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "Thành phẩm {0} phải là mặt hàng ký gửi."
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "Thành phẩm"
@@ -20531,7 +20550,7 @@ msgstr "Kho thành phẩm"
msgid "Finished Goods based Operating Cost"
msgstr "Chi phí vận hành dựa trên thành phẩm"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "Mặt hàng thành phẩm {0} không khớp với Lệnh sản xuất {1}"
@@ -20672,6 +20691,7 @@ msgstr "Cố định"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "Tài sản cố định"
@@ -20690,7 +20710,7 @@ msgstr "Tài khoản tài sản cố định"
msgid "Fixed Asset Defaults"
msgstr "Mặc định tài sản cố định"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "Mặt hàng tài sản cố định phải là mặt hàng không tồn kho."
@@ -20709,8 +20729,8 @@ msgstr "Tỷ lệ quay vòng tài sản cố định"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "Mặt hàng tài sản cố định {0} không thể được sử dụng trong BOM."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "Tài sản cố định"
@@ -20783,7 +20803,7 @@ msgstr "Theo tháng trong lịch"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "Các yêu cầu vật liệu sau đã được tạo tự động dựa trên mức đặt hàng lại của mặt hàng"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "Các trường sau là bắt buộc để tạo địa chỉ:"
@@ -20840,7 +20860,7 @@ msgstr "Cho công ty"
msgid "For Item"
msgstr "Cho mặt hàng"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "Đối với mặt hàng {0}, không thể nhận nhiều hơn {1} số lượng cho {2} {3}"
@@ -20850,7 +20870,7 @@ msgid "For Job Card"
msgstr "Cho thẻ công việc"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "Cho hoạt động"
@@ -20871,17 +20891,13 @@ msgstr "Cho bảng giá"
msgid "For Production"
msgstr "Cho sản xuất"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "Số lượng (Số lượng sản xuất) là bắt buộc"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "Cho nguyên vật liệu"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "Đối với hóa đơn trả lại có tác động tồn kho, các mặt hàng có số lượng '0' không được phép. Các dòng sau bị ảnh hưởng: {0}"
@@ -20909,11 +20925,11 @@ msgstr "Cho kho"
msgid "For Work Order"
msgstr "Cho lệnh sản xuất"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "Đối với mặt hàng {0}, số lượng phải là số âm"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "Đối với mặt hàng {0}, số lượng phải là số dương"
@@ -20951,7 +20967,7 @@ msgstr "Cho nhà cung cấp cá nhân"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "Đối với mặt hàng {0} , chỉ có {1} tài sản đã được tạo hoặc liên kết với {2} . Vui lòng tạo hoặc liên kết thêm {3} tài sản với tài liệu tương ứng."
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "Đối với mặt hàng {0}, tỷ lệ phải là số dương. Để cho phép tỷ lệ âm, hãy bật {1} trong {2}"
@@ -20965,7 +20981,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr "Đối với hoạt động {0} tại dòng {1}, vui lòng thêm nguyên vật liệu hoặc đặt BOM cho nó."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "Đối với hoạt động {0}: Số lượng ({1}) không thể lớn hơn số lượng chờ xử lý ({2})"
@@ -20982,7 +20998,7 @@ msgstr "Cho dự án - {0}, cập nhật trạng thái của bạn"
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "Đối với số lượng dự kiến và dự báo, hệ thống sẽ xem xét tất cả các kho con theo kho mẹ đã chọn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "Số lượng {0} không được lớn hơn số lượng cho phép {1}"
@@ -20991,12 +21007,12 @@ msgstr "Số lượng {0} không được lớn hơn số lượng cho phép {1}
msgid "For reference"
msgstr "Để tham khảo"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "Cho dòng {0} trong {1}. Để bao gồm {2} trong tỷ lệ mặt hàng, các dòng {3} cũng phải được bao gồm"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "Cho dòng {0}: Nhập số lượng kế hoạch"
@@ -21015,7 +21031,7 @@ msgstr "Đối với điều kiện 'Áp dụng quy tắc cho người khác', t
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "Để thuận tiện cho khách hàng, các mã này có thể được sử dụng trong các mẫu in như hóa đơn và phiếu giao hàng"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr "Đối với mặt hàng {0}, số lượng tiêu thụ phải là {1} theo BOM {2}."
@@ -21062,11 +21078,6 @@ msgstr "Dự báo"
msgid "Forecast Demand"
msgstr "Nhu cầu dự báo"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "Số lượng dự báo"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21112,7 +21123,7 @@ msgstr "Bài đăng diễn đàn"
msgid "Forum URL"
msgstr "URL diễn đàn"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr "Trường Frappe"
@@ -21157,8 +21168,8 @@ msgstr "Mặt hàng miễn phí chưa được đặt trong quy tắc định gi
msgid "Freeze Stocks Older Than (Days)"
msgstr "Đóng băng tồn kho cũ hơn (Ngày)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "Phí vận chuyển và giao nhận"
@@ -21592,8 +21603,8 @@ msgstr "Đã thanh toán hoàn toàn"
msgid "Furlong"
msgstr "Furlong"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "Nội thất và trang thiết bị"
@@ -21610,13 +21621,13 @@ msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Các nút mới chỉ có thể được tạo dưới các nút loại 'Nhóm'"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:188
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:179
msgid "Future Payment Amount"
msgstr "Số tiền thanh toán trong tương lai"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:187
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "Tham chiếu thanh toán trong tương lai"
@@ -21624,7 +21635,7 @@ msgstr "Tham chiếu thanh toán trong tương lai"
msgid "Future Payments"
msgstr "Thanh toán trong tương lai"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "Ngày trong tương lai không được phép"
@@ -21709,9 +21720,9 @@ msgstr "Lãi/Lỗ đã được hạch toán"
msgid "Gain/Loss from Revaluation"
msgstr "Lãi/Lỗ từ đánh giá lại"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "Lãi/Lỗ khi thanh lý tài sản"
@@ -21884,7 +21895,7 @@ msgstr "Lấy số dư"
msgid "Get Current Stock"
msgstr "Lấy tồn kho hiện tại"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "Lấy chi tiết nhóm khách hàng"
@@ -21942,7 +21953,7 @@ msgstr "Nhận vị trí vật phẩm"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -21981,7 +21992,7 @@ msgstr "Lấy vật phẩm từ BOM"
msgid "Get Items from Material Requests against this Supplier"
msgstr "Lấy vật phẩm từ yêu cầu vật tư đối với nhà cung cấp này"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "Lấy vật phẩm từ gói sản phẩm"
@@ -22155,7 +22166,7 @@ msgstr "Mục tiêu"
msgid "Goods"
msgstr "Hàng hóa"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "Hàng hóa đang vận chuyển"
@@ -22164,7 +22175,7 @@ msgstr "Hàng hóa đang vận chuyển"
msgid "Goods Transferred"
msgstr "Hàng hóa đã chuyển"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "Hàng hóa đã được nhận đối với bút toán xuất {0}"
@@ -22347,7 +22358,7 @@ msgstr "Tổng cộng phải khớp với tổng các tham chiếu thanh toán"
msgid "Grant Commission"
msgstr "Hoa hồng tạm ứng"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "Số tiền lớn hơn"
@@ -22790,7 +22801,7 @@ msgstr "Giúp bạn phân bổ Ngân sách/Mục tiêu qua các tháng nếu b
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "Đây là nhật ký lỗi cho các bút toán khấu hao thất bại đã đề cập: {0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "Dưới đây là các tùy chọn để tiếp tục:"
@@ -22818,7 +22829,7 @@ msgstr "Ở đây, các ngày nghỉ hàng tuần của bạn được điền s
msgid "Hertz"
msgstr "Hertz"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "Xin chào,"
@@ -23017,7 +23028,7 @@ msgstr "Cách định dạng và trình bày giá trị trong báo cáo tài ch
msgid "Hrs"
msgstr "Giờ"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "Nhân sự"
@@ -23185,6 +23196,12 @@ msgstr "Nếu được chọn, số thuế sẽ được coi là đã bao gồm
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "Nếu được chọn, số thuế sẽ được coi là đã bao gồm trong Tỷ lệ in / Số tiền in"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "Nếu được chọn, chúng tôi sẽ tạo dữ liệu demo để bạn khám phá hệ thống. Dữ liệu demo này có thể được xóa sau."
@@ -23405,7 +23422,7 @@ msgstr ""
msgid "If no taxes are set, and Taxes and Charges Template is selected, the system will automatically apply the taxes from the chosen template."
msgstr "Nếu không có thuế nào được đặt và Mẫu thuế và phí được chọn, hệ thống sẽ tự động áp dụng thuế từ mẫu đã chọn."
-#: erpnext/stock/stock_ledger.py:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "Nếu không, bạn có thể Hủy / Gửi mục này"
@@ -23431,13 +23448,18 @@ msgstr ""
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 "Nếu Quy tắc định giá được chọn là cho 'Tỷ lệ', nó sẽ ghi đè Bảng giá. Tỷ lệ quy tắc định giá là tỷ lệ cuối cùng, vì vậy không nên áp dụng chiết khấu thêm. Do đó, trong các giao dịch như Đơn đặt hàng, Đơn mua hàng, v.v., nó sẽ được tìm nạp trong trường 'Tỷ lệ', thay vì trường 'Tỷ lệ bảng giá'."
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "Nếu được đặt, hệ thống không sử dụng Email của người dùng hoặc tài khoản Email gửi tiêu chuẩn để gửi yêu cầu báo giá."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "Nếu BOM tạo ra nguyên vật liệu phế liệu, Kho phế liệu cần được chọn."
@@ -23446,7 +23468,7 @@ msgstr "Nếu BOM tạo ra nguyên vật liệu phế liệu, Kho phế liệu c
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "Nếu tài khoản bị đóng băng, các mục được phép cho người dùng hạn chế."
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "Nếu mặt hàng đang giao dịch như một mặt hàng có tỷ lệ định giá bằng không trong mục này, vui lòng bật 'Cho phép tỷ lệ định giá bằng không' trong bảng mặt hàng {0}."
@@ -23456,7 +23478,7 @@ msgstr "Nếu mặt hàng đang giao dịch như một mặt hàng có tỷ lệ
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 "Nếu kiểm tra đặt hàng lại được đặt ở cấp kho nhóm, số lượng có sẵn trở thành tổng các số lượng dự kiến của tất cả các kho con của nó."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "Nếu BOM đã chọn có đề cập đến các Hoạt động, hệ thống sẽ tìm nạp tất cả Hoạt động từ BOM, các giá trị này có thể được thay đổi."
@@ -23533,7 +23555,7 @@ msgstr "Nếu điểm tích lũy không có hạn, hãy để Thời hạn hết
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "Nếu có, thì kho này sẽ được sử dụng để lưu trữ nguyên vật liệu bị từ chối"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "Nếu bạn đang duy trì tồn kho của mặt hàng này trong Kho của mình, ERPNext sẽ tạo một mục sổ tồn kho cho mỗi giao dịch của mặt hàng này."
@@ -23547,7 +23569,7 @@ msgstr "Nếu bạn cần đối chiếu các giao dịch cụ thể với nhau,
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "Nếu bạn vẫn muốn tiếp tục, vui lòng tắt hộp kiểm 'Bỏ qua các mặt hàng phân hợp có sẵn'."
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "Nếu bạn vẫn muốn tiếp tục, vui lòng bật {0}."
@@ -23631,7 +23653,7 @@ msgstr "Bỏ qua đánh giá lại tỷ giá và nhật ký lãi/lỗ"
msgid "Ignore Existing Ordered Qty"
msgstr "Bỏ qua số lượng đã đặt hiện có"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "Bỏ qua số lượng dự kiến hiện có"
@@ -23718,12 +23740,12 @@ msgstr "Bỏ qua chồng chéo thời gian trạm làm việc"
msgid "Ignores legacy Is Opening field in GL Entry that allows adding opening balance post the system is in use while generating reports"
msgstr "Bỏ qua trường Is Opening cũ trong GL Entry cho phép thêm số dư đầu kỳ sau khi hệ thống đang sử dụng trong khi tạo báo cáo"
-#: erpnext/stock/doctype/item/item.py:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr "Hình ảnh trong mô tả đã bị xóa. Để tắt hành vi này, hãy bỏ chọn \"{0}\" trong {1}."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "Suy giảm"
@@ -23881,7 +23903,7 @@ msgstr "Đang sản xuất"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "Trong số lượng"
@@ -24005,7 +24027,7 @@ msgstr "Trong trường hợp chương trình đa cấp, Khách hàng sẽ đư
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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "Trong phần này, bạn có thể định nghĩa các mặc định liên quan đến giao dịch toàn công ty cho mặt hàng này. Ví dụ: Kho mặc định, Bảng giá mặc định, Nhà cung cấp, v.v."
@@ -24236,8 +24258,8 @@ msgstr "Bao gồm các mục cho phân hợp"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24308,7 +24330,7 @@ msgstr "Thanh toán đến"
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24340,7 +24362,7 @@ msgstr "Số lượng số dư không đúng sau giao dịch"
msgid "Incorrect Batch Consumed"
msgstr "Lô tiêu thụ không đúng"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "Kiểm tra không đúng trong kho (nhóm) để đặt lại"
@@ -24348,7 +24370,7 @@ msgstr "Kiểm tra không đúng trong kho (nhóm) để đặt lại"
msgid "Incorrect Company"
msgstr "Công ty không đúng"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "Số lượng thành phần không đúng"
@@ -24482,15 +24504,15 @@ msgstr "Cho biết gói hàng là một phần của lần giao này (Chỉ bả
msgid "Indirect Expense"
msgstr "Chi phí gián tiếp"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "Chi phí gián tiếp"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "Thu nhập gián tiếp"
@@ -24558,14 +24580,14 @@ msgstr "Đã khởi tạo"
msgid "Inspected By"
msgstr "Được kiểm tra bởi"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "Kiểm tra bị từ chối"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "Yêu cầu kiểm tra"
@@ -24582,8 +24604,8 @@ msgstr "Yêu cầu kiểm tra trước khi giao hàng"
msgid "Inspection Required before Purchase"
msgstr "Yêu cầu kiểm tra trước khi mua"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "Gửi kiểm tra"
@@ -24613,7 +24635,7 @@ msgstr "Lưu ý cài đặt"
msgid "Installation Note Item"
msgstr "Mục phiếu cài đặt"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "Phiếu cài đặt {0} đã được gửi"
@@ -24652,11 +24674,11 @@ msgstr "Hướng dẫn"
msgid "Insufficient Capacity"
msgstr "Dung lượng không đủ"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "Không đủ quyền"
@@ -24664,13 +24686,12 @@ msgstr "Không đủ quyền"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "Tồn kho không đủ"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "Tồn kho không đủ cho lô"
@@ -24790,13 +24811,13 @@ msgstr "Tham chiếu chuyển kho nội bộ"
msgid "Interest"
msgstr "Lãi suất"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr "Chi phí lãi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr "Thu nhập lãi"
@@ -24804,8 +24825,8 @@ msgstr "Thu nhập lãi"
msgid "Interest and/or dunning fee"
msgstr "Lãi và/hoặc phí đòi nợ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr "Lãi tiền gửi cố định"
@@ -24825,7 +24846,7 @@ msgstr "Nội bộ"
msgid "Internal Customer Accounting"
msgstr "Kế toán khách hàng nội bộ"
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "Khách hàng nội bộ cho công ty {0} đã tồn tại"
@@ -24833,7 +24854,7 @@ msgstr "Khách hàng nội bộ cho công ty {0} đã tồn tại"
msgid "Internal Purchase Order"
msgstr "Đơn mua hàng nội bộ"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "Tham chiếu bán hàng hoặc giao hàng nội bộ bị thiếu."
@@ -24841,7 +24862,7 @@ msgstr "Tham chiếu bán hàng hoặc giao hàng nội bộ bị thiếu."
msgid "Internal Sales Order"
msgstr "Đơn bán hàng nội bộ"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "Tham chiếu bán hàng nội bộ bị thiếu"
@@ -24872,7 +24893,7 @@ msgstr "Nhà cung cấp nội bộ cho công ty {0} đã tồn tại"
msgid "Internal Transfer"
msgstr "Chuyển kho nội bộ"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "Tham chiếu chuyển kho nội bộ bị thiếu"
@@ -24885,7 +24906,12 @@ msgstr "Các chuyển kho nội bộ"
msgid "Internal Work History"
msgstr "Lịch sử công việc nội bộ"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "Các chuyển kho nội bộ chỉ có thể được thực hiện bằng tiền tệ mặc định của công ty"
@@ -24901,12 +24927,12 @@ msgstr "Khoảng thời gian phải từ 1 đến 59 phút"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "Tài khoản không hợp lệ"
@@ -24927,7 +24953,7 @@ msgstr "Số tiền không hợp lệ"
msgid "Invalid Attribute"
msgstr "Thuộc tính không hợp lệ"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "Ngày lặp tự động không hợp lệ"
@@ -24940,7 +24966,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "Mã vạch không hợp lệ. Không có mục nào được đính kèm với mã vạch này."
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "Đơn hàng trọn gói không hợp lệ cho Khách hàng và Mặt hàng đã chọn"
@@ -24956,21 +24982,21 @@ msgstr "Thủ tục con không hợp lệ"
msgid "Invalid Company Field"
msgstr "Trường Công ty không hợp lệ"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "Công ty không hợp lệ cho Giao dịch giữa các công ty."
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "Trung tâm chi phí không hợp lệ"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "Ngày giao hàng không hợp lệ"
@@ -25008,7 +25034,7 @@ msgstr "Nhóm theo không hợp lệ"
msgid "Invalid Item"
msgstr "Mặt hàng không hợp lệ"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "Mặc định Mặt hàng không hợp lệ"
@@ -25022,7 +25048,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "Số tiền mua ròng không hợp lệ"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "Mục mở đầu không hợp lệ"
@@ -25030,11 +25056,11 @@ msgstr "Mục mở đầu không hợp lệ"
msgid "Invalid POS Invoices"
msgstr "Hóa đơn POS không hợp lệ"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "Tài khoản cha không hợp lệ"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "Số phần không hợp lệ"
@@ -25064,12 +25090,12 @@ msgstr "Cấu hình Tổn thất quy trình không hợp lệ"
msgid "Invalid Purchase Invoice"
msgstr "Hóa đơn mua hàng không hợp lệ"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "Số lượng không hợp lệ"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "Số lượng không hợp lệ"
@@ -25094,12 +25120,12 @@ msgstr "Lịch trình không hợp lệ"
msgid "Invalid Selling Price"
msgstr "Giá bán không hợp lệ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "Gói Serial và Batch không hợp lệ"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr "Kho nguồn và đích không hợp lệ"
@@ -25124,7 +25150,7 @@ msgstr "Số tiền không hợp lệ trong các mục kế toán của {} {} ch
msgid "Invalid condition expression"
msgstr "Biểu thức điều kiện không hợp lệ"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr "URL tệp không hợp lệ"
@@ -25136,7 +25162,7 @@ msgstr "Công thức lọc không hợp lệ. Vui lòng kiểm tra cú pháp."
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "Lý do mất đơn {0} không hợp lệ, vui lòng tạo lý do mất mới"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "Chuỗi đặt tên không hợp lệ (. bị thiếu) cho {0}"
@@ -25162,8 +25188,8 @@ msgstr "Truy vấn tìm kiếm không hợp lệ"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "Giá trị không hợp lệ {0} cho {1} đối với tài khoản {2}"
@@ -25171,7 +25197,7 @@ msgstr "Giá trị không hợp lệ {0} cho {1} đối với tài khoản {2}"
msgid "Invalid {0}"
msgstr "Không hợp lệ {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "{0} không hợp lệ cho Giao dịch giữa các công ty."
@@ -25181,7 +25207,7 @@ msgid "Invalid {0}: {1}"
msgstr "{0} không hợp lệ: {1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "Hàng tồn kho"
@@ -25230,8 +25256,8 @@ msgstr "Định giá Hàng tồn kho"
msgid "Investment Banking"
msgstr "Ngân hàng đầu tư"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "Đầu tư"
@@ -25281,7 +25307,7 @@ msgstr "Chiết khấu hóa đơn"
msgid "Invoice Document Type Selection Error"
msgstr "Lỗi chọn loại tài liệu hóa đơn"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "Tổng cộng hóa đơn"
@@ -25386,7 +25412,7 @@ msgstr "Hóa đơn không thể được tạo cho giờ thanh toán bằng khô
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25407,7 +25433,7 @@ msgstr "Số lượng đã xuất hóa đơn"
#: 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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25503,8 +25529,7 @@ msgstr "Là Thay thế"
msgid "Is Billable"
msgstr "Có thể thanh toán"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "Là Liên hệ Thanh toán"
@@ -25946,8 +25971,7 @@ msgstr "Là Mẫu"
msgid "Is Transporter"
msgstr "Là Người vận chuyển"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "Là Địa chỉ Công ty của Bạn"
@@ -26053,8 +26077,8 @@ msgstr "Loại Vấn đề"
#. 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 with 0 qty against an existing Sales Invoice"
-msgstr "Phát hành bút toán ghi nợ với 0 số lượng đối với Hóa đơn bán hiện có"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26084,11 +26108,11 @@ msgstr "Vấn đề"
msgid "Issuing Date"
msgstr "Ngày phát hành"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "Có thể mất vài giờ để giá trị tồn kho chính xác được hiển thị sau khi hợp nhất các mặt hàng."
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "Cần thiết để lấy Chi tiết Mặt hàng."
@@ -26212,7 +26236,7 @@ msgstr "Văn bản nghiêng cho tổng phụ hoặc ghi chú"
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26460,7 +26484,7 @@ msgstr "Giỏ Mặt hàng"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26522,7 +26546,7 @@ msgstr "Giỏ Mặt hàng"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26721,13 +26745,13 @@ msgstr "Chi tiết Mặt hàng"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26944,7 +26968,7 @@ msgstr "Nhà sản xuất Mặt hàng"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -26984,10 +27008,10 @@ msgstr "Nhà sản xuất Mặt hàng"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27028,10 +27052,6 @@ msgstr "Mặt hàng Hết hàng"
msgid "Item Price"
msgstr "Giá Mặt hàng"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr "Giá Mặt hàng đã được thêm cho {0} trong Danh sách giá {1}"
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27047,19 +27067,20 @@ msgstr "Cài đặt Giá Mặt hàng"
msgid "Item Price Stock"
msgstr "Giá và Tồn kho Mặt hàng"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "Giá mặt hàng đã được thêm cho {0} trong Danh sách giá {1}"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "Giá Mặt hàng xuất hiện nhiều lần dựa trên Danh sách giá, Nhà cung cấp/Khách hàng, Tiền tệ, Mặt hàng, Lô, Đơn vị, Số lượng và Ngày."
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "Giá Mặt hàng đã được cập nhật cho {0} trong Danh sách giá {1}"
@@ -27246,11 +27267,11 @@ msgstr "Chi tiết Biến thể Mặt hàng"
msgid "Item Variant Settings"
msgstr "Cài đặt Biến thể Mặt hàng"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "Biến thể Mặt hàng {0} đã tồn tại với các thuộc tính tương tự"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "Các Biến thể Mặt hàng đã được cập nhật"
@@ -27351,11 +27372,11 @@ msgstr "Mặt hàng và Kho"
msgid "Item and Warranty Details"
msgstr "Mặt hàng và Chi tiết Bảo hành"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "Mặt hàng cho dòng {0} không khớp với Yêu cầu Nguyên vật liệu"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "Mặt hàng có các biến thể."
@@ -27381,11 +27402,7 @@ msgstr "Tên mặt hàng"
msgid "Item operation"
msgstr "Hoạt động mặt hàng"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "Số lượng mặt hàng không thể cập nhật vì nguyên liệu thô đã được xử lý."
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "Đơn giá mặt hàng đã được cập nhật thành không vì Cho phép Tỷ giá Định giá Bằng không được chọn cho mặt hàng {0}"
@@ -27404,11 +27421,11 @@ msgstr "Tỷ giá định giá mặt hàng được tính lại dựa trên số
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "Đang đăng lại định giá mặt hàng. Báo cáo có thể hiển thị định giá mặt hàng không chính xác."
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "Biến thể mặt hàng {0} đã tồn tại với cùng thuộc tính"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27425,7 +27442,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "Mặt hàng {0} không thể được đặt nhiều hơn {1} đối với Đơn hàng mở {2}."
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "Mục {0} không tồn tại"
@@ -27437,7 +27454,7 @@ msgstr "Mục {0} không tồn tại trong hệ thống hoặc đã hết hạn"
msgid "Item {0} does not exist."
msgstr "Mục {0} không tồn tại."
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "Mặt hàng {0} đã được nhập nhiều lần."
@@ -27449,15 +27466,15 @@ msgstr "Mặt hàng {0} đã được trả lại"
msgid "Item {0} has been disabled"
msgstr "Mặt hàng {0} đã bị vô hiệu hóa"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "Mặt hàng {0} không có Serial No. Chỉ các mặt hàng được đánh serial mới có thể giao dựa trên Serial No"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "Mặt hàng {0} đã đến cuối vòng đời vào ngày {1}"
@@ -27469,15 +27486,15 @@ msgstr "Mặt hàng {0} bị bỏ qua vì không phải mặt hàng tồn kho"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "Mặt hàng {0} đã được giữ chỗ/giao đối với Đơn hàng bán {1}."
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "Mặt hàng {0} đã bị hủy"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "Mặt hàng {0} bị vô hiệu hóa"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27485,7 +27502,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "Mặt hàng {0} không phải là Mặt hàng được đánh số serial"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "Mặt hàng {0} không phải là Mặt hàng tồn kho"
@@ -27493,11 +27510,11 @@ msgstr "Mặt hàng {0} không phải là Mặt hàng tồn kho"
msgid "Item {0} is not a subcontracted item"
msgstr "Mặt hàng {0} không phải là mặt hàng ký hợp đồng phụ"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "Mặt hàng {0} không hoạt động hoặc đã đạt đến cuối vòng đời"
@@ -27513,7 +27530,7 @@ msgstr "Mặt hàng {0} phải là Mặt hàng Không tồn kho"
msgid "Item {0} must be a non-stock item"
msgstr "Mặt hàng {0} phải là mặt hàng không tồn kho"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "Mặt hàng {0} không tìm thấy trong bảng 'Nguyên liệu thô đã cung cấp' trong {1} {2}"
@@ -27521,7 +27538,7 @@ msgstr "Mặt hàng {0} không tìm thấy trong bảng 'Nguyên liệu thô đ
msgid "Item {0} not found."
msgstr "Không tìm thấy Mặt hàng {0}."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "Mặt hàng {0}: Số lượng đặt {1} không thể nhỏ hơn số lượng đặt tối thiểu {2} (được định nghĩa trong Mặt hàng)."
@@ -27529,7 +27546,7 @@ msgstr "Mặt hàng {0}: Số lượng đặt {1} không thể nhỏ hơn số l
msgid "Item {0}: {1} qty produced. "
msgstr "Mặt hàng {0}: {1} số lượng đã sản xuất. "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "Mặt hàng {} không tồn tại."
@@ -27575,7 +27592,7 @@ msgstr "Sổ bán hàng theo Mặt hàng"
msgid "Item-wise sales Register"
msgstr "Sổ bán hàng theo Mặt hàng"
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "Mặt hàng/Mã Mặt hàng bắt buộc để lấy Mẫu Thuế Mặt hàng."
@@ -27599,7 +27616,7 @@ msgstr "Danh mục Mặt hàng"
msgid "Items Filter"
msgstr "Bộ lọc mục"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "Mặt hàng yêu cầu"
@@ -27623,11 +27640,11 @@ msgstr "Mặt hàng cần yêu cầu"
msgid "Items and Pricing"
msgstr "Mặt hàng và Giá"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "Không thể cập nhật các mặt hàng vì Đơn hàng vào ký gửi phụ tồn tại đối với Đơn bán hàng ký gửi phụ này."
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "Không thể cập nhật các mặt hàng vì Đơn ký gửi phụ đã được tạo đối với Đơn mua hàng {0}."
@@ -27639,7 +27656,7 @@ msgstr "Mặt hàng cho Yêu cầu Nguyên liệu thô"
msgid "Items not found."
msgstr "Không tìm thấy mặt hàng."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "Đơn giá mặt hàng đã được cập nhật về không vì 'Cho phép Đơn giá Định giá bằng không' được chọn cho các mặt hàng sau: {0}"
@@ -27649,7 +27666,7 @@ msgstr "Đơn giá mặt hàng đã được cập nhật về không vì 'Cho p
msgid "Items to Be Repost"
msgstr "Mặt hàng cần cập nhật lại"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "Mặt hàng cần sản xuất bắt buộc để kéo Nguyên liệu thô liên quan đến nó."
@@ -27714,9 +27731,9 @@ msgstr "Công suất công việc"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27778,7 +27795,7 @@ msgstr "Nhật ký thời gian thẻ công việc"
msgid "Job Card and Capacity Planning"
msgstr "Thẻ công việc và Quy hoạch công suất"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "Thẻ công việc {0} đã hoàn thành"
@@ -27854,7 +27871,7 @@ msgstr "Tên công nhân ký gửi"
msgid "Job Worker Warehouse"
msgstr "Kho công nhân ký gửi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "Thẻ công việc {0} đã được tạo"
@@ -28074,7 +28091,7 @@ msgstr "Kilowatt"
msgid "Kilowatt-Hour"
msgstr "Kilowatt-Giờ"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "Vui lòng hủy các Bút toán Sản xuất trước đối với lệnh sản xuất {0}."
@@ -28202,7 +28219,7 @@ msgstr "Ngày hoàn thành cuối"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "Cập nhật mục GL cuối đã được thực hiện {}. Thao tác này không được phép khi hệ thống đang được sử dụng tích cực. Vui lòng đợi 5 phút trước khi thử lại."
@@ -28284,7 +28301,7 @@ msgstr "Ngày kiểm tra carbon cuối không thể là ngày trong tương lai"
msgid "Last transacted"
msgstr "Giao dịch cuối"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "Mới nhất"
@@ -28535,12 +28552,12 @@ msgstr "Trường cũ"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "Pháp nhân / Công ty con với Bảng cân đối tài khoản riêng thuộc về Tổ chức."
-#: 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
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "Chi phí pháp lý"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "Chú thích"
@@ -28551,7 +28568,7 @@ msgstr "Chú thích"
msgid "Length (cm)"
msgstr "Chiều dài (cm)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "Ít hơn số tiền"
@@ -28610,7 +28627,7 @@ msgstr "Số giấy phép"
msgid "License Plate"
msgstr "Biển số xe"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "Đã vượt giới hạn"
@@ -28671,7 +28688,7 @@ msgstr "Liên kết đến các Yêu cầu Vật tư"
msgid "Link with Customer"
msgstr "Liên kết với Khách hàng"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "Liên kết với Nhà cung cấp"
@@ -28692,12 +28709,12 @@ msgstr "Hóa đơn được liên kết"
msgid "Linked Location"
msgstr "Vị trí được liên kết"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "Được liên kết với tài liệu đã trình"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "Liên kết thất bại"
@@ -28705,7 +28722,7 @@ msgstr "Liên kết thất bại"
msgid "Linking to Customer Failed. Please try again."
msgstr "Liên kết với Khách hàng thất bại. Vui lòng thử lại."
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "Liên kết với Nhà cung cấp thất bại. Vui lòng thử lại."
@@ -28763,8 +28780,8 @@ msgstr "Ngày bắt đầu cho vay"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "Ngày bắt đầu cho vay và Thời hạn cho vay là bắt buộc để lưu Chiết khấu hóa đơn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "Cho vay (Nợ phải trả)"
@@ -28809,8 +28826,8 @@ msgstr "Ghi nhận giá bán và giá mua của một Mặt hàng"
msgid "Logo"
msgstr "Biểu tượng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr "Dự phòng dài hạn"
@@ -29011,6 +29028,11 @@ msgstr "Hạng chương trình khách hàng thân thiết"
msgid "Loyalty Program Type"
msgstr "Loại chương trình khách hàng thân thiết"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29054,10 +29076,10 @@ msgstr "Máy bị trục trặc"
msgid "Machine operator errors"
msgstr "Lỗi vận hành máy"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "Chính"
@@ -29300,9 +29322,9 @@ msgstr "Môn chính/Tự chọn"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "Hãng"
@@ -29322,7 +29344,7 @@ msgstr "Tạo Bút toán Khấu hao"
msgid "Make Difference Entry"
msgstr "Tạo Bút toán Chênh lệch"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "Tạo Thời gian chờ"
@@ -29360,12 +29382,12 @@ msgstr "Tạo Hóa đơn bán"
msgid "Make Serial No / Batch from Work Order"
msgstr "Tạo Số serial / Lô từ Lệnh sản xuất"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "Nhập kho"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "Tạo PO Ký gửi phụ"
@@ -29381,11 +29403,11 @@ msgstr "Thực hiện cuộc gọi"
msgid "Make project from a template."
msgstr "Tạo dự án từ một mẫu."
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "Tạo {0} Biến thể"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "Tạo {0} Biến thể"
@@ -29393,8 +29415,8 @@ msgstr "Tạo {0} Biến thể"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "Tạo Bút toán Nhật ký đối với tài khoản tạm ứng: {0} không được khuyến nghị. Các Nhật ký này sẽ không khả dụng cho Đối soát."
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "Quản lý"
@@ -29413,7 +29435,7 @@ msgstr "Quản lý hoa hồng của đối tác bán hàng và nhóm bán hàng"
msgid "Manage your orders"
msgstr "Quản lý đơn hàng của bạn"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "Quản lý"
@@ -29429,7 +29451,7 @@ msgstr "Giám đốc điều hành"
msgid "Mandatory Accounting Dimension"
msgstr "Kích thước kế toán bắt buộc"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "Trường bắt buộc"
@@ -29528,8 +29550,8 @@ msgstr "Không thể tạo mục thủ công! Vô hiệu hóa mục tự động
#: erpnext/stock/doctype/material_request_item/material_request_item.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29608,7 +29630,7 @@ msgstr "Nhà sản xuất"
msgid "Manufacturer Part Number"
msgstr "Số phần của nhà sản xuất"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "Số phần của nhà sản xuất {0} không hợp lệ"
@@ -29633,7 +29655,7 @@ msgstr "Nhà sản xuất được sử dụng trong Mặt hàng"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29678,10 +29700,6 @@ msgstr "Ngày sản xuất"
msgid "Manufacturing Manager"
msgstr "Quản lý sản xuất"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "Số lượng sản xuất là bắt buộc"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29848,6 +29866,12 @@ msgstr "Tình trạng hôn nhân"
msgid "Mark As Closed"
msgstr "Đánh dấu là Đã đóng"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29862,12 +29886,12 @@ msgstr "Đánh dấu là Đã đóng"
msgid "Market Segment"
msgstr "Phân khúc thị trường"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "Tiếp thị"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "Chi phí tiếp thị"
@@ -29946,7 +29970,7 @@ msgstr ""
msgid "Material"
msgstr "Vật tư"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "Tiêu thụ vật tư"
@@ -29954,7 +29978,7 @@ msgstr "Tiêu thụ vật tư"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "Tiêu thụ vật tư cho sản xuất"
@@ -30035,7 +30059,7 @@ msgstr "Nhập vật tư"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30132,11 +30156,11 @@ msgstr "Mục kế hoạch yêu cầu vật tư"
msgid "Material Request Type"
msgstr "Loại yêu cầu vật tư"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr "Yêu cầu vật tư đã được tạo cho số lượng đã đặt"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "Yêu cầu vật tư không được tạo, vì số lượng Nguyên liệu thô đã có sẵn."
@@ -30204,7 +30228,7 @@ msgstr "Vật tư trả lại từ WIP"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30270,12 +30294,12 @@ msgstr "Vật tư cho Nhà cung cấp"
msgid "Materials To Be Transferred"
msgstr "Vật tư cần chuyển"
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "Vật tư đã được nhận đối với {0} {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "Vật tư cần được chuyển đến kho công việc đang thực hiện cho thẻ công việc {0}"
@@ -30346,9 +30370,9 @@ msgstr "Điểm tối đa"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "Giảm giá tối đa cho phép cho mặt hàng: {0} là {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30380,11 +30404,11 @@ msgstr "Số tiền thanh toán tối đa"
msgid "Maximum Producible Items"
msgstr "Các mặt hàng có thể sản xuất tối đa"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "Mẫu tối đa - {0} có thể được giữ lại cho Lô {1} và Mặt hàng {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "Mẫu tối đa - {0} đã được giữ lại cho Lô {1} và Mặt hàng {2} trong Lô {3}."
@@ -30445,15 +30469,10 @@ msgstr "Megajoule"
msgid "Megawatt"
msgstr "Megawatt"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "Đề cập Tỷ giá định giá trong danh mục Mặt hàng."
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "Đề cập nếu tài khoản phải thu không tiêu chuẩn"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30503,7 +30522,7 @@ msgstr "Hợp nhất với Tài khoản Hiện có"
msgid "Merged"
msgstr "Đã hợp nhất"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "Hợp nhất chỉ có thể nếu các thuộc tính sau giống nhau trong cả hai bản ghi. Là Nhóm, Loại gốc, Công ty và Tiền tệ Tài khoản"
@@ -30533,7 +30552,7 @@ msgstr "Tin nhắn sẽ được gửi đến người dùng để lấy tình t
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "Tin nhắn dài hơn 160 ký tự sẽ được chia thành nhiều tin nhắn"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr "Chiến dịch CRM nhắn tin"
@@ -30734,7 +30753,7 @@ msgstr "Số lượng tối thiểu không thể lớn hơn Số lượng tối
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "Số lượng tối thiểu phải lớn hơn Số lượng đệ quy"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr "Giá trị tối thiểu: {0}, Giá trị tối đa: {1}, theo bước: {2}"
@@ -30823,8 +30842,8 @@ msgstr "Phút"
msgid "Miscellaneous"
msgstr "Khác"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "Chi phí khác"
@@ -30832,15 +30851,15 @@ msgstr "Chi phí khác"
msgid "Mismatch"
msgstr "Không khớp"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "Thiếu"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "Thiếu tài khoản"
@@ -30870,7 +30889,7 @@ msgstr "Thiếu bộ lọc"
msgid "Missing Finance Book"
msgstr "Thiếu Sổ Tài chính"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "Thiếu thành phẩm"
@@ -30878,7 +30897,7 @@ msgstr "Thiếu thành phẩm"
msgid "Missing Formula"
msgstr "Thiếu công thức"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "Thiếu mặt hàng"
@@ -30915,7 +30934,7 @@ msgid "Missing required filter: {0}"
msgstr "Thiếu bộ lọc bắt buộc: {0}"
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "Giá trị bị thiếu"
@@ -31164,11 +31183,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "Tìm thấy nhiều Chương trình tích điểm cho Khách hàng {}. Vui lòng chọn thủ công."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "Nhiều Mục Mở POS"
@@ -31190,11 +31209,11 @@ msgstr "Nhiều biến thể"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr "Nhiều trường công ty khả dụng: {0}. Vui lòng chọn thủ công."
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "Nhiều năm tài chính tồn tại cho ngày {0}. Vui lòng đặt công ty trong Năm Tài chính"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "Không thể đánh dấu nhiều mặt hàng là thành phẩm"
@@ -31203,7 +31222,7 @@ msgid "Music"
msgstr "Âm nhạc"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31290,7 +31309,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr "Chuỗi đặt tên '{0}' cho DocType '{1}' không chứa dấu tách tiêu chuẩn '.' hoặc '{{'. Sử dụng trích xuất dự phòng."
@@ -31334,7 +31353,7 @@ msgstr "Phân tích nhu cầu"
msgid "Negative Batch Report"
msgstr "Báo cáo Lô Âm"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "Số lượng âm không được phép"
@@ -31343,7 +31362,7 @@ msgstr "Số lượng âm không được phép"
msgid "Negative Stock Error"
msgstr "Lỗi Tồn kho Âm"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "Tỷ giá định giá âm không được phép"
@@ -31649,7 +31668,7 @@ msgstr "Trọng lượng tịnh"
msgid "Net Weight UOM"
msgstr "Đơn vị đo trọng lượng tịnh"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "Mất độ chính xác tính tổng ròng"
@@ -31826,7 +31845,7 @@ msgstr "Tên kho mới"
msgid "New Workplace"
msgstr "Nơi làm việc mới"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "Hạn mức tín dụng mới thấp hơn số tiền chưa thanh toán hiện tại cho khách hàng. Hạn mức tín dụng phải ít nhất {0}"
@@ -31880,7 +31899,7 @@ msgstr "Email tiếp theo sẽ được gửi vào:"
msgid "No Account Data row found"
msgstr "Không tìm thấy hàng Dữ liệu Tài khoản "
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "Không có Tài khoản nào khớp với các bộ lọc này: {}"
@@ -31893,7 +31912,7 @@ msgstr "Không có hành động"
msgid "No Answer"
msgstr "Không trả lời"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "Không tìm thấy Khách hàng cho Giao dịch Nội bộ đại diện cho công ty {0}"
@@ -31906,7 +31925,7 @@ msgstr "Không tìm thấy Khách hàng với các tùy chọn đã chọn."
msgid "No Delivery Note selected for Customer {}"
msgstr "Không có Phiếu giao hàng nào được chọn cho Khách hàng {}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr "Không có DocType nào trong danh sách Xóa. Vui lòng tạo hoặc nhập danh sách trước khi trình."
@@ -31922,7 +31941,7 @@ msgstr "Không có Mặt hàng với Mã vạch {0}"
msgid "No Item with Serial No {0}"
msgstr "Không có Mặt hàng với Số serial {0}"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "Không có Mặt hàng nào được chọn để chuyển."
@@ -31957,7 +31976,7 @@ msgstr "Không tìm thấy Hồ sơ POS. Vui lòng tạo Hồ sơ POS mới trư
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "Không có quyền"
@@ -31986,19 +32005,19 @@ msgstr "Không có Tồn kho khả dụng hiện tại"
msgid "No Summary"
msgstr "Không có tóm tắt"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "Không tìm thấy Nhà cung cấp cho Giao dịch Nội bộ đại diện cho công ty {0}"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "Không tìm thấy dữ liệu Khấu lưu thuế cho ngày đăng hiện tại."
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr "Không đặt tài khoản khấu lưu thuế cho Công ty {0} trong Danh mục Khấu lưu Thuế {1}."
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "Không có điều khoản"
@@ -32028,7 +32047,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "Không tìm thấy BOM hoạt động cho mặt hàng {0}. Giao hàng theo Số serial không thể được đảm bảo"
@@ -32222,7 +32241,7 @@ msgstr "Số trạm làm việc"
msgid "No open Material Requests found for the given criteria."
msgstr "Không tìm thấy Yêu cầu Vật tư mở cho tiêu chí đã cho."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "Không tìm thấy Mục Mở POS mở cho Hồ sơ POS {0}."
@@ -32246,7 +32265,7 @@ msgstr "Không có hóa đơn chưa thanh toán yêu cầu đánh giá lại t
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "Không tìm thấy {0} chưa thanh toán cho {1} {2} phù hợp với bộ lọc bạn đã chỉ định."
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "Không tìm thấy Yêu cầu Vật tư đang chờ để liên kết cho các mặt hàng đã cho."
@@ -32317,7 +32336,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "Không có bút toán sổ tồn kho được tạo. Vui lòng đặt số lượng hoặc tỷ giá định giá cho các mặt hàng đúng cách và thử lại."
@@ -32350,7 +32369,7 @@ msgstr "Không có giá trị"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "Không tìm thấy {0} cho Giao dịch Nội bộ."
@@ -32395,8 +32414,8 @@ msgstr "Phi lợi nhuận"
msgid "Non stock items"
msgstr "Mặt hàng không tồn kho"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr "Nợ phải trả dài hạn"
@@ -32497,7 +32516,7 @@ msgstr "Không thể tìm thấy Năm tài chính sớm nhất cho công ty đã
msgid "Not allow to set alternative item for the item {0}"
msgstr "Không cho phép đặt mặt hàng thay thế cho mặt hàng {0}"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "Không được phép tạo thứ nguyên kế toán cho {0}"
@@ -32551,7 +32570,7 @@ msgstr "Lưu ý: Nếu bạn muốn sử dụng thành phẩm {0} như một ngu
msgid "Note: Item {0} added multiple times"
msgstr "Lưu ý: Mặt hàng {0} được thêm nhiều lần"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "Lưu ý: Mục Thanh toán sẽ không được tạo vì 'Tài khoản Tiền mặt hoặc Ngân hàng' không được chỉ định"
@@ -32559,7 +32578,7 @@ msgstr "Lưu ý: Mục Thanh toán sẽ không được tạo vì 'Tài khoản
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "Lưu ý: Trung tâm chi phí này là một Nhóm. Không thể tạo các mục kế toán đối với các nhóm."
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "Lưu ý: Để hợp nhất các mặt hàng, tạo Đối soát Tồn kho riêng cho mặt hàng cũ {0}"
@@ -32742,6 +32761,11 @@ msgstr "Số Tài khoản mới, nó sẽ được bao gồm trong tên tài kho
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "Số Trung tâm Chi phí mới, nó sẽ được bao gồm trong tên trung tâm chi phí như một tiền tố"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32801,18 +32825,18 @@ msgstr "Giá trị đồng hồ đo quãng đường (Cuối)"
msgid "Offer Date"
msgstr "Ngày đề nghị"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "Thiết bị văn phòng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "Chi phí bảo trì văn phòng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "Tiền thuê văn phòng"
@@ -32940,7 +32964,7 @@ msgstr "Đào tạo về Tồn kho!"
msgid "Once set, this invoice will be on hold till the set date"
msgstr "Khi đặt, hóa đơn này sẽ bị tạm giữ cho đến ngày đã đặt"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "Khi Lệnh sản xuất đã đóng. Nó không thể được tiếp tục."
@@ -32980,7 +33004,7 @@ msgstr "Chỉ 'Các mục thanh toán' được thực hiện đối với tài
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "Chỉ các tệp CSV và Excel có thể được sử dụng để nhập dữ liệu. Vui lòng kiểm tra định dạng tệp bạn đang tải lên"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr "Chỉ cho phép tệp CSV"
@@ -32999,7 +33023,7 @@ msgstr "Chỉ khấu trừ thuế trên số tiền vượt quá "
msgid "Only Include Allocated Payments"
msgstr "Chỉ bao gồm Thanh toán đã phân bổ"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "Chỉ Cha mới có thể thuộc loại {0}"
@@ -33036,7 +33060,7 @@ msgstr "Chỉ một trong Số tiền gửi hoặc Rút tiền nên khác không
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr "Chỉ một hoạt động có thể có 'Là Thành phẩm Cuối' được chọn khi 'Theo dõi Thành phẩm Bán thành phẩm' được bật."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "Chỉ một mục {0} có thể được tạo đối với Lệnh sản xuất {1}"
@@ -33254,8 +33278,8 @@ msgstr "Số dư đầu kỳ = Đầu kỳ, Số dư cuối kỳ = Cuối kỳ,
msgid "Opening Balance Details"
msgstr "Chi tiết số dư đầu kỳ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "Vốn số dư đầu kỳ"
@@ -33278,7 +33302,7 @@ msgstr "Ngày mở"
msgid "Opening Entry"
msgstr "Mục mở"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "Mục mở không thể được tạo sau khi Đối soát Đóng kỳ được tạo."
@@ -33311,7 +33335,7 @@ msgid "Opening Invoice Tool"
msgstr "Công cụ Hóa đơn Mở"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "Hóa đơn Mở có điều chỉnh làm tròn {0}. Tài khoản '{1}' được yêu cầu để đăng các giá trị này. Vui lòng đặt nó trong Công ty: {2}. Hoặc, '{3}' có thể được bật để không đăng bất kỳ điều chỉnh làm tròn nào."
@@ -33347,16 +33371,16 @@ msgstr "Hóa đơn bán mở đã được tạo."
#. 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "Tồn kho đầu kỳ"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33374,12 +33398,15 @@ msgstr "Giá trị mở"
msgid "Opening and Closing"
msgstr "Mở và đóng"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr "Việc tạo tồn kho đầu kỳ đã được xếp hàng đợi và sẽ được tạo ở chế độ nền. Vui lòng kiểm tra mục tồn kho sau một thời gian."
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "Thành phần vận hành"
@@ -33411,7 +33438,7 @@ msgstr "Chi phí vận hành (Tiền tệ công ty)"
msgid "Operating Cost Per BOM Quantity"
msgstr "Chi phí vận hành trên Số lượng BOM"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "Chi phí vận hành theo Lệnh sản xuất / BOM"
@@ -33454,15 +33481,15 @@ msgstr "Mô tả hoạt động"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "ID hoạt động"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "ID hoạt động"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33487,7 +33514,7 @@ msgstr "Số hàng hoạt động"
msgid "Operation Time"
msgstr "Thời gian hoạt động"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "Thời gian hoạt động phải lớn hơn 0 cho Hoạt động {0}"
@@ -33502,11 +33529,11 @@ msgstr "Hoạt động hoàn thành cho bao nhiêu thành phẩm?"
msgid "Operation time does not depend on quantity to produce"
msgstr "Thời gian hoạt động không phụ thuộc vào số lượng cần sản xuất"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "Hoạt động {0} đã được thêm nhiều lần trong lệnh sản xuất {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "Hoạt động {0} không thuộc về lệnh sản xuất {1}"
@@ -33522,9 +33549,9 @@ msgstr "Hoạt động {0} dài hơn bất kỳ giờ làm việc khả dụng n
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33697,7 +33724,7 @@ msgstr "Cơ hội {0} đã được tạo"
msgid "Optimize Route"
msgstr "Tối ưu hóa Lộ trình"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33847,7 +33874,7 @@ msgstr "Số lượng đặt hàng"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "Đơn hàng"
@@ -33963,7 +33990,7 @@ msgstr "Ao-xơ/Gallon (Mỹ)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "Số lượng ra"
@@ -34001,7 +34028,7 @@ msgstr "Hết hạn bảo hành"
msgid "Out of stock"
msgstr "Hết hàng"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "Mục Mở POS đã lỗi thời"
@@ -34020,6 +34047,7 @@ msgstr "Thanh toán đi"
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "Tỷ giá đi"
@@ -34055,7 +34083,7 @@ msgstr "Chưa thanh toán (Tiền tệ công ty)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34065,7 +34093,7 @@ msgstr "Chưa thanh toán (Tiền tệ công ty)"
#: 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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34125,17 +34153,22 @@ msgstr "Cho phép vượt hóa đơn đã vượt cho Mục Biên lai mua hàng
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "Cho phép vượt giao/nhận (%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "Cho phép vượt chọn"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "Vượt nhận"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Vượt nhận/giao của {0} {1} bị bỏ qua cho mặt hàng {2} vì bạn có vai trò {3}."
@@ -34155,11 +34188,11 @@ msgstr "Cho phép vượt chuyển (%)"
msgid "Over Withheld"
msgstr "Vượt khấu lưu"
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "Vượt hóa đơn của {0} {1} bị bỏ qua cho mặt hàng {2} vì bạn có vai trò {3}."
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "Vượt hóa đơn của {} bị bỏ qua vì bạn có vai trò {}."
@@ -34459,7 +34492,7 @@ msgstr "Bộ chọn mặt hàng POS"
msgid "POS Opening Entry"
msgstr "Mục mở POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "Mục Mở POS - {0} đã lỗi thời. Vui lòng đóng POS và tạo Mục Mở POS mới."
@@ -34480,7 +34513,7 @@ msgstr "Chi tiết mục mở POS"
msgid "POS Opening Entry Exists"
msgstr "Mục Mở POS đã tồn tại"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "Thiếu Mục Mở POS"
@@ -34516,7 +34549,7 @@ msgstr "Phương thức thanh toán POS"
msgid "POS Profile"
msgstr "Hồ sơ POS"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "Hồ sơ POS - {0} có nhiều Mục Mở POS mở. Vui lòng đóng hoặc hủy các mục hiện có trước khi tiến hành."
@@ -34534,11 +34567,11 @@ msgstr "Người dùng Hồ sơ POS"
msgid "POS Profile doesn't match {}"
msgstr "Hồ sơ POS không khớp {}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "Hồ sơ POS là bắt buộc để đánh dấu hóa đơn này là Giao dịch POS."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "Hồ sơ POS được yêu cầu để tạo Mục POS"
@@ -34644,7 +34677,7 @@ msgstr "Mặt hàng đóng gói"
msgid "Packed Items"
msgstr "Các mặt hàng đóng gói"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "Các mặt hàng đóng gói không thể được chuyển nội bộ"
@@ -34681,7 +34714,7 @@ msgstr "Phiếu đóng gói"
msgid "Packing Slip Item"
msgstr "Mục phiếu đóng gói"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "Phiếu đóng gói đã bị hủy"
@@ -34722,7 +34755,7 @@ msgstr "Đã thanh toán"
#: 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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34788,7 +34821,7 @@ msgid "Paid To Account Type"
msgstr "Loại tài khoản đã thanh toán đến"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "Số tiền đã thanh toán + Số tiền xóa không thể lớn hơn Tổng cộng"
@@ -34882,7 +34915,7 @@ msgstr "Lô gốc"
msgid "Parent Company"
msgstr "Công ty mẹ"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "Công ty mẹ phải là công ty nhóm"
@@ -35009,7 +35042,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "Nguyên liệu một phần đã chuyển"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "Thanh toán một phần trong giao dịch POS không được phép."
@@ -35222,7 +35255,7 @@ msgstr "Phần triệu"
#: 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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35249,7 +35282,7 @@ msgstr "Đối tác"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "Tài khoản đối tác"
@@ -35282,7 +35315,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "Số tài khoản đối tác (Sao kê ngân hàng)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "Tiền tệ tài khoản đối tác {0} ({1}) và tiền tệ chứng từ ({2}) phải giống nhau"
@@ -35434,7 +35467,7 @@ msgstr "Mặt hàng theo đối tác"
#: 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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35543,7 +35576,7 @@ msgstr "Sự kiện đã qua"
msgid "Pause"
msgstr "Tạm dừng"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "Tạm dừng công việc"
@@ -35594,7 +35627,7 @@ msgid "Payable"
msgstr "Phải trả"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35628,7 +35661,7 @@ msgstr "Cài đặt người thanh toán"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35775,7 +35808,7 @@ msgstr "Bút toán thanh toán đã được sửa đổi sau khi bạn kéo v
msgid "Payment Entry is already created"
msgstr "Bút toán thanh toán đã được tạo"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "Bút toán thanh toán {0} được liên kết với Đơn hàng {1}, kiểm tra xem có nên kéo làm tạm ứng trong hóa đơn này không."
@@ -36000,7 +36033,7 @@ msgstr "Tài liệu tham khảo thanh toán"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36065,7 +36098,7 @@ msgstr "Yêu cầu thanh toán được tạo từ hóa đơn bán / mua sẽ đ
#: 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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36094,7 +36127,7 @@ msgstr "Lịch thanh toán"
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36150,6 +36183,7 @@ msgstr "Tình trạng điều khoản thanh toán cho đơn hàng bán"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36164,6 +36198,7 @@ msgstr "Tình trạng điều khoản thanh toán cho đơn hàng bán"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36221,7 +36256,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "Phương thức thanh toán là bắt buộc. Vui lòng thêm ít nhất một phương thức thanh toán."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr "Đã làm mới phương thức thanh toán. Vui lòng xem lại trước khi tiếp tục."
@@ -36296,8 +36331,8 @@ msgstr "Đã cập nhật thanh toán."
msgid "Payroll Entry"
msgstr "Mục lương"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "Bảng lương phải trả"
@@ -36344,10 +36379,14 @@ msgstr "Hoạt động đang chờ"
msgid "Pending Amount"
msgstr "Số tiền đang chờ"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36356,9 +36395,18 @@ msgstr "Số lượng đang chờ"
#: 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:273
msgid "Pending Quantity"
msgstr "Số lượng đang chờ"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36388,6 +36436,14 @@ msgstr "Các hoạt động đang chờ hôm nay"
msgid "Pending processing"
msgstr "Đang chờ xử lý"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "Quỹ hưu trí"
@@ -36498,7 +36554,7 @@ msgstr "Phân tích nhận thức"
msgid "Period Based On"
msgstr "Kỳ dựa trên"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "Kỳ đã đóng"
@@ -37062,8 +37118,8 @@ msgstr "Bảng điều khiển nhà máy"
msgid "Plant Floor"
msgstr "Sàn nhà máy"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "Nhà máy và máy móc"
@@ -37099,7 +37155,7 @@ msgstr "Vui lòng đặt mức ưu tiên"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "Vui lòng đặt Nhóm nhà cung cấp trong Cài đặt Mua hàng."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "Vui lòng chỉ định tài khoản"
@@ -37147,7 +37203,7 @@ msgstr "Vui lòng thêm cột Tài khoản ngân hàng"
msgid "Please add the account to root level Company - {0}"
msgstr "Vui lòng thêm tài khoản vào cấp gốc của Công ty - {0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "Vui lòng thêm tài khoản vào cấp gốc của Công ty - {}"
@@ -37155,7 +37211,7 @@ msgstr "Vui lòng thêm tài khoản vào cấp gốc của Công ty - {}"
msgid "Please add {1} role to user {0}."
msgstr "Vui lòng thêm vai trò {1} cho người dùng {0}."
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "Vui lòng điều chỉnh số lượng hoặc chỉnh sửa {0} để tiếp tục."
@@ -37163,7 +37219,7 @@ msgstr "Vui lòng điều chỉnh số lượng hoặc chỉnh sửa {0} để t
msgid "Please attach CSV file"
msgstr "Vui lòng đính kèm tệp CSV"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "Vui lòng hủy và sửa đổi Bút toán thanh toán"
@@ -37197,7 +37253,7 @@ msgstr "Vui lòng kiểm tra hoặc với các hoạt động hoặc Chi phí v
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "Vui lòng kiểm tra thông báo lỗi và thực hiện hành động cần thiết để khắc phục lỗi, sau đó khởi động lại việc đăng lại."
@@ -37222,11 +37278,15 @@ msgstr "Vui lòng nhấp vào 'Tạo lịch trình' để lấy Số serial đã
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "Vui lòng nhấp vào 'Tạo lịch trình' để lấy lịch trình"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "Vui lòng liên hệ với bất kỳ người dùng nào sau đây để gia hạn hạn mức tín dụng cho {0}: {1}"
@@ -37234,11 +37294,11 @@ msgstr "Vui lòng liên hệ với bất kỳ người dùng nào sau đây đ
msgid "Please contact any of the following users to {} this transaction."
msgstr "Vui lòng liên hệ với bất kỳ người dùng nào sau đây để {} giao dịch này."
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "Vui lòng liên hệ với quản trị viên của bạn để gia hạn hạn mức tín dụng cho {0}."
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "Vui lòng chuyển đổi tài khoản mẹ trong công ty con tương ứng thành tài khoản nhóm."
@@ -37250,11 +37310,11 @@ msgstr "Vui lòng tạo Khách hàng từ Khách hàng tiềm năng {0}."
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "Vui lòng tạo Phiếu chi phí hạ tầng đối với các hóa đơn có 'Cập nhật kho' được bật."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "Vui lòng tạo một Chiều kế toán mới nếu cần."
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "Vui lòng tạo mua hàng từ chính tài liệu bán hàng nội bộ hoặc giao hàng"
@@ -37262,11 +37322,11 @@ msgstr "Vui lòng tạo mua hàng từ chính tài liệu bán hàng nội bộ
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "Vui lòng tạo biên nhận mua hàng hoặc hóa đơn mua hàng cho mặt hàng {0}"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "Vui lòng xóa Bundle sản phẩm {0}, trước khi hợp nhất {1} vào {2}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "Vui lòng tạm thời vô hiệu hóa quy trình làm việc cho Bút toán nhật ký {0}"
@@ -37274,7 +37334,7 @@ msgstr "Vui lòng tạm thời vô hiệu hóa quy trình làm việc cho Bút t
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "Vui lòng không hạch toán chi phí của nhiều tài sản vào một Tài sản duy nhất."
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "Vui lòng không tạo hơn 500 mục cùng một lúc"
@@ -37298,7 +37358,7 @@ msgstr "Vui lòng bật chỉ nếu bạn hiểu tác động của việc bật
msgid "Please enable {0} in the {1}."
msgstr "Vui lòng bật {0} trong {1}."
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "Vui lòng bật {} trong {} để cho phép cùng một mặt hàng trong nhiều dòng"
@@ -37310,20 +37370,20 @@ msgstr "Vui lòng đảm bảo rằng tài khoản {0} là tài khoản Bảng c
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 "Vui lòng đảm bảo rằng tài khoản {0} {1} là tài khoản Phải trả. Bạn có thể thay đổi loại tài khoản thành Phải trả hoặc chọn một tài khoản khác."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "Vui lòng đảm bảo tài khoản {} là tài khoản Bảng cân đối kế toán."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "Vui lòng đảm bảo tài khoản {} {} là tài khoản Phải thu."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "Vui lòng nhập Tài khoản chênh lệch hoặc đặt mặc định Tài khoản Điều chỉnh kho cho công ty {0}"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "Vui lòng nhập Tài khoản để thay đổi số tiền"
@@ -37331,15 +37391,15 @@ msgstr "Vui lòng nhập Tài khoản để thay đổi số tiền"
msgid "Please enter Approving Role or Approving User"
msgstr "Vui lòng nhập Vai trò phê duyệt hoặc Người phê duyệt"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr "Vui lòng nhập Số lô"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "Vui lòng nhập Trung tâm chi phí"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "Vui lòng nhập Ngày giao hàng"
@@ -37347,7 +37407,7 @@ msgstr "Vui lòng nhập Ngày giao hàng"
msgid "Please enter Employee Id of this sales person"
msgstr "Vui lòng nhập Mã nhân viên của nhân viên bán hàng này"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "Vui lòng nhập tài khoản chi phí"
@@ -37356,7 +37416,7 @@ msgstr "Vui lòng nhập tài khoản chi phí"
msgid "Please enter Item Code to get Batch Number"
msgstr "Vui lòng nhập Mã mặt hàng để lấy Số lô"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "Vui lòng nhập Mã mặt hàng để lấy số lô"
@@ -37372,7 +37432,7 @@ msgstr "Vui lòng nhập Chi tiết bảo trì trước"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "Vui lòng nhập Số lượng dự kiến cho Mặt hàng {0} tại dòng {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "Vui lòng nhập Mặt hàng sản xuất trước"
@@ -37392,7 +37452,7 @@ msgstr "Vui lòng nhập Ngày tham chiếu"
msgid "Please enter Root Type for account- {0}"
msgstr "Vui lòng nhập Loại gốc cho tài khoản- {0}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr "Vui lòng nhập Số serial"
@@ -37409,7 +37469,7 @@ msgid "Please enter Warehouse and Date"
msgstr "Vui lòng nhập Kho và Ngày"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "Vui lòng nhập Tài khoản xóa nợ"
@@ -37429,7 +37489,7 @@ msgstr "Vui lòng nhập ít nhất một ngày giao hàng và số lượng"
msgid "Please enter company name first"
msgstr "Vui lòng nhập tên công ty trước"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "Vui lòng nhập tiền tệ mặc định trong Công ty chính"
@@ -37457,7 +37517,7 @@ msgstr "Vui lòng nhập ngày giải phóng."
msgid "Please enter serial nos"
msgstr "Vui lòng nhập các số serial"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "Vui lòng nhập tên công ty để xác nhận"
@@ -37525,11 +37585,11 @@ msgstr "Vui lòng đảm bảo rằng các nhân viên trên báo cáo cho một
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "Vui lòng đảm bảo rằng tệp bạn đang sử dụng có cột 'Tài khoản mẹ' trong tiêu đề."
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "Vui lòng đảm bảo rằng bạn thực sự muốn xóa tất cả các giao dịch cho công ty này. Dữ liệu chính của bạn sẽ được giữ nguyên. Hành động này không thể được hoàn tác."
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "Vui lòng đề cập 'Đơn vị đo lường khối lượng' cùng với Khối lượng."
@@ -37588,7 +37648,7 @@ msgstr "Vui lòng chọn Loại mẫu để tải mẫu"
msgid "Please select Apply Discount On"
msgstr "Vui lòng chọn Áp dụng Chiết khấu Trên"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "Vui lòng chọn BOM cho mặt hàng {0}"
@@ -37604,7 +37664,7 @@ msgstr "Vui lòng chọn Tài khoản Ngân hàng"
msgid "Please select Category first"
msgstr "Vui lòng chọn Danh mục trước"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37634,7 +37694,7 @@ msgstr "Vui lòng chọn Ngày hoàn thành cho Nhật ký Bảo trì Tài sản
msgid "Please select Customer first"
msgstr "Vui lòng chọn Khách hàng trước"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "Vui lòng chọn Công ty hiện có để tạo Biểu đồ Tài khoản"
@@ -37643,8 +37703,8 @@ msgstr "Vui lòng chọn Công ty hiện có để tạo Biểu đồ Tài kho
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "Vui lòng chọn Mặt hàng thành phẩm cho Mặt hàng dịch vụ {0}"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "Vui lòng chọn Mã Mặt hàng trước"
@@ -37676,11 +37736,11 @@ msgstr "Vui lòng chọn Ngày đăng trước"
msgid "Please select Price List"
msgstr "Vui lòng chọn Bảng giá"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "Vui lòng chọn Số lượng đối với mặt hàng {0}"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "Vui lòng chọn Kho lưu giữ mẫu trong Cài đặt Kho trước"
@@ -37696,7 +37756,7 @@ msgstr "Vui lòng chọn Ngày bắt đầu và Ngày kết thúc cho Mặt hàn
msgid "Please select Stock Asset Account"
msgstr "Vui lòng chọn Tài khoản tài sản kho"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "Vui lòng chọn Tài khoản Lãi/Lỗ chưa thực hiện hoặc thêm Tài khoản Lãi/Lỗ chưa thực hiện mặc định cho công ty {0}"
@@ -37713,7 +37773,7 @@ msgstr "Vui lòng chọn một công ty"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "Vui lòng chọn một công ty trước."
@@ -37737,7 +37797,7 @@ msgstr "Vui lòng chọn một nhà cung cấp"
msgid "Please select a Warehouse"
msgstr "Vui lòng chọn một kho"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "Vui lòng chọn một Lệnh sản xuất trước."
@@ -37810,11 +37870,15 @@ msgstr "Vui lòng chọn một giá trị cho {0} báo giá_thành {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "Vui lòng chọn mã mặt hàng trước khi đặt kho."
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "Vui lòng chọn ít nhất một bộ lọc: Mã mặt hàng, Lô hoặc Số serial."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37834,7 +37898,7 @@ msgstr "Vui lòng chọn ít nhất một lịch trình."
msgid "Please select atleast one item to continue"
msgstr "Vui lòng chọn ít nhất một mặt hàng để tiếp tục"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "Vui lòng chọn ít nhất một hoạt động để tạo Thẻ công việc"
@@ -37892,7 +37956,7 @@ msgstr "Vui lòng chọn Công ty"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "Vui lòng chọn loại Chương trình Nhiều cấp cho nhiều hơn một quy tắc thu."
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr "Vui lòng chọn Kho trước"
@@ -37921,7 +37985,7 @@ msgstr "Vui lòng chọn loại tài liệu hợp lệ."
msgid "Please select weekly off day"
msgstr "Vui lòng chọn ngày nghỉ hàng tuần"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "Vui lòng chọn {0} trước"
@@ -37930,11 +37994,11 @@ msgstr "Vui lòng chọn {0} trước"
msgid "Please set 'Apply Additional Discount On'"
msgstr "Vui lòng đặt 'Áp dụng chiết khấu bổ sung trên'"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "Vui lòng đặt 'Trung tâm chi phí khấu hao tài sản' trong Công ty {0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "Vui lòng đặt 'Tài khoản Lãi/Lỗ khi thanh lý tài sản' trong Công ty {0}"
@@ -37946,7 +38010,7 @@ msgstr "Vui lòng đặt '{0}' trong Công ty: {1}"
msgid "Please set Account"
msgstr "Vui lòng đặt Tài khoản"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "Vui lòng đặt Tài khoản cho Số tiền thay đổi"
@@ -37976,7 +38040,7 @@ msgstr "Vui lòng đặt Công ty"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "Vui lòng đặt Địa chỉ khách hàng để xác định xem giao dịch có phải là xuất khẩu không."
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "Vui lòng đặt Tài khoản liên quan đến Khấu hao trong Loại tài sản {0} hoặc Công ty {1}"
@@ -37994,7 +38058,7 @@ msgstr "Vui lòng đặt Mã số thuế cho khách hàng '%s'"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "Vui lòng đặt Mã số thuế cho hành chính công '%s'"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "Vui lòng đặt Tài khoản tài sản cố định trong Loại tài sản {0}"
@@ -38040,7 +38104,7 @@ msgstr "Vui lòng đặt một Công ty"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "Vui lòng đặt Trung tâm chi phí cho Tài sản hoặc đặt Trung tâm chi phí khấu hao tài sản cho Công ty {}"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "Vui lòng đặt Danh sách ngày lễ mặc định cho Công ty {0}"
@@ -38077,23 +38141,23 @@ msgstr "Vui lòng đặt ít nhất một hàng trong Bảng Thuế và Phí"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "Vui lòng đặt cả Mã số thuế và Mã số thuế tài chính trên Công ty {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {0}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {}"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "Vui lòng đặt Tài khoản tiền mặt hoặc ngân hàng trong Phương thức thanh toán {}"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "Vui lòng đặt Tài khoản Lãi/Lỗ chênh lệch tỷ giá mặc định trong Công ty {}"
@@ -38122,7 +38186,7 @@ msgstr "Vui lòng đặt {0} mặc định trong Công ty {1}"
msgid "Please set filter based on Item or Warehouse"
msgstr "Vui lòng đặt bộ lọc dựa trên Mặt hàng hoặc Kho"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "Vui lòng đặt một trong những thứ sau:"
@@ -38130,7 +38194,7 @@ msgstr "Vui lòng đặt một trong những thứ sau:"
msgid "Please set opening number of booked depreciations"
msgstr "Vui lòng đặt số khấu hao đã hạch toán mở đầu"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "Vui lòng đặt định kỳ sau khi lưu"
@@ -38142,15 +38206,15 @@ msgstr "Vui lòng đặt Địa chỉ khách hàng"
msgid "Please set the Default Cost Center in {0} company."
msgstr "Vui lòng đặt Trung tâm chi phí mặc định trong công ty {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "Vui lòng đặt Mã mặt hàng trước"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "Vui lòng đặt Kho đích trong Thẻ công việc"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "Vui lòng đặt Kho WIP trong Thẻ công việc"
@@ -38189,7 +38253,7 @@ msgstr "Vui lòng đặt {0} trong BOM Creator {1}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "Vui lòng đặt {0} trong Công ty {1} để hạch toán Lãi/Lỗ chênh lệch tỷ giá"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "Vui lòng đặt {0} thành {1}, cùng tài khoản được sử dụng trong hóa đơn gốc {2}."
@@ -38211,7 +38275,7 @@ msgstr "Vui lòng chỉ định Công ty"
msgid "Please specify Company to proceed"
msgstr "Vui lòng chỉ định Công ty để tiếp tục"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "Vui lòng chỉ định một Row ID hợp lệ cho dòng {0} trong bảng {1}"
@@ -38224,7 +38288,7 @@ msgstr "Vui lòng chỉ định {0} trước."
msgid "Please specify at least one attribute in the Attributes table"
msgstr "Vui lòng chỉ định ít nhất một thuộc tính trong Bảng thuộc tính"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "Vui lòng chỉ định Số lượng hoặc Tỷ giá định giá hoặc cả hai"
@@ -38329,8 +38393,8 @@ msgstr "Chuỗi tuyến đăng"
msgid "Post Title Key"
msgstr "Khóa tiêu đề đăng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "Chi phí bưu điện"
@@ -38395,7 +38459,7 @@ msgstr "Đăng Ngày"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38413,7 +38477,7 @@ msgstr "Đăng Ngày"
#: 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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38535,10 +38599,6 @@ msgstr "Ngày giờ đăng"
msgid "Posting Time"
msgstr "Thời gian đăng"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "Ngày đăng và thời gian đăng là bắt buộc"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38612,18 +38672,23 @@ msgstr "Cung cấp bởi {0}"
msgid "Pre Sales"
msgstr "Bán hàng trước"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "Ưu tiên"
@@ -38796,6 +38861,7 @@ msgstr "Bậc chiết khấu giá"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38819,6 +38885,7 @@ msgstr "Bậc chiết khấu giá"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38870,7 +38937,7 @@ msgstr "Quốc gia bảng giá"
msgid "Price List Currency"
msgstr "Tiền tệ bảng giá"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "Tiền tệ bảng giá chưa được chọn"
@@ -39225,7 +39292,7 @@ msgstr "In Biên nhận"
msgid "Print Receipt on Order Complete"
msgstr "In Biên nhận khi Đơn hàng Hoàn thành"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "In Đơn vị Đo lường sau Số lượng"
@@ -39234,8 +39301,8 @@ msgstr "In Đơn vị Đo lường sau Số lượng"
msgid "Print Without Amount"
msgstr "In Không có Số tiền"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "In và Văn phòng phẩm"
@@ -39243,7 +39310,7 @@ msgstr "In và Văn phòng phẩm"
msgid "Print settings updated in respective print format"
msgstr "Cài đặt in đã được cập nhật trong định dạng in tương ứng"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "In thuế với số tiền bằng không"
@@ -39346,10 +39413,6 @@ msgstr "Vấn đề"
msgid "Procedure"
msgstr "Thủ tục"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "Các quy trình đã bị loại bỏ"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39403,7 +39466,7 @@ msgstr "Tỷ lệ Lỗ không thể lớn hơn 100"
msgid "Process Loss Qty"
msgstr "Số lượng Lỗ"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "Số lượng Tổn thất"
@@ -39484,6 +39547,10 @@ msgstr "Xử lý đăng ký"
msgid "Process in Single Transaction"
msgstr "Xử lý trong một giao dịch"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39579,8 +39646,8 @@ msgstr "Sản phẩm"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39645,7 +39712,7 @@ msgstr "ID giá sản phẩm"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "Sản xuất"
@@ -39859,7 +39926,7 @@ msgstr "Tiến độ % cho một nhiệm vụ không thể lớn hơn 100."
msgid "Progress (%)"
msgstr "Tiến độ (%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "Lời mời hợp tác dự án"
@@ -39903,7 +39970,7 @@ msgstr "Tình trạng dự án"
msgid "Project Summary"
msgstr "Tóm tắt dự án"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "Tóm tắt dự án cho {0}"
@@ -40034,7 +40101,7 @@ msgstr "Số lượng dự kiến"
#. Label of a Card Break in the Projects Workspace
#. Title of a Workspace Sidebar
#: erpnext/config/projects.py:7 erpnext/desktop_icon/projects.json
-#: erpnext/projects/doctype/project/project.py:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40180,7 +40247,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "Khách hàng tiềm năng đã tiếp cận nhưng chưa chuyển đổi"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr "DocType được bảo vệ"
@@ -40195,7 +40262,7 @@ msgstr "Cung cấp địa chỉ email đã đăng ký trong công ty"
msgid "Providing"
msgstr "Cung cấp"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "Tài khoản tạm thời"
@@ -40267,8 +40334,9 @@ msgstr "Xuất bản"
#: 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40591,7 +40659,7 @@ msgstr "Đơn Mua hàng {0} đã được tạo"
msgid "Purchase Order {0} is not submitted"
msgstr "Đơn Mua hàng {0} chưa được trình"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "Đơn đặt hàng"
@@ -40606,7 +40674,7 @@ msgstr "Số lượng Đơn Mua hàng"
msgid "Purchase Orders Items Overdue"
msgstr "Các Mục Đơn Mua hàng Quá hạn"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "Đơn Mua hàng không được phép cho {0} do xếp hạng thẻ điểm {1}."
@@ -40621,7 +40689,7 @@ msgstr "Đơn Mua hàng Cần Thanh toán"
msgid "Purchase Orders to Receive"
msgstr "Đơn Mua hàng Cần Nhận"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "Đơn Mua hàng {0} đã bị hủy liên kết"
@@ -40755,7 +40823,7 @@ msgstr "Trả hàng mua"
#. 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "Mẫu Thuế Mua hàng"
@@ -40853,6 +40921,7 @@ msgstr "Mua sắm"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40862,10 +40931,6 @@ msgstr "Mua sắm"
msgid "Purpose"
msgstr "Mục đích"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "Mục đích phải là một trong {0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40921,6 +40986,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -40969,6 +41035,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41077,11 +41144,11 @@ msgstr "Số lượng Mỗi Đơn vị"
msgid "Qty To Manufacture"
msgstr "Số lượng Để Sản xuất"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "Số lượng cần sản xuất ({0}) không thể là phân số cho Đơn vị đo {2}. Để cho phép điều này, hãy tắt '{1}' trong Đơn vị đo {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 "Số lượng cần sản xuất trong Thẻ công việc không thể lớn hơn Số lượng cần sản xuất trong Lệnh sản xuất cho thao tác {0}. Giải pháp: Bạn có thể giảm Số lượng cần sản xuất trong Thẻ công việc hoặc đặt 'Phần trăm sản xuất vượt cho Lệnh sản xuất' trong {1}."
@@ -41132,8 +41199,8 @@ msgstr "Số lượng theo Đơn vị đo tồn kho"
msgid "Qty for which recursion isn't applicable."
msgstr "Số lượng mà recursion không áp dụng."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "Số lượng cho {0}"
@@ -41188,8 +41255,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "Số lượng để lấy"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "Số lượng để sản xuất"
@@ -41425,17 +41492,17 @@ msgstr "Mẫu kiểm tra chất lượng"
msgid "Quality Inspection Template Name"
msgstr "Tên mẫu kiểm tra chất lượng"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr "Yêu cầu kiểm tra chất lượng cho mặt hàng {0} trước khi hoàn thành thẻ công việc {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr "Kiểm tra chất lượng {0} chưa được gửi cho mặt hàng: {1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr "Kiểm tra chất lượng {0} bị từ chối cho mặt hàng: {1}"
@@ -41449,7 +41516,7 @@ msgstr "Kiểm tra chất lượng"
msgid "Quality Inspections"
msgstr "Các kiểm tra chất lượng"
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "Quản lý chất lượng"
@@ -41581,7 +41648,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41716,7 +41783,7 @@ msgstr "Số lượng phải lớn hơn không"
msgid "Quantity must be less than or equal to {0}"
msgstr "Số lượng phải nhỏ hơn hoặc bằng {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "Số lượng không được nhiều hơn {0}"
@@ -41726,21 +41793,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "Số lượng yêu cầu cho Mặt hàng {0} ở dòng {1}"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "Số lượng phải lớn hơn 0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "Số lượng sản xuất"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "Số lượng để sản xuất không thể bằng không cho thao tác {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "Số lượng để sản xuất phải lớn hơn 0."
@@ -41763,7 +41830,7 @@ msgstr "Quart Khô (Mỹ)"
msgid "Quart Liquid (US)"
msgstr "Quart Lỏng (Mỹ)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "Quý {0} {1}"
@@ -41882,11 +41949,11 @@ msgstr "Báo giá cho"
msgid "Quotation Trends"
msgstr "Xu hướng báo giá"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "Báo giá {0} đã bị hủy"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "Báo giá {0} không thuộc loại {1}"
@@ -42193,7 +42260,7 @@ msgstr "Tỷ giá mà tiền tệ của nhà cung cấp được chuyển đổi
msgid "Rate at which this tax is applied"
msgstr "Tỷ giá mà thuế này được áp dụng"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr "Đơn giá của các mặt hàng '{}' không thể thay đổi"
@@ -42359,7 +42426,7 @@ msgstr "Nguyên liệu thô đã tiêu thụ"
msgid "Raw Materials Consumption"
msgstr "Tiêu thụ nguyên liệu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr "Nguyên liệu thô còn thiếu"
@@ -42398,12 +42465,6 @@ msgstr "Nguyên liệu thô không được để trống."
msgid "Raw Materials to Customer"
msgstr "Nguyên liệu thô cho khách hàng"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "SQL thô"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42412,7 +42473,7 @@ msgstr "Số lượng nguyên liệu thô tiêu thụ sẽ được xác thực
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42593,7 +42654,7 @@ msgid "Receivable / Payable Account"
msgstr "Tài khoản phải thu/phải trả"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43054,7 +43115,7 @@ msgstr "Tham khảo #"
msgid "Reference #{0} dated {1}"
msgstr "Tham chiếu #{0} ngày {1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "Ngày tham chiếu cho Chiết khấu thanh toán sớm"
@@ -43218,11 +43279,11 @@ msgstr "Tham chiếu: {0}, Mã mặt hàng: {1} và Customer: {2}"
msgid "References"
msgstr "Tài liệu tham khảo"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "Tham chiếu đến các hóa đơn bán hàng chưa đầy đủ"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "Tham chiếu đến các Đơn hàng bán chưa đầy đủ"
@@ -43384,7 +43445,7 @@ msgid "Remaining Amount"
msgstr "Số tiền còn lại"
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:189
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "Số dư còn lại"
@@ -43442,7 +43503,7 @@ msgstr "Nhận xét"
#: 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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43506,7 +43567,7 @@ msgstr "Đổi tên giá trị thuộc tính trong Thuộc tính mặt hàng."
msgid "Rename Log"
msgstr "Nhật ký đổi tên"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "Không cho phép đổi tên"
@@ -43523,7 +43584,7 @@ msgstr "Các công việc đổi tên cho doctype {0} đã được đưa vào h
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "Các công việc đổi tên cho doctype {0} chưa được đưa vào hàng đợi."
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "Việc đổi tên chỉ được phép thông qua công ty mẹ {0}, để tránh sai lệch."
@@ -43647,7 +43708,7 @@ msgstr "Mẫu báo cáo"
msgid "Report Type is mandatory"
msgstr "Loại báo cáo là bắt buộc"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "Báo cáo sự cố"
@@ -43892,7 +43953,7 @@ msgstr "Yêu cầu thông tin"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44073,7 +44134,7 @@ msgstr "Yêu cầu thực hiện"
msgid "Research"
msgstr "Nghiên cứu"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "Nghiên cứu & Phát triển"
@@ -44118,7 +44179,7 @@ msgstr "Đặt trước"
msgid "Reservation Based On"
msgstr "Đặt trước dựa trên"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44162,7 +44223,7 @@ msgstr "Dự trữ cho phân lắp phụ"
msgid "Reserved"
msgstr "Đã đặt trước"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr "Xung đột lô đã đặt trước"
@@ -44232,14 +44293,14 @@ msgstr "Số lượng dự trữ"
msgid "Reserved Quantity for Production"
msgstr "Số lượng dự trữ cho sản xuất"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
msgid "Reserved Serial No."
msgstr "Số serial đã đặt trước"
#. 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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44248,13 +44309,13 @@ msgstr "Số serial đã đặt trước"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:204
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:332
msgid "Reserved Stock"
msgstr "Tồn kho đã đặt trước"
-#: erpnext/stock/stock_ledger.py:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "Tồn kho đã đặt trước cho lô"
@@ -44520,7 +44581,7 @@ msgstr "Trường Tiêu đề Kết quả"
msgid "Resume"
msgstr "Tiếp tục"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "Tiếp tục Công việc"
@@ -44545,8 +44606,8 @@ msgstr "Nhà bán lẻ"
msgid "Retain Sample"
msgstr "Giữ Mẫu"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "Lợi nhuận Giữ lại"
@@ -44621,7 +44682,7 @@ msgstr "Trả lại theo Biên nhận Mua hàng"
msgid "Return Against Subcontracting Receipt"
msgstr "Trả lại theo Biên nhận Gia công phụ"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "Trả lại Thành phần"
@@ -44657,7 +44718,7 @@ msgstr "Số lượng Trả lại từ Kho Từ chối"
msgid "Return Raw Material to Customer"
msgstr "Trả lại Nguyên vật liệu cho Khách hàng"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "Hóa đơn trả lại tài sản đã bị hủy"
@@ -44755,8 +44816,8 @@ msgstr "Trả lại"
msgid "Revaluation Journals"
msgstr "Sổ Nhật ký Đánh giá lại"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "Thặng dư Đánh giá lại"
@@ -44988,7 +45049,7 @@ msgstr "Loại gốc cho {0} phải là một trong Tài sản, Nợ phải tr
msgid "Root Type is mandatory"
msgstr "Loại gốc là bắt buộc"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "Không thể sửa Gốc."
@@ -45007,8 +45068,8 @@ msgstr "Làm tròn Số lượng Tự do"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45188,21 +45249,21 @@ msgstr "Hàng # {0}: Tỷ giá không thể lớn hơn tỷ giá đã sử dụn
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "Hàng # {0}: Mặt hàng đã trả lại {1} không tồn tại trong {2} {3}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "Hàng #1: ID tuần tự phải là 1 cho Thao tác {0}."
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "Hàng #{0} (Bảng Thanh toán): Số tiền phải âm"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "Hàng #{0} (Bảng Thanh toán): Số tiền phải dương"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "Hàng #{0}: Mục đặt hàng lại đã tồn tại cho kho {1} với loại đặt hàng lại {2}."
@@ -45223,7 +45284,7 @@ msgstr "Hàng #{0}: Kho Chấp nhận và Kho Từ chối không thể giống n
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "Hàng #{0}: Kho Chấp nhận là bắt buộc cho Mặt hàng được chấp nhận {1}"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "Hàng #{0}: Tài khoản {1} không thuộc về công ty {2}"
@@ -45284,31 +45345,31 @@ msgstr "Hàng #{0}: Không thể hủy Mục Hàng tồn kho này vì số lư
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr "Hàng #{0}: Không thể tạo mục với các liên kết tài liệu khấu trừ và khấu hao khác nhau."
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "Hàng #{0}: Không thể xóa mặt hàng {1} đã được lập hóa đơn."
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "Hàng #{0}: Không thể xóa mặt hàng {1} đã được giao"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "Hàng #{0}: Không thể xóa mặt hàng {1} đã được nhận"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "Hàng #{0}: Không thể xóa mặt hàng {1} có lệnh sản xuất được gán."
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr "Hàng #{0}: Không thể xóa mặt hàng {1} đã được đặt hàng theo Đơn hàng Bán này."
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "Hàng #{0}: Không thể đặt Tỷ giá nếu số tiền đã lập hóa đơn lớn hơn số tiền cho Mặt hàng {1}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "Hàng #{0}: Không thể chuyển nhiều hơn Số lượng Yêu cầu {1} cho Mặt hàng {2} theo Thẻ Công việc {3}"
@@ -45358,11 +45419,11 @@ msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} đối với Mụ
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không thể thêm nhiều lần trong quá trình nhận hàng phụ thuộc."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không thể thêm nhiều lần."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không tồn tại trong bảng Mặt hàng yêu cầu được liên kết với Đơn hàng phụ thuộc vào."
@@ -45370,7 +45431,7 @@ msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không tồn tạ
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} vượt quá số lượng có sẵn thông qua Đơn hàng phụ thuộc vào"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} có số lượng không đủ trong Đơn hàng phụ thuộc vào. Số lượng có sẵn là {2}."
@@ -45387,7 +45448,7 @@ msgstr "Hàng #{0}: Mặt hàng do khách hàng cung cấp {1} không phải là
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr "Hàng #{0}: Ngày gối đè lên hàng khác trong nhóm {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "Hàng #{0}: BOM mặc định không tìm thấy cho Mặt hàng thành phẩm {1}"
@@ -45411,22 +45472,22 @@ msgstr "Hàng #{0}: Tài khoản chi phí chưa được đặt cho Mặt hàng
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr "Hàng #{0}: Tài khoản chi phí {1} không hợp lệ cho Hóa đơn mua hàng {2}. Chỉ tài khoản chi phí từ mặt hàng không tồn kho mới được phép."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "Hàng #{0}: Số lượng mặt hàng thành phẩm không thể bằng không"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "Hàng #{0}: Mặt hàng thành phẩm chưa được chỉ định cho mặt hàng dịch vụ {1}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "Hàng #{0}: Mặt hàng thành phẩm {1} phải là mặt hàng ký gửi"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "Hàng #{0}: Thành phẩm phải là {1}"
@@ -45455,7 +45516,7 @@ msgstr "Hàng #{0}: Tần suất khấu hao phải lớn hơn không"
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "Hàng #{0}: Từ ngày không thể trước Đến ngày"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "Hàng #{0}: Các trường Từ giờ và Đến giờ là bắt buộc"
@@ -45463,7 +45524,7 @@ msgstr "Hàng #{0}: Các trường Từ giờ và Đến giờ là bắt buộc"
msgid "Row #{0}: Item added"
msgstr "Hàng #{0}: Mặt hàng đã thêm"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr "Hàng #{0}: Mặt hàng {1} không thể chuyển nhiều hơn {2} đối với {3} {4}"
@@ -45491,7 +45552,7 @@ msgstr "Hàng #{0}: Mặt hàng {1} trong kho {2}: Có sẵn {3}, Cần {4}."
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "Hàng #{0}: Mặt hàng {1} không phải là Mặt hàng do Khách hàng cung cấp."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "Hàng #{0}: Mặt hàng {1} không phải là Mặt hàng có Serial/Lô. Nó không thể có Số serial/Số lô đối với nó."
@@ -45532,7 +45593,7 @@ msgstr "Hàng #{0}: Ngày khấu hao tiếp theo không thể trước Ngày s
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "Hàng #{0}: Ngày khấu hao tiếp theo không thể trước Ngày mua"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "Hàng #{0}: Không được phép thay đổi Nhà cung cấp vì Đơn mua hàng đã tồn tại"
@@ -45544,10 +45605,6 @@ msgstr "Hàng #{0}: Chỉ {1} có sẵn để dự trữ cho Mặt hàng {2}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "Hàng #{0}: Khấu hao lũy kế đầu kỳ phải nhỏ hơn hoặc bằng {1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "Hàng #{0}: Công việc {1} chưa hoàn thành cho {2} số lượng thành phẩm trong Lệnh sản xuất {3}. Vui lòng cập nhật trạng thái công việc thông qua Thẻ công việc {4}."
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45569,11 +45626,11 @@ msgstr "Hàng #{0}: Vui lòng chọn Mặt hàng thành phẩm mà Mặt hàng d
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "Hàng #{0}: Vui lòng chọn Kho lắp ráp phụ"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "Hàng #{0}: Vui lòng đặt số lượng đặt lại"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "Hàng #{0}: Vui lòng cập nhật tài khoản doanh thu/chi phí deferred trong hàng mặt hàng hoặc tài khoản mặc định trong công ty mẹ"
@@ -45595,15 +45652,15 @@ msgstr "Hàng #{0}: Số lượng phải là số dương"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "Hàng #{0}: Số lượng phải nhỏ hơn hoặc bằng Số lượng có sẵn để Dự trữ (Số lượng thực tế - Số lượng dự trữ) {1} cho Mặt hàng {2} đối với Lô {3} trong Kho {4}."
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "Hàng #{0}: Kiểm tra chất lượng là bắt buộc cho Mặt hàng {1}"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "Hàng #{0}: Kiểm tra chất lượng {1} chưa được gửi cho mặt hàng: {2}"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "Hàng #{0}: Kiểm tra chất lượng {1} đã bị từ chối cho mặt hàng {2}"
@@ -45611,7 +45668,7 @@ msgstr "Hàng #{0}: Kiểm tra chất lượng {1} đã bị từ chối cho m
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "Hàng #{0}: Số lượng không thể là số không dương. Vui lòng tăng số lượng hoặc xóa Mặt hàng {1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "Hàng #{0}: Số lượng cho Mặt hàng {1} không thể bằng không."
@@ -45627,18 +45684,18 @@ msgstr "Hàng #{0}: Số lượng phải lớn hơn 0 cho {1} Mặt hàng {2}"
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "Hàng #{0}: Số lượng dự trữ cho Mặt hàng {1} phải lớn hơn 0."
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "Hàng #{0}: Tỷ giá phải giống như {1}: {2} ({3} / {4})"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "Hàng #{0}: Loại tài liệu tham chiếu phải là một trong Đơn mua hàng, Hóa đơn mua hàng hoặc Bút toán nhật ký"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "Hàng #{0}: Loại tài liệu tham chiếu phải là một trong Đơn bán hàng, Hóa đơn bán hàng, Bút toán nhật ký hoặc Đòi nợ"
@@ -45680,7 +45737,7 @@ msgstr "Hàng #{0}: Tỷ giá bán cho mặt hàng {1} thấp hơn {2}.\n"
"\t\t\t\t\tbạn có thể tắt '{5}' trong {6} để bỏ qua\n"
"\t\t\t\t\txác thực này."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "Hàng #{0}: ID thứ tự phải là {1} hoặc {2} cho Công việc {3}."
@@ -45700,19 +45757,19 @@ msgstr "Hàng #{0}: Số serial {1} đã được chọn."
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "Hàng #{0}: Số serial {1} không phải là một phần của Đơn hàng phụ thuộc vào được liên kết. Vui lòng chọn Số serial hợp lệ."
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "Hàng #{0}: Ngày kết thúc dịch vụ không thể trước Ngày đăng hóa đơn"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "Hàng #{0}: Ngày bắt đầu dịch vụ không thể lớn hơn Ngày kết thúc dịch vụ"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "Hàng #{0}: Ngày bắt đầu và kết thúc dịch vụ là bắt buộc cho kế toán deferred"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "Hàng #{0}: Đặt Nhà cung cấp cho mặt hàng {1}"
@@ -45724,19 +45781,19 @@ msgstr "Hàng #{0}: Vì 'Theo dõi hàng bán thành phẩm' được bật, BOM
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "Hàng #{0}: Kho nguồn phải giống như Kho khách hàng {1} từ Đơn hàng phụ thuộc vào được liên kết"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "Hàng #{0}: Kho nguồn {1} cho mặt hàng {2} không thể là kho khách hàng."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "Hàng #{0}: Kho nguồn {1} cho mặt hàng {2} phải giống như Kho nguồn {3} trong Lệnh sản xuất."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr "Hàng #{0}: Kho nguồn và Kho đích không thể giống nhau cho Chuyển nguyên liệu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr "Hàng #{0}: Kho nguồn, Kho đích và Chiều hàng tồn kho không thể giống nhau hoàn toàn cho Chuyển nguyên liệu"
@@ -45752,6 +45809,10 @@ msgstr "Hàng #{0}: Trạng thái là bắt buộc"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "Hàng #{0}: Trạng thái phải là {1} cho Chiết khấu hóa đơn {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "Hàng #{0}: Hàng tồn kho không thể được dự trữ cho Mặt hàng {1} đối với Lô bị vô hiệu hóa {2}."
@@ -45768,7 +45829,7 @@ msgstr "Hàng #{0}: Hàng tồn kho không thể được dự trữ trong kho n
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "Hàng #{0}: Hàng tồn kho đã được dự trữ cho Mặt hàng {1}."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "Hàng #{0}: Hàng tồn kho được dự trữ cho mặt hàng {1} trong kho {2}."
@@ -45781,7 +45842,7 @@ msgstr "Hàng #{0}: Hàng tồn kho không có sẵn để dự trữ cho Mặt
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "Hàng #{0}: Hàng tồn kho không có sẵn để dự trữ cho Mặt hàng {1} trong Kho {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "Hàng #{0}: Số lượng tồn kho {1} ({2}) cho mặt hàng {3} không thể vượt quá {4}"
@@ -45793,7 +45854,7 @@ msgstr "Hàng #{0}: Kho đích phải giống như Kho khách hàng {1} từ Đ
msgid "Row #{0}: The batch {1} has already expired."
msgstr "Hàng #{0}: Lô {1} đã hết hạn."
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "Hàng #{0}: Kho {1} không phải là kho con của kho nhóm {2}"
@@ -45829,7 +45890,7 @@ msgstr "Hàng #{0}: Bạn không thể sử dụng chiều hàng tồn kho '{1}'
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "Hàng #{0}: Bạn phải chọn một Tài sản cho Mặt hàng {1}."
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "Hàng #{0}: {1} không thể âm cho mặt hàng {2}"
@@ -45845,7 +45906,7 @@ msgstr "Hàng #{0}: {1} là bắt buộc để tạo Hóa đơn {2} Mở đầu"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "Hàng #{0}: {1} của {2} phải là {3}. Vui lòng cập nhật {1} hoặc chọn một tài khoản khác."
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr "Hàng #{0}:Số lượng cho Mặt hàng {1} không thể là không."
@@ -45946,7 +46007,7 @@ msgstr "Hàng #{}: {}"
msgid "Row #{}: {} {} does not exist."
msgstr "Hàng #{}: {} {} không tồn tại."
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "Hàng #{}: {} {} không thuộc về Công ty {}. Vui lòng chọn {} hợp lệ."
@@ -45954,7 +46015,7 @@ msgstr "Hàng #{}: {} {} không thuộc về Công ty {}. Vui lòng chọn {} h
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "Hàng số {0}: Yêu cầu Kho. Vui lòng đặt Kho Mặc định cho Mặt hàng {1} và Công ty {2}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "Hàng {0}: Yêu cầu Thao tác cho mặt hàng nguyên vật liệu {1}"
@@ -45962,7 +46023,7 @@ msgstr "Hàng {0}: Yêu cầu Thao tác cho mặt hàng nguyên vật liệu {1}
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "Hàng {0} số lượng đã chọn ít hơn số lượng yêu cầu, cần thêm {1} {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "Hàng {0}# Mặt hàng {1} không tìm thấy trong bảng 'Nguyên vật liệu Đã cung cấp' trong {2} {3}"
@@ -45994,11 +46055,11 @@ msgstr "Hàng {0}: Số tiền được phân bổ {1} phải nhỏ hơn hoặc
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "Hàng {0}: Số tiền được phân bổ {1} phải nhỏ hơn hoặc bằng số tiền thanh toán còn lại {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "Hàng {0}: Vì {1} được bật, nguyên vật liệu không thể được thêm vào mục {2}. Sử dụng mục {3} để tiêu thụ nguyên vật liệu."
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "Hàng {0}: Định mức Nguyên vật liệu không tìm thấy cho Mặt hàng {1}"
@@ -46016,7 +46077,7 @@ msgstr "Hàng {0}: Số lượng tiêu thụ {1} {2} phải nhỏ hơn hoặc b
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "Hàng {0}: Hệ số chuyển đổi là bắt buộc"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "Hàng {0}: Trung tâm chi phí {1} không thuộc về Công ty {2}"
@@ -46036,7 +46097,7 @@ msgstr "Hàng {0}: Tiền tệ của BOM #{1} phải bằng tiền tệ đã ch
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "Hàng {0}: Mục ghi nợ không thể được liên kết với {1}"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "Hàng {0}: Kho giao hàng ({1}) và Kho khách hàng ({2}) không thể giống nhau"
@@ -46044,7 +46105,7 @@ msgstr "Hàng {0}: Kho giao hàng ({1}) và Kho khách hàng ({2}) không thể
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "Hàng {0}: Kho giao hàng không thể giống như Kho khách hàng cho Mặt hàng {1}."
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "Hàng {0}: Ngày đến hạn trong bảng Điều khoản thanh toán không thể trước Ngày đăng"
@@ -46089,16 +46150,16 @@ msgstr "Hàng {0}: Đối với Nhà cung cấp {1}, Địa chỉ Email là Bắ
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "Hàng {0}: Từ giờ và Đến giờ là bắt buộc."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "Hàng {0}: Từ giờ và Đến giờ của {1} đang chồng chéo với {2}"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "Hàng {0}: Kho xuất là bắt buộc cho chuyển kho nội bộ"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "Hàng {0}: Từ thời gian phải nhỏ hơn thời gian"
@@ -46114,7 +46175,7 @@ msgstr "Hàng {0}: Tham chiếu không hợp lệ {1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "Hàng {0}: Mẫu thuế mặt hàng đã được cập nhật theo hiệu lực và tỷ lệ áp dụng"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "Hàng {0}: Tỷ giá mặt hàng đã được cập nhật theo tỷ giá định giá vì đây là chuyển kho nội bộ"
@@ -46138,7 +46199,7 @@ msgstr "Hàng {0}: Số lượng của mặt hàng {1} không thể cao hơn s
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr "Hàng {0}: Thời gian vận hành phải lớn hơn 0 cho công việc {1}"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "Hàng {0}: Số lượng đóng gói phải bằng Số lượng {1}."
@@ -46206,7 +46267,7 @@ msgstr "Hàng {0}: Hóa đơn Mua hàng {1} không có tác động hàng tồn
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "Hàng {0}: Số lượng không thể lớn hơn {1} cho Mặt hàng {2}."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "Hàng {0}: Số lượng theo Đơn vị Hàng tồn kho không thể bằng không."
@@ -46218,10 +46279,6 @@ msgstr "Hàng {0}: Số lượng phải lớn hơn 0."
msgid "Row {0}: Quantity cannot be negative."
msgstr "Hàng {0}: Số lượng không thể âm."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "Hàng {0}: Số lượng không có sẵn cho {4} trong kho {1} tại thời gian đăng của mục ({2} {3})"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr "Hàng {0}: Hóa đơn Bán hàng {1} đã được tạo cho {2}"
@@ -46230,11 +46287,11 @@ msgstr "Hàng {0}: Hóa đơn Bán hàng {1} đã được tạo cho {2}"
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "Hàng {0}: Ca không thể thay đổi vì khấu hao đã được xử lý"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "Hàng {0}: Mặt hàng Gia công phụ là bắt buộc cho nguyên vật liệu {1}"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "Hàng {0}: Kho Đích là bắt buộc cho chuyển kho nội bộ"
@@ -46246,11 +46303,11 @@ msgstr "Hàng {0}: Task {1} không thuộc về Project {2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr "Hàng {0}: Toàn bộ số tiền chi phí cho tài khoản {1} trong {2} đã được phân bổ."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "Hàng {0}: Mặt hàng {1}, số lượng phải là số dương"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "Hàng {0}: Tài khoản {3} {1} không thuộc về công ty {2}"
@@ -46258,11 +46315,11 @@ msgstr "Hàng {0}: Tài khoản {3} {1} không thuộc về công ty {2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "Hàng {0}: Để đặt chu kỳ {1}, chênh lệch giữa ngày bắt đầu và ngày kết thúc phải lớn hơn hoặc bằng {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr "Hàng {0}: Số lượng đã chuyển không thể lớn hơn số lượng yêu cầu."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "Hàng {0}: Hệ số chuyển đổi Đơn vị là bắt buộc"
@@ -46275,11 +46332,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr "Hàng {0}: Kho {1} được liên kết với công ty {2}. Vui lòng chọn một kho thuộc về công ty {3}."
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "Hàng {0}: Workstation hoặc Loại Workstation là bắt buộc cho thao tác {1}"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "Hàng {0}: người dùng chưa áp dụng quy tắc {1} cho mặt hàng {2}"
@@ -46291,7 +46348,7 @@ msgstr "Hàng {0}: Tài khoản {1} đã được áp dụng cho Chiều Kế to
msgid "Row {0}: {1} must be greater than 0"
msgstr "Hàng {0}: {1} phải lớn hơn 0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "Hàng {0}: {1} {2} không thể giống như {3} (Tài khoản Đối tác) {4}"
@@ -46337,7 +46394,7 @@ msgstr "Hàng đã xóa trong {0}"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "Các hàng có cùng tiêu đề tài khoản sẽ được hợp nhất trên Sổ cái"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "Các hàng có ngày đến hạn trùng lặp trong các hàng khác đã được tìm thấy: {0}"
@@ -46345,7 +46402,7 @@ msgstr "Các hàng có ngày đến hạn trùng lặp trong các hàng khác đ
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "Các hàng: {0} có 'Payment Entry' là reference_type. Điều này không nên được đặt thủ công."
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "Các hàng: {0} trong phần {1} không hợp lệ. Tên Tham chiếu phải trỏ đến một Payment Entry hoặc Journal Entry hợp lệ."
@@ -46552,8 +46609,8 @@ msgstr "Tồn kho an toàn"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46575,8 +46632,8 @@ msgstr "Chế độ Lương"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46590,18 +46647,23 @@ msgstr "Chế độ Lương"
#: 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "Bán hàng"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "Tài khoản bán hàng"
@@ -46625,8 +46687,8 @@ msgstr "Đóng góp và Thưởng Bán hàng"
msgid "Sales Defaults"
msgstr "Mặc định bán hàng"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "Chi phí bán hàng"
@@ -46795,11 +46857,11 @@ msgstr "Hóa đơn Bán hàng không được tạo bởi người dùng {}"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "Chế độ Hóa đơn Bán hàng được kích hoạt trong POS. Vui lòng tạo Hóa đơn Bán hàng thay thế."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "Hóa đơn bán hàng {0} đã được gửi"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "Hóa đơn Bán hàng {0} phải được xóa trước khi hủy Đơn hàng Bán này"
@@ -46997,25 +47059,25 @@ msgstr "Xu hướng Đơn hàng Bán"
msgid "Sales Order required for Item {0}"
msgstr "Yêu cầu Đơn hàng Bán cho Mặt hàng {0}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "Đơn hàng Bán {0} đã tồn tại cho Đơn đặt hàng Mua của Khách hàng {1}. Để cho phép nhiều Đơn hàng Bán, bật {2} trong {3}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "Đơn hàng Bán {0} chưa được gửi"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "Đơn hàng Bán {0} không hợp lệ"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "Đơn hàng Bán {0} là {1}"
@@ -47059,6 +47121,7 @@ msgstr "Đơn hàng Bán để Giao"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47071,7 +47134,7 @@ msgstr "Đơn hàng Bán để Giao"
#: 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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47177,7 +47240,7 @@ msgstr "Tóm tắt thanh toán bán hàng"
#: 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47270,7 +47333,7 @@ msgstr "Sổ Bán hàng"
msgid "Sales Representative"
msgstr "Đại diện Bán hàng"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "Trả hàng bán"
@@ -47294,7 +47357,7 @@ msgstr "Tóm tắt bán hàng"
#. 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "Mẫu Thuế Bán hàng"
@@ -47413,7 +47476,7 @@ msgstr "Cùng Mặt hàng"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "Cùng mặt hàng và tổ hợp kho đã được nhập."
@@ -47445,12 +47508,12 @@ msgstr "Kho Giữ Mẫu"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "Kích thước mẫu"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "Số lượng mẫu {0} không được nhiều hơn số lượng nhận được {1}"
@@ -47694,7 +47757,7 @@ msgstr "Tài sản phế liệu"
msgid "Scrap Warehouse"
msgstr "Kho phế liệu"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "Ngày phế liệu không thể trước ngày mua"
@@ -47813,8 +47876,8 @@ msgstr "Vai trò Phụ"
msgid "Secretary"
msgstr "Thư ký"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "Các khoản vay có bảo đảm"
@@ -47852,7 +47915,7 @@ msgstr "Chọn mục thay thế"
msgid "Select Alternative Items for Sales Order"
msgstr "Chọn các Mặt hàng Thay thế cho Đơn hàng Bán"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "Chọn giá trị thuộc tính"
@@ -47894,7 +47957,7 @@ msgstr "Chọn Công ty"
msgid "Select Company Address"
msgstr "Chọn Địa chỉ Công ty"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "Chọn Thao tác Khắc phục"
@@ -47930,7 +47993,7 @@ msgstr "Chọn Chiều"
msgid "Select Dispatch Address "
msgstr "Chọn Địa chỉ Gửi hàng "
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "Chọn nhân viên"
@@ -47955,7 +48018,7 @@ msgstr "Chọn Mặt hàng"
msgid "Select Items based on Delivery Date"
msgstr "Chọn Mặt hàng dựa trên Ngày Giao hàng"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "Chọn Mặt hàng để Kiểm tra Chất lượng"
@@ -47993,7 +48056,7 @@ msgstr "Chọn Lịch thanh toán"
msgid "Select Possible Supplier"
msgstr "Chọn Nhà cung cấp Có thể"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "Chọn Số lượng"
@@ -48068,7 +48131,7 @@ msgstr "Chọn Mức ưu tiên Mặc định."
msgid "Select a Payment Method."
msgstr "Chọn một Phương thức Thanh toán."
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "Chọn nhà cung cấp"
@@ -48091,7 +48154,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "Chọn một Nhóm Mặt hàng."
@@ -48107,9 +48170,9 @@ msgstr "Chọn một hóa đơn để tải dữ liệu tóm tắt"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "Chọn một mặt hàng từ mỗi bộ để sử dụng trong Đơn hàng Bán."
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "Chọn ít nhất một giá trị từ mỗi thuộc tính."
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48125,7 +48188,7 @@ msgstr "Chọn tên công ty đầu tiên."
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "Chọn sổ tài chính cho mặt hàng {0} ở hàng {1}"
@@ -48157,7 +48220,7 @@ msgstr "Chọn Tài khoản Ngân hàng để đối chiếu."
msgid "Select the Default Workstation where the Operation will be performed. This will be fetched in BOMs and Work Orders."
msgstr "Chọn Workstation Mặc định nơi Thao tác sẽ được thực hiện. Điều này sẽ được lấy trong BOM và Work Order."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "Chọn Mặt hàng cần sản xuất."
@@ -48174,7 +48237,7 @@ msgstr "Chọn Kho"
msgid "Select the customer or supplier."
msgstr "Chọn khách hàng hoặc nhà cung cấp."
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "Chọn ngày"
@@ -48182,6 +48245,12 @@ msgstr "Chọn ngày"
msgid "Select the date and your timezone"
msgstr "Chọn ngày và múi giờ của bạn"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "Chọn nguyên vật liệu (Mặt hàng) cần thiết để sản xuất Mặt hàng"
@@ -48210,7 +48279,7 @@ msgstr "Chọn, để làm cho khách hàng có thể tìm kiếm bằng các tr
msgid "Selected POS Opening Entry should be open."
msgstr "Mục Mở POS đã chọn phải đang mở."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "Bảng giá đã chọn phải có các trường mua và bán được chọn."
@@ -48241,30 +48310,30 @@ msgstr "Tài liệu đã chọn phải ở trạng thái đã gửi"
msgid "Self delivery"
msgstr "Tự giao hàng"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "Bán"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "Bán Tài sản"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr "Số lượng Bán"
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr "Số lượng bán không thể vượt quá số lượng tài sản"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr "Số lượng bán không thể vượt quá số lượng tài sản. Tài sản {0} chỉ có {1} mặt hàng."
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr "Số lượng bán phải lớn hơn không"
@@ -48517,7 +48586,7 @@ msgstr "Các Số Serial / Batch"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48537,7 +48606,7 @@ msgstr "Các Số Serial / Batch"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48582,7 +48651,7 @@ msgstr "Phạm vi Serial No"
msgid "Serial No Reserved"
msgstr "Serial No đã dự trữ"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr "Serial No Series Trùng lặp"
@@ -48722,7 +48791,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "Các Serial No đã được tạo thành công"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "Các Serial No được dự trữ trong các Mục Dự trữ Hàng tồn kho, bạn cần hủy dự trữ chúng trước khi tiếp tục."
@@ -48792,7 +48861,7 @@ msgstr "Serial và Batch"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49206,7 +49275,7 @@ msgstr "Đặt Tạm ứng và Phân bổ (FIFO)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "Đặt tỷ lệ cơ bản theo cách thủ công"
@@ -49225,8 +49294,8 @@ msgstr "Đặt Kho Giao hàng"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "Đặt Số lượng Thành phẩm"
@@ -49393,11 +49462,11 @@ msgstr "Đặt bởi Mẫu Thuế Mặt hàng"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "Đặt tài khoản hàng tồn kho mặc định cho hàng tồn kho vĩnh cửu"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "Đặt tài khoản {0} mặc định cho các mặt hàng không tồn kho"
@@ -49429,7 +49498,7 @@ msgstr "Đặt tỷ giá của mục tiểu lắp ráp dựa trên BOM"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "Đặt mục tiêu theo Nhóm Mặt hàng cho Nhân viên Bán hàng này."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "Đặt Ngày Bắt đầu theo Kế hoạch (Ngày Ước tính mà bạn muốn Sản xuất bắt đầu)"
@@ -49540,7 +49609,7 @@ msgid "Setting up company"
msgstr "Thành lập công ty"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "Yêu cầu đặt {0}"
@@ -49560,6 +49629,10 @@ msgstr "Cài đặt cho Module Bán hàng"
msgid "Settled"
msgstr "Đã thanh toán"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49752,7 +49825,7 @@ msgstr "Loại lô hàng"
msgid "Shipment details"
msgstr "Chi tiết lô hàng"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "Lô hàng"
@@ -49790,7 +49863,7 @@ msgstr "Tên địa chỉ giao hàng"
msgid "Shipping Address Template"
msgstr "Mẫu địa chỉ giao hàng"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "Địa chỉ giao hàng không thuộc về {0}"
@@ -49933,8 +50006,8 @@ msgstr "Tiểu sử ngắn cho trang web và các ấn phẩm khác."
msgid "Short-term Investments"
msgstr "Đầu tư ngắn hạn"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr "Dự phòng ngắn hạn"
@@ -50268,7 +50341,7 @@ msgstr "Đồng thời"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr "Since there are active depreciable assets under this category, the following accounts are required. "
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
@@ -50313,7 +50386,7 @@ msgstr "Bỏ qua ghi chú giao hàng"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50355,8 +50428,8 @@ msgstr "Làm mịn Hằng số"
msgid "Soap & Detergent"
msgstr "Xà phòng & Chất tẩy rửa"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "Phần mềm"
@@ -50380,7 +50453,7 @@ msgstr "Đã bán bởi"
msgid "Solvency Ratios"
msgstr "Tỷ lệ thanh toán"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "Một số thông tin Công ty bắt buộc đang bị thiếu. Bạn không có quyền cập nhật chúng. Vui lòng liên hệ Quản trị viên hệ thống của bạn."
@@ -50444,7 +50517,7 @@ msgstr "Tên trường nguồn"
msgid "Source Location"
msgstr "Vị trí nguồn"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50453,11 +50526,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50515,7 +50588,12 @@ msgstr "Liên kết địa chỉ kho nguồn"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "Kho nguồn là bắt buộc đối với mặt hàng {0}."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "Kho nguồn {0} phải giống Kho khách hàng {1} trong Đơn đặt hàng nhận thầu phụ."
@@ -50523,24 +50601,23 @@ msgstr "Kho nguồn {0} phải giống Kho khách hàng {1} trong Đơn đặt h
msgid "Source and Target Location cannot be same"
msgstr "Vị trí nguồn và đích không thể giống nhau"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "Kho nguồn và kho đích không thể giống nhau cho hàng {0}"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "Kho nguồn và kho đích phải khác nhau"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "Nguồn vốn (nợ)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "Kho nguồn là bắt buộc đối với hàng {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50581,7 +50658,7 @@ msgstr "Chi tiêu cho Tài khoản {0} ({1}) giữa {2} và {3} đã vượt qu
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50589,7 +50666,7 @@ msgid "Split"
msgstr "Tách"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "Tách tài sản"
@@ -50613,7 +50690,7 @@ msgstr "Tách từ"
msgid "Split Issue"
msgstr "Tách vấn đề"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "Số lượng tách"
@@ -50625,6 +50702,11 @@ msgstr "Số lượng tách phải nhỏ hơn số lượng tài sản"
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "Đang tách {0} {1} thành {2} hàng theo Điều khoản thanh toán"
@@ -50697,13 +50779,13 @@ msgstr "Mua hàng tiêu chuẩn"
msgid "Standard Description"
msgstr "Mô tả tiêu chuẩn"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "Chi phí thuế suất tiêu chuẩn"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "Bán hàng tiêu chuẩn"
@@ -50724,8 +50806,8 @@ msgstr "Mẫu tiêu chuẩn"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "Các điều khoản và điều kiện tiêu chuẩn có thể được thêm vào Bán hàng và Mua hàng. Ví dụ: Thời hạn của đề nghị, Điều khoản thanh toán, An toàn và Sử dụng, v.v."
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "Hàng cung cấp thuế suất tiêu chuẩn trong {0}"
@@ -50760,7 +50842,7 @@ msgstr "Ngày bắt đầu không thể trước ngày hiện tại"
msgid "Start Date should be lower than End Date"
msgstr "Ngày bắt đầu phải trước ngày kết thúc"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "Bắt đầu công việc"
@@ -50889,7 +50971,7 @@ msgstr "Minh họa trạng thái"
msgid "Status and Reference"
msgstr "Trạng thái và Tham chiếu"
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "Trạng thái phải là Đã hủy hoặc Đã hoàn thành"
@@ -50919,6 +51001,7 @@ msgstr "Thông tin pháp lý và các thông tin chung khác về Nhà cung cấ
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50927,8 +51010,8 @@ msgstr "Kho"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51028,6 +51111,16 @@ msgstr "Bút toán đóng kỳ tồn kho {0} đã được đưa vào hàng đ
msgid "Stock Closing Log"
msgstr "Nhật ký đóng kỳ tồn kho"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51037,10 +51130,6 @@ msgstr "Nhật ký đóng kỳ tồn kho"
msgid "Stock Details"
msgstr "Chi tiết tồn kho"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "Các bút toán tồn kho đã được tạo cho Work Order {0}: {1}"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51104,7 +51193,7 @@ msgstr "Bút toán tồn kho đã được tạo cho Danh sách chọn này"
msgid "Stock Entry {0} created"
msgstr "Bút toán tồn kho {0} đã được tạo"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "Bút toán tồn kho {0} đã được tạo"
@@ -51112,8 +51201,8 @@ msgstr "Bút toán tồn kho {0} đã được tạo"
msgid "Stock Entry {0} is not submitted"
msgstr "Bút toán tồn kho {0} chưa được gửi"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "Chi phí tồn kho"
@@ -51191,8 +51280,8 @@ msgstr "Mức tồn kho"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "Nợ tồn kho"
@@ -51295,8 +51384,8 @@ msgstr "Số lượng tồn kho vs Số lượng serial"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51308,7 +51397,7 @@ msgstr "Hàng tồn kho đã nhận nhưng chưa lập hóa đơn"
#. 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51320,7 +51409,7 @@ msgstr "Đối soát tồn kho"
msgid "Stock Reconciliation Item"
msgstr "Mục đối soát tồn kho"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "Các đối soát tồn kho"
@@ -51345,9 +51434,9 @@ msgstr "Cài đặt đăng lại tồn kho"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51358,7 +51447,7 @@ msgstr "Cài đặt đăng lại tồn kho"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51383,10 +51472,10 @@ msgstr "Dự trữ tồn kho"
msgid "Stock Reservation Entries Cancelled"
msgstr "Các mục dự trữ tồn kho đã bị hủy"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "Các mục dự trữ tồn kho đã được tạo"
@@ -51414,7 +51503,7 @@ msgstr "Mục dự trữ tồn kho không thể được cập nhật vì nó đ
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 "Mục dự trữ tồn kho được tạo đối với Danh sách chọn không thể được cập nhật. Nếu bạn cần thực hiện thay đổi, chúng tôi khuyên bạn hủy mục hiện có và tạo một mục mới."
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:567
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "Kho dự trữ tồn kho không khớp"
@@ -51454,7 +51543,7 @@ msgstr "Số lượng dự trữ tồn kho (theo ĐVT tồn kho)"
#: 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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51569,7 +51658,7 @@ msgstr "Cài đặt giao dịch tồn kho"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51702,11 +51791,11 @@ msgstr "Tồn kho không thể được đặt trong kho nhóm {0}."
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "Tồn kho không thể được đặt trong kho nhóm {0}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "Tồn kho không thể được cập nhật cho các ghi chú giao hàng sau: {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "Tồn kho không thể được cập nhật vì hóa đơn chứa mặt hàng giao hàng trực tiếp. Vui lòng tắt 'Cập nhật tồn kho' hoặc xóa mặt hàng giao hàng trực tiếp."
@@ -51761,14 +51850,14 @@ msgstr "Stone"
msgid "Stop Reason"
msgstr "Lý do dừng"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "Work Order đã dừng không thể bị hủy, hãy bỏ dừng trước để hủy"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "Cửa hàng"
@@ -51826,7 +51915,7 @@ msgstr "Kho cụm phụ"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52088,7 +52177,7 @@ msgstr "Mục dịch vụ đơn hàng ký gửi"
msgid "Subcontracting Order Supplied Item"
msgstr "Mục cung cấp đơn hàng ký gửi"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "Đơn hàng ký gửi {0} đã được tạo."
@@ -52177,7 +52266,7 @@ msgstr "Thiết lập ký gửi"
msgid "Subdivision"
msgstr "Tiểu huyện"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "Gửi hành động thất bại"
@@ -52198,7 +52287,7 @@ msgstr "Gửi các hóa đơn đã tạo"
msgid "Submit Journal Entries"
msgstr "Gửi các bút toán Journal"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "Gửi Work Order này để xử lý thêm."
@@ -52352,7 +52441,7 @@ msgstr "Đã đối soát thành công"
msgid "Successfully Set Supplier"
msgstr "Đã đặt Nhà cung cấp thành công"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "Đã thay đổi Stock UOM thành công, vui lòng xác định lại các hệ số chuyển đổi cho UOM mới."
@@ -52376,7 +52465,7 @@ msgstr "Đã nhập thành công {0} bản ghi."
msgid "Successfully linked to Customer"
msgstr "Đã liên kết thành công với Khách hàng"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "Đã liên kết thành công với Nhà cung cấp"
@@ -52536,7 +52625,7 @@ msgstr "Số lượng được cung cấp"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52634,6 +52723,7 @@ msgstr "Chi tiết nhà cung cấp"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52643,7 +52733,7 @@ msgstr "Chi tiết nhà cung cấp"
#: 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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52658,6 +52748,7 @@ msgstr "Chi tiết nhà cung cấp"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52742,7 +52833,7 @@ msgstr "Tóm tắt sổ cái nhà cung cấp"
#. 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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52777,8 +52868,6 @@ msgid "Supplier Number At Customer"
msgstr "Số nhà cung cấp tại khách hàng"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "Các số nhà cung cấp"
@@ -52830,7 +52919,7 @@ msgstr "Liên hệ chính nhà cung cấp"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52859,7 +52948,7 @@ msgstr "So sánh báo giá từ nhà cung cấp"
msgid "Supplier Quotation Item"
msgstr "Mục báo giá từ nhà cung cấp"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "Báo giá từ nhà cung cấp {0} đã được tạo"
@@ -52948,7 +53037,7 @@ msgstr "Loại nhà cung cấp"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "Kho nhà cung cấp"
@@ -52965,17 +53054,12 @@ msgstr "Nhà cung cấp giao cho Khách hàng"
msgid "Supplier is required for all selected Items"
msgstr "Nhà cung cấp là bắt buộc cho tất cả các mặt hàng đã chọn"
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "Các số nhà cung cấp được chỉ định bởi khách hàng"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "Nhà cung cấp hàng hóa hoặc dịch vụ."
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "Nhà cung cấp {0} không tìm thấy trong {1}"
@@ -52988,8 +53072,8 @@ msgstr "Nhà cung cấp"
msgid "Suppliers"
msgstr "Nhà cung cấp"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "Hàng cung cấp chịu thuế ngược"
@@ -53080,7 +53164,7 @@ msgstr "Bắt đầu đồng bộ"
msgid "Synchronize all accounts every hour"
msgstr "Đồng bộ hóa tất cả các tài khoản mỗi giờ"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "Hệ thống đang được sử dụng"
@@ -53111,7 +53195,7 @@ msgstr "Hệ thống sẽ thực hiện chuyển đổi ngầm bằng cách sử
msgid "System will fetch all the entries if limit value is zero."
msgstr "Hệ thống sẽ lấy tất cả các bút toán nếu giới hạn bằng không."
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "Hệ thống sẽ không kiểm tra thanh toán quá vì số tiền cho mặt hàng {0} trong {1} bằng không"
@@ -53132,10 +53216,16 @@ msgstr "Tóm tắt tính toán TDS"
msgid "TDS Deducted"
msgstr "TDS đã khấu trừ"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "TDS phải trả"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53283,7 +53373,7 @@ msgstr "Địa chỉ kho đích"
msgid "Target Warehouse Address Link"
msgstr "Liên kết địa chỉ kho đích"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "Lỗi đặt kho đích"
@@ -53291,24 +53381,23 @@ msgstr "Lỗi đặt kho đích"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "Kho đích cho Thành phẩm phải giống Kho thành phẩm {1} trong Work Order {2} được liên kết với Đơn nhận hàng ký gửi."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "Kho đích là bắt buộc trước khi gửi"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
msgid "Target Warehouse is set for some items but the customer is not an internal customer."
msgstr "Kho đích được đặt cho một số mặt hàng nhưng khách hàng không phải là khách hàng nội bộ."
-#: erpnext/manufacturing/doctype/work_order/work_order.py:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "Kho đích {0} phải giống Kho giao hàng {1} trong Mục đơn nhận hàng ký gửi."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "Kho mục tiêu là bắt buộc đối với hàng {0}"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53425,8 +53514,8 @@ msgstr "Số tiền thuế sau chiết khấu (Đơn vị tiền tệ công ty)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "Số tiền thuế sẽ được làm tròn ở cấp độ hàng (mặt hàng)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "Tài sản thuế"
@@ -53458,7 +53547,6 @@ msgstr "Tài sản thuế"
msgid "Tax Breakup"
msgstr "Chi tiết thuế"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53480,7 +53568,6 @@ msgstr "Chi tiết thuế"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53496,6 +53583,7 @@ msgstr "Chi tiết thuế"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53507,8 +53595,8 @@ msgstr "Loại thuế"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "Loại thuế đã được thay đổi thành \"Tổng\" vì tất cả các Mặt hàng đều là mặt hàng không tồn kho"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr "Chi phí thuế"
@@ -53582,7 +53670,7 @@ msgstr "Thuế suất %"
msgid "Tax Rates"
msgstr "Thuế suất"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "Hoàn thuế cho khách du lịch theo Chương trình hoàn thuế cho khách du lịch"
@@ -53600,7 +53688,7 @@ msgstr "Hàng thuế"
msgid "Tax Rule"
msgstr "Quy tắc thuế"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "Quy tắc thuế xung đột với {0}"
@@ -53615,7 +53703,7 @@ msgstr "Cài đặt thuế"
msgid "Tax Template"
msgstr "Mẫu thuế"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "Mẫu thuế là bắt buộc."
@@ -53935,7 +54023,7 @@ msgstr "Thuế và Phí đã khấu trừ"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "Thuế và Phí đã khấu trừ (Tiền tệ công ty)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "Hàng thuế #{0}: {1} không thể nhỏ hơn {2}"
@@ -53968,8 +54056,8 @@ msgstr "Công nghệ"
msgid "Telecommunications"
msgstr "Viễn thông"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "Chi phí điện thoại"
@@ -54020,13 +54108,13 @@ msgstr "Tạm thời giữ"
msgid "Temporary"
msgstr "Tạm thời"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "Tài khoản tạm thời"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "Mở cửa tạm thời"
@@ -54208,7 +54296,7 @@ msgstr "Mẫu Điều khoản và Điều kiện"
#: 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54307,7 +54395,7 @@ msgstr "Văn bản hiển thị trên báo cáo tài chính (ví dụ: 'Tổng d
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "Trường 'Từ số gói.' không được để trống và giá trị của nó không được nhỏ hơn 1."
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "Quyền truy cập vào Yêu cầu Báo giá từ Cổng thông tin bị vô hiệu hóa. Để cho phép truy cập, hãy bật nó trong Cài đặt Cổng thông tin."
@@ -54360,7 +54448,8 @@ msgstr "Điều khoản thanh toán ở hàng {0} có thể bị trùng lặp."
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "Danh sách chọn có các mục dự trữ tồn kho không thể được cập nhật. Nếu bạn cần thực hiện thay đổi, chúng tôi khuyên bạn hủy các mục dự trữ tồn kho hiện có trước khi cập nhật Danh sách chọn."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "Số lượng hao hụt quy trình đã được đặt lại theo Số lượng hao hụt quy trình của thẻ công việc"
@@ -54376,7 +54465,7 @@ msgstr "Số serial ở Hàng #{0}: {1} không có sẵn trong kho {2}."
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "Số serial {0} được dự trữ đối với {1} {2} và không thể được sử dụng cho bất kỳ giao dịch nào khác."
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "Gói Serial và Batch {0} không hợp lệ cho giao dịch này. 'Loại giao dịch' phải là 'Xuất' thay vì 'Nhập' trong Gói Serial và Batch {0}"
@@ -54412,7 +54501,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 "Lô {0} đã được dự trữ trong {1} {2}. Vì vậy, không thể tiến hành với {3} {4}, được tạo đối với {5} {6}."
@@ -54420,7 +54509,11 @@ msgstr "Lô {0} đã được dự trữ trong {1} {2}. Vì vậy, không thể
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr "Số lượng hoàn thành {0} của thao tác {1} không thể lớn hơn số lượng hoàn thành {2} của thao tác trước {3}."
@@ -54440,7 +54533,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "BOM mặc định cho mặt hàng đó sẽ được hệ thống lấy. Bạn cũng có thể thay đổi BOM."
@@ -54473,7 +54566,7 @@ msgstr "Trường Từ cổ đông không được để trống"
msgid "The field To Shareholder cannot be blank"
msgstr "Trường Đến cổ đông không được để trống"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "Trường {0} ở hàng {1} chưa được đặt"
@@ -54514,11 +54607,11 @@ msgstr "Các tài sản sau đã không đăng được các mục khấu hao t
msgid "The following batches are expired, please restock them: {0}"
msgstr "Các lô sau đã hết hạn, vui lòng nhập hàng lại: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr "Các mục đăng lại đã hủy sau tồn tại cho {0} : {1} Vui lòng xóa các mục này trước khi tiếp tục."
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "Các thuộc tính đã xóa sau tồn tại trong Biến thể nhưng không có trong Mẫu. Bạn có thể xóa các Biến thể hoặc giữ các thuộc tính trong mẫu."
@@ -54540,7 +54633,7 @@ msgstr "Các lịch thanh toán sau đã tồn tại:\n"
msgid "The following rows are duplicates:"
msgstr "Các hàng sau là trùng lặp:"
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "{0} sau đây đã được tạo: {1}"
@@ -54567,7 +54660,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "Mặt hàng {item} không được đánh dấu là mặt hàng {type_of}. Bạn có thể bật nó là mặt hàng {type_of} từ master mặt hàng của nó."
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "Các mặt hàng {0} và {1} có mặt trong {2} sau:"
@@ -54625,7 +54718,7 @@ msgstr "Thao tác {0} không thể là thao tác phụ"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "Hóa đơn gốc nên được hợp nhất trước hoặc cùng với hóa đơn trả lại."
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr "Số tiền chưa thanh toán {0} trong {1} ít hơn {2}. Đang cập nhật số tiền chưa thanh toán cho hóa đơn này."
@@ -54637,6 +54730,12 @@ msgstr "Tài khoản gốc {0} không tồn tại trong mẫu đã tải lên"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "Tài khoản cổng thanh toán trong kế hoạch {0} khác với tài khoản cổng thanh toán trong yêu cầu thanh toán này"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54678,7 +54777,7 @@ msgstr "Hàng tồn kho dự trữ sẽ được giải phóng khi bạn cập n
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "Hàng tồn kho dự trữ sẽ được giải phóng. Bạn có chắc chắn muốn tiến hành không?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "Tài khoản gốc {0} phải là một nhóm"
@@ -54694,7 +54793,7 @@ msgstr "Tài khoản thay đổi đã chọn {} không thuộc về Công ty {}.
msgid "The selected item cannot have Batch"
msgstr "Mặt hàng đã chọn không thể có Lô"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr "Số lượng bán nhỏ hơn tổng số lượng tài sản. Số lượng còn lại sẽ được chia thành một tài sản mới. Hành động này không thể được hoàn tác. Bạn có muốn tiếp tục không? "
@@ -54727,7 +54826,7 @@ msgstr "Cổ phiếu không tồn tại với {0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "Hàng tồn kho cho mặt hàng {0} trong kho {1} âm vào ngày {2}. Bạn nên tạo một mục dương {3} trước ngày {4} và thời gian {5} để đăng tỷ giá định giá chính xác. Để biết thêm chi tiết, vui lòng đọc tài liệu ."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "Hàng tồn kho đã được dự trữ cho các Mặt hàng và Kho sau, bỏ dự trữ cùng để {0} Đối soát Tồn kho: {1}"
@@ -54749,11 +54848,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "Hệ thống sẽ tạo Hóa đơn bán hàng hoặc Hóa đơn POS từ giao diện POS dựa trên cài đặt này. Đối với các giao dịch khối lượng lớn, nên sử dụng Hóa đơn POS."
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "Tác vụ đã được đưa vào hàng đợi như một công việc nền. Trong trường hợp có bất kỳ vấn đề nào khi xử lý nền, hệ thống sẽ thêm một bình luận về lỗi trên Đối soát Tồn kho này và quay lại giai đoạn Nháp"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Submitted stage"
msgstr "Tác vụ đã được đưa vào hàng đợi như một công việc nền. Trong trường hợp có bất kỳ vấn đề nào khi xử lý nền, hệ thống sẽ thêm một bình luận về lỗi trên Đối soát Tồn kho này và quay lại giai đoạn Đã gửi"
@@ -54801,15 +54900,15 @@ msgstr "Giá trị của {0} khác nhau giữa các mặt hàng {1} và {2}"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "Giá trị {0} đã được gán cho một mặt hàng hiện có {1}."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "Kho nơi bạn lưu trữ các mặt hàng hoàn thành trước khi chúng được giao."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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 "Kho nơi bạn lưu trữ nguyên vật liệu thô. Mỗi mặt hàng yêu cầu có thể có một kho nguồn riêng. Kho nhóm cũng có thể được chọn làm kho nguồn. Khi gửi Lệnh sản xuất, nguyên vật liệu thô sẽ được dự trữ trong các kho này để sử dụng cho sản xuất."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "Kho nơi các mặt hàng của bạn sẽ được chuyển khi bạn bắt đầu sản xuất. Kho nhóm cũng có thể được chọn làm kho Đang thực hiện."
@@ -54817,19 +54916,19 @@ msgstr "Kho nơi các mặt hàng của bạn sẽ được chuyển khi bạn b
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0} ({1}) phải bằng {2} ({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0} chứa các mặt hàng theo đơn giá."
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr "Tiền tố {0} '{1}' đã tồn tại. Vui lòng thay đổi Dãy số Serial No, nếu không bạn sẽ gặp lỗi Mục trùng lặp."
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "{0} {1} đã được tạo thành công"
@@ -54837,7 +54936,7 @@ msgstr "{0} {1} đã được tạo thành công"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0} {1} không khớp với {0} {2} trong {3} {4}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} được sử dụng để tính chi phí định giá cho thành phẩm {2}."
@@ -54853,7 +54952,7 @@ msgstr "Có các bảo trì hoặc sửa chữa đang hoạt động đối vớ
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "Có sự không nhất quán giữa tỷ giá, số cổ phần và số tiền được tính toán"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "Có các bút toán trên tài khoản này. Thay đổi {0} thành không-{1} trong hệ thống đang chạy sẽ gây ra kết quả không chính xác trong báo cáo 'Tài khoản {2}'"
@@ -54882,7 +54981,7 @@ msgstr "Không có chỗ trống vào ngày này"
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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "Có hai tùy chọn để duy trì định giá hàng tồn kho. FIFO (nhập trước - xuất trước) và Bình quân di động. Để hiểu rõ hơn về chủ đề này, vui lòng truy cập Định giá hàng tồn kho, FIFO và Bình quân di động. "
@@ -54922,7 +55021,7 @@ msgstr "Không tìm thấy lô nào cho {0}: {1}"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "Phải có ít nhất 1 Thành phẩm trong Phiếu kho này"
@@ -54978,11 +55077,11 @@ msgstr "Mặt hàng này là Biến thể của {0} (Mẫu)."
msgid "This Month's Summary"
msgstr "Tóm tắt Tháng này"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "Đơn mua hàng này đã được giao hoàn toàn cho bên thứ ba."
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "�ơn đặt hàng này đã được giao hoàn toàn cho bên thứ ba."
@@ -55016,7 +55115,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "Điều này bao gồm tất cả các thẻ điểm gắn với Cài đặt này"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "Tài liệu này vượt quá giới hạn {0} {1} cho mặt hàng {4}. Bạn đang tạo một {3} khác đối với cùng một {2}?"
@@ -55119,11 +55218,11 @@ msgstr "Điều này được coi là nguy hiểm từ quan điểm kế toán."
msgid "This is done to handle accounting for cases when Purchase Receipt is created after Purchase Invoice"
msgstr "Điều này được thực hiện để xử lý kế toán cho các trường hợp khi Phiếu nhận hàng mua được tạo sau Hóa đơn mua hàng"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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 "Điều này được bật theo mặc định. Nếu bạn muốn lập kế hoạch nguyên vật liệu cho các cụm con của mặt hàng bạn đang sản xuất, hãy để điều này được bật. Nếu bạn lập kế hoạch và sản xuất các cụm con riêng biệt, bạn có thể tắt hộp kiểm này."
-#: erpnext/stock/doctype/item/item.js:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "Điều này dành cho các mặt hàng nguyên vật liệu thô sẽ được sử dụng để tạo thành phẩm. Nếu mặt hàng là một dịch vụ bổ sung như 'giặt' sẽ được sử dụng trong Định mức nguyên vật liệu, hãy để điều này không được chọn."
@@ -55192,7 +55291,7 @@ msgstr "Lịch trình này được tạo khi Tài sản {0} được tiêu th
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "Lịch trình này được tạo khi Tài sản {0} được sửa chữa thông qua Sửa chữa tài sản {1}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "Lịch trình này được tạo khi Tài sản {0} được khôi phục do hủy Hóa đơn bán hàng {1}."
@@ -55200,15 +55299,15 @@ msgstr "Lịch trình này được tạo khi Tài sản {0} được khôi ph
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "Lịch trình này được tạo khi Tài sản {0} được khôi phục khi hủy Tích tụ tài sản {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "Lịch trình này được tạo khi Tài sản {0} được khôi phục."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "Lịch trình này được tạo khi Tài sản {0} được trả lại thông qua Hóa đơn bán hàng {1}."
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "Lịch trình này được tạo khi Tài sản {0} bị thanh lý."
@@ -55216,7 +55315,7 @@ msgstr "Lịch trình này được tạo khi Tài sản {0} bị thanh lý."
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "Lịch trình này được tạo khi Tài sản {0} được {1} thành Tài sản mới {2}."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "Lịch trình này được tạo khi Tài sản {0} được {1} thông qua Hóa đơn bán hàng {2}."
@@ -55285,7 +55384,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "Điều này sẽ hạn chế quyền truy cập của người dùng vào hồ sơ nhân viên khác"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "{} này sẽ được coi là chuyển vật liệu."
@@ -55396,7 +55495,7 @@ msgstr "Thời gian tính bằng phút"
msgid "Time in mins."
msgstr "Thời gian tính bằng phút."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "Nhật ký thời gian là bắt buộc cho {0} {1}"
@@ -55505,7 +55604,7 @@ msgstr "Cần thanh toán"
msgid "To Currency"
msgstr "Sang tiền tệ"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "Ngày kết thúc không thể trước Ngày bắt đầu"
@@ -55732,11 +55831,15 @@ msgstr "Để thêm Các hoạt động, hãy đánh dấu hộp kiểm 'Có ho
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "Để thêm nguyên vật liệu thô của mặt hàng gia công nếu bao gồm các mục khai thác bị tắt."
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "Để cho phép thanh toán vượt quá, hãy cập nhật \"Cho phép thanh toán vượt\" trong Cài đặt tài khoản hoặc mặt hàng."
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "Để cho phép nhận/giao vượt quá, hãy cập nhật \"Cho phép nhận/giao vượt\" trong Cài đặt kho hoặc mặt hàng."
@@ -55779,11 +55882,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr "Để bao gồm chi phí cụm con và các mặt hàng phụ trong Thành phẩm trên lệnh sản xuất mà không cần sử dụng thẻ công việc, khi tùy chọn 'Sử dụng Định mức đa cấp' được bật."
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "Để bao gồm thuế trong hàng {0} trong đơn giá mặt hàng, thuế trong các hàng {1} cũng phải được bao gồm"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "Để hợp nhất, các thuộc tính sau phải giống nhau cho cả hai mặt hàng"
@@ -55791,7 +55894,7 @@ msgstr "Để hợp nhất, các thuộc tính sau phải giống nhau cho cả
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "Để không áp dụng Quy tắc giá trong một giao dịch cụ thể, tất cả các Quy tắc giá áp dụng nên bị tắt."
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "Để ghi đè điều này, hãy bật '{0}' trong công ty {1}"
@@ -55816,7 +55919,7 @@ msgstr "Để gửi hóa đơn mà không có phiếu nhận hàng mua, vui lòn
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "Để sử dụng sổ tài chính khác, vui lòng bỏ đánh dấu 'Bao gồm tài sản FB mặc định'"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -55966,7 +56069,7 @@ msgstr "Tổng số phân bổ"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56073,12 +56176,12 @@ msgstr "Tổng hoa hồng"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "Tổng số lượng đã hoàn thành"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr "Tổng số lượng đã hoàn thành là bắt buộc cho Thẻ công việc {0}, vui lòng bắt đầu và hoàn thành thẻ công việc trước khi gửi"
@@ -56380,7 +56483,7 @@ msgstr "Tổng số tiền công nợ"
msgid "Total Paid Amount"
msgstr "Tổng số tiền đã thanh toán"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "Tổng số tiền thanh toán trong Lịch thanh toán phải bằng Tổng cộng / Tổng làm tròn"
@@ -56392,7 +56495,7 @@ msgstr "Tổng số tiền Yêu cầu thanh toán không thể lớn hơn số t
msgid "Total Payments"
msgstr "Tổng thanh toán"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "Tổng số lượng đã chọn {0} nhiều hơn số lượng đặt {1}. Bạn có thể đặt Cho phép chọn vượt trong Cài đặt kho."
@@ -56675,7 +56778,7 @@ msgstr "Tổng thời gian máy trạm (Tính bằng giờ)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "Tổng phần trăm phân bổ cho nhóm bán hàng phải bằng 100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "Tổng phần trăm đóng góp phải bằng 100"
@@ -56850,7 +56953,7 @@ msgstr "Ngày giao dịch"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr "Tài liệu xóa giao dịch {0} đã được kích hoạt cho công ty {1}"
@@ -56874,11 +56977,11 @@ msgstr "Mục hồ sơ xóa giao dịch"
msgid "Transaction Deletion Record To Delete"
msgstr "Xóa hồ sơ giao dịch"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr "Hồ sơ xóa giao dịch {0} đang chạy. {1}"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr "Hồ sơ xóa giao dịch {0} hiện đang xóa {1}. Không thể lưu tài liệu cho đến khi xóa xong."
@@ -56983,7 +57086,8 @@ msgstr "Giao dịch mà thuế bị khấu giữ"
msgid "Transaction from which tax is withheld"
msgstr "Giao dịch từ đó thuế bị khấu giữ"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "Giao dịch không được phép đối với Lệnh sản xuất đã dừng {0}"
@@ -57030,11 +57134,16 @@ msgstr "Lịch sử hàng năm của giao dịch"
msgid "Transactions against the Company already exist! Chart of Accounts can only be imported for a Company with no transactions."
msgstr "Các giao dịch đối với Công ty đã tồn tại! Bảng tài khoản chỉ có thể được nhập cho Công ty không có giao dịch."
+#. Description of the 'Credit Limit' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "Các giao dịch sử dụng Hóa đơn bán hàng trong POS đã bị tắt."
@@ -57215,8 +57324,8 @@ msgstr "Thông tin người vận chuyển"
msgid "Transporter Name"
msgstr "Tên người vận chuyển"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "Chi phí đi lại"
@@ -57480,6 +57589,7 @@ msgstr "Cài đặt UAE VAT"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57495,7 +57605,7 @@ msgstr "Cài đặt UAE VAT"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57556,7 +57666,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "Hệ số chuyển đổi Đơn vị đo"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "Hệ số chuyển đổi Đơn vị đo ({0} -> {1}) không tìm thấy cho mặt hàng: {2}"
@@ -57569,7 +57679,7 @@ msgstr "Hệ số chuyển đổi Đơn vị đo là bắt buộc trong hàng {0
msgid "UOM Name"
msgstr "Tên Đơn vị đo"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "Hệ số chuyển đổi Đơn vị đo là bắt buộc cho Đơn vị đo: {0} trong Mặt hàng: {1}"
@@ -57641,13 +57751,13 @@ msgstr "Không thể tìm thấy tỷ giá cho {0} đến {1} cho ngày chính {
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "Không thể tìm thấy điểm bắt đầu tại {0}. Bạn cần có điểm số đứng bao phủ từ 0 đến 100"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "Không thể tìm thấy khung thời gian trong {0} ngày tới cho hoạt động {1}. Vui lòng tăng 'Lập kế hoạch công suất cho (Ngày)' trong {2}."
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "Không thể tìm thấy biến:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57728,7 +57838,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr "Mẫu dãy đặt tên không mong đợi"
@@ -57747,7 +57857,7 @@ msgstr "Đơn vị"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr "Đơn giá"
@@ -57764,7 +57874,7 @@ msgstr "Đơn vị đo"
msgid "Unit of Measure (UOM)"
msgstr "Đơn vị đo (UOM)"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "Đơn vị đo {0} đã được nhập nhiều hơn một lần trong Bảng hệ số chuyển đổi"
@@ -57909,7 +58019,7 @@ msgstr "Các mục chưa đối soát"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57949,12 +58059,12 @@ msgstr "Chưa giải quyết"
msgid "Unscheduled"
msgstr "Đột xuất"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "Vay không có bảo đảm"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "Bỏ đặt Yêu cầu thanh toán đã khớp"
@@ -58130,7 +58240,7 @@ msgstr "Cập nhật các mặt hàng"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "Cập nhật công nợ cho chính mình"
@@ -58209,11 +58319,11 @@ msgstr "Đã cập nhật {0} Hàng(s) Báo cáo tài chính với tên danh m
msgid "Updating Costing and Billing fields against this Project..."
msgstr "Đang cập nhật các trường chi phí và thanh toán đối với Dự án này..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "Đang cập nhật các biến thể..."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "Đang cập nhật trạng thái Lệnh sản xuất"
@@ -58415,7 +58525,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "Sử dụng tỷ giá ngày giao dịch"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "Sử dụng tên khác với tên dự án trước đó"
@@ -58457,7 +58567,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr "Được sử dụng với Mẫu báo cáo tài chính"
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "Diễn đàn người dùng"
@@ -58521,6 +58631,11 @@ msgstr "Người dùng có thể bật hộp kiểm nếu họ muốn điều ch
msgid "Users can make manufacture entry against Job Cards"
msgstr "Người dùng có thể tạo mục sản xuất đối với Thẻ công việc"
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58543,8 +58658,8 @@ msgstr "Người dùng có vai trò này sẽ được thông báo nếu việc
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "Sử dụng tồn kho âm sẽ vô hiệu hóa định giá FIFO/Bình quân di động khi tồn kho âm."
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "Chi phí tiện ích"
@@ -58554,7 +58669,7 @@ msgstr "Chi phí tiện ích"
msgid "VAT Accounts"
msgstr "Các tài khoản VAT"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "Số tiền VAT (AED)"
@@ -58564,12 +58679,12 @@ msgid "VAT Audit Report"
msgstr "Báo cáo kiểm toán VAT"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "VAT trên Chi phí và Tất cả các Đầu vào khác"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "VAT trên Bán hàng và Tất cả các Đầu ra khác"
@@ -58763,7 +58878,6 @@ msgstr "Phương pháp định giá"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58779,14 +58893,12 @@ msgstr "Phương pháp định giá"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "Tỷ giá định giá"
@@ -58794,19 +58906,19 @@ msgstr "Tỷ giá định giá"
msgid "Valuation Rate (In / Out)"
msgstr "Tỷ giá định giá (Nhập / Xuất)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "Thiếu tỷ giá định giá"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "Tỷ giá định giá cho Mặt hàng {0}, là bắt buộc để thực hiện các bút toán kế toán cho {1} {2}."
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "Tỷ giá định giá là bắt buộc nếu nhập tồn kho đầu kỳ"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "Tỷ giá định giá là bắt buộc cho Mặt hàng {0} tại hàng {1}"
@@ -58816,7 +58928,7 @@ msgstr "Tỷ giá định giá là bắt buộc cho Mặt hàng {0} tại hàng
msgid "Valuation and Total"
msgstr "Định giá và Tổng"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "Tỷ giá định giá cho các mặt hàng do khách hàng cung cấp đã được đặt thành không."
@@ -58830,7 +58942,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "Tỷ giá định giá cho mặt hàng theo Hóa đơn bán hàng (Chỉ cho các chuyển giao nội bộ)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "Các khoản phí loại định giá không thể được đánh dấu là Bao gồm"
@@ -58842,7 +58954,7 @@ msgstr "Các khoản phí loại định giá không thể được đánh dấu
msgid "Value (G - D)"
msgstr "Giá trị (G - D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "Giá trị ({0})"
@@ -58961,12 +59073,12 @@ msgid "Variance ({})"
msgstr "Phương sai ({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "Biến thể"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "Lỗi thuộc tính biến thể"
@@ -58985,7 +59097,7 @@ msgstr "Định mức biến thể"
msgid "Variant Based On"
msgstr "Biến thể dựa trên"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Biến thể dựa trên không thể thay đổi"
@@ -59003,7 +59115,7 @@ msgstr "Trường biến thể"
msgid "Variant Item"
msgstr "Mục biến thể"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "Các mặt hàng biến thể"
@@ -59014,7 +59126,7 @@ msgstr "Các mặt hàng biến thể"
msgid "Variant Of"
msgstr "Biến thể của"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "Việc tạo biến thể đã được xếp hàng."
@@ -59308,7 +59420,7 @@ msgstr "Chứng từ"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "Số chứng từ"
@@ -59380,7 +59492,7 @@ msgstr "Tên phiếu thanh toán"
#: 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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59454,7 +59566,7 @@ msgstr "Loại phụ chứng từ"
#: 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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59481,7 +59593,7 @@ msgstr "Loại phụ chứng từ"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59661,8 +59773,8 @@ msgstr "Kho là bắt buộc để lấy các mặt hàng FG có thể sản xu
msgid "Warehouse not found against the account {0}"
msgstr "Không tìm thấy kho đối với tài khoản {0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "Kho là bắt buộc cho mặt hàng tồn kho {0}"
@@ -59687,7 +59799,7 @@ msgstr "Kho {0} không thuộc về công ty {1}"
msgid "Warehouse {0} does not exist"
msgstr "Kho {0} không tồn tại"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "Kho {0} không được phép cho Đơn đặt hàng {1}, nó phải là {2}"
@@ -59824,11 +59936,11 @@ msgstr "Cảnh báo: {0} # {1} khác tồn tại đối với mục kho {2}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "Cảnh báo: Số lượng yêu cầu vật liệu ít hơn Số lượng đặt hàng tối thiểu"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "Cảnh báo: Số lượng vượt quá số lượng có thể sản xuất tối đa dựa trên số lượng nguyên vật liệu thô đã nhận thông qua Đơn hàng nội bộ gia công {0}."
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "Cảnh báo: Đơn đặt hàng {0} đã tồn tại đối với Đơn mua hàng của khách hàng {1}"
@@ -59918,7 +60030,7 @@ msgstr "Bước sóng tính bằng Kilomet"
msgid "Wavelength In Megametres"
msgstr "Bước sóng tính bằng Megamet"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr "Chúng tôi có thể thấy {0} được tạo đối với {1}. Nếu bạn muốn công nợ của {1} được cập nhật, hãy bỏ đánh dấu hộp kiểm '{2}'."
@@ -59987,7 +60099,7 @@ msgstr "Trang mạng:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "Tuần {0} {1}"
@@ -60117,7 +60229,7 @@ msgstr "Khi được chọn, chỉ ngưỡng giao dịch sẽ được áp dụn
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 "Khi được chọn, hệ thống sẽ sử dụng ngày giờ đăng của tài liệu để đặt tên tài liệu thay vì ngày giờ tạo của tài liệu."
-#: erpnext/stock/doctype/item/item.js:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "Khi tạo một mặt hàng, nhập giá trị cho trường này sẽ tự động tạo Giá mặt hàng ở phía backend."
@@ -60127,7 +60239,7 @@ msgstr "Khi tạo một mặt hàng, nhập giá trị cho trường này sẽ t
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
msgid "When there are multiple finished goods ({0}) in a Repack stock entry, the basic rate for all finished goods must be set manually. To set rate manually, enable the checkbox 'Set Basic Rate Manually' in the respective finished good row."
msgstr "Khi có nhiều thành phẩm ({0}) trong một mục kho Đóng gói lại, đơn giá cho tất cả thành phẩm phải được đặt thủ công. Để đặt giá thủ công, hãy bật hộp kiểm 'Đặt đơn giá thủ công' trong hàng thành phẩm tương ứng."
@@ -60137,11 +60249,11 @@ msgstr "Khi có nhiều thành phẩm ({0}) trong một mục kho Đóng gói l
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "Trong khi tạo tài khoản cho Công ty con {0}, tài khoản cha {1} được tìm thấy như một tài khoản sổ cái."
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "Trong khi tạo tài khoản cho Công ty con {0}, tài khoản cha {1} không tìm thấy. Vui lòng tạo tài khoản cha trong COA tương ứng"
@@ -60286,7 +60398,7 @@ msgstr "Công việc đã làm"
#: 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "Đang thực hiện"
@@ -60323,7 +60435,7 @@ msgstr "Đang thực hiện"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60357,7 +60469,7 @@ msgstr "Nguyên liệu tiêu hao đơn hàng công việc"
msgid "Work Order Item"
msgstr "Mục đơn hàng công việc"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60398,19 +60510,23 @@ msgstr "Tóm tắt đơn hàng công việc"
msgid "Work Order Summary Report"
msgstr "Báo cáo tóm tắt đơn hàng công việc"
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "Không thể tạo đơn hàng công việc vì lý do sau: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "Không thể tạo đơn hàng công việc đối với mẫu vật tư"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "Đơn hàng công việc đã được {0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "Đơn hàng công việc không được tạo"
@@ -60419,16 +60535,16 @@ msgstr "Đơn hàng công việc không được tạo"
msgid "Work Order {0} created"
msgstr "Đơn hàng công việc {0} đã được tạo"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "Đơn hàng công việc {0}: Không tìm thấy Thẻ công việc cho thao tác {1}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "Các đơn hàng công việc"
@@ -60453,7 +60569,7 @@ msgstr "Đang thực hiện"
msgid "Work-in-Progress Warehouse"
msgstr "Kho dở dang"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "Kho dở dang là bắt buộc trước khi gửi"
@@ -60501,7 +60617,7 @@ msgstr "Giờ làm việc"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60592,14 +60708,14 @@ msgstr "Các trạm làm việc"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "Viết tắt"
@@ -60704,7 +60820,7 @@ msgstr "Giá trị đã khấu hao"
msgid "Wrong Company"
msgstr "Công ty không đúng"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "Mật khẩu không đúng"
@@ -60760,11 +60876,11 @@ msgstr "Ngày bắt đầu hoặc kết thúc năm trùng với {0}. Để trán
msgid "You are importing data for the code list:"
msgstr "Bạn đang nhập dữ liệu cho danh sách mã:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "Bạn không được phép cập nhật theo các điều kiện đặt trong Quy trình {}."
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "Bạn không được phép thêm hoặc cập nhật các bút toán trước {0}"
@@ -60772,7 +60888,7 @@ msgstr "Bạn không được phép thêm hoặc cập nhật các bút toán tr
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "Bạn không được phép tạo/chỉnh sửa giao dịch kho cho vật tư {0} trong kho {1} trước thời điểm này."
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "Bạn không được phép đặt giá trị Đóng băng"
@@ -60800,7 +60916,7 @@ msgstr "Bạn cũng có thể đặt tài khoản CWIP mặc định trong Công
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "Bạn có thể thay đổi tài khoản gốc thành tài khoản Bảng cân đối kế toán hoặc chọn một tài khoản khác."
@@ -60841,11 +60957,11 @@ msgstr "Bạn có thể đặt nó làm tên máy hoặc loại thao tác. Ví d
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr "Bạn có thể sử dụng {0} để đối trừ với {1} sau."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "Bạn không thể thay đổi Thẻ công việc vì Đơn hàng công việc đã đóng."
@@ -60869,7 +60985,7 @@ msgstr "Bạn không thể tạo {0} trong Kỳ kế toán đã đóng {1}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "Bạn không thể tạo hoặc hủy bất kỳ bút toán nào trong Kỳ kế toán đã đóng {0}"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "Bạn không thể tạo/sửa bất kỳ bút toán nào cho đến ngày này."
@@ -60930,7 +61046,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "Bạn không có quyền {} các mục trong {}."
@@ -60942,19 +61058,19 @@ msgstr "Bạn không có đủ Điểm Thưởng để đổi"
msgid "You don't have enough points to redeem."
msgstr "Bạn không có đủ điểm để đổi."
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -60966,7 +61082,7 @@ msgstr "Bạn có {} lỗi khi tạo hóa đơn mở đầu. Xem {} để biết
msgid "You have already selected items from {0} {1}"
msgstr "Bạn đã chọn các mục từ {0} {1}"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "Bạn đã được mời cộng tác trong dự án {0}."
@@ -60990,7 +61106,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "Bạn phải bật tự động đặt hàng lại trong Cài đặt kho để duy trì mức đặt hàng lại."
@@ -61006,7 +61122,7 @@ msgstr "Bạn phải chọn một khách hàng trước khi thêm một mặt h
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "Bạn cần hủy Mục đóng POS {} để có thể hủy tài liệu này."
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "Bạn đã chọn nhóm tài khoản {1} làm Tài khoản {2} ở hàng {0}. Vui lòng chọn một tài khoản duy nhất."
@@ -61053,11 +61169,11 @@ msgstr "Mã bưu điện"
msgid "Zero Balance"
msgstr "Số dư bằng không"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "Không chịu thuế"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "Số lượng bằng không"
@@ -61079,11 +61195,11 @@ msgstr "Tệp Zip"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[Quan trọng] [ERPNext] Lỗi tự động sắp xếp lại"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`Cho phép tỷ giá âm cho vật tư`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "sau"
@@ -61124,7 +61240,7 @@ msgid "cannot be greater than 100"
msgstr "không thể lớn hơn 100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "ngày {0}"
@@ -61273,7 +61389,7 @@ msgstr "Ứng dụng thanh toán chưa được cài đặt. Vui lòng cài đ
msgid "per hour"
msgstr "mỗi giờ"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "thực hiện một trong các mục sau:"
@@ -61306,7 +61422,7 @@ msgstr "đã nhận từ"
msgid "reconciled"
msgstr "đã đối soát"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "đã trả lại"
@@ -61341,7 +61457,7 @@ msgstr "rgt"
msgid "sandbox"
msgstr "hộp cát"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "đã bán"
@@ -61349,8 +61465,8 @@ msgstr "đã bán"
msgid "subscription is already cancelled."
msgstr "đăng ký đã bị hủy."
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "trường_tài_liệu_mục_tiêu"
@@ -61368,7 +61484,7 @@ msgstr "tiêu đề"
msgid "to"
msgstr "đến"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "để hủy phân bổ số tiền của Hóa đơn trả lại này trước khi hủy nó."
@@ -61395,7 +61511,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "duy nhất, ví dụ: SAVE20 Được sử dụng để nhận chiết khấu"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61417,7 +61533,7 @@ msgstr "thông qua Công cụ cập nhật BOM"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "bạn phải chọn Tài khoản Công việc Dở dang Vốn trong bảng tài khoản"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0} '{1}' bị vô hiệu hóa"
@@ -61425,7 +61541,7 @@ msgstr "{0} '{1}' bị vô hiệu hóa"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0} '{1}' không trong Năm tài chính {2}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0} ({1}) không thể lớn hơn số lượng theo kế hoạch ({2}) trong Đơn hàng công việc {3}"
@@ -61433,7 +61549,7 @@ msgstr "{0} ({1}) không thể lớn hơn số lượng theo kế hoạch ({2})
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0} {1} đã gửi Tài sản. Hãy xóa Mục {2} khỏi bảng để tiếp tục."
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "Không tìm thấy {0} Tài khoản đối với Khách hàng {1}."
@@ -61466,11 +61582,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} Số {1} đã được sử dụng trong {2} {3}"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "{0} Chi phí vận hành cho thao tác {1}"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} Hoạt động: {1}"
@@ -61478,7 +61594,7 @@ msgstr "{0} Hoạt động: {1}"
msgid "{0} Request for {1}"
msgstr "{0} Yêu cầu cho {1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0} Lưu mẫu dựa trên lô, vui lòng kiểm tra Có số lô để lưu mẫu vật tư"
@@ -61566,11 +61682,11 @@ msgstr "{0} đã được tạo"
msgid "{0} creation for the following records will be skipped."
msgstr "Việc tạo {0} cho các bản ghi sau sẽ bị bỏ qua."
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0} tiền tệ phải giống như tiền tệ mặc định của công ty. Vui lòng chọn tài khoản khác."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} hiện có thứ hạng Thẻ điểm Nhà cung cấp {1}, và Đơn hàng mua cho nhà cung cấp này nên được phát hành cẩn thận."
@@ -61582,7 +61698,7 @@ msgstr "{0} hiện có thứ hạng Thẻ điểm Nhà cung cấp {1}, và Yêu
msgid "{0} does not belong to Company {1}"
msgstr "{0} không thuộc Công ty {1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr "{0} không thuộc Công ty {1}."
@@ -61591,7 +61707,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0} đã được nhập hai lần trong Thuế vật tư"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0} đã được nhập hai lần {1} trong Thuế vật tư"
@@ -61616,7 +61732,7 @@ msgstr "{0} đã được gửi thành công"
msgid "{0} hours"
msgstr "{0} giờ"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{0} trong hàng {1}"
@@ -61638,7 +61754,7 @@ msgstr "{0} được thêm nhiều lần trên các hàng: {1}"
msgid "{0} is already running for {1}"
msgstr "{0} đã chạy cho {1}"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0} bị chặn nên giao dịch này không thể tiếp tục"
@@ -61646,12 +61762,12 @@ msgstr "{0} bị chặn nên giao dịch này không thể tiếp tục"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr "{0} đang ở trạng thái Bản nháp. Hãy gửi trước khi tạo Tài sản."
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0} là bắt buộc đối với Mục {1}"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "{0} là bắt buộc cho tài khoản {1}"
@@ -61659,7 +61775,7 @@ msgstr "{0} là bắt buộc cho tài khoản {1}"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa được tạo cho {1} thành {2}"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa được tạo cho {1} thành {2}."
@@ -61667,7 +61783,7 @@ msgstr "{0} là bắt buộc. Có thể bản ghi Tỷ giá tiền tệ chưa đ
msgid "{0} is not a CSV file."
msgstr "{0} không phải là tệp CSV."
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0} không phải là tài khoản ngân hàng của công ty"
@@ -61675,7 +61791,7 @@ msgstr "{0} không phải là tài khoản ngân hàng của công ty"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0} không phải là nút nhóm. Vui lòng chọn một nút nhóm làm trung tâm chi phí gốc"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0} không phải là vật tư tồn kho"
@@ -61715,27 +61831,27 @@ msgstr "{0} bị tạm ngưng cho đến {1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0} đang mở. Hãy đóng POS hoặc hủy Mục mở POS hiện có để tạo Mục mở POS mới."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr "{0} mục đã được tháo rời"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0} mục đang thực hiện"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "{0} mục bị mất trong quá trình."
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0} mục đã được sản xuất"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr "{0} mục đã được trả lại"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr "{0} mục cần trả lại"
@@ -61743,7 +61859,7 @@ msgstr "{0} mục cần trả lại"
msgid "{0} must be negative in return document"
msgstr "{0} phải âm trong tài liệu trả lại"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "{0} không được phép giao dịch với {1}. Vui lòng thay đổi Công ty hoặc thêm Công ty trong phần 'Được phép giao dịch với' trong bản ghi Khách hàng."
@@ -61759,7 +61875,7 @@ msgstr "Tham số {0} không hợp lệ"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "Không thể lọc {0} mục thanh toán theo {1}"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "{0} số lượng của Mục {1} đang được nhận vào Kho {2} với công suất {3}."
@@ -61772,7 +61888,7 @@ msgstr "{0} đến {1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "{0} đơn vị được giữ cho Mục {1} trong Kho {2}, vui lòng hủy giữ chúng để {3} Đối soát tồn kho."
@@ -61788,16 +61904,16 @@ msgstr "{0} đơn vị của Mục {1} không có sẵn trong bất kỳ kho nà
msgid "{0} units of {1} are required in {2} with the inventory dimension: {3} on {4} {5} for {6} to complete the transaction."
msgstr "{0} đơn vị của {1} được yêu cầu trong {2} với kích thước tồn kho: {3} vào {4} {5} để {6} hoàn thành giao dịch."
-#: erpnext/stock/stock_ledger.py:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "{0} đơn vị của {1} cần trong {2} vào {3} {4} để {5} hoàn thành giao dịch này."
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "{0} đơn vị của {1} cần trong {2} vào {3} {4} để hoàn thành giao dịch này."
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "{0} đơn vị của {1} cần trong {2} để hoàn thành giao dịch này."
@@ -61809,7 +61925,7 @@ msgstr "{0} cho đến {1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "{0} số serial hợp lệ cho Mục {1}"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "{0} biến thể đã được tạo."
@@ -61825,7 +61941,7 @@ msgstr "{0} sẽ được giảm giá."
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0} sẽ được đặt làm {1} trong các mục được quét tiếp theo"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0} {1}"
@@ -61863,8 +61979,8 @@ msgstr "{0} {1} đã được thanh toán đầy đủ."
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} đã được thanh toán một phần. Vui lòng sử dụng nút 'Lấy Hóa đơn chưa thanh toán' hoặc 'Lấy Đơn hàng chưa thanh toán' để lấy số tiền chưa thanh toán mới nhất."
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1} đã được sửa đổi. Vui lòng làm mới."
@@ -61974,7 +62090,7 @@ msgstr "{0} {1}: Tài khoản {2} không hoạt động"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}: Bút toán kế toán cho {2} chỉ có thể được thực hiện bằng đơn vị tiền tệ: {3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}: Trung tâm chi phí là bắt buộc cho Mục {2}"
@@ -62023,8 +62139,8 @@ msgstr "{0}% của tổng giá trị hóa đơn sẽ được giảm giá."
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0} của {1} không thể sau Ngày kết thúc dự kiến của {2}."
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0}, hãy hoàn thành thao tác {1} trước thao tác {2}."
@@ -62044,11 +62160,11 @@ msgstr "{0}: DocType được bảo vệ"
msgid "{0}: Virtual DocType (no database table)"
msgstr "{0}: DocType ảo (không có bảng cơ sở dữ liệu)"
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1} không thuộc Công ty: {2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr "{0}: {1} không tồn tại"
@@ -62056,11 +62172,11 @@ msgstr "{0}: {1} không tồn tại"
msgid "{0}: {1} does not exists"
msgstr "{0}: {1} không tồn tại"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}: {1} là một tài khoản nhóm."
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}: {1} phải nhỏ hơn {2}"
@@ -62072,7 +62188,7 @@ msgstr "{count} Tài sản đã được tạo cho {item_code}"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype} {name} bị hủy hoặc đóng."
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "Cỡ mẫu ({sample_size}) của {item_name} không thể lớn hơn Số lượng chấp nhận ({accepted_quantity})"
@@ -62084,7 +62200,7 @@ msgstr "{ref_doctype} {ref_name} là {status}."
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "{} không thể hủy vì Điểm Thưởng đã được đổi. Hãy hủy {} số {} trước"
diff --git a/erpnext/locale/zh.po b/erpnext/locale/zh.po
index 86fc68bb499..460be65b775 100644
--- a/erpnext/locale/zh.po
+++ b/erpnext/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: hello@frappe.io\n"
-"POT-Creation-Date: 2026-05-17 10:04+0000\n"
-"PO-Revision-Date: 2026-05-18 20:21\n"
+"POT-Creation-Date: 2026-05-31 10:18+0000\n"
+"PO-Revision-Date: 2026-05-31 22:14\n"
"Last-Translator: hello@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -95,15 +95,15 @@ msgstr "子装配件"
msgid " Summary"
msgstr "摘要"
-#: erpnext/stock/doctype/item/item.py:279
+#: erpnext/stock/doctype/item/item.py:278
msgid "\"Customer Provided Item\" cannot be Purchase Item also"
msgstr "“受托加工材料”不能设置为允许采购"
-#: erpnext/stock/doctype/item/item.py:281
+#: erpnext/stock/doctype/item/item.py:280
msgid "\"Customer Provided Item\" cannot have Valuation Rate"
msgstr "“受托加工材料”不允许有成本价"
-#: erpnext/stock/doctype/item/item.py:384
+#: erpnext/stock/doctype/item/item.py:383
msgid "\"Is Fixed Asset\" cannot be unchecked, as Asset record exists against the item"
msgstr "已有关联的固定资产记录,不能取消勾选允许资产"
@@ -268,11 +268,11 @@ msgstr "本拣配清单的物料交付百分比"
msgid "% of materials delivered against this Sales Order"
msgstr "此销售订单% 的物料已出货。"
-#: erpnext/controllers/accounts_controller.py:2387
+#: erpnext/controllers/accounts_controller.py:2388
msgid "'Account' in the Accounting section of Customer {0}"
msgstr "客户{0}会计科目中的'账户'"
-#: erpnext/selling/doctype/sales_order/sales_order.py:364
+#: erpnext/selling/doctype/sales_order/sales_order.py:368
msgid "'Allow Multiple Sales Orders Against a Customer's Purchase Order'"
msgstr "允许针对客户采购订单创建多张销售订单"
@@ -284,7 +284,7 @@ msgstr "“根据”和“分组依据”不能相同"
msgid "'Days Since Last Order' must be greater than or equal to zero"
msgstr "“ 最后的订单到目前的天数”必须大于或等于零"
-#: erpnext/controllers/accounts_controller.py:2392
+#: erpnext/controllers/accounts_controller.py:2393
msgid "'Default {0} Account' in Company {1}"
msgstr "公司{1}的'默认{0}科目'"
@@ -302,7 +302,7 @@ msgstr "“开始日期”是必需的"
msgid "'From Date' must be after 'To Date'"
msgstr "“开始日期”必须早于'终止日期'"
-#: erpnext/stock/doctype/item/item.py:467
+#: erpnext/stock/doctype/item/item.py:466
msgid "'Has Serial No' can not be 'Yes' for non-stock item"
msgstr "不能为非库存物料勾选'启用序列号管理'"
@@ -314,9 +314,9 @@ msgstr "物料{0}已禁用'发货前需质检',无需创建质量检验单"
msgid "'Inspection Required before Purchase' has disabled for the item {0}, no need to create the QI"
msgstr "物料{0}已禁用'采购前需质检',无需创建质量检验单"
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:683
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:724
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:829
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:684
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:725
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:830
msgid "'Opening'"
msgstr "'期初'"
@@ -346,8 +346,8 @@ msgstr "'{0}' 科目已被 {1} 占用. 请使用另一个科目"
msgid "'{0}' has been already added."
msgstr "'{0}'已添加"
-#: erpnext/setup/doctype/company/company.py:303
-#: erpnext/setup/doctype/company/company.py:314
+#: erpnext/setup/doctype/company/company.py:307
+#: erpnext/setup/doctype/company/company.py:318
msgid "'{0}' should be in company currency {1}."
msgstr "'{0}'必须使用公司货币{1}"
@@ -517,8 +517,8 @@ msgstr "1000+"
msgid "11-50"
msgstr "11-50"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:95
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:101
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:107
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:113
msgid "1{0}"
msgstr "1{0}"
@@ -607,8 +607,8 @@ msgstr "90-120天"
msgid "90 Above"
msgstr "90天以上"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1348
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1349
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1272
msgid "<0"
msgstr "<0"
@@ -799,7 +799,7 @@ msgstr "日期设
msgid "Clearance date must be after cheque date for row(s): {0} "
msgstr "以下行{0}的清算日期必须晚于支票日期: "
-#: erpnext/controllers/accounts_controller.py:2270
+#: erpnext/controllers/accounts_controller.py:2271
msgid "Item {0} in row(s) {1} billed more than {2} "
msgstr "{0}"
@@ -816,7 +816,7 @@ msgstr "以下行{0}需要付款凭证: "
msgid "{} "
msgstr "{} "
-#: erpnext/controllers/accounts_controller.py:2267
+#: erpnext/controllers/accounts_controller.py:2268
msgid "Cannot overbill for the following Items:
"
msgstr "以下物料不允许超额开票:
"
@@ -879,7 +879,7 @@ msgstr "以下项目的过账日期{0}不得早于采购订单日期:
Price List Rate has not been set as editable in Selling Settings. In this scenario, setting Update Price List Based On to Price List Rate will prevent auto-updation of Item Price. Are you sure you want to continue?"
msgstr "销售设置中未将价格表费率设为可编辑。在此情况下,将价格表更新依据 设为价格表费率 将禁用物料价格自动更新功能。
是否确认继续操作?"
-#: erpnext/controllers/accounts_controller.py:2279
+#: erpnext/controllers/accounts_controller.py:2280
msgid "To allow over-billing, please set allowance in Accounts Settings.
"
msgstr "要允许超额开票,请在账户设置中设置容差。
"
@@ -967,11 +967,11 @@ msgstr "快速访问\n"
msgid "Your Shortcuts "
msgstr "快速访问 "
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1298
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1300
msgid "Grand Total: {0}"
msgstr "总计: {0}"
-#: erpnext/accounts/doctype/payment_request/payment_request.py:1299
+#: erpnext/accounts/doctype/payment_request/payment_request.py:1301
msgid "Outstanding Amount: {0}"
msgstr "未清金额: {0}"
@@ -1041,7 +1041,7 @@ msgstr "A - B"
msgid "A - C"
msgstr "A - C"
-#: erpnext/selling/doctype/customer/customer.py:355
+#: erpnext/selling/doctype/customer/customer.py:345
msgid "A Customer Group exists with same name please change the Customer name or rename the Customer Group"
msgstr "同名的客户组已经存在,请更改客户姓名或重命名该客户组"
@@ -1205,11 +1205,11 @@ msgstr "简称"
msgid "Abbreviation"
msgstr "简称"
-#: erpnext/setup/doctype/company/company.py:238
+#: erpnext/setup/doctype/company/company.py:241
msgid "Abbreviation already used for another company"
msgstr "简称已用于另一家公司"
-#: erpnext/setup/doctype/company/company.py:235
+#: erpnext/setup/doctype/company/company.py:238
msgid "Abbreviation is mandatory"
msgstr "简称字段必填"
@@ -1217,7 +1217,7 @@ msgstr "简称字段必填"
msgid "Abbreviation: {0} must appear only once"
msgstr "简称{0}必须唯一"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1345
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
msgid "Above"
msgstr "以上"
@@ -1271,7 +1271,7 @@ msgid "Accepted Qty in Stock UOM"
msgstr "收货数量(库存单位)"
#. Label of the qty (Float) field in DocType 'Purchase Receipt Item'
-#: erpnext/public/js/controllers/transaction.js:2839
+#: erpnext/public/js/controllers/transaction.js:2841
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
msgid "Accepted Quantity"
msgstr "收货数量"
@@ -1307,7 +1307,7 @@ msgstr "服务商{0}必须提供访问密钥"
msgid "According to CEFACT/ICG/2010/IC013 or CEFACT/ICG/2010/IC010"
msgstr "依据CEFACT/ICG/2010/IC013或IC010标准"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1075
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:786
msgid "According to the BOM {0}, the Item '{1}' is missing in the stock entry."
msgstr "根据物料清单{0},库存交易缺少物料'{1}'"
@@ -1425,8 +1425,8 @@ msgstr "科目"
msgid "Account Manager"
msgstr "客户经理"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
-#: erpnext/controllers/accounts_controller.py:2396
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
+#: erpnext/controllers/accounts_controller.py:2397
msgid "Account Missing"
msgstr "科目缺失"
@@ -1444,7 +1444,7 @@ msgstr "科目缺失"
msgid "Account Name"
msgstr "科目名称"
-#: erpnext/accounts/doctype/account/account.py:373
+#: erpnext/accounts/doctype/account/account.py:377
msgid "Account Not Found"
msgstr "找不到科目"
@@ -1457,7 +1457,7 @@ msgstr "找不到科目"
msgid "Account Number"
msgstr "科目代码"
-#: erpnext/accounts/doctype/account/account.py:359
+#: erpnext/accounts/doctype/account/account.py:363
msgid "Account Number {0} already used in account {1}"
msgstr "已在科目{1}中使用的科目代码{0}"
@@ -1496,7 +1496,7 @@ msgstr "账户子类型"
#. Label of the account_type (Select) field in DocType 'Payment Ledger Entry'
#. Label of the account_type (Select) field in DocType 'Party Type'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/account.py:206
+#: erpnext/accounts/doctype/account/account.py:210
#: erpnext/accounts/doctype/account/account_tree.js:154
#: erpnext/accounts/doctype/bank_account/bank_account.json
#: erpnext/accounts/doctype/bank_account_type/bank_account_type.json
@@ -1512,11 +1512,11 @@ msgstr "科目类型"
msgid "Account Value"
msgstr "会计账金额"
-#: erpnext/accounts/doctype/account/account.py:328
+#: erpnext/accounts/doctype/account/account.py:332
msgid "Account balance already in Credit, you are not allowed to set 'Balance Must Be' as 'Debit'"
msgstr "科目余额在'贷方',余额方向不能设置为'借方'"
-#: erpnext/accounts/doctype/account/account.py:322
+#: 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 "科目余额在'借方',余额方向不能设置为'贷方'"
@@ -1583,15 +1583,15 @@ msgstr ""
msgid "Account where the cost of this item will be debited on purchase"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:427
+#: erpnext/accounts/doctype/account/account.py:431
msgid "Account with child nodes cannot be converted to ledger"
msgstr "有下级科目(子节点)的科目不能转换为记账科目"
-#: erpnext/accounts/doctype/account/account.py:279
+#: erpnext/accounts/doctype/account/account.py:283
msgid "Account with child nodes cannot be set as ledger"
msgstr "有子节点的科目不能被设置为记账科目"
-#: erpnext/accounts/doctype/account/account.py:438
+#: erpnext/accounts/doctype/account/account.py:442
msgid "Account with existing transaction can not be converted to group."
msgstr "有交易的科目不能被转换为组。"
@@ -1599,8 +1599,8 @@ msgstr "有交易的科目不能被转换为组。"
msgid "Account with existing transaction can not be deleted"
msgstr "有交易的科目不能被删除"
-#: erpnext/accounts/doctype/account/account.py:273
-#: erpnext/accounts/doctype/account/account.py:429
+#: erpnext/accounts/doctype/account/account.py:277
+#: erpnext/accounts/doctype/account/account.py:433
msgid "Account with existing transaction cannot be converted to ledger"
msgstr "已关联过账交易的科目不能被转换为记账科目"
@@ -1608,11 +1608,11 @@ msgstr "已关联过账交易的科目不能被转换为记账科目"
msgid "Account {0} added multiple times"
msgstr "科目{0}被重复添加"
-#: erpnext/accounts/doctype/account/account.py:291
+#: erpnext/accounts/doctype/account/account.py:295
msgid "Account {0} cannot be converted to Group as it is already set as {1} for {2}."
msgstr "科目{0}无法转换为组,因其已设置为{2}的{1}。"
-#: erpnext/accounts/doctype/account/account.py:288
+#: erpnext/accounts/doctype/account/account.py:292
msgid "Account {0} cannot be disabled as it is already set as {1} for {2}."
msgstr "科目{0}无法禁用,因其已设置为{2}的{1}。"
@@ -1620,11 +1620,11 @@ msgstr "科目{0}无法禁用,因其已设置为{2}的{1}。"
msgid "Account {0} does not belong to company {1}"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:285
+#: erpnext/setup/doctype/company/company.py:289
msgid "Account {0} does not belong to company: {1}"
msgstr "科目{0}不属于公司:{1}"
-#: erpnext/accounts/doctype/account/account.py:589
+#: erpnext/accounts/doctype/account/account.py:599
msgid "Account {0} does not exist"
msgstr "科目{0}不存在"
@@ -1640,15 +1640,15 @@ msgstr "科目{0}与科目模式{2}中的公司{1}不符"
msgid "Account {0} doesn't belong to Company {1}"
msgstr "科目{0}不属于公司{1}"
-#: erpnext/accounts/doctype/account/account.py:546
+#: erpnext/accounts/doctype/account/account.py:556
msgid "Account {0} exists in parent company {1}."
msgstr "科目{0}存在于上级公司{1}"
-#: erpnext/accounts/doctype/account/account.py:411
+#: erpnext/accounts/doctype/account/account.py:415
msgid "Account {0} is added in the child company {1}"
msgstr "子公司{1}中添加了科目{0}"
-#: erpnext/setup/doctype/company/company.py:274
+#: erpnext/setup/doctype/company/company.py:278
msgid "Account {0} is disabled."
msgstr "科目{0}已禁用。"
@@ -1656,7 +1656,7 @@ msgstr "科目{0}已禁用。"
msgid "Account {0} is frozen"
msgstr "科目{0}已冻结"
-#: erpnext/controllers/accounts_controller.py:1471
+#: erpnext/controllers/accounts_controller.py:1472
msgid "Account {0} is invalid. Account Currency must be {1}"
msgstr "科目{0}状态为失效。科目货币必须是{1}"
@@ -1664,19 +1664,19 @@ msgstr "科目{0}状态为失效。科目货币必须是{1}"
msgid "Account {0} should be of type Expense"
msgstr "科目{0}应为费用类型科目。"
-#: erpnext/accounts/doctype/account/account.py:152
+#: erpnext/accounts/doctype/account/account.py:153
msgid "Account {0}: Parent account {1} can not be a ledger"
msgstr "科目{0}:父(上级)科目{1}不能是记账科目"
-#: erpnext/accounts/doctype/account/account.py:158
+#: erpnext/accounts/doctype/account/account.py:159
msgid "Account {0}: Parent account {1} does not belong to company: {2}"
msgstr "科目{0}的上级科目{1}不属于公司{2}"
-#: erpnext/accounts/doctype/account/account.py:146
+#: erpnext/accounts/doctype/account/account.py:147
msgid "Account {0}: Parent account {1} does not exist"
msgstr "科目{0}的上级科目{1}不存在"
-#: erpnext/accounts/doctype/account/account.py:149
+#: erpnext/accounts/doctype/account/account.py:150
msgid "Account {0}: You can not assign itself as parent account"
msgstr "科目{0}不能是自己的上级科目"
@@ -1692,7 +1692,7 @@ msgstr "科目{0}只能通过库存相关业务更新"
msgid "Account: {0} is not permitted under Payment Entry"
msgstr "收付款凭证中不能使用科目{0}"
-#: erpnext/controllers/accounts_controller.py:3287
+#: erpnext/controllers/accounts_controller.py:3281
msgid "Account: {0} with currency: {1} can not be selected"
msgstr "科目:{0}货币:{1}不能选择"
@@ -1977,8 +1977,8 @@ msgstr "会计分录"
msgid "Accounting Entry for Asset"
msgstr "资产会计分录"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2038
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2058
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1156
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1176
msgid "Accounting Entry for LCV in Stock Entry {0}"
msgstr "库存凭证{0}中LCV的会计分录入账"
@@ -2002,8 +2002,8 @@ msgstr "服务会计凭证"
#: erpnext/controllers/stock_controller.py:733
#: erpnext/controllers/stock_controller.py:750
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.py:941
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1983
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1997
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1108
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1122
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:778
msgid "Accounting Entry for Stock"
msgstr "库存会计分录"
@@ -2012,7 +2012,7 @@ msgstr "库存会计分录"
msgid "Accounting Entry for {0}"
msgstr "{0}会计凭证"
-#: erpnext/controllers/accounts_controller.py:2437
+#: erpnext/controllers/accounts_controller.py:2438
msgid "Accounting Entry for {0}: {1} can only be made in currency: {2}"
msgstr "{0} {1} 相关的会计凭证:货币只能是:{2}"
@@ -2067,7 +2067,6 @@ msgstr ""
#. Category'
#. Label of the accounts (Table) field in DocType 'Asset Category'
#. Label of the accounts (Table) field in DocType 'Supplier'
-#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the accounts_tab (Tab Break) field in DocType 'Company'
#. Label of the accounts (Table) field in DocType 'Customer Group'
#. Label of the accounts (Section Break) field in DocType 'Email Digest'
@@ -2080,14 +2079,13 @@ msgstr ""
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
#: erpnext/assets/doctype/asset_category/asset_category.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
-#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:448
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
-#: erpnext/setup/install.py:395
+#: erpnext/setup/install.py:427
msgid "Accounts"
msgstr "会计"
@@ -2117,8 +2115,8 @@ msgstr ""
#. Entry'
#. Name of a report
#. Label of a Workspace Sidebar Item
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:154
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:256
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:261
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/report/accounts_payable/accounts_payable.json
#: erpnext/accounts/report/accounts_payable_summary/accounts_payable_summary.js:126
@@ -2218,15 +2216,15 @@ msgstr "科目表不能为空。"
msgid "Accounts to Merge"
msgstr "待合并科目"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:158
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:265
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:162
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:270
msgid "Accrued Expenses"
msgstr ""
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:63
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:67
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:117
#: erpnext/accounts/report/account_balance/account_balance.js:37
msgid "Accumulated Depreciation"
msgstr "累计折旧"
@@ -2391,7 +2389,7 @@ msgstr "已执行的操作"
#. Label of the enable_serial_and_batch_no_for_item (Check) field in DocType
#. 'Stock Settings'
-#: erpnext/stock/doctype/item/item.js:419
+#: erpnext/stock/doctype/item/item.js:407
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Activate Serial / Batch No for Item"
msgstr ""
@@ -2515,7 +2513,7 @@ msgstr "实际结束日期"
msgid "Actual End Date (via Timesheet)"
msgstr "实际结束日期(通过工时表)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:229
+#: erpnext/manufacturing/doctype/work_order/work_order.py:230
msgid "Actual End Date cannot be before Actual Start Date"
msgstr "实际结束日期不得早于实际开始日期"
@@ -2637,7 +2635,7 @@ msgstr "实际工时(通过工时表)"
msgid "Actual qty in stock"
msgstr "实际库存数量"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1527
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1529
#: erpnext/public/js/controllers/accounts.js:197
msgid "Actual type tax cannot be included in Item rate in row {0}"
msgstr "实际税额不能包含在第{0}行的物料单价中"
@@ -2646,7 +2644,7 @@ msgstr "实际税额不能包含在第{0}行的物料单价中"
msgid "Ad-hoc Qty"
msgstr "临时数量"
-#: erpnext/stock/doctype/item/item.js:688
+#: erpnext/stock/doctype/item/item.js:670
#: erpnext/stock/doctype/price_list/price_list.js:8
msgid "Add / Edit Prices"
msgstr "添加/编辑价格"
@@ -3145,7 +3143,7 @@ msgstr "附加信息"
msgid "Additional Information updated successfully."
msgstr "附加信息更新成功。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:836
+#: erpnext/manufacturing/doctype/work_order/work_order.js:818
msgid "Additional Material Transfer"
msgstr "额外物料调拨"
@@ -3168,7 +3166,7 @@ msgstr "额外工费成本"
msgid "Additional Transferred Qty"
msgstr "额外调拨数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:710
+#: erpnext/manufacturing/doctype/work_order/work_order.py:711
msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tcannot be greater than {1}.\n"
"\t\t\t\t\tTo fix this, increase the percentage value\n"
@@ -3176,11 +3174,6 @@ msgid "Additional Transferred Qty {0}\n"
"\t\t\t\t\tin Manufacturing Settings."
msgstr "额外调拨数量{0}不得超过{1}。要修复此问题,请提高制造设置中“调拨额外原材料至在制品”字段的百分比值。"
-#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Additional information regarding the customer."
-msgstr "该客户的其他信息。"
-
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:660
msgid "Additional {0} {1} of item {2} required as per BOM to complete this transaction"
msgstr ""
@@ -3326,11 +3319,6 @@ msgstr "地址必须关联公司,请在链接表中添加公司记录"
msgid "Address used to determine Tax Category in transactions"
msgstr "业务交易用于决定税别的地址"
-#. Label of the adjust_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Adjust Qty"
-msgstr "调整数量"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:1160
msgid "Adjustment Against"
msgstr "源单"
@@ -3343,8 +3331,8 @@ msgstr "基于采购发票汇率的调整"
msgid "Administrative Assistant"
msgstr "行政助理"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:103
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:168
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:173
msgid "Administrative Expenses"
msgstr "行政费用"
@@ -3412,7 +3400,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:287
+#: erpnext/controllers/accounts_controller.py:288
#: erpnext/setup/doctype/company/company.json
msgid "Advance Payments"
msgstr "预付款"
@@ -3532,7 +3520,7 @@ msgstr "对方科目"
msgid "Against Blanket Order"
msgstr "框架订单"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1102
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1099
msgid "Against Customer Order {0}"
msgstr "对应客户订单{0}"
@@ -3674,11 +3662,11 @@ 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:1279
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1202
msgid "Age (Days)"
msgstr "账龄天数"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:228
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:261
msgid "Age ({0})"
msgstr "天数 ({0})"
@@ -3828,21 +3816,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:437
-#: erpnext/setup/doctype/company/company.py:440
-#: erpnext/setup/doctype/company/company.py:445
-#: erpnext/setup/doctype/company/company.py:451
-#: erpnext/setup/doctype/company/company.py:457
-#: erpnext/setup/doctype/company/company.py:463
-#: erpnext/setup/doctype/company/company.py:469
-#: erpnext/setup/doctype/company/company.py:475
-#: erpnext/setup/doctype/company/company.py:481
-#: erpnext/setup/doctype/company/company.py:487
-#: erpnext/setup/doctype/company/company.py:493
-#: erpnext/setup/doctype/company/company.py:499
-#: erpnext/setup/doctype/company/company.py:505
-#: erpnext/setup/doctype/company/company.py:511
-#: erpnext/setup/doctype/company/company.py:517
+#: erpnext/setup/doctype/company/company.py:441
+#: erpnext/setup/doctype/company/company.py:444
+#: erpnext/setup/doctype/company/company.py:449
+#: erpnext/setup/doctype/company/company.py:455
+#: erpnext/setup/doctype/company/company.py:461
+#: erpnext/setup/doctype/company/company.py:467
+#: erpnext/setup/doctype/company/company.py:473
+#: erpnext/setup/doctype/company/company.py:479
+#: erpnext/setup/doctype/company/company.py:485
+#: erpnext/setup/doctype/company/company.py:491
+#: erpnext/setup/doctype/company/company.py:497
+#: erpnext/setup/doctype/company/company.py:503
+#: erpnext/setup/doctype/company/company.py:509
+#: erpnext/setup/doctype/company/company.py:515
+#: erpnext/setup/doctype/company/company.py:521
msgid "All Departments"
msgstr "所有部门"
@@ -3922,7 +3910,7 @@ msgstr "所有供应商"
msgid "All Territories"
msgstr "所有区域"
-#: erpnext/setup/doctype/company/company.py:382
+#: erpnext/setup/doctype/company/company.py:386
msgid "All Warehouses"
msgstr "所有仓库"
@@ -3936,6 +3924,11 @@ msgstr "所有分配项已成功对账"
msgid "All communications including and above this shall be moved into the new Issue"
msgstr "包括及以上的所有通信均应移至新问题中"
+#. Description of the 'Billing Currency' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "All invoices and orders for this customer will be created in this currency."
+msgstr ""
+
#: erpnext/manufacturing/doctype/production_plan/production_plan.py:971
msgid "All items are already requested"
msgstr "所有物料已申请"
@@ -3944,23 +3937,23 @@ msgstr "所有物料已申请"
msgid "All items have already been Invoiced/Returned"
msgstr "所有物料已开具发票/退回"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:1236
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:1277
msgid "All items have already been received"
msgstr "所有物料已收货"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3319
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:221
msgid "All items have already been transferred for this Work Order."
msgstr "所有物料已发料到该生产工单。"
-#: erpnext/public/js/controllers/transaction.js:2948
+#: erpnext/public/js/controllers/transaction.js:2950
msgid "All items in this document already have a linked Quality Inspection."
msgstr "本单据所有物料均已关联质检单"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1238
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1243
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:1249
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1254
msgid "All linked Sales Orders must be subcontracted."
msgstr "所有关联的销售订单必须为外包订单。"
@@ -3974,11 +3967,11 @@ msgstr "在CRM文档流转(线索->商机->报价)过程中,所有评论
msgid "All the items have been already returned."
msgstr "所有物料已退回"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1274
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1256
msgid "All the required items (raw materials) will be fetched from BOM and populated in this table. Here you can also change the Source Warehouse for any item. And during the production, you can track transferred raw materials from this table."
msgstr "所需物料(原材料)将从BOM提取并填充本表,可修改物料的源仓库,生产过程中可在此追踪原材料转移"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:872
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:913
msgid "All these items have already been Invoiced/Returned"
msgstr "所有物料已经开票/被退货"
@@ -3997,7 +3990,7 @@ msgstr "分配"
msgid "Allocate Advances Automatically (FIFO)"
msgstr "自动分配预付(先进先出)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:917
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:919
msgid "Allocate Payment Amount"
msgstr "分配付款金额"
@@ -4007,7 +4000,7 @@ msgstr "分配付款金额"
msgid "Allocate Payment Based On Payment Terms"
msgstr "基于付款条款分配付款金额"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1717
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1719
msgid "Allocate Payment Request"
msgstr "分配付款请求"
@@ -4037,7 +4030,7 @@ msgstr "已分配"
#. Payment Entries'
#: erpnext/accounts/doctype/bank_transaction/bank_transaction.json
#: erpnext/accounts/doctype/bank_transaction_payments/bank_transaction_payments.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_reconciliation_allocation/payment_reconciliation_allocation.json
#: erpnext/accounts/doctype/process_payment_reconciliation_log_allocations/process_payment_reconciliation_log_allocations.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
@@ -4094,7 +4087,7 @@ msgstr "已分配数量"
#. Label of the allow_account_creation_against_child_company (Check) field in
#. DocType 'Company'
-#: erpnext/accounts/doctype/account/account.py:544
+#: erpnext/accounts/doctype/account/account.py:554
#: erpnext/accounts/doctype/chart_of_accounts_importer/chart_of_accounts_importer.py:68
#: erpnext/setup/doctype/company/company.json
msgid "Allow Account Creation Against Child Company"
@@ -4158,7 +4151,7 @@ msgstr "允许退货"
msgid "Allow Internal Transfers at Arm's Length Price"
msgstr "启用近距离调拨价"
-#: erpnext/controllers/selling_controller.py:858
+#: erpnext/controllers/selling_controller.py:859
msgid "Allow Item to Be Added Multiple Times in a Transaction"
msgstr "允许在交易中物料号重复"
@@ -4281,16 +4274,6 @@ msgstr "允许从售后支持设置重置服务水平协议。"
msgid "Allow Sales"
msgstr "允许销售"
-#. Label of the dn_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Delivery Note"
-msgstr "允许无销售出库创建销售发票"
-
-#. Label of the so_required (Check) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Allow Sales Invoice Creation Without Sales Order"
-msgstr "允许无销售订单创建销售发票"
-
#. Label of the allow_sales_order_creation_for_expired_quotation (Check) field
#. in DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4416,6 +4399,16 @@ msgstr ""
msgid "Allow negative rates for Items"
msgstr ""
+#. Label of the dn_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without delivery note"
+msgstr ""
+
+#. Label of the so_required (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allow sales invoice creation without sales order"
+msgstr ""
+
#. Description of the 'Zero-Quantity Line Items' (Section Break) field in
#. DocType 'Selling Settings'
#: erpnext/selling/doctype/selling_settings/selling_settings.json
@@ -4492,10 +4485,8 @@ msgstr "可交易物料"
#. Name of a DocType
#. Label of the companies (Table) field in DocType 'Supplier'
-#. Label of the companies (Table) field in DocType 'Customer'
#: erpnext/accounts/doctype/allowed_to_transact_with/allowed_to_transact_with.json
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Allowed To Transact With"
msgstr "允许交易"
@@ -4507,6 +4498,11 @@ msgstr "主角色仅限'客户'与'供应商',请选择其中一种"
msgid "Allowed special characters are '/' and '-'"
msgstr ""
+#. Label of the companies (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Allowed to transact with"
+msgstr ""
+
#. Description of the 'Enable Stock Reservation' (Check) field in DocType
#. 'Stock Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
@@ -4548,8 +4544,8 @@ msgid "Also you can't switch back to FIFO after setting the valuation method to
msgstr "本物料设置为移动平均计价法后不可切换回先进先出法。"
#: erpnext/manufacturing/doctype/bom/bom.js:288
-#: erpnext/manufacturing/doctype/work_order/work_order.js:165
-#: erpnext/manufacturing/doctype/work_order/work_order.js:180
+#: erpnext/manufacturing/doctype/work_order/work_order.js:146
+#: erpnext/manufacturing/doctype/work_order/work_order.js:161
#: erpnext/public/js/utils.js:587
#: erpnext/stock/doctype/stock_entry/stock_entry.js:322
msgid "Alternate Item"
@@ -4790,7 +4786,7 @@ msgstr "始终询问"
msgid "Amount"
msgstr "金额"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:22
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:34
msgid "Amount (AED)"
msgstr "金额(阿联酋迪拉姆)"
@@ -4924,12 +4920,12 @@ msgid "Amount to Bill"
msgstr "待开票金额"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1259
-msgid "Amount {0} {1} against {2} {3}"
-msgstr "金额 {0}{1} 业务单据 {2} {3}"
+msgid "Amount {0} {1} adjusted against {2} {3}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1270
-msgid "Amount {0} {1} deducted against {2}"
-msgstr "金额{0} {1}抵扣{2}"
+msgid "Amount {0} {1} as adjustment to {2}"
+msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1234
msgid "Amount {0} {1} transferred from {2} to {3}"
@@ -4974,11 +4970,11 @@ msgstr "金额"
msgid "An Item Group is a way to classify items based on types."
msgstr "物料组用于对物料进行分类"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:558
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:601
msgid "An error has been appeared while reposting item valuation via {0}"
msgstr "通过 {0} 进行的物料成本价追溯调整出错了"
-#: erpnext/public/js/controllers/buying.js:383
+#: erpnext/public/js/controllers/buying.js:378
#: erpnext/public/js/utils/sales_common.js:489
msgid "An error occurred during the update process"
msgstr "更新过程中发生错误"
@@ -5518,7 +5514,7 @@ msgstr "由于字段{0}已启用,字段{1}为必填项"
msgid "As the field {0} is enabled, the value of the field {1} should be more than 1."
msgstr "由于字段{0}已启用,字段{1}值必须大于1"
-#: erpnext/stock/doctype/item/item.py:1106
+#: erpnext/stock/doctype/item/item.py:1110
msgid "As there are existing submitted transactions against item {0}, you can not change the value of {1}."
msgstr "由于存在针对物料{0}的已提交交易,不可修改{1}的值"
@@ -5530,7 +5526,7 @@ msgstr "存在预留库存时不可禁用{0}"
msgid "As there are sufficient Sub Assembly Items, Work Order is not required for Warehouse {0}."
msgstr "由于子装配件充足,仓库{0}无需工单"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1839
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1841
msgid "As there are sufficient raw materials, Material Request is not required for Warehouse {0}."
msgstr "因仓库 {0} 有足够库存,未生成物料需求。"
@@ -5668,7 +5664,7 @@ msgstr "资产类别的科目"
msgid "Asset Category Name"
msgstr "资产类别名称"
-#: erpnext/stock/doctype/item/item.py:376
+#: erpnext/stock/doctype/item/item.py:375
msgid "Asset Category is mandatory for Fixed Asset item"
msgstr "固定资产类的物料其资产类别字段是必填的"
@@ -5845,8 +5841,8 @@ msgstr "资产数量"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the asset_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:169
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:284
#: erpnext/accounts/report/account_balance/account_balance.js:38
#: erpnext/setup/doctype/company/company.json
msgid "Asset Received But Not Billed"
@@ -5946,7 +5942,7 @@ msgstr "资产已取消"
msgid "Asset cannot be cancelled, as it is already {0}"
msgstr "资产不能被取消,因为它已经是{0}"
-#: erpnext/assets/doctype/asset/depreciation.py:397
+#: erpnext/assets/doctype/asset/depreciation.py:398
msgid "Asset cannot be scrapped before the last depreciation entry."
msgstr "在最后折旧分录前不能报废资产"
@@ -5978,7 +5974,7 @@ msgstr "资产因维修{0}处于停用状态"
msgid "Asset received at Location {0} and issued to Employee {1}"
msgstr "资产在位置{0}接收并发放给员工{1}"
-#: erpnext/assets/doctype/asset/depreciation.py:458
+#: erpnext/assets/doctype/asset/depreciation.py:460
msgid "Asset restored"
msgstr "资产已恢复"
@@ -5986,20 +5982,20 @@ msgstr "资产已恢复"
msgid "Asset restored after Asset Capitalization {0} was cancelled"
msgstr "因取消资产资本化{0} 恢复了资产价值"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
msgid "Asset returned"
msgstr "资产已归还"
-#: erpnext/assets/doctype/asset/depreciation.py:445
+#: erpnext/assets/doctype/asset/depreciation.py:446
msgid "Asset scrapped"
msgstr "资产已报废"
-#: erpnext/assets/doctype/asset/depreciation.py:447
+#: erpnext/assets/doctype/asset/depreciation.py:448
msgid "Asset scrapped via Journal Entry {0}"
msgstr "通过资产日记账凭证报废{0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1521
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1535
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Asset sold"
msgstr "资产已出售"
@@ -6019,7 +6015,7 @@ msgstr "资产拆分更新为资产{0}"
msgid "Asset updated due to Asset Repair {0} {1}."
msgstr "资产因维修单{0}{1}已更新。"
-#: erpnext/assets/doctype/asset/depreciation.py:379
+#: erpnext/assets/doctype/asset/depreciation.py:380
msgid "Asset {0} cannot be scrapped, as it is already {1}"
msgstr "因为已经{1},资产{0}不能报废,"
@@ -6060,7 +6056,7 @@ msgstr "资产{0}未设置计算折旧。"
msgid "Asset {0} is not submitted. Please submit the asset before proceeding."
msgstr "资产{0}未提交。请先提交资产再继续操作。"
-#: erpnext/assets/doctype/asset/depreciation.py:377
+#: erpnext/assets/doctype/asset/depreciation.py:378
msgid "Asset {0} must be submitted"
msgstr "资产{0}必须提交"
@@ -6110,7 +6106,7 @@ msgstr "未为{item_code}创建资产,请手动创建"
msgid "Assets {assets_link} created for {item_code}"
msgstr "已为{item_code}创建资产{assets_link}"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:240
+#: erpnext/manufacturing/doctype/job_card/job_card.js:709
msgid "Assign Job to Employee"
msgstr "派工"
@@ -6171,7 +6167,7 @@ msgstr "应选择至少一个适用模块"
msgid "At least one of the Selling or Buying must be selected"
msgstr "必须选择销售或采购至少一项"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:317
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:57
msgid "At least one raw material item must be present in the stock entry for the type {0}"
msgstr ""
@@ -6179,21 +6175,17 @@ msgstr ""
msgid "At least one row is required for a financial report template"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:876
-msgid "At least one warehouse is mandatory"
-msgstr "必须指定至少一个仓库"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:779
-msgid "At row #{0}: the Difference Account must not be a Stock type account, please change the Account Type for the account {1} or select a different account"
-msgstr "第{0}行:差异科目不得为库存类型科目,请修改科目{1}类型或选择其他科目。"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:169
+msgid "At row #{0}: the Difference Account must not be a Stock type account..."
+msgstr ""
#: erpnext/manufacturing/doctype/routing/routing.py:50
msgid "At row #{0}: the sequence id {1} cannot be less than previous row sequence id {2}"
msgstr "行{0}:序列ID{1}不能小于前一行的序列ID{2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:790
-msgid "At row #{0}: you have selected the Difference Account {1}, which is a Cost of Goods Sold type account. Please select a different account"
-msgstr "第{0}行:所选差异科目{1}为销售成本类型科目,请选择其他科目。"
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:180
+msgid "At row #{0}: you have selected the Difference Account {1}..."
+msgstr ""
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py:1184
msgid "At row {0}: Batch No is mandatory for Item {1}"
@@ -6275,11 +6267,11 @@ msgstr "属性名称"
msgid "Attribute Value"
msgstr "属性值"
-#: erpnext/stock/doctype/item/item.py:896
+#: erpnext/stock/doctype/item/item.py:900
msgid "Attribute Value {0} is not valid for the selected attribute {1}."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1042
+#: erpnext/stock/doctype/item/item.py:1046
msgid "Attribute table is mandatory"
msgstr "属性表中的信息必填"
@@ -6287,19 +6279,19 @@ msgstr "属性表中的信息必填"
msgid "Attribute value: {0} must appear only once"
msgstr "属性值{0}必须唯一"
-#: erpnext/stock/doctype/item/item.py:890
+#: erpnext/stock/doctype/item/item.py:889
msgid "Attribute {0} is disabled."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:878
+#: erpnext/stock/doctype/item/item.py:877
msgid "Attribute {0} is not valid for the selected template."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1046
+#: erpnext/stock/doctype/item/item.py:1050
msgid "Attribute {0} selected multiple times in Attributes Table"
msgstr "属性{0}多次选择在属性表"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Attributes"
msgstr "属性"
@@ -6511,7 +6503,7 @@ msgstr "银行交易流水提交时自动匹配并填写往来单位字段"
msgid "Auto re-order"
msgstr "自动重订货"
-#: erpnext/public/js/controllers/buying.js:378
+#: erpnext/public/js/controllers/buying.js:373
#: erpnext/public/js/utils/sales_common.js:484
msgid "Auto repeat document updated"
msgstr "自动重复单据已更新"
@@ -6623,7 +6615,7 @@ msgstr "可用日期"
#: erpnext/public/js/utils.js:647
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:177
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:210
msgid "Available Qty"
msgstr "可用数量"
@@ -6712,10 +6704,6 @@ msgstr ""
msgid "Available for use date is required"
msgstr "请输入启用日期"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1039
-msgid "Available quantity is {0}, you need {1}"
-msgstr "可用数量 {0},需求数量 {1}"
-
#: erpnext/stock/dashboard/item_dashboard.js:251
msgid "Available {0}"
msgstr "可用{0}"
@@ -6724,8 +6712,8 @@ msgstr "可用{0}"
msgid "Available-for-use Date should be after purchase date"
msgstr "启用日应晚于采购日"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:212
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:211
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:245
#: erpnext/stock/report/stock_balance/stock_balance.py:594
msgid "Average Age"
msgstr "平均库龄"
@@ -6749,7 +6737,9 @@ msgstr ""
msgid "Average Order Values"
msgstr ""
+#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/accounts/report/share_balance/share_balance.py:60
+#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
msgid "Average Rate"
msgstr "均价"
@@ -6773,7 +6763,7 @@ msgid "Avg Rate"
msgstr "平均单价"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:154
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:367
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:368
msgid "Avg Rate (Balance Stock)"
msgstr "平均成本价(库存余额)"
@@ -6831,7 +6821,7 @@ msgstr "库位数量"
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom/bom_tree.js:8
#: erpnext/manufacturing/doctype/manufacturing_settings/manufacturing_settings.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:216
+#: erpnext/manufacturing/doctype/work_order/work_order.js:197
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.js:8
#: erpnext/manufacturing/report/bom_explorer/bom_explorer.py:67
@@ -6854,7 +6844,7 @@ msgstr "物料清单"
msgid "BOM 1"
msgstr "物料清单1"
-#: erpnext/manufacturing/doctype/bom/bom.py:1811
+#: erpnext/manufacturing/doctype/bom/bom.py:1832
msgid "BOM 1 {0} and BOM 2 {1} should not be same"
msgstr "物料清单1 {0} 与物料清单2 {0} 不能相同"
@@ -6926,11 +6916,6 @@ msgstr "BOM底层物料"
msgid "BOM ID"
msgstr "物料清单代码"
-#. Label of the bom_info_section (Section Break) field in DocType 'Stock Entry'
-#: erpnext/stock/doctype/stock_entry/stock_entry.json
-msgid "BOM Info"
-msgstr "物料清单信息"
-
#. Name of a DocType
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
msgid "BOM Item"
@@ -7084,7 +7069,7 @@ msgstr "展示在网站上的BOM物料"
msgid "BOM Website Operation"
msgstr "展示在网站上的BOM工序"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2430
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:156
msgid "BOM and Finished Good Quantity is mandatory for Disassembly"
msgstr ""
@@ -7152,7 +7137,7 @@ msgstr "倒填库存交易"
#. Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:386
+#: erpnext/manufacturing/doctype/work_order/work_order.js:367
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Backflush Materials From WIP Warehouse"
msgstr "从在制品仓库后冲原材料"
@@ -7216,7 +7201,7 @@ msgstr "本币余额"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:126
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:84
#: erpnext/stock/report/stock_balance/stock_balance.py:520
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:330
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:331
msgid "Balance Qty"
msgstr "结余数量"
@@ -7281,7 +7266,7 @@ msgstr ""
#: erpnext/stock/report/available_serial_no/available_serial_no.py:174
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:86
#: erpnext/stock/report/stock_balance/stock_balance.py:528
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:387
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:388
msgid "Balance Value"
msgstr "结余金额"
@@ -7437,8 +7422,8 @@ msgid "Bank Balance"
msgstr "银行存款余额"
#. Label of the bank_charges (Currency) field in DocType 'Invoice Discounting'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:137
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
msgid "Bank Charges"
msgstr "银行费用"
@@ -7553,8 +7538,8 @@ msgstr "银行担保类型"
msgid "Bank Name"
msgstr "银行名称"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:309
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:314
msgid "Bank Overdraft Account"
msgstr "银行透支账户"
@@ -7727,11 +7712,11 @@ msgstr "银行"
msgid "Barcode Type"
msgstr "条码类型"
-#: erpnext/stock/doctype/item/item.py:544
+#: erpnext/stock/doctype/item/item.py:543
msgid "Barcode {0} already used in Item {1}"
msgstr "条码{0}已被物料{1}使用"
-#: erpnext/stock/doctype/item/item.py:559
+#: erpnext/stock/doctype/item/item.py:558
msgid "Barcode {0} is not a valid {1} code"
msgstr "条码{0}不是有效的{1}代码"
@@ -7888,7 +7873,7 @@ msgstr "单价(按库存单位)"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:34
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:80
#: erpnext/stock/report/fifo_queue_vs_qty_after_transaction_comparison/fifo_queue_vs_qty_after_transaction_comparison.py:158
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:417
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:418
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:171
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:80
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.js:19
@@ -7963,7 +7948,7 @@ msgstr "物料批号到期状态"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:89
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:115
-#: erpnext/public/js/controllers/transaction.js:2865
+#: erpnext/public/js/controllers/transaction.js:2867
#: erpnext/public/js/utils/barcode_scanner.js:281
#: erpnext/public/js/utils/serial_no_batch_selector.js:450
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -8052,13 +8037,13 @@ msgstr "批次数量已更新至{0}"
msgid "Batch Quantity"
msgstr "数量"
-#. Label of the batch_size (Int) field in DocType 'BOM Operation'
+#. Label of the batch_size (Float) field in DocType 'BOM Operation'
#. Label of the batch_size (Int) field in DocType 'Operation'
#. Label of the batch_size (Float) field in DocType 'Work Order'
#. Label of the batch_size (Float) field in DocType 'Work Order Operation'
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:368
+#: erpnext/manufacturing/doctype/work_order/work_order.js:349
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
msgid "Batch Size"
@@ -8075,7 +8060,7 @@ msgstr "计量单位"
msgid "Batch and Serial No"
msgstr "批次和序列号"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:937
+#: erpnext/manufacturing/doctype/work_order/work_order.py:938
msgid "Batch not created for item {} since it does not have a batch series."
msgstr "未为物料{}创建批次,因其无批次编号规则"
@@ -8098,12 +8083,12 @@ msgstr "批号 {0} 和仓库"
msgid "Batch {0} is not available in warehouse {1}"
msgstr "批次{0}在仓库{1}中不可用"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3503
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:103
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.py:289
msgid "Batch {0} of Item {1} has expired."
msgstr "物料{1}的批号{0} 已过期。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3509
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:98
msgid "Batch {0} of Item {1} is disabled."
msgstr "物料{1}批号{0}已禁用。"
@@ -8158,7 +8143,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:1264
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1187
#: erpnext/accounts/report/purchase_register/purchase_register.py:214
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill Date"
@@ -8167,7 +8152,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:1263
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1186
#: erpnext/accounts/report/purchase_register/purchase_register.py:213
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.json
msgid "Bill No"
@@ -8181,11 +8166,13 @@ 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:1382
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/stock/doctype/material_request/material_request.js:139
#: erpnext/stock/doctype/stock_entry/stock_entry.js:774
+#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/workspace_sidebar/subcontracting.json
msgid "Bill of Materials"
msgstr "物料清单"
@@ -8286,7 +8273,7 @@ msgstr "发票地址详情"
msgid "Billing Address Name"
msgstr "开票地址名称"
-#: erpnext/controllers/accounts_controller.py:574
+#: erpnext/controllers/accounts_controller.py:575
msgid "Billing Address does not belong to the {0}"
msgstr "账单地址不属于{0}"
@@ -8538,6 +8525,16 @@ msgstr "冻结发票"
msgid "Block Supplier"
msgstr "临时冻结供应商"
+#. Description of the 'Is Frozen' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n"
+msgstr ""
+
+#. Description of the 'Disabled' (Check) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Blocks this customer from being used on any new transaction."
+msgstr ""
+
#. Label of the blog_subscriber (Check) field in DocType 'Lead'
#: erpnext/crm/doctype/lead/lead.json
msgid "Blog Subscriber"
@@ -8634,7 +8631,7 @@ msgstr "已预订"
msgid "Booked Fixed Asset"
msgstr "已入账固定资产"
-#: erpnext/accounts/general_ledger.py:830
+#: erpnext/accounts/general_ledger.py:835
msgid "Books have been closed till the period ending on {0}"
msgstr "截止到 {0} 的会计记账已关闭"
@@ -8893,8 +8890,8 @@ msgstr "构建树形结构"
msgid "Buildable Qty"
msgstr "可生产数量"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:65
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
msgid "Buildings"
msgstr "房屋"
@@ -9055,16 +9052,16 @@ msgstr "默认供应商名称按输入显示。若要通过转换为组"
-#: erpnext/accounts/doctype/account/account.py:276
+#: erpnext/accounts/doctype/account/account.py:280
msgid "Cannot covert to Group because Account Type is selected."
msgstr "科目类型字段须为空才能转换为组。"
@@ -9575,7 +9572,7 @@ msgstr "科目类型字段须为空才能转换为组。"
msgid "Cannot create Stock Reservation Entries for future dated Purchase Receipts."
msgstr "无法为未来日期的采购收据创建库存预留"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2023
+#: erpnext/selling/doctype/sales_order/sales_order.py:2049
#: erpnext/stock/doctype/pick_list/pick_list.py:257
msgid "Cannot create a pick list for Sales Order {0} because it has reserved stock. Please unreserve the stock in order to create a pick list."
msgstr "为销售订单 {0} 创建了库存预留,请取消预留后再创建拣货单"
@@ -9601,7 +9598,7 @@ msgstr "已报价,不能更改状态为未成交。"
msgid "Cannot deduct when category is for 'Valuation' or 'Valuation and Total'"
msgstr "分类是“估值”或“估值和总计”的时候不能扣税。"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1814
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1816
msgid "Cannot delete Exchange Gain/Loss row"
msgstr "无法删除汇兑损益行"
@@ -9609,12 +9606,12 @@ msgstr "无法删除汇兑损益行"
msgid "Cannot delete Serial No {0}, as it is used in stock transactions"
msgstr "无法删除已在库存业务单据中使用过的序列号{0}"
-#: erpnext/controllers/accounts_controller.py:3809
+#: erpnext/controllers/accounts_controller.py:3815
msgid "Cannot delete an item which has been ordered"
msgstr ""
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:197
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:784
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
msgid "Cannot delete protected core DocType: {0}"
msgstr ""
@@ -9626,7 +9623,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:560
+#: erpnext/setup/doctype/company/company.py:564
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 "无法停用永续盘存制,因公司{0}存在库存分类账记录。请先取消库存交易再重试。"
@@ -9634,20 +9631,20 @@ msgstr "无法停用永续盘存制,因公司{0}存在库存分类账记录。
msgid "Cannot disable {0} as it may lead to incorrect stock valuation."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:727
+#: erpnext/manufacturing/doctype/work_order/work_order.py:728
msgid "Cannot disassemble more than produced quantity."
msgstr "拆解数量不得超过产出数量。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:919
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:40
msgid "Cannot disassemble {0} qty against Stock Entry {1}. Only {2} qty available to disassemble."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:222
+#: erpnext/setup/doctype/company/company.py:225
msgid "Cannot enable Item-wise Inventory Account, as there are existing Stock Ledger Entries for the company {0} with Warehouse-wise Inventory Account. Please cancel the stock transactions first and try again."
msgstr "无法启用按物料核算库存科目,因公司{0}已存在按仓库核算的库存分类账记录。请先取消库存交易再重试。"
-#: erpnext/selling/doctype/sales_order/sales_order.py:783
-#: erpnext/selling/doctype/sales_order/sales_order.py:806
+#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:813
msgid "Cannot ensure delivery by Serial No as Item {0} is added with and without Ensure Delivery by Serial No."
msgstr "物料{0}同时存在启用和未启用序列号交付,无法确保"
@@ -9663,7 +9660,7 @@ msgstr "未找到匹配此条码的物料或仓库"
msgid "Cannot find Item with this Barcode"
msgstr "找不到该条码对应的物料"
-#: erpnext/controllers/accounts_controller.py:3761
+#: erpnext/controllers/accounts_controller.py:3767
msgid "Cannot find a default warehouse for item {0}. Please set one in the Item Master or in Stock Settings."
msgstr "找不到物料{0}的默认仓库,请在物料主数据或库存设置中设置"
@@ -9671,15 +9668,15 @@ msgstr "找不到物料{0}的默认仓库,请在物料主数据或库存设置
msgid "Cannot merge {0} '{1}' into '{2}' as both have existing accounting entries in different currencies for company '{3}'."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:577
+#: erpnext/manufacturing/doctype/work_order/work_order.py:578
msgid "Cannot produce more Item {0} than Sales Order quantity {1} {2}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1472
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1473
msgid "Cannot produce more item for {0}"
msgstr "无法为{0}生产更多物料"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1476
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1477
msgid "Cannot produce more than {0} items for {1}"
msgstr "无法为{1}生产超过{0}件物料"
@@ -9687,12 +9684,12 @@ msgstr "无法为{1}生产超过{0}件物料"
msgid "Cannot receive from customer against negative outstanding"
msgstr "存在负未清金额时不可从客户收货"
-#: erpnext/controllers/accounts_controller.py:4083
+#: erpnext/controllers/accounts_controller.py:4089
msgid "Cannot reduce quantity than ordered or purchased quantity"
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1512
-#: erpnext/controllers/accounts_controller.py:3211
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1514
+#: erpnext/controllers/accounts_controller.py:3205
#: erpnext/public/js/controllers/accounts.js:120
msgid "Cannot refer row number greater than or equal to current row number for this Charge type"
msgstr "此收取类型不能引用大于或等于本行的数据。"
@@ -9705,14 +9702,14 @@ msgstr "无法获取更新链接令牌,查看错误日志"
msgid "Cannot retrieve link token. Check Error Log for more information"
msgstr "无法获取链接令牌,查看错误日志"
-#: erpnext/selling/doctype/customer/customer.py:368
+#: erpnext/selling/doctype/customer/customer.py:358
msgid "Cannot select a Group type Customer Group. Please select a non-group Customer Group."
msgstr ""
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1505
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1683
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1507
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1685
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1827
-#: erpnext/controllers/accounts_controller.py:3201
+#: erpnext/controllers/accounts_controller.py:3195
#: erpnext/public/js/controllers/accounts.js:112
#: erpnext/public/js/controllers/taxes_and_totals.js:550
msgid "Cannot select charge type as 'On Previous Row Amount' or 'On Previous Row Total' for first row"
@@ -9726,7 +9723,7 @@ msgstr "已有销售订单时不能更改其状态为未成交。"
msgid "Cannot set authorization on basis of Discount for {0}"
msgstr "不能为{0}设置折扣授权"
-#: erpnext/stock/doctype/item/item.py:790
+#: erpnext/stock/doctype/item/item.py:789
msgid "Cannot set multiple Item Defaults for a company."
msgstr "无法为公司设置多个物料默认值。"
@@ -9734,11 +9731,11 @@ msgstr "无法为公司设置多个物料默认值。"
msgid "Cannot set multiple account rows for the same company"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4049
+#: erpnext/controllers/accounts_controller.py:4055
msgid "Cannot set quantity less than delivered quantity."
msgstr "无法设定数量小于出货数量."
-#: erpnext/controllers/accounts_controller.py:4050
+#: erpnext/controllers/accounts_controller.py:4056
msgid "Cannot set quantity less than received quantity."
msgstr "数量不可小于已接收数量."
@@ -9750,7 +9747,7 @@ msgstr "无法设置允许字段{0} 复制到多规格物料"
msgid "Cannot start deletion. Another deletion {0} is already queued/running. Please wait for it to complete."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4077
+#: erpnext/controllers/accounts_controller.py:4083
msgid "Cannot update rate as item {0} is already ordered or purchased against this quotation"
msgstr ""
@@ -9783,7 +9780,7 @@ msgstr "产能(库存单位)"
msgid "Capacity Planning"
msgstr "产能计划"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1101
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1102
msgid "Capacity Planning Error, planned start time can not be same as end time"
msgstr "产能计划错误,计划开始时间不能等于结束时间"
@@ -9802,13 +9799,13 @@ msgstr "产能(库存单位)"
msgid "Capacity must be greater than 0"
msgstr "产能必须大于0"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:44
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
msgid "Capital Equipment"
msgstr "资本设备"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:190
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:333
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:194
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
msgid "Capital Stock"
msgstr "股本"
@@ -10025,7 +10022,7 @@ msgstr "类别明细"
msgid "Category-wise Asset Value"
msgstr "资产类别金额"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:291
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:144
msgid "Caution"
msgstr "警告"
@@ -10130,7 +10127,7 @@ msgstr "更改解除冻结日期"
msgid "Change in Stock Value"
msgstr "库存金额变动"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
msgid "Change the account type to Receivable or select a different account."
msgstr "请将科目类型改为应收或选择其他科目"
@@ -10140,7 +10137,7 @@ msgstr "请将科目类型改为应收或选择其他科目"
msgid "Change this date manually to setup the next synchronization start date"
msgstr "手工修改后下次同步由此日期开始"
-#: erpnext/selling/doctype/customer/customer.py:158
+#: erpnext/selling/doctype/customer/customer.py:148
msgid "Changed customer name to '{}' as '{}' already exists."
msgstr "客户名称已存在,已更改为'{}'"
@@ -10148,7 +10145,7 @@ msgstr "客户名称已存在,已更改为'{}'"
msgid "Changes in {0}"
msgstr "{0}变更记录"
-#: erpnext/stock/doctype/item/item.js:385
+#: erpnext/stock/doctype/item/item.js:373
msgid "Changing Customer Group for the selected Customer is not allowed."
msgstr "不允许更改所选客户的客户组。"
@@ -10163,7 +10160,7 @@ msgid "Channel Partner"
msgstr "渠道服务商"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2258
-#: erpnext/controllers/accounts_controller.py:3264
+#: erpnext/controllers/accounts_controller.py:3258
msgid "Charge of type 'Actual' in row {0} cannot be included in Item Rate or Paid Amount"
msgstr "行{0}的'实际'类型费用不可包含在物料单价或实付金额中"
@@ -10217,7 +10214,7 @@ msgstr "科目表树"
#: erpnext/accounts/doctype/cost_center/cost_center_tree.js:52
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/setup_wizard.js:43
-#: erpnext/setup/doctype/company/company.js:123
+#: 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
@@ -10360,7 +10357,7 @@ msgstr "支票宽度"
#. Label of the reference_date (Date) field in DocType 'Payment Entry'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
-#: erpnext/public/js/controllers/transaction.js:2776
+#: erpnext/public/js/controllers/transaction.js:2778
msgid "Cheque/Reference Date"
msgstr "业务日期"
@@ -10418,7 +10415,7 @@ msgstr "子单据名称/编号"
#. Label of the child_row_reference (Data) field in DocType 'Quality
#. Inspection'
-#: erpnext/public/js/controllers/transaction.js:2871
+#: erpnext/public/js/controllers/transaction.js:2873
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Child Row Reference"
msgstr "子行引用"
@@ -10470,6 +10467,11 @@ msgstr "客户按区域分类"
msgid "Classify As"
msgstr ""
+#. Description of the 'Market Segment' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Classify the type of market this customer belongs to, used for sales analysis and targeting."
+msgstr ""
+
#. Label of the more_information (Text Editor) field in DocType 'Bank
#. Guarantee'
#: erpnext/accounts/doctype/bank_guarantee/bank_guarantee.json
@@ -10612,11 +10614,11 @@ msgstr "封闭文件"
msgid "Closed Documents"
msgstr "已关闭单据类型"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2506
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2507
msgid "Closed Work Order can not be stopped or Re-opened"
msgstr "已关闭工单不可停止或重新打开"
-#: erpnext/selling/doctype/sales_order/sales_order.py:542
+#: erpnext/selling/doctype/sales_order/sales_order.py:551
msgid "Closed order cannot be cancelled. Unclose to cancel."
msgstr "关闭的定单不能被取消。 Unclose取消。"
@@ -10868,11 +10870,17 @@ msgstr "佣金率%"
msgid "Commission Rate (%)"
msgstr "佣金率(%)"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:104
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:108
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:177
msgid "Commission on Sales"
msgstr "销售佣金"
+#. Description of the 'Sales Partner' (Section Break) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Commission paid to the Sales Partner on transactions with this customer."
+msgstr ""
+
#. Name of a DocType
#. Label of the common_code (Data) field in DocType 'Common Code'
#. Label of the common_code (Data) field in DocType 'UOM'
@@ -10903,7 +10911,7 @@ msgstr "通信媒体时隙"
msgid "Communication Medium Type"
msgstr "通信媒体类型"
-#: erpnext/setup/install.py:107
+#: erpnext/setup/install.py:108
msgid "Compact Item Print"
msgstr "紧凑型物料打印(除单价与金额外其它字段在物料描述字段打印)"
@@ -11302,8 +11310,8 @@ msgstr "公司"
#: erpnext/setup/doctype/employee/employee_tree.js:8
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
-#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:166
-#: erpnext/setup/install.py:175 erpnext/setup/workspace/home/home.json
+#: erpnext/setup/doctype/vehicle/vehicle.json erpnext/setup/install.py:198
+#: erpnext/setup/install.py:207 erpnext/setup/workspace/home/home.json
#: erpnext/stock/dashboard_chart_source/stock_value_by_item_group/stock_value_by_item_group.js:8
#: erpnext/stock/dashboard_chart_source/warehouse_wise_stock_value/warehouse_wise_stock_value.js:8
#: erpnext/stock/doctype/bin/bin.json
@@ -11356,7 +11364,7 @@ msgstr "公司"
#: erpnext/stock/report/stock_balance/stock_balance.js:8
#: erpnext/stock/report/stock_balance/stock_balance.py:583
#: erpnext/stock/report/stock_ledger/stock_ledger.js:8
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:440
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:441
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:18
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:8
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.js:8
@@ -11445,18 +11453,20 @@ msgstr "公司地址"
msgid "Company Address Name"
msgstr "公司地址名称"
-#: erpnext/controllers/accounts_controller.py:4411
+#: erpnext/controllers/accounts_controller.py:4399
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:4399
+#: erpnext/controllers/accounts_controller.py:4387
msgid "Company Address is missing. You don't have permission to update it. Please contact your System Manager."
msgstr "公司地址信息缺失。您无权限更新该信息,请联系系统管理员。"
#. Label of the bank_account (Link) field in DocType 'Payment Entry'
#. Label of the company_bank_account (Link) field in DocType 'Payment Order'
+#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
+#: erpnext/selling/doctype/customer/customer.json
msgid "Company Bank Account"
msgstr "公司银行户头"
@@ -11552,7 +11562,7 @@ msgstr "必须填写公司和过账日期"
msgid "Company and account filters not set!"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2580
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2686
msgid "Company currencies of both the companies should match for Inter Company Transactions."
msgstr "两家公司的本币应匹配关联公司交易。"
@@ -11587,7 +11597,7 @@ msgstr ""
msgid "Company link field name used for filtering (optional - leave empty to delete all records)"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:222
+#: erpnext/setup/doctype/company/company.js:238
msgid "Company name not same"
msgstr "公司名不一样"
@@ -11626,12 +11636,12 @@ msgstr "内部供应商所属公司"
msgid "Company {0} added multiple times"
msgstr "公司{0}被重复添加"
-#: erpnext/accounts/doctype/account/account.py:509
+#: erpnext/accounts/doctype/account/account.py:519
#: erpnext/manufacturing/report/material_requirements_planning_report/material_requirements_planning_report.py:1308
msgid "Company {0} does not exist"
msgstr "公司{0}不存在"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:83
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:105
msgid "Company {0} is added more than once"
msgstr "公司{0}被多次添加"
@@ -11673,7 +11683,7 @@ msgstr "竞争对手名称"
msgid "Competitors"
msgstr "竞争对手"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:277
+#: erpnext/manufacturing/doctype/job_card/job_card.js:661
#: erpnext/manufacturing/doctype/workstation/workstation.js:151
msgid "Complete Job"
msgstr "停止计时"
@@ -11720,12 +11730,12 @@ msgstr ""
msgid "Completed Qty"
msgstr "完工数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1391
msgid "Completed Qty cannot be greater than 'Qty to Manufacture'"
msgstr "完成数量不可超过'待生产数量'"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:331
-#: erpnext/manufacturing/doctype/job_card/job_card.js:452
+#: erpnext/manufacturing/doctype/job_card/job_card.js:259
+#: erpnext/manufacturing/doctype/job_card/job_card.js:393
#: erpnext/manufacturing/doctype/workstation/workstation.js:296
msgid "Completed Quantity"
msgstr "完成数量"
@@ -11914,7 +11924,7 @@ msgstr "显示辅助核算"
msgid "Consider Minimum Order Qty"
msgstr "考虑最小订单数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1096
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1078
msgid "Consider Process Loss"
msgstr "考量工艺损耗"
@@ -12108,7 +12118,7 @@ msgstr "已消耗物料成本"
msgid "Consumed Qty"
msgstr "已耗用数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1766
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1770
msgid "Consumed Qty cannot be greater than Reserved Qty for item {0}"
msgstr "物料{0}的消耗数量不可超过预留数量"
@@ -12137,7 +12147,7 @@ msgstr "资本化需填写消耗库存/资产/服务项"
msgid "Consumed Stock Total Value"
msgstr "耗用的库存金额"
-#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:135
+#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.py:136
msgid "Consumed quantity of item {0} exceeds transferred quantity."
msgstr ""
@@ -12265,7 +12275,7 @@ msgstr "联系人电话"
msgid "Contact Person"
msgstr "联系人"
-#: erpnext/controllers/accounts_controller.py:586
+#: erpnext/controllers/accounts_controller.py:587
msgid "Contact Person does not belong to the {0}"
msgstr "联系人不属于{0}"
@@ -12391,6 +12401,11 @@ msgstr "历史库存交易控制"
msgid "Controls how raw materials are consumed during the ‘Manufacture’ stock entry."
msgstr ""
+#. Description of the 'Tax Category' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Controls which tax template is auto-applied when this customer is selected on a transaction."
+msgstr ""
+
#. Label of the conversion_factor (Float) field in DocType 'Loyalty Program'
#. Label of the conversion_factor (Float) field in DocType 'Purchase Receipt
#. Item Supplied'
@@ -12451,7 +12466,7 @@ msgstr "转换系数"
msgid "Conversion Rate"
msgstr "转换率"
-#: erpnext/stock/doctype/item/item.py:462
+#: erpnext/stock/doctype/item/item.py:461
msgid "Conversion factor for default Unit of Measure must be 1 in row {0}"
msgstr "行{0}中默认单位的转换系数必须是1"
@@ -12459,15 +12474,15 @@ msgstr "行{0}中默认单位的转换系数必须是1"
msgid "Conversion factor for item {0} has been reset to 1.0 as the uom {1} is same as stock uom {2}."
msgstr "物料{0}的换算系数已重置为1.0,因其单位{1}与库存单位{2}相同"
-#: erpnext/controllers/accounts_controller.py:2977
+#: erpnext/controllers/accounts_controller.py:2971
msgid "Conversion rate cannot be 0"
msgstr "汇率不能为 0"
-#: erpnext/controllers/accounts_controller.py:2984
+#: erpnext/controllers/accounts_controller.py:2978
msgid "Conversion rate is 1.00, but document currency is different from company currency"
msgstr "汇率设置为1.00,但单据货币与公司货币不同"
-#: erpnext/controllers/accounts_controller.py:2980
+#: erpnext/controllers/accounts_controller.py:2974
msgid "Conversion rate must be 1.00 if document currency is same as company currency"
msgstr "单据货币与公司本位币相同时,汇率必须为1.00"
@@ -12544,13 +12559,13 @@ msgstr "纠正"
msgid "Corrective Action"
msgstr "纠正措施"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:509
+#: erpnext/manufacturing/doctype/job_card/job_card.js:447
msgid "Corrective Job Card"
msgstr "返工生产任务单"
#. Label of the corrective_operation_section (Tab Break) field in DocType 'Job
#. Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:516
+#: erpnext/manufacturing/doctype/job_card/job_card.js:456
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Corrective Operation"
msgstr "返工工序"
@@ -12717,7 +12732,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:1249
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1172
#: 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:204
@@ -12850,7 +12865,7 @@ msgstr "成本中心{}为组成本中心,不可用于交易"
msgid "Cost Center: {0} does not exist"
msgstr "成本中心:{0}不存在"
-#: erpnext/setup/doctype/company/company.js:113
+#: erpnext/setup/doctype/company/company.js:129
msgid "Cost Centers"
msgstr "成本中心"
@@ -12893,17 +12908,13 @@ msgstr "出货物料成本"
#. Label of the cost_of_good_sold_section (Section Break) field in DocType
#. 'Item Default'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:84
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:143
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
#: erpnext/accounts/report/account_balance/account_balance.js:43
#: erpnext/stock/doctype/item_default/item_default.json
msgid "Cost of Goods Sold"
msgstr "销货成本"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:793
-msgid "Cost of Goods Sold Account in Items Table"
-msgstr "物料表中的销售成本科目"
-
#: erpnext/projects/report/project_wise_stock_tracking/project_wise_stock_tracking.py:40
msgid "Cost of Issued Items"
msgstr "已发料物料成本"
@@ -12983,7 +12994,7 @@ msgstr "无法删除演示数据"
msgid "Could not auto create Customer due to the following missing mandatory field(s):"
msgstr "无法自动创建客户,缺失必填字段:"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:692
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:733
msgid "Could not create Credit Note automatically, please uncheck 'Issue Credit Note' and submit again"
msgstr "无法自动创建退款单,请取消选中'退款'并再次提交"
@@ -13172,7 +13183,7 @@ msgstr "创建发票"
msgid "Create Item"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:206
+#: erpnext/manufacturing/doctype/work_order/work_order.js:187
msgid "Create Job Card"
msgstr "创建生产任务单"
@@ -13204,7 +13215,7 @@ msgid "Create Ledger Entries for Change Amount"
msgstr "为找零生成日记账凭证"
#: erpnext/buying/doctype/supplier/supplier.js:216
-#: erpnext/selling/doctype/customer/customer.js:287
+#: erpnext/selling/doctype/customer/customer.js:289
msgid "Create Link"
msgstr "创建关联"
@@ -13271,7 +13282,7 @@ msgstr "为合并POS发票创建付款凭证。"
msgid "Create Payment Request"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:818
+#: erpnext/manufacturing/doctype/work_order/work_order.js:800
msgid "Create Pick List"
msgstr "创建拣货单"
@@ -13416,7 +13427,7 @@ msgstr "创建任务"
msgid "Create Tasks"
msgstr ""
-#: erpnext/setup/doctype/company/company.js:157
+#: erpnext/setup/doctype/company/company.js:173
msgid "Create Tax Template"
msgstr "创建税费模板"
@@ -13454,12 +13465,12 @@ msgstr "创建用户权限限制"
msgid "Create Users"
msgstr "创建用户"
-#: erpnext/stock/doctype/item/item.js:984
+#: erpnext/stock/doctype/item/item.js:968
msgid "Create Variant"
msgstr "创建多规格物料"
-#: erpnext/stock/doctype/item/item.js:798
-#: erpnext/stock/doctype/item/item.js:842
+#: erpnext/stock/doctype/item/item.js:779
+#: erpnext/stock/doctype/item/item.js:823
msgid "Create Variants"
msgstr "创建多规格物料"
@@ -13490,12 +13501,12 @@ msgstr ""
msgid "Create a new rule to automatically classify transactions."
msgstr ""
-#: erpnext/stock/doctype/item/item.js:825
-#: erpnext/stock/doctype/item/item.js:977
+#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:961
msgid "Create a variant with the template image."
msgstr "使用模板图像创建变型"
-#: erpnext/stock/stock_ledger.py:2071
+#: erpnext/stock/stock_ledger.py:2037
msgid "Create an incoming stock transaction for the Item."
msgstr "为物料创建一笔收货记录"
@@ -13529,7 +13540,7 @@ msgstr "是否创建{0}{1}?"
msgid "Created By Migration"
msgstr ""
-#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:245
+#: erpnext/buying/doctype/supplier_scorecard/supplier_scorecard.py:220
msgid "Created {0} scorecards for {1} between:"
msgstr "已为{1}创建{0}张计分卡,时间范围:"
@@ -13562,7 +13573,7 @@ msgstr "正在创建交货单..."
msgid "Creating Delivery Schedule..."
msgstr "正在创建交货计划..."
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:140
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:162
msgid "Creating Dimensions..."
msgstr "创建辅助核算......"
@@ -13757,7 +13768,7 @@ msgstr "授信天数"
msgid "Credit Limit"
msgstr "信用额度"
-#: erpnext/selling/doctype/customer/customer.py:650
+#: erpnext/selling/doctype/customer/customer.py:640
msgid "Credit Limit Crossed"
msgstr "超信用额度"
@@ -13767,12 +13778,6 @@ msgstr "超信用额度"
msgid "Credit Limit Settings"
msgstr "信用额度设置"
-#. Label of the credit_limit_section (Section Break) field in DocType
-#. 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Credit Limit and Payment Terms"
-msgstr "信用额度和付款条款"
-
#: erpnext/accounts/doctype/process_statement_of_accounts/process_statement_of_accounts_accounts_receivable.html:50
msgid "Credit Limit:"
msgstr "信用额度:"
@@ -13804,7 +13809,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:1273
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1196
#: erpnext/controllers/sales_and_purchase_return.py:453
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:303
#: erpnext/stock/doctype/delivery_note/delivery_note.js:89
@@ -13832,7 +13837,7 @@ msgstr "已退款"
msgid "Credit Note will update it's own outstanding amount, even if 'Return Against' is specified."
msgstr "即使指定'源单',在本单处理付款与核销"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:689
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:730
msgid "Credit Note {0} has been created automatically"
msgstr "退款单{0}已自动创建"
@@ -13840,7 +13845,7 @@ msgstr "退款单{0}已自动创建"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:376
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:384
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Credit To"
msgstr "贷记"
@@ -13849,20 +13854,20 @@ msgstr "贷记"
msgid "Credit in Company Currency"
msgstr "贷方(本币)"
-#: erpnext/selling/doctype/customer/customer.py:616
-#: erpnext/selling/doctype/customer/customer.py:673
+#: erpnext/selling/doctype/customer/customer.py:606
+#: erpnext/selling/doctype/customer/customer.py:663
msgid "Credit limit has been crossed for customer {0} ({1}/{2})"
msgstr "客户{0}({1} / {2})的信用额度已超过"
-#: erpnext/selling/doctype/customer/customer.py:395
+#: erpnext/selling/doctype/customer/customer.py:385
msgid "Credit limit is already defined for the Company {0}"
msgstr "公司{0}已定义信用额度"
-#: erpnext/selling/doctype/customer/customer.py:672
+#: erpnext/selling/doctype/customer/customer.py:662
msgid "Credit limit reached for customer {0}"
msgstr "客户{0}已达到信用额度"
-#: erpnext/accounts/utils.py:2827
+#: erpnext/accounts/utils.py:2826
msgid "Credit limit warning — submission may be blocked: {0}"
msgstr ""
@@ -13870,8 +13875,8 @@ msgstr ""
msgid "Creditor Turnover Ratio"
msgstr "应付账款周转率"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:155
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:257
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
msgid "Creditors"
msgstr "应付账款"
@@ -14041,7 +14046,7 @@ msgstr "外币汇率必须适用于买入或卖出。"
msgid "Currency and Price List"
msgstr "货币和价格表"
-#: erpnext/accounts/doctype/account/account.py:346
+#: erpnext/accounts/doctype/account/account.py:350
msgid "Currency can not be changed after making entries using some other currency"
msgstr "货币不能使用其他货币进行输入后更改"
@@ -14051,7 +14056,7 @@ msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1604
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:1672
-#: erpnext/accounts/utils.py:2546
+#: erpnext/accounts/utils.py:2545
msgid "Currency for {0} must be {1}"
msgstr "货币{0}必须{1}"
@@ -14134,8 +14139,8 @@ msgstr "当前发票开始日期"
msgid "Current Level"
msgstr "当前层级"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:153
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:255
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:157
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:260
msgid "Current Liabilities"
msgstr "流动负债"
@@ -14202,6 +14207,11 @@ msgstr "当前库存"
msgid "Current Valuation Rate"
msgstr "当前成本价"
+#. Description of the 'Loyalty Program Tier' (Data) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Current tier based on accumulated points. Updated automatically on each invoice."
+msgstr ""
+
#: erpnext/selling/report/sales_analytics/sales_analytics.js:90
msgid "Curves"
msgstr "曲线图"
@@ -14297,7 +14307,6 @@ msgstr "自定义分离符"
#. Label of a shortcut in the Home Workspace
#. Label of the customer (Link) field in DocType 'Delivery Note'
#. Label of the customer (Link) field in DocType 'Delivery Stop'
-#. Label of the customer (Link) field in DocType 'Item'
#. Label of the customer (Link) field in DocType 'Item Price'
#. Label of the customer (Link) field in DocType 'Material Request'
#. Label of the customer (Link) field in DocType 'Pick List'
@@ -14404,7 +14413,6 @@ msgstr "自定义分离符"
#: erpnext/stock/doctype/delivery_note/delivery_note.js:495
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
-#: erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
@@ -14493,8 +14501,8 @@ msgstr "客户地址"
msgid "Customer Addresses And Contacts"
msgstr "客户地址和联系方式"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:159
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:269
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:163
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
msgid "Customer Advances"
msgstr ""
@@ -14508,7 +14516,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:1243
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1166
#: erpnext/buying/doctype/purchase_order/purchase_order.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
msgid "Customer Contact"
@@ -14591,6 +14599,7 @@ msgstr "客户反馈"
#. Label of the customer_group (Link) field in DocType 'Maintenance Visit'
#. Label of the customer_group (Link) field in DocType 'Customer'
#. Label of the customer_group (Link) field in DocType 'Installation Note'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Label of the customer_group (Link) field in DocType 'Quotation'
#. Label of the customer_group (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -14613,7 +14622,7 @@ 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:1301
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1224
#: 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
@@ -14630,6 +14639,7 @@ msgstr "客户反馈"
#: erpnext/public/js/sales_trends_filters.js:26
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/installation_note/installation_note.json
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/inactive_customers/inactive_customers.py:77
@@ -14673,7 +14683,7 @@ msgstr "客户物料"
msgid "Customer Items"
msgstr "客户物料"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1292
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1215
msgid "Customer LPO"
msgstr "客户采购订单号"
@@ -14725,7 +14735,7 @@ 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:1232
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1155
#: 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
@@ -14831,7 +14841,7 @@ msgstr "受托加工材料"
msgid "Customer Provided Item Cost"
msgstr "客户提供物料成本"
-#: erpnext/setup/doctype/company/company.py:486
+#: erpnext/setup/doctype/company/company.py:490
msgid "Customer Service"
msgstr "客户服务"
@@ -14888,9 +14898,9 @@ msgstr "客户或物料"
msgid "Customer required for 'Customerwise Discount'"
msgstr "”客户折扣“需要指定客户"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1142
-#: erpnext/selling/doctype/sales_order/sales_order.py:438
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:436
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1147
+#: erpnext/selling/doctype/sales_order/sales_order.py:450
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:437
msgid "Customer {0} does not belong to project {1}"
msgstr "客户{0}不属于项目{1}"
@@ -15002,7 +15012,7 @@ msgstr "D - E"
msgid "DFS"
msgstr "DFS"
-#: erpnext/projects/doctype/project/project.py:679
+#: erpnext/projects/doctype/project/project.py:717
msgid "Daily Project Summary for {0}"
msgstr "{0}的每日项目摘要"
@@ -15093,7 +15103,7 @@ msgstr "出生日期不能晚于今天。"
msgid "Date of Commencement"
msgstr "开始日期"
-#: erpnext/setup/doctype/company/company.js:94
+#: erpnext/setup/doctype/company/company.js:110
msgid "Date of Commencement should be greater than Date of Incorporation"
msgstr "开始日期应晚于公司注册日期"
@@ -15319,7 +15329,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:1276
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1199
#: erpnext/controllers/sales_and_purchase_return.py:457
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:304
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:45
@@ -15347,13 +15357,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:1013
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
-#: erpnext/controllers/accounts_controller.py:2376
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1025
+#: erpnext/controllers/accounts_controller.py:2377
msgid "Debit To"
msgstr "借记科目(应收账款)"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1009
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1010
msgid "Debit To is required"
msgstr "借记科目必填"
@@ -15481,8 +15491,7 @@ msgstr "默认科目"
#. Label of the default_accounts_section (Section Break) field in DocType
#. 'Supplier'
-#. Label of the default_receivable_accounts (Section Break) field in DocType
-#. 'Customer'
+#. Label of the accounts (Table) field in DocType 'Customer'
#. Label of the default_settings (Section Break) field in DocType 'Company'
#. Label of the default_receivable_account (Section Break) field in DocType
#. 'Customer Group'
@@ -15508,14 +15517,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:315
+#: erpnext/setup/doctype/company/company.py:319
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:304
+#: erpnext/setup/doctype/company/company.py:308
msgid "Default Advance Received Account"
msgstr "默认预收账款科目"
@@ -15530,19 +15539,19 @@ msgstr ""
msgid "Default BOM"
msgstr "默认物料清单"
-#: erpnext/stock/doctype/item/item.py:505
+#: erpnext/stock/doctype/item/item.py:504
msgid "Default BOM ({0}) must be active for this item or its template"
msgstr "该物料或其模板物料的默认物料清单状态必须是生效"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2268
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2273
msgid "Default BOM for {0} not found"
msgstr "默认BOM {0}未找到"
-#: erpnext/controllers/accounts_controller.py:4121
+#: erpnext/controllers/accounts_controller.py:4109
msgid "Default BOM not found for FG Item {0}"
msgstr "未找到产成品{0}的默认物料清单"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2265
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2270
msgid "Default BOM not found for Item {0} and Project {1}"
msgstr "物料{0}和物料{1}找不到默认BOM"
@@ -15595,9 +15604,7 @@ msgid "Default Company"
msgstr "默认公司"
#. Label of the default_bank_account (Link) field in DocType 'Supplier'
-#. Label of the default_bank_account (Link) field in DocType 'Customer'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
msgid "Default Company Bank Account"
msgstr "默认公司银行账户"
@@ -15713,6 +15720,16 @@ msgstr "默认物料组"
msgid "Default Item Manufacturer"
msgstr "默认物料制造商"
+#. Label of the default_letter_head (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (DocType)"
+msgstr ""
+
+#. Label of the default_letter_head_report (Link) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Default Letter Head (Report)"
+msgstr ""
+
#. Label of the default_manufacturer_part_no (Data) field in DocType 'Item'
#: erpnext/stock/doctype/item/item.json
msgid "Default Manufacturer Part No"
@@ -15748,23 +15765,19 @@ msgid "Default Payment Request Message"
msgstr "默认收款申请消息"
#. Label of the payment_terms (Link) field in DocType 'Supplier'
-#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms (Link) field in DocType 'Company'
#. Label of the payment_terms (Link) field in DocType 'Customer Group'
#. Label of the payment_terms (Link) field in DocType 'Supplier Group'
#: erpnext/buying/doctype/supplier/supplier.json
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/setup/doctype/company/company.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
msgid "Default Payment Terms Template"
msgstr "默认付款条款模板"
-#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Selling Settings'
#. Label of the default_price_list (Link) field in DocType 'Customer Group'
#. Label of the default_price_list (Link) field in DocType 'Item Default'
-#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/selling_settings/selling_settings.json
#: erpnext/setup/doctype/customer_group/customer_group.json
#: erpnext/stock/doctype/item_default/item_default.json
@@ -15887,15 +15900,15 @@ msgstr "默认区域"
msgid "Default Unit of Measure"
msgstr "默认单位"
-#: erpnext/stock/doctype/item/item.py:1389
+#: erpnext/stock/doctype/item/item.py:1393
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 "物料{0}的默认计量单位不可直接更改,因已存在其他计量单位的交易。需取消关联单据或创建新物料"
-#: erpnext/stock/doctype/item/item.py:1372
+#: erpnext/stock/doctype/item/item.py:1376
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 "因为该物料已经有使用别的单位的交易记录存在了,不再允许直接修改其默认单位{0}了。如果需要请创建一个新物料,以使用不同的默认单位。"
-#: erpnext/stock/doctype/item/item.py:1020
+#: erpnext/stock/doctype/item/item.py:1024
msgid "Default Unit of Measure for Variant '{0}' must be same as in Template '{1}'"
msgstr "多规格物料的默认单位“{0}”必须与模板物料默认单位一致“{1}”"
@@ -15947,7 +15960,7 @@ msgstr ""
msgid "Default settings for your stock-related transactions"
msgstr "库存相关业务默认设置"
-#: erpnext/setup/doctype/company/company.js:191
+#: erpnext/setup/doctype/company/company.js:207
msgid "Default tax templates for sales, purchase and items are created."
msgstr "已创建销售、采购和物料的默认税务模板"
@@ -16038,6 +16051,12 @@ msgstr "定义项目类型。"
msgid "Defines the date after which the item can no longer be used in transactions or manufacturing"
msgstr ""
+#. Description of the 'Payment Terms Template' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer."
+msgstr ""
+
#. Name of a UOM
#: erpnext/setup/setup_wizard/data/uom_data.json
msgid "Dekagram/Litre"
@@ -16120,12 +16139,12 @@ msgstr "删除销售线索与地址"
#. Label of the delete_transactions_status (Select) field in DocType
#. 'Transaction Deletion Record'
-#: erpnext/setup/doctype/company/company.js:168
+#: erpnext/setup/doctype/company/company.js:184
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.json
msgid "Delete Transactions"
msgstr "删除业务单据(交易)"
-#: erpnext/setup/doctype/company/company.js:237
+#: erpnext/setup/doctype/company/company.js:253
msgid "Delete all the Transactions for this Company"
msgstr "删除所有交易本公司"
@@ -16146,8 +16165,8 @@ msgstr ""
msgid "Deleting {0} and all associated Common Code documents..."
msgstr "正在删除{0}及其所有关联通用代码单据..."
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1101
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1120
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
msgid "Deletion in Progress!"
msgstr "删除进行中!"
@@ -16258,11 +16277,11 @@ msgstr "已出货数量"
msgid "Delivered Qty (in Stock UOM)"
msgstr "已交付数量(库存计量单位)"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:597
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:599
msgid "Delivered Qty cannot be increased by more than {0} for item {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:590
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:592
msgid "Delivered Qty cannot be reduced by more than {0} for item {1}"
msgstr ""
@@ -16343,7 +16362,7 @@ msgstr "交付经理"
#: erpnext/accounts/doctype/pos_invoice_item/pos_invoice_item.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:129
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:415
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:36
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:45
#: erpnext/accounts/doctype/sales_invoice_item/sales_invoice_item.json
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.js:22
#: erpnext/accounts/report/delivered_items_to_be_billed/delivered_items_to_be_billed.py:21
@@ -16403,11 +16422,11 @@ msgstr "交货单打包物料"
msgid "Delivery Note Trends"
msgstr "销售出库趋势"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1403
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1417
msgid "Delivery Note {0} is not submitted"
msgstr "销售出库{0}未提交"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1296
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1219
#: erpnext/stock/doctype/delivery_trip/delivery_trip.js:75
msgid "Delivery Notes"
msgstr "销售出库"
@@ -16493,10 +16512,6 @@ msgstr "出货仓"
msgid "Delivery to"
msgstr "交货目的地"
-#: erpnext/selling/doctype/sales_order/sales_order.py:457
-msgid "Delivery warehouse required for stock item {0}"
-msgstr "物料{0}为库存管理物料,且在主数据中未定义默认仓库,请在销售订单行填写出货仓库信息"
-
#. Label of the sales_orders_and_material_requests_tab (Tab Break) field in
#. DocType 'Master Production Schedule'
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.json
@@ -16616,8 +16631,8 @@ msgstr "折旧额"
#. Label of the depreciation_tab (Tab Break) field in DocType 'Asset'
#. Group in Asset's connections
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:105
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:176
+#: 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:162
#: erpnext/assets/doctype/asset/asset.json
@@ -16710,7 +16725,7 @@ msgstr "折旧选项"
msgid "Depreciation Posting Date"
msgstr "折旧过账日期"
-#: erpnext/assets/doctype/asset/asset.js:917
+#: erpnext/assets/doctype/asset/asset.js:919
msgid "Depreciation Posting Date cannot be before Available-for-use Date"
msgstr "折旧过账日期不可早于可用日期"
@@ -16868,15 +16883,15 @@ msgstr "差异(借方-贷方)"
msgid "Difference Account"
msgstr "差异科目"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:782
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:172
msgid "Difference Account in Items Table"
msgstr "物料表中的差异科目"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:771
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:160
msgid "Difference Account must be a Asset/Liability type account (Temporary Opening), since this Stock Entry is an Opening Entry"
msgstr "因本库存凭证为期初凭证,差异科目必须为资产/负债类科目(临时期初)。"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:991
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:994
msgid "Difference Account must be a Asset/Liability type account, since this Stock Reconciliation is an Opening Entry"
msgstr "因为此库存调账是开账凭证,差异科目必须是资产/负债类科目,"
@@ -16988,15 +17003,15 @@ msgstr "维度"
msgid "Direct Expense"
msgstr "直接费用"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:82
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:141
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:86
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:146
msgid "Direct Expenses"
msgstr "直接费用"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:141
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:237
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
msgid "Direct Income"
msgstr "直接收入"
@@ -17077,6 +17092,11 @@ msgstr "禁用小数精度尾差"
msgid "Disable Serial No And Batch Selector"
msgstr "禁用序列号与批号选择"
+#. Label of the disable_sdbnb_in_sr (Check) field in DocType 'Company'
+#: erpnext/setup/doctype/company/company.json
+msgid "Disable Stock Delivered But Not Billed in Sales Return"
+msgstr ""
+
#. Label of the disable_transaction_threshold (Check) field in DocType 'Tax
#. Withholding Category'
#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.json
@@ -17113,11 +17133,11 @@ msgstr "已禁用仓库{0}不可用于此交易"
msgid "Disabled items cannot be selected in any transaction."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:904
+#: erpnext/controllers/accounts_controller.py:905
msgid "Disabled pricing rules since this {} is an internal transfer"
msgstr "因{}为内部调拨,已禁用定价规则"
-#: erpnext/controllers/accounts_controller.py:918
+#: erpnext/controllers/accounts_controller.py:919
msgid "Disabled tax included prices since this {} is an internal transfer"
msgstr "因{}为内部调拨,已禁用含税价格"
@@ -17133,7 +17153,7 @@ 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:1074
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1056
#: erpnext/stock/doctype/stock_entry/stock_entry.js:370
#: erpnext/stock/doctype/stock_entry/stock_entry.js:413
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -17141,15 +17161,15 @@ msgstr "不自动获取现有库存数量"
msgid "Disassemble"
msgstr "工单拆解"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:232
+#: erpnext/manufacturing/doctype/work_order/work_order.js:213
msgid "Disassemble Order"
msgstr "工单拆解"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2372
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:104
msgid "Disassemble Qty cannot be less than or equal to 0."
msgstr "拆解数量不能小于或等于 0。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:463
+#: erpnext/manufacturing/doctype/work_order/work_order.js:445
msgid "Disassemble Qty cannot be less than or equal to 0 ."
msgstr ""
@@ -17436,7 +17456,7 @@ msgstr "自主裁量原因"
msgid "Dislikes"
msgstr "不喜欢"
-#: erpnext/setup/doctype/company/company.py:480
+#: erpnext/setup/doctype/company/company.py:484
msgid "Dispatch"
msgstr "调度"
@@ -17517,7 +17537,7 @@ msgstr ""
msgid "Disposal Date"
msgstr "处置日期"
-#: erpnext/assets/doctype/asset/depreciation.py:836
+#: erpnext/assets/doctype/asset/depreciation.py:838
msgid "Disposal date {0} cannot be before {1} date {2} of the asset."
msgstr "处置日期{0}不得早于资产的{1}日期{2}。"
@@ -17631,8 +17651,8 @@ msgstr "分摊名称"
msgid "Distributor"
msgstr "分销商"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:191
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:338
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:195
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
msgid "Dividends Paid"
msgstr "股利支付"
@@ -17694,7 +17714,7 @@ msgstr "不要在货币旁显示货币代号,例如$等。"
msgid "Do not update variants on save"
msgstr "不在保存时更新多规格物料"
-#: erpnext/assets/doctype/asset/asset.js:955
+#: erpnext/assets/doctype/asset/asset.js:957
msgid "Do you really want to restore this scrapped asset?"
msgstr "真要恢复该已报废资产?"
@@ -17718,7 +17738,7 @@ msgstr "你想通过电子邮件通知所有的客户?"
msgid "Do you want to submit the material request"
msgstr "创建的物料需求直接提交? 选否只保存(草稿状态)"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:111
+#: erpnext/manufacturing/doctype/job_card/job_card.js:108
msgid "Do you want to submit the stock entry?"
msgstr "是否确认提交库存凭证?"
@@ -17785,11 +17805,11 @@ msgstr ""
msgid "Document Type "
msgstr "文档类型 "
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:65
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:66
msgid "Document Type already used as a dimension"
msgstr "文档类型已作为维度使用"
-#: erpnext/setup/install.py:198
+#: erpnext/setup/install.py:230
msgid "Documentation"
msgstr "用户操作手册"
@@ -17952,12 +17972,6 @@ msgstr "驾照类别"
msgid "Driving License Category"
msgstr "驾照类别"
-#. Label of the drop_ar_procedures (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drop Procedures"
-msgstr "删除存储过程"
-
#. Label of the drop_ship (Section Break) field in DocType 'POS Invoice Item'
#. Label of the drop_ship (Section Break) field in DocType 'Sales Invoice Item'
#. Label of the drop_ship (Tab Break) field in DocType 'Purchase Order'
@@ -17978,12 +17992,6 @@ msgstr ""
msgid "Drop some files here, or click to select files"
msgstr ""
-#. Description of the 'Drop Procedures' (Button) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Drops existing SQL Procedures and Function setup by Accounts Receivable report"
-msgstr "删除应收账款报告设置的现有SQL存储过程和函数"
-
#: erpnext/accounts/party.py:700
msgid "Due Date cannot be after {0}"
msgstr "到期日不可晚于{0}"
@@ -18142,8 +18150,8 @@ msgstr "工期(天)"
msgid "Duration in Days"
msgstr "持续时间天数"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:170
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:286
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:174
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:291
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Duties and Taxes"
msgstr "关税与税项"
@@ -18226,7 +18234,7 @@ msgstr ""
msgid "Each Transaction"
msgstr "每笔交易"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:184
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:217
msgid "Earliest"
msgstr "最早"
@@ -18340,6 +18348,10 @@ msgstr "需要指定目标数量和金额"
msgid "Either target qty or target amount is mandatory."
msgstr "需要指定目标数量和金额。"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:675
+msgid "Elapsed Time"
+msgstr ""
+
#. Option for the 'Fuel Type' (Select) field in DocType 'Vehicle'
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Electric"
@@ -18359,8 +18371,8 @@ msgstr "电力费用"
msgid "Electricity down"
msgstr "停电"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:48
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:82
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
msgid "Electronic Equipment"
msgstr "电子设备"
@@ -18564,8 +18576,8 @@ msgstr "员工预支"
msgid "Employee Advances"
msgstr "员工预支"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:184
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
+#: 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 ""
@@ -18648,7 +18660,7 @@ msgstr ""
msgid "Employee {0} does not belong to the company {1}"
msgstr "员工{0}不属于公司{1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:376
+#: erpnext/manufacturing/doctype/job_card/job_card.py:377
msgid "Employee {0} is currently working on another workstation. Please assign another employee."
msgstr "员工{0}正在其他工作中心工作,请指派其他员工"
@@ -18664,7 +18676,7 @@ msgstr "员工"
msgid "Empty"
msgstr "空"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:757
msgid "Empty To Delete List"
msgstr ""
@@ -18695,7 +18707,7 @@ msgstr "启用预约排程"
msgid "Enable Auto Email"
msgstr "自动发送电子邮件"
-#: erpnext/stock/doctype/item/item.py:1181
+#: erpnext/stock/doctype/item/item.py:1185
msgid "Enable Auto Re-Order"
msgstr "启用自动重新排序"
@@ -18861,12 +18873,6 @@ msgstr ""
msgid "Enable discount accounting for selling"
msgstr ""
-#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
-#. DocType 'Item'
-#: erpnext/stock/doctype/item/item.json
-msgid "Enable for drop shipping - supplier delivers directly to the customer without passing through your warehouse."
-msgstr ""
-
#. Description of the 'Include Item In Manufacturing' (Check) field in DocType
#. 'Item'
#: erpnext/stock/doctype/item/item.json
@@ -18995,8 +19001,8 @@ msgstr "结束日期不能早于开始日期。"
#. Label of the end_time (Time) field in DocType 'Stock Reposting Settings'
#. Label of the end_time (Time) field in DocType 'Service Day'
#. Label of the end_time (Datetime) field in DocType 'Call Log'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:389
-#: erpnext/manufacturing/doctype/job_card/job_card.js:459
+#: erpnext/manufacturing/doctype/job_card/job_card.js:332
+#: erpnext/manufacturing/doctype/job_card/job_card.js:400
#: erpnext/manufacturing/doctype/workstation_working_hour/workstation_working_hour.json
#: erpnext/stock/doctype/stock_reposting_settings/stock_reposting_settings.json
#: erpnext/support/doctype/service_day/service_day.json
@@ -19095,8 +19101,8 @@ msgstr "手动输入"
msgid "Enter Serial Nos"
msgstr "输入序列号"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:416
-#: erpnext/manufacturing/doctype/job_card/job_card.js:485
+#: erpnext/manufacturing/doctype/job_card/job_card.js:361
+#: erpnext/manufacturing/doctype/job_card/job_card.js:423
#: erpnext/manufacturing/doctype/workstation/workstation.js:312
msgid "Enter Value"
msgstr "输入值"
@@ -19121,7 +19127,7 @@ msgstr "输入节假日列表名称"
msgid "Enter amount to be redeemed."
msgstr "输入要兑换的金额"
-#: erpnext/stock/doctype/item/item.js:1146
+#: erpnext/stock/doctype/item/item.js:1130
msgid "Enter an Item Code, the name will be auto-filled the same as Item Code on clicking inside the Item Name field."
msgstr "输入物料代码,点击物料名称字段将自动填充相同名称"
@@ -19133,7 +19139,7 @@ msgstr "输入客户邮箱"
msgid "Enter customer's phone number"
msgstr "输入客户电话号码"
-#: erpnext/assets/doctype/asset/asset.js:926
+#: erpnext/assets/doctype/asset/asset.js:928
msgid "Enter date to scrap asset"
msgstr "输入资产报废日期"
@@ -19177,7 +19183,7 @@ msgstr "提交前输入受益人名称"
msgid "Enter the name of the bank or lending institution before submitting."
msgstr "提交前输入银行或贷款机构名称"
-#: erpnext/stock/doctype/item/item.js:1172
+#: erpnext/stock/doctype/item/item.js:1156
msgid "Enter the opening stock units."
msgstr "输入期初库存数量"
@@ -19185,7 +19191,7 @@ msgstr "输入期初库存数量"
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:1236
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1218
msgid "Enter the quantity to manufacture. Raw material Items will be fetched only when this is set."
msgstr "输入生产数量。仅当设置此值时才会获取原材料"
@@ -19197,8 +19203,8 @@ msgstr "输入{0}金额"
msgid "Entertainment & Leisure"
msgstr "娱乐休闲"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:110
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:186
msgid "Entertainment Expenses"
msgstr "娱乐费用"
@@ -19222,8 +19228,8 @@ msgstr "凭证类型"
#. Option for the 'Root Type' (Select) field in DocType 'Account Category'
#. Option for the 'Root Type' (Select) field in DocType 'Ledger Merge'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:189
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:332
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:193
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:337
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/report/account_balance/account_balance.js:29
@@ -19284,7 +19290,7 @@ msgstr "过账折旧分录时出错"
msgid "Error while processing deferred accounting for {0}"
msgstr "处理{0}的延迟记账时出错"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:554
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:597
msgid "Error while reposting item valuation"
msgstr "物料成本价追溯调整出错"
@@ -19296,7 +19302,7 @@ msgstr "错误:此资产已登记 {0} 个折旧期。\n"
"\t\t\t\t\t`折旧开始`日期必须至少在 `可供使用`日期之后 {1} 个期。\n"
"\t\t\t\t\t请相应地更正日期。"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:969
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:971
msgid "Error: {0} is mandatory field"
msgstr "错误:{0}是必填字段"
@@ -19342,7 +19348,7 @@ msgstr "工厂交货"
msgid "Example URL"
msgstr "示例URL"
-#: erpnext/stock/doctype/item/item.py:1112
+#: erpnext/stock/doctype/item/item.py:1116
msgid "Example of a linked document: {0}"
msgstr "关联文档示例:{0}"
@@ -19361,7 +19367,7 @@ msgstr "例如:ABCD.##### 如果已设置批号模板且单据中未手工输
msgid "Example: If the transaction amount is 200, then this will be calculated as {} = {}"
msgstr ""
-#: erpnext/stock/stock_ledger.py:2334
+#: erpnext/stock/stock_ledger.py:2300
msgid "Example: Serial No {0} reserved in {1}."
msgstr "示例:序列号{0}在{1}中预留"
@@ -19371,7 +19377,7 @@ msgstr "示例:序列号{0}在{1}中预留"
msgid "Exception Budget Approver Role"
msgstr "例外预算审批人角色"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:926
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:47
msgid "Excess Disassembly"
msgstr ""
@@ -19379,7 +19385,7 @@ msgstr ""
msgid "Excess Materials Consumed"
msgstr "超量消耗物料"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1133
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1141
msgid "Excess Transfer"
msgstr "超发"
@@ -19410,17 +19416,17 @@ msgstr "汇兑损益"
#. Invoice Advance'
#. Label of the exchange_gain_loss (Currency) field in DocType 'Sales Invoice
#. Advance'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:222
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/purchase_invoice_advance/purchase_invoice_advance.json
#: erpnext/accounts/doctype/sales_invoice_advance/sales_invoice_advance.json
-#: erpnext/setup/doctype/company/company.py:673
+#: erpnext/setup/doctype/company/company.py:678
msgid "Exchange Gain/Loss"
msgstr "汇兑损益"
-#: erpnext/controllers/accounts_controller.py:1777
-#: erpnext/controllers/accounts_controller.py:1862
+#: erpnext/controllers/accounts_controller.py:1778
+#: erpnext/controllers/accounts_controller.py:1863
msgid "Exchange Gain/Loss amount has been booked through {0}"
msgstr "自动生成了汇兑损益日记帐凭证{0}"
@@ -19559,7 +19565,7 @@ msgstr "行政助理"
msgid "Executive Search"
msgstr "猎头"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:67
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:79
msgid "Exempt Supplies"
msgstr "免税供应"
@@ -19646,7 +19652,7 @@ msgstr "预计结束日期"
msgid "Expected Delivery Date"
msgstr "预计交货日期"
-#: erpnext/selling/doctype/sales_order/sales_order.py:419
+#: erpnext/selling/doctype/sales_order/sales_order.py:433
msgid "Expected Delivery Date should be after Sales Order Date"
msgstr "预计出货日应晚于销售订单日"
@@ -19730,7 +19736,7 @@ msgstr "残值"
msgid "Expense"
msgstr "费用"
-#: erpnext/controllers/stock_controller.py:947
+#: erpnext/controllers/stock_controller.py:948
msgid "Expense / Difference account ({0}) must be a 'Profit or Loss' account"
msgstr "费用/差异科目({0})必须是一个“损益”类科目"
@@ -19808,23 +19814,23 @@ msgstr "必须为物料{0}指定费用科目"
msgid "Expense for this item will be recognized over a period of months. Eg: prepaid insurance or annual software license"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:81
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:85
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:145
msgid "Expenses"
msgstr "费用"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:88
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:148
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
#: erpnext/accounts/report/account_balance/account_balance.js:49
msgid "Expenses Included In Asset Valuation"
msgstr "结转资产的费用"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:92
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:153
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
#: erpnext/accounts/report/account_balance/account_balance.js:51
msgid "Expenses Included In Valuation"
msgstr "结转库存的费用"
@@ -19903,7 +19909,7 @@ msgstr "外部就职经历"
msgid "Extra Consumed Qty"
msgstr "额外消耗数量"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:263
+#: erpnext/manufacturing/doctype/job_card/job_card.py:264
msgid "Extra Job Card Quantity"
msgstr "生产任务单数量超计划数量"
@@ -20040,7 +20046,7 @@ msgstr "创建公司失败"
msgid "Failed to setup defaults"
msgstr "设置默认值失败"
-#: erpnext/setup/doctype/company/company.py:855
+#: erpnext/setup/doctype/company/company.py:860
msgid "Failed to setup defaults for country {0}. Please contact support."
msgstr "国家{0}默认设置失败,请联系支持"
@@ -20158,6 +20164,11 @@ msgstr "带出关联字段"
msgid "Fetch exploded BOM (including sub-assemblies)"
msgstr "选物料清单底层物料(括子装配件)"
+#. Description of the 'Price List' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Fetched automatically on sales orders and invoices for this customer."
+msgstr ""
+
#: erpnext/selling/page/point_of_sale/pos_item_details.js:457
msgid "Fetched only {0} available serial numbers."
msgstr "仅获取到{0}个可用序列号"
@@ -20195,21 +20206,29 @@ msgstr "字段映射"
msgid "Field in Bank Transaction"
msgstr "银行交易流水字段"
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:95
+msgid "Fieldname Conflict"
+msgstr ""
+
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:87
+msgid "Fieldname {0} already exists in the following doctypes: {1}. A separate dimension field will not be added to these doctypes. GL Entries will use the value of the existing field as the dimension value."
+msgstr ""
+
#. Description of the 'Do not update variants on save' (Check) field in DocType
#. 'Item Variant Settings'
#: erpnext/stock/doctype/item_variant_settings/item_variant_settings.json
msgid "Fields will be copied over only at time of creation."
msgstr "字段将仅在创建时复制。"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1068
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1069
msgid "File does not belong to this Transaction Deletion Record"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1062
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1063
msgid "File not found"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1076
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1077
msgid "File not found on server"
msgstr ""
@@ -20417,9 +20436,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:902
-#: erpnext/manufacturing/doctype/work_order/work_order.js:917
-#: erpnext/manufacturing/doctype/work_order/work_order.js:926
+#: erpnext/manufacturing/doctype/work_order/work_order.js:884
+#: erpnext/manufacturing/doctype/work_order/work_order.js:899
+#: erpnext/manufacturing/doctype/work_order/work_order.js:908
msgid "Finish"
msgstr "完成"
@@ -20476,15 +20495,15 @@ msgstr "成品物料数量"
msgid "Finished Good Item Quantity"
msgstr "成品物料数量"
-#: erpnext/controllers/accounts_controller.py:4107
+#: erpnext/controllers/accounts_controller.py:4095
msgid "Finished Good Item is not specified for service item {0}"
msgstr "服务物料{0}未指定产成品物料"
-#: erpnext/controllers/accounts_controller.py:4124
+#: erpnext/controllers/accounts_controller.py:4112
msgid "Finished Good Item {0} Qty can not be zero"
msgstr "产成品物料{0}数量不可为零"
-#: erpnext/controllers/accounts_controller.py:4118
+#: erpnext/controllers/accounts_controller.py:4106
msgid "Finished Good Item {0} must be a sub-contracted item"
msgstr "产成品物料{0}必须为外协物料"
@@ -20530,7 +20549,7 @@ msgid "Finished Good {0} must be a sub-contracted item."
msgstr "产成品{0}必须为外协物料"
#: erpnext/selling/doctype/sales_order/sales_order.js:1475
-#: erpnext/setup/doctype/company/company.py:385
+#: erpnext/setup/doctype/company/company.py:389
msgid "Finished Goods"
msgstr "成品"
@@ -20571,7 +20590,7 @@ msgstr "成品仓"
msgid "Finished Goods based Operating Cost"
msgstr "启用计件成本"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1749
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:870
msgid "Finished Item {0} does not match with Work Order {1}"
msgstr "产成品{0}与工单{1}不匹配"
@@ -20712,6 +20731,7 @@ msgstr "固定金额"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
#: erpnext/accounts/report/account_balance/account_balance.js:52
+#: erpnext/stock/doctype/item/item_list.js:20
msgid "Fixed Asset"
msgstr "固定资产"
@@ -20730,7 +20750,7 @@ msgstr "固定资产科目"
msgid "Fixed Asset Defaults"
msgstr "固定资产默认值"
-#: erpnext/stock/doctype/item/item.py:373
+#: erpnext/stock/doctype/item/item.py:372
msgid "Fixed Asset Item must be a non-stock item."
msgstr "固定资产物料必须是一个非库存物料。"
@@ -20749,8 +20769,8 @@ msgstr "固定资产周转率"
msgid "Fixed Asset item {0} cannot be used in BOMs."
msgstr "固定资产物料{0}不可用于物料清单。"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:43
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:47
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:81
msgid "Fixed Assets"
msgstr "固定资产"
@@ -20823,7 +20843,7 @@ msgstr "遵循自然月"
msgid "Following Material Requests have been raised automatically based on Item's re-order level"
msgstr "已根据物料的重订货点设置自动生成了以下物料需求"
-#: erpnext/selling/doctype/customer/customer.py:843
+#: erpnext/selling/doctype/customer/customer.py:845
msgid "Following fields are mandatory to create address:"
msgstr "创建地址必须填写以下字段:"
@@ -20880,7 +20900,7 @@ msgstr "公司"
msgid "For Item"
msgstr "物料"
-#: erpnext/controllers/stock_controller.py:1606
+#: erpnext/controllers/stock_controller.py:1607
msgid "For Item {0} cannot be received more than {1} qty against the {2} {3}"
msgstr "基于 {2} {3} 物料 {0} 收货数量不能超过 {1}"
@@ -20890,7 +20910,7 @@ msgid "For Job Card"
msgstr "生产任务单"
#. Label of the for_operation (Link) field in DocType 'Job Card'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:529
+#: erpnext/manufacturing/doctype/job_card/job_card.js:465
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "For Operation"
msgstr "工序"
@@ -20911,17 +20931,13 @@ msgstr "价格表"
msgid "For Production"
msgstr "生产"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:893
-msgid "For Quantity (Manufactured Qty) is mandatory"
-msgstr "数量(制造数量)字段必填"
-
#. Label of the material_request_planning (Section Break) field in DocType
#. 'Production Plan'
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
msgid "For Raw Materials"
msgstr "针对原材料"
-#: erpnext/controllers/accounts_controller.py:1442
+#: erpnext/controllers/accounts_controller.py:1443
msgid "For Return Invoices with Stock effect, '0' qty Items are not allowed. Following rows are affected: {0}"
msgstr "库存影响的退货发票中不允许零数量物料,受影响行:{0}"
@@ -20949,11 +20965,11 @@ msgstr "仓库"
msgid "For Work Order"
msgstr "工单"
-#: erpnext/controllers/status_updater.py:288
+#: erpnext/controllers/status_updater.py:290
msgid "For an item {0}, quantity must be negative number"
msgstr "物料{0}的数量必须是负数"
-#: erpnext/controllers/status_updater.py:285
+#: erpnext/controllers/status_updater.py:287
msgid "For an item {0}, quantity must be positive number"
msgstr "物料 {0} 其数量必须为正数"
@@ -20991,7 +21007,7 @@ msgstr "单个供应商"
msgid "For item {0} , only {1} asset have been created or linked to {2} . Please create or link {3} more asset with the respective document."
msgstr "物料{0} 仅创建/关联了{1} 项资产至{2} ,请创建或关联剩余{3} 项资产。"
-#: erpnext/controllers/status_updater.py:298
+#: erpnext/controllers/status_updater.py:300
msgid "For item {0}, rate must be a positive number. To Allow negative rates, enable {1} in {2}"
msgstr "物料{0}的税率必须为正数。允许负数需在{2}启用{1}"
@@ -21005,7 +21021,7 @@ msgstr ""
msgid "For operation {0} at row {1}, please add raw materials or set a BOM against it."
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2653
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2654
msgid "For operation {0}: Quantity ({1}) can not be greater than pending quantity({2})"
msgstr "工序{0}:数量({1})不得超过待处理数量({2})"
@@ -21022,7 +21038,7 @@ msgstr ""
msgid "For projected and forecast quantities, the system will consider all child warehouses under the selected parent warehouse."
msgstr "对于预计和预测数量,系统将考量所选父仓库下的所有子仓库。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1781
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:902
msgid "For quantity {0} should not be greater than allowed quantity {1}"
msgstr "成品数量 {0} 不能大于剩余可入库数量 {1}"
@@ -21031,12 +21047,12 @@ msgstr "成品数量 {0} 不能大于剩余可入库数量 {1}"
msgid "For reference"
msgstr "供参考"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1534
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1536
#: erpnext/public/js/controllers/accounts.js:204
msgid "For row {0} in {1}. To include {2} in Item rate, rows {3} must also be included"
msgstr "对于{1}的第{0}行。要在物料单价中包括{2},也必须包括第{3}行"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1726
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1728
msgid "For row {0}: Enter Planned Qty"
msgstr "请在第{0}行输入计划数量"
@@ -21055,7 +21071,7 @@ msgstr "对于'应用于其他'条件,字段{0}为必填项"
msgid "For the convenience of customers, these codes can be used in print formats like Invoices and Delivery Notes"
msgstr "为方便客户,这些代码可以在打印格式(如发票和销售出库)中使用"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1064
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:775
msgid "For the item {0}, the consumed quantity should be {1} according to the BOM {2}."
msgstr ""
@@ -21102,11 +21118,6 @@ msgstr "预测"
msgid "Forecast Demand"
msgstr "预测需求"
-#. Label of the forecast_qty (Float) field in DocType 'Sales Forecast Item'
-#: erpnext/manufacturing/doctype/sales_forecast_item/sales_forecast_item.json
-msgid "Forecast Qty"
-msgstr "预测数量"
-
#. Label of a Workspace Sidebar Item
#: erpnext/workspace_sidebar/manufacturing.json
msgid "Forecasting"
@@ -21152,7 +21163,7 @@ msgstr "论坛帖子"
msgid "Forum URL"
msgstr "论坛URL"
-#: erpnext/setup/install.py:210
+#: erpnext/setup/install.py:242
msgid "Frappe School"
msgstr ""
@@ -21197,8 +21208,8 @@ msgstr "定价规则{0}价格/产品折扣选了产品,需维护免费物料
msgid "Freeze Stocks Older Than (Days)"
msgstr "库存变动锁账天数"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:107
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:185
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
msgid "Freight and Forwarding Charges"
msgstr "运费"
@@ -21632,8 +21643,8 @@ msgstr "已全额付款"
msgid "Furlong"
msgstr "弗隆"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:52
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
msgid "Furniture and Fixtures"
msgstr "家具及固定装置"
@@ -21650,13 +21661,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:1288
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1211
#: 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:1287
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1210
msgid "Future Payment Ref"
msgstr "报表日后付款参考"
@@ -21664,7 +21675,7 @@ msgstr "报表日后付款参考"
msgid "Future Payments"
msgstr "未来付款"
-#: erpnext/assets/doctype/asset/depreciation.py:386
+#: erpnext/assets/doctype/asset/depreciation.py:387
msgid "Future date is not allowed"
msgstr "不允许未来日期"
@@ -21749,9 +21760,9 @@ msgstr "已记账损益"
msgid "Gain/Loss from Revaluation"
msgstr "重估损益"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
-#: erpnext/setup/doctype/company/company.py:681
+#: 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:686
msgid "Gain/Loss on Asset Disposal"
msgstr "资产处置收益/损失"
@@ -21924,7 +21935,7 @@ msgstr "获取余额"
msgid "Get Current Stock"
msgstr "刷新当前库存"
-#: erpnext/selling/doctype/customer/customer.js:189
+#: erpnext/selling/doctype/customer/customer.js:190
msgid "Get Customer Group Details"
msgstr "获取客户组信息"
@@ -21982,7 +21993,7 @@ msgstr "分配可拣货仓"
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:119
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.js:142
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
-#: erpnext/public/js/controllers/buying.js:330
+#: erpnext/public/js/controllers/buying.js:325
#: erpnext/selling/doctype/quotation/quotation.js:182
#: erpnext/selling/doctype/sales_order/sales_order.js:201
#: erpnext/selling/doctype/sales_order/sales_order.js:1254
@@ -22021,7 +22032,7 @@ msgstr "从物料清单选物料"
msgid "Get Items from Material Requests against this Supplier"
msgstr "从该供应商的物料请求获取物料"
-#: erpnext/public/js/controllers/buying.js:607
+#: erpnext/public/js/controllers/buying.js:602
msgid "Get Items from Product Bundle"
msgstr "从套件选物料"
@@ -22195,7 +22206,7 @@ msgstr "绩效指标"
msgid "Goods"
msgstr "货物"
-#: erpnext/setup/doctype/company/company.py:386
+#: erpnext/setup/doctype/company/company.py:390
#: erpnext/stock/doctype/stock_entry/stock_entry_list.js:21
msgid "Goods In Transit"
msgstr "在途物料"
@@ -22204,7 +22215,7 @@ msgstr "在途物料"
msgid "Goods Transferred"
msgstr "已调拨"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2299
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1387
msgid "Goods are already received against the outward entry {0}"
msgstr "出库移动物料{0}已收货"
@@ -22387,7 +22398,7 @@ msgstr ""
msgid "Grant Commission"
msgstr "付佣金"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:888
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:890
msgid "Greater Than Amount"
msgstr "大于金额"
@@ -22830,7 +22841,7 @@ msgstr "若业务存在季节性波动,可帮助您将预算/目标分摊至
msgid "Here are the error logs for the aforementioned failed depreciation entries: {0}"
msgstr "上述失败折旧分录的错误日志如下:{0}"
-#: erpnext/stock/stock_ledger.py:2056
+#: erpnext/stock/stock_ledger.py:2022
msgid "Here are the options to proceed:"
msgstr "选择以下方式继续"
@@ -22858,7 +22869,7 @@ msgstr "此处每周休息日已根据先前选择预填充,您可新增行单
msgid "Hertz"
msgstr "赫兹"
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:556
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:599
msgid "Hi,"
msgstr "您好:"
@@ -23057,7 +23068,7 @@ msgstr ""
msgid "Hrs"
msgstr "时长(小时)"
-#: erpnext/setup/doctype/company/company.py:492
+#: erpnext/setup/doctype/company/company.py:496
msgid "Human Resources"
msgstr "人力资源"
@@ -23226,6 +23237,12 @@ msgstr "如勾选,收付款凭证中付款金额就含税"
msgid "If checked, the tax amount will be considered as already included in the Print Rate / Print Amount"
msgstr "如果勾选,打印的单价/总额就含税"
+#. Description of the 'Delivered by Supplier (Drop Ship)' (Check) field in
+#. DocType 'Item'
+#: erpnext/stock/doctype/item/item.json
+msgid "If checked, this item is treated as drop-shipped by default in Sales Orders, Sales Invoices and Purchase Orders. The flag can be overridden on each transaction line."
+msgstr ""
+
#: erpnext/public/js/setup_wizard.js:56
msgid "If checked, we will create demo data for you to explore the system. This demo data can be erased later."
msgstr "勾选后系统会为您生成供学习探索的样板数据,样板数据使用过后可被清除"
@@ -23446,7 +23463,7 @@ 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:2066
+#: erpnext/stock/stock_ledger.py:2032
msgid "If not, you can Cancel / Submit this entry"
msgstr "请选择以下方式中的一种之后"
@@ -23472,13 +23489,18 @@ msgstr ""
msgid "If selected Pricing Rule is made for 'Rate', it will overwrite Price List. Pricing Rule rate is the final rate, so no further discount should be applied. Hence, in transactions like Sales Order, Purchase Order etc, it will be fetched in 'Rate' field, rather than 'Price List Rate' field."
msgstr "若所选定价规则针对'费率'设置,其将覆盖价格表。定价规则费率为最终费率,不应再应用其他折扣。因此,在销售订单、采购订单等交易中,该费率将填入'费率'字段而非'价格表费率'字段。"
+#. Description of the 'Default Accounts' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "If set, accounting entries for this customer will post to these accounts instead of the company default."
+msgstr ""
+
#. Description of the 'Fixed Outgoing Email Account' (Link) field in DocType
#. 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
msgid "If set, the system does not use the user's Email or the standard outgoing Email account for sending request for quotations."
msgstr "若设置此项,系统将不使用用户的邮件地址或标准外发邮件账户发送询价请求。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1269
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1251
msgid "If the BOM results in Scrap material, the Scrap Warehouse needs to be selected."
msgstr "若物料清单产生废料,需选择废品仓库"
@@ -23487,7 +23509,7 @@ msgstr "若物料清单产生废料,需选择废品仓库"
msgid "If the account is frozen, entries are allowed to restricted users."
msgstr "如果科目被冻结,只允许有编辑冻结凭证角色的用户过账"
-#: erpnext/stock/stock_ledger.py:2059
+#: erpnext/stock/stock_ledger.py:2025
msgid "If the item is transacting as a Zero Valuation Rate item in this entry, please enable 'Allow Zero Valuation Rate' in the {0} Item table."
msgstr "如在交易中允许物料成本价为0,请在明细行中勾选允许成本价为0"
@@ -23497,7 +23519,7 @@ msgstr "如在交易中允许物料成本价为0,请在明细行中勾选允
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:1288
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1270
msgid "If the selected BOM has Operations mentioned in it, the system will fetch all Operations from BOM, these values can be changed."
msgstr "若所选物料清单包含工序,系统将从中获取所有工序,这些值可修改"
@@ -23574,7 +23596,7 @@ msgstr "如果积分无失效日期,请将失效日期设为空或0。"
msgid "If yes, then this warehouse will be used to store rejected materials"
msgstr "如勾选则该仓库是检验不合格待退货的拒收仓"
-#: erpnext/stock/doctype/item/item.js:1158
+#: erpnext/stock/doctype/item/item.js:1142
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 "若在库存中维护此物料,ERPNext将为每笔交易创建库存分类账分录"
@@ -23588,7 +23610,7 @@ msgstr "可以手工勾选匹配,否则按时间先后自动匹配"
msgid "If you still want to proceed, please disable 'Skip Available Sub Assembly Items' checkbox."
msgstr "若仍要继续,请取消勾选'跳过可用子装配件'复选框"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1844
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1846
msgid "If you still want to proceed, please enable {0}."
msgstr "请勾选{0}后继续"
@@ -23672,7 +23694,7 @@ msgstr "忽略汇率重估及损益日记账"
msgid "Ignore Existing Ordered Qty"
msgstr "忽略已采购数量"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1836
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1838
msgid "Ignore Existing Projected Quantity"
msgstr "忽略可用数量"
@@ -23759,12 +23781,12 @@ 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:267
+#: erpnext/stock/doctype/item/item.py:266
msgid "Image in the description has been removed. To disable this behavior, uncheck \"{0}\" in {1}."
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:135
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:139
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:234
msgid "Impairment"
msgstr "减值"
@@ -23922,7 +23944,7 @@ msgstr "在生产中"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:112
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:82
#: erpnext/stock/report/stock_balance/stock_balance.py:550
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:316
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:317
msgid "In Qty"
msgstr "收到数量"
@@ -24046,7 +24068,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:1191
+#: erpnext/stock/doctype/item/item.js:1175
msgid "In this section, you can define Company-wide transaction-related defaults for this Item. Eg. Default Warehouse, Default Price List, Supplier, etc."
msgstr "此处可定义此物料在公司范围内的交易默认值,如默认仓库、价格表、供应商等"
@@ -24277,8 +24299,8 @@ msgstr "包括下层组件物料"
#. Option for the 'Type' (Select) field in DocType 'Process Deferred
#. Accounting'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:236
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:144
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:241
#: erpnext/accounts/doctype/account_category/account_category.json
#: erpnext/accounts/doctype/ledger_merge/ledger_merge.json
#: erpnext/accounts/doctype/process_deferred_accounting/process_deferred_accounting.json
@@ -24349,7 +24371,7 @@ msgstr ""
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:146
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:169
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:359
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:360
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:193
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:96
msgid "Incoming Rate"
@@ -24381,7 +24403,7 @@ msgstr "交易记账后结余数量不正确"
msgid "Incorrect Batch Consumed"
msgstr "消耗批次错误"
-#: erpnext/stock/doctype/item/item.py:601
+#: erpnext/stock/doctype/item/item.py:600
msgid "Incorrect Check in (group) Warehouse for Reorder"
msgstr "再订购(组)仓库检查错误"
@@ -24389,7 +24411,7 @@ msgstr "再订购(组)仓库检查错误"
msgid "Incorrect Company"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1071
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:782
msgid "Incorrect Component Quantity"
msgstr "组件数量错误"
@@ -24523,15 +24545,15 @@ msgstr "该装箱单是销售出库的一部分"
msgid "Indirect Expense"
msgstr "间接费用"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:102
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:167
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:106
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:172
msgid "Indirect Expenses"
msgstr "间接费用"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:145
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:242
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:149
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:247
msgid "Indirect Income"
msgstr "间接收入"
@@ -24599,14 +24621,14 @@ msgstr "已发起"
msgid "Inspected By"
msgstr "检验人"
-#: erpnext/controllers/stock_controller.py:1500
-#: erpnext/manufacturing/doctype/job_card/job_card.py:833
+#: erpnext/controllers/stock_controller.py:1501
+#: erpnext/manufacturing/doctype/job_card/job_card.py:834
msgid "Inspection Rejected"
msgstr "质检不通过"
#. Label of the inspection_required (Check) field in DocType 'Stock Entry'
-#: erpnext/controllers/stock_controller.py:1470
-#: erpnext/controllers/stock_controller.py:1472
+#: erpnext/controllers/stock_controller.py:1471
+#: erpnext/controllers/stock_controller.py:1473
#: erpnext/stock/doctype/stock_entry/stock_entry.json
msgid "Inspection Required"
msgstr "需要检验"
@@ -24623,8 +24645,8 @@ msgstr "需出货检验"
msgid "Inspection Required before Purchase"
msgstr "需来料检验"
-#: erpnext/controllers/stock_controller.py:1485
-#: erpnext/manufacturing/doctype/job_card/job_card.py:814
+#: erpnext/controllers/stock_controller.py:1486
+#: erpnext/manufacturing/doctype/job_card/job_card.py:815
msgid "Inspection Submission"
msgstr "质检单提交"
@@ -24654,7 +24676,7 @@ msgstr "安装通知单"
msgid "Installation Note Item"
msgstr "安装通知单项"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:643
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:684
msgid "Installation Note {0} has already been submitted"
msgstr "安装单{0}已经提交了"
@@ -24693,11 +24715,11 @@ msgstr "说明"
msgid "Insufficient Capacity"
msgstr "产能不足"
-#: erpnext/controllers/accounts_controller.py:4008
-#: erpnext/controllers/accounts_controller.py:4032
-#: erpnext/controllers/accounts_controller.py:4441
-#: erpnext/controllers/accounts_controller.py:4447
-#: erpnext/controllers/accounts_controller.py:4469
+#: erpnext/controllers/accounts_controller.py:4014
+#: erpnext/controllers/accounts_controller.py:4038
+#: erpnext/controllers/accounts_controller.py:4429
+#: erpnext/controllers/accounts_controller.py:4435
+#: erpnext/controllers/accounts_controller.py:4457
msgid "Insufficient Permissions"
msgstr "权限不足"
@@ -24705,13 +24727,12 @@ msgstr "权限不足"
#: erpnext/stock/doctype/pick_list/pick_list.py:147
#: erpnext/stock/doctype/pick_list/pick_list.py:165
#: erpnext/stock/doctype/pick_list/pick_list.py:1092
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1043
-#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1747
-#: erpnext/stock/stock_ledger.py:2225
+#: erpnext/stock/serial_batch_bundle.py:1226 erpnext/stock/stock_ledger.py:1713
+#: erpnext/stock/stock_ledger.py:2191
msgid "Insufficient Stock"
msgstr "库存不足"
-#: erpnext/stock/stock_ledger.py:2240
+#: erpnext/stock/stock_ledger.py:2206
msgid "Insufficient Stock for Batch"
msgstr "批次库存不足"
@@ -24831,13 +24852,13 @@ msgstr "关联交易信息"
msgid "Interest"
msgstr "利息"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:223
msgid "Interest Expense"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:150
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:248
msgid "Interest Income"
msgstr ""
@@ -24845,8 +24866,8 @@ msgstr ""
msgid "Interest and/or dunning fee"
msgstr "利息及/或催收费"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:147
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:244
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:151
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:249
msgid "Interest on Fixed Deposits"
msgstr ""
@@ -24866,7 +24887,7 @@ msgstr "内部"
msgid "Internal Customer Accounting"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:256
+#: erpnext/selling/doctype/customer/customer.py:246
msgid "Internal Customer for company {0} already exists"
msgstr "公司{0}的内部客户已存在"
@@ -24874,7 +24895,7 @@ msgstr "公司{0}的内部客户已存在"
msgid "Internal Purchase Order"
msgstr "内部采购订单"
-#: erpnext/controllers/accounts_controller.py:804
+#: erpnext/controllers/accounts_controller.py:805
msgid "Internal Sale or Delivery Reference missing."
msgstr "须填写关联公司销售或出货参考单据编号"
@@ -24882,7 +24903,7 @@ msgstr "须填写关联公司销售或出货参考单据编号"
msgid "Internal Sales Order"
msgstr "内部销售订单"
-#: erpnext/controllers/accounts_controller.py:806
+#: erpnext/controllers/accounts_controller.py:807
msgid "Internal Sales Reference Missing"
msgstr "关联方内部销售订单号必填"
@@ -24913,7 +24934,7 @@ msgstr "公司{0}的内部供应商已存在"
msgid "Internal Transfer"
msgstr "内部转账"
-#: erpnext/controllers/accounts_controller.py:815
+#: erpnext/controllers/accounts_controller.py:816
msgid "Internal Transfer Reference Missing"
msgstr "缺少内部调拨参考"
@@ -24926,7 +24947,12 @@ msgstr "关联方交易"
msgid "Internal Work History"
msgstr "内部工作经历"
-#: erpnext/controllers/stock_controller.py:1567
+#. Description of the 'Customer Details' (Text) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Internal notes about this customer. Not visible on transactions or the portal."
+msgstr ""
+
+#: erpnext/controllers/stock_controller.py:1568
msgid "Internal transfers can only be done in company's default currency"
msgstr "直接调拨币种必须是公司本币"
@@ -24942,12 +24968,12 @@ msgstr "间隔在1到59分钟之间"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:377
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:385
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1019
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1020
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1030
#: erpnext/assets/doctype/asset_category/asset_category.py:69
#: erpnext/assets/doctype/asset_category/asset_category.py:97
-#: erpnext/controllers/accounts_controller.py:3225
-#: erpnext/controllers/accounts_controller.py:3233
+#: erpnext/controllers/accounts_controller.py:3219
+#: erpnext/controllers/accounts_controller.py:3227
msgid "Invalid Account"
msgstr "无效科目"
@@ -24968,7 +24994,7 @@ msgstr "无效金额"
msgid "Invalid Attribute"
msgstr "无效属性"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
msgid "Invalid Auto Repeat Date"
msgstr "无效自动重复日期"
@@ -24981,7 +25007,7 @@ msgstr ""
msgid "Invalid Barcode. There is no Item attached to this barcode."
msgstr "无效条码,未关联任何物料"
-#: erpnext/public/js/controllers/transaction.js:3132
+#: erpnext/public/js/controllers/transaction.js:3134
msgid "Invalid Blanket Order for the selected Customer and Item"
msgstr "无效框架订单对所选客户和物料无效"
@@ -24997,21 +25023,21 @@ msgstr "无效子流程"
msgid "Invalid Company Field"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2355
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2461
msgid "Invalid Company for Inter Company Transaction."
msgstr "公司间交易的公司无效。"
#: erpnext/assets/doctype/asset/asset.py:362
#: erpnext/assets/doctype/asset/asset.py:369
-#: erpnext/controllers/accounts_controller.py:3248
+#: erpnext/controllers/accounts_controller.py:3242
msgid "Invalid Cost Center"
msgstr "无效成本中心"
-#: erpnext/selling/doctype/customer/customer.py:369
+#: erpnext/selling/doctype/customer/customer.py:359
msgid "Invalid Customer Group"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:421
+#: erpnext/selling/doctype/sales_order/sales_order.py:435
msgid "Invalid Delivery Date"
msgstr "无效交付日期"
@@ -25049,7 +25075,7 @@ msgstr "无效分组依据"
msgid "Invalid Item"
msgstr "无效物料"
-#: erpnext/stock/doctype/item/item.py:1527
+#: erpnext/stock/doctype/item/item.py:1531
msgid "Invalid Item Defaults"
msgstr "无效物料默认值"
@@ -25063,7 +25089,7 @@ msgid "Invalid Net Purchase Amount"
msgstr "净采购金额无效"
#: erpnext/accounts/doctype/pos_closing_entry/pos_closing_entry.py:79
-#: erpnext/accounts/general_ledger.py:822
+#: erpnext/accounts/general_ledger.py:827
msgid "Invalid Opening Entry"
msgstr "无效的期初分录"
@@ -25071,11 +25097,11 @@ msgstr "无效的期初分录"
msgid "Invalid POS Invoices"
msgstr "无效的POS发票"
-#: erpnext/accounts/doctype/account/account.py:387
+#: erpnext/accounts/doctype/account/account.py:391
msgid "Invalid Parent Account"
msgstr "无效的上级科目"
-#: erpnext/public/js/controllers/buying.js:429
+#: erpnext/public/js/controllers/buying.js:424
msgid "Invalid Part Number"
msgstr "无效的零件编号"
@@ -25105,12 +25131,12 @@ msgstr "无效的工艺损耗配置"
msgid "Invalid Purchase Invoice"
msgstr "无效的采购发票"
-#: erpnext/controllers/accounts_controller.py:4045
-#: erpnext/controllers/accounts_controller.py:4059
+#: erpnext/controllers/accounts_controller.py:4051
+#: erpnext/controllers/accounts_controller.py:4065
msgid "Invalid Qty"
msgstr "无效的数量"
-#: erpnext/controllers/accounts_controller.py:1460
+#: erpnext/controllers/accounts_controller.py:1461
msgid "Invalid Quantity"
msgstr "无效的物料数量"
@@ -25135,12 +25161,12 @@ msgstr "无效的排程计划"
msgid "Invalid Selling Price"
msgstr "无效的销售单价"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1824
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:945
msgid "Invalid Serial and Batch Bundle"
msgstr "无效的序列号和批次组合"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1105
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1127
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:43
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:65
msgid "Invalid Source and Target Warehouse"
msgstr ""
@@ -25165,7 +25191,7 @@ msgstr "科目{}的{} {}会计凭证中存在无效金额: {}"
msgid "Invalid condition expression"
msgstr "无效的条件表达式"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1057
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1058
msgid "Invalid file URL"
msgstr ""
@@ -25177,7 +25203,7 @@ msgstr ""
msgid "Invalid lost reason {0}, please create a new lost reason"
msgstr "无效的流失原因{0},请创建新的流失原因"
-#: erpnext/stock/doctype/item/item.py:477
+#: erpnext/stock/doctype/item/item.py:476
msgid "Invalid naming series (. missing) for {0}"
msgstr "编号规则无效(缺少.)于{0}"
@@ -25203,8 +25229,8 @@ msgstr "搜索查询无效"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:109
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:119
-#: erpnext/accounts/general_ledger.py:865
-#: erpnext/accounts/general_ledger.py:875
+#: erpnext/accounts/general_ledger.py:870
+#: erpnext/accounts/general_ledger.py:880
msgid "Invalid value {0} for {1} against account {2}"
msgstr "对于科目{2} {1}值{0}无效"
@@ -25212,7 +25238,7 @@ msgstr "对于科目{2} {1}值{0}无效"
msgid "Invalid {0}"
msgstr "无效的{0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2353
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2459
msgid "Invalid {0} for Inter Company Transaction."
msgstr "Inter Company Transaction无效{0}。"
@@ -25222,7 +25248,7 @@ msgid "Invalid {0}: {1}"
msgstr "无效的{0}:{1}"
#. Label of the inventory_section (Tab Break) field in DocType 'Item'
-#: erpnext/setup/install.py:385 erpnext/stock/doctype/item/item.json
+#: erpnext/setup/install.py:417 erpnext/stock/doctype/item/item.json
msgid "Inventory"
msgstr "库存"
@@ -25271,8 +25297,8 @@ msgstr ""
msgid "Investment Banking"
msgstr "投资银行业务"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:72
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:76
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
msgid "Investments"
msgstr "投资"
@@ -25322,7 +25348,7 @@ msgstr "应收账款融资(发票贴现)"
msgid "Invoice Document Type Selection Error"
msgstr "发票单据类型选择错误"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1268
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1191
msgid "Invoice Grand Total"
msgstr "发票总计"
@@ -25427,7 +25453,7 @@ msgstr "可开票时间为0,无法开具发票"
#: 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:1270
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1193
#: 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"
@@ -25448,7 +25474,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:2404
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
#: erpnext/buying/doctype/supplier/supplier.json
#: erpnext/selling/report/payment_terms_status_for_sales_order/payment_terms_status_for_sales_order.py:62
msgid "Invoices"
@@ -25544,8 +25570,7 @@ msgstr "是替代"
msgid "Is Billable"
msgstr "可开票"
-#. Label of the is_billing_contact (Check) field in DocType 'Contact'
-#: erpnext/erpnext_integrations/custom/contact.json
+#: erpnext/setup/install.py:170
msgid "Is Billing Contact"
msgstr "是发票联系人"
@@ -25987,8 +26012,7 @@ msgstr "是模板"
msgid "Is Transporter"
msgstr "是物流公司"
-#. Label of the is_your_company_address (Check) field in DocType 'Address'
-#: erpnext/accounts/custom/address.json
+#: erpnext/setup/install.py:161
msgid "Is Your Company Address"
msgstr "是公司地址"
@@ -26094,8 +26118,8 @@ msgstr "问题类型"
#. Description of the 'Is Rate Adjustment Entry (Debit Note)' (Check) field in
#. DocType 'Sales Invoice'
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-msgid "Issue a debit note with 0 qty against an existing Sales Invoice"
-msgstr "基于已有销售发票开一张0数量发票"
+msgid "Issue a debit note against an existing Sales Invoice to adjust the rate. The quantity will be retained from the original invoice."
+msgstr ""
#. Option for the 'Current State' (Select) field in DocType 'Share Balance'
#. Option for the 'Status' (Select) field in DocType 'Material Request'
@@ -26125,11 +26149,11 @@ msgstr "问题"
msgid "Issuing Date"
msgstr "发货日期"
-#: erpnext/stock/doctype/item/item.py:658
+#: erpnext/stock/doctype/item/item.py:657
msgid "It can take upto few hours for accurate stock values to be visible after merging items."
msgstr "合并后的物料库存数量更新可能需几个小时"
-#: erpnext/public/js/controllers/transaction.js:2533
+#: erpnext/public/js/controllers/transaction.js:2535
msgid "It is needed to fetch Item Details."
msgstr "以获取物料详细信息。"
@@ -26253,7 +26277,7 @@ msgstr ""
#: erpnext/stock/report/stock_analytics/stock_analytics.js:15
#: erpnext/stock/report/stock_analytics/stock_analytics.py:43
#: erpnext/stock/report/stock_balance/stock_balance.py:473
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:286
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:287
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.js:27
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:51
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:28
@@ -26501,7 +26525,7 @@ msgstr "购物车"
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:86
#: erpnext/manufacturing/report/work_order_stock_report/work_order_stock_report.py:119
#: erpnext/projects/doctype/timesheet/timesheet.js:214
-#: erpnext/public/js/controllers/transaction.js:2827
+#: erpnext/public/js/controllers/transaction.js:2829
#: erpnext/public/js/stock_reservation.js:112
#: erpnext/public/js/stock_reservation.js:318 erpnext/public/js/utils.js:579
#: erpnext/public/js/utils.js:736
@@ -26563,7 +26587,7 @@ msgstr "购物车"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.js:8
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:433
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:7
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:138
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:171
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:104
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:25
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:26
@@ -26762,13 +26786,13 @@ msgstr "物料详细信息"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:55
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.js:37
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:99
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:148
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:181
#: erpnext/stock/report/stock_analytics/stock_analytics.js:8
#: erpnext/stock/report/stock_analytics/stock_analytics.py:52
#: erpnext/stock/report/stock_balance/stock_balance.js:32
#: erpnext/stock/report/stock_balance/stock_balance.py:482
#: erpnext/stock/report/stock_ledger/stock_ledger.js:71
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:344
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:345
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.js:39
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:114
#: erpnext/stock/report/warehouse_wise_item_balance_age_and_value/warehouse_wise_item_balance_age_and_value.js:33
@@ -26985,7 +27009,7 @@ msgstr "物料制造商"
#: erpnext/manufacturing/report/production_planning_report/production_planning_report.py:371
#: 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:2833
+#: erpnext/public/js/controllers/transaction.js:2835
#: erpnext/public/js/utils.js:826
#: erpnext/selling/doctype/quotation_item/quotation_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:1324
@@ -27025,10 +27049,10 @@ msgstr "物料制造商"
#: erpnext/stock/report/itemwise_recommended_reorder_level/itemwise_recommended_reorder_level.py:54
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:133
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:440
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:145
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:178
#: erpnext/stock/report/stock_analytics/stock_analytics.py:45
#: erpnext/stock/report/stock_balance/stock_balance.py:480
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:292
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:293
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:111
#: erpnext/stock/report/stock_qty_vs_batch_qty/stock_qty_vs_batch_qty.py:31
#: erpnext/stock/report/stock_qty_vs_serial_no_count/stock_qty_vs_serial_no_count.py:32
@@ -27069,10 +27093,6 @@ msgstr ""
msgid "Item Price"
msgstr "物料价格"
-#: erpnext/stock/get_item_details.py:1136
-msgid "Item Price Added for {0} in Price List {1}"
-msgstr ""
-
#. Label of the item_price_settings_section (Section Break) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -27088,19 +27108,20 @@ msgstr "物料价格设置"
msgid "Item Price Stock"
msgstr "物料价格与库存"
-#: erpnext/stock/get_item_details.py:1160
-msgid "Item Price added for {0} in Price List {1}"
-msgstr "物料价格{0}自动添加到价格表{1}中了,以备以后订单使用"
+#: erpnext/stock/get_item_details.py:1155
+#: erpnext/stock/get_item_details.py:1179
+msgid "Item Price added for {0} in Price List - {1}"
+msgstr ""
#: erpnext/stock/doctype/item_price/item_price.py:140
msgid "Item Price appears multiple times based on Price List, Supplier/Customer, Currency, Item, Batch, UOM, Qty, and Dates."
msgstr "物料价格在价格表,供应商/客户,货币,物料,批号,单位及有效日期字段组合中重复了"
-#: erpnext/stock/doctype/item/item.py:183
+#: erpnext/stock/doctype/item/item.py:182
msgid "Item Price created at rate {0}"
msgstr ""
-#: erpnext/stock/get_item_details.py:1119
+#: erpnext/stock/get_item_details.py:1138
msgid "Item Price updated for {0} in Price List {1}"
msgstr "物料价格{0}更新到价格表{1}中了,之后的订单会使用新价格"
@@ -27287,11 +27308,11 @@ msgstr "多规格物料清单"
msgid "Item Variant Settings"
msgstr "物料多规格设置"
-#: erpnext/stock/doctype/item/item.js:1007
+#: erpnext/stock/doctype/item/item.js:991
msgid "Item Variant {0} already exists with same attributes"
msgstr "相同规格/属性的多规格物料{0}已存在"
-#: erpnext/stock/doctype/item/item.py:853
+#: erpnext/stock/doctype/item/item.py:852
msgid "Item Variants updated"
msgstr "多规格物料已更新"
@@ -27392,11 +27413,11 @@ msgstr "物料与仓库"
msgid "Item and Warranty Details"
msgstr "物料和保修"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3482
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:380
msgid "Item for row {0} does not match Material Request"
msgstr "行{0}的物料与物料请求不匹配"
-#: erpnext/stock/doctype/item/item.py:907
+#: erpnext/stock/doctype/item/item.py:911
msgid "Item has variants."
msgstr "物料有多种规格。"
@@ -27422,11 +27443,7 @@ msgstr "物料名称"
msgid "Item operation"
msgstr "工序"
-#: erpnext/controllers/accounts_controller.py:4099
-msgid "Item qty can not be updated as raw materials are already processed."
-msgstr "因原材料已处理,物料数量不可更新"
-
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1242
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:605
msgid "Item rate has been updated to zero as Allow Zero Valuation Rate is checked for item {0}"
msgstr "因勾选了成本价为0,物料 {0} 的单价已设置为0"
@@ -27445,11 +27462,11 @@ msgstr "物料成本价将基于到岸成本凭证金额重新计算"
msgid "Item valuation reposting in progress. Report might show incorrect item valuation."
msgstr "物料成本价追溯调整后台处理中,报表中显示的物料成本价可能不是最新的"
-#: erpnext/stock/doctype/item/item.py:1064
+#: erpnext/stock/doctype/item/item.py:1068
msgid "Item variant {0} exists with same attributes"
msgstr "有相同属性的多规格物料{0}已存在"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:564
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:566
msgid "Item with name {0} not found in the Purchase Order"
msgstr ""
@@ -27466,7 +27483,7 @@ msgid "Item {0} cannot be ordered more than {1} against Blanket Order {2}."
msgstr "物料{0}在总括订单{2}下不可订购超过{1}"
#: erpnext/assets/doctype/asset/asset.py:344
-#: erpnext/stock/doctype/item/item.py:704
+#: erpnext/stock/doctype/item/item.py:703
msgid "Item {0} does not exist"
msgstr "物料{0}不存在"
@@ -27478,7 +27495,7 @@ msgstr "物料{0}不存在于系统中或已过期"
msgid "Item {0} does not exist."
msgstr "物料{0}不存在"
-#: erpnext/controllers/selling_controller.py:855
+#: erpnext/controllers/selling_controller.py:856
msgid "Item {0} entered multiple times."
msgstr "物料{0}重复输入"
@@ -27490,15 +27507,15 @@ msgstr "物料{0}已被退回"
msgid "Item {0} has been disabled"
msgstr "物料{0}已禁用"
-#: erpnext/selling/doctype/sales_order/sales_order.py:790
+#: erpnext/selling/doctype/sales_order/sales_order.py:797
msgid "Item {0} has no Serial No. Only serialized items can have delivery based on Serial No"
msgstr "物料{0}无序列号,只有序列化物料可按序列号交货"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:583
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:585
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:1243
+#: erpnext/stock/doctype/item/item.py:1247
msgid "Item {0} has reached its end of life on {1}"
msgstr "物料{0}已经到达寿命终止日期{1}"
@@ -27510,15 +27527,15 @@ msgstr "{0}不是库存产品,已被忽略"
msgid "Item {0} is already reserved/delivered against Sales Order {1}."
msgstr "物料{0}已被销售订单{1}预留"
-#: erpnext/stock/doctype/item/item.py:1263
+#: erpnext/stock/doctype/item/item.py:1267
msgid "Item {0} is cancelled"
msgstr "物料{0}已取消"
-#: erpnext/stock/doctype/item/item.py:1247
+#: erpnext/stock/doctype/item/item.py:1251
msgid "Item {0} is disabled"
msgstr "物料{0}已禁用"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:569
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:571
msgid "Item {0} is not a drop ship item. Only drop ship items can have Delivered Qty updated."
msgstr ""
@@ -27526,7 +27543,7 @@ msgstr ""
msgid "Item {0} is not a serialized Item"
msgstr "物料{0}未启用序列好管理"
-#: erpnext/stock/doctype/item/item.py:1255
+#: erpnext/stock/doctype/item/item.py:1259
msgid "Item {0} is not a stock Item"
msgstr "物料{0}不允许库存"
@@ -27534,11 +27551,11 @@ msgstr "物料{0}不允许库存"
msgid "Item {0} is not a subcontracted item"
msgstr "物料{0}非外协物料"
-#: erpnext/stock/doctype/item/item.py:870
+#: erpnext/stock/doctype/item/item.py:869
msgid "Item {0} is not a template item."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2211
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1310
msgid "Item {0} is not active or end of life has been reached"
msgstr "物料{0}处于失效或寿命终止状态"
@@ -27554,7 +27571,7 @@ msgstr "物料{0}必须为非库存物料"
msgid "Item {0} must be a non-stock item"
msgstr "物料{0}必须是非允许库存物料"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1575
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:59
msgid "Item {0} not found in 'Raw Materials Supplied' table in {1} {2}"
msgstr "在{1} {2}的'供应的原材料'表中未找到物料{0}"
@@ -27562,7 +27579,7 @@ msgstr "在{1} {2}的'供应的原材料'表中未找到物料{0}"
msgid "Item {0} not found."
msgstr "未找到物料{0}"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:314
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:317
msgid "Item {0}: Ordered qty {1} cannot be less than minimum order qty {2} (defined in Item)."
msgstr "物料{0}的订单数量{1}不能小于最低订货量{2}(物料主数据中定义)。"
@@ -27570,7 +27587,7 @@ msgstr "物料{0}的订单数量{1}不能小于最低订货量{2}(物料主数
msgid "Item {0}: {1} qty produced. "
msgstr "物料{0}:已生产数量{1}"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1462
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1387
msgid "Item {} does not exist."
msgstr "物料{}不存在"
@@ -27616,7 +27633,7 @@ msgstr "物料销售台账"
msgid "Item-wise sales Register"
msgstr ""
-#: erpnext/stock/get_item_details.py:724
+#: erpnext/stock/get_item_details.py:743
msgid "Item/Item Code required to get Item Tax Template."
msgstr "获取物料税模板需要物料/物料编码。"
@@ -27640,7 +27657,7 @@ msgstr "物料"
msgid "Items Filter"
msgstr "物料过滤"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1688
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1690
#: erpnext/selling/doctype/sales_order/sales_order.js:1757
msgid "Items Required"
msgstr "所需物料"
@@ -27664,11 +27681,11 @@ msgstr "待创建物料需求物料"
msgid "Items and Pricing"
msgstr "物料和定价"
-#: erpnext/controllers/accounts_controller.py:4255
+#: erpnext/controllers/accounts_controller.py:4243
msgid "Items cannot be updated as Subcontracting Inward Order(s) exist against this Subcontracted Sales Order."
msgstr "因存在针对此外包销售订单的外包收货订单,物料无法更新。"
-#: erpnext/controllers/accounts_controller.py:4248
+#: erpnext/controllers/accounts_controller.py:4236
msgid "Items cannot be updated as Subcontracting Order is created against the Purchase Order {0}."
msgstr "因已针对采购订单{0}创建外协订单,物料不可更新"
@@ -27680,7 +27697,7 @@ msgstr "用于物料需求的物料号"
msgid "Items not found."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1238
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:601
msgid "Items rate has been updated to zero as Allow Zero Valuation Rate is checked for the following items: {0}"
msgstr "因勾选了成本价为0,这些物料 {0} 的单价已设置为0"
@@ -27690,7 +27707,7 @@ msgstr "因勾选了成本价为0,这些物料 {0} 的单价已设置为0"
msgid "Items to Be Repost"
msgstr "待重过账物料"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1687
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1689
msgid "Items to Manufacture are required to pull the Raw Materials associated with it."
msgstr "需有装配件或子装配件明细后才可计算采购原材料需求。"
@@ -27755,9 +27772,9 @@ msgstr "生产任务单产能"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:998
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1004
#: erpnext/manufacturing/doctype/operation/operation.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:415
+#: erpnext/manufacturing/doctype/work_order/work_order.js:396
#: erpnext/manufacturing/doctype/work_order/work_order.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:29
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:86
@@ -27819,7 +27836,7 @@ msgstr "生产任务单工时记录"
msgid "Job Card and Capacity Planning"
msgstr "生产任务单与产能计划"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1474
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1491
msgid "Job Card {0} has been completed"
msgstr "作业卡{0}已完成"
@@ -27895,7 +27912,7 @@ msgstr "委外供应商名"
msgid "Job Worker Warehouse"
msgstr "委外仓库"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2708
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2709
msgid "Job card {0} created"
msgstr "已创建生产任务单{0}"
@@ -28115,7 +28132,7 @@ msgstr "千瓦"
msgid "Kilowatt-Hour"
msgstr "千瓦时"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1000
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1006
msgid "Kindly cancel the Manufacturing Entries first against the work order {0}."
msgstr "请先取消工单入库"
@@ -28243,7 +28260,7 @@ msgstr "最后完成日期"
msgid "Last Fiscal Year"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:660
+#: erpnext/accounts/doctype/account/account.py:670
msgid "Last GL Entry update was done {}. This operation is not allowed while system is actively being used. Please wait for 5 minutes before retrying."
msgstr "总账分录最后更新于{}。系统使用期间不允许此操作,请5分钟后重试"
@@ -28325,7 +28342,7 @@ msgstr "最后一次尾气检查日期不能是未来的日期"
msgid "Last transacted"
msgstr "最后交易时间"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:185
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:218
msgid "Latest"
msgstr "最新"
@@ -28576,12 +28593,12 @@ msgstr "旧系统字段"
msgid "Legal Entity / Subsidiary with a separate Chart of Accounts belonging to the Organization."
msgstr "属于本机构的,带独立科目表的法人/附属机构。"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:111
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:190
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:115
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:195
msgid "Legal Expenses"
msgstr "法律费用"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:19
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:31
msgid "Legend"
msgstr "图例"
@@ -28592,7 +28609,7 @@ msgstr "图例"
msgid "Length (cm)"
msgstr "长(公分)"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:893
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:895
msgid "Less Than Amount"
msgstr "小于金额"
@@ -28651,7 +28668,7 @@ msgstr "许可证号"
msgid "License Plate"
msgstr "车牌"
-#: erpnext/controllers/status_updater.py:489
+#: erpnext/controllers/status_updater.py:499
msgid "Limit Crossed"
msgstr "超出最大数量"
@@ -28712,7 +28729,7 @@ msgstr "链接到物料申请集"
msgid "Link with Customer"
msgstr "关联客户"
-#: erpnext/selling/doctype/customer/customer.js:201
+#: erpnext/selling/doctype/customer/customer.js:203
msgid "Link with Supplier"
msgstr "关联供应商"
@@ -28733,12 +28750,12 @@ msgstr "发票"
msgid "Linked Location"
msgstr "链接位置"
-#: erpnext/stock/doctype/item/item.py:1116
+#: erpnext/stock/doctype/item/item.py:1120
msgid "Linked with submitted documents"
msgstr "与已提交单据关联"
#: erpnext/buying/doctype/supplier/supplier.js:210
-#: erpnext/selling/doctype/customer/customer.js:281
+#: erpnext/selling/doctype/customer/customer.js:283
msgid "Linking Failed"
msgstr "关联不成功"
@@ -28746,7 +28763,7 @@ msgstr "关联不成功"
msgid "Linking to Customer Failed. Please try again."
msgstr "客户关联失败,请重试"
-#: erpnext/selling/doctype/customer/customer.js:280
+#: erpnext/selling/doctype/customer/customer.js:282
msgid "Linking to Supplier Failed. Please try again."
msgstr "供应商关联失败,请重试"
@@ -28804,8 +28821,8 @@ msgstr "借款开始日期"
msgid "Loan Start Date and Loan Period are mandatory to save the Invoice Discounting"
msgstr "借款开始日期和借款期限是保存发票贴现的必要条件"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:176
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:300
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:180
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
msgid "Loans (Liabilities)"
msgstr "借款(负债)"
@@ -28850,8 +28867,8 @@ msgstr "物料的销售价和采购价"
msgid "Logo"
msgstr "Logo"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:183
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:318
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:187
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:323
msgid "Long-term Provisions"
msgstr ""
@@ -29052,6 +29069,11 @@ msgstr "积分等级"
msgid "Loyalty Program Type"
msgstr "积分类型"
+#. Description of the 'Loyalty Program' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists."
+msgstr ""
+
#. Label of the mps (Link) field in DocType 'Purchase Order'
#. Label of the mps (Link) field in DocType 'Work Order'
#: erpnext/buying/doctype/purchase_order/purchase_order.json
@@ -29095,10 +29117,10 @@ msgstr "机器故障"
msgid "Machine operator errors"
msgstr "操作失误"
-#: erpnext/setup/doctype/company/company.py:719
-#: erpnext/setup/doctype/company/company.py:734
-#: erpnext/setup/doctype/company/company.py:735
-#: erpnext/setup/doctype/company/company.py:736
+#: erpnext/setup/doctype/company/company.py:724
+#: erpnext/setup/doctype/company/company.py:739
+#: erpnext/setup/doctype/company/company.py:740
+#: erpnext/setup/doctype/company/company.py:741
msgid "Main"
msgstr "主"
@@ -29341,9 +29363,9 @@ msgstr "主修/选修科目"
#. Label of the make (Data) field in DocType 'Vehicle'
#: erpnext/accounts/doctype/journal_entry/journal_entry.js:127
-#: erpnext/manufacturing/doctype/job_card/job_card.js:550
-#: erpnext/manufacturing/doctype/work_order/work_order.js:857
-#: erpnext/manufacturing/doctype/work_order/work_order.js:891
+#: erpnext/manufacturing/doctype/job_card/job_card.js:480
+#: erpnext/manufacturing/doctype/work_order/work_order.js:839
+#: erpnext/manufacturing/doctype/work_order/work_order.js:873
#: erpnext/setup/doctype/vehicle/vehicle.json
msgid "Make"
msgstr "生成"
@@ -29363,7 +29385,7 @@ msgstr "创建折旧凭证"
msgid "Make Difference Entry"
msgstr "创建差异分录"
-#: erpnext/stock/doctype/item/item.js:696
+#: erpnext/stock/doctype/item/item.js:678
msgid "Make Lead Time"
msgstr "制定提前期"
@@ -29401,12 +29423,12 @@ msgstr "创建销售发票"
msgid "Make Serial No / Batch from Work Order"
msgstr "从工单生成序列号/批号"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:109
+#: erpnext/manufacturing/doctype/job_card/job_card.js:106
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.js:256
msgid "Make Stock Entry"
msgstr "创建物料移动"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:424
+#: erpnext/manufacturing/doctype/job_card/job_card.js:369
msgid "Make Subcontracting PO"
msgstr "创建外协采购订单"
@@ -29422,11 +29444,11 @@ msgstr "发起呼叫"
msgid "Make project from a template."
msgstr "基于模板创建项目。"
-#: erpnext/stock/doctype/item/item.js:804
+#: erpnext/stock/doctype/item/item.js:785
msgid "Make {0} Variant"
msgstr "生成{0}个多规格物料"
-#: erpnext/stock/doctype/item/item.js:806
+#: erpnext/stock/doctype/item/item.js:787
msgid "Make {0} Variants"
msgstr "生成{0}个多规格物料"
@@ -29434,8 +29456,8 @@ msgstr "生成{0}个多规格物料"
msgid "Making Journal Entries against advance accounts: {0} is not recommended. These Journals won't be available for Reconciliation."
msgstr "因无法核销,不建议在日记账凭证中包括预收/付款科目:{0}"
-#: erpnext/setup/doctype/company/company.js:161
-#: erpnext/setup/doctype/company/company.js:172
+#: erpnext/setup/doctype/company/company.js:177
+#: erpnext/setup/doctype/company/company.js:188
msgid "Manage"
msgstr "管理"
@@ -29454,7 +29476,7 @@ msgstr ""
msgid "Manage your orders"
msgstr "管理您的订单"
-#: erpnext/setup/doctype/company/company.py:498
+#: erpnext/setup/doctype/company/company.py:502
msgid "Management"
msgstr "管理人员"
@@ -29470,7 +29492,7 @@ msgstr "总经理"
msgid "Mandatory Accounting Dimension"
msgstr "必填会计维度"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Mandatory Field"
msgstr "必填字段"
@@ -29569,8 +29591,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:1319
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1335
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:704
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:721
#: 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
@@ -29649,7 +29671,7 @@ msgstr "制造商"
msgid "Manufacturer Part Number"
msgstr "制造商产品号"
-#: erpnext/public/js/controllers/buying.js:426
+#: erpnext/public/js/controllers/buying.js:421
msgid "Manufacturer Part Number {0} is invalid"
msgstr "制造商零件编号{0} 无效"
@@ -29674,7 +29696,7 @@ msgstr "物料的制造商"
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
#: erpnext/manufacturing/workspace/manufacturing/manufacturing.json
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:29
-#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:390
+#: erpnext/setup/doctype/company/company.json erpnext/setup/install.py:422
#: erpnext/setup/setup_wizard/data/industry_type.txt:31
#: erpnext/stock/doctype/batch/batch.json erpnext/stock/doctype/item/item.json
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
@@ -29719,10 +29741,6 @@ msgstr "生产日期"
msgid "Manufacturing Manager"
msgstr "生产经理"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2569
-msgid "Manufacturing Quantity is mandatory"
-msgstr "请填写生产数量"
-
#. Label of the manufacturing_section_section (Section Break) field in DocType
#. 'Sales Order Item'
#: erpnext/selling/doctype/sales_order_item/sales_order_item.json
@@ -29889,6 +29907,12 @@ msgstr "婚姻状况"
msgid "Mark As Closed"
msgstr "标记为已关闭"
+#. Description of the 'Is Internal Customer' (Check) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Mark if this customer represents an internal company. Enables inter-company transactions."
+msgstr ""
+
#. Label of the market_segment (Link) field in DocType 'Lead'
#. Name of a DocType
#. Label of the market_segment (Data) field in DocType 'Market Segment'
@@ -29903,12 +29927,12 @@ msgstr "标记为已关闭"
msgid "Market Segment"
msgstr "细分市场"
-#: erpnext/setup/doctype/company/company.py:450
+#: erpnext/setup/doctype/company/company.py:454
msgid "Marketing"
msgstr "市场营销"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:112
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:191
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
msgid "Marketing Expenses"
msgstr "市场营销费用"
@@ -29987,7 +30011,7 @@ msgstr ""
msgid "Material"
msgstr "物料"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:882
+#: erpnext/manufacturing/doctype/work_order/work_order.js:864
msgid "Material Consumption"
msgstr "工单耗用"
@@ -29995,7 +30019,7 @@ msgstr "工单耗用"
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:114
#: erpnext/stock/doctype/stock_entry/stock_entry.json
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1320
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:705
#: erpnext/stock/doctype/stock_entry_type/stock_entry_type.json
msgid "Material Consumption for Manufacture"
msgstr "工单耗用"
@@ -30076,7 +30100,7 @@ msgstr "其他入库"
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.js:33
#: erpnext/buying/report/requested_items_to_order_and_receive/requested_items_to_order_and_receive.py:184
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:166
+#: erpnext/manufacturing/doctype/job_card/job_card.js:214
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:159
#: erpnext/manufacturing/doctype/production_plan/production_plan.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
@@ -30173,11 +30197,11 @@ msgstr "物料需求中的计划物料"
msgid "Material Request Type"
msgstr "物料需求类型"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1158
+#: erpnext/selling/doctype/sales_order/sales_order.py:1175
msgid "Material Request already created for the ordered quantity"
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:1969
+#: erpnext/selling/doctype/sales_order/sales_order.py:1995
msgid "Material Request not created, as quantity for Raw Materials already available."
msgstr "因原材料可用数量足够,物料需求未创建,。"
@@ -30245,7 +30269,7 @@ msgstr "原材料已退回"
#. Option for the 'Purpose' (Select) field in DocType 'Pick List'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry'
#. Option for the 'Purpose' (Select) field in DocType 'Stock Entry Type'
-#: erpnext/manufacturing/doctype/job_card/job_card.js:180
+#: erpnext/manufacturing/doctype/job_card/job_card.js:225
#: 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
@@ -30311,12 +30335,12 @@ msgstr "委外原材料"
msgid "Materials To Be Transferred"
msgstr ""
-#: erpnext/controllers/subcontracting_controller.py:1543
+#: erpnext/controllers/subcontracting_controller.py:1545
msgid "Materials are already received against the {0} {1}"
msgstr "已根据{0}{1}接收物料"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:184
-#: erpnext/manufacturing/doctype/job_card/job_card.py:854
+#: erpnext/manufacturing/doctype/job_card/job_card.py:185
+#: erpnext/manufacturing/doctype/job_card/job_card.py:855
msgid "Materials needs to be transferred to the work in progress warehouse for the job card {0}"
msgstr "请先为生产任务单 {0} 发料(直接调拨)"
@@ -30387,9 +30411,9 @@ msgstr "最高分数"
msgid "Max discount allowed for item: {0} is {1}%"
msgstr "物料{0}的最大折扣为 {1}%"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1058
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1065
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1088
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1040
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1047
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1070
#: erpnext/stock/doctype/pick_list/pick_list.js:203
#: erpnext/stock/doctype/stock_entry/stock_entry.js:382
msgid "Max: {0}"
@@ -30421,11 +30445,11 @@ msgstr "最大付款金额"
msgid "Maximum Producible Items"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4088
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1051
msgid "Maximum Samples - {0} can be retained for Batch {1} and Item {2}."
msgstr "可以为批号{1}和物料{2}保留最大样本数量{0}。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4079
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1040
msgid "Maximum Samples - {0} have already been retained for Batch {1} and Item {2} in Batch {3}."
msgstr "批号{1}和批号{3}中的物料{2}已保留最大样本数量{0}。"
@@ -30486,15 +30510,10 @@ msgstr "兆焦耳"
msgid "Megawatt"
msgstr "兆瓦"
-#: erpnext/stock/stock_ledger.py:2072
+#: erpnext/stock/stock_ledger.py:2038
msgid "Mention Valuation Rate in the Item master."
msgstr "请在物料主数据中维护成本价"
-#. Description of the 'Accounts' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Mention if non-standard Receivable account"
-msgstr "如使用非标准应收科目,请在这里指定"
-
#. Description of the 'Accounts' (Table) field in DocType 'Supplier'
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Mention if non-standard payable account"
@@ -30544,7 +30563,7 @@ msgstr "与现有科目合并"
msgid "Merged"
msgstr "已合并"
-#: erpnext/accounts/doctype/account/account.py:603
+#: erpnext/accounts/doctype/account/account.py:613
msgid "Merging is only possible if following properties are same in both records. Is Group, Root Type, Company and Account Currency"
msgstr "合并要求两条记录的以下属性相同:是否组、根类型、公司和账户货币"
@@ -30574,7 +30593,7 @@ msgstr "发送给用户以收集项目进度"
msgid "Messages greater than 160 characters will be split into multiple messages"
msgstr "超过160字符的消息将被分割为多条消息"
-#: erpnext/setup/install.py:137
+#: erpnext/setup/install.py:138
msgid "Messaging CRM Campaign"
msgstr ""
@@ -30775,7 +30794,7 @@ msgstr "最小数量不能大于最大数量"
msgid "Min Qty should be greater than Recurse Over Qty"
msgstr "最小数量应大于递归数量"
-#: erpnext/stock/doctype/item/item.js:958
+#: erpnext/stock/doctype/item/item.js:942
msgid "Min Value: {0}, Max Value: {1}, in Increments of: {2}"
msgstr ""
@@ -30864,8 +30883,8 @@ msgstr "会议记录"
msgid "Miscellaneous"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:116
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:224
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:229
msgid "Miscellaneous Expenses"
msgstr "杂项费用"
@@ -30873,15 +30892,15 @@ msgstr "杂项费用"
msgid "Mismatch"
msgstr "不匹配"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1463
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1388
msgid "Missing"
msgstr "缺失"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:97
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:201
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:594
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2421
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3029
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2527
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3135
#: erpnext/assets/doctype/asset_category/asset_category.py:126
msgid "Missing Account"
msgstr "缺少账户"
@@ -30911,7 +30930,7 @@ msgstr "缺少筛选条件"
msgid "Missing Finance Book"
msgstr "缺少财务账簿"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1759
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:880
msgid "Missing Finished Good"
msgstr "无成品明细行"
@@ -30919,7 +30938,7 @@ msgstr "无成品明细行"
msgid "Missing Formula"
msgstr "未维护公式"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1078
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:789
msgid "Missing Item"
msgstr "缺少物料"
@@ -30956,7 +30975,7 @@ msgid "Missing required filter: {0}"
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1228
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1499
msgid "Missing value"
msgstr "缺失值"
@@ -31205,11 +31224,11 @@ msgstr ""
msgid "Multiple Accounts (Journal Template)"
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:440
+#: erpnext/selling/doctype/customer/customer.py:430
msgid "Multiple Loyalty Programs found for Customer {}. Please select manually."
msgstr "发现客户{}存在多个忠诚度计划,请手动选择"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1193
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1198
msgid "Multiple POS Opening Entry"
msgstr "多个POS期初凭证"
@@ -31231,11 +31250,11 @@ msgstr "多个多规格物料"
msgid "Multiple company fields available: {0}. Please select manually."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:1306
+#: erpnext/controllers/accounts_controller.py:1307
msgid "Multiple fiscal years exist for the date {0}. Please set company in Fiscal Year"
msgstr "多个财年的日期{0}存在。请设置公司财年"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1766
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:887
msgid "Multiple items cannot be marked as finished item"
msgstr "只允许一个明细行勾选了是成品"
@@ -31244,7 +31263,7 @@ msgid "Music"
msgstr "音乐"
#. Label of the must_be_whole_number (Check) field in DocType 'UOM'
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1445
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1446
#: erpnext/setup/doctype/uom/uom.json
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:267
#: erpnext/utilities/transaction_base.py:628
@@ -31331,7 +31350,7 @@ msgstr ""
msgid "Naming Series updated"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:939
msgid "Naming series '{0}' for DocType '{1}' does not contain standard '.' or '{{' separator. Using fallback extraction."
msgstr ""
@@ -31375,7 +31394,7 @@ msgstr "需求分析"
msgid "Negative Batch Report"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:628
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:631
msgid "Negative Quantity is not allowed"
msgstr "不能是负数"
@@ -31384,7 +31403,7 @@ msgstr "不能是负数"
msgid "Negative Stock Error"
msgstr "负库存错误"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:633
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:636
msgid "Negative Valuation Rate is not allowed"
msgstr "成本价不可以为负数"
@@ -31690,7 +31709,7 @@ msgstr "净重"
msgid "Net Weight UOM"
msgstr "净重单位"
-#: erpnext/controllers/accounts_controller.py:1666
+#: erpnext/controllers/accounts_controller.py:1667
msgid "Net total calculation precision loss"
msgstr "净总计计算精度损失"
@@ -31867,7 +31886,7 @@ msgstr "新仓库名称"
msgid "New Workplace"
msgstr "新工作地点"
-#: erpnext/selling/doctype/customer/customer.py:405
+#: erpnext/selling/doctype/customer/customer.py:395
msgid "New credit limit is less than current outstanding amount for the customer. Credit limit has to be atleast {0}"
msgstr "新的信用额度小于该客户未付总额。信用额度至少应该是 {0}"
@@ -31921,7 +31940,7 @@ msgstr "下次邮件发送时间:"
msgid "No Account Data row found"
msgstr ""
-#: erpnext/setup/doctype/company/test_company.py:93
+#: erpnext/setup/doctype/company/test_company.py:94
msgid "No Account matched these filters: {}"
msgstr "没有符合过滤条件{}的科目"
@@ -31934,7 +31953,7 @@ msgstr "没有控制措施"
msgid "No Answer"
msgstr "未答复"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2526
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2632
msgid "No Customer found for Inter Company Transactions which represents company {0}"
msgstr "未找到代表公司{0}的关联公司交易客户"
@@ -31947,7 +31966,7 @@ msgstr "无满足筛选条件的客户"
msgid "No Delivery Note selected for Customer {}"
msgstr "没有为客户{}选择销售出库"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:755
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:756
msgid "No DocTypes in To Delete list. Please generate or import the list before submitting."
msgstr ""
@@ -31963,7 +31982,7 @@ msgstr "没有条码为{0}的物料"
msgid "No Item with Serial No {0}"
msgstr "没启用序列号管理为{0}的物料"
-#: erpnext/controllers/subcontracting_controller.py:1459
+#: erpnext/controllers/subcontracting_controller.py:1461
msgid "No Items selected for transfer."
msgstr "未选择待转移物料"
@@ -31998,7 +32017,7 @@ msgstr "未找到POS配置,请先创建新POS配置"
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1597
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1657
#: erpnext/accounts/doctype/journal_entry/journal_entry.py:1678
-#: erpnext/stock/doctype/item/item.py:1488
+#: erpnext/stock/doctype/item/item.py:1492
msgid "No Permission"
msgstr "无此权限"
@@ -32027,19 +32046,19 @@ msgstr "当前无可用库存"
msgid "No Summary"
msgstr "无摘要"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2510
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2616
msgid "No Supplier found for Inter Company Transactions which represents company {0}"
msgstr "未找到代表公司{0}的关联公司交易供应商"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:101
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:100
msgid "No Tax Withholding data found for the current posting date."
msgstr "当前过账日期未找到代扣税数据"
-#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:109
+#: erpnext/accounts/doctype/tax_withholding_category/tax_withholding_category.py:108
msgid "No Tax withholding account set for Company {0} in Tax Withholding Category {1}."
msgstr ""
-#: erpnext/accounts/report/gross_profit/gross_profit.py:998
+#: erpnext/accounts/report/gross_profit/gross_profit.py:990
msgid "No Terms"
msgstr "无条款"
@@ -32069,7 +32088,7 @@ msgstr ""
msgid "No accounts found."
msgstr ""
-#: erpnext/selling/doctype/sales_order/sales_order.py:796
+#: erpnext/selling/doctype/sales_order/sales_order.py:803
msgid "No active BOM found for item {0}. Delivery by Serial No cannot be ensured"
msgstr "未找到物料{0}的有效物料清单,无法保证按序列号交货"
@@ -32263,7 +32282,7 @@ msgstr "工作站数"
msgid "No open Material Requests found for the given criteria."
msgstr "未找到符合指定条件的未结物料申请。"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1187
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1192
msgid "No open POS Opening Entry found for POS Profile {0}."
msgstr "未找到POS配置{0}对应的未清POS期初凭证。"
@@ -32287,7 +32306,7 @@ msgstr "无需汇率重估的未付发票"
msgid "No outstanding {0} found for the {1} {2} which qualify the filters you have specified."
msgstr "没有找到针对{1} {2} 及相关过滤条件的未付发票或订单"
-#: erpnext/public/js/controllers/buying.js:536
+#: erpnext/public/js/controllers/buying.js:531
msgid "No pending Material Requests found to link for the given items."
msgstr "指定物料没有对应的待处理物料需求。"
@@ -32358,7 +32377,7 @@ msgstr ""
msgid "No stock available for this batch."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:810
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:813
msgid "No stock ledger entries were created. Please set the quantity or valuation rate for the items properly and try again."
msgstr "未生成库存分类账条目。请正确设置物料数量或计价率后重试。"
@@ -32391,7 +32410,7 @@ msgstr "无金额"
msgid "No vouchers found for this transaction"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2574
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2680
msgid "No {0} found for Inter Company Transactions."
msgstr "关联公司交易没有找到{0}。"
@@ -32436,8 +32455,8 @@ msgstr "公益组织"
msgid "Non stock items"
msgstr "非库存物料"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:317
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:186
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:322
msgid "Non-Current Liabilities"
msgstr ""
@@ -32538,7 +32557,7 @@ msgstr "无法找到指定公司的最早会计年度。"
msgid "Not allow to set alternative item for the item {0}"
msgstr "不允许为物料{0}设置替代物料"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:59
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:60
msgid "Not allowed to create accounting dimension for {0}"
msgstr "不允许为{0}创建会计维度"
@@ -32592,7 +32611,7 @@ msgstr "注意:若需将产成品{0}作为原材料使用,请在物料表中
msgid "Note: Item {0} added multiple times"
msgstr "注:物料 {0} 添加了多次"
-#: erpnext/controllers/accounts_controller.py:712
+#: erpnext/controllers/accounts_controller.py:713
msgid "Note: Payment Entry will not be created since 'Cash or Bank Account' was not specified"
msgstr "注意:未指定“现金或银行科目”,无法创建收付款凭证"
@@ -32600,7 +32619,7 @@ msgstr "注意:未指定“现金或银行科目”,无法创建收付款凭
msgid "Note: This Cost Center is a Group. Cannot make accounting entries against groups."
msgstr "注:此成本中心勾选了是组,不能用于会计凭证记账。"
-#: erpnext/stock/doctype/item/item.py:695
+#: erpnext/stock/doctype/item/item.py:694
msgid "Note: To merge the items, create a separate Stock Reconciliation for the old item {0}"
msgstr "注:要合并物料,请为旧物料{0}创建单独的库存对账"
@@ -32783,6 +32802,11 @@ msgstr "科目代码将作为前缀自动添加到科目名称中"
msgid "Number of new Cost Center, it will be included in the cost center name as a prefix"
msgstr "新成本中心号,添加为成本中心名前缀"
+#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Numbers this customer uses to identify your company in their own system."
+msgstr ""
+
#. Label of the numeric (Check) field in DocType 'Item Quality Inspection
#. Parameter'
#. Label of the numeric (Check) field in DocType 'Quality Inspection Reading'
@@ -32842,18 +32866,18 @@ msgstr "已行驶里程"
msgid "Offer Date"
msgstr "录用日期"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:56
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:92
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:60
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
msgid "Office Equipment"
msgstr "办公设备"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:120
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
msgid "Office Maintenance Expenses"
msgstr "办公维护费用"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:121
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:205
msgid "Office Rent"
msgstr "办公室租金"
@@ -32981,7 +33005,7 @@ msgstr ""
msgid "Once set, this invoice will be on hold till the set date"
msgstr "一旦设置,该发票将被临时冻结至设定的日期"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:769
+#: erpnext/manufacturing/doctype/work_order/work_order.js:751
msgid "Once the Work Order is Closed. It can't be resumed."
msgstr "不能恢复已关闭工单"
@@ -33021,7 +33045,7 @@ msgstr "仅支持收付款凭证中使用此科目"
msgid "Only CSV and Excel files can be used to for importing data. Please check the file format you are trying to upload"
msgstr "仅支持CSV和Excel文件格式导入数据,请检查上传文件格式"
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1071
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1072
msgid "Only CSV files are allowed"
msgstr ""
@@ -33040,7 +33064,7 @@ msgstr "仅对超额部分扣税"
msgid "Only Include Allocated Payments"
msgstr "仅含已分配(核销)付款"
-#: erpnext/accounts/doctype/account/account.py:136
+#: erpnext/accounts/doctype/account/account.py:137
msgid "Only Parent can be of type {0}"
msgstr "只有上级可以是{0}类型"
@@ -33077,7 +33101,7 @@ msgstr ""
msgid "Only one operation can have 'Is Final Finished Good' checked when 'Track Semi Finished Goods' is enabled."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1334
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:720
msgid "Only one {0} entry can be created against the Work Order {1}"
msgstr "每个工单{1}仅能创建一个{0}条目"
@@ -33295,8 +33319,8 @@ msgstr ""
msgid "Opening Balance Details"
msgstr "起始余额明细"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:192
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:343
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
msgid "Opening Balance Equity"
msgstr "所有者权益期初余额"
@@ -33319,7 +33343,7 @@ msgstr "问题提交日期"
msgid "Opening Entry"
msgstr "开账凭证"
-#: erpnext/accounts/general_ledger.py:821
+#: erpnext/accounts/general_ledger.py:826
msgid "Opening Entry can not be created after Period Closing Voucher is created."
msgstr "创建期间结账凭证后不可创建期初凭证"
@@ -33352,7 +33376,7 @@ msgid "Opening Invoice Tool"
msgstr ""
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1651
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1990
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2085
msgid "Opening Invoice has rounding adjustment of {0}. '{1}' account is required to post these values. Please set it in Company: {2}. Or, '{3}' can be enabled to not post any rounding adjustment."
msgstr "期初发票存在{0}的舍入调整。 需设置'{1}'科目以过账这些值,请在公司{2}中设置。 或启用'{3}'以不过账任何舍入调整"
@@ -33388,16 +33412,16 @@ 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.json erpnext/stock/doctype/item/item.py:352
+#: erpnext/stock/doctype/item/item.json erpnext/stock/doctype/item/item.py:351
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
msgid "Opening Stock"
msgstr "期初库存"
-#: erpnext/stock/doctype/item/item.py:357
+#: erpnext/stock/doctype/item/item.py:356
msgid "Opening Stock entry created with zero valuation rate: {0}"
msgstr ""
-#: erpnext/stock/doctype/item/item.py:365
+#: erpnext/stock/doctype/item/item.py:364
msgid "Opening Stock entry created: {0}"
msgstr ""
@@ -33415,12 +33439,15 @@ msgstr "期初金额"
msgid "Opening and Closing"
msgstr "开账与关账"
-#: erpnext/stock/doctype/item/item.py:199
+#: erpnext/stock/doctype/item/item.py:198
msgid "Opening stock creation has been queued and will be created in the background. Please check the stock entry after some time."
msgstr ""
#. Label of the operating_component (Link) field in DocType 'Workstation Cost'
+#. Label of the operating_component (Data) field in DocType 'Landed Cost Taxes
+#. and Charges'
#: erpnext/manufacturing/doctype/workstation_cost/workstation_cost.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operating Component"
msgstr "运营组件"
@@ -33452,7 +33479,7 @@ msgstr "工费成本(本币)"
msgid "Operating Cost Per BOM Quantity"
msgstr "每个成品工费成本"
-#: erpnext/manufacturing/doctype/bom/bom.py:1731
+#: erpnext/manufacturing/doctype/bom/bom.py:1749
msgid "Operating Cost as per Work Order / BOM"
msgstr "按工单/物料清单计算的运营成本"
@@ -33495,15 +33522,15 @@ msgstr "工序说明"
#. Label of the operation_row_id (Int) field in DocType 'BOM Item'
#. Label of the operation_id (Data) field in DocType 'Job Card'
+#. Label of the operation_id (Data) field in DocType 'Landed Cost Taxes and
+#. Charges'
#: erpnext/manufacturing/doctype/bom_item/bom_item.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
+#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
msgid "Operation ID"
msgstr "工序ID"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:351
-msgid "Operation Id"
-msgstr "工序ID"
-
#. Label of the operation_row_id (Int) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
msgid "Operation Row ID"
@@ -33528,7 +33555,7 @@ msgstr "工序行号"
msgid "Operation Time"
msgstr "工序时间"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1504
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1508
msgid "Operation Time must be greater than 0 for Operation {0}"
msgstr "工序{0}的时间必须大于0"
@@ -33543,11 +33570,11 @@ msgstr "多少成品工序已完成?"
msgid "Operation time does not depend on quantity to produce"
msgstr "加工(操作)时间不随着生产数量变化"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:592
+#: erpnext/manufacturing/doctype/job_card/job_card.js:518
msgid "Operation {0} added multiple times in the work order {1}"
msgstr "工单{1}中工序{0}被多次添加"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1255
msgid "Operation {0} does not belong to the work order {1}"
msgstr "工序{0}不属于工单{1}"
@@ -33563,9 +33590,9 @@ msgstr "工序{0}时间超过任何工站开工时间{1},请分解成多个工
#. Label of the operations (Table) field in DocType 'Work Order'
#. Label of the operation (Section Break) field in DocType 'Email Digest'
#: erpnext/manufacturing/doctype/bom/bom.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:332
+#: erpnext/manufacturing/doctype/work_order/work_order.js:313
#: erpnext/manufacturing/doctype/work_order/work_order.json
-#: erpnext/setup/doctype/company/company.py:468
+#: erpnext/setup/doctype/company/company.py:472
#: erpnext/setup/doctype/email_digest/email_digest.json
#: erpnext/templates/generators/bom.html:61
msgid "Operations"
@@ -33738,7 +33765,7 @@ msgstr "商机 {0} 已创建"
msgid "Optimize Route"
msgstr "优化路线"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1035
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1017
msgid "Optional. Select a specific manufacture entry to reverse."
msgstr ""
@@ -33888,7 +33915,7 @@ msgstr "采购数量"
#: erpnext/buying/doctype/supplier/supplier_dashboard.py:11
#: erpnext/selling/doctype/customer/customer_dashboard.py:20
-#: erpnext/selling/doctype/sales_order/sales_order.py:1005
+#: erpnext/selling/doctype/sales_order/sales_order.py:1022
#: erpnext/setup/doctype/company/company_dashboard.py:23
msgid "Orders"
msgstr "订单"
@@ -34004,7 +34031,7 @@ msgstr "盎司/加仑(美制)"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:119
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:83
#: erpnext/stock/report/stock_balance/stock_balance.py:558
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:323
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:324
msgid "Out Qty"
msgstr "发出数量"
@@ -34042,7 +34069,7 @@ msgstr "超出保修期"
msgid "Out of stock"
msgstr "缺货"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1200
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1205
#: erpnext/selling/page/point_of_sale/pos_controller.js:208
msgid "Outdated POS Opening Entry"
msgstr "过期的POS期初凭证"
@@ -34061,6 +34088,7 @@ msgstr ""
#. Label of the outgoing_rate (Currency) field in DocType 'Stock Ledger Entry'
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:378
msgid "Outgoing Rate"
msgstr "出库成本价"
@@ -34096,7 +34124,7 @@ msgstr "未清金额(公司货币)"
#: erpnext/accounts/doctype/cashier_closing/cashier_closing.json
#: erpnext/accounts/doctype/discounted_invoice/discounted_invoice.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:885
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:887
#: erpnext/accounts/doctype/payment_reconciliation_invoice/payment_reconciliation_invoice.json
#: erpnext/accounts/doctype/payment_request/payment_request.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.js:300
@@ -34106,7 +34134,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:1277
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1200
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:169
#: erpnext/accounts/report/purchase_register/purchase_register.py:289
#: erpnext/accounts/report/sales_register/sales_register.py:319
@@ -34166,17 +34194,22 @@ msgstr "采购收据物料{0}({1})超账单容差达{2}%。"
msgid "Over Delivery/Receipt Allowance (%)"
msgstr "超量出/入库比率(%)"
+#. Label of the over_order_allowance (Float) field in DocType 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "Over Order Allowance (%)"
+msgstr ""
+
#. Label of the over_picking_allowance (Percent) field in DocType 'Stock
#. Settings'
#: erpnext/stock/doctype/stock_settings/stock_settings.json
msgid "Over Picking Allowance"
msgstr "允许超量拣货(%)"
-#: erpnext/controllers/stock_controller.py:1737
+#: erpnext/controllers/stock_controller.py:1738
msgid "Over Receipt"
msgstr "超收"
-#: erpnext/controllers/status_updater.py:494
+#: erpnext/controllers/status_updater.py:504
msgid "Over Receipt/Delivery of {0} {1} ignored for item {2} because you have {3} role."
msgstr "因您具有{3}角色,物料{2}的{0} {1}超收/交付已被忽略"
@@ -34196,11 +34229,11 @@ msgstr "允许超量发料(%)"
msgid "Over Withheld"
msgstr ""
-#: erpnext/controllers/status_updater.py:496
+#: erpnext/controllers/status_updater.py:506
msgid "Overbilling of {0} {1} ignored for item {2} because you have {3} role."
msgstr "因您具有{3}角色,物料{2}的{0} {1}超计费已被忽略"
-#: erpnext/controllers/accounts_controller.py:2184
+#: erpnext/controllers/accounts_controller.py:2185
msgid "Overbilling of {} ignored because you have {} role."
msgstr "因您具有{}角色,{}超计费已被忽略"
@@ -34500,7 +34533,7 @@ msgstr ""
msgid "POS Opening Entry"
msgstr "POS机交班"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1201
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1206
msgid "POS Opening Entry - {0} is outdated. Please close the POS and create a new POS Opening Entry."
msgstr "POS期初凭证 - {0}已过期。请关闭POS并创建新的POS期初凭证"
@@ -34521,7 +34554,7 @@ msgstr "销售点期初分录明细"
msgid "POS Opening Entry Exists"
msgstr "POS期初凭证已存在"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1186
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1191
msgid "POS Opening Entry Missing"
msgstr "POS期初凭证缺失"
@@ -34557,7 +34590,7 @@ msgstr "销售点付款方式"
msgid "POS Profile"
msgstr "POS设置"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1194
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1199
msgid "POS Profile - {0} has multiple open POS Opening Entries. Please close or cancel the existing entries before proceeding."
msgstr "POS配置 - {0}存在多个未结POS期初凭证。请先关闭或取消现有凭证再继续操作"
@@ -34575,11 +34608,11 @@ msgstr "POS配置文件用户"
msgid "POS Profile doesn't match {}"
msgstr "销售点配置不匹配{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1154
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1159
msgid "POS Profile is mandatory to mark this invoice as POS Transaction."
msgstr "需配置POS参数文件才可将本发票标记为POS交易。"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1383
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
msgid "POS Profile required to make POS Entry"
msgstr "请创建POS配置记录"
@@ -34685,7 +34718,7 @@ msgstr "套件明细"
msgid "Packed Items"
msgstr "套件明细"
-#: erpnext/controllers/stock_controller.py:1571
+#: erpnext/controllers/stock_controller.py:1572
msgid "Packed Items cannot be transferred internally"
msgstr "套件中的下层物料不可直接调拨"
@@ -34722,7 +34755,7 @@ msgstr "装箱单"
msgid "Packing Slip Item"
msgstr "装箱单项"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:659
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:700
msgid "Packing Slip(s) cancelled"
msgstr "装箱单( S)取消"
@@ -34763,7 +34796,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:1271
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1194
#: 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:209
@@ -34829,7 +34862,7 @@ msgid "Paid To Account Type"
msgstr "收款方账户类型"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:327
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1150
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1155
msgid "Paid amount + Write Off Amount can not be greater than Grand Total"
msgstr "付款金额+销账金额不能大于总金额"
@@ -34923,7 +34956,7 @@ msgstr "父批"
msgid "Parent Company"
msgstr "母公司"
-#: erpnext/setup/doctype/company/company.py:603
+#: erpnext/setup/doctype/company/company.py:607
msgid "Parent Company must be a group company"
msgstr "母公司必须是集团公司"
@@ -35050,7 +35083,7 @@ msgstr ""
msgid "Partial Material Transferred"
msgstr "部分发料"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1173
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1178
msgid "Partial Payment in POS Transactions are not allowed."
msgstr "POS交易不支持部分付款。"
@@ -35263,7 +35296,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:1204
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1127
#: 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
@@ -35290,7 +35323,7 @@ msgstr "往来单位"
#. Name of a DocType
#: erpnext/accounts/doctype/party_account/party_account.json
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1216
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1139
msgid "Party Account"
msgstr "往来单位科目"
@@ -35323,7 +35356,7 @@ msgstr ""
msgid "Party Account No. (Bank Statement)"
msgstr "往来单位银行账号(银行对账)"
-#: erpnext/controllers/accounts_controller.py:2468
+#: erpnext/controllers/accounts_controller.py:2469
msgid "Party Account {0} currency ({1}) and document currency ({2}) should be same"
msgstr "往来单位主数据中定义的结算货币需与业务交易货币相同"
@@ -35475,7 +35508,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:1198
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1121
#: 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
@@ -35584,7 +35617,7 @@ msgstr "历史事件"
msgid "Pause"
msgstr "暂停"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:263
+#: erpnext/manufacturing/doctype/job_card/job_card.js:660
msgid "Pause Job"
msgstr "暂停生产任务单"
@@ -35635,7 +35668,7 @@ msgid "Payable"
msgstr "应付账款"
#: erpnext/accounts/report/accounts_payable/accounts_payable.js:50
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1214
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1137
#: erpnext/accounts/report/item_wise_purchase_register/item_wise_purchase_register.py:209
#: erpnext/accounts/report/purchase_register/purchase_register.py:194
#: erpnext/accounts/report/purchase_register/purchase_register.py:235
@@ -35669,7 +35702,7 @@ msgstr "付款人设置"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice_list.js:55
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.js:98
#: erpnext/accounts/doctype/sales_invoice/sales_invoice_dashboard.py:25
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:42
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:51
#: erpnext/buying/doctype/purchase_order/purchase_order.js:394
#: erpnext/buying/doctype/purchase_order/purchase_order_dashboard.py:24
#: erpnext/selling/doctype/sales_order/sales_order.js:1213
@@ -35816,7 +35849,7 @@ msgstr "选择收付款凭证后有修改,请重新选取。"
msgid "Payment Entry is already created"
msgstr "收付款凭证已创建"
-#: erpnext/controllers/accounts_controller.py:1617
+#: erpnext/controllers/accounts_controller.py:1618
msgid "Payment Entry {0} is linked against Order {1}, check if it should be pulled as advance in this invoice."
msgstr "订单{1}上已关联收付款凭证{0},是否将其作为本发票的预付款?"
@@ -36041,7 +36074,7 @@ msgstr "付款参考"
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1708
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1710
#: erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json
#: erpnext/accounts/doctype/payment_order/payment_order.js:19
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -36106,7 +36139,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/controllers/accounts_controller.py:2748
+#: erpnext/controllers/accounts_controller.py:2749
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Schedule"
@@ -36135,7 +36168,7 @@ msgstr ""
#: 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:1267
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1190
#: erpnext/accounts/report/gross_profit/gross_profit.py:449
#: erpnext/accounts/workspace/invoicing/invoicing.json
#: erpnext/public/js/controllers/transaction.js:498
@@ -36191,6 +36224,7 @@ msgstr "销售订单分期付款追踪表"
#. Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Invoice'
#. Label of the payment_terms_template (Link) field in DocType 'Purchase Order'
+#. Label of the payment_terms (Link) field in DocType 'Customer'
#. Label of the payment_terms_template (Link) field in DocType 'Quotation'
#. Label of the payment_terms_template (Link) field in DocType 'Sales Order'
#: erpnext/accounts/doctype/payment_terms_template/payment_terms_template.json
@@ -36205,6 +36239,7 @@ msgstr "销售订单分期付款追踪表"
#: erpnext/accounts/report/customer_ledger_summary/customer_ledger_summary.js:62
#: erpnext/accounts/report/supplier_ledger_summary/supplier_ledger_summary.js:61
#: erpnext/buying/doctype/purchase_order/purchase_order.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
msgid "Payment Terms Template"
@@ -36262,7 +36297,7 @@ msgstr ""
msgid "Payment methods are mandatory. Please add at least one payment method."
msgstr "必须设置付款方式,请至少添加一种"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3033
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3139
msgid "Payment methods refreshed. Please review before proceeding."
msgstr ""
@@ -36337,8 +36372,8 @@ msgstr "付款信息已更新"
msgid "Payroll Entry"
msgstr "工资计算"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:262
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:267
msgid "Payroll Payable"
msgstr "应付职工薪资"
@@ -36385,10 +36420,14 @@ msgstr "待办事项"
msgid "Pending Amount"
msgstr "待付款金额"
+#. Label of the pending_qty (Float) field in DocType 'Job Card'
#. Label of the pending_qty (Float) field in DocType 'Production Plan Item'
+#. Label of the pending_qty (Float) field in DocType 'Work Order Operation'
#: erpnext/buying/report/purchase_order_analysis/purchase_order_analysis.py:254
+#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/doctype/production_plan_item/production_plan_item.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:356
+#: erpnext/manufacturing/doctype/work_order/work_order.js:337
+#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/report/production_plan_summary/production_plan_summary.py:182
#: erpnext/selling/doctype/sales_order/sales_order.js:1726
#: erpnext/selling/report/pending_so_items_for_purchase_request/pending_so_items_for_purchase_request.py:45
@@ -36397,9 +36436,18 @@ 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:273
msgid "Pending Quantity"
msgstr "待处理数量"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:70
+msgid "Pending Quantity cannot be greater than {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.js:62
+msgid "Pending Quantity cannot be less than 0"
+msgstr ""
+
#. Option for the 'Status' (Select) field in DocType 'Task'
#. Option in a Select field in the tasks Web Form
#: erpnext/projects/doctype/task/task.json
@@ -36429,6 +36477,14 @@ msgstr "今天待定活动"
msgid "Pending processing"
msgstr "等待后台处理"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1464
+msgid "Pending quantity cannot be greater than the for quantity."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1458
+msgid "Pending quantity cannot be negative."
+msgstr ""
+
#: erpnext/setup/setup_wizard/data/industry_type.txt:36
msgid "Pension Funds"
msgstr "养老基金"
@@ -36538,7 +36594,7 @@ msgstr "意向分析"
msgid "Period Based On"
msgstr "期间基于"
-#: erpnext/accounts/general_ledger.py:833
+#: erpnext/accounts/general_ledger.py:838
msgid "Period Closed"
msgstr "会计期间已关闭"
@@ -37102,8 +37158,8 @@ msgstr "工厂看板"
msgid "Plant Floor"
msgstr "车间"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:57
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:97
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:61
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:102
msgid "Plants and Machineries"
msgstr "植物和机械设备"
@@ -37139,7 +37195,7 @@ msgstr "请设置优先级"
msgid "Please Set Supplier Group in Buying Settings."
msgstr "请设置供应商组采购设置。"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1879
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1881
msgid "Please Specify Account"
msgstr "请指定账户"
@@ -37187,7 +37243,7 @@ msgstr "请包括银行户头Bank Account字段"
msgid "Please add the account to root level Company - {0}"
msgstr "请将账户添加至根级公司-{0}"
-#: erpnext/accounts/doctype/account/account.py:233
+#: erpnext/accounts/doctype/account/account.py:237
msgid "Please add the account to root level Company - {}"
msgstr "请将账户添加至根级公司-{}"
@@ -37195,7 +37251,7 @@ msgstr "请将账户添加至根级公司-{}"
msgid "Please add {1} role to user {0}."
msgstr "请为用户{0}添加{1}角色"
-#: erpnext/controllers/stock_controller.py:1748
+#: erpnext/controllers/stock_controller.py:1749
msgid "Please adjust the qty or edit {0} to proceed."
msgstr "请调整数量或修改 {0} 后继续"
@@ -37203,7 +37259,7 @@ msgstr "请调整数量或修改 {0} 后继续"
msgid "Please attach CSV file"
msgstr "请附加CSV文件"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3174
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3286
msgid "Please cancel and amend the Payment Entry"
msgstr "请取消并修改付款分录"
@@ -37237,7 +37293,7 @@ msgstr "有工艺路线与启用计件成本两个勾选字段必须二选一"
msgid "Please check the 'Activate Serial and Batch No for Item' checkbox in the {0} to make Serial and Batch Bundle for the item."
msgstr ""
-#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:562
+#: erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.py:605
msgid "Please check the error message and take necessary actions to fix the error and then restart the reposting again."
msgstr "请详细检查相关错误消息,修正相关主数据或业务数据后重新执行"
@@ -37262,11 +37318,15 @@ msgstr "请点击“生成表”来获取序列号增加了对项目{0}"
msgid "Please click on 'Generate Schedule' to get schedule"
msgstr "请点击计划任务标签下的“生成排期表”按钮生成计划排期"
+#: erpnext/manufacturing/doctype/job_card/job_card.js:58
+msgid "Please complete the job first before entering Pending Quantity"
+msgstr ""
+
#: erpnext/accounts/doctype/bank_transaction_rule/bank_transaction_rule.py:80
msgid "Please configure accounts for the Bank Entry rule."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:642
+#: erpnext/selling/doctype/customer/customer.py:632
msgid "Please contact any of the following users to extend the credit limits for {0}: {1}"
msgstr "请联系以下人员为客户 {0} 增加信用额度:{1}"
@@ -37274,11 +37334,11 @@ msgstr "请联系以下人员为客户 {0} 增加信用额度:{1}"
msgid "Please contact any of the following users to {} this transaction."
msgstr "请联系以下用户以{}此交易"
-#: erpnext/selling/doctype/customer/customer.py:635
+#: erpnext/selling/doctype/customer/customer.py:625
msgid "Please contact your administrator to extend the credit limits for {0}."
msgstr "请联系管理员延长{0}的信用额度"
-#: erpnext/accounts/doctype/account/account.py:384
+#: erpnext/accounts/doctype/account/account.py:388
msgid "Please convert the parent account in corresponding child company to a group account."
msgstr "请将对应子公司的上级账户转换为组账户"
@@ -37290,11 +37350,11 @@ msgstr "请从线索{0}创建客户"
msgid "Please create Landed Cost Vouchers against Invoices that have 'Update Stock' enabled."
msgstr "请对启用'更新库存'的发票创建到岸成本凭证"
-#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:74
+#: erpnext/accounts/doctype/accounting_dimension/accounting_dimension.py:75
msgid "Please create a new Accounting Dimension if required."
msgstr "如需,请新建会计维度"
-#: erpnext/controllers/accounts_controller.py:805
+#: erpnext/controllers/accounts_controller.py:806
msgid "Please create purchase from internal sale or delivery document itself"
msgstr "请自关联方内部销售或出货单创建采购订单"
@@ -37302,11 +37362,11 @@ msgstr "请自关联方内部销售或出货单创建采购订单"
msgid "Please create purchase receipt or purchase invoice for the item {0}"
msgstr "请为物料{0}创建采购入库或采购发票"
-#: erpnext/stock/doctype/item/item.py:723
+#: erpnext/stock/doctype/item/item.py:722
msgid "Please delete Product Bundle {0}, before merging {1} into {2}"
msgstr "在合并{1}到{2}前,请先删除产品套装{0}"
-#: erpnext/assets/doctype/asset/depreciation.py:560
+#: erpnext/assets/doctype/asset/depreciation.py:562
msgid "Please disable workflow temporarily for Journal Entry {0}"
msgstr "请暂时停用日记账凭证{0}的工作流。"
@@ -37314,7 +37374,7 @@ msgstr "请暂时停用日记账凭证{0}的工作流。"
msgid "Please do not book expense of multiple assets against one single Asset."
msgstr "请勿将多个资产的费用记入单一资产"
-#: erpnext/controllers/item_variant.py:241
+#: erpnext/controllers/item_variant.py:249
msgid "Please do not create more than 500 items at a time"
msgstr "请不要一次创建超过500个物料"
@@ -37338,7 +37398,7 @@ msgstr "请确保理解相关影响后勾选"
msgid "Please enable {0} in the {1}."
msgstr "请在 {0} 启用 {1}"
-#: erpnext/controllers/selling_controller.py:857
+#: erpnext/controllers/selling_controller.py:858
msgid "Please enable {} in {} to allow same item in multiple rows"
msgstr "请在{}中启用{}以允许同一物料多行显示"
@@ -37350,20 +37410,20 @@ msgstr "请确保{0}账户为资产负债表账户。您可将上级账户改为
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 "请确保{0}账户{1}为应付账户。您可更改账户类型为应付或选择其他账户"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1013
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1014
msgid "Please ensure {} account is a Balance Sheet account."
msgstr "请确保{}账户为资产负债表账户"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1023
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1024
msgid "Please ensure {} account {} is a Receivable account."
msgstr "请确保{}账户{}为应收账户"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:757
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:145
msgid "Please enter Difference Account or set default Stock Adjustment Account for company {0}"
msgstr "请输入差异账户 或为公司{0}设置默认库存调整账户 "
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:556
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1285
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1290
msgid "Please enter Account for Change Amount"
msgstr "请输入零钱科目"
@@ -37371,15 +37431,15 @@ msgstr "请输入零钱科目"
msgid "Please enter Approving Role or Approving User"
msgstr "请输入角色核准或审批用户"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:683
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:686
msgid "Please enter Batch No"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:976
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:979
msgid "Please enter Cost Center"
msgstr "请输入成本中心"
-#: erpnext/selling/doctype/sales_order/sales_order.py:425
+#: erpnext/selling/doctype/sales_order/sales_order.py:439
msgid "Please enter Delivery Date"
msgstr "请输入出货日期"
@@ -37387,7 +37447,7 @@ msgstr "请输入出货日期"
msgid "Please enter Employee Id of this sales person"
msgstr "请输入业务员员工号"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:985
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:988
msgid "Please enter Expense Account"
msgstr "请输入您的费用科目"
@@ -37396,7 +37456,7 @@ msgstr "请输入您的费用科目"
msgid "Please enter Item Code to get Batch Number"
msgstr "请输入产品代码来获得批号"
-#: erpnext/public/js/controllers/transaction.js:2989
+#: erpnext/public/js/controllers/transaction.js:2991
msgid "Please enter Item Code to get batch no"
msgstr "请输入物料号,以获得批号"
@@ -37412,7 +37472,7 @@ msgstr "请先输入维护明细"
msgid "Please enter Planned Qty for Item {0} at row {1}"
msgstr "请为第{1}行的物料{0}输入计划数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:73
+#: erpnext/manufacturing/doctype/work_order/work_order.js:44
msgid "Please enter Production Item first"
msgstr "请先输入成品"
@@ -37432,7 +37492,7 @@ msgstr "参考日期请输入"
msgid "Please enter Root Type for account- {0}"
msgstr "请输入账户-{0}的根类型"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:685
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:688
msgid "Please enter Serial No"
msgstr ""
@@ -37449,7 +37509,7 @@ msgid "Please enter Warehouse and Date"
msgstr "请输入仓库和日期"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:660
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1281
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1286
msgid "Please enter Write Off Account"
msgstr "请输入销账科目"
@@ -37469,7 +37529,7 @@ msgstr "请至少输入一个交货日期和数量"
msgid "Please enter company name first"
msgstr "请先输入公司名"
-#: erpnext/controllers/accounts_controller.py:2974
+#: erpnext/controllers/accounts_controller.py:2968
msgid "Please enter default currency in Company Master"
msgstr "请在公司设置中维护默认货币"
@@ -37497,7 +37557,7 @@ msgstr "请输入离职日期。"
msgid "Please enter serial nos"
msgstr "请输入序列号"
-#: erpnext/setup/doctype/company/company.js:214
+#: erpnext/setup/doctype/company/company.js:230
msgid "Please enter the company name to confirm"
msgstr "请输入公司名确认"
@@ -37565,11 +37625,11 @@ msgstr "请确保上述员工向其他在职员工汇报"
msgid "Please make sure the file you are using has 'Parent Account' column present in the header."
msgstr "请确保文件标题包含'上级账户'列"
-#: erpnext/setup/doctype/company/company.js:216
+#: erpnext/setup/doctype/company/company.js:232
msgid "Please make sure you really want to delete all the transactions for this company. Your master data will remain as it is. This action cannot be undone."
msgstr "不可撤销操作,确认要删除公司所有业务资料? 主数据将被保留"
-#: erpnext/stock/doctype/item/item.js:709
+#: erpnext/stock/doctype/item/item.js:691
msgid "Please mention 'Weight UOM' along with Weight."
msgstr "在库存页签填写了了单重,请填写重量单位。"
@@ -37628,7 +37688,7 @@ msgstr "请选择模板类型 以下载模板"
msgid "Please select Apply Discount On"
msgstr "请选择适用的折扣"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1884
+#: erpnext/selling/doctype/sales_order/sales_order.py:1910
msgid "Please select BOM against item {0}"
msgstr "请选择物料{0}的物料清单"
@@ -37644,7 +37704,7 @@ msgstr "请选择银行账户"
msgid "Please select Category first"
msgstr "请先选择类型。"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1490
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1492
#: erpnext/public/js/controllers/accounts.js:94
#: erpnext/public/js/controllers/accounts.js:145
msgid "Please select Charge Type first"
@@ -37674,7 +37734,7 @@ msgstr "请为资产保养日志选择完成日期"
msgid "Please select Customer first"
msgstr "请先选择公司"
-#: erpnext/setup/doctype/company/company.py:534
+#: erpnext/setup/doctype/company/company.py:538
msgid "Please select Existing Company for creating Chart of Accounts"
msgstr "请选择现有的公司创建会计科目表"
@@ -37683,8 +37743,8 @@ msgstr "请选择现有的公司创建会计科目表"
msgid "Please select Finished Good Item for Service Item {0}"
msgstr "请为服务项{0}选择产成品"
-#: erpnext/assets/doctype/asset/asset.js:752
-#: erpnext/assets/doctype/asset/asset.js:767
+#: erpnext/assets/doctype/asset/asset.js:754
+#: erpnext/assets/doctype/asset/asset.js:769
msgid "Please select Item Code first"
msgstr "请先选择物料号"
@@ -37716,11 +37776,11 @@ msgstr "请先选择记账日期"
msgid "Please select Price List"
msgstr "请选择价格表"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1886
+#: erpnext/selling/doctype/sales_order/sales_order.py:1912
msgid "Please select Qty against item {0}"
msgstr "请选择为物料{0}指定数量"
-#: erpnext/stock/doctype/item/item.py:389
+#: erpnext/stock/doctype/item/item.py:388
msgid "Please select Sample Retention Warehouse in Stock Settings first"
msgstr "请先在库存设置中选择样品仓"
@@ -37736,7 +37796,7 @@ msgstr "请为物料{0}选择开始日期和结束日期"
msgid "Please select Stock Asset Account"
msgstr "请选择库存资产科目"
-#: erpnext/controllers/accounts_controller.py:2823
+#: erpnext/controllers/accounts_controller.py:2824
msgid "Please select Unrealized Profit / Loss account or add default Unrealized Profit / Loss account account for company {0}"
msgstr "请在单据中维护公司内部交易未实现损益科目,或在公司 {0} 主数据中维护相应的默认科目"
@@ -37753,7 +37813,7 @@ msgstr "请选择一个公司"
#: erpnext/manufacturing/doctype/bom/bom.js:727
#: erpnext/manufacturing/doctype/bom/bom.py:280
#: erpnext/public/js/controllers/accounts.js:277
-#: erpnext/public/js/controllers/transaction.js:3288
+#: erpnext/public/js/controllers/transaction.js:3290
msgid "Please select a Company first."
msgstr "请先选择公司"
@@ -37777,7 +37837,7 @@ msgstr "请选择供应商"
msgid "Please select a Warehouse"
msgstr "请选择仓库"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1601
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1618
msgid "Please select a Work Order first."
msgstr "请先选择生产工单"
@@ -37850,11 +37910,15 @@ msgstr "请选择一个值{0} quotation_to {1}"
msgid "Please select an item code before setting the warehouse."
msgstr "请先设置物料编码再设置仓库"
+#: erpnext/controllers/item_variant.py:243
+msgid "Please select at least one attribute value"
+msgstr ""
+
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:43
msgid "Please select at least one filter: Item Code, Batch, or Serial No."
msgstr "请至少选择一个筛选条件:物料编码、批次或序列号"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:557
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:559
msgid "Please select at least one item to update delivered quantity."
msgstr ""
@@ -37874,7 +37938,7 @@ msgstr ""
msgid "Please select atleast one item to continue"
msgstr "请至少选择一个物料以继续操作"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:399
+#: erpnext/manufacturing/doctype/work_order/work_order.js:380
msgid "Please select atleast one operation to create Job Card"
msgstr "请至少选择一个工序以创建工卡"
@@ -37932,7 +37996,7 @@ msgstr "请选择公司"
msgid "Please select the Multiple Tier Program type for more than one collection rules."
msgstr "请为积分规则选择多等级积分方案。"
-#: erpnext/stock/doctype/item/item.js:371
+#: erpnext/stock/doctype/item/item.js:359
msgid "Please select the Warehouse first"
msgstr ""
@@ -37961,7 +38025,7 @@ msgstr "请选择有效单据类型"
msgid "Please select weekly off day"
msgstr "请选择每周休息日"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1208
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1210
#: erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py:618
msgid "Please select {0} first"
msgstr "请先选择{0}"
@@ -37970,11 +38034,11 @@ msgstr "请先选择{0}"
msgid "Please set 'Apply Additional Discount On'"
msgstr "请设置“额外折扣基于”"
-#: erpnext/assets/doctype/asset/depreciation.py:787
+#: erpnext/assets/doctype/asset/depreciation.py:789
msgid "Please set 'Asset Depreciation Cost Center' in Company {0}"
msgstr "请设置在公司的资产折旧成本中心“{0}"
-#: erpnext/assets/doctype/asset/depreciation.py:785
+#: erpnext/assets/doctype/asset/depreciation.py:787
msgid "Please set 'Gain/Loss Account on Asset Disposal' in Company {0}"
msgstr "请公司制定“关于资产处置收益/损失科目”{0}"
@@ -37986,7 +38050,7 @@ msgstr "请在公司{1}设置'{0}'"
msgid "Please set Account"
msgstr "请设置账户"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1881
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1976
msgid "Please set Account for Change Amount"
msgstr "请设置找零金额账户"
@@ -38016,7 +38080,7 @@ msgstr "请设公司"
msgid "Please set Customer Address to determine if the transaction is an export."
msgstr "请设置客户地址以确定交易是否为出口业务"
-#: erpnext/assets/doctype/asset/depreciation.py:749
+#: erpnext/assets/doctype/asset/depreciation.py:751
msgid "Please set Depreciation related Accounts in Asset Category {0} or Company {1}"
msgstr "请设置在资产类别{0}或公司折旧相关科目{1}"
@@ -38034,7 +38098,7 @@ msgstr "请为客户'%s'设置财务代码"
msgid "Please set Fiscal Code for the public administration '%s'"
msgstr "请为公共管理'%s'设置财政代码"
-#: erpnext/assets/doctype/asset/depreciation.py:735
+#: erpnext/assets/doctype/asset/depreciation.py:737
msgid "Please set Fixed Asset Account in Asset Category {0}"
msgstr "请在资产类别{0}中设置固定资产科目。"
@@ -38080,7 +38144,7 @@ msgstr "请设置公司"
msgid "Please set a Cost Center for the Asset or set an Asset Depreciation Cost Center for the Company {}"
msgstr "请为资产设置成本中心或为公司{}设置资产折旧成本中心"
-#: erpnext/projects/doctype/project/project.py:735
+#: erpnext/projects/doctype/project/project.py:773
msgid "Please set a default Holiday List for Company {0}"
msgstr "请为公司{0}设置默认假期列表"
@@ -38117,23 +38181,23 @@ msgstr "请在“税费和收费表”中至少设置一行"
msgid "Please set both the Tax ID and Fiscal Code on Company {0}"
msgstr "请为公司{0}同时设置税号和财政代码"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2418
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2524
msgid "Please set default Cash or Bank account in Mode of Payment {0}"
msgstr "请为付款方式{0}设置默认的现金或银行科目"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:94
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:198
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3026
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3132
msgid "Please set default Cash or Bank account in Mode of Payment {}"
msgstr "请在付款方式{}设置默认现金或银行账户"
#: erpnext/accounts/doctype/pos_opening_entry/pos_opening_entry.py:96
#: erpnext/accounts/doctype/pos_profile/pos_profile.py:200
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3028
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3134
msgid "Please set default Cash or Bank account in Mode of Payments {}"
msgstr "请在付款方式{}设置默认现金或银行账户"
-#: erpnext/accounts/utils.py:2541
+#: erpnext/accounts/utils.py:2540
msgid "Please set default Exchange Gain/Loss Account in Company {}"
msgstr "请在公司{}设置默认汇兑损益账户"
@@ -38162,7 +38226,7 @@ msgstr "请在公司{1}主数据中设置默认科目{0}"
msgid "Please set filter based on Item or Warehouse"
msgstr "根据物料或仓库请设置过滤条件"
-#: erpnext/controllers/accounts_controller.py:2384
+#: erpnext/controllers/accounts_controller.py:2385
msgid "Please set one of the following:"
msgstr "请设置以下其中一项:"
@@ -38170,7 +38234,7 @@ msgstr "请设置以下其中一项:"
msgid "Please set opening number of booked depreciations"
msgstr "请设置已登记折旧的期初数量。"
-#: erpnext/public/js/controllers/transaction.js:2676
+#: erpnext/public/js/controllers/transaction.js:2678
msgid "Please set recurring after saving"
msgstr "请保存后设置自动重复参数"
@@ -38182,15 +38246,15 @@ msgstr "请设置客户地址"
msgid "Please set the Default Cost Center in {0} company."
msgstr "请在{0}公司中设置默认成本中心。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:686
+#: erpnext/manufacturing/doctype/work_order/work_order.js:668
msgid "Please set the Item Code first"
msgstr "请先设定物料代码"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1664
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1681
msgid "Please set the Target Warehouse in the Job Card"
msgstr "请在工单中设置目标仓库"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1668
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1685
msgid "Please set the WIP Warehouse in the Job Card"
msgstr "请在工单中设置在制品仓库"
@@ -38229,7 +38293,7 @@ msgstr "请在物料清单创建器{1}中设置{0}"
msgid "Please set {0} in Company {1} to account for Exchange Gain / Loss"
msgstr "请在公司{1}设置{0}以核算汇兑损益"
-#: erpnext/controllers/accounts_controller.py:594
+#: erpnext/controllers/accounts_controller.py:595
msgid "Please set {0} to {1}, the same account that was used in the original invoice {2}."
msgstr "请将{0}设为{1},与原发票{2}使用的账户相同"
@@ -38251,7 +38315,7 @@ msgstr "请选择公司"
msgid "Please specify Company to proceed"
msgstr "请输入公司后继续"
-#: erpnext/controllers/accounts_controller.py:3207
+#: erpnext/controllers/accounts_controller.py:3201
#: erpnext/public/js/controllers/accounts.js:117
msgid "Please specify a valid Row ID for row {0} in table {1}"
msgstr "请指定行{0}在表中的有效行ID {1}"
@@ -38264,7 +38328,7 @@ msgstr "请先指定{0}"
msgid "Please specify at least one attribute in the Attributes table"
msgstr "请指定属性表中的至少一个属性"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:623
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:626
msgid "Please specify either Quantity or Valuation Rate or both"
msgstr "请输入数量或(和)成本价"
@@ -38369,8 +38433,8 @@ msgstr "邮政路线字符串"
msgid "Post Title Key"
msgstr "帖子标题密钥"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:122
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
msgid "Postal Expenses"
msgstr "邮政费用"
@@ -38435,7 +38499,7 @@ msgstr "过账日期"
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/loyalty_point_entry/loyalty_point_entry.json
#: erpnext/accounts/doctype/opening_invoice_creation_tool_item/opening_invoice_creation_tool_item.json
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:872
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:874
#: erpnext/accounts/doctype/payment_entry/payment_entry.json
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.json
#: erpnext/accounts/doctype/payment_order/payment_order.json
@@ -38453,7 +38517,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:1196
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1119
#: 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
@@ -38575,10 +38639,6 @@ msgstr "记账日期时间"
msgid "Posting Time"
msgstr "记账时间"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2519
-msgid "Posting date and posting time is mandatory"
-msgstr "记账日期和记账时间必填"
-
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:841
msgid "Posting date does not match the selected transaction"
msgstr ""
@@ -38652,18 +38712,23 @@ msgstr "由{0}驱动"
msgid "Pre Sales"
msgstr "售前"
-#: erpnext/accounts/utils.py:2779
+#: erpnext/accounts/utils.py:2778
msgid "Pre-Submit Warning"
msgstr ""
-#: erpnext/accounts/utils.py:2828
+#: erpnext/accounts/utils.py:2827
msgid "Pre-Submit Warning: Credit Limit"
msgstr ""
-#: erpnext/accounts/utils.py:2840
+#: erpnext/accounts/utils.py:2839
msgid "Pre-Submit Warning: Packed Qty"
msgstr ""
+#. Description of the 'Company Bank Account' (Link) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Pre-filled on payment entries for this customer. Must be a company account."
+msgstr ""
+
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:307
msgid "Preference"
msgstr "偏好"
@@ -38836,6 +38901,7 @@ msgstr "价格折扣板"
#. Option for the 'Rate Of Materials Based On' (Select) field in DocType 'BOM
#. Creator'
#. Label of the buying_price_list (Link) field in DocType 'BOM Creator'
+#. Label of the default_price_list (Link) field in DocType 'Customer'
#. Label of the selling_price_list (Link) field in DocType 'Quotation'
#. Label of the selling_price_list (Link) field in DocType 'Sales Order'
#. Label of a Link in the Selling Workspace
@@ -38859,6 +38925,7 @@ msgstr "价格折扣板"
#: erpnext/buying/workspace/buying/buying.json
#: erpnext/manufacturing/doctype/bom/bom.json
#: erpnext/manufacturing/doctype/bom_creator/bom_creator.json
+#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
#: erpnext/selling/report/customer_wise_item_price/customer_wise_item_price.py:44
@@ -38910,7 +38977,7 @@ msgstr "价格表国家"
msgid "Price List Currency"
msgstr "价格表货币"
-#: erpnext/stock/get_item_details.py:1334
+#: erpnext/stock/get_item_details.py:1357
msgid "Price List Currency not selected"
msgstr "价格表货币没有选择"
@@ -39265,7 +39332,7 @@ msgstr "打印收据"
msgid "Print Receipt on Order Complete"
msgstr "订单完成时打印收据"
-#: erpnext/setup/install.py:114
+#: erpnext/setup/install.py:115
msgid "Print UOM after Quantity"
msgstr "数量后打印计量单位"
@@ -39274,8 +39341,8 @@ msgstr "数量后打印计量单位"
msgid "Print Without Amount"
msgstr "不打印金额"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:123
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:202
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:207
msgid "Print and Stationery"
msgstr "打印和文具"
@@ -39283,7 +39350,7 @@ msgstr "打印和文具"
msgid "Print settings updated in respective print format"
msgstr "打印设置在相应的打印格式更新"
-#: erpnext/setup/install.py:121
+#: erpnext/setup/install.py:122
msgid "Print taxes with zero amount"
msgstr "零税额也打印"
@@ -39386,10 +39453,6 @@ msgstr "问题"
msgid "Procedure"
msgstr "程序"
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.js:47
-msgid "Procedures dropped"
-msgstr "存储过程已删除"
-
#. Label of the process_deferred_accounting (Link) field in DocType 'Journal
#. Entry'
#. Name of a DocType
@@ -39443,7 +39506,7 @@ msgstr "加工损耗百分比不能超过100"
msgid "Process Loss Qty"
msgstr "制程损耗数量"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:346
+#: erpnext/manufacturing/doctype/job_card/job_card.js:289
msgid "Process Loss Quantity"
msgstr "加工损耗量"
@@ -39524,6 +39587,10 @@ msgstr "处理订阅"
msgid "Process in Single Transaction"
msgstr "在单事务中处理"
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1461
+msgid "Process loss quantity cannot be negative."
+msgstr ""
+
#. Label of the processed_boms (Long Text) field in DocType 'BOM Update Log'
#: erpnext/manufacturing/doctype/bom_update_log/bom_update_log.json
msgid "Processed BOMs"
@@ -39619,8 +39686,8 @@ msgstr "产品"
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/workspace/buying/buying.json
-#: erpnext/public/js/controllers/buying.js:326
-#: erpnext/public/js/controllers/buying.js:611
+#: erpnext/public/js/controllers/buying.js:321
+#: erpnext/public/js/controllers/buying.js:606
#: erpnext/selling/doctype/product_bundle/product_bundle.json
#: erpnext/selling/workspace/selling/selling.json
#: erpnext/stock/doctype/purchase_receipt_item/purchase_receipt_item.json
@@ -39685,7 +39752,7 @@ msgstr "产品价格ID"
#. 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:474
+#: erpnext/setup/doctype/company/company.py:478
msgid "Production"
msgstr "生产"
@@ -39899,7 +39966,7 @@ msgstr "为任务进度百分比不能超过100个。"
msgid "Progress (%)"
msgstr "进展(%)"
-#: erpnext/projects/doctype/project/project.py:374
+#: erpnext/projects/doctype/project/project.py:412
msgid "Project Collaboration Invitation"
msgstr "项目合作邀请"
@@ -39943,7 +40010,7 @@ msgstr "项目状态"
msgid "Project Summary"
msgstr "项目汇总"
-#: erpnext/projects/doctype/project/project.py:673
+#: erpnext/projects/doctype/project/project.py:711
msgid "Project Summary for {0}"
msgstr "{0}的项目摘要"
@@ -40074,7 +40141,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:451
+#: erpnext/projects/doctype/project/project.py:489
#: erpnext/projects/workspace/projects/projects.json
#: erpnext/selling/doctype/customer/customer_dashboard.py:26
#: erpnext/selling/doctype/sales_order/sales_order_dashboard.py:28
@@ -40220,7 +40287,7 @@ msgid "Prospects Engaged But Not Converted"
msgstr "有跟进未转化线索"
#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:198
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:785
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:786
msgid "Protected DocType"
msgstr ""
@@ -40235,7 +40302,7 @@ msgstr "提供公司注册邮箱地址"
msgid "Providing"
msgstr "提供"
-#: erpnext/setup/doctype/company/company.py:573
+#: erpnext/setup/doctype/company/company.py:577
msgid "Provisional Account"
msgstr "暂记账户"
@@ -40307,8 +40374,9 @@ 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:462 erpnext/setup/install.py:404
+#: erpnext/setup/doctype/company/company.py:466 erpnext/setup/install.py:436
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:30
#: erpnext/stock/doctype/item_lead_time/item_lead_time.json
#: erpnext/stock/doctype/item_reorder/item_reorder.json
#: erpnext/stock/doctype/material_request/material_request.json
@@ -40631,7 +40699,7 @@ msgstr "采购订单{0}已创建"
msgid "Purchase Order {0} is not submitted"
msgstr "采购订单{0}未提交"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:922
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:933
msgid "Purchase Orders"
msgstr "采购订单"
@@ -40646,7 +40714,7 @@ msgstr ""
msgid "Purchase Orders Items Overdue"
msgstr "逾期采购订单"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:276
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:279
msgid "Purchase Orders are not allowed for {0} due to a scorecard standing of {1}."
msgstr "由于评分卡当前评级为{1},不允许下采购订单给{0}。"
@@ -40661,7 +40729,7 @@ msgstr "待开票采购订单"
msgid "Purchase Orders to Receive"
msgstr "待入库采购订单"
-#: erpnext/controllers/accounts_controller.py:2016
+#: erpnext/controllers/accounts_controller.py:2017
msgid "Purchase Orders {0} are un-linked"
msgstr "采购订单{0}已取消关联"
@@ -40795,7 +40863,7 @@ 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:145
+#: erpnext/setup/doctype/company/company.js:161
#: erpnext/workspace_sidebar/taxes.json
msgid "Purchase Tax Template"
msgstr "采购税费模板"
@@ -40893,6 +40961,7 @@ msgstr "采购"
#. Label of the purpose (Select) field in DocType 'Stock Reconciliation'
#: erpnext/assets/doctype/asset_movement/asset_movement.json
#: erpnext/manufacturing/doctype/master_production_schedule/master_production_schedule.js:163
+#: erpnext/stock/doctype/item/item_list.js:40
#: erpnext/stock/doctype/material_request/material_request.json
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/stock_entry/stock_entry.js:459
@@ -40902,10 +40971,6 @@ msgstr "采购"
msgid "Purpose"
msgstr "目的"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:574
-msgid "Purpose must be one of {0}"
-msgstr "目的必须是一个{0}"
-
#. Label of the purposes (Table) field in DocType 'Maintenance Visit'
#: erpnext/maintenance/doctype/maintenance_visit/maintenance_visit.json
msgid "Purposes"
@@ -40961,6 +41026,7 @@ msgstr ""
#. Label of the qty (Float) field in DocType 'Delivery Schedule Item'
#. Label of the qty (Float) field in DocType 'Product Bundle Item'
#. Label of the qty (Float) field in DocType 'Landed Cost Item'
+#. Label of the qty (Float) field in DocType 'Landed Cost Taxes and Charges'
#. Option for the 'Distribute Charges Based On' (Select) field in DocType
#. 'Landed Cost Voucher'
#. Label of the qty (Float) field in DocType 'Packed Item'
@@ -41009,6 +41075,7 @@ msgstr ""
#: erpnext/selling/doctype/sales_order/sales_order.js:1506
#: erpnext/selling/report/sales_order_analysis/sales_order_analysis.py:255
#: erpnext/stock/doctype/landed_cost_item/landed_cost_item.json
+#: erpnext/stock/doctype/landed_cost_taxes_and_charges/landed_cost_taxes_and_charges.json
#: erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.json
#: erpnext/stock/doctype/packed_item/packed_item.json
#: erpnext/stock/doctype/pick_list_item/pick_list_item.json
@@ -41117,11 +41184,11 @@ msgstr "每单位数量"
msgid "Qty To Manufacture"
msgstr "工单数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1441
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1442
msgid "Qty To Manufacture ({0}) cannot be a fraction for the UOM {2}. To allow this, disable '{1}' in the UOM {2}."
msgstr "待生产数量({0})不能是计量单位{2}的分数。若要允许,请在计量单位{2}中禁用'{1}'"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:260
+#: erpnext/manufacturing/doctype/job_card/job_card.py:261
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 ""
@@ -41172,8 +41239,8 @@ msgstr "数量(库存单位)"
msgid "Qty for which recursion isn't applicable."
msgstr "达到这个数量就送固定数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1063
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1086
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1045
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1068
msgid "Qty for {0}"
msgstr "{0} 数量"
@@ -41228,8 +41295,8 @@ msgstr ""
msgid "Qty to Fetch"
msgstr "待获取数量"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:318
-#: erpnext/manufacturing/doctype/job_card/job_card.py:890
+#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.py:893
msgid "Qty to Manufacture"
msgstr "生产数量"
@@ -41465,17 +41532,17 @@ msgstr "质检模板"
msgid "Quality Inspection Template Name"
msgstr "质检模板名称"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:799
+#: erpnext/manufacturing/doctype/job_card/job_card.py:800
msgid "Quality Inspection is required for the item {0} before completing the job card {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:810
-#: erpnext/manufacturing/doctype/job_card/job_card.py:819
+#: erpnext/manufacturing/doctype/job_card/job_card.py:811
+#: erpnext/manufacturing/doctype/job_card/job_card.py:820
msgid "Quality Inspection {0} is not submitted for the item: {1}"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:829
-#: erpnext/manufacturing/doctype/job_card/job_card.py:838
+#: erpnext/manufacturing/doctype/job_card/job_card.py:830
+#: erpnext/manufacturing/doctype/job_card/job_card.py:839
msgid "Quality Inspection {0} is rejected for the item: {1}"
msgstr ""
@@ -41489,7 +41556,7 @@ msgstr "质检单"
msgid "Quality Inspections"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:504
+#: erpnext/setup/doctype/company/company.py:508
msgid "Quality Management"
msgstr "质量管理"
@@ -41621,7 +41688,7 @@ msgstr ""
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:194
#: erpnext/manufacturing/doctype/plant_floor/plant_floor.js:218
#: erpnext/manufacturing/doctype/production_plan_sub_assembly_item/production_plan_sub_assembly_item.json
-#: erpnext/public/js/controllers/buying.js:618
+#: erpnext/public/js/controllers/buying.js:613
#: erpnext/public/js/stock_analytics.js:50
#: erpnext/public/js/utils/serial_no_batch_selector.js:500
#: erpnext/selling/doctype/quotation_item/quotation_item.json
@@ -41756,7 +41823,7 @@ msgstr ""
msgid "Quantity must be less than or equal to {0}"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1116
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1098
#: erpnext/stock/doctype/pick_list/pick_list.js:209
msgid "Quantity must not be more than {0}"
msgstr "数量不能超过{0}"
@@ -41766,21 +41833,21 @@ msgid "Quantity required for Item {0} in row {1}"
msgstr "请为第{1}行的物料{0}输入需求数量"
#: erpnext/manufacturing/doctype/bom/bom.py:724
-#: erpnext/manufacturing/doctype/job_card/job_card.js:399
-#: erpnext/manufacturing/doctype/job_card/job_card.js:469
+#: erpnext/manufacturing/doctype/job_card/job_card.js:342
+#: erpnext/manufacturing/doctype/job_card/job_card.js:410
#: erpnext/manufacturing/doctype/workstation/workstation.js:303
msgid "Quantity should be greater than 0"
msgstr "量应大于0"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:361
+#: erpnext/manufacturing/doctype/work_order/work_order.js:342
msgid "Quantity to Manufacture"
msgstr "生产数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2646
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2647
msgid "Quantity to Manufacture can not be zero for the operation {0}"
msgstr "工序 {0} 生产数量不能为0"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1433
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1434
msgid "Quantity to Manufacture must be greater than 0."
msgstr "生产数量应大于0。"
@@ -41803,7 +41870,7 @@ msgstr "干量夸脱(美制)"
msgid "Quart Liquid (US)"
msgstr "液量夸脱(美制)"
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:437
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:461
#: erpnext/stock/report/stock_analytics/stock_analytics.py:125
msgid "Quarter {0} {1}"
msgstr "{1} {0}季度"
@@ -41922,11 +41989,11 @@ msgstr "报价对象"
msgid "Quotation Trends"
msgstr "报价趋势"
-#: erpnext/selling/doctype/sales_order/sales_order.py:489
+#: erpnext/selling/doctype/sales_order/sales_order.py:498
msgid "Quotation {0} is cancelled"
msgstr "报价{0}已被取消"
-#: erpnext/selling/doctype/sales_order/sales_order.py:402
+#: erpnext/selling/doctype/sales_order/sales_order.py:417
msgid "Quotation {0} not of type {1}"
msgstr "报价{0} 不属于{1}类型"
@@ -42233,7 +42300,7 @@ msgstr "供应商的货币转换为公司的本币后的单价"
msgid "Rate at which this tax is applied"
msgstr "此科目的默认税率"
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Rate of '{}' items cannot be changed"
msgstr ""
@@ -42399,7 +42466,7 @@ msgstr "外发原材料"
msgid "Raw Materials Consumption"
msgstr "原材料耗用"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:320
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:60
msgid "Raw Materials Missing"
msgstr ""
@@ -42438,12 +42505,6 @@ msgstr "原材料不能为空。"
msgid "Raw Materials to Customer"
msgstr "发往客户的原材料"
-#. Option for the 'Data Fetch Method' (Select) field in DocType 'Accounts
-#. Settings'
-#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
-msgid "Raw SQL"
-msgstr "原始SQL"
-
#. Description of the 'Validate consumed quantity (as per BOM)' (Check) field
#. in DocType 'Buying Settings'
#: erpnext/buying/doctype/buying_settings/buying_settings.json
@@ -42452,7 +42513,7 @@ msgstr ""
#: erpnext/buying/doctype/purchase_order/purchase_order.js:345
#: erpnext/manufacturing/doctype/production_plan/production_plan.js:124
-#: erpnext/manufacturing/doctype/work_order/work_order.js:785
+#: erpnext/manufacturing/doctype/work_order/work_order.js:767
#: 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
@@ -42633,7 +42694,7 @@ msgid "Receivable / Payable Account"
msgstr "应收/应付账款"
#: erpnext/accounts/report/accounts_receivable/accounts_receivable.js:79
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1135
#: erpnext/accounts/report/item_wise_sales_register/item_wise_sales_register.py:241
#: erpnext/accounts/report/sales_register/sales_register.py:217
#: erpnext/accounts/report/sales_register/sales_register.py:271
@@ -43094,7 +43155,7 @@ msgstr "参考 #"
msgid "Reference #{0} dated {1}"
msgstr "参考# {0}记载日期为{1}"
-#: erpnext/public/js/controllers/transaction.js:2789
+#: erpnext/public/js/controllers/transaction.js:2791
msgid "Reference Date for Early Payment Discount"
msgstr "提前付款折扣的参考日期"
@@ -43258,11 +43319,11 @@ msgstr "参考:{0},物料代号:{1}和客户:{2}"
msgid "References"
msgstr "参考"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:403
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:404
msgid "References to Sales Invoices are Incomplete"
msgstr "销售发票参考不完整"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:395
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:396
msgid "References to Sales Orders are Incomplete"
msgstr "销售订单参考不完整"
@@ -43424,7 +43485,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:1289
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1212
#: erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py:180
msgid "Remaining Balance"
msgstr "余额"
@@ -43482,7 +43543,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:1321
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1244
#: 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:112
@@ -43546,7 +43607,7 @@ msgstr "在物料属性中重命名属性值。"
msgid "Rename Log"
msgstr "重命名日志"
-#: erpnext/accounts/doctype/account/account.py:558
+#: erpnext/accounts/doctype/account/account.py:568
msgid "Rename Not Allowed"
msgstr "不能重命名"
@@ -43563,7 +43624,7 @@ msgstr "已为文档类型{0}的批量重命名任务加入队列。"
msgid "Rename jobs for doctype {0} have not been enqueued."
msgstr "未能将文档类型{0}的批量重命名任务加入队列。"
-#: erpnext/accounts/doctype/account/account.py:550
+#: erpnext/accounts/doctype/account/account.py:560
msgid "Renaming it is only allowed via parent company {0}, to avoid mismatch."
msgstr "为避免冲突,仅允许通过母公司{0}重命名"
@@ -43687,7 +43748,7 @@ msgstr ""
msgid "Report Type is mandatory"
msgstr "报表类型必填"
-#: erpnext/setup/install.py:216
+#: erpnext/setup/install.py:248
msgid "Report an Issue"
msgstr "提交一个问题"
@@ -43932,7 +43993,7 @@ msgstr "索取资料"
#: erpnext/buying/doctype/buying_settings/buying_settings.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:328
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:430
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:434
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.js:88
#: erpnext/buying/doctype/supplier_quotation_item/supplier_quotation_item.json
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:70
@@ -44113,7 +44174,7 @@ msgstr "需要履行"
msgid "Research"
msgstr "研究"
-#: erpnext/setup/doctype/company/company.py:510
+#: erpnext/setup/doctype/company/company.py:514
msgid "Research & Development"
msgstr "研究与发展"
@@ -44158,7 +44219,7 @@ msgstr "预留管理"
msgid "Reservation Based On"
msgstr "预留类型"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:943
+#: erpnext/manufacturing/doctype/work_order/work_order.js:925
#: erpnext/selling/doctype/sales_order/sales_order.js:107
#: erpnext/stock/doctype/pick_list/pick_list.js:153
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:179
@@ -44202,7 +44263,7 @@ msgstr "子装配件预留"
msgid "Reserved"
msgstr "预留"
-#: erpnext/controllers/stock_controller.py:1329
+#: erpnext/controllers/stock_controller.py:1330
msgid "Reserved Batch Conflict"
msgstr ""
@@ -44272,14 +44333,14 @@ msgstr "预留数量"
msgid "Reserved Quantity for Production"
msgstr "生产预留数量"
-#: erpnext/stock/stock_ledger.py:2340
+#: erpnext/stock/stock_ledger.py:2306
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:959
+#: erpnext/manufacturing/doctype/work_order/work_order.js:941
#: 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
@@ -44288,13 +44349,13 @@ msgstr "预留序列号"
#: erpnext/stock/doctype/pick_list/pick_list.js:173
#: erpnext/stock/report/reserved_stock/reserved_stock.json
#: erpnext/stock/report/stock_balance/stock_balance.py:576
-#: erpnext/stock/stock_ledger.py:2324
+#: erpnext/stock/stock_ledger.py:2290
#: 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:2369
+#: erpnext/stock/stock_ledger.py:2335
msgid "Reserved Stock for Batch"
msgstr "批次预留库存"
@@ -44560,7 +44621,7 @@ msgstr "结果标题字段"
msgid "Resume"
msgstr "恢复"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:247
+#: erpnext/manufacturing/doctype/job_card/job_card.js:659
msgid "Resume Job"
msgstr "恢复作业"
@@ -44585,8 +44646,8 @@ msgstr "零售商"
msgid "Retain Sample"
msgstr "保留样品"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:196
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:348
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:200
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
msgid "Retained Earnings"
msgstr "留存收益"
@@ -44661,7 +44722,7 @@ msgstr "被退货源单"
msgid "Return Against Subcontracting Receipt"
msgstr "源委外入库"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:302
+#: erpnext/manufacturing/doctype/work_order/work_order.js:283
msgid "Return Components"
msgstr "原材料退回"
@@ -44697,7 +44758,7 @@ msgstr "拒收仓退货数量"
msgid "Return Raw Material to Customer"
msgstr "向客户退回原材料"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1524
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1538
msgid "Return invoice of asset cancelled"
msgstr "资产退货发票已取消"
@@ -44795,8 +44856,8 @@ msgstr "退货"
msgid "Revaluation Journals"
msgstr "汇率重估日记账凭证"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:197
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:353
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:201
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:358
msgid "Revaluation Surplus"
msgstr "重估盈余"
@@ -45028,7 +45089,7 @@ msgstr "{0}的根类型必须是资产、负债、收入、费用或权益"
msgid "Root Type is mandatory"
msgstr "一级科目类型是必填字段"
-#: erpnext/accounts/doctype/account/account.py:215
+#: erpnext/accounts/doctype/account/account.py:219
msgid "Root cannot be edited."
msgstr "根不能被编辑。"
@@ -45047,8 +45108,8 @@ msgstr "赠品数量取整"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the round_off_section (Section Break) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:124
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:206
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
#: erpnext/accounts/report/account_balance/account_balance.js:56
#: erpnext/setup/doctype/company/company.json
msgid "Round Off"
@@ -45228,21 +45289,21 @@ msgstr "行#{0}:单价不能大于{1} {2}中使用的单价"
msgid "Row # {0}: Returned Item {1} does not exist in {2} {3}"
msgstr "第{0}行:退回物料{1}在{2} {3}中不存在"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:279
+#: erpnext/manufacturing/doctype/work_order/work_order.py:280
msgid "Row #1: Sequence ID must be 1 for Operation {0}."
msgstr "第1行:工序{0}的序列ID必须为1。"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:565
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2073
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2177
msgid "Row #{0} (Payment Table): Amount must be negative"
msgstr "行#{0}(付款表):金额必须为负数"
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.py:563
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2068
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2172
msgid "Row #{0} (Payment Table): Amount must be positive"
msgstr "行#{0}(付款表):金额必须为正值"
-#: erpnext/stock/doctype/item/item.py:582
+#: erpnext/stock/doctype/item/item.py:581
msgid "Row #{0}: A reorder entry already exists for warehouse {1} with reorder type {2}."
msgstr "行号{0}:仓库{1}已存在类型为{2}的再订货条目"
@@ -45263,7 +45324,7 @@ msgstr "行号{0}:验收仓库与拒收仓库不能相同"
msgid "Row #{0}: Accepted Warehouse is mandatory for the accepted Item {1}"
msgstr "行号{0}:验收物料{1}必须指定验收仓库"
-#: erpnext/controllers/accounts_controller.py:1294
+#: erpnext/controllers/accounts_controller.py:1295
msgid "Row #{0}: Account {1} does not belong to company {2}"
msgstr "第 {0} 行 :科目 {1} 不是公司 {3} 的有效科目"
@@ -45324,31 +45385,31 @@ msgstr "第{0}行:无法取消本库存凭证,因关联外包收货订单中
msgid "Row #{0}: Cannot create entry with different taxable AND withholding document links."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3802
+#: erpnext/controllers/accounts_controller.py:3808
msgid "Row #{0}: Cannot delete item {1} which has already been billed."
msgstr "第{0}行: 不能删除已开票物料 {1}"
-#: erpnext/controllers/accounts_controller.py:3776
+#: erpnext/controllers/accounts_controller.py:3782
msgid "Row #{0}: Cannot delete item {1} which has already been delivered"
msgstr "第{0}行: 不能删除已出货物料 {1}"
-#: erpnext/controllers/accounts_controller.py:3795
+#: erpnext/controllers/accounts_controller.py:3801
msgid "Row #{0}: Cannot delete item {1} which has already been received"
msgstr "第{0}行: 不能删除已收货物料 {1}"
-#: erpnext/controllers/accounts_controller.py:3782
+#: erpnext/controllers/accounts_controller.py:3788
msgid "Row #{0}: Cannot delete item {1} which has work order assigned to it."
msgstr "第{0}行: 不能删除已关联工单的物料 {1}"
-#: erpnext/controllers/accounts_controller.py:3788
+#: erpnext/controllers/accounts_controller.py:3794
msgid "Row #{0}: Cannot delete item {1} which is already ordered against this Sales Order."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3936
+#: erpnext/controllers/accounts_controller.py:3942
msgid "Row #{0}: Cannot set Rate if the billed amount is greater than the amount for Item {1}."
msgstr "第{0}行:开票金额超过物料{1}金额时不可设置费率。"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1128
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1136
msgid "Row #{0}: Cannot transfer more than Required Qty {1} for Item {2} against Job Card {3}"
msgstr "第 {0} 行:对生产任务单 {3} 发物料 {2} 不可超过需求量 {1}"
@@ -45398,11 +45459,11 @@ msgstr "第{0}行:针对外包收货订单物料{2}({3})的客户提供物
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times in the Subcontracting Inward process."
msgstr "第{0}行:客户提供物料{1}在外包收货流程中不可重复添加。"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:356
+#: erpnext/manufacturing/doctype/work_order/work_order.py:357
msgid "Row #{0}: Customer Provided Item {1} cannot be added multiple times."
msgstr "第{0}行:客户提供物料{1}不可重复添加。"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:381
+#: erpnext/manufacturing/doctype/work_order/work_order.py:382
msgid "Row #{0}: Customer Provided Item {1} does not exist in the Required Items table linked to the Subcontracting Inward Order."
msgstr "第{0}行:客户提供物料{1}不存在于关联外包收货订单的所需物料表中。"
@@ -45410,7 +45471,7 @@ msgstr "第{0}行:客户提供物料{1}不存在于关联外包收货订单的
msgid "Row #{0}: Customer Provided Item {1} exceeds quantity available through Subcontracting Inward Order"
msgstr "第{0}行:客户提供物料{1}超出外包收货订单可用数量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:369
+#: erpnext/manufacturing/doctype/work_order/work_order.py:370
msgid "Row #{0}: Customer Provided Item {1} has insufficient quantity in the Subcontracting Inward Order. Available quantity is {2}."
msgstr "第{0}行:外包收货订单中客户提供物料{1}数量不足。可用数量为{2}。"
@@ -45427,7 +45488,7 @@ msgstr "第{0}行:客户提供物料{1}不属于工作订单{2}"
msgid "Row #{0}: Dates overlapping with other row in group {1}"
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:337
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:340
msgid "Row #{0}: Default BOM not found for FG Item {1}"
msgstr "行号#{0}:产成品{1}未找到默认物料清单(BOM)"
@@ -45451,22 +45512,22 @@ msgstr "第 {0} 行:物料 {1}. {2} 差异科目必填"
msgid "Row #{0}: Expense account {1} is not valid for Purchase Invoice {2}. Only expense accounts from non-stock items are allowed."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:342
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:345
#: erpnext/selling/doctype/sales_order/sales_order.py:307
msgid "Row #{0}: Finished Good Item Qty can not be zero"
msgstr "行号#{0}:产成品数量不能为零"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:324
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:327
#: erpnext/selling/doctype/sales_order/sales_order.py:287
msgid "Row #{0}: Finished Good Item is not specified for service item {1}"
msgstr "行号#{0}:服务项{1}未指定产成品"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:331
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:334
#: erpnext/selling/doctype/sales_order/sales_order.py:294
msgid "Row #{0}: Finished Good Item {1} must be a sub-contracted item"
msgstr "行号#{0}:产成品{1}必须为外协物料"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:530
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:395
msgid "Row #{0}: Finished Good must be {1}"
msgstr "行号#{0}:产成品必须为{1}"
@@ -45495,7 +45556,7 @@ msgstr ""
msgid "Row #{0}: From Date cannot be before To Date"
msgstr "行号#{0}:起始日期不能早于截止日期"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:880
+#: erpnext/manufacturing/doctype/job_card/job_card.py:881
msgid "Row #{0}: From Time and To Time fields are required"
msgstr "第{0}行:必须填写起止时间。"
@@ -45503,7 +45564,7 @@ msgstr "第{0}行:必须填写起止时间。"
msgid "Row #{0}: Item added"
msgstr "行#{0}:已添加"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1629
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:78
msgid "Row #{0}: Item {1} cannot be transferred more than {2} against {3} {4}"
msgstr ""
@@ -45531,7 +45592,7 @@ msgstr ""
msgid "Row #{0}: Item {1} is not a Customer Provided Item."
msgstr "第{0}行:物料{1}不是客户提供物料。"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:766
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:769
msgid "Row #{0}: Item {1} is not a Serialized/Batched Item. It cannot have a Serial No/Batch No against it."
msgstr "第{0}行: 物料未启用序列号/批号,不能为其设置序列号/批号"
@@ -45572,7 +45633,7 @@ msgstr "第{0}行:下次折旧日期不得早于启用日期。"
msgid "Row #{0}: Next Depreciation Date cannot be before Purchase Date"
msgstr "第{0}行:下次折旧日期不得早于采购日期。"
-#: erpnext/selling/doctype/sales_order/sales_order.py:675
+#: erpnext/selling/doctype/sales_order/sales_order.py:682
msgid "Row #{0}: Not allowed to change Supplier as Purchase Order already exists"
msgstr "行#{0}:因采购订单已经存在不能再更改供应商"
@@ -45584,10 +45645,6 @@ msgstr "第 {0} 行:物料 {2} 可预留库存数量仅有 {1}"
msgid "Row #{0}: Opening Accumulated Depreciation must be less than or equal to {1}"
msgstr "第{0}行:期初累计折旧不得超过{1}。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:955
-msgid "Row #{0}: Operation {1} is not completed for {2} qty of finished goods in Work Order {3}. Please update operation status via Job Card {4}."
-msgstr "第{0}行生产工单{3}成品数量{2}工序{1}未完成。请在生产任务单{4}上更新工序状态。"
-
#: erpnext/controllers/subcontracting_inward_controller.py:208
#: erpnext/controllers/subcontracting_inward_controller.py:342
msgid "Row #{0}: Overconsumption of Customer Provided Item {1} against Work Order {2} is not allowed in the Subcontracting Inward process."
@@ -45609,11 +45666,11 @@ msgstr "第{0}行:请选择将使用此客户提供物料的产成品物料。
msgid "Row #{0}: Please select the Sub Assembly Warehouse"
msgstr "行号#{0}:请选择子装配仓库"
-#: erpnext/stock/doctype/item/item.py:589
+#: erpnext/stock/doctype/item/item.py:588
msgid "Row #{0}: Please set reorder quantity"
msgstr "行#{0}:请设置重订货点数量"
-#: erpnext/controllers/accounts_controller.py:617
+#: erpnext/controllers/accounts_controller.py:618
msgid "Row #{0}: Please update deferred revenue/expense account in item row or default account in company master"
msgstr "行号#{0}:请更新物料行的递延收入/费用科目或公司主数据的默认科目"
@@ -45635,15 +45692,15 @@ msgstr "行号#{0}:数量必须为正数"
msgid "Row #{0}: Qty should be less than or equal to Available Qty to Reserve (Actual Qty - Reserved Qty) {1} for Iem {2} against Batch {3} in Warehouse {4}."
msgstr "第 {0} 行:物料 {2} 批号 {3} 在仓库 {4} 中预留数量须 <= 可预留数量(实际数量 - 已预留数量) {1}"
-#: erpnext/controllers/stock_controller.py:1466
+#: erpnext/controllers/stock_controller.py:1467
msgid "Row #{0}: Quality Inspection is required for Item {1}"
msgstr "行号#{0}:物料{1}需进行质量检验"
-#: erpnext/controllers/stock_controller.py:1481
+#: erpnext/controllers/stock_controller.py:1482
msgid "Row #{0}: Quality Inspection {1} is not submitted for the item: {2}"
msgstr "行号#{0}:物料{2}的质量检验{1}未提交"
-#: erpnext/controllers/stock_controller.py:1496
+#: erpnext/controllers/stock_controller.py:1497
msgid "Row #{0}: Quality Inspection {1} was rejected for item {2}"
msgstr "行号#{0}:物料{2}的质量检验{1}被拒收"
@@ -45651,7 +45708,7 @@ msgstr "行号#{0}:物料{2}的质量检验{1}被拒收"
msgid "Row #{0}: Quantity cannot be a non-positive number. Please increase the quantity or remove the Item {1}"
msgstr "第{0}行:数量不能为非正数。请增加数量或移除物料{1}"
-#: erpnext/controllers/accounts_controller.py:1457
+#: erpnext/controllers/accounts_controller.py:1458
msgid "Row #{0}: Quantity for Item {1} cannot be zero."
msgstr "行号#{0}:物料{1}数量不能为零"
@@ -45667,18 +45724,18 @@ msgstr ""
msgid "Row #{0}: Quantity to reserve for the Item {1} should be greater than 0."
msgstr "第 {0} 行:物料 {1} 预留数量须大于 0"
-#: erpnext/controllers/accounts_controller.py:872
-#: erpnext/controllers/accounts_controller.py:884
+#: erpnext/controllers/accounts_controller.py:873
+#: erpnext/controllers/accounts_controller.py:885
#: erpnext/utilities/transaction_base.py:172
#: erpnext/utilities/transaction_base.py:178
msgid "Row #{0}: Rate must be same as {1}: {2} ({3} / {4})"
msgstr "行#{0}:单价必须与{1}:{2}({3} / {4})相同"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1240
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1242
msgid "Row #{0}: Reference Document Type must be one of Purchase Order, Purchase Invoice or Journal Entry"
msgstr "行#{0}:源单据类型必须是采购订单、采购发票或日记账凭证"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1226
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1228
msgid "Row #{0}: Reference Document Type must be one of Sales Order, Sales Invoice, Journal Entry or Dunning"
msgstr "行号#{0}:参考单据类型必须为销售订单、销售发票、日记账或催款单"
@@ -45717,7 +45774,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:285
+#: erpnext/manufacturing/doctype/work_order/work_order.py:286
msgid "Row #{0}: Sequence ID must be {1} or {2} for Operation {3}."
msgstr "第{0}行:工序{3}的序列ID必须为{1}或{2}。"
@@ -45737,19 +45794,19 @@ msgstr "第 {0} 行:序列号 {1} 已被选择"
msgid "Row #{0}: Serial No(s) {1} are not a part of the linked Subcontracting Inward Order. Please select valid Serial No(s)."
msgstr "第{0}行:序列号{1}不属于关联的外包收货订单。请选择有效的序列号。"
-#: erpnext/controllers/accounts_controller.py:645
+#: erpnext/controllers/accounts_controller.py:646
msgid "Row #{0}: Service End Date cannot be before Invoice Posting Date"
msgstr "第{0}行: 服务结束日不能早于发票记账日"
-#: erpnext/controllers/accounts_controller.py:639
+#: erpnext/controllers/accounts_controller.py:640
msgid "Row #{0}: Service Start Date cannot be greater than Service End Date"
msgstr "第{0}行:服务开始日不能晚于服务结束日"
-#: erpnext/controllers/accounts_controller.py:633
+#: erpnext/controllers/accounts_controller.py:634
msgid "Row #{0}: Service Start and End Date is required for deferred accounting"
msgstr "第{0}行:递延会计处理,服务开始与结束日必填"
-#: erpnext/selling/doctype/sales_order/sales_order.py:497
+#: erpnext/selling/doctype/sales_order/sales_order.py:506
msgid "Row #{0}: Set Supplier for item {1}"
msgstr "行#{0}:请为物料{1}分派供应商"
@@ -45761,19 +45818,19 @@ msgstr "第{0}行:因已启用“追踪半成品”,物料清单{1}不可用
msgid "Row #{0}: Source Warehouse must be same as Customer Warehouse {1} from the linked Subcontracting Inward Order"
msgstr "第{0}行:源仓库必须与关联外包收货订单中的客户仓库{1}相同"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:390
+#: erpnext/manufacturing/doctype/work_order/work_order.py:391
msgid "Row #{0}: Source Warehouse {1} for item {2} cannot be a customer warehouse."
msgstr "第{0}行:物料{2}的源仓库{1}不能是客户仓库。"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:345
+#: erpnext/manufacturing/doctype/work_order/work_order.py:346
msgid "Row #{0}: Source Warehouse {1} for item {2} must be same as Source Warehouse {3} in the Work Order."
msgstr "第{0}行:物料{2}的源仓库{1}必须与工作订单中的源仓库{3}相同。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1102
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:40
msgid "Row #{0}: Source and Target Warehouse cannot be the same for Material Transfer"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1124
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:62
msgid "Row #{0}: Source, Target Warehouse and Inventory Dimensions cannot be the exact same for Material Transfer"
msgstr ""
@@ -45789,6 +45846,10 @@ msgstr "行号#{0}:状态为必填项"
msgid "Row #{0}: Status must be {1} for Invoice Discounting {2}"
msgstr "行#{0}:发票贴现的状态必须为{1} {2}"
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:485
+msgid "Row #{0}: Stock Delivered But Not Billed account cannot be used for items linked to a Sales Invoice"
+msgstr ""
+
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:403
msgid "Row #{0}: Stock cannot be reserved for Item {1} against a disabled Batch {2}."
msgstr "第 {0} 行: 物料 {1} 预留数量不可使用无效批号 {2}"
@@ -45805,7 +45866,7 @@ msgstr "行号#{0}:不可在组仓库{1}预留库存"
msgid "Row #{0}: Stock is already reserved for the Item {1}."
msgstr "行号#{0}:物料{1}已预留库存"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:557
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:598
msgid "Row #{0}: Stock is reserved for item {1} in warehouse {2}."
msgstr "行号#{0}:仓库{2}中物料{1}的库存已预留"
@@ -45818,7 +45879,7 @@ msgstr "第 {0} 行:物料 {1} 批号 {2} 在仓库 {3} 中无可预留数量"
msgid "Row #{0}: Stock not available to reserve for the Item {1} in Warehouse {2}."
msgstr "第 {0} 行:仓库 {2} 中物料 {1}无可预留库存"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1267
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1272
msgid "Row #{0}: Stock quantity {1} ({2}) for item {3} cannot exceed {4}"
msgstr "第{0}行:物料{3}的库存数量{1}({2})不得超过{4}"
@@ -45830,7 +45891,7 @@ msgstr "第{0}行:目标仓库必须与关联外包收货订单中的客户仓
msgid "Row #{0}: The batch {1} has already expired."
msgstr "第{0}行:批号 {1} 已过期"
-#: erpnext/stock/doctype/item/item.py:598
+#: erpnext/stock/doctype/item/item.py:597
msgid "Row #{0}: The warehouse {1} is not a child warehouse of a group warehouse {2}"
msgstr "行号#{0}:仓库{1}不是组仓库{2}的子仓库"
@@ -45866,7 +45927,7 @@ msgstr "行号#{0}:库存对账中不可使用库存维度'{1}'修改数量或
msgid "Row #{0}: You must select an Asset for Item {1}."
msgstr "行号#{0}:必须为物料{1}选择资产"
-#: erpnext/public/js/controllers/buying.js:266
+#: erpnext/public/js/controllers/buying.js:261
msgid "Row #{0}: {1} can not be negative for item {2}"
msgstr "行#{0}:{1}不能为负值对项{2}"
@@ -45882,7 +45943,7 @@ msgstr "行号#{0}:创建期初{2}发票需提供{1}"
msgid "Row #{0}: {1} of {2} should be {3}. Please update the {1} or select a different account."
msgstr "行号#{0}:{2}的{1}应为{3},请更新{1}或选择其他科目"
-#: erpnext/controllers/accounts_controller.py:4042
+#: erpnext/controllers/accounts_controller.py:4048
msgid "Row #{0}:Quantity for Item {1} cannot be zero."
msgstr ""
@@ -45983,7 +46044,7 @@ msgstr "行号#{}:{}"
msgid "Row #{}: {} {} does not exist."
msgstr "行号#{}:{} {}不存在"
-#: erpnext/stock/doctype/item/item.py:1520
+#: erpnext/stock/doctype/item/item.py:1524
msgid "Row #{}: {} {} doesn't belong to Company {}. Please select valid {}."
msgstr "行号#{}:{} {}不属于公司{},请选择有效的{}"
@@ -45991,7 +46052,7 @@ msgstr "行号#{}:{} {}不属于公司{},请选择有效的{}"
msgid "Row No {0}: Warehouse is required. Please set a Default Warehouse for Item {1} and Company {2}"
msgstr "行号{0}:必须指定仓库,请为物料{1}和公司{2}设置默认仓库"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:747
+#: erpnext/manufacturing/doctype/job_card/job_card.py:748
msgid "Row {0} : Operation is required against the raw material item {1}"
msgstr "第{0}行,原材料 {1} 工序信息必填"
@@ -45999,7 +46060,7 @@ msgstr "第{0}行,原材料 {1} 工序信息必填"
msgid "Row {0} picked quantity is less than the required quantity, additional {1} {2} required."
msgstr "第 {0} 行拣货数量少于需求数量,短缺 {1} {2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1653
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:94
msgid "Row {0}# Item {1} not found in 'Raw Materials Supplied' table in {2} {3}"
msgstr "行号{0}# 在{2} {3}的'供应原材料'表中未找到物料{1}"
@@ -46031,11 +46092,11 @@ msgstr "行号{0}:分配金额{1}不能超过发票未结金额{2}"
msgid "Row {0}: Allocated amount {1} must be less than or equal to remaining payment amount {2}"
msgstr "行号{0}:分配金额{1}不能超过剩余付款金额{2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1314
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:699
msgid "Row {0}: As {1} is enabled, raw materials cannot be added to {2} entry. Use {3} entry to consume raw materials."
msgstr "第 {0} 行:生产设置中已勾选 入库成品原材料成本取自工单耗用,工单入库中不允许倒扣原材料,请创建工单耗用物料移动消耗原材料"
-#: erpnext/stock/doctype/material_request/material_request.py:862
+#: erpnext/stock/doctype/material_request/material_request.py:861
msgid "Row {0}: Bill of Materials not found for the Item {1}"
msgstr "没有为第{0}行的物料{1}定义物料清单"
@@ -46052,7 +46113,7 @@ msgstr ""
msgid "Row {0}: Conversion Factor is mandatory"
msgstr "行{0}:转换系数必填"
-#: erpnext/controllers/accounts_controller.py:3245
+#: erpnext/controllers/accounts_controller.py:3239
msgid "Row {0}: Cost Center {1} does not belong to Company {2}"
msgstr "第 {0} 行 :成本中心 {1} 不是公司 {3} 的有效成本中心"
@@ -46072,7 +46133,7 @@ msgstr "行{0}:BOM#的货币{1}应等于所选货币{2}"
msgid "Row {0}: Debit entry can not be linked with a {1}"
msgstr "第{0}行:借方不能与{1}关联"
-#: erpnext/controllers/selling_controller.py:879
+#: erpnext/controllers/selling_controller.py:880
msgid "Row {0}: Delivery Warehouse ({1}) and Customer Warehouse ({2}) can not be same"
msgstr "第{0}行:出货仓 ({1}) 不能与客户仓 ({2}) 相同"
@@ -46080,7 +46141,7 @@ msgstr "第{0}行:出货仓 ({1}) 不能与客户仓 ({2}) 相同"
msgid "Row {0}: Delivery Warehouse cannot be same as Customer Warehouse for Item {1}."
msgstr "第{0}行:物料{1}的交货仓库不能与客户仓库相同。"
-#: erpnext/controllers/accounts_controller.py:2736
+#: erpnext/controllers/accounts_controller.py:2737
msgid "Row {0}: Due Date in the Payment Terms table cannot be before Posting Date"
msgstr "第{0}行: 付款计划中的到期日不能早于记账日"
@@ -46125,16 +46186,16 @@ msgstr "行号{0}:供应商{1}必须填写邮箱地址以发送邮件"
msgid "Row {0}: From Time and To Time is mandatory."
msgstr "行{0}:开始和结束时间必填。"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:325
+#: erpnext/manufacturing/doctype/job_card/job_card.py:326
#: erpnext/projects/doctype/timesheet/timesheet.py:225
msgid "Row {0}: From Time and To Time of {1} is overlapping with {2}"
msgstr "行{0}:{1} 与 {2} 的开始与结束时间有重叠"
-#: erpnext/controllers/stock_controller.py:1562
+#: erpnext/controllers/stock_controller.py:1563
msgid "Row {0}: From Warehouse is mandatory for internal transfers"
msgstr "第 {0} 行,直接调拨发料仓必填"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:316
+#: erpnext/manufacturing/doctype/job_card/job_card.py:317
msgid "Row {0}: From time must be less than to time"
msgstr "第{0}行:开始时间必须早于结束时间"
@@ -46150,7 +46211,7 @@ msgstr "第{0}行:无效参考{1}"
msgid "Row {0}: Item Tax template updated as per validity and rate applied"
msgstr "行号{0}:物料税模板已按有效税率更新"
-#: erpnext/controllers/selling_controller.py:644
+#: erpnext/controllers/selling_controller.py:645
msgid "Row {0}: Item rate has been updated as per valuation rate since its an internal stock transfer"
msgstr "行号{0}:内部调拨时物料单价已按估价率更新"
@@ -46174,7 +46235,7 @@ msgstr "行号{0}:物料{1}数量不可超过可用数量"
msgid "Row {0}: Operation time should be greater than 0 for operation {1}"
msgstr ""
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:614
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:655
msgid "Row {0}: Packed Qty must be equal to {1} Qty."
msgstr "第 {0} 行:装箱数量必须与 {1} 数量相等"
@@ -46242,7 +46303,7 @@ msgstr "行号{0}:采购发票{1}无库存影响"
msgid "Row {0}: Qty cannot be greater than {1} for the Item {2}."
msgstr "行号{0}:物料{2}数量不可超过{1}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Row {0}: Qty in Stock UOM can not be zero."
msgstr "行号{0}:库存单位的数量不可为零"
@@ -46254,10 +46315,6 @@ msgstr "行号{0}:数量必须大于0"
msgid "Row {0}: Quantity cannot be negative."
msgstr "行号{0}:数量不能为负数"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1029
-msgid "Row {0}: Quantity not available for {4} in warehouse {1} at posting time of the entry ({2} {3})"
-msgstr "第{0}行:在记账时间点({2} {3}) 物料{4}在{1}中的可用数量不足"
-
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:886
msgid "Row {0}: Sales Invoice {1} is already created for {2}"
msgstr ""
@@ -46266,11 +46323,11 @@ msgstr ""
msgid "Row {0}: Shift cannot be changed since the depreciation has already been processed"
msgstr "行号{0}:折旧已处理后不可变更班次"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1666
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/subcontracting.py:105
msgid "Row {0}: Subcontracted Item is mandatory for the raw material {1}"
msgstr "行号{0}:原材料{1}必须关联外协物料"
-#: erpnext/controllers/stock_controller.py:1553
+#: erpnext/controllers/stock_controller.py:1554
msgid "Row {0}: Target Warehouse is mandatory for internal transfers"
msgstr "第 {0} 行,直接调拨收料仓必填"
@@ -46282,11 +46339,11 @@ msgstr "行号{0}:任务{1}不属于项目{2}"
msgid "Row {0}: The entire expense amount for account {1} in {2} has already been allocated."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:667
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:108
msgid "Row {0}: The item {1}, quantity must be positive number"
msgstr "第 {0} 行: 物料 {1} 数量必须为正数"
-#: erpnext/controllers/accounts_controller.py:3222
+#: erpnext/controllers/accounts_controller.py:3216
msgid "Row {0}: The {3} Account {1} does not belong to the company {2}"
msgstr "行号{0}:{3}科目{1}不属于公司{2}"
@@ -46294,11 +46351,11 @@ msgstr "行号{0}:{3}科目{1}不属于公司{2}"
msgid "Row {0}: To set {1} periodicity, difference between from and to date must be greater than or equal to {2}"
msgstr "行号{0}:设置{1}周期时,起止日期差值必须大于等于{2}"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3577
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:99
msgid "Row {0}: Transferred quantity cannot be greater than the requested quantity."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:615
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:189
msgid "Row {0}: UOM Conversion Factor is mandatory"
msgstr "行{0}:单位转换系数是必需的"
@@ -46311,11 +46368,11 @@ msgid "Row {0}: Warehouse {1} is linked to company {2}. Please select a warehous
msgstr ""
#: erpnext/manufacturing/doctype/bom/bom.py:1248
-#: erpnext/manufacturing/doctype/work_order/work_order.py:419
+#: erpnext/manufacturing/doctype/work_order/work_order.py:420
msgid "Row {0}: Workstation or Workstation Type is mandatory for an operation {1}"
msgstr "行号{0}:工序{1}必须指定工作站或工作站类型"
-#: erpnext/controllers/accounts_controller.py:1176
+#: erpnext/controllers/accounts_controller.py:1177
msgid "Row {0}: user has not applied the rule {1} on the item {2}"
msgstr "第{0}行: 用户未为物料 {2} 选择规则 {1}"
@@ -46327,7 +46384,7 @@ msgstr "行 {0}: {1} 帐户已经应用于会计尺寸 {2}"
msgid "Row {0}: {1} must be greater than 0"
msgstr "第{0}行:{1}必须大于0"
-#: erpnext/controllers/accounts_controller.py:782
+#: erpnext/controllers/accounts_controller.py:783
msgid "Row {0}: {1} {2} cannot be same as {3} (Party Account) {4}"
msgstr "行 {0}: {1} {2} 不能与 {3} (组队帐户) {4}"
@@ -46373,7 +46430,7 @@ msgstr "在{0}中删除的行"
msgid "Rows with Same Account heads will be merged on Ledger"
msgstr "相同科目会被自动合并"
-#: erpnext/controllers/accounts_controller.py:2747
+#: erpnext/controllers/accounts_controller.py:2748
msgid "Rows with duplicate due dates in other rows were found: {0}"
msgstr "其他行已存在相同的付款到期日:{0}"
@@ -46381,7 +46438,7 @@ msgstr "其他行已存在相同的付款到期日:{0}"
msgid "Rows: {0} have 'Payment Entry' as reference_type. This should not be set manually."
msgstr "第 {0} 行,源单据类型不能为收付款凭证"
-#: erpnext/controllers/accounts_controller.py:283
+#: erpnext/controllers/accounts_controller.py:284
msgid "Rows: {0} in {1} section are Invalid. Reference Name should point to a valid Payment Entry or Journal Entry."
msgstr "行数: {0} {1} 部分无效。参考名称应指向有效的付款条目或日记条目。"
@@ -46588,8 +46645,8 @@ msgstr "安全库存"
#. Label of the salary_information (Tab Break) field in DocType 'Employee'
#. Label of the salary (Currency) field in DocType 'Employee External Work
#. History'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:125
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:211
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
#: erpnext/setup/doctype/employee/employee.json
#: erpnext/setup/doctype/employee_external_work_history/employee_external_work_history.json
msgid "Salary"
@@ -46611,8 +46668,8 @@ msgstr "工资发放方式"
#. Option for the 'Order Type' (Select) field in DocType 'Quotation'
#. Option for the 'Order Type' (Select) field in DocType 'Sales Order'
#. Label of the sales_details (Tab Break) field in DocType 'Item'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:142
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:238
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:146
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:243
#: erpnext/accounts/doctype/item_tax_template/item_tax_template_dashboard.py:9
#: erpnext/accounts/doctype/opening_invoice_creation_tool/opening_invoice_creation_tool.json
#: erpnext/accounts/doctype/payment_term/payment_term_dashboard.py:8
@@ -46626,18 +46683,23 @@ 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:456
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/setup/doctype/company/company.py:460
+#: erpnext/setup/doctype/company/company.py:653
#: erpnext/setup/doctype/company/company_dashboard.py:9
#: erpnext/setup/doctype/sales_person/sales_person_dashboard.py:12
-#: erpnext/setup/install.py:399
+#: erpnext/setup/install.py:431
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:297
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:29
#: erpnext/stock/doctype/pick_list/pick_list_dashboard.py:16
msgid "Sales"
msgstr "销售"
-#: erpnext/setup/doctype/company/company.py:648
+#: erpnext/stock/doctype/item/item_list.js:28
+msgid "Sales & Purchase"
+msgstr ""
+
+#: erpnext/setup/doctype/company/company.py:653
msgid "Sales Account"
msgstr "销售科目"
@@ -46661,8 +46723,8 @@ msgstr "销售贡献和激励措施"
msgid "Sales Defaults"
msgstr "销售默认值"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:126
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:212
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:217
msgid "Sales Expenses"
msgstr "销售费用"
@@ -46831,11 +46893,11 @@ msgstr "销售发票非由用户{}创建"
msgid "Sales Invoice mode is activated in POS. Please create Sales Invoice instead."
msgstr "POS中已启用销售发票模式,请直接创建销售发票。"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:634
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:675
msgid "Sales Invoice {0} has already been submitted"
msgstr "销售发票{0}已提交过"
-#: erpnext/selling/doctype/sales_order/sales_order.py:593
+#: erpnext/selling/doctype/sales_order/sales_order.py:601
msgid "Sales Invoice {0} must be deleted before cancelling this Sales Order"
msgstr "在取消此销售订单之前必须删除销售发票 {0}"
@@ -47033,25 +47095,25 @@ msgstr "销售订单趋势"
msgid "Sales Order required for Item {0}"
msgstr "销售订单为物料{0}的必须项"
-#: erpnext/selling/doctype/sales_order/sales_order.py:358
+#: erpnext/selling/doctype/sales_order/sales_order.py:362
msgid "Sales Order {0} already exists against Customer's Purchase Order {1}. To allow multiple Sales Orders, Enable {2} in {3}"
msgstr "销售订单 {0} 已存在于客户的采购订单 {1}。若要允许多张销售订单,请在 {3} 中启用 {2}"
-#: erpnext/selling/doctype/sales_order/sales_order.py:1921
-#: erpnext/selling/doctype/sales_order/sales_order.py:1934
+#: erpnext/selling/doctype/sales_order/sales_order.py:1947
+#: erpnext/selling/doctype/sales_order/sales_order.py:1960
msgid "Sales Order {0} is not available for production"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1397
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1411
msgid "Sales Order {0} is not submitted"
msgstr "销售订单{0}未提交"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:495
+#: erpnext/manufacturing/doctype/work_order/work_order.py:496
msgid "Sales Order {0} is not valid"
msgstr "销售订单{0}无效"
#: erpnext/controllers/selling_controller.py:476
-#: erpnext/manufacturing/doctype/work_order/work_order.py:500
+#: erpnext/manufacturing/doctype/work_order/work_order.py:501
msgid "Sales Order {0} is {1}"
msgstr "销售订单{0} {1}"
@@ -47095,6 +47157,7 @@ msgstr "待出货销售订单"
#. Scheme'
#. Label of the sales_partner (Link) field in DocType 'Sales Invoice'
#. Label of the default_sales_partner (Link) field in DocType 'Customer'
+#. Label of the sales_team_section (Section Break) field in DocType 'Customer'
#. Label of the sales_partner (Link) field in DocType 'Sales Order'
#. Label of the sales_partner (Link) field in DocType 'SMS Center'
#. Label of a Link in the Selling Workspace
@@ -47107,7 +47170,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:1310
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1233
#: 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
@@ -47213,7 +47276,7 @@ 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:1307
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1230
#: 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
@@ -47306,7 +47369,7 @@ msgstr "销售台账"
msgid "Sales Representative"
msgstr "销售代表"
-#: erpnext/accounts/report/gross_profit/gross_profit.py:997
+#: erpnext/accounts/report/gross_profit/gross_profit.py:989
#: erpnext/stock/doctype/delivery_note/delivery_note.js:270
msgid "Sales Return"
msgstr "销售退货"
@@ -47330,7 +47393,7 @@ 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:133
+#: erpnext/setup/doctype/company/company.js:149
#: erpnext/workspace_sidebar/taxes.json
msgid "Sales Tax Template"
msgstr "销售税费模板"
@@ -47449,7 +47512,7 @@ msgstr "相同物料"
msgid "Same day"
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:605
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:608
msgid "Same item and warehouse combination already entered."
msgstr "已输入相同的商品和仓库组合。"
@@ -47481,12 +47544,12 @@ msgstr "样品仓"
#. Label of the sample_size (Float) field in DocType 'Quality Inspection'
#: erpnext/manufacturing/report/quality_inspection_summary/quality_inspection_summary.py:93
-#: erpnext/public/js/controllers/transaction.js:2846
+#: erpnext/public/js/controllers/transaction.js:2848
#: erpnext/stock/doctype/quality_inspection/quality_inspection.json
msgid "Sample Size"
msgstr "样本大小"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:4070
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:1023
msgid "Sample quantity {0} cannot be more than received quantity {1}"
msgstr "采样数量{0}不能超过接收数量{1}"
@@ -47730,7 +47793,7 @@ msgstr "报废资产"
msgid "Scrap Warehouse"
msgstr "报废品仓"
-#: erpnext/assets/doctype/asset/depreciation.py:388
+#: erpnext/assets/doctype/asset/depreciation.py:389
msgid "Scrap date cannot be before purchase date"
msgstr "废料日期不能早于购买日期"
@@ -47849,8 +47912,8 @@ msgstr "次要角色"
msgid "Secretary"
msgstr "秘书"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:177
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:181
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:306
msgid "Secured Loans"
msgstr "抵押借款"
@@ -47888,7 +47951,7 @@ msgstr "选替代物料"
msgid "Select Alternative Items for Sales Order"
msgstr "选择供销售订单使用的替代项目"
-#: erpnext/stock/doctype/item/item.js:820
+#: erpnext/stock/doctype/item/item.js:801
msgid "Select Attribute Values"
msgstr "选择属性值"
@@ -47930,7 +47993,7 @@ msgstr "选择公司"
msgid "Select Company Address"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:547
+#: erpnext/manufacturing/doctype/job_card/job_card.js:477
msgid "Select Corrective Operation"
msgstr "选择纠正性工序"
@@ -47966,7 +48029,7 @@ msgstr "选择维度"
msgid "Select Dispatch Address "
msgstr "选择发货地址"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:229
+#: erpnext/manufacturing/doctype/job_card/job_card.js:702
msgid "Select Employees"
msgstr "选择员工"
@@ -47991,7 +48054,7 @@ msgstr "选择物料"
msgid "Select Items based on Delivery Date"
msgstr "根据出货日期选择物料"
-#: erpnext/public/js/controllers/transaction.js:2885
+#: erpnext/public/js/controllers/transaction.js:2887
msgid "Select Items for Quality Inspection"
msgstr "选择待检验物料"
@@ -48029,7 +48092,7 @@ msgstr ""
msgid "Select Possible Supplier"
msgstr "选择潜在供应商"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1122
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1104
#: erpnext/stock/doctype/pick_list/pick_list.js:219
msgid "Select Quantity"
msgstr "选择数量"
@@ -48104,7 +48167,7 @@ msgstr "选择默认优先级。"
msgid "Select a Payment Method."
msgstr "请选择付款方式。"
-#: erpnext/selling/doctype/customer/customer.js:251
+#: erpnext/selling/doctype/customer/customer.js:253
msgid "Select a Supplier"
msgstr "选择供应商"
@@ -48127,7 +48190,7 @@ msgstr ""
msgid "Select all"
msgstr ""
-#: erpnext/stock/doctype/item/item.js:1153
+#: erpnext/stock/doctype/item/item.js:1137
msgid "Select an Item Group."
msgstr "选择物料组。"
@@ -48143,9 +48206,9 @@ msgstr "选择发票以加载汇总数据"
msgid "Select an item from each set to be used in the Sales Order."
msgstr "从每组中选择一个物料用于销售订单。"
-#: erpnext/stock/doctype/item/item.js:834
-msgid "Select at least one value from each of the attributes."
-msgstr "从每个属性中至少选择一个值。"
+#: erpnext/stock/doctype/item/item.js:815
+msgid "Select at least one attribute value."
+msgstr ""
#: erpnext/public/js/utils/party.js:379
msgid "Select company first"
@@ -48161,7 +48224,7 @@ msgstr "请先选择公司"
msgid "Select date"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:2995
+#: erpnext/controllers/accounts_controller.py:2989
msgid "Select finance book for the item {0} at row {1}"
msgstr "请为第{1}行的物料{0}选择账簿"
@@ -48193,7 +48256,7 @@ 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:1224
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1206
msgid "Select the Item to be manufactured."
msgstr "选择待生产的物料。"
@@ -48210,7 +48273,7 @@ msgstr "请先选择仓库"
msgid "Select the customer or supplier."
msgstr "选择客户或供应商。"
-#: erpnext/assets/doctype/asset/asset.js:929
+#: erpnext/assets/doctype/asset/asset.js:931
msgid "Select the date"
msgstr "选择日期"
@@ -48218,6 +48281,12 @@ msgstr "选择日期"
msgid "Select the date and your timezone"
msgstr "选择日期和时区"
+#. Description of the 'Tax Withholding Group' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Select the group first to filter the applicable withholding categories below."
+msgstr ""
+
#: erpnext/manufacturing/doctype/bom/bom.js:1004
msgid "Select the raw materials (Items) required to manufacture the Item"
msgstr "选择生产该物料所需的原材料"
@@ -48246,7 +48315,7 @@ msgstr "设置客户首选联系人后,可以使用手机号过滤客户"
msgid "Selected POS Opening Entry should be open."
msgstr "选定的POS期初条目应为开启状态。"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2569
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2675
msgid "Selected Price List should have buying and selling fields checked."
msgstr "价格表主数据中应勾选采购和销售。"
@@ -48277,30 +48346,30 @@ msgstr "所选单据必须处于已提交状态"
msgid "Self delivery"
msgstr "自运"
-#: erpnext/assets/doctype/asset/asset.js:640
+#: erpnext/assets/doctype/asset/asset.js:642
#: erpnext/stock/doctype/batch/batch_dashboard.py:9
#: erpnext/stock/doctype/item/item_dashboard.py:20
msgid "Sell"
msgstr "销售"
#: erpnext/assets/doctype/asset/asset.js:171
-#: erpnext/assets/doctype/asset/asset.js:629
+#: erpnext/assets/doctype/asset/asset.js:631
msgid "Sell Asset"
msgstr "出售资产"
-#: erpnext/assets/doctype/asset/asset.js:634
+#: erpnext/assets/doctype/asset/asset.js:636
msgid "Sell Qty"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:650
+#: erpnext/assets/doctype/asset/asset.js:652
msgid "Sell quantity cannot exceed the asset quantity"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1410
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1424
msgid "Sell quantity cannot exceed the asset quantity. Asset {0} has only {1} item(s)."
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:646
+#: erpnext/assets/doctype/asset/asset.js:648
msgid "Sell quantity must be greater than zero"
msgstr ""
@@ -48553,7 +48622,7 @@ msgstr "序列号/批号"
#: erpnext/manufacturing/doctype/job_card/job_card.json
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.js:74
#: erpnext/manufacturing/report/cost_of_poor_quality_report/cost_of_poor_quality_report.py:114
-#: erpnext/public/js/controllers/transaction.js:2859
+#: erpnext/public/js/controllers/transaction.js:2861
#: erpnext/public/js/utils/serial_no_batch_selector.js:433
#: erpnext/selling/doctype/installation_note_item/installation_note_item.json
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
@@ -48573,7 +48642,7 @@ msgstr "序列号/批号"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:450
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.js:38
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:61
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:425
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:426
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/subcontracting/doctype/subcontracting_receipt_supplied_item/subcontracting_receipt_supplied_item.json
@@ -48618,7 +48687,7 @@ msgstr "序列号范围"
msgid "Serial No Reserved"
msgstr "已预留序列号"
-#: erpnext/stock/doctype/item/item.py:495
+#: erpnext/stock/doctype/item/item.py:494
msgid "Serial No Series Overlap"
msgstr ""
@@ -48758,7 +48827,7 @@ msgstr ""
msgid "Serial Nos are created successfully"
msgstr "序列号创建成功"
-#: erpnext/stock/stock_ledger.py:2330
+#: erpnext/stock/stock_ledger.py:2296
msgid "Serial Nos are reserved in Stock Reservation Entries, you need to unreserve them before proceeding."
msgstr "序列号已在库存预留条目中预留,继续操作前需取消预留。"
@@ -48828,7 +48897,7 @@ msgstr "序列号与批号"
#: erpnext/stock/report/available_serial_no/available_serial_no.py:188
#: erpnext/stock/report/incorrect_serial_and_batch_bundle/incorrect_serial_and_batch_bundle.py:31
#: erpnext/stock/report/serial_and_batch_summary/serial_and_batch_summary.py:82
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:409
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:410
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:177
#: erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
#: erpnext/workspace_sidebar/stock.json
@@ -49242,7 +49311,7 @@ msgstr "设置预付和分配(先进先出)"
#. Label of the set_basic_rate_manually (Check) field in DocType 'Stock Entry
#. Detail'
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:300
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:708
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
msgid "Set Basic Rate Manually"
msgstr "手动设置成本"
@@ -49261,8 +49330,8 @@ msgstr "设置交货仓库"
msgid "Set Dropship Items Delivered Quantity"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.js:418
-#: erpnext/manufacturing/doctype/job_card/job_card.js:487
+#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:425
msgid "Set Finished Good Quantity"
msgstr "设置产成品数量"
@@ -49429,11 +49498,11 @@ msgstr "按物料税模板设置"
msgid "Set closing balance as per bank statement"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:546
+#: erpnext/setup/doctype/company/company.py:550
msgid "Set default inventory account for perpetual inventory"
msgstr "设置永续盘存模式下的默认库存科目"
-#: erpnext/setup/doctype/company/company.py:572
+#: erpnext/setup/doctype/company/company.py:576
msgid "Set default {0} account for non stock items"
msgstr "设置非库存物料的默认{0}科目"
@@ -49465,7 +49534,7 @@ msgstr "子装配件物料单价取其BOM成本"
msgid "Set targets Item Group-wise for this Sales Person."
msgstr "为本业务员设置物料组级的销售目标"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1281
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1263
msgid "Set the Planned Start Date (an Estimated Date at which you want the Production to begin)"
msgstr "设置计划开始日期(预计开始生产的日期)"
@@ -49576,7 +49645,7 @@ msgid "Setting up company"
msgstr "创建公司"
#: erpnext/manufacturing/doctype/bom/bom.py:1227
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1497
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1498
msgid "Setting {0} is required"
msgstr "必须设置{0}"
@@ -49596,6 +49665,10 @@ msgstr "销售模块设置"
msgid "Settled"
msgstr "已结清"
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice_list.js:33
+msgid "Settled with Credit Note"
+msgstr ""
+
#. Title of an Onboarding Step
#. Label of an action in the Onboarding Step 'Setup Company'
#: erpnext/setup/onboarding_step/setup_company/setup_company.json
@@ -49788,7 +49861,7 @@ msgstr "运输类型"
msgid "Shipment details"
msgstr "运输详情"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:805
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:846
msgid "Shipments"
msgstr "发货"
@@ -49826,7 +49899,7 @@ msgstr "送货地址名称"
msgid "Shipping Address Template"
msgstr "出货地址模板"
-#: erpnext/controllers/accounts_controller.py:576
+#: erpnext/controllers/accounts_controller.py:577
msgid "Shipping Address does not belong to the {0}"
msgstr "发货地址不属于{0}"
@@ -49969,8 +50042,8 @@ msgstr "在网站或其他出版物使用的个人简介"
msgid "Short-term Investments"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:175
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:296
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:179
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:301
msgid "Short-term Provisions"
msgstr ""
@@ -50304,7 +50377,7 @@ msgstr "并行"
msgid "Since there are active depreciable assets under this category, the following accounts are required. "
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:745
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:504
msgid "Since there is a process loss of {0} units for the finished good {1}, you should reduce the quantity by {0} units for the finished good {1} in the Items Table."
msgstr "由于产成品{1}存在{0}单位的加工损耗,应在物料表中将该产成品的数量减少{0}单位。"
@@ -50349,7 +50422,7 @@ msgstr "无需出货"
#. Label of the skip_material_transfer (Check) field in DocType 'Work Order
#. Operation'
-#: erpnext/manufacturing/doctype/work_order/work_order.js:380
+#: erpnext/manufacturing/doctype/work_order/work_order.js:361
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.js:454
msgid "Skip Material Transfer"
@@ -50391,8 +50464,8 @@ msgstr "平滑常数"
msgid "Soap & Detergent"
msgstr "肥皂和洗涤剂"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:62
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:107
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:66
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:112
#: erpnext/setup/setup_wizard/data/industry_type.txt:45
msgid "Software"
msgstr "软件"
@@ -50416,7 +50489,7 @@ msgstr "售货员"
msgid "Solvency Ratios"
msgstr "偿债能力比率"
-#: erpnext/controllers/accounts_controller.py:4391
+#: erpnext/controllers/accounts_controller.py:4379
msgid "Some required Company details are missing. You don't have permission to update them. Please contact your System Manager."
msgstr "部分必需的公司信息缺失。您无权限更新这些信息,请联系系统管理员。"
@@ -50480,7 +50553,7 @@ msgstr "来源字段名"
msgid "Source Location"
msgstr "源地点"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1032
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1014
msgid "Source Manufacture Entry"
msgstr ""
@@ -50489,11 +50562,11 @@ msgstr ""
msgid "Source Stock Entry (Manufacture)"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:907
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:524
msgid "Source Stock Entry {0} belongs to Work Order {1}, not {2}. Please use a manufacture entry from the same Work Order."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2352
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:84
msgid "Source Stock Entry {0} has no finished goods quantity"
msgstr ""
@@ -50551,7 +50624,12 @@ msgstr "发料仓地址(链接)"
msgid "Source Warehouse is mandatory for the Item {0}."
msgstr "物料{0}必须指定来源仓库。"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:304
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:38
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:23
+msgid "Source Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/manufacturing/doctype/work_order/work_order.py:305
msgid "Source Warehouse {0} must be same as Customer Warehouse {1} in the Subcontracting Inward Order."
msgstr "源仓库{0}必须与外包收货订单中的客户仓库{1}相同。"
@@ -50559,24 +50637,23 @@ msgstr "源仓库{0}必须与外包收货订单中的客户仓库{1}相同。"
msgid "Source and Target Location cannot be same"
msgstr "源和目标地点不能相同"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:873
-msgid "Source and target warehouse cannot be same for row {0}"
-msgstr "第{0}行中的源和收料仓不能相同"
-
#: erpnext/stock/dashboard/item_dashboard.js:295
msgid "Source and target warehouse must be different"
msgstr "发料和收料仓不同相同"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:152
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:254
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:156
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:259
msgid "Source of Funds (Liabilities)"
msgstr "资金来源(负债)"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:840
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:856
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:863
-msgid "Source warehouse is mandatory for row {0}"
-msgstr "请为第{0}行填写发料仓"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:28
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:44
+msgid "Source or Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/selling/doctype/sales_order/sales_order.py:469
+msgid "Source warehouse required for stock item {0}"
+msgstr ""
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Creator Item'
#. Label of the sourced_by_supplier (Check) field in DocType 'BOM Explosion
@@ -50617,7 +50694,7 @@ msgstr ""
msgid "Spent"
msgstr ""
-#: erpnext/assets/doctype/asset/asset.js:690
+#: erpnext/assets/doctype/asset/asset.js:692
#: erpnext/stock/doctype/batch/batch.js:104
#: erpnext/stock/doctype/batch/batch.js:185
#: erpnext/support/doctype/issue/issue.js:114
@@ -50625,7 +50702,7 @@ msgid "Split"
msgstr "分拆"
#: erpnext/assets/doctype/asset/asset.js:147
-#: erpnext/assets/doctype/asset/asset.js:674
+#: erpnext/assets/doctype/asset/asset.js:676
msgid "Split Asset"
msgstr "分割资产"
@@ -50649,7 +50726,7 @@ msgstr "拆分前资产号"
msgid "Split Issue"
msgstr "拆分问题"
-#: erpnext/assets/doctype/asset/asset.js:680
+#: erpnext/assets/doctype/asset/asset.js:682
msgid "Split Qty"
msgstr "分割数量"
@@ -50661,6 +50738,11 @@ msgstr "拆分数量必须小于资产数量。"
msgid "Split across {} accounts"
msgstr ""
+#. Description of the 'Sales Team' (Table) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Split commission credit across multiple sales persons."
+msgstr ""
+
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2458
msgid "Splitting {0} {1} into {2} rows as per Payment Terms"
msgstr "根据付款条款将{0}{1}拆分为{2}行"
@@ -50733,13 +50815,13 @@ msgstr "标准采购"
msgid "Standard Description"
msgstr "标准描述"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:115
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:127
msgid "Standard Rated Expenses"
msgstr "标准税率费用"
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:70
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:493
-#: erpnext/stock/doctype/item/item.py:289 erpnext/tests/utils.py:283
+#: erpnext/stock/doctype/item/item.py:288 erpnext/tests/utils.py:283
#: erpnext/tests/utils.py:2518
msgid "Standard Selling"
msgstr "标准销售"
@@ -50760,8 +50842,8 @@ msgstr "标准模板"
msgid "Standard Terms and Conditions that can be added to Sales and Purchases. Examples: Validity of the offer, Payment Terms, Safety and Usage, etc."
msgstr "可添加到销售订单和采购订单的标准交易条款,如报价有效期,付款方式,安全要求及使用方式等"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:96
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:102
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:108
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:114
msgid "Standard rated supplies in {0}"
msgstr "{0}中的标准税率供应品"
@@ -50796,7 +50878,7 @@ msgstr "开始日期不能早于当前日期"
msgid "Start Date should be lower than End Date"
msgstr "开始日期应早于结束日期"
-#: erpnext/manufacturing/doctype/job_card/job_card.js:223
+#: erpnext/manufacturing/doctype/job_card/job_card.js:658
#: erpnext/manufacturing/doctype/workstation/workstation.js:124
msgid "Start Job"
msgstr "开始计时"
@@ -50925,7 +51007,7 @@ msgstr "状态图样"
msgid "Status and Reference"
msgstr ""
-#: erpnext/projects/doctype/project/project.py:716
+#: erpnext/projects/doctype/project/project.py:754
msgid "Status must be Cancelled or Completed"
msgstr "状态必须是已取消或已完成"
@@ -50955,6 +51037,7 @@ msgstr "供应商的注册信息和其他一般信息"
#: erpnext/manufacturing/doctype/bom/bom_dashboard.py:14
#: erpnext/setup/doctype/incoterm/incoterm.json
#: erpnext/setup/workspace/home/home.json
+#: erpnext/stock/doctype/item/item_list.js:21
#: erpnext/stock/doctype/material_request/material_request_dashboard.py:17
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -50963,8 +51046,8 @@ msgstr "库存"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:96
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:158
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:100
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:163
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1362
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:1388
#: erpnext/accounts/report/account_balance/account_balance.js:58
@@ -51064,6 +51147,16 @@ msgstr "库存结转分录{0}已加入处理队列,系统需要时间完成处
msgid "Stock Closing Log"
msgstr "库存结转日志"
+#. Option for the 'Account Type' (Select) field in DocType 'Account'
+#. Label of the stock_delivered_but_not_billed (Link) field in DocType
+#. 'Company'
+#: erpnext/accounts/doctype/account/account.json
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:38
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:65
+#: erpnext/setup/doctype/company/company.json
+msgid "Stock Delivered But Not Billed"
+msgstr ""
+
#. Label of the warehouse_and_reference (Section Break) field in DocType 'POS
#. Invoice Item'
#. Label of the warehouse_and_reference (Section Break) field in DocType 'Sales
@@ -51073,10 +51166,6 @@ msgstr "库存结转日志"
msgid "Stock Details"
msgstr "库存详细信息"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:997
-msgid "Stock Entries already created for Work Order {0}: {1}"
-msgstr "工单 {0} 现有入库单 {1} 总入库数量已超工单数量,不可再创建新入库单"
-
#. Label of the stock_entry (Link) field in DocType 'Journal Entry'
#. Label of a Link in the Manufacturing Workspace
#. Option for the 'Receipt Document Type' (Select) field in DocType 'Landed
@@ -51140,7 +51229,7 @@ msgstr "该拣货单的物料移动单已生成"
msgid "Stock Entry {0} created"
msgstr "物料移动{0}已创建"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1527
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1544
msgid "Stock Entry {0} has created"
msgstr "库存分录{0}已创建"
@@ -51148,8 +51237,8 @@ msgstr "库存分录{0}已创建"
msgid "Stock Entry {0} is not submitted"
msgstr "物料移动{0}不提交"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:83
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:142
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:87
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:147
msgid "Stock Expenses"
msgstr "存货费用"
@@ -51227,8 +51316,8 @@ msgstr "库存水平"
msgid "Stock Levels HTML"
msgstr ""
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:160
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:273
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:164
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:278
msgid "Stock Liabilities"
msgstr "库存负债"
@@ -51331,8 +51420,8 @@ msgstr "库存数量与序列号数量对账"
#. Option for the 'Account Type' (Select) field in DocType 'Account'
#. Label of the stock_received_but_not_billed (Link) field in DocType 'Company'
#: erpnext/accounts/doctype/account/account.json
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:161
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:274
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:165
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:279
#: erpnext/accounts/report/account_balance/account_balance.js:59
#: erpnext/setup/doctype/company/company.json
msgid "Stock Received But Not Billed"
@@ -51344,7 +51433,7 @@ 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:686
+#: erpnext/stock/doctype/item/item.py:685
#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.json
#: erpnext/stock/workspace/stock/stock.json
#: erpnext/workspace_sidebar/stock.json
@@ -51356,7 +51445,7 @@ msgstr "库存调账"
msgid "Stock Reconciliation Item"
msgstr "库存调账明细"
-#: erpnext/stock/doctype/item/item.py:686
+#: erpnext/stock/doctype/item/item.py:685
msgid "Stock Reconciliations"
msgstr "库存对账"
@@ -51381,9 +51470,9 @@ msgstr "物料成本价追溯调整设置"
#: 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:945
-#: erpnext/manufacturing/doctype/work_order/work_order.js:954
-#: erpnext/manufacturing/doctype/work_order/work_order.js:961
+#: erpnext/manufacturing/doctype/work_order/work_order.js:927
+#: erpnext/manufacturing/doctype/work_order/work_order.js:936
+#: erpnext/manufacturing/doctype/work_order/work_order.js:943
#: 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
@@ -51394,7 +51483,7 @@ msgstr "物料成本价追溯调整设置"
#: erpnext/stock/doctype/pick_list/pick_list.js:170
#: erpnext/stock/doctype/pick_list/pick_list.js:175
#: erpnext/stock/doctype/stock_entry/stock_entry_dashboard.py:12
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:743
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:746
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:680
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1246
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1653
@@ -51419,10 +51508,10 @@ msgstr "库存预留"
msgid "Stock Reservation Entries Cancelled"
msgstr "库存预留单已取消"
-#: erpnext/controllers/subcontracting_inward_controller.py:1021
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2259
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2148
-#: erpnext/selling/doctype/sales_order/sales_order.py:874
+#: erpnext/controllers/subcontracting_inward_controller.py:1029
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:2261
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2153
+#: erpnext/selling/doctype/sales_order/sales_order.py:891
#: erpnext/stock/doctype/stock_reservation_entry/stock_reservation_entry.py:1786
msgid "Stock Reservation Entries Created"
msgstr "库存预留单已创建"
@@ -51450,7 +51539,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:608
msgid "Stock Reservation Warehouse Mismatch"
msgstr "库存预留仓库不匹配"
@@ -51490,7 +51579,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:420
+#: erpnext/stock/doctype/item/item.js:408
#: 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
@@ -51605,7 +51694,7 @@ msgstr "库存交易设置"
#: erpnext/stock/report/batch_item_expiry_status/batch_item_expiry_status.py:35
#: erpnext/stock/report/reserved_stock/reserved_stock.py:110
#: erpnext/stock/report/stock_balance/stock_balance.py:513
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:294
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:295
#: erpnext/subcontracting/doctype/subcontracting_inward_order_item/subcontracting_inward_order_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_received_item/subcontracting_inward_order_received_item.json
#: erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -51738,11 +51827,11 @@ msgstr "不允许为勾选是组的仓库 {0} 创建库存预留单"
msgid "Stock cannot be reserved in the group warehouse {0}."
msgstr "不允许为勾选是组的仓库 {0} 创建库存预留单"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1225
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1230
msgid "Stock cannot be updated against the following Delivery Notes: {0}"
msgstr "无法针对以下交货单更新库存:{0}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1294
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1299
msgid "Stock cannot be updated because the invoice contains a drop shipping item. Please disable 'Update Stock' or remove the drop shipping item."
msgstr "因发票包含直运物料,无法更新库存。请禁用'更新库存'或移除直运物料"
@@ -51797,14 +51886,14 @@ msgstr "石材"
msgid "Stop Reason"
msgstr "停机原因"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1105
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1106
msgid "Stopped Work Order cannot be cancelled, Unstop it first to cancel"
msgstr "停止的工单不能取消,先取消停止"
-#: erpnext/setup/doctype/company/company.py:383
+#: erpnext/setup/doctype/company/company.py:387
#: erpnext/setup/setup_wizard/operations/defaults_setup.py:33
#: erpnext/setup/setup_wizard/operations/install_fixtures.py:537
-#: erpnext/stock/doctype/item/item.py:330 erpnext/tests/utils.py:248
+#: erpnext/stock/doctype/item/item.py:329 erpnext/tests/utils.py:248
msgid "Stores"
msgstr "仓库"
@@ -51862,7 +51951,7 @@ msgstr "子装配件仓库"
#. Label of the operation (Link) field in DocType 'Job Card Time Log'
#. Name of a DocType
-#: erpnext/manufacturing/doctype/job_card/job_card.js:363
+#: erpnext/manufacturing/doctype/job_card/job_card.js:310
#: erpnext/manufacturing/doctype/job_card_time_log/job_card_time_log.json
#: erpnext/manufacturing/doctype/sub_operation/sub_operation.json
msgid "Sub Operation"
@@ -52124,7 +52213,7 @@ msgstr "委外订单加工费明细"
msgid "Subcontracting Order Supplied Item"
msgstr "委外订单原材料明细"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:965
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:976
msgid "Subcontracting Order {0} created."
msgstr "外协订单{0}已创建"
@@ -52213,7 +52302,7 @@ msgstr ""
msgid "Subdivision"
msgstr "细分"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:961
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:972
#: erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py:1122
msgid "Submit Action Failed"
msgstr "提交操作失败"
@@ -52234,7 +52323,7 @@ msgstr "提交生成的发票"
msgid "Submit Journal Entries"
msgstr "提交日记账分录"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:192
+#: erpnext/manufacturing/doctype/work_order/work_order.js:173
msgid "Submit this Work Order for further processing."
msgstr "提交此生产工单以进行后续操作。"
@@ -52388,7 +52477,7 @@ msgstr "核销/对账成功"
msgid "Successfully Set Supplier"
msgstr "成功设置供应商"
-#: erpnext/stock/doctype/item/item.py:408
+#: erpnext/stock/doctype/item/item.py:407
msgid "Successfully changed Stock UOM, please redefine conversion factors for new UOM."
msgstr "已成功更改库存单位,请重新定义新单位的换算系数"
@@ -52412,7 +52501,7 @@ msgstr "成功导入{0}笔记录"
msgid "Successfully linked to Customer"
msgstr "成功关联了客户"
-#: erpnext/selling/doctype/customer/customer.js:273
+#: erpnext/selling/doctype/customer/customer.js:275
msgid "Successfully linked to Supplier"
msgstr "成功关联了供应商"
@@ -52572,7 +52661,7 @@ msgstr "已发料数量"
#: 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:77
-#: erpnext/selling/doctype/customer/customer.js:255
+#: erpnext/selling/doctype/customer/customer.js:257
#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/selling/doctype/sales_order/sales_order.js:187
#: erpnext/selling/doctype/sales_order/sales_order.js:1741
@@ -52670,6 +52759,7 @@ msgstr "供应商信息"
#. Label of a Link in the Buying Workspace
#. Label of the supplier_group (Link) field in DocType 'Import Supplier
#. Invoice'
+#. Option for the 'Party Type' (Select) field in DocType 'Party Specific Item'
#. Name of a DocType
#. Label of a Workspace Sidebar Item
#: erpnext/accounts/doctype/pricing_rule/pricing_rule.json
@@ -52679,7 +52769,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:1314
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1237
#: 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
@@ -52694,6 +52784,7 @@ msgstr "供应商信息"
#: erpnext/regional/doctype/import_supplier_invoice/import_supplier_invoice.json
#: erpnext/regional/report/irs_1099/irs_1099.js:26
#: erpnext/regional/report/irs_1099/irs_1099.py:70
+#: erpnext/selling/doctype/party_specific_item/party_specific_item.json
#: erpnext/setup/doctype/supplier_group/supplier_group.json
#: erpnext/workspace_sidebar/buying.json
msgid "Supplier Group"
@@ -52778,7 +52869,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:1229
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1152
#: 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:177
@@ -52813,8 +52904,6 @@ msgid "Supplier Number At Customer"
msgstr "客户端供应商编号"
#. Label of the supplier_numbers (Table) field in DocType 'Customer'
-#. Label of the supplier_numbers_section (Section Break) field in DocType
-#. 'Customer'
#: erpnext/selling/doctype/customer/customer.json
msgid "Supplier Numbers"
msgstr "供应商编号列表"
@@ -52866,7 +52955,7 @@ msgstr "首选联系人"
#: erpnext/buying/doctype/purchase_order_item/purchase_order_item.json
#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.js:40
#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.json
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:235
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:240
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.js:60
#: erpnext/buying/report/supplier_quotation_comparison/supplier_quotation_comparison.py:256
#: erpnext/buying/workspace/buying/buying.json
@@ -52895,7 +52984,7 @@ msgstr "供应商比价"
msgid "Supplier Quotation Item"
msgstr "供应商报价明细"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:506
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:510
msgid "Supplier Quotation {0} Created"
msgstr "供应商报价{0}已创建"
@@ -52984,7 +53073,7 @@ msgstr "供应商类型"
#. Label of the supplier_warehouse (Link) field in DocType 'Purchase Receipt'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/buying/doctype/purchase_order/purchase_order.json
-#: erpnext/manufacturing/doctype/job_card/job_card.js:97
+#: erpnext/manufacturing/doctype/job_card/job_card.js:91
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
msgid "Supplier Warehouse"
msgstr "委外仓"
@@ -53001,17 +53090,12 @@ msgstr "供应商直运给客户"
msgid "Supplier is required for all selected Items"
msgstr ""
-#. Description of the 'Supplier Numbers' (Table) field in DocType 'Customer'
-#: erpnext/selling/doctype/customer/customer.json
-msgid "Supplier numbers assigned by the customer"
-msgstr "客户分配的供应商编号"
-
#. Description of a DocType
#: erpnext/buying/doctype/supplier/supplier.json
msgid "Supplier of Goods or Services."
msgstr "提供商品或服务的供应商。"
-#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:188
+#: erpnext/buying/doctype/supplier_quotation/supplier_quotation.py:190
msgid "Supplier {0} not found in {1}"
msgstr "在{1}中找不到供应商{0}"
@@ -53024,8 +53108,8 @@ msgstr "供应商"
msgid "Suppliers"
msgstr "供应商"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:60
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:122
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:72
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:134
msgid "Supplies subject to the reverse charge provision"
msgstr "适用反向征税条款的供应品"
@@ -53116,7 +53200,7 @@ msgstr "同步已启动"
msgid "Synchronize all accounts every hour"
msgstr "每小时同步所有账户"
-#: erpnext/accounts/doctype/account/account.py:663
+#: erpnext/accounts/doctype/account/account.py:673
msgid "System In Use"
msgstr "使用中的系统"
@@ -53147,7 +53231,7 @@ msgstr "系统将使用挂钩货币进行隐式转换。 \n"
msgid "System will fetch all the entries if limit value is zero."
msgstr "如果限额为0,系统会抓取所有记录"
-#: erpnext/controllers/accounts_controller.py:2229
+#: erpnext/controllers/accounts_controller.py:2230
msgid "System will not check over billing since amount for Item {0} in {1} is zero"
msgstr "因为 {1} 中的物料 {0} 金额为0系统无法进行超额开票防错检查"
@@ -53168,10 +53252,16 @@ msgstr "代扣所得税摘要"
msgid "TDS Deducted"
msgstr "已扣除TDS"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:287
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:292
msgid "TDS Payable"
msgstr "应付TDS"
+#. Description of the 'Tax Withholding Category' (Link) field in DocType
+#. 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "TDS/TCS is calculated at the rate defined here on every payment from this customer."
+msgstr ""
+
#. Description of a DocType
#: erpnext/stock/doctype/item_website_specification/item_website_specification.json
msgid "Table for Item that will be shown in Web Site"
@@ -53319,7 +53409,7 @@ msgstr "收料仓地址"
msgid "Target Warehouse Address Link"
msgstr "收料仓地址(链接)"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:249
+#: erpnext/manufacturing/doctype/work_order/work_order.py:250
msgid "Target Warehouse Reservation Error"
msgstr "目标仓库预留错误"
@@ -53327,24 +53417,23 @@ msgstr "目标仓库预留错误"
msgid "Target Warehouse for Finished Good must be same as Finished Good Warehouse {1} in Work Order {2} linked to the Subcontracting Inward Order."
msgstr "产成品的目标仓库必须与关联外包收货订单的工作订单{2}中的产成品仓库{1}相同。"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:793
+#: erpnext/manufacturing/doctype/work_order/work_order.py:794
msgid "Target Warehouse is required before Submit"
msgstr "提交前需填写目标仓库"
-#: erpnext/controllers/selling_controller.py:885
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_receipt_issue.py:25
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py:21
+msgid "Target Warehouse is required for item {0}"
+msgstr ""
+
+#: erpnext/controllers/selling_controller.py:886
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:320
+#: erpnext/manufacturing/doctype/work_order/work_order.py:321
msgid "Target Warehouse {0} must be same as Delivery Warehouse {1} in the Subcontracting Inward Order Item."
msgstr "目标仓库{0}必须与外包收货订单物料中的交货仓库{1}相同。"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:846
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:852
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:867
-msgid "Target warehouse is mandatory for row {0}"
-msgstr "请为第{0}行指定收料仓"
-
#. Label of the targets (Table) field in DocType 'Sales Partner'
#. Label of the targets (Table) field in DocType 'Sales Person'
#. Label of the targets (Table) field in DocType 'Territory'
@@ -53461,8 +53550,8 @@ msgstr "折后税额(本币)"
msgid "Tax Amount will be rounded on a row(items) level"
msgstr "税额按每个物料行分别取整"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:41
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:69
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:45
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:74
#: erpnext/setup/setup_wizard/operations/taxes_setup.py:256
msgid "Tax Assets"
msgstr "所得税资产"
@@ -53494,7 +53583,6 @@ msgstr "所得税资产"
msgid "Tax Breakup"
msgstr "税费明细"
-#. Label of the tax_category (Link) field in DocType 'Address'
#. Label of the tax_category (Link) field in DocType 'POS Invoice'
#. Label of the tax_category (Link) field in DocType 'POS Profile'
#. Label of the tax_category (Link) field in DocType 'Purchase Invoice'
@@ -53516,7 +53604,6 @@ msgstr "税费明细"
#. 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/custom/address.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
@@ -53532,6 +53619,7 @@ msgstr "税费明细"
#: erpnext/selling/doctype/customer/customer.json
#: erpnext/selling/doctype/quotation/quotation.json
#: erpnext/selling/doctype/sales_order/sales_order.json
+#: erpnext/setup/install.py:154
#: erpnext/stock/doctype/delivery_note/delivery_note.json
#: erpnext/stock/doctype/item_tax/item_tax.json
#: erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -53543,8 +53631,8 @@ msgstr "税种"
msgid "Tax Category has been changed to \"Total\" because all the Items are non-stock items"
msgstr "税类别已更改为“合计”,因为所有物料均为非库存物料"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:136
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:230
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:140
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:235
msgid "Tax Expense"
msgstr ""
@@ -53618,7 +53706,7 @@ msgstr "税率 %"
msgid "Tax Rates"
msgstr "税率"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:52
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:64
msgid "Tax Refunds provided to Tourists under the Tax Refunds for Tourists Scheme"
msgstr "根据游客退税计划向游客提供的税款退还"
@@ -53636,7 +53724,7 @@ msgstr ""
msgid "Tax Rule"
msgstr "税费模板分派规则"
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:137
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:138
msgid "Tax Rule Conflicts with {0}"
msgstr "税收规则与{0}冲突"
@@ -53651,7 +53739,7 @@ msgstr "税设置"
msgid "Tax Template"
msgstr ""
-#: erpnext/accounts/doctype/tax_rule/tax_rule.py:85
+#: erpnext/accounts/doctype/tax_rule/tax_rule.py:86
msgid "Tax Template is mandatory."
msgstr "税费模板字段必填。"
@@ -53971,7 +54059,7 @@ msgstr "抵扣税费"
msgid "Taxes and Charges Deducted (Company Currency)"
msgstr "抵扣税费(本币)"
-#: erpnext/stock/doctype/item/item.py:421
+#: erpnext/stock/doctype/item/item.py:420
msgid "Taxes row #{0}: {1} cannot be smaller than {2}"
msgstr "第{0}行税项:{1}不能小于{2}"
@@ -54004,8 +54092,8 @@ msgstr "技术"
msgid "Telecommunications"
msgstr "电信"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:127
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:213
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:131
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:218
msgid "Telephone Expenses"
msgstr "电话费"
@@ -54056,13 +54144,13 @@ msgstr "临时冻结"
msgid "Temporary"
msgstr "临时"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:73
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:129
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:77
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:134
msgid "Temporary Accounts"
msgstr "临时科目"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:74
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:130
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:78
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:135
msgid "Temporary Opening"
msgstr "临时开账"
@@ -54244,7 +54332,7 @@ 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:1298
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1221
#: 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
@@ -54343,7 +54431,7 @@ msgstr ""
msgid "The 'From Package No.' field must neither be empty nor it's value less than 1."
msgstr "“From Package No.”字段不能为空,也不能小于1。"
-#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:415
+#: erpnext/buying/doctype/request_for_quotation/request_for_quotation.py:419
msgid "The Access to Request for Quotation From Portal is Disabled. To Allow Access, Enable it in Portal Settings."
msgstr "门户询价申请功能已禁用。如需启用,请在门户设置中开启"
@@ -54396,7 +54484,8 @@ msgstr "第{0}行的支付条款可能是重复的。"
msgid "The Pick List having Stock Reservation Entries cannot be updated. If you need to make changes, we recommend canceling the existing Stock Reservation Entries before updating the Pick List."
msgstr "存在库存预留记录的拣货清单无法更新。如需修改,建议在更新前取消现有库存预留"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2804
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1436
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:119
msgid "The Process Loss Qty has reset as per job cards Process Loss Qty"
msgstr "已基于工单生产任务单最大制程损耗重置了制程损耗数量"
@@ -54412,7 +54501,7 @@ msgstr "第{0}行的序列号{1}在仓库{2}中不可用"
msgid "The Serial No {0} is reserved against the {1} {2} and cannot be used for any other transaction."
msgstr "序列号{0}已为{1}{2}预留,不能用于其他交易"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1821
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:942
msgid "The Serial and Batch Bundle {0} is not valid for this transaction. The 'Type of Transaction' should be 'Outward' instead of 'Inward' in Serial and Batch Bundle {0}"
msgstr "序列号批次组合{0}对此交易无效。在序列号批次组合{0}中,'交易类型'应为'出库'而非'入库'"
@@ -54448,7 +54537,7 @@ msgstr ""
msgid "The bank account is not a company account. Please select a company account"
msgstr ""
-#: erpnext/controllers/stock_controller.py:1318
+#: erpnext/controllers/stock_controller.py:1319
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 ""
@@ -54456,7 +54545,11 @@ msgstr ""
msgid "The company {0} is not in South Africa. VAT Audit Report is only available for companies in South Africa."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:21
+msgid "The company {0} is not in United Arab Emirates. UAE VAT 201 report is only available for companies in United Arab Emirates."
+msgstr ""
+
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1328
msgid "The completed quantity {0} of an operation {1} cannot be greater than the completed quantity {2} of a previous operation {3}."
msgstr ""
@@ -54476,7 +54569,7 @@ msgstr ""
msgid "The date of the transaction"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1229
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1211
msgid "The default BOM for that item will be fetched by the system. You can also change the BOM."
msgstr "系统将获取该物料的默认BOM,也可手动修改"
@@ -54509,7 +54602,7 @@ msgstr "转出股东的字段不能为空"
msgid "The field To Shareholder cannot be blank"
msgstr "“转入股东”字段不能为空"
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:417
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:418
msgid "The field {0} in row {1} is not set"
msgstr "第{1}行的字段{0}未设置"
@@ -54550,11 +54643,11 @@ msgstr "以下资产自动计提折旧失败:{0}"
msgid "The following batches are expired, please restock them: {0}"
msgstr "以下批次已过期,请补货: {0}"
-#: erpnext/controllers/accounts_controller.py:427
+#: erpnext/controllers/accounts_controller.py:428
msgid "The following cancelled repost entries exist for {0} : {1} Kindly delete these entries before continuing."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:961
+#: erpnext/stock/doctype/item/item.py:965
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 "以下已删除属性存在于变体但不存在于模板。请删除变体或在模板保留属性"
@@ -54575,7 +54668,7 @@ msgstr ""
msgid "The following rows are duplicates:"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:872
+#: erpnext/stock/doctype/material_request/material_request.py:871
msgid "The following {0} were created: {1}"
msgstr "已创建以下{0}:{1}"
@@ -54602,7 +54695,7 @@ msgstr ""
msgid "The item {item} is not marked as {type_of} item. You can enable it as {type_of} item from its Item master."
msgstr "物料{item}未标记为{type_of}物料。可在物料主数据中启用"
-#: erpnext/stock/doctype/item/item.py:688
+#: erpnext/stock/doctype/item/item.py:687
msgid "The items {0} and {1} are present in the following {2} :"
msgstr "物料{0}和{1}存在于以下{2}中:"
@@ -54660,7 +54753,7 @@ msgstr "操作{0}不能作为子工序"
msgid "The original invoice should be consolidated before or along with the return invoice."
msgstr "原始发票应在退货发票前或同时合并"
-#: erpnext/controllers/accounts_controller.py:205
+#: erpnext/controllers/accounts_controller.py:206
msgid "The outstanding amount {0} in {1} is lesser than {2}. Updating the outstanding to this invoice."
msgstr ""
@@ -54672,6 +54765,12 @@ msgstr "上传模板中父科目 {0} 不存在"
msgid "The payment gateway account in plan {0} is different from the payment gateway account in this payment request"
msgstr "计划{0}中的支付网关账户与此收付款申请中的支付网关账户不同"
+#. Description of the 'Over Order Allowance (%)' (Float) field in DocType
+#. 'Buying Settings'
+#: erpnext/buying/doctype/buying_settings/buying_settings.json
+msgid "The percentage by which you are allowed to order more on a Purchase Order than the quantity requested on the originating Material Request. For example, if the Material Request has 100 units and the allowance is 10%, you can order up to 110 units"
+msgstr ""
+
#. Description of the 'Over Billing Allowance (%)' (Currency) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -54713,7 +54812,7 @@ msgstr "更新物料时将释放预留库存。确定继续?"
msgid "The reserved stock will be released. Are you certain you wish to proceed?"
msgstr "将释放预留库存。确定继续?"
-#: erpnext/accounts/doctype/account/account.py:218
+#: erpnext/accounts/doctype/account/account.py:222
msgid "The root account {0} must be a group"
msgstr "根级科目{0}必须是组类型"
@@ -54729,7 +54828,7 @@ msgstr "所选找零账户{}不属于公司{}"
msgid "The selected item cannot have Batch"
msgstr "所选物料不能启用批号管理"
-#: erpnext/assets/doctype/asset/asset.js:655
+#: erpnext/assets/doctype/asset/asset.js:657
msgid "The sell quantity is less than the total asset quantity. The remaining quantity will be split into a new asset. This action cannot be undone. Do you want to continue? "
msgstr ""
@@ -54762,7 +54861,7 @@ msgstr "股份不存在{0}"
msgid "The stock for the item {0} in the {1} warehouse was negative on the {2}. You should create a positive entry {3} before the date {4} and time {5} to post the correct valuation rate. For more details, please read the documentation ."
msgstr "物料{0}在仓库{1}的库存于{2}出现负数。应在{4} {5}前创建正数分录{3}以记录正确计价。详情参阅 文档 "
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:737
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:740
msgid "The stock has been reserved for the following Items and Warehouses, un-reserve the same to {0} the Stock Reconciliation: {1}"
msgstr "以下物料和仓库的库存已被预留,请取消预留以{0}库存对账: {1}"
@@ -54784,11 +54883,11 @@ msgstr ""
msgid "The system will create a Sales Invoice or a POS Invoice from the POS interface based on this setting. For high-volume transactions, it is recommended to use POS Invoice."
msgstr "系统将基于此设置从POS界面创建销售发票或POS发票。对于高流量交易,建议使用POS发票。"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1032
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1035
msgid "The task has been enqueued as a background job. In case there is any issue on processing in background, the system will add a comment about the error on this Stock Reconciliation and revert to the Draft stage"
msgstr "该任务已被列入后台工作。如果在后台处理有任何问题,系统将在此库存对账中添加有关错误的注释,并恢复到草稿阶段"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1043
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1046
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 "任务已加入后台队列。若后台处理出错,系统将在库存对账添加错误注释并恢复为已提交状态"
@@ -54836,15 +54935,15 @@ msgstr "{0}的值在物料{1}和{2}之间不一致"
msgid "The value {0} is already assigned to an existing Item {1}."
msgstr "现有物料{1}已使用此属性值{0}。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1257
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1239
msgid "The warehouse where you store finished Items before they are shipped."
msgstr "成品发货前存储的仓库"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1250
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1232
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:1262
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1244
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 "生产开始时物料转移的目标仓库,可选择组仓库作为在制品仓库"
@@ -54852,19 +54951,19 @@ msgstr "生产开始时物料转移的目标仓库,可选择组仓库作为在
msgid "The withdrawal or deposit amounts - only required if there's no amount column."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:893
+#: erpnext/manufacturing/doctype/job_card/job_card.py:896
msgid "The {0} ({1}) must be equal to {2} ({3})"
msgstr "{0}({1})必须等于{2}({3})"
-#: erpnext/public/js/controllers/transaction.js:3328
+#: erpnext/public/js/controllers/transaction.js:3330
msgid "The {0} contains Unit Price Items."
msgstr "{0}包含单价物料。"
-#: erpnext/stock/doctype/item/item.py:492
+#: erpnext/stock/doctype/item/item.py:491
msgid "The {0} prefix '{1}' already exists. Please change the Serial No Series, otherwise you will get a Duplicate Entry error."
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:878
+#: erpnext/stock/doctype/material_request/material_request.py:877
msgid "The {0} {1} created successfully"
msgstr "成功创建{0}{1}"
@@ -54872,7 +54971,7 @@ msgstr "成功创建{0}{1}"
msgid "The {0} {1} does not match with the {0} {2} in the {3} {4}"
msgstr "{0}{1}与{3}{4}中的{0}{2}不匹配"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:996
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1002
msgid "The {0} {1} is used to calculate the valuation cost for the finished good {2}."
msgstr "{0} {1} 用于计算入库成品成本"
@@ -54888,7 +54987,7 @@ msgstr "资产存在有效维护或维修记录。取消前需完成所有相关
msgid "There are inconsistencies between the rate, no of shares and the amount calculated"
msgstr "单价,股份数量和计算的金额之间不一致"
-#: erpnext/accounts/doctype/account/account.py:203
+#: erpnext/accounts/doctype/account/account.py:207
msgid "There are ledger entries against this account. Changing {0} to non-{1} in live system will cause incorrect output in 'Accounts {2}' report"
msgstr "存在关联总账分录。在生产系统将{0}改为非{1}将导致'{2}'报表错误"
@@ -54917,7 +55016,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:1177
+#: erpnext/stock/doctype/item/item.js:1161
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 "库存计价有两种方法:先进先出(FIFO)和移动平均。详情请参阅物料计价方法 "
@@ -54957,7 +55056,7 @@ msgstr "未找到{0}:{1}对应的批次"
msgid "There is one unreconciled transaction before {0}."
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:1758
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:879
msgid "There must be atleast 1 Finished Good in this Stock Entry"
msgstr "至少须有一行勾选了是成品的明细行"
@@ -55013,11 +55112,11 @@ msgstr "此物料是基于模板物料{0}的多规格物料。"
msgid "This Month's Summary"
msgstr "本月摘要"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:974
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:985
msgid "This Purchase Order has been fully subcontracted."
msgstr "本采购订单已完全外包。"
-#: erpnext/selling/doctype/sales_order/sales_order.py:2187
+#: erpnext/selling/doctype/sales_order/sales_order.py:2213
msgid "This Sales Order has been fully subcontracted."
msgstr "本销售订单已完全外包。"
@@ -55051,7 +55150,7 @@ msgstr ""
msgid "This covers all scorecards tied to this Setup"
msgstr "包含已设置的所有评分卡"
-#: erpnext/controllers/status_updater.py:478
+#: erpnext/controllers/status_updater.py:488
msgid "This document is over limit by {0} {1} for item {4}. Are you making another {3} against the same {2}?"
msgstr "物料{4}{0} 超出订单允许量 {1}。你在对同一个{2}做另一个{3}?"
@@ -55154,11 +55253,11 @@ msgstr "从会计角度看此操作存在风险"
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:1243
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1225
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:1165
+#: erpnext/stock/doctype/item/item.js:1149
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 "适用于用于生产成品的原材料。若物料是BOM中的附加服务(如'清洗'),请勿勾选"
@@ -55227,7 +55326,7 @@ msgstr "因被耗用在资产资本化{1}中,已为资产{0} 创建折旧计
msgid "This schedule was created when Asset {0} was repaired through Asset Repair {1}."
msgstr "此计划在资产{0}通过资产维修{1}修复时创建"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1501
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1515
msgid "This schedule was created when Asset {0} was restored due to Sales Invoice {1} cancellation."
msgstr "本计划因销售发票{1}取消恢复资产{0}时创建。"
@@ -55235,15 +55334,15 @@ msgstr "本计划因销售发票{1}取消恢复资产{0}时创建。"
msgid "This schedule was created when Asset {0} was restored on Asset Capitalization {1}'s cancellation."
msgstr "因取消资产资本化{1},已为资产{0} 创建折旧计划"
-#: erpnext/assets/doctype/asset/depreciation.py:462
+#: erpnext/assets/doctype/asset/depreciation.py:464
msgid "This schedule was created when Asset {0} was restored."
msgstr "针对固定资产 {0} 恢复的折旧计划已创建"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1497
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1511
msgid "This schedule was created when Asset {0} was returned through Sales Invoice {1}."
msgstr "因经由销售发票 {1} 退回,已创建固定资产{0} 折旧计划"
-#: erpnext/assets/doctype/asset/depreciation.py:421
+#: erpnext/assets/doctype/asset/depreciation.py:422
msgid "This schedule was created when Asset {0} was scrapped."
msgstr "针对固定资产 {0} 报废的折旧计划已创建"
@@ -55251,7 +55350,7 @@ msgstr "针对固定资产 {0} 报废的折旧计划已创建"
msgid "This schedule was created when Asset {0} was {1} into new Asset {2}."
msgstr "本计划因资产{0}{1}至新资产{2}时创建。"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1473
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1487
msgid "This schedule was created when Asset {0} was {1} through Sales Invoice {2}."
msgstr "本计划因资产{0}通过销售发票{2}{1}时创建。"
@@ -55320,7 +55419,7 @@ msgstr ""
msgid "This will restrict user access to other employee records"
msgstr "这将限制用户访问其他员工记录"
-#: erpnext/controllers/selling_controller.py:886
+#: erpnext/controllers/selling_controller.py:887
msgid "This {} will be treated as material transfer."
msgstr "此{}将被视为物料转移"
@@ -55431,7 +55530,7 @@ msgstr "分钟"
msgid "Time in mins."
msgstr "分钟"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:872
+#: erpnext/manufacturing/doctype/job_card/job_card.py:873
msgid "Time logs are required for {0} {1}"
msgstr "请为 {0} {1} 填写工时记录"
@@ -55540,7 +55639,7 @@ msgstr "待开票"
msgid "To Currency"
msgstr "目标货币"
-#: erpnext/controllers/accounts_controller.py:626
+#: erpnext/controllers/accounts_controller.py:627
#: erpnext/setup/doctype/holiday_list/holiday_list.py:121
msgid "To Date cannot be before From Date"
msgstr "到日期不能早于日期"
@@ -55767,11 +55866,15 @@ msgstr "要添加操作,请勾选“包含操作”复选框。"
msgid "To add subcontracted Item's raw materials if include exploded items is disabled."
msgstr "如果禁用包含爆炸项,则添加分包项的原材料。"
-#: erpnext/controllers/status_updater.py:471
+#: erpnext/controllers/status_updater.py:481
msgid "To allow over billing, update \"Over Billing Allowance\" in Accounts Settings or the Item."
msgstr "要允许超订单金额开票,请在“会计设置”或“物料主数据”中更新“发票超金额控制(%)”。"
-#: erpnext/controllers/status_updater.py:467
+#: erpnext/controllers/status_updater.py:475
+msgid "To allow over ordering, update \"Over Order Allowance\" in Buying Settings."
+msgstr ""
+
+#: erpnext/controllers/status_updater.py:477
msgid "To allow over receipt / delivery, update \"Over Receipt/Delivery Allowance\" in Stock Settings or the Item."
msgstr "要允许超量收货/出货,请在库存设置或物料主数据中更新“出入库超量控制”。"
@@ -55814,11 +55917,11 @@ msgid "To include sub-assembly costs and secondary items in Finished Goods on a
msgstr ""
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2249
-#: erpnext/controllers/accounts_controller.py:3255
+#: erpnext/controllers/accounts_controller.py:3249
msgid "To include tax in row {0} in Item rate, taxes in rows {1} must also be included"
msgstr "第{0}行的物料单价要含税,第{1}行的税也必须包括在内"
-#: erpnext/stock/doctype/item/item.py:710
+#: erpnext/stock/doctype/item/item.py:709
msgid "To merge, following properties must be same for both items"
msgstr "若要合并,两个物料的以下属性必须相同"
@@ -55826,7 +55929,7 @@ msgstr "若要合并,两个物料的以下属性必须相同"
msgid "To not apply Pricing Rule in a particular transaction, all applicable Pricing Rules should be disabled."
msgstr "若要在特定交易中不应用定价规则,应禁用所有适用的定价规则。"
-#: erpnext/accounts/doctype/account/account.py:554
+#: erpnext/accounts/doctype/account/account.py:564
msgid "To overrule this, enable '{0}' in company {1}"
msgstr "要否决此问题,请在公司{1}中启用“ {0}”"
@@ -55851,7 +55954,7 @@ msgstr "若要提交没有购买收据的发票,请在 {2}中将 {0} 设置为
msgid "To use a different finance book, please uncheck 'Include Default FB Assets'"
msgstr "要使用不同的财务账簿,请取消选中“包括默认 FB 资产”"
-#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:748
+#: erpnext/accounts/doctype/financial_report_template/financial_report_engine.py:749
#: erpnext/accounts/report/financial_statements.py:621
#: erpnext/accounts/report/general_ledger/general_ledger.py:318
#: erpnext/accounts/report/trial_balance/trial_balance.py:310
@@ -56001,7 +56104,7 @@ msgstr "分配总额"
#: banking/src/components/features/BankReconciliation/RecordPaymentModal.tsx:869
#: erpnext/accounts/doctype/invoice_discounting/invoice_discounting.json
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
-#: erpnext/selling/page/sales_funnel/sales_funnel.py:167
+#: erpnext/selling/page/sales_funnel/sales_funnel.py:168
#: erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:66
@@ -56108,12 +56211,12 @@ msgstr "总佣金"
#. Label of the total_completed_qty (Float) field in DocType 'Job Card'
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/job_card/job_card.py:889
+#: erpnext/manufacturing/doctype/job_card/job_card.py:892
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.py:174
msgid "Total Completed Qty"
msgstr "总完工数量"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:191
+#: erpnext/manufacturing/doctype/job_card/job_card.py:192
msgid "Total Completed Qty is required for Job Card {0}, please start and complete the job card before submission"
msgstr ""
@@ -56415,7 +56518,7 @@ msgstr "总未付金额"
msgid "Total Paid Amount"
msgstr "总付款金额"
-#: erpnext/controllers/accounts_controller.py:2801
+#: erpnext/controllers/accounts_controller.py:2802
msgid "Total Payment Amount in Payment Schedule must be equal to Grand / Rounded Total"
msgstr "付款计划汇总金额与总计(圆整后)金额不符"
@@ -56427,7 +56530,7 @@ msgstr "付款申请总金额不得超过{0}金额"
msgid "Total Payments"
msgstr "总付款"
-#: erpnext/selling/doctype/sales_order/sales_order.py:724
+#: erpnext/selling/doctype/sales_order/sales_order.py:731
msgid "Total Picked Quantity {0} is more than ordered qty {1}. You can set the Over Picking Allowance in Stock Settings."
msgstr "已拣货数量{0}超过订单数量{1}。可在库存设置中设置超拣许可量"
@@ -56710,7 +56813,7 @@ msgstr "工作站总时间(小时)"
msgid "Total allocated percentage for sales team should be 100"
msgstr "销售团队总分配比例应为100"
-#: erpnext/selling/doctype/customer/customer.py:194
+#: erpnext/selling/doctype/customer/customer.py:184
msgid "Total contribution percentage should be equal to 100"
msgstr "总贡献百分比应等于100"
@@ -56885,7 +56988,7 @@ msgstr "交易日期"
msgid "Transaction Dates"
msgstr ""
-#: erpnext/setup/doctype/company/company.py:1093
+#: erpnext/setup/doctype/company/company.py:1097
msgid "Transaction Deletion Document {0} has been triggered for company {1}"
msgstr ""
@@ -56909,11 +57012,11 @@ msgstr "业务交易删除记录明细"
msgid "Transaction Deletion Record To Delete"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1102
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1103
msgid "Transaction Deletion Record {0} is already running. {1}"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1121
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:1122
msgid "Transaction Deletion Record {0} is currently deleting {1}. Cannot save documents until deletion completes."
msgstr ""
@@ -57018,7 +57121,8 @@ msgstr ""
msgid "Transaction from which tax is withheld"
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:865
+#: erpnext/manufacturing/doctype/job_card/job_card.py:866
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:38
msgid "Transaction not allowed against stopped Work Order {0}"
msgstr "生产工单 {0} 已停止,不允许操作"
@@ -57065,11 +57169,16 @@ 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'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Transactions are blocked or warned when outstanding balance exceeds this amount."
+msgstr ""
+
#: banking/src/components/features/BankStatementImporter/CSV/StatementDetails.tsx:230
msgid "Transactions to be imported into the system"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1158
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1163
msgid "Transactions using Sales Invoice in POS are disabled."
msgstr "POS中使用销售发票的交易已被禁用。"
@@ -57250,8 +57359,8 @@ msgstr "物流信息"
msgid "Transporter Name"
msgstr "物流公司名"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:128
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:214
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:132
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:219
msgid "Travel Expenses"
msgstr "差旅费"
@@ -57515,6 +57624,7 @@ msgstr "阿联酋增值税设置"
#: erpnext/stock/doctype/delivery_note_item/delivery_note_item.json
#: erpnext/stock/doctype/delivery_stop/delivery_stop.json
#: erpnext/stock/doctype/item/item.json
+#: erpnext/stock/doctype/item/item_list.js:41
#: erpnext/stock/doctype/item_barcode/item_barcode.json
#: erpnext/stock/doctype/item_price/item_price.json
#: erpnext/stock/doctype/material_request_item/material_request_item.json
@@ -57530,7 +57640,7 @@ msgstr "阿联酋增值税设置"
#: erpnext/stock/report/item_prices/item_prices.py:55
#: erpnext/stock/report/item_wise_consumption/item_wise_consumption.py:60
#: erpnext/stock/report/product_bundle_balance/product_bundle_balance.py:93
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:186
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:219
#: erpnext/stock/report/stock_analytics/stock_analytics.py:59
#: erpnext/stock/report/stock_projected_qty/stock_projected_qty.py:136
#: erpnext/subcontracting/doctype/subcontracting_inward_order_service_item/subcontracting_inward_order_service_item.json
@@ -57591,7 +57701,7 @@ msgstr ""
msgid "UOM Conversion Factor"
msgstr "单位换算系数"
-#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1467
+#: erpnext/manufacturing/doctype/production_plan/production_plan.py:1469
msgid "UOM Conversion factor ({0} -> {1}) not found for item: {2}"
msgstr "物料{2}的计量单位换算系数({0}→{1})未找到"
@@ -57604,7 +57714,7 @@ msgstr "请为第{0}行输入单位换算系数"
msgid "UOM Name"
msgstr "单位名称"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:3992
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:1719
msgid "UOM conversion factor required for UOM: {0} in Item: {1}"
msgstr "物料{1}的计量单位{0}需要换算系数"
@@ -57676,13 +57786,13 @@ msgstr "无法为关键日期{2}查找{0}到{1}的汇率。请手动创建汇率
msgid "Unable to find score starting at {0}. You need to have standing scores covering 0 to 100"
msgstr "无法从{0}开始获得分数。你需要有0到100的常规分数"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1063
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1064
msgid "Unable to find the time slot in the next {0} days for the operation {1}. Please increase the 'Capacity Planning For (Days)' in the {2}."
msgstr "未来{0}天内未找到工序{1}的可用时段,请在{2}中增加'产能计划周期(天)'"
-#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:91
-msgid "Unable to find variable:"
-msgstr "无法找到变量:"
+#: erpnext/buying/doctype/supplier_scorecard_criteria/supplier_scorecard_criteria.py:85
+msgid "Unable to find variable: {0}"
+msgstr ""
#: banking/src/components/features/BankReconciliation/BankTransactionList.tsx:102
#: banking/src/components/features/BankReconciliation/MatchAndReconcile.tsx:322
@@ -57763,7 +57873,7 @@ msgstr ""
msgid "Undo {}?"
msgstr ""
-#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:937
+#: erpnext/setup/doctype/transaction_deletion_record/transaction_deletion_record.py:938
msgid "Unexpected Naming Series Pattern"
msgstr ""
@@ -57782,7 +57892,7 @@ msgstr "单位"
msgid "Unit Of Measure"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:3925
+#: erpnext/controllers/accounts_controller.py:3931
msgid "Unit Price"
msgstr ""
@@ -57799,7 +57909,7 @@ msgstr "单位"
msgid "Unit of Measure (UOM)"
msgstr "计量单位"
-#: erpnext/stock/doctype/item/item.py:453
+#: erpnext/stock/doctype/item/item.py:452
msgid "Unit of Measure {0} has been entered more than once in Conversion Factor Table"
msgstr "单位{0}已经在换算系数表内"
@@ -57944,7 +58054,7 @@ msgstr "未核销单据"
msgid "Unreconciled Transactions"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:952
+#: erpnext/manufacturing/doctype/work_order/work_order.js:934
#: erpnext/selling/doctype/sales_order/sales_order.js:122
#: erpnext/stock/doctype/pick_list/pick_list.js:161
#: erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js:192
@@ -57984,12 +58094,12 @@ msgstr "未解决"
msgid "Unscheduled"
msgstr "计划外"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:178
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:305
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:182
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:310
msgid "Unsecured Loans"
msgstr "无担保借款"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1712
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:1714
msgid "Unset Matched Payment Request"
msgstr "取消匹配付款申请"
@@ -58165,7 +58275,7 @@ msgstr "订单变更"
#. Invoice'
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/controllers/accounts_controller.py:198
+#: erpnext/controllers/accounts_controller.py:199
msgid "Update Outstanding for Self"
msgstr "更新本单未付金额"
@@ -58244,11 +58354,11 @@ msgstr ""
msgid "Updating Costing and Billing fields against this Project..."
msgstr "正在更新本项目的成本核算与计费字段..."
-#: erpnext/stock/doctype/item/item.py:1504
+#: erpnext/stock/doctype/item/item.py:1508
msgid "Updating Variants..."
msgstr "更新多规格物料......"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:1205
+#: erpnext/manufacturing/doctype/work_order/work_order.js:1187
msgid "Updating Work Order status"
msgstr "正在更新工单状态"
@@ -58450,7 +58560,7 @@ msgstr ""
msgid "Use Transaction Date Exchange Rate"
msgstr "使用交易日汇率"
-#: erpnext/projects/doctype/project/project.py:567
+#: erpnext/projects/doctype/project/project.py:605
msgid "Use a name that is different from previous project name"
msgstr "使用与之前项目名称不同的名称"
@@ -58492,7 +58602,7 @@ msgstr ""
msgid "Used with Financial Report Template"
msgstr ""
-#: erpnext/setup/install.py:204
+#: erpnext/setup/install.py:236
msgid "User Forum"
msgstr "用户论坛"
@@ -58556,6 +58666,11 @@ msgstr "勾选后采购发票与采购入库的价差会自动(追溯)结转到
msgid "Users can make manufacture entry against Job Cards"
msgstr ""
+#. Description of the 'Portal Users' (Tab Break) field in DocType 'Customer'
+#: erpnext/selling/doctype/customer/customer.json
+msgid "Users listed here can log into the customer portal to view their orders, invoices, and deliveries."
+msgstr ""
+
#. Description of the 'Role Allowed to Over Bill ' (Link) field in DocType
#. 'Accounts Settings'
#: erpnext/accounts/doctype/accounts_settings/accounts_settings.json
@@ -58578,8 +58693,8 @@ msgstr ""
msgid "Using negative stock disables FIFO/Moving average valuation when inventory is negative."
msgstr "启用负库存时,若库存为负将禁用先进先出/移动平均计价法"
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:129
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:215
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:133
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:220
msgid "Utility Expenses"
msgstr "基础设施费用"
@@ -58589,7 +58704,7 @@ msgstr "基础设施费用"
msgid "VAT Accounts"
msgstr "增值税科目"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:28
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:40
msgid "VAT Amount (AED)"
msgstr "增值税金额(迪拉姆)"
@@ -58599,12 +58714,12 @@ msgid "VAT Audit Report"
msgstr "增值税审计报告"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:47
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:111
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:123
msgid "VAT on Expenses and All Other Inputs"
msgstr "费用及所有其他投入的增值税"
#: erpnext/regional/report/uae_vat_201/uae_vat_201.html:15
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:45
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:57
msgid "VAT on Sales and All Other Outputs"
msgstr "销售及所有其他产出的增值税"
@@ -58798,7 +58913,6 @@ msgstr "成本价计算方法"
#. Label of the valuation_rate (Currency) field in DocType 'Stock Closing
#. Balance'
#. Label of the valuation_rate (Currency) field in DocType 'Stock Entry Detail'
-#. Label of the valuation_rate (Currency) field in DocType 'Stock Ledger Entry'
#. Label of the valuation_rate (Currency) field in DocType 'Stock
#. Reconciliation Item'
#: erpnext/accounts/doctype/purchase_invoice_item/purchase_invoice_item.json
@@ -58814,14 +58928,12 @@ msgstr "成本价计算方法"
#: erpnext/stock/doctype/serial_and_batch_entry/serial_and_batch_entry.json
#: erpnext/stock/doctype/stock_closing_balance/stock_closing_balance.json
#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
-#: erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
#: erpnext/stock/doctype/stock_reconciliation_item/stock_reconciliation_item.json
#: erpnext/stock/report/available_serial_no/available_serial_no.py:164
#: erpnext/stock/report/batch_wise_balance_history/batch_wise_balance_history.py:85
#: erpnext/stock/report/item_prices/item_prices.py:57
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:68
#: erpnext/stock/report/stock_balance/stock_balance.py:566
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:377
msgid "Valuation Rate"
msgstr "成本价"
@@ -58829,19 +58941,19 @@ msgstr "成本价"
msgid "Valuation Rate (In / Out)"
msgstr "成本价(入 / 出)"
-#: erpnext/stock/stock_ledger.py:2075
+#: erpnext/stock/stock_ledger.py:2041
msgid "Valuation Rate Missing"
msgstr "无成本价"
-#: erpnext/stock/stock_ledger.py:2053
+#: erpnext/stock/stock_ledger.py:2019
msgid "Valuation Rate for the Item {0}, is required to do accounting entries for {1} {2}."
msgstr "要为{1} {2}生成会计凭证,物料{0}须有成本价"
-#: erpnext/stock/doctype/item/item.py:314
+#: erpnext/stock/doctype/item/item.py:313
msgid "Valuation Rate is mandatory if Opening Stock entered"
msgstr "库存开账凭证中成本价字段必填"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:789
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:792
msgid "Valuation Rate required for Item {0} at row {1}"
msgstr "第{1}的物料{0}需有成本价"
@@ -58851,7 +58963,7 @@ msgstr "第{1}的物料{0}需有成本价"
msgid "Valuation and Total"
msgstr "成本价与总计"
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1009
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:1012
msgid "Valuation rate for customer provided items has been set to zero."
msgstr "客户提供物料的计价单价已设为零"
@@ -58865,7 +58977,7 @@ msgid "Valuation rate for the item as per Sales Invoice (Only for Internal Trans
msgstr "按销售发票的物料计价单价(仅限内部调拨)"
#: erpnext/accounts/doctype/payment_entry/payment_entry.py:2273
-#: erpnext/controllers/accounts_controller.py:3279
+#: erpnext/controllers/accounts_controller.py:3273
msgid "Valuation type charges can not be marked as Inclusive"
msgstr "计价类型费用不可标记为含税"
@@ -58877,7 +58989,7 @@ msgstr "估值类型罪名不能标记为包容性"
msgid "Value (G - D)"
msgstr "价值(G-D)"
-#: erpnext/stock/report/stock_ageing/stock_ageing.py:229
+#: erpnext/stock/report/stock_ageing/stock_ageing.py:262
msgid "Value ({0})"
msgstr "值({0})"
@@ -58996,12 +59108,12 @@ msgid "Variance ({})"
msgstr "差异({})"
#: erpnext/stock/doctype/item/item.js:241
-#: erpnext/stock/doctype/item/item_list.js:22
+#: erpnext/stock/doctype/item/item_list.js:59
#: erpnext/stock/report/item_variant_details/item_variant_details.py:74
msgid "Variant"
msgstr "多规格物料"
-#: erpnext/stock/doctype/item/item.py:976
+#: erpnext/stock/doctype/item/item.py:980
msgid "Variant Attribute Error"
msgstr "变体属性错误"
@@ -59020,7 +59132,7 @@ msgstr "变体BOM"
msgid "Variant Based On"
msgstr "多规格物料基于"
-#: erpnext/stock/doctype/item/item.py:1004
+#: erpnext/stock/doctype/item/item.py:1008
msgid "Variant Based On cannot be changed"
msgstr "Variant Based On无法更改"
@@ -59038,7 +59150,7 @@ msgstr "多规格物料字段"
msgid "Variant Item"
msgstr "变体物料"
-#: erpnext/stock/doctype/item/item.py:974
+#: erpnext/stock/doctype/item/item.py:978
msgid "Variant Items"
msgstr "变体物料"
@@ -59049,7 +59161,7 @@ msgstr "变体物料"
msgid "Variant Of"
msgstr "模板物料"
-#: erpnext/stock/doctype/item/item.js:857
+#: erpnext/stock/doctype/item/item.js:838
msgid "Variant creation has been queued."
msgstr "创建多规格物料任务已添加到后台资料更新队列中。"
@@ -59343,7 +59455,7 @@ msgstr "凭证"
#: erpnext/stock/report/available_serial_no/available_serial_no.js:56
#: erpnext/stock/report/available_serial_no/available_serial_no.py:196
#: erpnext/stock/report/stock_ledger/stock_ledger.js:97
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:402
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:403
msgid "Voucher #"
msgstr "凭证号"
@@ -59415,7 +59527,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:1253
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1176
#: 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
@@ -59489,7 +59601,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:1251
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1174
#: 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
@@ -59516,7 +59628,7 @@ msgstr "源凭证业务类型"
#: erpnext/stock/report/serial_no_and_batch_traceability/serial_no_and_batch_traceability.py:486
#: erpnext/stock/report/serial_no_ledger/serial_no_ledger.py:28
#: erpnext/stock/report/stock_and_account_value_comparison/stock_and_account_value_comparison.py:152
-#: erpnext/stock/report/stock_ledger/stock_ledger.py:400
+#: erpnext/stock/report/stock_ledger/stock_ledger.py:401
#: erpnext/stock/report/stock_ledger_invariant_check/stock_ledger_invariant_check.py:159
#: erpnext/stock/report/stock_ledger_variance/stock_ledger_variance.py:68
msgid "Voucher Type"
@@ -59696,8 +59808,8 @@ msgstr ""
msgid "Warehouse not found against the account {0}"
msgstr "账户{0}未关联仓库"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1215
-#: erpnext/stock/doctype/delivery_note/delivery_note.py:444
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1220
+#: erpnext/stock/doctype/delivery_note/delivery_note.py:445
msgid "Warehouse required for stock Item {0}"
msgstr "物料{0}需要指定仓库"
@@ -59722,7 +59834,7 @@ msgstr "仓库{0}不属于公司{1}"
msgid "Warehouse {0} does not exist"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.py:246
+#: erpnext/manufacturing/doctype/work_order/work_order.py:247
msgid "Warehouse {0} is not allowed for Sales Order {1}, it should be {2}"
msgstr "销售订单{1}不允许使用仓库{0},应使用{2}"
@@ -59859,11 +59971,11 @@ msgstr "警告:库存凭证{2}中已存在另一个{0}#{1}"
msgid "Warning: Material Requested Qty is less than Minimum Order Qty"
msgstr "警告:物料需求数量低于最小起订量"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1482
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1483
msgid "Warning: Quantity exceeds maximum producible quantity based on quantity of raw materials received through the Subcontracting Inward Order {0}."
msgstr "警告:数量超过基于外包收货订单{0}接收的原材料数量的最大可生产数量。"
-#: erpnext/selling/doctype/sales_order/sales_order.py:351
+#: erpnext/selling/doctype/sales_order/sales_order.py:355
msgid "Warning: Sales Order {0} already exists against Customer's Purchase Order {1}"
msgstr "警告:已经有销售订单{0}关联了客户采购订单号{1}"
@@ -59953,7 +60065,7 @@ msgstr "波长(千米)"
msgid "Wavelength In Megametres"
msgstr "波长(兆米)"
-#: erpnext/controllers/accounts_controller.py:193
+#: erpnext/controllers/accounts_controller.py:194
msgid "We can see {0} is made against {1}. If you want {1}'s outstanding to be updated, uncheck the '{2}' checkbox."
msgstr ""
@@ -60022,7 +60134,7 @@ msgstr "网站:"
msgid "Week of the year"
msgstr ""
-#: erpnext/selling/report/sales_analytics/sales_analytics.py:433
+#: erpnext/selling/report/sales_analytics/sales_analytics.py:457
#: erpnext/stock/report/stock_analytics/stock_analytics.py:121
msgid "Week {0} {1}"
msgstr "{1} 第{0}周"
@@ -60152,7 +60264,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:1184
+#: erpnext/stock/doctype/item/item.js:1168
msgid "When creating an Item, entering a value for this field will automatically create an Item Price at the backend."
msgstr "创建物料时填写此字段值,将自动在后台创建物料价格"
@@ -60162,7 +60274,7 @@ msgstr "创建物料时填写此字段值,将自动在后台创建物料价格
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 ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:297
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:705
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 ""
@@ -60172,11 +60284,11 @@ msgstr ""
msgid "When you pay for something upfront (like annual insurance), the cost is held here and recognized gradually over time"
msgstr ""
-#: erpnext/accounts/doctype/account/account.py:380
+#: erpnext/accounts/doctype/account/account.py:384
msgid "While creating account for Child Company {0}, parent account {1} found as a ledger account."
msgstr "在为子公司{0}创建科目时,发现父科目{1}是一个未勾选是组的记账科目。"
-#: erpnext/accounts/doctype/account/account.py:370
+#: 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 "为子公司{0}创建账户时未找到上级账户{1},请在对应科目表中创建"
@@ -60321,7 +60433,7 @@ 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:384
+#: erpnext/setup/doctype/company/company.py:388
#: erpnext/support/doctype/warranty_claim/warranty_claim.json
msgid "Work In Progress"
msgstr "进行中"
@@ -60358,7 +60470,7 @@ msgstr "进行中"
#: erpnext/selling/doctype/sales_order/sales_order.js:1094
#: erpnext/stock/doctype/material_request/material_request.js:216
#: erpnext/stock/doctype/material_request/material_request.json
-#: erpnext/stock/doctype/material_request/material_request.py:879
+#: erpnext/stock/doctype/material_request/material_request.py:878
#: erpnext/stock/doctype/pick_list/pick_list.json
#: erpnext/stock/doctype/serial_no/serial_no.json
#: erpnext/stock/doctype/stock_entry/stock_entry.json
@@ -60392,7 +60504,7 @@ msgstr "工单已耗用物料"
msgid "Work Order Item"
msgstr "工单明细"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:910
+#: erpnext/stock/doctype/stock_entry/stock_entry.py:527
msgid "Work Order Mismatch"
msgstr ""
@@ -60433,19 +60545,23 @@ msgstr "工单进度追踪表"
msgid "Work Order Summary Report"
msgstr ""
-#: erpnext/stock/doctype/material_request/material_request.py:885
+#: erpnext/stock/doctype/material_request/material_request.py:884
msgid "Work Order cannot be created for following reason: {0}"
msgstr "无法创建生产工单,原因: {0}"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:1426
+#: erpnext/manufacturing/doctype/work_order/work_order.py:1427
msgid "Work Order cannot be raised against a Item Template"
msgstr "不能为模板物料创建新生产工单"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2510
-#: erpnext/manufacturing/doctype/work_order/work_order.py:2590
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2511
+#: erpnext/manufacturing/doctype/work_order/work_order.py:2591
msgid "Work Order has been {0}"
msgstr "生产工单已{0}"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py:285
+msgid "Work Order is mandatory"
+msgstr ""
+
#: erpnext/selling/doctype/sales_order/sales_order.js:1297
msgid "Work Order not created"
msgstr "生产工单未创建"
@@ -60454,16 +60570,16 @@ msgstr "生产工单未创建"
msgid "Work Order {0} created"
msgstr "工作订单{0}已创建"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:2368
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py:100
msgid "Work Order {0} has no produced qty"
msgstr ""
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:947
-msgid "Work Order {0}: Job Card not found for the operation {1}"
-msgstr "工单 {0}: Job Card not found 未找到针对工序 {1} 的生产任务单"
+#: erpnext/stock/doctype/stock_entry/stock_entry_handler/base.py:35
+msgid "Work Order {0} must be submitted"
+msgstr ""
#: erpnext/manufacturing/report/job_card_summary/job_card_summary.js:56
-#: erpnext/stock/doctype/material_request/material_request.py:873
+#: erpnext/stock/doctype/material_request/material_request.py:872
msgid "Work Orders"
msgstr "工单"
@@ -60488,7 +60604,7 @@ msgstr "进行中"
msgid "Work-in-Progress Warehouse"
msgstr "车间仓"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:791
+#: erpnext/manufacturing/doctype/work_order/work_order.py:792
msgid "Work-in-Progress Warehouse is required before Submit"
msgstr "请指定车间仓后再提交"
@@ -60536,7 +60652,7 @@ msgstr "工作时间"
#: erpnext/manufacturing/doctype/bom_operation/bom_operation.json
#: erpnext/manufacturing/doctype/bom_website_operation/bom_website_operation.json
#: erpnext/manufacturing/doctype/job_card/job_card.json
-#: erpnext/manufacturing/doctype/work_order/work_order.js:344
+#: erpnext/manufacturing/doctype/work_order/work_order.js:325
#: erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
#: erpnext/manufacturing/doctype/workstation/workstation.json
#: erpnext/manufacturing/report/bom_operations_time/bom_operations_time.js:35
@@ -60627,14 +60743,14 @@ msgstr "工作站列表"
#. Label of the write_off (Section Break) field in DocType 'Purchase Invoice'
#. Label of the write_off_section (Section Break) field in DocType 'Sales
#. Invoice'
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:130
-#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:216
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py:134
+#: erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts_with_account_number.py:221
#: erpnext/accounts/doctype/journal_entry/journal_entry.json
#: erpnext/accounts/doctype/pos_invoice/pos_invoice.json
#: erpnext/accounts/doctype/pos_profile/pos_profile.json
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.json
#: erpnext/accounts/doctype/sales_invoice/sales_invoice.json
-#: erpnext/setup/doctype/company/company.py:666
+#: erpnext/setup/doctype/company/company.py:671
msgid "Write Off"
msgstr "内部销账"
@@ -60739,7 +60855,7 @@ msgstr "账面净值"
msgid "Wrong Company"
msgstr "错误公司"
-#: erpnext/setup/doctype/company/company.js:233
+#: erpnext/setup/doctype/company/company.js:249
msgid "Wrong Password"
msgstr "密码错误"
@@ -60795,11 +60911,11 @@ msgstr "新财年开始或结束日期与{0}重叠。请在公司主数据中设
msgid "You are importing data for the code list:"
msgstr "您正在导入代码列表的数据:"
-#: erpnext/controllers/accounts_controller.py:4029
+#: erpnext/controllers/accounts_controller.py:4035
msgid "You are not allowed to update as per the conditions set in {} Workflow."
msgstr "根据{}工作流设置的条件,您无权更新"
-#: erpnext/accounts/general_ledger.py:812
+#: erpnext/accounts/general_ledger.py:817
msgid "You are not authorized to add or update entries before {0}"
msgstr "你未被授权在会计设置->会计关账 中设置的冻结记账截止日 {0} 前新增或变更会计凭证。"
@@ -60807,7 +60923,7 @@ msgstr "你未被授权在会计设置->会计关账 中设置的冻结记账截
msgid "You are not authorized to make/edit Stock Transactions for Item {0} under warehouse {1} before this time."
msgstr "您此时无权在仓库{1}下为物料{0}创建/编辑库存交易"
-#: erpnext/accounts/doctype/account/account.py:312
+#: erpnext/accounts/doctype/account/account.py:316
msgid "You are not authorized to set Frozen value"
msgstr "您没有权限设定冻结值"
@@ -60835,7 +60951,7 @@ msgstr "您还可以在公司{}主数据中设置默认在建工程科目"
msgid "You can also use variables in the series name by putting them between (.) dots"
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1016
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1017
msgid "You can change the parent account to a Balance Sheet account or select a different account."
msgstr "您可以将上级科目更改为资产负债表科目或选择其他科目"
@@ -60876,11 +60992,11 @@ msgstr "可设置为机器名称或工序类型,例如:缝纫机12号"
msgid "You can set up the rule to split the transaction across multiple accounts."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:214
+#: erpnext/controllers/accounts_controller.py:215
msgid "You can use {0} to reconcile against {1} later."
msgstr ""
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1332
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1340
msgid "You can't make any changes to Job Card since Work Order is closed."
msgstr "因生产工单已关闭,生产任务单不能再变更"
@@ -60904,7 +61020,7 @@ msgstr "不能在已关闭会计期间 {1} 创建 {0}"
msgid "You cannot create or cancel any accounting entries with in the closed Accounting Period {0}"
msgstr "在已关闭的会计期间{0}内无法创建或取消会计分录"
-#: erpnext/accounts/general_ledger.py:832
+#: erpnext/accounts/general_ledger.py:837
msgid "You cannot create/amend any accounting entries till this date."
msgstr "不允许创建/修改早于此日期的会计凭证"
@@ -60965,7 +61081,7 @@ msgstr ""
msgid "You do not have permission to import bank transactions"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4005
+#: erpnext/controllers/accounts_controller.py:4011
msgid "You do not have permissions to {} items in a {}."
msgstr "您无权{} {}。"
@@ -60977,19 +61093,19 @@ msgstr "您的忠诚度积分不足"
msgid "You don't have enough points to redeem."
msgstr "您的积分不足以兑换"
-#: erpnext/controllers/accounts_controller.py:4466
+#: erpnext/controllers/accounts_controller.py:4454
msgid "You don't have permission to create a Company Address. Please contact your System Manager."
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4446
+#: erpnext/controllers/accounts_controller.py:4434
msgid "You don't have permission to update Company details. Please contact your System Manager."
msgstr ""
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:576
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:578
msgid "You don't have permission to update Received Qty DocField for item {0}"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:4440
+#: erpnext/controllers/accounts_controller.py:4428
msgid "You don't have permission to update this document. Please contact your System Manager."
msgstr ""
@@ -61001,7 +61117,7 @@ msgstr "创建期初发票时出现{}个错误,请检查{}获取详情"
msgid "You have already selected items from {0} {1}"
msgstr "您已经从{0} {1}选择了物料"
-#: erpnext/projects/doctype/project/project.py:362
+#: erpnext/projects/doctype/project/project.py:400
msgid "You have been invited to collaborate on the project {0}."
msgstr "您已被邀请参与项目{0}的协作"
@@ -61025,7 +61141,7 @@ msgstr ""
msgid "You have not performed any reconciliations in this session yet."
msgstr ""
-#: erpnext/stock/doctype/item/item.py:1180
+#: erpnext/stock/doctype/item/item.py:1184
msgid "You have to enable auto re-order in Stock Settings to maintain re-order levels."
msgstr "您必须在库存设置中启用自动重订货才能维护重订货点。"
@@ -61041,7 +61157,7 @@ msgstr "添加物料前需先选择客户"
msgid "You need to cancel POS Closing Entry {} to be able to cancel this document."
msgstr "需先取消POS结算单{}才能取消此单据"
-#: erpnext/controllers/accounts_controller.py:3230
+#: erpnext/controllers/accounts_controller.py:3224
msgid "You selected the account group {1} as {2} Account in row {0}. Please select a single account."
msgstr "第{0}行选择账户组{1}作为{2}科目,请选择单个科目"
@@ -61088,11 +61204,11 @@ msgstr "邮编"
msgid "Zero Balance"
msgstr "余额为0"
-#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:65
+#: erpnext/regional/report/uae_vat_201/uae_vat_201.py:77
msgid "Zero Rated"
msgstr "零税率"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:621
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:195
msgid "Zero quantity"
msgstr "零数量"
@@ -61114,11 +61230,11 @@ msgstr "压缩文件"
msgid "[Important] [ERPNext] Auto Reorder Errors"
msgstr "[重要][ERPNext]自动补货错误"
-#: erpnext/controllers/status_updater.py:302
+#: erpnext/controllers/status_updater.py:304
msgid "`Allow Negative rates for Items`"
msgstr "`允许物料负单价`"
-#: erpnext/stock/stock_ledger.py:2067
+#: erpnext/stock/stock_ledger.py:2033
msgid "after"
msgstr "之后"
@@ -61159,7 +61275,7 @@ msgid "cannot be greater than 100"
msgstr "不能大于100"
#: erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py:334
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1104
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1101
msgid "dated {0}"
msgstr "日期为{0}"
@@ -61308,7 +61424,7 @@ msgstr "未安装支付应用,请从{}或{}安装"
msgid "per hour"
msgstr "每小时"
-#: erpnext/stock/stock_ledger.py:2068
+#: erpnext/stock/stock_ledger.py:2034
msgid "performing either one below:"
msgstr "再提交或取消此单据"
@@ -61341,7 +61457,7 @@ msgstr "收款自"
msgid "reconciled"
msgstr "已核销"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "returned"
msgstr "已返还"
@@ -61376,7 +61492,7 @@ msgstr "RGT"
msgid "sandbox"
msgstr "沙盒环境"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1475
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1489
msgid "sold"
msgstr "已售"
@@ -61384,8 +61500,8 @@ msgstr "已售"
msgid "subscription is already cancelled."
msgstr "订阅已取消"
-#: erpnext/controllers/status_updater.py:481
-#: erpnext/controllers/status_updater.py:500
+#: erpnext/controllers/status_updater.py:491
+#: erpnext/controllers/status_updater.py:510
msgid "target_ref_field"
msgstr "目标参考字段"
@@ -61403,7 +61519,7 @@ msgstr "标题"
msgid "to"
msgstr "至"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3176
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:3288
msgid "to unallocate the amount of this Return Invoice before cancelling it."
msgstr "在取消前需先解除此退货发票的金额分配"
@@ -61430,7 +61546,7 @@ msgstr ""
msgid "unique e.g. SAVE20 To be used to get discount"
msgstr "唯一值,例如SAVE20,用于获取折扣"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:606
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:608
msgid "updated delivered quantity for item {0} to {1}"
msgstr ""
@@ -61452,7 +61568,7 @@ msgstr "通过物料清单更新工具"
msgid "you must select Capital Work in Progress Account in accounts table"
msgstr "请在明细表设置在建工程科目"
-#: erpnext/controllers/accounts_controller.py:1286
+#: erpnext/controllers/accounts_controller.py:1287
msgid "{0} '{1}' is disabled"
msgstr "{0}“{1}”已禁用"
@@ -61460,7 +61576,7 @@ msgstr "{0}“{1}”已禁用"
msgid "{0} '{1}' not in Fiscal Year {2}"
msgstr "{0}“ {1}”不属于{2}财年"
-#: erpnext/manufacturing/doctype/work_order/work_order.py:677
+#: erpnext/manufacturing/doctype/work_order/work_order.py:678
msgid "{0} ({1}) cannot be greater than planned quantity ({2}) in Work Order {3}"
msgstr "{0}({1})不能大于生产工单{3}中的计划数量({2})"
@@ -61468,7 +61584,7 @@ msgstr "{0}({1})不能大于生产工单{3}中的计划数量({2})"
msgid "{0} {1} has submitted Assets. Remove Item {2} from table to continue."
msgstr "{0}{1} 已提交资产,请从表中移除物料{2} 以继续"
-#: erpnext/controllers/accounts_controller.py:2383
+#: erpnext/controllers/accounts_controller.py:2384
msgid "{0} Account not found against Customer {1}."
msgstr "客户{1}未找到{0}科目"
@@ -61501,11 +61617,11 @@ msgstr ""
msgid "{0} Number {1} is already used in {2} {3}"
msgstr "{0} 代码 {1} 已被 {2} {3} 占用"
-#: erpnext/manufacturing/doctype/bom/bom.py:1689
+#: erpnext/manufacturing/doctype/bom/bom.py:1703
msgid "{0} Operating Cost for operation {1}"
msgstr "工序{1}的{0}运营成本"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:578
+#: erpnext/manufacturing/doctype/work_order/work_order.js:560
msgid "{0} Operations: {1}"
msgstr "{0} 工序:{1}"
@@ -61513,7 +61629,7 @@ msgstr "{0} 工序:{1}"
msgid "{0} Request for {1}"
msgstr "{0}申请{1}"
-#: erpnext/stock/doctype/item/item.py:392
+#: erpnext/stock/doctype/item/item.py:391
msgid "{0} Retain Sample is based on batch, please check Has Batch No to retain sample of item"
msgstr "{0}保留样品基于批号,请在物料主数据中勾选启用批号管理"
@@ -61601,11 +61717,11 @@ msgstr "{0}已创建"
msgid "{0} creation for the following records will be skipped."
msgstr ""
-#: erpnext/setup/doctype/company/company.py:291
+#: erpnext/setup/doctype/company/company.py:295
msgid "{0} currency must be same as company's default currency. Please select another account."
msgstr "{0}货币必须与公司默认货币一致,请选择其他账户"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:285
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:288
msgid "{0} currently has a {1} Supplier Scorecard standing, and Purchase Orders to this supplier should be issued with caution."
msgstr "{0} 当前供应商评分等级为{1},请谨慎下单给该供应商。"
@@ -61617,7 +61733,7 @@ msgstr "{0}当前供应商评分等级为{1},请谨慎向该供应商询价。
msgid "{0} does not belong to Company {1}"
msgstr "{0}不属于公司{1}"
-#: erpnext/controllers/accounts_controller.py:353
+#: erpnext/controllers/accounts_controller.py:354
msgid "{0} does not belong to the Company {1}."
msgstr ""
@@ -61626,7 +61742,7 @@ msgid "{0} entered twice in Item Tax"
msgstr "{0}输入了两次税项"
#: erpnext/setup/doctype/item_group/item_group.py:47
-#: erpnext/stock/doctype/item/item.py:523
+#: erpnext/stock/doctype/item/item.py:522
msgid "{0} entered twice {1} in Item Taxes"
msgstr "{0}在物料税{1}中重复输入"
@@ -61651,7 +61767,7 @@ msgstr "已成功提交{0}"
msgid "{0} hours"
msgstr "{0}小时"
-#: erpnext/controllers/accounts_controller.py:2741
+#: erpnext/controllers/accounts_controller.py:2742
msgid "{0} in row {1}"
msgstr "{1}行中的{0}"
@@ -61673,7 +61789,7 @@ msgstr "{0}在以下行被多次添加:{1}"
msgid "{0} is already running for {1}"
msgstr "{0}已在{1}运行"
-#: erpnext/controllers/accounts_controller.py:175
+#: erpnext/controllers/accounts_controller.py:176
msgid "{0} is blocked so this transaction cannot proceed"
msgstr "{0}被临时冻结,所以此交易无法继续"
@@ -61681,12 +61797,12 @@ msgstr "{0}被临时冻结,所以此交易无法继续"
msgid "{0} is in Draft. Submit it before creating the Asset."
msgstr ""
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1130
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:1127
msgid "{0} is mandatory for Item {1}"
msgstr "{0}是{1}的必填项"
#: erpnext/accounts/doctype/payment_ledger_entry/payment_ledger_entry.py:100
-#: erpnext/accounts/general_ledger.py:856
+#: erpnext/accounts/general_ledger.py:861
msgid "{0} is mandatory for account {1}"
msgstr "对于科目 {1} {0} 必填"
@@ -61694,7 +61810,7 @@ msgstr "对于科目 {1} {0} 必填"
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}"
msgstr "{0}是强制性的。可能没有为{1}到{2}创建货币兑换记录"
-#: erpnext/controllers/accounts_controller.py:3187
+#: erpnext/controllers/accounts_controller.py:3181
msgid "{0} is mandatory. Maybe Currency Exchange record is not created for {1} to {2}."
msgstr "{0}是必填项。{1}和{2}的货币转换记录可能还未生成。"
@@ -61702,7 +61818,7 @@ msgstr "{0}是必填项。{1}和{2}的货币转换记录可能还未生成。"
msgid "{0} is not a CSV file."
msgstr ""
-#: erpnext/selling/doctype/customer/customer.py:236
+#: erpnext/selling/doctype/customer/customer.py:226
msgid "{0} is not a company bank account"
msgstr "{0}不是公司银行账户"
@@ -61710,7 +61826,7 @@ msgstr "{0}不是公司银行账户"
msgid "{0} is not a group node. Please select a group node as parent cost center"
msgstr "{0}不是组节点,请选择组节点作为上级成本中心"
-#: erpnext/stock/doctype/stock_entry/stock_entry.py:673
+#: erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py:114
msgid "{0} is not a stock Item"
msgstr "{0}不是库存物料"
@@ -61750,27 +61866,27 @@ msgstr "{0}被临时冻结至{1}"
msgid "{0} is open. Close the POS or cancel the existing POS Opening Entry to create a new POS Opening Entry."
msgstr "{0}处于开启状态。请关闭POS或取消现有POS期初凭证以创建新的POS期初凭证。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:543
+#: erpnext/manufacturing/doctype/work_order/work_order.js:525
msgid "{0} items disassembled"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:507
+#: erpnext/manufacturing/doctype/work_order/work_order.js:489
msgid "{0} items in progress"
msgstr "{0}物料生产中"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:531
+#: erpnext/manufacturing/doctype/work_order/work_order.js:513
msgid "{0} items lost during process."
msgstr "流程中丢失{0}件物料。"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:488
+#: erpnext/manufacturing/doctype/work_order/work_order.js:470
msgid "{0} items produced"
msgstr "{0}物料已完工"
-#: erpnext/manufacturing/doctype/work_order/work_order.js:511
+#: erpnext/manufacturing/doctype/work_order/work_order.js:493
msgid "{0} items returned"
msgstr ""
-#: erpnext/manufacturing/doctype/work_order/work_order.js:514
+#: erpnext/manufacturing/doctype/work_order/work_order.js:496
msgid "{0} items to return"
msgstr ""
@@ -61778,7 +61894,7 @@ msgstr ""
msgid "{0} must be negative in return document"
msgstr "{0}在退货凭证中必须为负"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2366
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2472
msgid "{0} not allowed to transact with {1}. Please change the Company or add the Company in the 'Allowed To Transact With'-Section in the Customer record."
msgstr "不允许{0}与{1}进行交易。请更改公司或在客户记录的'允许交易对象'章节添加该公司"
@@ -61794,7 +61910,7 @@ msgstr "{0}参数无效"
msgid "{0} payment entries can not be filtered by {1}"
msgstr "{0}收付款凭证不能由{1}过滤"
-#: erpnext/controllers/stock_controller.py:1740
+#: erpnext/controllers/stock_controller.py:1741
msgid "{0} qty of Item {1} is being received into Warehouse {2} with capacity {3}."
msgstr "已收到物料 {1} 数量 {0} 到仓库 {2},占用库容 {3}"
@@ -61807,7 +61923,7 @@ msgstr "{0}到{1}"
msgid "{0} transactions will be imported into the system. Please review the details below and click the 'Import' button to proceed."
msgstr ""
-#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:727
+#: erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.py:730
msgid "{0} units are reserved for Item {1} in Warehouse {2}, please un-reserve the same to {3} the Stock Reconciliation."
msgstr "仓库 {2} 中物料 {1} 已被预留了{0} ,请取消预留后再 {3} 库存调账"
@@ -61823,16 +61939,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:1720 erpnext/stock/stock_ledger.py:2216
-#: erpnext/stock/stock_ledger.py:2230
+#: erpnext/stock/stock_ledger.py:1686 erpnext/stock/stock_ledger.py:2182
+#: erpnext/stock/stock_ledger.py:2196
msgid "{0} units of {1} needed in {2} on {3} {4} for {5} to complete this transaction."
msgstr "本单据 {5} 记账时间点 {3} {4} 发料仓 {2} 物料 {1} 库存不足 {0}。"
-#: erpnext/stock/stock_ledger.py:2317 erpnext/stock/stock_ledger.py:2362
+#: erpnext/stock/stock_ledger.py:2283 erpnext/stock/stock_ledger.py:2328
msgid "{0} units of {1} needed in {2} on {3} {4} to complete this transaction."
msgstr "需在{2}的{3}{4}准备{1}的{0}单位以完成本交易"
-#: erpnext/stock/stock_ledger.py:1714
+#: erpnext/stock/stock_ledger.py:1680
msgid "{0} units of {1} needed in {2} to complete this transaction."
msgstr "为完成此交易,在{2}中的物料{1}数量还缺{0}。"
@@ -61844,7 +61960,7 @@ msgstr "{0}至{1}"
msgid "{0} valid serial nos for Item {1}"
msgstr "物料{1}有{0}个有效序列号"
-#: erpnext/stock/doctype/item/item.js:862
+#: erpnext/stock/doctype/item/item.js:843
msgid "{0} variants created."
msgstr "新建了{0}个多规格物料。"
@@ -61860,7 +61976,7 @@ msgstr "{0}将作为折扣发放"
msgid "{0} will be set as the {1} in subsequently scanned items"
msgstr "{0}将被设置为后续扫描物料中的{1}"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1005
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1011
msgid "{0} {1}"
msgstr "{0}{1}"
@@ -61898,8 +62014,8 @@ msgstr "{0} {1} 已完全付款"
msgid "{0} {1} has already been partly paid. Please use the 'Get Outstanding Invoice' or the 'Get Outstanding Orders' button to get the latest outstanding amounts."
msgstr "{0} {1} 已被部分付款,请点击 选未付发票 或 选未关闭订单 按钮获取最新未付单据"
-#: erpnext/buying/doctype/purchase_order/purchase_order.py:414
-#: erpnext/selling/doctype/sales_order/sales_order.py:602
+#: erpnext/buying/doctype/purchase_order/purchase_order.py:416
+#: erpnext/selling/doctype/sales_order/sales_order.py:609
#: erpnext/stock/doctype/material_request/material_request.py:257
msgid "{0} {1} has been modified. Please refresh."
msgstr "{0} {1}已被修改过,请刷新。"
@@ -62009,7 +62125,7 @@ msgstr "{0} {1}: 科目{2}无效"
msgid "{0} {1}: Accounting Entry for {2} can only be made in currency: {3}"
msgstr "{0} {1}在{2}会计分录只能用货币单位:{3}"
-#: erpnext/controllers/stock_controller.py:953
+#: erpnext/controllers/stock_controller.py:954
msgid "{0} {1}: Cost Center is mandatory for Item {2}"
msgstr "{0} {1}:请为物料 {2} 填写成本中心"
@@ -62058,8 +62174,8 @@ msgstr "将按发票总额的{0}%作为折扣发放"
msgid "{0}'s {1} cannot be after {2}'s Expected End Date."
msgstr "{0}的{1}不得晚于{2}的预计结束日期"
-#: erpnext/manufacturing/doctype/job_card/job_card.py:1304
#: erpnext/manufacturing/doctype/job_card/job_card.py:1312
+#: erpnext/manufacturing/doctype/job_card/job_card.py:1320
msgid "{0}, complete the operation {1} before the operation {2}."
msgstr "{0},在工序 {2} 前请先完成工序 {1}"
@@ -62079,11 +62195,11 @@ msgstr ""
msgid "{0}: Virtual DocType (no database table)"
msgstr ""
-#: erpnext/controllers/accounts_controller.py:543
+#: erpnext/controllers/accounts_controller.py:544
msgid "{0}: {1} does not belong to the Company: {2}"
msgstr "{0}: {1}不属于公司{2}"
-#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1410
+#: erpnext/accounts/report/accounts_receivable/accounts_receivable.py:1333
msgid "{0}: {1} does not exist"
msgstr ""
@@ -62091,11 +62207,11 @@ msgstr ""
msgid "{0}: {1} does not exists"
msgstr "{0}:{1}不存在"
-#: erpnext/setup/doctype/company/company.py:278
+#: erpnext/setup/doctype/company/company.py:282
msgid "{0}: {1} is a group account."
msgstr "{0}:{1}为组科目。"
-#: erpnext/accounts/doctype/payment_entry/payment_entry.js:975
+#: erpnext/accounts/doctype/payment_entry/payment_entry.js:977
msgid "{0}: {1} must be less than {2}"
msgstr "{0}:{1}必须小于{2}"
@@ -62107,7 +62223,7 @@ msgstr "已为{item_code}创建{count}项资产"
msgid "{doctype} {name} is cancelled or closed."
msgstr "{doctype}{name}已取消或关闭"
-#: erpnext/controllers/stock_controller.py:2147
+#: erpnext/controllers/stock_controller.py:2148
msgid "{item_name}'s Sample Size ({sample_size}) cannot be greater than the Accepted Quantity ({accepted_quantity})"
msgstr "{item_name}的样本量({sample_size})不得超过验收数量({accepted_quantity})"
@@ -62119,7 +62235,7 @@ msgstr "{ref_doctype}{ref_name}的状态为{status}"
msgid "{}"
msgstr "{}"
-#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2132
+#: erpnext/accounts/doctype/sales_invoice/sales_invoice.py:2236
msgid "{} can't be cancelled since the Loyalty Points earned has been redeemed. First cancel the {} No {}"
msgstr "无法取消{},因已兑换获得的积分。请先取消{}编号{}"
diff --git a/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py b/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py
index a8fc173cb4d..ccddc38b12d 100644
--- a/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py
+++ b/erpnext/maintenance/doctype/maintenance_schedule/test_maintenance_schedule.py
@@ -43,11 +43,11 @@ class TestMaintenanceSchedule(ERPNextTestSuite):
ms.submit()
all_events = get_events(ms)
- self.assertTrue(len(all_events) > 0)
+ self.assertGreater(len(all_events), 0)
ms.cancel()
events_after_cancel = get_events(ms)
- self.assertTrue(len(events_after_cancel) == 0)
+ self.assertEqual(len(events_after_cancel), 0)
def test_make_schedule(self):
ms = make_maintenance_schedule()
diff --git a/erpnext/manufacturing/doctype/bom/bom.js b/erpnext/manufacturing/doctype/bom/bom.js
index f0d9576d469..2bf7e34bd4e 100644
--- a/erpnext/manufacturing/doctype/bom/bom.js
+++ b/erpnext/manufacturing/doctype/bom/bom.js
@@ -583,7 +583,7 @@ frappe.ui.form.on("BOM", {
},
routing(frm) {
- if (frm.doc.routing) {
+ if (frm.doc.routing && frm.doc.with_operations && !frm.doc.operations) {
frappe.call({
doc: frm.doc,
method: "get_routing",
diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py
index bbec18036fe..f5e943823cf 100644
--- a/erpnext/manufacturing/doctype/bom/bom.py
+++ b/erpnext/manufacturing/doctype/bom/bom.py
@@ -338,14 +338,14 @@ class BOM(WebsiteGenerator):
if not item.qty:
frappe.throw(
_("Row #{0}: Quantity should be greater than 0 for {1} Item {2}").format(
- item.idx, item.type, get_link_to_form("Item", item.item_code)
+ item.idx, item.secondary_item_type, get_link_to_form("Item", item.item_code)
)
)
if item.process_loss_per >= 100:
frappe.throw(
_("Row #{0}: Process Loss Percentage should be less than 100% for {1} Item {2}").format(
- item.idx, item.type, get_link_to_form("Item", item.item_code)
+ item.idx, item.secondary_item_type, get_link_to_form("Item", item.item_code)
)
)
@@ -1285,7 +1285,9 @@ class BOM(WebsiteGenerator):
frappe.throw(msg, title=_("Invalid Process Loss Configuration"))
def has_scrap_items(self):
- return any(d.get("type") == "Scrap" or d.get("is_legacy") for d in self.get("secondary_items"))
+ return any(
+ d.get("secondary_item_type") == "Scrap" or d.get("is_legacy") for d in self.get("secondary_items")
+ )
def get_bom_item_rate(args, bom_doc):
@@ -1453,7 +1455,7 @@ def get_bom_items_as_dict(
query = query.format(
table="BOM Secondary Item",
where_conditions=")",
- select_columns=", item.description, bom_item.cost_allocation_per, bom_item.process_loss_per, bom_item.type, bom_item.name, bom_item.is_legacy",
+ select_columns=", item.description, bom_item.cost_allocation_per, bom_item.process_loss_per, bom_item.secondary_item_type, bom_item.name, bom_item.is_legacy",
is_stock_item=is_stock_item,
qty_field="stock_qty",
group_by_cond=group_by_cond,
diff --git a/erpnext/manufacturing/doctype/bom/bom_dashboard.py b/erpnext/manufacturing/doctype/bom/bom_dashboard.py
index d8a810bd0ad..e9bb9bf2e3f 100644
--- a/erpnext/manufacturing/doctype/bom/bom_dashboard.py
+++ b/erpnext/manufacturing/doctype/bom/bom_dashboard.py
@@ -7,22 +7,18 @@ def get_data():
"non_standard_fieldnames": {
"Item": "default_bom",
"Purchase Order": "bom",
- "Purchase Receipt": "bom",
- "Purchase Invoice": "bom",
},
"transactions": [
{"label": _("Stock"), "items": ["Item", "Stock Entry", "Quality Inspection"]},
{"label": _("Manufacture"), "items": ["BOM", "Work Order", "Job Card"]},
{
"label": _("Subcontract"),
- "items": ["Purchase Order", "Purchase Receipt", "Purchase Invoice"],
+ "items": ["Purchase Order"],
},
],
"disable_create_buttons": [
"Item",
"Purchase Order",
- "Purchase Receipt",
- "Purchase Invoice",
"Job Card",
"Stock Entry",
"BOM",
diff --git a/erpnext/manufacturing/doctype/bom/test_bom.py b/erpnext/manufacturing/doctype/bom/test_bom.py
index 78d8795162b..3335eb5dec7 100644
--- a/erpnext/manufacturing/doctype/bom/test_bom.py
+++ b/erpnext/manufacturing/doctype/bom/test_bom.py
@@ -34,8 +34,8 @@ class TestBOM(ERPNextTestSuite):
items_dict = get_bom_items_as_dict(
bom=get_default_bom(), company="_Test Company", qty=1, fetch_exploded=0
)
- self.assertTrue(self.globalTestRecords["BOM"][2]["items"][0]["item_code"] in items_dict)
- self.assertTrue(self.globalTestRecords["BOM"][2]["items"][1]["item_code"] in items_dict)
+ self.assertIn(self.globalTestRecords["BOM"][2]["items"][0]["item_code"], items_dict)
+ self.assertIn(self.globalTestRecords["BOM"][2]["items"][1]["item_code"], items_dict)
self.assertEqual(len(items_dict.values()), 2)
@timeout
@@ -45,10 +45,10 @@ class TestBOM(ERPNextTestSuite):
items_dict = get_bom_items_as_dict(
bom=get_default_bom(), company="_Test Company", qty=1, fetch_exploded=1
)
- self.assertTrue(self.globalTestRecords["BOM"][2]["items"][0]["item_code"] in items_dict)
- self.assertFalse(self.globalTestRecords["BOM"][2]["items"][1]["item_code"] in items_dict)
- self.assertTrue(self.globalTestRecords["BOM"][0]["items"][0]["item_code"] in items_dict)
- self.assertTrue(self.globalTestRecords["BOM"][0]["items"][1]["item_code"] in items_dict)
+ self.assertIn(self.globalTestRecords["BOM"][2]["items"][0]["item_code"], items_dict)
+ self.assertNotIn(self.globalTestRecords["BOM"][2]["items"][1]["item_code"], items_dict)
+ self.assertIn(self.globalTestRecords["BOM"][0]["items"][0]["item_code"], items_dict)
+ self.assertIn(self.globalTestRecords["BOM"][0]["items"][1]["item_code"], items_dict)
self.assertEqual(len(items_dict.values()), 3)
@timeout
@@ -763,9 +763,9 @@ class TestBOM(ERPNextTestSuite):
for row in data:
items.append(row[0])
- self.assertTrue("_Test RM Item 1 Do Not Include In Manufacture" not in items)
- self.assertTrue("_Test RM Item 2 Fixed Asset Item" not in items)
- self.assertTrue("_Test RM Item 3 Manufacture Item" in items)
+ self.assertNotIn("_Test RM Item 1 Do Not Include In Manufacture", items)
+ self.assertNotIn("_Test RM Item 2 Fixed Asset Item", items)
+ self.assertIn("_Test RM Item 3 Manufacture Item", items)
def test_bom_raw_materials_stock_uom(self):
rm_item = make_item(
diff --git a/erpnext/manufacturing/doctype/bom/test_records.json b/erpnext/manufacturing/doctype/bom/test_records.json
index 7c5c41fec19..2386fd0f38b 100644
--- a/erpnext/manufacturing/doctype/bom/test_records.json
+++ b/erpnext/manufacturing/doctype/bom/test_records.json
@@ -45,7 +45,7 @@
"stock_qty": 1.0,
"rate": 2000.0,
"stock_uom": "_Test UOM",
- "type": "Scrap",
+ "secondary_item_type": "Scrap",
"is_legacy": 1
}
],
diff --git a/erpnext/manufacturing/doctype/bom_operation/bom_operation.json b/erpnext/manufacturing/doctype/bom_operation/bom_operation.json
index ad47d4024b4..86fcd7082fd 100644
--- a/erpnext/manufacturing/doctype/bom_operation/bom_operation.json
+++ b/erpnext/manufacturing/doctype/bom_operation/bom_operation.json
@@ -1,5 +1,6 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"creation": "2013-02-22 01:27:49",
"doctype": "DocType",
"document_type": "Setup",
@@ -139,11 +140,13 @@
"label": "Image"
},
{
+ "default": "1",
"fetch_from": "operation.batch_size",
"fetch_if_empty": 1,
"fieldname": "batch_size",
- "fieldtype": "Int",
- "label": "Batch Size"
+ "fieldtype": "Float",
+ "label": "Batch Size",
+ "non_negative": 1
},
{
"depends_on": "eval:doc.parenttype == \"Routing\" || !parent.routing",
@@ -304,7 +307,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-04-01 17:09:48.771834",
+ "modified": "2026-05-25 17:15:42.044630",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "BOM Operation",
diff --git a/erpnext/manufacturing/doctype/bom_operation/bom_operation.py b/erpnext/manufacturing/doctype/bom_operation/bom_operation.py
index 72d7f194fd8..71fcd689841 100644
--- a/erpnext/manufacturing/doctype/bom_operation/bom_operation.py
+++ b/erpnext/manufacturing/doctype/bom_operation/bom_operation.py
@@ -18,7 +18,7 @@ class BOMOperation(Document):
base_cost_per_unit: DF.Float
base_hour_rate: DF.Currency
base_operating_cost: DF.Currency
- batch_size: DF.Int
+ batch_size: DF.Float
bom_no: DF.Link | None
cost_per_unit: DF.Float
description: DF.TextEditor | None
diff --git a/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json b/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
index 39fa55123f4..18615cb193b 100644
--- a/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
+++ b/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.json
@@ -6,7 +6,7 @@
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
- "type",
+ "secondary_item_type",
"rate",
"column_break_gres",
"is_legacy",
@@ -35,7 +35,7 @@
"fields": [
{
"depends_on": "eval:!doc.is_legacy",
- "fieldname": "type",
+ "fieldname": "secondary_item_type",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Type",
@@ -218,7 +218,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-03-11 12:12:29.208031",
+ "modified": "2026-06-01 10:00:00.000000",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "BOM Secondary Item",
diff --git a/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.py b/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.py
index 87748fe2269..577eb0bd6e2 100644
--- a/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.py
+++ b/erpnext/manufacturing/doctype/bom_secondary_item/bom_secondary_item.py
@@ -32,7 +32,7 @@ class BOMSecondaryItem(Document):
rate: DF.Currency
stock_qty: DF.Float
stock_uom: DF.Link | None
- type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
+ secondary_item_type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
uom: DF.Link
# end: auto-generated types
diff --git a/erpnext/manufacturing/doctype/job_card/job_card.py b/erpnext/manufacturing/doctype/job_card/job_card.py
index c8ee5688fe3..040c487e668 100644
--- a/erpnext/manufacturing/doctype/job_card/job_card.py
+++ b/erpnext/manufacturing/doctype/job_card/job_card.py
@@ -180,7 +180,7 @@ class JobCard(Document):
self.validate_semi_finished_goods()
def validate_semi_finished_goods(self):
- if not self.track_semi_finished_goods:
+ if not self.track_semi_finished_goods or self.is_subcontracted:
return
if self.items and not self.transferred_qty and not self.skip_material_transfer:
@@ -298,7 +298,7 @@ class JobCard(Document):
"stock_qty": values.qty,
"item_name": values.item_name,
"stock_uom": values.stock_uom,
- "type": values.type,
+ "secondary_item_type": values.secondary_item_type,
"bom_secondary_item": values.name,
}
@@ -1535,7 +1535,7 @@ class JobCard(Document):
add_additional_cost(ste.stock_entry, wo_doc, self)
ManufactureStockEntry(ste.stock_entry).add_secondary_items_from_job_card()
for row in ste.stock_entry.items:
- if (row.type or row.is_legacy_scrap_item) and not row.t_warehouse:
+ if (row.secondary_item_type or row.is_legacy_scrap_item) and not row.t_warehouse:
row.t_warehouse = self.target_warehouse
if auto_submit:
diff --git a/erpnext/manufacturing/doctype/job_card/mapper.py b/erpnext/manufacturing/doctype/job_card/mapper.py
index 0dce2daa157..0155229df3a 100644
--- a/erpnext/manufacturing/doctype/job_card/mapper.py
+++ b/erpnext/manufacturing/doctype/job_card/mapper.py
@@ -44,9 +44,7 @@ def make_subcontracting_po(source_name: str, target_doc: Document | str | None =
"Job Card",
source_name,
{
- "Job Card": {
- "doctype": "Purchase Order",
- },
+ "Job Card": {"doctype": "Purchase Order", "field_no_map": ["naming_series"]},
},
target_doc,
set_missing_values,
diff --git a/erpnext/manufacturing/doctype/job_card/test_job_card.py b/erpnext/manufacturing/doctype/job_card/test_job_card.py
index 5916e4f6116..c44591d6ab3 100644
--- a/erpnext/manufacturing/doctype/job_card/test_job_card.py
+++ b/erpnext/manufacturing/doctype/job_card/test_job_card.py
@@ -915,7 +915,7 @@ class TestJobCard(ERPNextTestSuite):
"qty": 1,
"process_loss_per": 10,
"cost_allocation_per": 5,
- "type": "Scrap",
+ "secondary_item_type": "Scrap",
},
)
if submit:
@@ -998,7 +998,8 @@ class TestJobCard(ERPNextTestSuite):
},
)
job_card.append(
- "secondary_items", {"item_code": scrap_extra.name, "stock_qty": 5, "type": "Co-Product"}
+ "secondary_items",
+ {"item_code": scrap_extra.name, "stock_qty": 5, "secondary_item_type": "Co-Product"},
)
job_card.submit()
@@ -1017,7 +1018,7 @@ class TestJobCard(ERPNextTestSuite):
self.assertEqual(manufacturing_entry.items[2].qty, 9)
self.assertEqual(flt(manufacturing_entry.items[2].basic_rate, 3), 5.556)
self.assertEqual(manufacturing_entry.items[3].item_code, scrap_extra.name)
- self.assertEqual(manufacturing_entry.items[3].type, "Co-Product")
+ self.assertEqual(manufacturing_entry.items[3].secondary_item_type, "Co-Product")
self.assertEqual(manufacturing_entry.items[3].qty, 5)
self.assertEqual(manufacturing_entry.items[3].basic_rate, 0)
@@ -1062,7 +1063,9 @@ class TestJobCard(ERPNextTestSuite):
)
job_card = frappe.get_last_doc("Job Card", {"work_order": self.work_order.name})
- job_card.append("secondary_items", {"item_code": "_Test Item", "stock_qty": 2, "type": "Scrap"})
+ job_card.append(
+ "secondary_items", {"item_code": "_Test Item", "stock_qty": 2, "secondary_item_type": "Scrap"}
+ )
job_card.append(
"time_logs",
{
diff --git a/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json b/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
index d9ac0e08ced..d367d7e308c 100644
--- a/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
+++ b/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.json
@@ -5,7 +5,7 @@
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
- "type",
+ "secondary_item_type",
"description",
"column_break_3",
"item_code",
@@ -69,7 +69,7 @@
"read_only": 1
},
{
- "fieldname": "type",
+ "fieldname": "secondary_item_type",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Type",
@@ -87,7 +87,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-03-06 13:51:00.492621",
+ "modified": "2026-06-01 10:00:00.000000",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "Job Card Secondary Item",
diff --git a/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.py b/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.py
index 3a71ab9d755..db61f3cad48 100644
--- a/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.py
+++ b/erpnext/manufacturing/doctype/job_card_secondary_item/job_card_secondary_item.py
@@ -22,7 +22,7 @@ class JobCardSecondaryItem(Document):
parenttype: DF.Data
stock_qty: DF.Float
stock_uom: DF.Link | None
- type: DF.Literal["Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
+ secondary_item_type: DF.Literal["Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
# end: auto-generated types
pass
diff --git a/erpnext/manufacturing/doctype/production_plan/production_plan.py b/erpnext/manufacturing/doctype/production_plan/production_plan.py
index 02b7ad06bd2..ed502057349 100644
--- a/erpnext/manufacturing/doctype/production_plan/production_plan.py
+++ b/erpnext/manufacturing/doctype/production_plan/production_plan.py
@@ -1895,8 +1895,6 @@ def get_materials_from_other_locations(item, warehouses, new_mr_items, company):
precision = frappe.get_precision("Material Request Plan Item", "quantity")
if flt(required_qty, precision) > 0:
- required_qty = required_qty
-
if frappe.db.get_value("UOM", purchase_uom, "must_be_whole_number"):
required_qty = ceil(required_qty)
diff --git a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py
index 22879da6eb5..a65e317904d 100644
--- a/erpnext/manufacturing/doctype/production_plan/test_production_plan.py
+++ b/erpnext/manufacturing/doctype/production_plan/test_production_plan.py
@@ -900,8 +900,9 @@ class TestProductionPlan(ERPNextTestSuite):
missing_warehouse = expected_warehouses - warehouses
- self.assertTrue(
- len(missing_warehouse) == 0,
+ self.assertEqual(
+ len(missing_warehouse),
+ 0,
msg=f"Following warehouses were expected {', '.join(missing_warehouse)}",
)
@@ -1392,7 +1393,7 @@ class TestProductionPlan(ERPNextTestSuite):
validate_mr_items = [d.get("item_code") for d in items]
for item_code in mr_items:
- self.assertTrue(item_code in validate_mr_items)
+ self.assertIn(item_code, validate_mr_items)
def test_reserved_qty_for_production_plan_for_material_requests(self):
from erpnext.stock.utils import get_or_make_bin
@@ -1510,7 +1511,7 @@ class TestProductionPlan(ERPNextTestSuite):
non_completed_plans = get_non_completed_production_plans()
for plan in plans:
- self.assertTrue(plan in non_completed_plans)
+ self.assertIn(plan, non_completed_plans)
def test_reserved_qty_for_production_plan_for_material_requests_with_multi_UOM(self):
from erpnext.stock.utils import get_or_make_bin
@@ -1721,13 +1722,13 @@ class TestProductionPlan(ERPNextTestSuite):
for row in items:
row = frappe._dict(row)
if row.material_request_type == "Material Transfer":
- self.assertTrue(row.uom == row.stock_uom)
- self.assertTrue(row.from_warehouse in [wh1, wh2])
+ self.assertEqual(row.uom, row.stock_uom)
+ self.assertIn(row.from_warehouse, [wh1, wh2])
self.assertEqual(row.quantity, 2)
if row.material_request_type == "Purchase":
- self.assertTrue(row.uom != row.stock_uom)
- self.assertTrue(row.warehouse == mrp_warhouse)
+ self.assertNotEqual(row.uom, row.stock_uom)
+ self.assertEqual(row.warehouse, mrp_warhouse)
self.assertEqual(row.quantity, 12.0)
def test_mr_qty_for_complex_bom(self):
@@ -2257,12 +2258,12 @@ class TestProductionPlan(ERPNextTestSuite):
plan.save()
- self.assertTrue(len(plan.sub_assembly_items) == 3)
+ self.assertEqual(len(plan.sub_assembly_items), 3)
for row in plan.sub_assembly_items:
self.assertEqual(row.required_qty, 15.0)
self.assertEqual(row.qty, 10.0)
- self.assertTrue(len(plan.mr_items) == 3)
+ self.assertEqual(len(plan.mr_items), 3)
for row in plan.mr_items:
self.assertEqual(row.required_bom_qty, 10.0)
self.assertEqual(row.quantity, 5.0)
@@ -2271,7 +2272,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 6)
+ self.assertEqual(len(reserved_entries), 6)
for row in reserved_entries:
self.assertEqual(row.reserved_qty, 5.0)
@@ -2284,7 +2285,7 @@ class TestProductionPlan(ERPNextTestSuite):
"Material Request", filters={"production_plan": plan.name}, pluck="name"
)
- self.assertTrue(len(material_requests) > 0)
+ self.assertGreater(len(material_requests), 0)
for mr_name in list(set(material_requests)):
po = make_purchase_order(mr_name)
po.supplier = "_Test Supplier"
@@ -2295,7 +2296,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 9)
+ self.assertEqual(len(reserved_entries), 9)
work_orders = frappe.get_all("Work Order", filters={"production_plan": plan.name}, pluck="name")
for wo_name in list(set(work_orders)):
@@ -2318,7 +2319,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 0)
+ self.assertEqual(len(reserved_entries), 0)
frappe.db.set_single_value("Stock Settings", "enable_stock_reservation", 0)
def test_stock_reservation_of_serial_nos_against_production_plan(self):
@@ -2374,12 +2375,12 @@ class TestProductionPlan(ERPNextTestSuite):
plan.save()
- self.assertTrue(len(plan.sub_assembly_items) == 3)
+ self.assertEqual(len(plan.sub_assembly_items), 3)
for row in plan.sub_assembly_items:
self.assertEqual(row.required_qty, 15.0)
self.assertEqual(row.qty, 10.0)
- self.assertTrue(len(plan.mr_items) == 3)
+ self.assertEqual(len(plan.mr_items), 3)
for row in plan.mr_items:
self.assertEqual(row.required_bom_qty, 10.0)
self.assertEqual(row.quantity, 5.0)
@@ -2388,7 +2389,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 30)
+ self.assertEqual(len(reserved_entries), 30)
for row in reserved_entries:
self.assertEqual(row.reserved_qty, 5.0)
@@ -2416,7 +2417,7 @@ class TestProductionPlan(ERPNextTestSuite):
self.assertTrue(additional_serial_nos)
- self.assertTrue(len(material_requests) > 0)
+ self.assertGreater(len(material_requests), 0)
for mr_name in list(set(material_requests)):
po = make_purchase_order(mr_name)
po.supplier = "_Test Supplier"
@@ -2427,7 +2428,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 45)
+ self.assertEqual(len(reserved_entries), 45)
serial_nos_res_for_pp = frappe.get_all(
"Serial and Batch Entry",
filters={"parent": ("in", [x.name for x in reserved_entries]), "docstatus": 1},
@@ -2453,8 +2454,8 @@ class TestProductionPlan(ERPNextTestSuite):
)
for serial_no in serial_nos_res_for_wo:
- self.assertTrue(serial_no in serial_nos_res_for_pp)
- self.assertFalse(serial_no in additional_serial_nos)
+ self.assertIn(serial_no, serial_nos_res_for_pp)
+ self.assertNotIn(serial_no, additional_serial_nos)
if wo_doc.production_item == "Finished Good For SR":
self.assertEqual(len(reserved_entries), 15)
@@ -2465,7 +2466,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 0)
+ self.assertEqual(len(reserved_entries), 0)
frappe.db.set_single_value("Stock Settings", "enable_stock_reservation", 0)
def test_stock_reservation_of_batch_nos_against_production_plan(self):
@@ -2522,12 +2523,12 @@ class TestProductionPlan(ERPNextTestSuite):
plan.save()
- self.assertTrue(len(plan.sub_assembly_items) == 3)
+ self.assertEqual(len(plan.sub_assembly_items), 3)
for row in plan.sub_assembly_items:
self.assertEqual(row.required_qty, 15.0)
self.assertEqual(row.qty, 10.0)
- self.assertTrue(len(plan.mr_items) == 3)
+ self.assertEqual(len(plan.mr_items), 3)
for row in plan.mr_items:
self.assertEqual(row.required_bom_qty, 10.0)
self.assertEqual(row.quantity, 5.0)
@@ -2536,7 +2537,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 6)
+ self.assertEqual(len(reserved_entries), 6)
for row in reserved_entries:
self.assertEqual(row.reserved_qty, 5.0)
@@ -2565,7 +2566,7 @@ class TestProductionPlan(ERPNextTestSuite):
self.assertTrue(additional_batches)
- self.assertTrue(len(material_requests) > 0)
+ self.assertGreater(len(material_requests), 0)
for mr_name in list(set(material_requests)):
po = make_purchase_order(mr_name)
po.supplier = "_Test Supplier"
@@ -2576,7 +2577,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 9)
+ self.assertEqual(len(reserved_entries), 9)
batches_reserved_for_pp = frappe.get_all(
"Serial and Batch Entry",
filters={"parent": ("in", [x.name for x in reserved_entries]), "docstatus": 1},
@@ -2602,8 +2603,8 @@ class TestProductionPlan(ERPNextTestSuite):
)
for batch_no in batches_reserved_for_wo:
- self.assertTrue(batch_no in batches_reserved_for_pp)
- self.assertFalse(batch_no in additional_batches)
+ self.assertIn(batch_no, batches_reserved_for_pp)
+ self.assertNotIn(batch_no, additional_batches)
if wo_doc.production_item == "Finished Good For SR":
self.assertEqual(len(reserved_entries), 3)
@@ -2614,7 +2615,7 @@ class TestProductionPlan(ERPNextTestSuite):
sre = StockReservation(plan)
reserved_entries = sre.get_reserved_entries("Production Plan", plan.name)
- self.assertTrue(len(reserved_entries) == 0)
+ self.assertEqual(len(reserved_entries), 0)
frappe.db.set_single_value("Stock Settings", "enable_stock_reservation", 0)
def test_production_plan_for_partial_sub_assembly_items(self):
@@ -2903,7 +2904,7 @@ def make_bom(**args):
bom.append(
"secondary_items",
{
- "type": "Scrap",
+ "secondary_item_type": "Scrap",
"item_code": item,
"item_name": item,
"uom": item_doc.stock_uom,
diff --git a/erpnext/manufacturing/doctype/work_order/test_work_order.py b/erpnext/manufacturing/doctype/work_order/test_work_order.py
index d56c83e1cd8..524075c0a15 100644
--- a/erpnext/manufacturing/doctype/work_order/test_work_order.py
+++ b/erpnext/manufacturing/doctype/work_order/test_work_order.py
@@ -33,7 +33,6 @@ from erpnext.stock.doctype.serial_and_batch_bundle.test_serial_and_batch_bundle
)
from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
from erpnext.stock.doctype.stock_entry import test_stock_entry
-from erpnext.stock.doctype.stock_entry.stock_entry_handler.manufacturing import ManufactureStockEntry
from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse
from erpnext.stock.utils import get_bin
from erpnext.tests.utils import ERPNextTestSuite
@@ -809,7 +808,7 @@ class TestWorkOrder(ERPNextTestSuite):
bundle_id = frappe.get_doc("Serial and Batch Bundle", row.serial_and_batch_bundle)
for bundle_row in bundle_id.get("entries"):
- self.assertTrue(bundle_row.batch_no in batches)
+ self.assertIn(bundle_row.batch_no, batches)
batches.remove(bundle_row.batch_no)
ste1.submit()
@@ -823,7 +822,7 @@ class TestWorkOrder(ERPNextTestSuite):
bundle_id = frappe.get_doc("Serial and Batch Bundle", row.serial_and_batch_bundle)
for bundle_row in bundle_id.get("entries"):
- self.assertTrue(bundle_row.batch_no in batches)
+ self.assertIn(bundle_row.batch_no, batches)
remaining_batches.append(bundle_row.batch_no)
self.assertEqual(sorted(remaining_batches), sorted(batches))
@@ -1098,7 +1097,7 @@ class TestWorkOrder(ERPNextTestSuite):
stock_entry = frappe.get_doc(make_stock_entry(wo_order.name, "Manufacture", 10))
for row in stock_entry.items:
- if row.type or row.is_legacy_scrap_item:
+ if row.secondary_item_type or row.is_legacy_scrap_item:
self.assertEqual(row.qty, 1)
# Partial Job Card 1 with qty 10
@@ -1110,7 +1109,7 @@ class TestWorkOrder(ERPNextTestSuite):
stock_entry = frappe.get_doc(make_stock_entry(wo_order.name, "Manufacture", 10))
for row in stock_entry.items:
- if row.type or row.is_legacy_scrap_item:
+ if row.secondary_item_type or row.is_legacy_scrap_item:
self.assertEqual(row.qty, 2)
# Partial Job Card 2 with qty 10
@@ -2195,7 +2194,7 @@ class TestWorkOrder(ERPNextTestSuite):
self.assertTrue(se_doc.additional_costs)
secondary_items = []
for item in se_doc.items:
- if item.type or item.is_legacy_scrap_item:
+ if item.secondary_item_type or item.is_legacy_scrap_item:
secondary_items.append(item.item_code)
self.assertEqual(
@@ -2660,7 +2659,7 @@ class TestWorkOrder(ERPNextTestSuite):
# Secondary/Scrap item: should be taken from scrap warehouse in disassembly
scrap_row = next((i for i in stock_entry.items if i.item_code == scrap_item), None)
self.assertIsNotNone(scrap_row)
- self.assertEqual(scrap_row.type, "Scrap")
+ self.assertEqual(scrap_row.secondary_item_type, "Scrap")
self.assertTrue(scrap_row.s_warehouse)
self.assertFalse(scrap_row.t_warehouse)
self.assertEqual(scrap_row.s_warehouse, wo.scrap_warehouse)
@@ -3175,12 +3174,12 @@ class TestWorkOrder(ERPNextTestSuite):
transfer_entry.items[0].original_item = raw_materials[0]
transfer_entry.submit()
- self.assertTrue(transfer_entry.docstatus == 1)
+ self.assertEqual(transfer_entry.docstatus, 1)
manufacture_entry = frappe.get_doc(make_stock_entry(wo.name, "Manufacture", 10))
manufacture_entry.save()
- self.assertTrue(manufacture_entry.items[0].item_code == alternate_item[0])
- self.assertTrue(manufacture_entry.items[0].original_item == raw_materials[0])
+ self.assertEqual(manufacture_entry.items[0].item_code, alternate_item[0])
+ self.assertEqual(manufacture_entry.items[0].original_item, raw_materials[0])
manufacture_entry.submit()
@@ -3884,7 +3883,7 @@ class TestWorkOrder(ERPNextTestSuite):
self.assertEqual(sorted(serial_nos), sorted(value.serial_nos))
if value.batch_nos:
- self.assertTrue(row.batch_no in value.batch_nos)
+ self.assertIn(row.batch_no, value.batch_nos)
_before_reserved_item = get_reserved_entries(wo.name, mt_stock_entry.items[0].t_warehouse)
@@ -3900,16 +3899,16 @@ class TestWorkOrder(ERPNextTestSuite):
if row.serial_no:
serial_nos = get_serial_nos_from_bundle(row.serial_and_batch_bundle)
for sn in serial_nos:
- self.assertTrue(sn in value.serial_nos)
+ self.assertIn(sn, value.serial_nos)
value.serial_nos.remove(sn)
if row.batch_no:
- self.assertTrue(row.batch_no in value.batch_nos)
+ self.assertIn(row.batch_no, value.batch_nos)
value.batch_nos[row.batch_no] -= row.qty
if row.serial_no:
sns = get_serial_nos_from_bundle(row.serial_and_batch_bundle)
for sn in sns:
- self.assertTrue(sn in value.serial_batches[row.batch_no])
+ self.assertIn(sn, value.serial_batches[row.batch_no])
value.serial_batches[row.batch_no].remove(sn)
# Manufacture 3 qty
@@ -3927,7 +3926,7 @@ class TestWorkOrder(ERPNextTestSuite):
self.assertEqual(sorted(serial_nos), sorted(value.serial_nos))
if row.batch_no:
- self.assertTrue(row.batch_no in value.batch_nos)
+ self.assertIn(row.batch_no, value.batch_nos)
self.assertEqual(value.batch_nos[row.batch_no], row.qty)
if row.serial_no:
sns = get_serial_nos_from_bundle(row.serial_and_batch_bundle)
@@ -4227,6 +4226,7 @@ class TestWorkOrder(ERPNextTestSuite):
"operations",
{
"operation": fg_operation.name,
+ "batch_size": fg_operation.batch_size,
"time_in_mins": 60,
"workstation": workstation.name,
},
@@ -4235,6 +4235,7 @@ class TestWorkOrder(ERPNextTestSuite):
fg_bom.items[0].bom_no = subassembly_bom.name
fg_bom.save()
fg_bom.submit()
+ self.assertEqual(fg_bom.operations[0].batch_size, 25)
wo_order = make_wo_order_test_record(
item=fg_item.name,
diff --git a/erpnext/manufacturing/doctype/work_order/work_order.py b/erpnext/manufacturing/doctype/work_order/work_order.py
index f6cd50b922d..1c27a6ba84c 100644
--- a/erpnext/manufacturing/doctype/work_order/work_order.py
+++ b/erpnext/manufacturing/doctype/work_order/work_order.py
@@ -201,7 +201,7 @@ class WorkOrder(Document):
self.calculate_operating_cost()
self.validate_qty()
self.validate_transfer_against()
- self.validate_operation_time()
+ self.validate_operations()
self.status = self.get_status()
self.validate_workstation_type()
self.reset_use_multi_level_bom()
@@ -1498,8 +1498,11 @@ class WorkOrder(Document):
title=_("Missing value"),
)
- def validate_operation_time(self):
+ def validate_operations(self):
for d in self.operations:
+ if not d.batch_size or d.batch_size <= 0:
+ d.batch_size = 1
+
if d.time_in_mins <= 0:
frappe.throw(_("Operation Time must be greater than 0 for Operation {0}").format(d.operation))
diff --git a/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json b/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
index 918f2b21847..d0ef7f257a6 100644
--- a/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
+++ b/erpnext/manufacturing/doctype/work_order_operation/work_order_operation.json
@@ -196,10 +196,11 @@
"read_only": 1
},
{
+ "default": "1",
"fieldname": "batch_size",
"fieldtype": "Float",
"label": "Batch Size",
- "read_only": 1
+ "non_negative": 1
},
{
"fieldname": "sequence_id",
@@ -316,7 +317,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-05-20 13:01:21.827200",
+ "modified": "2026-05-25 17:15:12.038470",
"modified_by": "Administrator",
"module": "Manufacturing",
"name": "Work Order Operation",
diff --git a/erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py b/erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py
index 59578127f9f..568fdf90054 100644
--- a/erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py
+++ b/erpnext/manufacturing/report/bom_stock_analysis/bom_stock_analysis.py
@@ -4,7 +4,7 @@
import frappe
from frappe import _
from frappe.query_builder.functions import Floor, IfNull, Sum
-from frappe.utils import flt, fmt_money
+from frappe.utils import flt
from frappe.utils.data import comma_and
from pypika.terms import ExistsCriterion
diff --git a/erpnext/patches.txt b/erpnext/patches.txt
index b17841bade5..ffae51a893d 100644
--- a/erpnext/patches.txt
+++ b/erpnext/patches.txt
@@ -483,3 +483,4 @@ erpnext.patches.v16_0.packed_item_inv_dimen
erpnext.patches.v16_0.set_not_applicable_on_german_item_tax_templates
erpnext.patches.v16_0.clear_procedures_from_receivable_report
erpnext.patches.v16_0.migrate_address_contact_custom_fields
+erpnext.patches.v16_0.rename_secondary_item_type_field
diff --git a/erpnext/patches/v16_0/co_by_product_patch.py b/erpnext/patches/v16_0/co_by_product_patch.py
index 63f43e85b9e..5baca92b31a 100644
--- a/erpnext/patches/v16_0/co_by_product_patch.py
+++ b/erpnext/patches/v16_0/co_by_product_patch.py
@@ -41,7 +41,7 @@ def insert_into_bom():
"conversion_factor": 1,
"qty": item.stock_qty,
"is_legacy": 1,
- "type": "Scrap",
+ "secondary_item_type": "Scrap",
}
)
secondary_item.insert()
@@ -49,7 +49,14 @@ def insert_into_bom():
def insert_into_job_card():
fields = ["item_code", "item_name", "description", "stock_qty", "stock_uom"]
- bulk_insert("Job Card", "Job Card Scrap Item", "Job Card Secondary Item", fields, ["type"], ["Scrap"])
+ bulk_insert(
+ "Job Card",
+ "Job Card Scrap Item",
+ "Job Card Secondary Item",
+ fields,
+ ["secondary_item_type"],
+ ["Scrap"],
+ )
def insert_into_subcontracting_inward():
@@ -67,7 +74,7 @@ def insert_into_subcontracting_inward():
"Subcontracting Inward Order Scrap Item",
"Subcontracting Inward Order Secondary Item",
fields,
- ["type"],
+ ["secondary_item_type"],
["Scrap"],
)
diff --git a/erpnext/patches/v16_0/rename_secondary_item_type_field.py b/erpnext/patches/v16_0/rename_secondary_item_type_field.py
new file mode 100644
index 00000000000..41b264b7ccb
--- /dev/null
+++ b/erpnext/patches/v16_0/rename_secondary_item_type_field.py
@@ -0,0 +1,18 @@
+import frappe
+from frappe.model.utils.rename_field import rename_field
+
+
+def execute():
+ doctypes = [
+ "BOM Secondary Item",
+ "Job Card Secondary Item",
+ "Stock Entry Detail",
+ "Subcontracting Inward Order Secondary Item",
+ "Subcontracting Receipt Item",
+ ]
+
+ for doctype in doctypes:
+ if not frappe.db.has_column(doctype, "type"):
+ continue
+
+ rename_field(doctype, "type", "secondary_item_type")
diff --git a/erpnext/projects/doctype/project/test_project.py b/erpnext/projects/doctype/project/test_project.py
index a15f8bfb867..b24f0d13fe2 100644
--- a/erpnext/projects/doctype/project/test_project.py
+++ b/erpnext/projects/doctype/project/test_project.py
@@ -152,7 +152,7 @@ class TestProject(ERPNextTestSuite):
self.assertEqual(tasks[1].subject, "Test Template Task with Dependency")
self.assertEqual(getdate(tasks[1].exp_end_date), calculate_end_date(project, 2, 2))
- self.assertTrue(tasks[1].depends_on_tasks.find(tasks[0].name) >= 0)
+ self.assertGreaterEqual(tasks[1].depends_on_tasks.find(tasks[0].name), 0)
self.assertEqual(tasks[0].subject, "Test Template Task for Dependency")
self.assertEqual(getdate(tasks[0].exp_end_date), calculate_end_date(project, 3, 1))
diff --git a/erpnext/public/js/controllers/buying.js b/erpnext/public/js/controllers/buying.js
index e1ab20f2ae4..d8d812e7116 100644
--- a/erpnext/public/js/controllers/buying.js
+++ b/erpnext/public/js/controllers/buying.js
@@ -174,14 +174,9 @@ erpnext.buying = {
callback: (r) => {
if (!r.message) return;
- if (!this.frm.doc.billing_address) {
- this.frm.set_value("billing_address", r.message.primary_address || "");
- }
+ this.frm.set_value("billing_address", r.message.primary_address || "");
- if (
- frappe.meta.has_field(this.frm.doc.doctype, "shipping_address") &&
- !this.frm.doc.shipping_address
- ) {
+ if (frappe.meta.has_field(this.frm.doc.doctype, "shipping_address")) {
this.frm.set_value("shipping_address", r.message.shipping_address || "");
}
},
diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js
index 15271ed66a6..60462148223 100644
--- a/erpnext/public/js/controllers/transaction.js
+++ b/erpnext/public/js/controllers/transaction.js
@@ -459,19 +459,22 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
reference_name: frm.doc.name,
},
});
+
+ if (!schedules?.length) {
+ this.make_payment_request();
+ return;
+ }
+
const value = await frappe.db.get_single_value(
"Accounts Settings",
"fetch_payment_schedule_in_payment_request"
);
- if (!value || !schedules.length) {
+ if (!value) {
this.make_payment_request();
return;
}
- if (!schedules || !schedules.length) {
- frappe.msgprint(__("No pending payment schedules available."));
- return;
- }
+
schedules.forEach((schedule) => (schedule.__checked = 1));
const dialog = new frappe.ui.Dialog({
@@ -833,26 +836,24 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
},
async () => {
// for internal customer instead of pricing rule directly apply valuation rate on item
- const fetch_valuation_rate_for_internal_transactions =
- await frappe.db.get_single_value(
- "Accounts Settings",
- "fetch_valuation_rate_for_internal_transaction"
- );
- if (
- (me.frm.doc.is_internal_customer ||
- me.frm.doc.is_internal_supplier) &&
- fetch_valuation_rate_for_internal_transactions
- ) {
- me.get_incoming_rate(
- item,
- me.frm.posting_date,
- me.frm.posting_time,
- me.frm.doc.doctype,
- me.frm.doc.company
- );
- } else {
- me.frm.script_manager.trigger("price_list_rate", cdt, cdn);
+ if (me.frm.doc.is_internal_customer || me.frm.doc.is_internal_supplier) {
+ const fetch_valuation_rate_for_internal_transactions =
+ await frappe.db.get_single_value(
+ "Accounts Settings",
+ "fetch_valuation_rate_for_internal_transaction"
+ );
+ if (fetch_valuation_rate_for_internal_transactions) {
+ me.get_incoming_rate(
+ item,
+ me.frm.posting_date,
+ me.frm.posting_time,
+ me.frm.doc.doctype,
+ me.frm.doc.company
+ );
+ return;
+ }
}
+ me.frm.script_manager.trigger("price_list_rate", cdt, cdn);
},
() => {
if (me.frm.doc.is_internal_customer || me.frm.doc.is_internal_supplier) {
@@ -2923,10 +2924,28 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe
method: "erpnext.controllers.stock_controller.check_item_quality_inspection",
args: {
doctype: this.frm.doc.doctype,
+ docstatus: this.frm.doc.docstatus,
items: this.frm.doc.items,
},
freeze: true,
callback: function (r) {
+ if (r.message.length == 0) {
+ let type = inspection_type === "Incoming" ? "Purchase" : "Delivery";
+ let fieldname =
+ inspection_type === "Incoming"
+ ? "Inspection Required before Purchase"
+ : "Inspection Required before Delivery";
+
+ frappe.msgprint({
+ title: __("Quality Inspection Not Configured"),
+ message: __(`Enable {0} on the Item master to proceed with {1} inspection.`, [
+ fieldname,
+ type,
+ ]),
+ });
+ return;
+ }
+
r.message.forEach((item) => {
if (me.has_inspection_required(item)) {
let dialog_items = dialog.fields_dict.items;
diff --git a/erpnext/selling/doctype/customer/customer.js b/erpnext/selling/doctype/customer/customer.js
index 0ee8c5555f4..b4c5a7f3064 100644
--- a/erpnext/selling/doctype/customer/customer.js
+++ b/erpnext/selling/doctype/customer/customer.js
@@ -38,7 +38,7 @@ frappe.ui.form.on("Customer", {
frm.add_fetch("lead_name", "company_name", "customer_name");
frm.add_fetch("default_sales_partner", "commission_rate", "default_commission_rate");
- frm.set_query("default_price_list", { selling: 1 });
+ frm.set_query("default_price_list", () => ({ filters: { selling: 1 } }));
frm.set_query("account", "accounts", function (doc, cdt, cdn) {
let d = locals[cdt][cdn];
let filters = {
@@ -185,13 +185,15 @@ frappe.ui.form.on("Customer", {
frm.add_custom_button(__(doctype), frm.make_methods[doctype], __("Create"));
}
- frm.add_custom_button(
- __("Get Customer Group Details"),
- function () {
- frm.trigger("get_customer_group_details");
- },
- __("Actions")
- );
+ if (frm.doc.customer_group) {
+ frm.add_custom_button(
+ __("Get Customer Group Details"),
+ function () {
+ frm.trigger("get_customer_group_details");
+ },
+ __("Actions")
+ );
+ }
if (
cint(frappe.defaults.get_default("enable_common_party_accounting")) &&
diff --git a/erpnext/selling/doctype/customer/customer.json b/erpnext/selling/doctype/customer/customer.json
index 95c5fb772e3..f60bdce0969 100644
--- a/erpnext/selling/doctype/customer/customer.json
+++ b/erpnext/selling/doctype/customer/customer.json
@@ -12,18 +12,23 @@
"field_order": [
"basic_info",
"naming_series",
- "customer_type",
"customer_name",
+ "customer_type",
"gender",
"column_break0",
"customer_group",
"territory",
"image",
- "defaults_tab",
+ "section_break_hwkr",
"default_currency",
"default_bank_account",
- "column_break_14",
+ "column_break_yvyu",
"default_price_list",
+ "payment_terms",
+ "loyalty_points_tab",
+ "loyalty_program",
+ "column_break_54",
+ "loyalty_program_tier",
"contact_and_address_tab",
"address_contacts",
"address_html",
@@ -39,28 +44,31 @@
"email_id",
"first_name",
"last_name",
+ "accounting_tab",
+ "default_receivable_accounts",
+ "default_accounts_column",
+ "accounts",
+ "credit_limit_section",
+ "credit_limit_column",
+ "credit_limits",
+ "internal_customer_section",
+ "is_internal_customer",
+ "represents_company",
+ "section_break_nrvh",
+ "companies",
"tax_tab",
"taxation_section",
"tax_id",
"tax_category",
"column_break_21",
- "tax_withholding_category",
"tax_withholding_group",
- "accounting_tab",
- "default_receivable_accounts",
- "accounts",
- "credit_limit_section",
- "payment_terms",
- "credit_limits",
- "internal_customer_section",
- "is_internal_customer",
- "represents_company",
- "column_break_70",
- "companies",
- "loyalty_points_tab",
- "loyalty_program",
- "column_break_54",
- "loyalty_program_tier",
+ "tax_withholding_category",
+ "settings_tab",
+ "so_required",
+ "dn_required",
+ "column_break_53",
+ "disabled",
+ "is_frozen",
"sales_team_tab",
"account_manager",
"sales_team",
@@ -68,12 +76,6 @@
"default_sales_partner",
"column_break_66",
"default_commission_rate",
- "settings_tab",
- "so_required",
- "dn_required",
- "column_break_53",
- "disabled",
- "is_frozen",
"portal_users_tab",
"portal_users",
"more_info_tab",
@@ -91,6 +93,7 @@
"column_break_hdmn",
"customer_details",
"supplier_numbers_section",
+ "supplier_numbers_column",
"supplier_numbers",
"connections_tab"
],
@@ -132,6 +135,7 @@
"default": "Company",
"fieldname": "customer_type",
"fieldtype": "Select",
+ "in_list_view": 1,
"label": "Customer Type",
"oldfieldname": "customer_type",
"oldfieldtype": "Select",
@@ -139,10 +143,12 @@
"reqd": 1
},
{
+ "description": "Pre-filled on payment entries for this customer. Must be a company account.",
"fieldname": "default_bank_account",
"fieldtype": "Link",
- "label": "Default Company Bank Account",
- "options": "Bank Account"
+ "label": "Company Bank Account",
+ "options": "Bank Account",
+ "show_description_on_click": 1
},
{
"fieldname": "lead_name",
@@ -203,6 +209,7 @@
"label": "Tax ID"
},
{
+ "description": "Controls which tax template is auto-applied when this customer is selected on a transaction.",
"fieldname": "tax_category",
"fieldtype": "Link",
"label": "Tax Category",
@@ -210,12 +217,15 @@
},
{
"default": "0",
+ "description": "Blocks this customer from being used on any new transaction.",
"fieldname": "disabled",
"fieldtype": "Check",
- "label": "Disabled"
+ "label": "Disabled",
+ "show_description_on_click": 1
},
{
"default": "0",
+ "description": "Mark if this customer represents an internal company. Enables inter-company transactions.",
"fieldname": "is_internal_customer",
"fieldtype": "Check",
"label": "Is Internal Customer"
@@ -230,31 +240,32 @@
"unique": 1
},
{
- "depends_on": "represents_company",
+ "depends_on": "eval: doc.is_internal_customer && doc.represents_company",
"fieldname": "companies",
"fieldtype": "Table",
- "label": "Allowed To Transact With",
+ "label": "Allowed to transact with",
"options": "Allowed To Transact With"
},
{
+ "description": "All invoices and orders for this customer will be created in this currency.",
"fieldname": "default_currency",
"fieldtype": "Link",
"ignore_user_permissions": 1,
"in_list_view": 1,
"label": "Billing Currency",
"no_copy": 1,
- "options": "Currency"
+ "options": "Currency",
+ "show_description_on_click": 1
},
{
+ "description": "Fetched automatically on sales orders and invoices for this customer.",
"fieldname": "default_price_list",
"fieldtype": "Link",
"ignore_user_permissions": 1,
- "label": "Default Price List",
- "options": "Price List"
- },
- {
- "fieldname": "column_break_14",
- "fieldtype": "Column Break"
+ "label": "Price List",
+ "link_filters": "[[\"Price List\", \"selling\", \"=\", 1]]",
+ "options": "Price List",
+ "show_description_on_click": 1
},
{
"fieldname": "language",
@@ -340,29 +351,30 @@
},
{
"fieldname": "default_receivable_accounts",
- "fieldtype": "Section Break",
- "label": "Default Accounts"
+ "fieldtype": "Section Break"
},
{
- "description": "Mention if non-standard Receivable account",
+ "description": "If set, accounting entries for this customer will post to these accounts instead of the company default.",
"fieldname": "accounts",
"fieldtype": "Table",
- "label": "Accounts",
- "options": "Party Account"
+ "label": "Default Accounts",
+ "options": "Party Account",
+ "show_description_on_click": 1
},
{
"fieldname": "credit_limit_section",
- "fieldtype": "Section Break",
- "label": "Credit Limit and Payment Terms"
+ "fieldtype": "Section Break"
},
{
+ "description": "Defines when payment is due (e.g. Net 30, 50% advance). Applied automatically on invoices for this customer.",
"fieldname": "payment_terms",
"fieldtype": "Link",
- "label": "Default Payment Terms Template",
- "options": "Payment Terms Template"
+ "label": "Payment Terms Template",
+ "options": "Payment Terms Template",
+ "show_description_on_click": 1
},
{
- "description": "Additional information regarding the customer.",
+ "description": "Internal notes about this customer. Not visible on transactions or the portal.",
"fieldname": "customer_details",
"fieldtype": "Text",
"label": "Customer Details",
@@ -370,10 +382,12 @@
"oldfieldtype": "Code"
},
{
+ "description": "Classify the type of market this customer belongs to, used for sales analysis and targeting.",
"fieldname": "market_segment",
"fieldtype": "Link",
"label": "Market Segment",
- "options": "Market Segment"
+ "options": "Market Segment",
+ "show_description_on_click": 1
},
{
"fieldname": "industry",
@@ -383,11 +397,14 @@
},
{
"default": "0",
+ "description": "Blocks all further accounting entries on this customer's account. Only users with the frozen-entries role can override.\n",
"fieldname": "is_frozen",
"fieldtype": "Check",
- "label": "Is Frozen"
+ "label": "Is Frozen",
+ "show_description_on_click": 1
},
{
+ "description": "Loyalty scheme this customer earns points under. Auto-assigned if a matching program exists.",
"fieldname": "loyalty_program",
"fieldtype": "Link",
"label": "Loyalty Program",
@@ -395,6 +412,7 @@
"options": "Loyalty Program"
},
{
+ "description": "Current tier based on accumulated points. Updated automatically on each invoice.",
"fieldname": "loyalty_program_tier",
"fieldtype": "Data",
"label": "Loyalty Program Tier",
@@ -418,12 +436,14 @@
"oldfieldtype": "Currency"
},
{
- "collapsible": 1,
"collapsible_depends_on": "sales_team",
+ "description": "Commission paid to the Sales Partner on transactions with this customer.",
"fieldname": "sales_team_section",
- "fieldtype": "Section Break"
+ "fieldtype": "Section Break",
+ "label": "Sales Partner"
},
{
+ "description": "Split commission credit across multiple sales persons.",
"fieldname": "sales_team",
"fieldtype": "Table",
"label": "Sales Team",
@@ -441,24 +461,27 @@
"report_hide": 1
},
{
+ "description": "Transactions are blocked or warned when outstanding balance exceeds this amount.",
"fieldname": "credit_limits",
"fieldtype": "Table",
"label": "Credit Limit",
- "options": "Customer Credit Limit"
+ "options": "Customer Credit Limit",
+ "show_description_on_click": 1
},
{
"default": "0",
"fieldname": "so_required",
"fieldtype": "Check",
- "label": "Allow Sales Invoice Creation Without Sales Order"
+ "label": "Allow sales invoice creation without sales order"
},
{
"default": "0",
"fieldname": "dn_required",
"fieldtype": "Check",
- "label": "Allow Sales Invoice Creation Without Delivery Note"
+ "label": "Allow sales invoice creation without delivery note"
},
{
+ "description": "TDS/TCS is calculated at the rate defined here on every payment from this customer.",
"fieldname": "tax_withholding_category",
"fieldtype": "Link",
"label": "Tax Withholding Category",
@@ -478,11 +501,6 @@
"fieldtype": "Tab Break",
"label": "Address & Contact"
},
- {
- "fieldname": "defaults_tab",
- "fieldtype": "Section Break",
- "label": "Defaults"
- },
{
"fieldname": "settings_tab",
"fieldtype": "Tab Break",
@@ -511,6 +529,7 @@
},
{
"collapsible": 1,
+ "collapsible_depends_on": "loyalty_program",
"fieldname": "loyalty_points_tab",
"fieldtype": "Section Break",
"label": "Loyalty Points"
@@ -530,21 +549,17 @@
"label": "Tax"
},
{
- "collapsible": 1,
- "collapsible_depends_on": "is_internal_customer",
"fieldname": "internal_customer_section",
"fieldtype": "Section Break",
+ "hide_border": 1,
"label": "Internal Customer Accounting"
},
- {
- "fieldname": "column_break_70",
- "fieldtype": "Column Break"
- },
{
"fieldname": "column_break_54",
"fieldtype": "Column Break"
},
{
+ "description": "Users listed here can log into the customer portal to view their orders, invoices, and deliveries.",
"fieldname": "portal_users_tab",
"fieldtype": "Tab Break",
"label": "Portal Users"
@@ -583,13 +598,14 @@
"label": "Last Name"
},
{
- "description": "Supplier numbers assigned by the customer",
+ "description": "Numbers this customer uses to identify your company in their own system.",
"fieldname": "supplier_numbers",
"fieldtype": "Table",
"label": "Supplier Numbers",
"options": "Supplier Number At Customer"
},
{
+ "description": "Select the group first to filter the applicable withholding categories below.",
"fieldname": "tax_withholding_group",
"fieldtype": "Link",
"label": "Tax Withholding Group",
@@ -625,8 +641,32 @@
},
{
"fieldname": "supplier_numbers_section",
+ "fieldtype": "Section Break"
+ },
+ {
+ "fieldname": "section_break_hwkr",
"fieldtype": "Section Break",
- "label": "Supplier Numbers"
+ "label": "Defaults"
+ },
+ {
+ "fieldname": "column_break_yvyu",
+ "fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "default_accounts_column",
+ "fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "supplier_numbers_column",
+ "fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "section_break_nrvh",
+ "fieldtype": "Section Break"
+ },
+ {
+ "fieldname": "credit_limit_column",
+ "fieldtype": "Column Break"
}
],
"icon": "fa fa-user",
@@ -640,7 +680,7 @@
"link_fieldname": "party"
}
],
- "modified": "2026-03-09 17:15:26.040050",
+ "modified": "2026-05-29 02:21:41.089319",
"modified_by": "Administrator",
"module": "Selling",
"name": "Customer",
diff --git a/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json b/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
index 790cb40eeeb..f738b3629fa 100644
--- a/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
+++ b/erpnext/selling/doctype/customer_credit_limit/customer_credit_limit.json
@@ -36,19 +36,20 @@
"fieldname": "bypass_credit_limit_check",
"fieldtype": "Check",
"in_list_view": 1,
- "label": "Bypass Credit Limit Check at Sales Order"
+ "label": "Bypass credit limit check at sales order"
}
],
"istable": 1,
"links": [],
- "modified": "2024-03-27 13:06:48.432478",
+ "modified": "2026-05-27 00:26:50.904565",
"modified_by": "Administrator",
"module": "Selling",
"name": "Customer Credit Limit",
"owner": "Administrator",
"permissions": [],
"quick_entry": 1,
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": []
-}
\ No newline at end of file
+}
diff --git a/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py b/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py
index eaa68232d27..e555901965d 100644
--- a/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py
+++ b/erpnext/selling/doctype/party_specific_item/test_party_specific_item.py
@@ -31,7 +31,7 @@ class TestPartySpecificItem(ERPNextTestSuite):
items = item_query(
doctype="Item", txt="", searchfield="name", start=0, page_len=20, filters=filters, as_dict=False
)
- self.assertTrue(item in flatten(items))
+ self.assertIn(item, flatten(items))
def test_item_query_for_supplier(self):
supplier = "_Test Supplier With Template 1"
@@ -47,7 +47,7 @@ class TestPartySpecificItem(ERPNextTestSuite):
items = item_query(
doctype="Item", txt="", searchfield="name", start=0, page_len=20, filters=filters, as_dict=False
)
- self.assertTrue(item in flatten(items))
+ self.assertIn(item, flatten(items))
def test_party_group(self):
customer = "_Test Customer With Template"
@@ -64,7 +64,7 @@ class TestPartySpecificItem(ERPNextTestSuite):
items = item_query(
doctype="Item", txt="", searchfield="name", start=0, page_len=20, filters=filters, as_dict=False
)
- self.assertTrue(item in flatten(items))
+ self.assertIn(item, flatten(items))
def flatten(lst):
diff --git a/erpnext/selling/doctype/quotation/quotation.json b/erpnext/selling/doctype/quotation/quotation.json
index d70475eeb0a..24da8f332b9 100644
--- a/erpnext/selling/doctype/quotation/quotation.json
+++ b/erpnext/selling/doctype/quotation/quotation.json
@@ -22,8 +22,6 @@
"company",
"has_unit_price_items",
"amended_from",
- "section_break_cojf",
- "title",
"currency_and_price_list",
"currency",
"conversion_rate",
@@ -137,6 +135,7 @@
"status",
"customer_group",
"territory",
+ "title",
"column_break_108",
"opportunity",
"enq_det",
@@ -306,7 +305,6 @@
"read_only": 1
},
{
- "depends_on": "eval:(doc.quotation_to=='Customer' && doc.party_name)",
"fieldname": "col_break98",
"fieldtype": "Column Break",
"width": "50%"
@@ -1133,10 +1131,6 @@
"fieldtype": "Section Break",
"label": "Auto Repeat"
},
- {
- "fieldname": "section_break_cojf",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -1150,7 +1144,7 @@
"idx": 82,
"is_submittable": 1,
"links": [],
- "modified": "2026-03-30 12:19:04.589592",
+ "modified": "2026-05-30 17:40:02.667637",
"modified_by": "Administrator",
"module": "Selling",
"name": "Quotation",
diff --git a/erpnext/selling/doctype/sales_order/mapper.py b/erpnext/selling/doctype/sales_order/mapper.py
index 2a517934c92..fb2d1b15907 100644
--- a/erpnext/selling/doctype/sales_order/mapper.py
+++ b/erpnext/selling/doctype/sales_order/mapper.py
@@ -378,10 +378,9 @@ def make_delivery_note(
dn_item.serial_and_batch_bundle = get_ssb_bundle_for_voucher([sre]).name
target_doc.append("items", dn_item)
- else:
- # Correct rows index.
- for idx, item in enumerate(target_doc.items):
- item.idx = idx + 1
+ # Correct rows index.
+ for idx, item in enumerate(target_doc.items):
+ item.idx = idx + 1
if not kwargs.skip_item_mapping and frappe.flags.bulk_transaction and not target_doc.items:
# the (date) condition filter resulted in an unintendedly created empty DN; remove it
diff --git a/erpnext/selling/doctype/sales_order/sales_order.json b/erpnext/selling/doctype/sales_order/sales_order.json
index 2e0507ab4ca..739b91f18b1 100644
--- a/erpnext/selling/doctype/sales_order/sales_order.json
+++ b/erpnext/selling/doctype/sales_order/sales_order.json
@@ -26,8 +26,6 @@
"has_unit_price_items",
"is_subcontracted",
"amended_from",
- "section_break_umok",
- "title",
"accounting_dimensions_section",
"cost_center",
"dimension_col_break",
@@ -176,6 +174,7 @@
"po_no",
"po_date",
"represents_company",
+ "title",
"column_break_yvzv",
"inter_company_order_reference",
"party_account_currency",
@@ -1747,10 +1746,6 @@
"print_hide": 1,
"read_only": 1
},
- {
- "fieldname": "section_break_umok",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -1765,7 +1760,7 @@
"idx": 105,
"is_submittable": 1,
"links": [],
- "modified": "2026-05-01 02:37:30.937916",
+ "modified": "2026-05-28 11:41:11.823034",
"modified_by": "Administrator",
"module": "Selling",
"name": "Sales Order",
diff --git a/erpnext/selling/doctype/sales_order/test_sales_order.py b/erpnext/selling/doctype/sales_order/test_sales_order.py
index 08ad447edaa..17eeb64e69c 100644
--- a/erpnext/selling/doctype/sales_order/test_sales_order.py
+++ b/erpnext/selling/doctype/sales_order/test_sales_order.py
@@ -988,8 +988,8 @@ class TestSalesOrder(ERPNextTestSuite):
so = make_sales_order(item_code="_Test Service Product Bundle", warehouse=None)
- self.assertTrue("_Test Service Product Bundle Item 1" in [d.item_code for d in so.packed_items])
- self.assertTrue("_Test Service Product Bundle Item 2" in [d.item_code for d in so.packed_items])
+ self.assertIn("_Test Service Product Bundle Item 1", [d.item_code for d in so.packed_items])
+ self.assertIn("_Test Service Product Bundle Item 2", [d.item_code for d in so.packed_items])
def test_mix_type_product_bundle(self):
make_item("_Test Mix Product Bundle", {"is_stock_item": 0})
@@ -2344,8 +2344,8 @@ class TestSalesOrder(ERPNextTestSuite):
pick_list.save()
for row in pick_list.locations:
self.assertEqual(row.qty, 1.0)
- self.assertFalse(row.warehouse == rejected_warehouse)
- self.assertTrue(row.warehouse == warehouse)
+ self.assertNotEqual(row.warehouse, rejected_warehouse)
+ self.assertEqual(row.warehouse, warehouse)
def test_pick_list_for_batch(self):
from erpnext.stock.doctype.pick_list.mapper import create_delivery_note
@@ -2373,16 +2373,16 @@ class TestSalesOrder(ERPNextTestSuite):
for row in pick_list.locations:
self.assertEqual(row.qty, 10.0)
- self.assertTrue(row.warehouse == warehouse)
- self.assertTrue(row.batch_no == batch_no)
+ self.assertEqual(row.warehouse, warehouse)
+ self.assertEqual(row.batch_no, batch_no)
pick_list.submit()
dn = create_delivery_note(pick_list.name)
for row in dn.items:
self.assertEqual(row.qty, 10.0)
- self.assertTrue(row.warehouse == warehouse)
- self.assertTrue(row.batch_no == batch_no)
+ self.assertEqual(row.warehouse, warehouse)
+ self.assertEqual(row.batch_no, batch_no)
dn.submit()
dn.reload()
@@ -2440,7 +2440,7 @@ class TestSalesOrder(ERPNextTestSuite):
so.items[0].rate = 90
so.save()
- self.assertTrue(so.items[0].discount_amount == 27558.0)
+ self.assertEqual(so.items[0].discount_amount, 27558.0)
so.submit()
warehouse = create_warehouse("NW Warehouse FOR Rate", company=so.company)
@@ -2586,13 +2586,13 @@ class TestSalesOrder(ERPNextTestSuite):
self.assertEqual(len(sres), 1)
sre_doc = frappe.get_doc("Stock Reservation Entry", sres[0].name)
- self.assertFalse(sre_doc.status == "Delivered")
+ self.assertNotEqual(sre_doc.status, "Delivered")
si = make_sales_invoice(so.name)
si.update_stock = 1
si.submit()
sre_doc.reload()
- self.assertTrue(sre_doc.status == "Delivered")
+ self.assertEqual(sre_doc.status, "Delivered")
@ERPNextTestSuite.change_settings("Selling Settings", {"allow_zero_qty_in_sales_order": 1})
def test_deliver_zero_qty_purchase_order(self):
diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.py b/erpnext/selling/page/point_of_sale/point_of_sale.py
index 0e7b174668d..df675272c68 100644
--- a/erpnext/selling/page/point_of_sale/point_of_sale.py
+++ b/erpnext/selling/page/point_of_sale/point_of_sale.py
@@ -427,42 +427,80 @@ def get_past_order_list(search_term: str, status: str, limit: int = 20):
@frappe.whitelist()
def set_customer_info(fieldname: str, customer: str, value: str = ""):
+ customer_doc = frappe.get_doc("Customer", customer)
+ customer_doc.check_permission("write")
+
if fieldname == "loyalty_program":
- frappe.db.set_value("Customer", customer, "loyalty_program", value)
+ customer_doc.loyalty_program = value
+ else:
+ contact = customer_doc.get("customer_primary_contact")
+ if not contact:
+ Contact = DocType("Contact")
+ DynamicLink = DocType("Dynamic Link")
- contact = frappe.get_cached_value("Customer", customer, "customer_primary_contact")
- if not contact:
- contact = frappe.db.sql(
- """
- SELECT parent FROM `tabDynamic Link`
- WHERE
- parenttype = 'Contact' AND
- parentfield = 'links' AND
- link_doctype = 'Customer' AND
- link_name = %s
- """,
- (customer),
- as_dict=1,
- )
- contact = contact[0].get("parent") if contact else None
+ # Inner join with Contact DocType, to priorities records that have is_primary_contact set.
+ query = (
+ frappe.qb.from_(DynamicLink)
+ .join(Contact)
+ .on(DynamicLink.parent == Contact.name)
+ .select(DynamicLink.parent)
+ .where(
+ (DynamicLink.link_name == customer)
+ & (DynamicLink.parentfield == "links")
+ & (DynamicLink.parenttype == "Contact")
+ & (DynamicLink.link_doctype == "Customer")
+ )
+ .orderby(Contact.is_primary_contact, order=Order.desc)
+ )
- if not contact:
- new_contact = frappe.new_doc("Contact")
- new_contact.is_primary_contact = 1
- new_contact.first_name = customer
- new_contact.set("links", [{"link_doctype": "Customer", "link_name": customer}])
- new_contact.save()
- contact = new_contact.name
- frappe.db.set_value("Customer", customer, "customer_primary_contact", contact)
+ contacts = query.run(pluck=DynamicLink.parent)
- contact_doc = frappe.get_doc("Contact", contact)
- if fieldname == "email_id":
- contact_doc.set("email_ids", [{"email_id": value, "is_primary": 1}])
- frappe.db.set_value("Customer", customer, "email_id", value)
- elif fieldname == "mobile_no":
- contact_doc.set("phone_nos", [{"phone": value, "is_primary_mobile_no": 1}])
- frappe.db.set_value("Customer", customer, "mobile_no", value)
- contact_doc.save()
+ contact = contacts[0] if contacts else None
+
+ if not contact:
+ new_contact = frappe.new_doc("Contact")
+ new_contact.is_primary_contact = 1
+ new_contact.first_name = customer
+ new_contact.set("links", [{"link_doctype": "Customer", "link_name": customer}])
+ new_contact.save()
+ contact = new_contact.name
+
+ def set_primary_phone_no_email(field, value):
+ # Create new record instead deleting existing email or phone_no and setting the new row as primary.
+ field_mapper = {
+ "email_ids": {"field": "email_id", "primary": "is_primary"},
+ "phone_nos": {"field": "phone", "primary": "is_primary_mobile_no"},
+ }
+
+ value_already_exists = False
+ for d in contact_doc.get(field):
+ if d.get(field_mapper[field].get("field")) == value and not value_already_exists:
+ d.set(field_mapper[field]["primary"], 1)
+ value_already_exists = True
+ continue
+ d.set(field_mapper[field]["primary"], 0)
+
+ if not value_already_exists:
+ contact_doc.append(
+ field, {field_mapper[field]["field"]: value, field_mapper[field]["primary"]: 1}
+ )
+
+ contact_doc = frappe.get_doc("Contact", contact)
+ # setting is_primary_contact = 1 on Contact to refetch the same contact incase it's removed from Customer records.
+ contact_doc.set("is_primary_contact", 1)
+ if fieldname == "email_id":
+ set_primary_phone_no_email("email_ids", value)
+ elif fieldname == "mobile_no":
+ set_primary_phone_no_email("phone_nos", value)
+ # Saving contact_doc to set mobile_no and email.
+ contact_doc.save()
+
+ # Auto-fetches from Contact DocType, no need to set values separately.
+ customer_doc.customer_primary_contact = contact
+
+ # using save method instead db.set_value which bypasses the validation for loyalty program
+ # and auto sets the mobile_no and email field on customer records.
+ customer_doc.save()
@frappe.whitelist()
diff --git a/erpnext/selling/page/point_of_sale/pos_controller.js b/erpnext/selling/page/point_of_sale/pos_controller.js
index eeafb7ae5ec..4ae37052ec0 100644
--- a/erpnext/selling/page/point_of_sale/pos_controller.js
+++ b/erpnext/selling/page/point_of_sale/pos_controller.js
@@ -217,7 +217,7 @@ erpnext.PointOfSale.Controller = class {
set_opening_entry_status() {
this.page.set_title_sub(
`
-
+
Opened at ${frappe.datetime.str_to_user(this.pos_opening_time)}
`
diff --git a/erpnext/selling/page/point_of_sale/pos_item_cart.js b/erpnext/selling/page/point_of_sale/pos_item_cart.js
index 857189ab6d0..950377f1b36 100644
--- a/erpnext/selling/page/point_of_sale/pos_item_cart.js
+++ b/erpnext/selling/page/point_of_sale/pos_item_cart.js
@@ -184,7 +184,7 @@ erpnext.PointOfSale.ItemCart = class {
me.$totals_section.find(".edit-cart-btn").click();
}
- const item_row_name = unescape($cart_item.attr("data-row-name"));
+ const item_row_name = $cart_item.attr("data-row-name");
me.events.cart_item_clicked({ name: item_row_name });
this.numpad_value = "";
});
@@ -464,10 +464,10 @@ erpnext.PointOfSale.ItemCart = class {
${this.get_customer_image()}
-
${customer_name}
+
${frappe.utils.escape_html(customer_name)}
${get_customer_description()}
-
+
@@ -484,11 +484,13 @@ erpnext.PointOfSale.ItemCart = class {
if (!email_id && !mobile_no) {
return `
${__("Click to add email / phone")}
`;
} else if (email_id && !mobile_no) {
- return `
${email_id}
`;
+ return `
${frappe.utils.escape_html(email_id)}
`;
} else if (mobile_no && !email_id) {
- return `
${mobile_no}
`;
+ return `
${frappe.utils.escape_html(mobile_no)}
`;
} else {
- return `
${email_id} - ${mobile_no}
`;
+ return `
${frappe.utils.escape_html(
+ email_id
+ )} - ${frappe.utils.escape_html(mobile_no)}
`;
}
}
}
@@ -496,9 +498,13 @@ erpnext.PointOfSale.ItemCart = class {
get_customer_image() {
const { customer, image } = this.customer_info || {};
if (image) {
- return `
`;
+ return `
`;
} else {
- return `
${frappe.get_abbr(customer)}
`;
+ return `
${frappe.utils.escape_html(
+ frappe.get_abbr(customer)
+ )}
`;
}
}
@@ -559,7 +565,7 @@ erpnext.PointOfSale.ItemCart = class {
.map((t) => {
if (t.tax_amount_after_discount_amount == 0.0) return;
return `
-
${t.description}
+
${frappe.utils.escape_html(t.description)}
${format_currency(t.tax_amount_after_discount_amount, currency)}
`;
})
@@ -571,8 +577,9 @@ erpnext.PointOfSale.ItemCart = class {
}
get_cart_item({ name }) {
- const item_selector = `.cart-item-wrapper[data-row-name="${escape(name)}"]`;
- return this.$cart_items_wrapper.find(item_selector);
+ return this.$cart_items_wrapper.find(".cart-item-wrapper").filter(function () {
+ return $(this).attr("data-row-name") === name;
+ });
}
get_item_from_frm(item) {
@@ -602,7 +609,9 @@ erpnext.PointOfSale.ItemCart = class {
if (!$item_to_update.length) {
this.$cart_items_wrapper.append(
- `
+ `
`
);
$item_to_update = this.get_cart_item(item_data);
@@ -612,7 +621,7 @@ erpnext.PointOfSale.ItemCart = class {
`${get_item_image_html()}
- ${item_data.item_name}
+ ${frappe.utils.escape_html(item_data.item_name)}
${get_description_html()}
@@ -641,7 +650,7 @@ erpnext.PointOfSale.ItemCart = class {
if (item_data.rate && item_data.amount && item_data.rate !== item_data.amount) {
return `
-
${item_data.qty || 0} ${item_data.uom}
+
${item_data.qty || 0} ${frappe.utils.escape_html(item_data.uom)}
${format_currency(item_data.amount, currency)}
${format_currency(item_data.rate, currency)}
@@ -650,7 +659,7 @@ erpnext.PointOfSale.ItemCart = class {
} else {
return `
-
${item_data.qty || 0} ${item_data.uom}
+
${item_data.qty || 0} ${frappe.utils.escape_html(item_data.uom)}
${format_currency(item_data.rate, currency)}
@@ -671,7 +680,7 @@ erpnext.PointOfSale.ItemCart = class {
}
}
item_data.description = frappe.ellipsis(item_data.description, 45);
- return `
${item_data.description}
`;
+ return `
${frappe.utils.escape_html(item_data.description)}
`;
}
return ``;
}
@@ -683,22 +692,24 @@ erpnext.PointOfSale.ItemCart = class {
+ src="${frappe.utils.escape_html(image)}" alt="${frappe.utils.escape_html(frappe.get_abbr(item_name))}">
`;
} else {
- return `
${frappe.get_abbr(item_name)}
`;
+ return `
${frappe.utils.escape_html(
+ frappe.get_abbr(item_name)
+ )}
`;
}
}
}
handle_broken_image($img) {
- const item_abbr = $($img).attr("alt");
+ const item_abbr = frappe.utils.escape_html($($img).attr("alt"));
$($img).parent().replaceWith(`
${item_abbr}
`);
}
update_selector_value_in_cart_item(selector, value, item) {
const $item_to_update = this.get_cart_item(item);
- $item_to_update.attr(`data-${selector}`, escape(value));
+ $item_to_update.attr(`data-${selector}`, value);
}
toggle_checkout_btn(show_checkout) {
@@ -899,8 +910,8 @@ erpnext.PointOfSale.ItemCart = class {
${this.get_customer_image()}
-
${customer_name}
-
${customer}
+
${frappe.utils.escape_html(customer_name)}
+
${frappe.utils.escape_html(customer)}
@@ -987,6 +998,7 @@ erpnext.PointOfSale.ItemCart = class {
customer: current_customer,
value: this.value,
},
+ freeze: true,
callback: (r) => {
if (!r.exc) {
me.customer_info[this.df.fieldname] = this.value;
@@ -1040,9 +1052,11 @@ erpnext.PointOfSale.ItemCart = class {
};
transaction_container.append(
- `
+ `
-
${invoice.name}
+
${frappe.utils.escape_html(invoice.name)}
${posting_datetime}
@@ -1050,7 +1064,7 @@ erpnext.PointOfSale.ItemCart = class {
${format_currency(invoice.grand_total, invoice.currency, frappe.sys_defaults.currency_precision) || 0}
-
+
${__(invoice.status)}
diff --git a/erpnext/selling/page/point_of_sale/pos_item_details.js b/erpnext/selling/page/point_of_sale/pos_item_details.js
index 51ef0df8c2c..322c82384fa 100644
--- a/erpnext/selling/page/point_of_sale/pos_item_details.js
+++ b/erpnext/selling/page/point_of_sale/pos_item_details.js
@@ -130,24 +130,26 @@ erpnext.PointOfSale.ItemDetails = class {
return ``;
}
- this.$item_name.html(item_name);
+ this.$item_name.html(frappe.utils.escape_html(item_name));
this.$item_description.html(get_description_html());
this.$item_price.html(format_currency(price_list_rate, this.currency));
if (!this.hide_images && image) {
this.$item_image.html(
`
`
);
} else {
- this.$item_image.html(`
${frappe.get_abbr(item_name)}
`);
+ this.$item_image.html(
+ `
${frappe.utils.escape_html(frappe.get_abbr(item_name))}
`
+ );
}
}
handle_broken_image($img) {
- const item_abbr = $($img).attr("alt");
+ const item_abbr = frappe.utils.escape_html($($img).attr("alt"));
$($img).replaceWith(`
${item_abbr}
`);
}
diff --git a/erpnext/selling/page/point_of_sale/pos_item_selector.js b/erpnext/selling/page/point_of_sale/pos_item_selector.js
index 69ec1e56934..f05040c6a08 100644
--- a/erpnext/selling/page/point_of_sale/pos_item_selector.js
+++ b/erpnext/selling/page/point_of_sale/pos_item_selector.js
@@ -112,17 +112,37 @@ erpnext.PointOfSale.ItemSelector = class {
render_item_list_column_header() {
return `
-
Name
-
Price
-
UOM
-
Quantity Available
+
${__("Name")}
+
${__("Price")}
+
${__("UOM")}
+
${__("Quantity Available")}
`;
}
get_item_html(item) {
const me = this;
// eslint-disable-next-line no-unused-vars
- const { item_image, serial_no, batch_no, barcode, actual_qty, uom, price_list_rate } = item;
+ function sanitize_item_data(item) {
+ return Object.fromEntries(
+ Object.entries(item).map(([key, value]) => [
+ key,
+ typeof value === "string" ? frappe.utils.escape_html(value) : value,
+ ])
+ );
+ }
+ const sanitize_item = sanitize_item_data(item);
+ const {
+ item_code,
+ stock_uom,
+ item_name,
+ item_image,
+ serial_no,
+ batch_no,
+ barcode,
+ actual_qty,
+ uom,
+ price_list_rate,
+ } = sanitize_item;
const precision = flt(price_list_rate, 2) % 1 != 0 ? 2 : 0;
let indicator_color;
let qty_to_display = actual_qty;
@@ -149,37 +169,41 @@ erpnext.PointOfSale.ItemSelector = class {
`;
} else {
return `
${qty_to_display}
-
${frappe.get_abbr(item.item_name)}
`;
+
${frappe.get_abbr(item_name)}
`;
}
}
return `
+ data-item-code="${item_code}" data-serial-no="${serial_no}"
+ data-batch-no="${batch_no}" data-uom="${uom}"
+ data-rate="${price_list_rate || 0}"
+ data-stock-uom="${stock_uom}"
+ title="${item_name}">
${get_item_image_html()}
- ${!me.hide_images ? frappe.ellipsis(item.item_name, 18) : item.item_name}
+ ${!me.hide_images ? frappe.ellipsis(item_name, 18) : item_name}
${
!me.hide_images
? `
- ${format_currency(price_list_rate, item.currency, precision) || 0} / ${uom}
+ ${frappe.utils.escape_html(format_currency(price_list_rate, item.currency, precision)) || 0} / ${uom}
`
: `
-
${format_currency(price_list_rate, item.currency, precision) || 0}
+
${
+ frappe.utils.escape_html(
+ format_currency(price_list_rate, item.currency, precision)
+ ) || 0
+ }
${uom}
${qty_to_display || "Non stock item"}
`
@@ -189,7 +213,7 @@ erpnext.PointOfSale.ItemSelector = class {
}
handle_broken_image($img) {
- const item_abbr = $($img).attr("alt");
+ const item_abbr = frappe.utils.escape_html($($img).attr("alt"));
$($img).parent().replaceWith(`
${item_abbr}
`);
}
@@ -244,7 +268,7 @@ erpnext.PointOfSale.ItemSelector = class {
set_item_selector_filter_label(value) {
const $filter_label = this.$component.find(".label");
- $filter_label.html(value ? __(value) : __("All Items"));
+ $filter_label.html(value ? frappe.utils.escape_html(__(value)) : __("All Items"));
}
hide_open_link_btn() {
@@ -329,12 +353,12 @@ erpnext.PointOfSale.ItemSelector = class {
this.$component.on("click", ".item-wrapper", function () {
const $item = $(this);
- const item_code = unescape($item.attr("data-item-code"));
- let batch_no = unescape($item.attr("data-batch-no"));
- let serial_no = unescape($item.attr("data-serial-no"));
- let uom = unescape($item.attr("data-uom"));
- let rate = unescape($item.attr("data-rate"));
- let stock_uom = unescape($item.attr("data-stock-uom"));
+ const item_code = $item.attr("data-item-code");
+ let batch_no = $item.attr("data-batch-no");
+ let serial_no = $item.attr("data-serial-no");
+ let uom = $item.attr("data-uom");
+ let rate = $item.attr("data-rate");
+ let stock_uom = $item.attr("data-stock-uom");
// escape(undefined) returns "undefined" then unescape returns "undefined"
batch_no = batch_no === "undefined" ? undefined : batch_no;
diff --git a/erpnext/selling/page/point_of_sale/pos_past_order_list.js b/erpnext/selling/page/point_of_sale/pos_past_order_list.js
index 89bda039536..7eb5e16b2d6 100644
--- a/erpnext/selling/page/point_of_sale/pos_past_order_list.js
+++ b/erpnext/selling/page/point_of_sale/pos_past_order_list.js
@@ -42,7 +42,7 @@ erpnext.PointOfSale.PastOrderList = class {
this.$invoices_container.on("click", ".invoice-wrapper", function () {
const invoice_clicked = $(this);
const invoice_doctype = invoice_clicked.attr("data-invoice-doctype");
- const invoice_name = unescape(invoice_clicked.attr("data-invoice-name"));
+ const invoice_name = invoice_clicked.attr("data-invoice-name");
$(".invoice-wrapper").removeClass("invoice-selected");
invoice_clicked.addClass("invoice-selected");
@@ -108,15 +108,15 @@ erpnext.PointOfSale.PastOrderList = class {
);
return `
+ }" data-invoice-name="${frappe.utils.escape_html(invoice.name)}">
- ${frappe.ellipsis(invoice.customer_name, 20)}
+ ${frappe.utils.escape_html(frappe.ellipsis(invoice.customer_name, 20))}
-
${invoice.name}
+
${frappe.utils.escape_html(invoice.name)}
${format_currency(invoice.grand_total, invoice.currency) || 0}
diff --git a/erpnext/selling/page/point_of_sale/pos_past_order_summary.js b/erpnext/selling/page/point_of_sale/pos_past_order_summary.js
index 4585b3307b2..d59b50c60ad 100644
--- a/erpnext/selling/page/point_of_sale/pos_past_order_summary.js
+++ b/erpnext/selling/page/point_of_sale/pos_past_order_summary.js
@@ -82,15 +82,19 @@ erpnext.PointOfSale.PastOrderSummary = class {
return `
-
${doc.customer_name}
- ${is_customer_naming_by_customer_name ? `
${doc.customer}
` : ""}
-
${this.customer_email}
+
${frappe.utils.escape_html(doc.customer_name)}
+ ${
+ is_customer_naming_by_customer_name
+ ? `
${frappe.utils.escape_html(doc.customer)}
`
+ : ""
+ }
+
${frappe.utils.escape_html(this.customer_email)}
-
${__("Sold by")}: ${doc.owner}
+
${__("Sold by")}: ${frappe.utils.escape_html(doc.owner)}
${format_currency(doc.paid_amount, doc.currency)}
-
${doc.name}
+
${frappe.utils.escape_html(doc.name)}
${__(doc.status)}
`;
}
@@ -100,8 +104,8 @@ erpnext.PointOfSale.PastOrderSummary = class {
return `
-
${item_data.item_name}
-
${item_data.qty || 0} ${item_data.uom}
+
${frappe.utils.escape_html(item_data.item_name)}
+
${item_data.qty || 0} ${frappe.utils.escape_html(item_data.uom)}
${get_rate_discount_html()}
@@ -166,7 +170,7 @@ erpnext.PointOfSale.PastOrderSummary = class {
.map((t) => {
return `
-
${t.description}
+
${frappe.utils.escape_html(t.description)}
${format_currency(t.tax_amount_after_discount_amount, doc.currency)}
`;
@@ -185,7 +189,7 @@ erpnext.PointOfSale.PastOrderSummary = class {
get_payment_html(doc, payment) {
return `
-
${__(payment.mode_of_payment)}
+
${frappe.utils.escape_html(__(payment.mode_of_payment))}
${format_currency(payment.amount, doc.currency)}
`;
}
diff --git a/erpnext/selling/page/point_of_sale/pos_payment.js b/erpnext/selling/page/point_of_sale/pos_payment.js
index a92c8958917..bf8c9f44049 100644
--- a/erpnext/selling/page/point_of_sale/pos_payment.js
+++ b/erpnext/selling/page/point_of_sale/pos_payment.js
@@ -519,7 +519,7 @@ erpnext.PointOfSale.Payment = class {
return `
- ${p.mode_of_payment}
+ ${frappe.utils.escape_html(p.mode_of_payment)}
${amount}
@@ -603,7 +603,7 @@ erpnext.PointOfSale.Payment = class {
Redeem Loyalty Points
${amount}
-
${loyalty_program}
+
${frappe.utils.escape_html(loyalty_program)}
`
diff --git a/erpnext/selling/page/sales_funnel/sales_funnel.py b/erpnext/selling/page/sales_funnel/sales_funnel.py
index 300142d8814..11fd698c27b 100644
--- a/erpnext/selling/page/sales_funnel/sales_funnel.py
+++ b/erpnext/selling/page/sales_funnel/sales_funnel.py
@@ -102,6 +102,7 @@ def get_opp_by(by_field, from_date, to_date, company):
},
)
for x in opportunities
+ if x.get(by_field)
]
summary = {}
diff --git a/erpnext/selling/report/sales_analytics/sales_analytics.py b/erpnext/selling/report/sales_analytics/sales_analytics.py
index f20f78d741d..2aac07ce3b5 100644
--- a/erpnext/selling/report/sales_analytics/sales_analytics.py
+++ b/erpnext/selling/report/sales_analytics/sales_analytics.py
@@ -191,12 +191,30 @@ class Analytics:
self.get_sales_transactions_based_on_project()
self.get_rows()
+ def _get_permitted_parent_names(self):
+ return frappe.qb.get_query(
+ table=self.filters.doc_type,
+ fields=["name"],
+ filters={
+ "docstatus": 1,
+ "company": ["in", self.filters.company],
+ self.date_field: ("between", [self.filters.from_date, self.filters.to_date]),
+ },
+ ignore_permissions=False,
+ ).run(pluck="name")
+
def get_sales_transactions_based_on_order_type(self):
if self.filters["value_quantity"] == "Value":
value_field = "base_net_total"
else:
value_field = "total_qty"
+ permitted_names = self._get_permitted_parent_names()
+ if not permitted_names:
+ self.entries = []
+ self.get_teams()
+ return
+
doctype = DocType(self.filters.doc_type)
self.entries = (
@@ -206,12 +224,7 @@ class Analytics:
doctype[self.date_field],
doctype[value_field].as_("value_field"),
)
- .where(
- (doctype.docstatus == 1)
- & (doctype.company.isin(self.filters.company))
- & (doctype[self.date_field].between(self.filters.from_date, self.filters.to_date))
- & (IfNull(doctype.order_type, "") != "")
- )
+ .where((doctype.name.isin(permitted_names)) & (IfNull(doctype.order_type, "") != ""))
.orderby(doctype.order_type)
).run(as_dict=True)
@@ -250,9 +263,12 @@ class Analytics:
if self.filters.doc_type in ["Sales Invoice", "Purchase Invoice", "Payment Entry"]:
filters.update({"is_opening": "No"})
- self.entries = frappe.get_all(
- self.filters.doc_type, fields=[entity, entity_name, value_field, self.date_field], filters=filters
- )
+ self.entries = frappe.qb.get_query(
+ table=self.filters.doc_type,
+ fields=[entity, entity_name, value_field, self.date_field],
+ filters=filters,
+ ignore_permissions=False,
+ ).run(as_dict=True)
self.entity_names = {}
for d in self.entries:
@@ -264,6 +280,12 @@ class Analytics:
else:
value_field = "stock_qty"
+ permitted_names = self._get_permitted_parent_names()
+ if not permitted_names:
+ self.entries = []
+ self.entity_names = {}
+ return
+
doctype = DocType(self.filters.doc_type)
doctype_item = DocType(f"{self.filters.doc_type} Item")
@@ -278,11 +300,7 @@ class Analytics:
doctype_item[value_field].as_("value_field"),
doctype[self.date_field],
)
- .where(
- (doctype_item.docstatus == 1)
- & (doctype.company.isin(self.filters.company))
- & (doctype[self.date_field].between(self.filters.from_date, self.filters.to_date))
- )
+ .where((doctype_item.docstatus == 1) & (doctype.name.isin(permitted_names)))
).run(as_dict=True)
self.entity_names = {}
@@ -312,11 +330,12 @@ class Analytics:
if self.filters.doc_type in ["Sales Invoice", "Purchase Invoice", "Payment Entry"]:
filters.update({"is_opening": "No"})
- self.entries = frappe.get_all(
- self.filters.doc_type,
+ self.entries = frappe.qb.get_query(
+ table=self.filters.doc_type,
fields=[entity_field, value_field, self.date_field],
filters=filters,
- )
+ ignore_permissions=False,
+ ).run(as_dict=True)
self.get_groups()
def get_sales_transactions_based_on_item_group(self):
@@ -325,6 +344,12 @@ class Analytics:
else:
value_field = "qty"
+ permitted_names = self._get_permitted_parent_names()
+ if not permitted_names:
+ self.entries = []
+ self.get_groups()
+ return
+
doctype = DocType(self.filters.doc_type)
doctype_item = DocType(f"{self.filters.doc_type} Item")
@@ -337,11 +362,7 @@ class Analytics:
doctype_item[value_field].as_("value_field"),
doctype[self.date_field],
)
- .where(
- (doctype_item.docstatus == 1)
- & (doctype.company.isin(self.filters.company))
- & (doctype[self.date_field].between(self.filters.from_date, self.filters.to_date))
- )
+ .where((doctype_item.docstatus == 1) & (doctype.name.isin(permitted_names)))
).run(as_dict=True)
self.get_groups()
@@ -367,9 +388,12 @@ class Analytics:
if self.filters.doc_type in ["Sales Invoice", "Purchase Invoice", "Payment Entry"]:
filters.update({"is_opening": "No"})
- self.entries = frappe.get_all(
- self.filters.doc_type, fields=[entity, value_field, self.date_field], filters=filters
- )
+ self.entries = frappe.qb.get_query(
+ table=self.filters.doc_type,
+ fields=[entity, value_field, self.date_field],
+ filters=filters,
+ ignore_permissions=False,
+ ).run(as_dict=True)
def get_rows(self):
self.data = []
diff --git a/erpnext/setup/doctype/company/test_company.py b/erpnext/setup/doctype/company/test_company.py
index 566a976afd1..4bada0b4e6e 100644
--- a/erpnext/setup/doctype/company/test_company.py
+++ b/erpnext/setup/doctype/company/test_company.py
@@ -119,12 +119,12 @@ class TestCompany(ERPNextTestSuite):
self.assertTrue(lft)
self.assertTrue(rgt)
- self.assertTrue(lft < rgt)
- self.assertTrue(parent_lft < parent_rgt)
- self.assertTrue(lft > parent_lft)
- self.assertTrue(rgt < parent_rgt)
- self.assertTrue(lft >= min_lft)
- self.assertTrue(rgt <= max_rgt)
+ self.assertLess(lft, rgt)
+ self.assertLess(parent_lft, parent_rgt)
+ self.assertGreater(lft, parent_lft)
+ self.assertLess(rgt, parent_rgt)
+ self.assertGreaterEqual(lft, min_lft)
+ self.assertLessEqual(rgt, max_rgt)
def test_primary_address(self):
company = "_Test Company"
diff --git a/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py b/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py
index 68cd796318e..87b46d60e72 100644
--- a/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py
+++ b/erpnext/setup/doctype/currency_exchange/test_currency_exchange.py
@@ -104,11 +104,11 @@ class TestCurrencyExchange(ERPNextTestSuite):
# Exchange rate as on 15th Dec, 2015
self.clear_cache()
exchange_rate = get_exchange_rate("USD", "INR", "2015-12-15", "for_selling")
- self.assertFalse(exchange_rate == 60)
+ self.assertNotEqual(exchange_rate, 60)
self.assertEqual(flt(exchange_rate, 3), 66.999)
exchange_rate = get_exchange_rate("USD", "INR", "2016-01-20", "for_buying")
- self.assertFalse(exchange_rate == 60)
+ self.assertNotEqual(exchange_rate, 60)
self.assertEqual(flt(exchange_rate, 3), 65.1)
def test_exchange_rate_via_exchangerate_host(self, mock_get):
@@ -134,11 +134,11 @@ class TestCurrencyExchange(ERPNextTestSuite):
# Exchange rate as on 15th Dec, 2015
self.clear_cache()
exchange_rate = get_exchange_rate("USD", "INR", "2015-12-15", "for_selling")
- self.assertFalse(exchange_rate == 60)
+ self.assertNotEqual(exchange_rate, 60)
self.assertEqual(flt(exchange_rate, 3), 66.999)
exchange_rate = get_exchange_rate("USD", "INR", "2016-01-20", "for_buying")
- self.assertFalse(exchange_rate == 60)
+ self.assertNotEqual(exchange_rate, 60)
self.assertEqual(flt(exchange_rate, 3), 65.1)
settings = frappe.get_single("Currency Exchange Settings")
@@ -175,5 +175,5 @@ class TestCurrencyExchange(ERPNextTestSuite):
self.clear_cache()
exchange_rate = get_exchange_rate("USD", "INR", "2016-01-30", "for_buying")
- self.assertFalse(exchange_rate == 65)
+ self.assertNotEqual(exchange_rate, 65)
self.assertEqual(flt(exchange_rate, 3), 62.9)
diff --git a/erpnext/setup/doctype/employee/employee.js b/erpnext/setup/doctype/employee/employee.js
index 847922dba33..7f1260fdc6e 100755
--- a/erpnext/setup/doctype/employee/employee.js
+++ b/erpnext/setup/doctype/employee/employee.js
@@ -44,7 +44,7 @@ frappe.ui.form.on("Employee", {
},
refresh: function (frm) {
- frm.fields_dict.date_of_birth.datepicker.update({ maxDate: new Date() });
+ frm.fields_dict.date_of_birth.datepicker?.update({ maxDate: new Date() });
if (!frm.is_new() && !frm.doc.user_id) {
frm.add_custom_button(__("Create User"), () => {
diff --git a/erpnext/setup/doctype/employee/test_employee.py b/erpnext/setup/doctype/employee/test_employee.py
index 801a08ae5b6..c1616aa0d58 100644
--- a/erpnext/setup/doctype/employee/test_employee.py
+++ b/erpnext/setup/doctype/employee/test_employee.py
@@ -28,10 +28,10 @@ class TestEmployee(ERPNextTestSuite):
employee = make_employee("test_emp_user_creation@company.com", company="_Test Company")
employee_doc = frappe.get_doc("Employee", employee)
user = employee_doc.user_id
- self.assertTrue("Employee" in frappe.get_roles(user))
+ self.assertIn("Employee", frappe.get_roles(user))
employee_doc.user_id = ""
employee_doc.save()
- self.assertTrue("Employee" not in frappe.get_roles(user))
+ self.assertNotIn("Employee", frappe.get_roles(user))
def test_employee_user_permission(self):
employee1 = make_employee(
diff --git a/erpnext/setup/setup_wizard/data/country_wise_tax.json b/erpnext/setup/setup_wizard/data/country_wise_tax.json
index a83884d3ac1..87cb7a0c871 100644
--- a/erpnext/setup/setup_wizard/data/country_wise_tax.json
+++ b/erpnext/setup/setup_wizard/data/country_wise_tax.json
@@ -4219,9 +4219,14 @@
},
"Japan": {
- "Japan Tax": {
- "account_name": "CT",
- "tax_rate": 5.00
+ "Japan Tax 10%": {
+ "account_name": "CT 10%",
+ "tax_rate": 10.00,
+ "default": 1
+ },
+ "Japan Tax 8%": {
+ "account_name": "CT 8%",
+ "tax_rate": 8.00
}
},
diff --git a/erpnext/stock/doctype/bin/bin.py b/erpnext/stock/doctype/bin/bin.py
index 6252ec48572..b7393b49cba 100644
--- a/erpnext/stock/doctype/bin/bin.py
+++ b/erpnext/stock/doctype/bin/bin.py
@@ -255,8 +255,9 @@ def update_qty(bin_name, args):
# actual qty is already updated by processing current voucher
actual_qty = bin_details.actual_qty or 0.0
- # actual qty is not up to date in case of backdated transaction
- if future_sle_exists(args):
+ # actual qty is not up to date in case of backdated transactions
+ # or when cancellations are the most recent SLE
+ if future_sle_exists(args) or args.get("is_cancelled"):
actual_qty = get_actual_qty(args.get("item_code"), args.get("warehouse"))
ordered_qty = flt(bin_details.ordered_qty) + flt(args.get("ordered_qty"))
diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.json b/erpnext/stock/doctype/delivery_note/delivery_note.json
index 5482d12579b..6cb8e707449 100644
--- a/erpnext/stock/doctype/delivery_note/delivery_note.json
+++ b/erpnext/stock/doctype/delivery_note/delivery_note.json
@@ -22,8 +22,6 @@
"is_return",
"issue_credit_note",
"return_against",
- "section_break_bxkw",
- "title",
"accounting_dimensions_section",
"cost_center",
"column_break_18",
@@ -170,6 +168,7 @@
"inter_company_reference",
"customer_group",
"territory",
+ "title",
"column_break5",
"excise_page",
"instructions",
@@ -1454,10 +1453,6 @@
"fieldtype": "Section Break",
"label": "Auto Repeat"
},
- {
- "fieldname": "section_break_bxkw",
- "fieldtype": "Section Break"
- },
{
"allow_on_submit": 1,
"fieldname": "title",
@@ -1471,7 +1466,7 @@
"idx": 146,
"is_submittable": 1,
"links": [],
- "modified": "2026-05-01 02:37:31.430649",
+ "modified": "2026-05-28 11:44:37.286743",
"modified_by": "Administrator",
"module": "Stock",
"name": "Delivery Note",
diff --git a/erpnext/stock/doctype/delivery_note/test_delivery_note.py b/erpnext/stock/doctype/delivery_note/test_delivery_note.py
index c0dd01c2433..5b3a9e1861a 100644
--- a/erpnext/stock/doctype/delivery_note/test_delivery_note.py
+++ b/erpnext/stock/doctype/delivery_note/test_delivery_note.py
@@ -307,7 +307,7 @@ class TestDeliveryNote(ERPNextTestSuite):
returned_serial_nos1 = get_serial_nos_from_bundle(dn1.items[0].serial_and_batch_bundle)
for serial_no in returned_serial_nos1:
- self.assertTrue(serial_no in serial_nos)
+ self.assertIn(serial_no, serial_nos)
dn2 = make_sales_return(dn.name)
@@ -318,8 +318,8 @@ class TestDeliveryNote(ERPNextTestSuite):
returned_serial_nos2 = get_serial_nos_from_bundle(dn2.items[0].serial_and_batch_bundle)
for serial_no in returned_serial_nos2:
- self.assertTrue(serial_no in serial_nos)
- self.assertFalse(serial_no in returned_serial_nos1)
+ self.assertIn(serial_no, serial_nos)
+ self.assertNotIn(serial_no, returned_serial_nos1)
def test_sales_return_for_non_bundled_items_partial(self):
company = frappe.db.get_value("Warehouse", "Stores - TCP1", "company")
@@ -1557,7 +1557,7 @@ class TestDeliveryNote(ERPNextTestSuite):
return_dn = make_return_doc(dn.doctype, dn.name)
return_dn.save().submit()
- self.assertTrue(return_dn.docstatus == 1)
+ self.assertEqual(return_dn.docstatus, 1)
def test_reserve_qty_on_sales_return(self):
frappe.db.set_single_value("Selling Settings", "dont_reserve_sales_order_qty_on_sales_return", 0)
@@ -2772,7 +2772,7 @@ class TestDeliveryNote(ERPNextTestSuite):
doc = frappe.get_doc("Serial and Batch Bundle", row.serial_and_batch_bundle)
for entry in doc.entries:
if entry.serial_no:
- self.assertTrue(entry.serial_no in serial_batch_map[row.item_code].serial_nos)
+ self.assertIn(entry.serial_no, serial_batch_map[row.item_code].serial_nos)
self.assertEqual(
entry.incoming_rate,
serial_batch_map[row.item_code].serial_no_valuation[entry.serial_no],
@@ -2782,7 +2782,7 @@ class TestDeliveryNote(ERPNextTestSuite):
elif entry.batch_no:
serial_batch_map[row.item_code].batches[entry.batch_no] += entry.qty
- self.assertTrue(entry.batch_no in serial_batch_map[row.item_code].batches)
+ self.assertIn(entry.batch_no, serial_batch_map[row.item_code].batches)
self.assertEqual(entry.qty, 2.0)
self.assertEqual(
entry.incoming_rate,
@@ -2798,7 +2798,7 @@ class TestDeliveryNote(ERPNextTestSuite):
doc = frappe.get_doc("Serial and Batch Bundle", row.serial_and_batch_bundle)
for entry in doc.entries:
if entry.serial_no:
- self.assertTrue(entry.serial_no in serial_batch_map[row.item_code].serial_nos)
+ self.assertIn(entry.serial_no, serial_batch_map[row.item_code].serial_nos)
self.assertEqual(
entry.incoming_rate,
serial_batch_map[row.item_code].serial_no_valuation[entry.serial_no],
@@ -2810,7 +2810,7 @@ class TestDeliveryNote(ERPNextTestSuite):
serial_batch_map[row.item_code].batches[entry.batch_no] += entry.qty
self.assertEqual(serial_batch_map[row.item_code].batches[entry.batch_no], 0.0)
- self.assertTrue(entry.batch_no in serial_batch_map[row.item_code].batches)
+ self.assertIn(entry.batch_no, serial_batch_map[row.item_code].batches)
self.assertEqual(entry.qty, 3.0)
self.assertEqual(
diff --git a/erpnext/stock/doctype/item/item.js b/erpnext/stock/doctype/item/item.js
index a37c0925b71..2261cb7733f 100644
--- a/erpnext/stock/doctype/item/item.js
+++ b/erpnext/stock/doctype/item/item.js
@@ -935,11 +935,17 @@ $.extend(erpnext.item, {
if (!row.disabled) {
if (row.numeric_values) {
- fieldtype = "Float";
+ const all_are_int =
+ flt(row.from_range) === cint(row.from_range) &&
+ flt(row.to_range) === cint(row.to_range) &&
+ flt(row.increment) === cint(row.increment);
+ fieldtype = all_are_int ? "Int" : "Float";
+ const df = { fieldtype };
+ const options = all_are_int ? { inline: 1 } : { always_show_decimals: true, inline: 1 };
desc = __("Min Value: {0}, Max Value: {1}, in Increments of: {2}", [
- frappe.format(row.from_range, { fieldtype: "Float" }, { always_show_decimals: true }),
- frappe.format(row.to_range, { fieldtype: "Float" }, { always_show_decimals: true }),
- frappe.format(row.increment, { fieldtype: "Float" }, { always_show_decimals: true }),
+ frappe.format(row.from_range, df, options),
+ frappe.format(row.to_range, df, options),
+ frappe.format(row.increment, df, options),
]);
} else {
fieldtype = "Data";
diff --git a/erpnext/stock/doctype/item/item.json b/erpnext/stock/doctype/item/item.json
index a5e7a2cc551..8b4cef2b75c 100644
--- a/erpnext/stock/doctype/item/item.json
+++ b/erpnext/stock/doctype/item/item.json
@@ -236,7 +236,7 @@
"description": "ERPNext will make a stock ledger entry for each transaction of this item. Keep unchecked for non-stock or service items.",
"fieldname": "is_stock_item",
"fieldtype": "Check",
- "in_list_view": 1,
+ "in_list_view": 0,
"label": "Maintain Stock",
"oldfieldname": "is_stock_item",
"oldfieldtype": "Select",
@@ -279,7 +279,8 @@
"fieldname": "is_fixed_asset",
"fieldtype": "Check",
"label": "Is Fixed Asset",
- "read_only_depends_on": "eval:doc.is_stock_item"
+ "read_only_depends_on": "eval:doc.is_stock_item",
+ "in_list_view": 1
},
{
"allow_in_quick_entry": 1,
@@ -592,7 +593,7 @@
"oldfieldtype": "Currency"
},
{
- "description": "Minimum stock level to maintain as a buffer. Used to calculate recommended reorder level: Reorder Level = Safety Stock + (Average Daily Consumption \u00d7 Lead Time).",
+ "description": "Minimum stock level to maintain as a buffer. Used to calculate recommended reorder level: Reorder Level = Safety Stock + (Average Daily Consumption × Lead Time).",
"fieldname": "safety_stock",
"fieldtype": "Float",
"label": "Safety Stock",
@@ -696,7 +697,8 @@
"fieldname": "is_sales_item",
"fieldtype": "Check",
"label": "Allow Sales",
- "show_description_on_click": 1
+ "show_description_on_click": 1,
+ "in_list_view": 1
},
{
"fieldname": "column_break3",
@@ -1069,7 +1071,7 @@
"image_field": "image",
"links": [],
"make_attachments_public": 1,
- "modified": "2026-05-26 10:18:46.862670",
+ "modified": "2026-05-27 10:18:46.862670",
"modified_by": "Administrator",
"module": "Stock",
"name": "Item",
diff --git a/erpnext/stock/doctype/item/item_list.js b/erpnext/stock/doctype/item/item_list.js
index e8d886a9c24..34e0fae07d0 100644
--- a/erpnext/stock/doctype/item/item_list.js
+++ b/erpnext/stock/doctype/item/item_list.js
@@ -8,9 +8,46 @@ frappe.listview_settings["Item"] = {
"end_of_life",
"disabled",
"variant_of",
+ "is_stock_item",
+ "is_fixed_asset",
+ "is_sales_item",
+ "is_purchase_item",
],
filters: [["disabled", "=", "0"]],
+ formatters: {
+ is_fixed_asset: function (value, df, doc) {
+ if (doc.is_fixed_asset) return __("Fixed Asset");
+ if (doc.is_stock_item) return __("Stock");
+ return __("Service");
+ },
+
+ is_sales_item: function (value, df, doc) {
+ const sales = cint(doc.is_sales_item);
+ const purchases = cint(doc.is_purchase_item);
+ if (sales && purchases) return __("Sales & Purchase");
+ if (sales) return __("Sales");
+ if (purchases) return __("Purchase");
+ return "—";
+ },
+ },
+
+ onload: function (listview) {
+ listview.columns = listview.columns.map((col) => {
+ if (!col.df) return col;
+ const renames = {
+ is_fixed_asset: __("Item Type"),
+ is_sales_item: __("Purpose"),
+ stock_uom: __("UOM"),
+ };
+ if (col.df.fieldname in renames) {
+ return { ...col, df: { ...col.df, label: renames[col.df.fieldname] } };
+ }
+ return col;
+ });
+ listview.render_header(true);
+ },
+
get_indicator: function (doc) {
if (doc.disabled) {
return [__("Disabled"), "grey", "disabled,=,Yes"];
diff --git a/erpnext/stock/doctype/item/test_item.py b/erpnext/stock/doctype/item/test_item.py
index 0725dacc18b..5dd4da05768 100644
--- a/erpnext/stock/doctype/item/test_item.py
+++ b/erpnext/stock/doctype/item/test_item.py
@@ -391,8 +391,9 @@ class TestItem(ERPNextTestSuite):
},
)
- self.assertTrue(
- "belong to company" in str(ve.exception).lower(),
+ self.assertIn(
+ "belong to company",
+ str(ve.exception).lower(),
msg="Mismatching company entities in item defaults should not be allowed.",
)
@@ -676,7 +677,7 @@ class TestItem(ERPNextTestSuite):
self.assertIsInstance(timestamp, int)
self.assertTrue(one_year_ago <= timestamp <= now)
self.assertIsInstance(count, int)
- self.assertTrue(count >= 0)
+ self.assertGreaterEqual(count, 0)
def test_index_creation(self):
"check if index is getting created in db"
@@ -849,7 +850,7 @@ class TestItem(ERPNextTestSuite):
for _row in range(3):
item.append("customer_items", {"ref_code": frappe.generate_hash("", 120)})
item.save()
- self.assertTrue(len(item.customer_code) > 140)
+ self.assertGreater(len(item.customer_code), 140)
def test_update_is_stock_item(self):
# Step - 1: Create an Item with Maintain Stock enabled
@@ -890,7 +891,7 @@ class TestItem(ERPNextTestSuite):
data = item_query("Item", "Test Item", "", 0, 20, filters={"item_name": "Test Item"}, as_dict=True)
self.assertEqual(data[0].name, item.name)
self.assertEqual(data[0].item_name, item.item_name)
- self.assertTrue("description" not in data[0])
+ self.assertNotIn("description", data[0])
make_property_setter(
"Item", None, "search_fields", "item_name, description", "Data", for_doctype="Doctype"
@@ -899,7 +900,7 @@ class TestItem(ERPNextTestSuite):
self.assertEqual(data[0].name, item.name)
self.assertEqual(data[0].item_name, item.item_name)
self.assertEqual(data[0].description, item.description)
- self.assertTrue("description" in data[0])
+ self.assertIn("description", data[0])
def test_group_warehouse_for_reorder_item(self):
from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse
@@ -956,8 +957,9 @@ class TestItem(ERPNextTestSuite):
}
).insert()
- self.assertTrue(
- "must be same as in Template" in str(ve.exception),
+ self.assertIn(
+ "must be same as in Template",
+ str(ve.exception),
msg="Different Variant UOM should not be allowed when `allow_different_uom` is disabled.",
)
diff --git a/erpnext/stock/doctype/item_price/test_item_price.py b/erpnext/stock/doctype/item_price/test_item_price.py
index 7a1400863bf..d98339bb0c7 100644
--- a/erpnext/stock/doctype/item_price/test_item_price.py
+++ b/erpnext/stock/doctype/item_price/test_item_price.py
@@ -54,7 +54,7 @@ class TestItemPrice(ERPNextTestSuite):
doc_fields = frappe.copy_doc(self.globalTestRecords["Item Price"][1]).__dict__.keys()
for test_field in test_fields_existance:
- self.assertTrue(test_field in doc_fields)
+ self.assertIn(test_field, doc_fields)
def test_dates_validation_error(self):
doc = frappe.copy_doc(self.globalTestRecords["Item Price"][1])
diff --git a/erpnext/stock/doctype/material_request/test_material_request.py b/erpnext/stock/doctype/material_request/test_material_request.py
index b1d20e698e0..180ab3ae3bb 100644
--- a/erpnext/stock/doctype/material_request/test_material_request.py
+++ b/erpnext/stock/doctype/material_request/test_material_request.py
@@ -917,7 +917,7 @@ class TestMaterialRequest(ERPNextTestSuite):
for company, _mr_list in comapnywise_mr_list.items():
emails = get_email_list(company)
- self.assertTrue(comapnywise_users[company] in emails)
+ self.assertIn(comapnywise_users[company], emails)
for perm in permissions:
perm.delete()
diff --git a/erpnext/stock/doctype/pick_list/test_pick_list.py b/erpnext/stock/doctype/pick_list/test_pick_list.py
index 4e424aa7585..d6f15dffddc 100644
--- a/erpnext/stock/doctype/pick_list/test_pick_list.py
+++ b/erpnext/stock/doctype/pick_list/test_pick_list.py
@@ -876,7 +876,7 @@ class TestPickList(ERPNextTestSuite):
)
for d in data:
- self.assertTrue(d.batch_no in ["PICKLT-000001", "PICKLT-000002"])
+ self.assertIn(d.batch_no, ["PICKLT-000001", "PICKLT-000002"])
if d.batch_no == "PICKLT-000001":
self.assertEqual(d.qty, 5.0 * -1)
elif d.batch_no == "PICKLT-000002":
@@ -927,7 +927,7 @@ class TestPickList(ERPNextTestSuite):
self.assertEqual(len(data), 10)
for d in data:
- self.assertTrue(d.serial_no not in picked_serial_nos)
+ self.assertNotIn(d.serial_no, picked_serial_nos)
pl1.cancel()
pl.cancel()
@@ -1312,7 +1312,7 @@ class TestPickList(ERPNextTestSuite):
self.assertEqual(len(new_serial_nos), 110)
for sn in serial_nos:
- self.assertFalse(sn in new_serial_nos)
+ self.assertNotIn(sn, new_serial_nos)
pl1.submit()
@@ -1766,5 +1766,5 @@ class TestPickList(ERPNextTestSuite):
else:
self.assertEqual(doc.shipping_address_name, customer_shipping_address_1.name)
item_codes = [item.item_code for item in doc.items]
- self.assertTrue(item1 in item_codes)
- self.assertTrue(item2 in item_codes)
+ self.assertIn(item1, item_codes)
+ self.assertIn(item2, item_codes)
diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.json b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
index c891b6df2eb..ecb44ee544f 100755
--- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
+++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.json
@@ -26,8 +26,6 @@
"apply_putaway_rule",
"is_return",
"return_against",
- "section_break_zwvg",
- "title",
"accounting_dimensions_section",
"cost_center",
"dimension_col_break",
@@ -151,6 +149,7 @@
"instructions",
"is_internal_supplier",
"represents_company",
+ "title",
"inter_company_reference",
"column_break_131",
"remarks",
@@ -1287,10 +1286,6 @@
{
"fieldname": "column_break_ugyv",
"fieldtype": "Column Break"
- },
- {
- "fieldname": "section_break_zwvg",
- "fieldtype": "Section Break"
}
],
"grid_page_length": 50,
@@ -1298,7 +1293,7 @@
"idx": 261,
"is_submittable": 1,
"links": [],
- "modified": "2026-05-04 10:19:44.638858",
+ "modified": "2026-05-28 12:38:05.907578",
"modified_by": "Administrator",
"module": "Stock",
"name": "Purchase Receipt",
diff --git a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py
index ad6d95c7976..0a0759b07ef 100644
--- a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py
+++ b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py
@@ -57,13 +57,13 @@ class TestPurchaseReceipt(ERPNextTestSuite):
)
mr.insert()
mr.submit()
- frappe.db.set_value("Item", item.name, "over_delivery_receipt_allowance", 200)
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 200)
po = make_purchase_order(mr.name)
po.supplier = "_Test Supplier"
po.items[0].qty = 300
po.save()
po.submit()
- frappe.db.set_value("Item", item.name, "over_delivery_receipt_allowance", 20)
+ frappe.db.set_single_value("Buying Settings", "over_order_allowance", 0)
pr = make_purchase_receipt(qty=300, item_code=item.name, do_not_save=True)
pr.save()
pr.submit()
@@ -1145,7 +1145,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
new_cost = frappe.db.get_value("Serial and Batch Bundle", new_inward_sabb[0], "total_amount")
self.assertEqual(new_cost, original_cost + 100)
- self.assertTrue(new_inward_sabb[0] == inward_sabb[0])
+ self.assertEqual(new_inward_sabb[0], inward_sabb[0])
def test_stock_transfer_from_purchase_receipt_with_valuation(self):
from erpnext.stock.doctype.delivery_note.mapper import make_inter_company_purchase_receipt
@@ -1797,7 +1797,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
return_pi = make_return_doc(pi.doctype, pi.name)
return_pi.save().submit()
- self.assertTrue(return_pi.docstatus == 1)
+ self.assertEqual(return_pi.docstatus, 1)
def test_disable_last_purchase_rate(self):
from erpnext.stock.get_item_details import ItemDetailsCtx, get_item_details
@@ -2504,7 +2504,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
sbb_doc = frappe.get_doc("Serial and Batch Bundle", pr.items[0].serial_and_batch_bundle)
for row in sbb_doc.entries:
- self.assertTrue(row.serial_no in serial_nos)
+ self.assertIn(row.serial_no, serial_nos)
serial_nos.remove("SNU-TSFISI-000015")
@@ -2537,7 +2537,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
serial_no_status = frappe.db.get_value("Serial No", "SNU-TSFISI-000015", "status")
- self.assertTrue(serial_no_status != "Active")
+ self.assertNotEqual(serial_no_status, "Active")
dn = create_delivery_note(
item_code=item_code,
@@ -2550,11 +2550,11 @@ class TestPurchaseReceipt(ERPNextTestSuite):
self.assertEqual(dn.items[0].qty, 4)
doc = frappe.get_doc("Serial and Batch Bundle", dn.items[0].serial_and_batch_bundle)
for row in doc.entries:
- self.assertTrue(row.serial_no in new_serial_nos)
+ self.assertIn(row.serial_no, new_serial_nos)
for sn in new_serial_nos:
serial_no_status = frappe.db.get_value("Serial No", sn, "status")
- self.assertTrue(serial_no_status != "Active")
+ self.assertNotEqual(serial_no_status, "Active")
frappe.db.set_single_value(
"Stock Settings", "do_not_update_serial_batch_on_creation_of_auto_bundle", 1
@@ -2965,7 +2965,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
serial_no_details = frappe.db.get_value(
"Serial No", sn, ["status", "warehouse"], as_dict=1
)
- self.assertTrue(serial_no_details.status == "Active")
+ self.assertEqual(serial_no_details.status, "Active")
self.assertEqual(serial_no_details.warehouse, "Work In Progress - TCP1")
inter_transfer_dn_return = make_return_doc("Delivery Note", inter_transfer_dn.name)
@@ -3104,7 +3104,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
serial_no_details = frappe.db.get_value(
"Serial No", sn, ["status", "warehouse"], as_dict=1
)
- self.assertTrue(serial_no_details.status == "Active")
+ self.assertEqual(serial_no_details.status, "Active")
self.assertEqual(serial_no_details.warehouse, "Work In Progress - TCP1")
inter_transfer_dn_return = make_return_doc("Delivery Note", inter_transfer_dn.name)
@@ -4236,7 +4236,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
serial_no = get_serial_nos_from_bundle(pr.items[0].serial_and_batch_bundle)[0]
status = frappe.db.get_value("Serial No", serial_no, "status")
- self.assertTrue(status == "Active")
+ self.assertEqual(status, "Active")
make_stock_entry(
item_code=item_code,
@@ -4247,7 +4247,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
)
status = frappe.db.get_value("Serial No", serial_no, "status")
- self.assertFalse(status == "Active")
+ self.assertNotEqual(status, "Active")
pr = make_purchase_receipt(
item_code=item_code, qty=1, rate=100, use_serial_batch_fields=1, do_not_submit=1
@@ -4759,8 +4759,8 @@ class TestPurchaseReceipt(ERPNextTestSuite):
gl_entries = get_gl_entries(pr.doctype, pr.name)
accounts = [d.account for d in gl_entries]
- self.assertTrue(expense_account in accounts)
- self.assertTrue(expense_contra_account in accounts)
+ self.assertIn(expense_account, accounts)
+ self.assertIn(expense_contra_account, accounts)
for row in gl_entries:
if row.account == expense_account:
@@ -4798,7 +4798,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
gl_entries = get_gl_entries(se.doctype, se.name)
for row in gl_entries:
- self.assertTrue(row.account in ["Stock In Hand - TCP1", "Stock Adjustment - TCP1"])
+ self.assertIn(row.account, ["Stock In Hand - TCP1", "Stock Adjustment - TCP1"])
se.items[0].db_set("expense_account", account)
se.reload()
@@ -4820,7 +4820,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
gl_entries = get_gl_entries(se.doctype, se.name)
for row in gl_entries:
- self.assertTrue(row.account in ["Stock In Hand - TCP1", account])
+ self.assertIn(row.account, ["Stock In Hand - TCP1", account])
def test_lcv_for_repack_entry(self):
from erpnext.stock.doctype.landed_cost_voucher.test_landed_cost_voucher import (
@@ -5056,7 +5056,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
doc.db_set("use_batchwise_valuation", 0)
doc.reload()
- self.assertTrue(doc.use_batchwise_valuation == 0)
+ self.assertEqual(doc.use_batchwise_valuation, 0)
doc = frappe.new_doc("Batch")
doc.update(
@@ -5066,7 +5066,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
}
).insert()
- self.assertTrue(doc.use_batchwise_valuation == 1)
+ self.assertEqual(doc.use_batchwise_valuation, 1)
warehouse = "_Test Warehouse - _TC"
make_stock_entry(
@@ -5458,7 +5458,7 @@ class TestPurchaseReceipt(ERPNextTestSuite):
self.assertEqual(pr.conversion_rate, 80)
gl_entries = get_gl_entries(pr.doctype, pr.name)
- self.assertTrue(len(gl_entries) == 2)
+ self.assertEqual(len(gl_entries), 2)
for row in gl_entries:
amount = row.credit or row.debit
self.assertEqual(amount, 8000.0)
@@ -5471,13 +5471,13 @@ class TestPurchaseReceipt(ERPNextTestSuite):
pi.submit()
gl_entries = get_gl_entries(pi.doctype, pi.name)
- self.assertTrue(len(gl_entries) == 2)
+ self.assertEqual(len(gl_entries), 2)
accounts = ["USD Party Account Creditors - TCP1", "Stock Received But Not Billed - TCP1"]
for row in gl_entries:
amount = row.credit or row.debit
self.assertEqual(amount, 9000.0)
- self.assertTrue(row.account in accounts)
+ self.assertIn(row.account, accounts)
frappe.db.set_single_value(
"Buying Settings", "set_landed_cost_based_on_purchase_invoice_rate", original_value
diff --git a/erpnext/stock/doctype/quality_inspection/quality_inspection.py b/erpnext/stock/doctype/quality_inspection/quality_inspection.py
index 4df99dd21a6..dac3ca21038 100644
--- a/erpnext/stock/doctype/quality_inspection/quality_inspection.py
+++ b/erpnext/stock/doctype/quality_inspection/quality_inspection.py
@@ -8,7 +8,7 @@ import frappe
from frappe import _
from frappe.model.document import Document
from frappe.model.mapper import get_mapped_doc
-from frappe.utils import cint, cstr, flt, get_link_to_form, get_number_format_info
+from frappe.utils import cint, flt, get_link_to_form, get_number_format_info
from erpnext.stock.doctype.quality_inspection_template.quality_inspection_template import (
get_template_details,
diff --git a/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py b/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py
index e0ddd6faa8e..82b2dbe6e45 100644
--- a/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py
+++ b/erpnext/stock/doctype/repost_item_valuation/test_repost_item_valuation.py
@@ -100,14 +100,14 @@ class TestRepostItemValuation(ERPNextTestSuite, StockTestMixin):
repost_doc.db_update_all()
logs = frappe.get_all("Repost Item Valuation", filters={"status": "Skipped"})
- self.assertTrue(len(logs) > 10)
+ self.assertGreater(len(logs), 10)
from erpnext.stock.doctype.repost_item_valuation.repost_item_valuation import RepostItemValuation
RepostItemValuation.clear_old_logs(days=1)
logs = frappe.get_all("Repost Item Valuation", filters={"status": "Skipped"})
- self.assertTrue(len(logs) == 0)
+ self.assertEqual(len(logs), 0)
def test_create_item_wise_repost_item_valuation_entries(self):
pr = make_purchase_receipt(
@@ -379,13 +379,13 @@ class TestRepostItemValuation(ERPNextTestSuite, StockTestMixin):
get_multiple_items=True,
)
- self.assertTrue(pr.docstatus == 1)
+ self.assertEqual(pr.docstatus, 1)
self.assertFalse(frappe.db.exists("Repost Item Valuation", {"voucher_no": pr.name}))
pr.load_from_db()
pr.cancel()
- self.assertTrue(pr.docstatus == 2)
+ self.assertEqual(pr.docstatus, 2)
self.assertTrue(frappe.db.exists("Repost Item Valuation", {"voucher_no": pr.name}))
def test_repost_item_valuation_for_closing_stock_balance(self):
diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py
index 43f67c64eb0..daf978c8c6c 100644
--- a/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py
+++ b/erpnext/stock/doctype/serial_and_batch_bundle/serial_and_batch_bundle.py
@@ -2268,25 +2268,6 @@ def update_serial_batch_no_ledgers(bundle, entries, child_row, parent_doc, wareh
return doc
-@frappe.whitelist()
-def update_serial_or_batch(bundle_id: str, serial_no: str | None = None, batch_no: str | None = None):
- if batch_no and not serial_no:
- if qty := frappe.db.get_value(
- "Serial and Batch Entry", {"parent": bundle_id, "batch_no": batch_no}, "qty"
- ):
- frappe.db.set_value(
- "Serial and Batch Entry", {"parent": bundle_id, "batch_no": batch_no}, "qty", qty + 1
- )
- return
-
- doc = frappe.get_cached_doc("Serial and Batch Bundle", bundle_id)
- if not serial_no and not batch_no:
- return
-
- doc.append("entries", {"serial_no": serial_no, "batch_no": batch_no, "qty": 1})
- doc.save(ignore_permissions=True)
-
-
def get_serial_and_batch_ledger(**kwargs):
kwargs = frappe._dict(kwargs)
diff --git a/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py b/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py
index 37d4a45f954..9939df10835 100644
--- a/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py
+++ b/erpnext/stock/doctype/serial_and_batch_bundle/test_serial_and_batch_bundle.py
@@ -1070,11 +1070,11 @@ class TestSerialandBatchBundle(ERPNextTestSuite):
se.remove(se.items[1])
se.save()
- self.assertTrue(len(se.items) == 1)
+ self.assertEqual(len(se.items), 1)
se.submit()
bundle_doc.reload()
- self.assertTrue(bundle_doc.docstatus == 0)
+ self.assertEqual(bundle_doc.docstatus, 0)
self.assertRaises(frappe.ValidationError, bundle_doc.submit)
def test_reference_voucher_on_cancel(self):
diff --git a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py
index eff86d41c55..9ac9280f056 100644
--- a/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py
+++ b/erpnext/stock/doctype/stock_closing_entry/stock_closing_entry.py
@@ -137,8 +137,7 @@ class StockClosingEntry(Document):
attached_file = frappe.get_doc("File", attachment.name)
data = gzip.decompress(attached_file.get_content())
- if data := json.loads(data.decode("utf-8")):
- data = data
+ data = json.loads(data.decode("utf-8"))
return parse_json(data)
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py
index ed09cf78b31..6f6bac58b0e 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry.py
+++ b/erpnext/stock/doctype/stock_entry/stock_entry.py
@@ -6,20 +6,15 @@ import json
from collections import defaultdict
import frappe
-from frappe import _, bold
+from frappe import _
from frappe.model.document import Document
from frappe.model.mapper import get_mapped_doc
-from frappe.query_builder import DocType
-from frappe.query_builder.functions import Max, Sum
+from frappe.query_builder.functions import Sum
from frappe.utils import (
cint,
- comma_or,
cstr,
flt,
- format_time,
- formatdate,
get_link_to_form,
- getdate,
nowdate,
)
@@ -27,15 +22,11 @@ import erpnext
from erpnext.buying.utils import check_on_hold_or_closed_status
from erpnext.controllers.taxes_and_totals import init_landed_taxes_and_totals
from erpnext.manufacturing.doctype.bom.bom import (
- add_additional_cost,
get_op_cost_from_sub_assemblies,
- get_secondary_items_from_sub_assemblies,
validate_bom_no,
)
from erpnext.setup.doctype.brand.brand import get_brand_defaults
from erpnext.setup.doctype.item_group.item_group import get_item_group_defaults
-from erpnext.stock.doctype.item.item import get_item_defaults
-from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
from erpnext.stock.get_item_details import (
ItemDetailsCtx,
get_barcode_data,
@@ -43,12 +34,6 @@ from erpnext.stock.get_item_details import (
get_conversion_factor,
get_default_cost_center,
)
-from erpnext.stock.serial_batch_bundle import (
- SerialBatchCreation,
- get_batch_nos,
- get_empty_batches_based_work_order,
- get_serial_or_batch_items,
-)
from erpnext.stock.stock_ledger import get_previous_sle, get_valuation_rate
from erpnext.stock.utils import get_incoming_rate
@@ -570,7 +555,7 @@ class StockEntry(StockController, SubcontractingInwardController):
if self.bom_no:
d.basic_rate *= frappe.get_value("BOM", self.bom_no, "cost_allocation_per") / 100
- elif d.type and d.bom_secondary_item:
+ elif d.secondary_item_type and d.bom_secondary_item:
cost_allocation_per = frappe.get_value(
"BOM Secondary Item", d.bom_secondary_item, "cost_allocation_per"
)
@@ -691,7 +676,7 @@ class StockEntry(StockController, SubcontractingInwardController):
def _validate_no_raw_materials_in_manufacture_entry(self, settings):
for item in self.items:
- if not item.is_finished_item and not item.type and not item.is_legacy_scrap_item:
+ if not item.is_finished_item and not item.secondary_item_type and not item.is_legacy_scrap_item:
label = frappe.get_meta(settings.doctype).get_label("get_rm_cost_from_consumption_entry")
frappe.throw(
_(
@@ -833,7 +818,7 @@ class StockEntry(StockController, SubcontractingInwardController):
d.is_finished_item = 1
else:
d.is_finished_item = 0
- d.type = ""
+ d.secondary_item_type = ""
def get_finished_item(self):
finished_item = None
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py b/erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py
index a4b2671d484..767afab2fb7 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py
+++ b/erpnext/stock/doctype/stock_entry/stock_entry_handler/disassemble.py
@@ -135,7 +135,7 @@ class DisassembleStockEntry(BaseStockEntry):
"s_warehouse": s_warehouse,
"t_warehouse": t_warehouse,
"is_finished_item": source_row.is_finished_item,
- "type": source_row.type,
+ "secondary_item_type": source_row.secondary_item_type,
"is_legacy_scrap_item": source_row.is_legacy_scrap_item,
"bom_secondary_item": source_row.bom_secondary_item,
"bom_no": source_row.bom_no,
@@ -185,7 +185,7 @@ class DisassembleStockEntry(BaseStockEntry):
"conversion_factor",
"item_group",
"description",
- "type",
+ "secondary_item_type",
]
for field in fields:
item_args[field] = row.get(field)
@@ -235,7 +235,7 @@ class DisassembleStockEntry(BaseStockEntry):
SED.basic_rate,
SED.conversion_factor,
SED.is_finished_item,
- SED.type,
+ SED.secondary_item_type,
SED.is_legacy_scrap_item,
SED.bom_secondary_item,
SED.batch_no,
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py b/erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py
index 231664f954d..6ce37f7c4ef 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py
+++ b/erpnext/stock/doctype/stock_entry/stock_entry_handler/manufacturing.py
@@ -7,10 +7,13 @@ from frappe.query_builder.functions import Sum
from frappe.utils import ceil, cint, flt, get_link_to_form
from erpnext.manufacturing.doctype.bom.bom import add_additional_cost
+from erpnext.stock.doctype.serial_no.serial_no import get_serial_nos
from erpnext.stock.serial_batch_bundle import (
SerialBatchCreation,
get_batch_nos,
+ get_batches_from_bundle,
get_empty_batches_based_work_order,
+ get_serial_nos_from_bundle,
)
from .base import BaseStockEntry
@@ -25,7 +28,7 @@ class BaseManufactureStockEntry(BaseStockEntry):
and self.doc.from_warehouse
and not row.is_finished_item
and not row.is_legacy_scrap_item
- and not row.type
+ and not row.secondary_item_type
):
row.s_warehouse = self.doc.from_warehouse
row.t_warehouse = None
@@ -33,7 +36,7 @@ class BaseManufactureStockEntry(BaseStockEntry):
elif (
not row.t_warehouse
and self.doc.to_warehouse
- and (row.is_finished_item or row.is_legacy_scrap_item or row.type)
+ and (row.is_finished_item or row.is_legacy_scrap_item or row.secondary_item_type)
):
row.t_warehouse = self.doc.to_warehouse
row.s_warehouse = None
@@ -83,14 +86,19 @@ class BaseManufactureStockEntry(BaseStockEntry):
for row in secondary_items:
item_args = self.get_item_dict(row)
item_args["is_legacy_scrap_item"] = bool(row.get("is_legacy"))
- item_args["type"] = row.type
+ item_args["secondary_item_type"] = row.secondary_item_type
item_args["bom_secondary_item"] = row.name
- if row.type == "Scrap" and self.wo_doc and self.wo_doc.get("scrap_warehouse"):
+ if row.secondary_item_type == "Scrap" and self.wo_doc and self.wo_doc.get("scrap_warehouse"):
item_args["t_warehouse"] = self.wo_doc.scrap_warehouse
else:
item_args["t_warehouse"] = self.doc.to_warehouse
+ if not item_args.get("t_warehouse"):
+ item_args["t_warehouse"] = frappe.get_cached_value(
+ "BOM", self.doc.bom_no, "default_target_warehouse"
+ )
+
row.qty = row.qty * self.doc.fg_completed_qty
if row.get("process_loss_per"):
row.qty -= flt(
@@ -142,7 +150,8 @@ class BaseManufactureStockEntry(BaseStockEntry):
"conversion_factor": 1,
"uom": item_details.stock_uom,
"qty": ceil_qty_if_uom_has_whole_number(fg_item_qty, item_details.stock_uom),
- "t_warehouse": self.doc.to_warehouse,
+ "t_warehouse": self.doc.to_warehouse
+ or frappe.get_cached_value("BOM", self.doc.bom_no, "default_target_warehouse"),
"s_warehouse": None,
"is_finished_item": 1,
}
@@ -165,25 +174,30 @@ class BaseManufactureStockEntry(BaseStockEntry):
else:
self.doc.append("items", item_details)
- def set_serial_nos_for_finished_good(self, item_details):
+ def set_serial_nos_for_finished_good(self, item_details, existing_row=None):
serial_nos = self.get_available_serial_nos_for_fg(item_details.item_code)
- if serial_nos:
- row = frappe._dict({"serial_nos": serial_nos[0 : cint(item_details.qty)]})
+ if not serial_nos:
+ return
- _id = create_serial_and_batch_bundle(
- self.doc,
- row,
- frappe._dict(
- {
- "item_code": item_details.item_code,
- "warehouse": item_details.t_warehouse,
- }
- ),
- )
+ row = frappe._dict({"serial_nos": serial_nos[0 : cint(item_details.qty)]})
+ _id = create_serial_and_batch_bundle(
+ self.doc,
+ row,
+ frappe._dict(
+ {
+ "item_code": item_details.item_code,
+ "warehouse": item_details.t_warehouse,
+ }
+ ),
+ )
+
+ if existing_row:
+ existing_row.serial_and_batch_bundle = _id
+ existing_row.use_serial_batch_fields = 0
+ else:
item_details.serial_and_batch_bundle = _id
item_details.use_serial_batch_fields = 0
-
self.doc.append("items", item_details)
def get_available_serial_nos_for_fg(self, item_code) -> list[str]:
@@ -199,22 +213,23 @@ class BaseManufactureStockEntry(BaseStockEntry):
order_by="creation asc",
)
- def set_batchwise_finished_goods(self, item_details):
- batches = get_empty_batches_based_work_order(self.doc.work_order, self.doc.pro_doc.production_item)
+ def set_batchwise_finished_goods(self, item_details, existing_row=None):
+ batches = get_empty_batches_based_work_order(self.doc.work_order, self.wo_doc.production_item)
if not batches:
- self.doc.append("items", item_details)
+ if not existing_row:
+ self.doc.append("items", item_details)
else:
- self.add_batchwise_finished_good(batches, item_details)
+ self.add_batchwise_finished_good(batches, item_details, existing_row=existing_row)
- def add_batchwise_finished_good(self, batches, item_details):
+ def add_batchwise_finished_good(self, batches, item_details, existing_row=None):
qty = flt(self.doc.fg_completed_qty)
row = frappe._dict({"batches_to_be_consume": defaultdict(float)})
self.update_batches_to_be_consume(batches, row, qty)
if row.batches_to_be_consume:
- self._link_fg_bundle_and_append(item_details, row)
+ self._link_fg_bundle_and_append(item_details, row, existing_row=existing_row)
- def _link_fg_bundle_and_append(self, item_details, row):
+ def _link_fg_bundle_and_append(self, item_details, row, existing_row=None):
_id = create_serial_and_batch_bundle(
self.doc,
row,
@@ -222,8 +237,13 @@ class BaseManufactureStockEntry(BaseStockEntry):
{"item_code": self.wo_doc.production_item, "warehouse": item_details.get("t_warehouse")}
),
)
- item_details["serial_and_batch_bundle"] = _id
- self.doc.append("items", item_details)
+ if existing_row:
+ existing_row.serial_and_batch_bundle = _id
+ existing_row.use_serial_batch_fields = 0
+ else:
+ item_details["serial_and_batch_bundle"] = _id
+ item_details["use_serial_batch_fields"] = 0
+ self.doc.append("items", item_details)
def update_batches_to_be_consume(self, batches, row, qty):
qty_to_be_consumed = qty
@@ -253,6 +273,81 @@ class ManufactureStockEntry(BaseManufactureStockEntry):
self.validate_warehouse()
self.validate_raw_materials_exists()
self.validate_component_and_quantities()
+ self.validate_finished_good_serial_batch_for_work_order()
+
+ def validate_finished_good_serial_batch_for_work_order(self):
+ if not (
+ self.doc.work_order
+ and self.wo_doc
+ and self.wo_doc.track_semi_finished_goods != 1
+ and cint(
+ frappe.db.get_single_value(
+ "Manufacturing Settings", "make_serial_no_batch_from_work_order", cache=True
+ )
+ )
+ and (self.wo_doc.has_serial_no or self.wo_doc.has_batch_no)
+ ):
+ return
+
+ for row in self.doc.items:
+ if not row.is_finished_item:
+ continue
+
+ if self.check_invalid_serial_batch_nos_for_finished_good_item(row):
+ self.reset_serial_batch_on_fg_row(row)
+ frappe.msgprint(
+ _(
+ "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."
+ ).format(row.idx, frappe.bold(self.doc.work_order))
+ )
+
+ def check_invalid_serial_batch_nos_for_finished_good_item(self, row) -> bool:
+ if self.wo_doc.has_serial_no:
+ serial_nos = get_serial_nos(row.serial_no) if row.serial_no else []
+ if not serial_nos and row.serial_and_batch_bundle:
+ serial_nos = get_serial_nos_from_bundle(row.serial_and_batch_bundle)
+ if serial_nos:
+ valid_serial_nos = frappe.get_all(
+ "Serial No",
+ filters={"name": ("in", serial_nos), "work_order": self.doc.work_order},
+ pluck="name",
+ )
+ return bool(set(serial_nos) - set(valid_serial_nos))
+ else:
+ return True
+
+ if self.wo_doc.has_batch_no:
+ batch_nos = [row.batch_no] if row.batch_no else []
+ if not batch_nos and row.serial_and_batch_bundle:
+ batch_nos = list(get_batches_from_bundle(row.serial_and_batch_bundle).keys())
+ if batch_nos:
+ valid_batch_nos = frappe.get_all(
+ "Batch",
+ filters={"name": ("in", batch_nos), "reference_name": self.doc.work_order},
+ pluck="name",
+ )
+ return bool(set(batch_nos) - set(valid_batch_nos))
+ else:
+ return True
+
+ def reset_serial_batch_on_fg_row(self, row):
+ item_details = frappe._dict(
+ {
+ "item_code": row.item_code,
+ "t_warehouse": row.t_warehouse,
+ "qty": row.qty,
+ }
+ )
+
+ row.serial_no = None
+ row.batch_no = None
+ row.serial_and_batch_bundle = None
+
+ if self.wo_doc.has_serial_no:
+ self.set_serial_nos_for_finished_good(item_details, existing_row=row)
+ elif self.wo_doc.has_batch_no:
+ self.set_batchwise_finished_goods(item_details, existing_row=row)
def set_job_card_data(self):
if self.doc.job_card and not self.doc.work_order:
@@ -366,8 +461,10 @@ class ManufactureStockEntry(BaseManufactureStockEntry):
def _resolve_rm_warehouse(self, row):
if self.doc.from_warehouse:
return self.doc.from_warehouse
- if self.wo_doc.from_wip_warehouse:
+ if self.wo_doc and self.wo_doc.from_wip_warehouse:
return self.wo_doc.wip_warehouse
+ if s_warehouse := frappe.get_cached_value("BOM", self.doc.bom_no, "default_source_warehouse"):
+ return s_warehouse
return row.get("source_warehouse")
def get_alternative_items(self, bom_items):
@@ -422,9 +519,11 @@ class ManufactureStockEntry(BaseManufactureStockEntry):
def add_raw_materials_based_on_transfer(self):
self.prepare_available_materials_based_on_transfer()
- pending_qty_to_mfg = flt(self.wo_doc.material_transferred_for_manufacturing) - flt(
- self.wo_doc.produced_qty
- )
+ pending_qty_to_mfg = flt(self.doc.fg_completed_qty)
+ if self.doc.work_order:
+ pending_qty_to_mfg = flt(self.wo_doc.material_transferred_for_manufacturing) - flt(
+ self.wo_doc.produced_qty
+ )
if pending_qty_to_mfg <= 0 and not self.doc.get("is_return"):
return
for key in self.available_materials:
@@ -589,7 +688,7 @@ class ManufactureStockEntry(BaseManufactureStockEntry):
row.s_warehouse = None
row.t_warehouse = row.warehouse or self.doc.to_warehouse
row.is_legacy_scrap_item = row.is_legacy
- row.type = row.get("type")
+ row.secondary_item_type = row.get("secondary_item_type")
self.doc.append("items", row)
@@ -631,7 +730,7 @@ class ManufactureStockEntry(BaseManufactureStockEntry):
.select(sed.item_code, sed.qty)
.where(
(se.work_order == self.doc.work_order)
- & ((sed.type.isnotnull()) | (sed.is_legacy_scrap_item == 1))
+ & ((sed.secondary_item_type.isnotnull()) | (sed.is_legacy_scrap_item == 1))
& (se.docstatus == 1)
& (se.purpose.isin(["Repack", "Manufacture"]))
)
@@ -830,7 +929,7 @@ def _add_bom_table_specific_fields(query, doctype, table_name):
doctype.cost_allocation_per,
doctype.uom,
doctype.process_loss_per,
- doctype.type,
+ doctype.secondary_item_type,
doctype.is_legacy,
doctype.conversion_factor,
)
@@ -889,7 +988,7 @@ def get_secondary_items_from_job_card(work_order, jc_name=None):
job_card_secondary_item.item_name,
job_card_secondary_item.description,
job_card_secondary_item.stock_uom,
- job_card_secondary_item.type,
+ job_card_secondary_item.secondary_item_type,
job_card_secondary_item.bom_secondary_item,
)
.join(job_card_secondary_item)
@@ -899,7 +998,7 @@ def get_secondary_items_from_job_card(work_order, jc_name=None):
& (job_card.work_order == work_order)
& (job_card.docstatus == 1)
)
- .groupby(job_card_secondary_item.item_code, job_card_secondary_item.type)
+ .groupby(job_card_secondary_item.item_code, job_card_secondary_item.secondary_item_type)
.orderby(job_card_secondary_item.idx)
)
diff --git a/erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py b/erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py
index 880226e51cc..661ea04b19b 100644
--- a/erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py
+++ b/erpnext/stock/doctype/stock_entry/stock_entry_handler/material_transfer.py
@@ -65,6 +65,87 @@ class BaseMaterialTransferStockEntry(BaseStockEntry):
title=_("Invalid Source and Target Warehouse"),
)
+ def update_transferred_qty(self):
+ if not self.doc.outgoing_stock_entry:
+ return
+
+ stock_entries, child_list = self._collect_transferred_qtys()
+ if not stock_entries:
+ return
+
+ self._bulk_update_transferred_qty(stock_entries, child_list)
+ self._update_per_transferred_field()
+
+ def _get_item_transferred_qty(self, item):
+ sed = frappe.qb.DocType("Stock Entry Detail")
+ result = (
+ frappe.qb.from_(sed)
+ .select(Sum(sed.transfer_qty).as_("qty"))
+ .where(
+ (sed.against_stock_entry == item.against_stock_entry)
+ & (sed.ste_detail == item.ste_detail)
+ & (sed.docstatus == 1)
+ )
+ ).run(as_dict=True)
+ return result[0].qty if result and result[0].qty else 0.0
+
+ def _validate_item_transferred_qty(self, item, transferred_qty):
+ if item.docstatus != 1:
+ return
+
+ transfer_qty = frappe.get_value("Stock Entry Detail", item.ste_detail, "transfer_qty")
+ if transferred_qty > transfer_qty:
+ frappe.throw(
+ _("Row {0}: Transferred quantity cannot be greater than the requested quantity.").format(
+ item.idx
+ )
+ )
+
+ def _collect_transferred_qtys(self):
+ stock_entries, child_list = {}, []
+ for item in self.doc.items:
+ if not (item.against_stock_entry and item.ste_detail):
+ continue
+
+ transferred_qty = self._get_item_transferred_qty(item)
+ self._validate_item_transferred_qty(item, transferred_qty)
+ child_list.append(item.ste_detail)
+ stock_entries[(item.against_stock_entry, item.ste_detail)] = transferred_qty
+ return stock_entries, child_list
+
+ def _bulk_update_transferred_qty(self, stock_entries, child_list):
+ sed = frappe.qb.DocType("Stock Entry Detail")
+ case_expr = self._build_case_expr(sed, stock_entries)
+ (
+ frappe.qb.update(sed)
+ .set(sed.transferred_qty, case_expr.else_(sed.transferred_qty))
+ .where(sed.name.isin(child_list))
+ ).run()
+
+ def _build_case_expr(self, sed, stock_entries):
+ from pypika import Case
+
+ case_expr = Case()
+ for (parent, name), qty in stock_entries.items():
+ case_expr = case_expr.when((sed.parent == parent) & (sed.name == name), qty)
+ return case_expr
+
+ def _update_per_transferred_field(self):
+ self.doc._update_percent_field_in_targets(self._get_per_transferred_config(), update_modified=True)
+
+ def _get_per_transferred_config(self):
+ return {
+ "source_dt": "Stock Entry Detail",
+ "target_field": "transferred_qty",
+ "target_ref_field": "transfer_qty",
+ "target_dt": "Stock Entry Detail",
+ "join_field": "ste_detail",
+ "target_parent_dt": "Stock Entry",
+ "target_parent_field": "per_transferred",
+ "source_field": "transfer_qty",
+ "percent_join_field": "against_stock_entry",
+ }
+
class MaterialTransferStockEntry(BaseMaterialTransferStockEntry):
def before_validate(self):
@@ -75,9 +156,11 @@ class MaterialTransferStockEntry(BaseMaterialTransferStockEntry):
self.validate_same_source_target_warehouse()
def on_submit(self):
+ self.update_transferred_qty()
self.update_subcontract_order_supplied_items()
def on_cancel(self):
+ self.update_transferred_qty()
self.update_subcontract_order_supplied_items()
def update_subcontract_order_supplied_items(self):
@@ -314,87 +397,6 @@ class MaterialRequestStockEntry(BaseMaterialTransferStockEntry):
if self.doc.outgoing_stock_entry:
self.set_material_request_transfer_status("In Transit")
- def update_transferred_qty(self):
- if not self.doc.outgoing_stock_entry:
- return
-
- stock_entries, child_list = self._collect_transferred_qtys()
- if not stock_entries:
- return
-
- self._bulk_update_transferred_qty(stock_entries, child_list)
- self._update_per_transferred_field()
-
- def _get_item_transferred_qty(self, item):
- sed = frappe.qb.DocType("Stock Entry Detail")
- result = (
- frappe.qb.from_(sed)
- .select(Sum(sed.transfer_qty).as_("qty"))
- .where(
- (sed.against_stock_entry == item.against_stock_entry)
- & (sed.ste_detail == item.ste_detail)
- & (sed.docstatus == 1)
- )
- ).run(as_dict=True)
- return result[0].qty if result and result[0].qty else 0.0
-
- def _validate_item_transferred_qty(self, item, transferred_qty):
- if item.docstatus != 1:
- return
-
- transfer_qty = frappe.get_value("Stock Entry Detail", item.ste_detail, "transfer_qty")
- if transferred_qty > transfer_qty:
- frappe.throw(
- _("Row {0}: Transferred quantity cannot be greater than the requested quantity.").format(
- item.idx
- )
- )
-
- def _collect_transferred_qtys(self):
- stock_entries, child_list = {}, []
- for item in self.doc.items:
- if not (item.against_stock_entry and item.ste_detail):
- continue
-
- transferred_qty = self._get_item_transferred_qty(item)
- self._validate_item_transferred_qty(item, transferred_qty)
- child_list.append(item.ste_detail)
- stock_entries[(item.against_stock_entry, item.ste_detail)] = transferred_qty
- return stock_entries, child_list
-
- def _bulk_update_transferred_qty(self, stock_entries, child_list):
- sed = frappe.qb.DocType("Stock Entry Detail")
- case_expr = self._build_case_expr(sed, stock_entries)
- (
- frappe.qb.update(sed)
- .set(sed.transferred_qty, case_expr.else_(sed.transferred_qty))
- .where(sed.name.isin(child_list))
- ).run()
-
- def _build_case_expr(self, sed, stock_entries):
- from pypika import Case
-
- case_expr = Case()
- for (parent, name), qty in stock_entries.items():
- case_expr = case_expr.when((sed.parent == parent) & (sed.name == name), qty)
- return case_expr
-
- def _update_per_transferred_field(self):
- self.doc._update_percent_field_in_targets(self._get_per_transferred_config(), update_modified=True)
-
- def _get_per_transferred_config(self):
- return {
- "source_dt": "Stock Entry Detail",
- "target_field": "transferred_qty",
- "target_ref_field": "qty",
- "target_dt": "Stock Entry Detail",
- "join_field": "ste_detail",
- "target_parent_dt": "Stock Entry",
- "target_parent_field": "per_transferred",
- "source_field": "qty",
- "percent_join_field": "against_stock_entry",
- }
-
def set_material_request_transfer_status(self, status):
material_requests = []
parent_se = (
diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py
index ed4286f2fb5..c0e6b8f2382 100644
--- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py
+++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py
@@ -184,7 +184,7 @@ class TestStockEntry(ERPNextTestSuite):
for d in mr.items:
items.append(d.item_code)
- self.assertTrue(item_code in items)
+ self.assertIn(item_code, items)
def test_add_to_transit_entry(self):
from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse
@@ -908,7 +908,9 @@ class TestStockEntry(ERPNextTestSuite):
if d.s_warehouse:
rm_cost += d.amount
fg_cost = next(filter(lambda x: x.item_code == "_Test FG Item", s.get("items"))).amount
- secondary_item_cost = next(filter(lambda x: x.type or x.is_legacy_scrap_item, s.get("items"))).amount
+ secondary_item_cost = next(
+ filter(lambda x: x.secondary_item_type or x.is_legacy_scrap_item, s.get("items"))
+ ).amount
self.assertEqual(fg_cost, flt(rm_cost - secondary_item_cost, 2))
@@ -951,7 +953,7 @@ class TestStockEntry(ERPNextTestSuite):
stock_entry = frappe.get_doc(make_stock_entry(work_order.name, "Manufacture", 1))
stock_entry.insert()
- self.assertTrue("_Test Variant Item-S" in [d.item_code for d in stock_entry.items])
+ self.assertIn("_Test Variant Item-S", [d.item_code for d in stock_entry.items])
def test_nagative_stock_for_batch(self):
item = make_item(
@@ -1027,7 +1029,7 @@ class TestStockEntry(ERPNextTestSuite):
basic_rate=row.basic_rate or 100,
)
- if row.type or row.is_legacy_scrap_item:
+ if row.secondary_item_type or row.is_legacy_scrap_item:
row.item_code = secondary_item
row.uom = frappe.db.get_value("Item", secondary_item, "stock_uom")
row.stock_uom = frappe.db.get_value("Item", secondary_item, "stock_uom")
@@ -1035,10 +1037,16 @@ class TestStockEntry(ERPNextTestSuite):
stock_entry.inspection_required = 1
stock_entry.save()
- self.assertTrue([row.item_code for row in stock_entry.items if row.type or row.is_legacy_scrap_item])
+ self.assertTrue(
+ [
+ row.item_code
+ for row in stock_entry.items
+ if row.secondary_item_type or row.is_legacy_scrap_item
+ ]
+ )
for row in stock_entry.items:
- if not row.type and not row.is_legacy_scrap_item:
+ if not row.secondary_item_type and not row.is_legacy_scrap_item:
qc = frappe.get_doc(
{
"doctype": "Quality Inspection",
@@ -1058,7 +1066,7 @@ class TestStockEntry(ERPNextTestSuite):
stock_entry.reload()
stock_entry.submit()
for row in stock_entry.items:
- if row.type or row.is_legacy_scrap_item:
+ if row.secondary_item_type or row.is_legacy_scrap_item:
self.assertFalse(row.quality_inspection)
else:
self.assertTrue(row.quality_inspection)
@@ -2878,6 +2886,88 @@ class TestStockEntryCoverage(ERPNextTestSuite):
if key in materials:
self.assertEqual(materials[key].qty, 0)
+ @ERPNextTestSuite.change_settings("Manufacturing Settings", {"make_serial_no_batch_from_work_order": 1})
+ @ERPNextTestSuite.change_settings("Global Defaults", {"default_company": "_Test Company"})
+ def test_validate_fg_resets_invalid_serial_no_on_manufacture(self):
+ from erpnext.manufacturing.doctype.bom.test_bom import create_nested_bom
+ from erpnext.manufacturing.doctype.work_order.test_work_order import make_wo_order_test_record
+ from erpnext.manufacturing.doctype.work_order.work_order import (
+ make_stock_entry as _make_stock_entry,
+ )
+
+ fg_item = "_FG Serial No Item"
+ rm_item = "RM for serial item"
+ create_nested_bom({fg_item: {rm_item: {}}}, prefix="")
+
+ item = frappe.get_doc("Item", fg_item)
+ item.has_serial_no = 1
+ item.serial_no_series = "FSNI-.####"
+ item.save()
+
+ make_stock_entry(item_code=rm_item, target="_Test Warehouse - _TC", qty=20, basic_rate=100)
+
+ wo1 = make_wo_order_test_record(item=fg_item, qty=2, skip_transfer=True)
+ wo2 = make_wo_order_test_record(item=fg_item, qty=2, skip_transfer=True)
+ wo1_serial_nos = frappe.get_all("Serial No", filters={"work_order": wo1.name}, pluck="name")
+ wo2_serial_nos = frappe.get_all("Serial No", filters={"work_order": wo2.name}, pluck="name")
+
+ se = frappe.get_doc(_make_stock_entry(wo1.name, "Manufacture", 2))
+ for row in se.items:
+ if row.is_finished_item:
+ row.serial_no = wo2_serial_nos[0]
+ row.serial_and_batch_bundle = None
+
+ se.save()
+
+ for row in se.items:
+ if row.is_finished_item:
+ self.assertIsNone(row.serial_no)
+ self.assertTrue(row.serial_and_batch_bundle)
+ for sn in get_serial_nos_from_bundle(row.serial_and_batch_bundle):
+ self.assertIn(sn, wo1_serial_nos)
+
+ @ERPNextTestSuite.change_settings("Manufacturing Settings", {"make_serial_no_batch_from_work_order": 1})
+ @ERPNextTestSuite.change_settings("Global Defaults", {"default_company": "_Test Company"})
+ def test_validate_fg_resets_invalid_batch_no_on_manufacture(self):
+ from erpnext.manufacturing.doctype.bom.test_bom import create_nested_bom
+ from erpnext.manufacturing.doctype.work_order.test_work_order import make_wo_order_test_record
+ from erpnext.manufacturing.doctype.work_order.work_order import (
+ make_stock_entry as _make_stock_entry,
+ )
+ from erpnext.stock.serial_batch_bundle import get_batches_from_bundle
+
+ fg_item = "_FG Batch No Item"
+ rm_item = "RM for Batch Item"
+ create_nested_bom({fg_item: {rm_item: {}}}, prefix="")
+
+ item = frappe.get_doc("Item", fg_item)
+ item.has_batch_no = 1
+ item.create_new_batch = 1
+ item.batch_number_series = "FBNI-.####"
+ item.save()
+
+ make_stock_entry(item_code=rm_item, target="_Test Warehouse - _TC", qty=20, basic_rate=100)
+
+ wo1 = make_wo_order_test_record(item=fg_item, qty=2, skip_transfer=True)
+ wo2 = make_wo_order_test_record(item=fg_item, qty=2, skip_transfer=True)
+ wo1_batches = frappe.get_all("Batch", filters={"reference_name": wo1.name}, pluck="name")
+ wo2_batches = frappe.get_all("Batch", filters={"reference_name": wo2.name}, pluck="name")
+
+ se = frappe.get_doc(_make_stock_entry(wo1.name, "Manufacture", 2))
+ for row in se.items:
+ if row.is_finished_item:
+ row.batch_no = wo2_batches[0]
+ row.serial_and_batch_bundle = None
+
+ se.save()
+
+ for row in se.items:
+ if row.is_finished_item:
+ self.assertIsNone(row.batch_no)
+ self.assertTrue(row.serial_and_batch_bundle)
+ for bn in list(get_batches_from_bundle(row.serial_and_batch_bundle).keys()):
+ self.assertIn(bn, wo1_batches)
+
def make_serialized_item(self, **args):
args = frappe._dict(args)
diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
index b446aa1e51e..c21d9ec91cb 100644
--- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
+++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.json
@@ -19,7 +19,7 @@
"col_break2",
"is_finished_item",
"is_legacy_scrap_item",
- "type",
+ "secondary_item_type",
"quality_inspection",
"subcontracted_item",
"against_fg",
@@ -559,7 +559,7 @@
},
{
"default": "0",
- "depends_on": "eval:!doc.is_legacy_scrap_item && !doc.type",
+ "depends_on": "eval:!doc.is_legacy_scrap_item && !doc.secondary_item_type",
"fieldname": "is_finished_item",
"fieldtype": "Check",
"label": "Is Finished Item",
@@ -653,7 +653,7 @@
},
{
"depends_on": "eval:parent.purpose == \"Manufacture\" && doc.t_warehouse && !doc.is_finished_item && !doc.is_legacy_scrap_item",
- "fieldname": "type",
+ "fieldname": "secondary_item_type",
"fieldtype": "Select",
"label": "Type",
"options": "\nCo-Product\nBy-Product\nScrap\nAdditional Finished Good"
@@ -679,7 +679,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-04-27 11:40:38.294196",
+ "modified": "2026-06-01 10:00:00.000000",
"modified_by": "Administrator",
"module": "Stock",
"name": "Stock Entry Detail",
diff --git a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py
index 5b933427ee4..75f8b8a68ed 100644
--- a/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py
+++ b/erpnext/stock/doctype/stock_entry_detail/stock_entry_detail.py
@@ -5,20 +5,15 @@ import frappe
from frappe import _, bold
from frappe.model.document import Document
from frappe.utils import (
- cint,
- cstr,
flt,
- format_time,
- formatdate,
get_link_to_form,
getdate,
- nowdate,
)
from erpnext.stock.doctype.stock_reconciliation.stock_reconciliation import (
OpeningEntryAccountError,
)
-from erpnext.stock.stock_ledger import NegativeStockError, get_previous_sle, is_negative_stock_allowed
+from erpnext.stock.stock_ledger import get_previous_sle
class StockEntryDetail(Document):
@@ -83,7 +78,7 @@ class StockEntryDetail(Document):
t_warehouse: DF.Link | None
transfer_qty: DF.Float
transferred_qty: DF.Float
- type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
+ secondary_item_type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
uom: DF.Link
use_serial_batch_fields: DF.Check
valuation_rate: DF.Currency
diff --git a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
index 936dcd13650..a6ff359957f 100644
--- a/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
+++ b/erpnext/stock/doctype/stock_ledger_entry/stock_ledger_entry.json
@@ -1,12 +1,12 @@
{
"actions": [],
+ "allow_bulk_edit": 1,
"allow_copy": 1,
"autoname": "MAT-SLE-.YYYY.-.#####",
"creation": "2013-01-29 19:25:42",
"doctype": "DocType",
"document_type": "Other",
"engine": "InnoDB",
- "is_submittable": 1,
"field_order": [
"item_code",
"warehouse",
@@ -205,7 +205,7 @@
{
"fieldname": "valuation_rate",
"fieldtype": "Currency",
- "label": "Valuation Rate",
+ "label": "Average Rate",
"oldfieldname": "valuation_rate",
"oldfieldtype": "Currency",
"options": "Company:company:default_currency",
@@ -361,12 +361,13 @@
"idx": 1,
"in_create": 1,
"index_web_pages_for_search": 1,
+ "is_submittable": 1,
"links": [],
- "modified": "2025-10-04 09:59:15.546556",
+ "modified": "2026-05-26 19:07:43.537450",
"modified_by": "Administrator",
"module": "Stock",
"name": "Stock Ledger Entry",
- "naming_rule": "Expression (old style)",
+ "naming_rule": "Expression",
"owner": "Administrator",
"permissions": [
{
diff --git a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py
index 2ad1fb42f13..02cd0e63e4a 100644
--- a/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py
+++ b/erpnext/stock/doctype/stock_reconciliation/test_stock_reconciliation.py
@@ -1040,7 +1040,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
)
batch1 = get_batch_from_bundle(se1.items[0].serial_and_batch_bundle)
- self.assertFalse(batch1 == batch)
+ self.assertNotEqual(batch1, batch)
sr.reload()
self.assertTrue(sr.items[0].serial_and_batch_bundle)
@@ -1418,7 +1418,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
sr.save()
self.assertEqual(sr.items[0].current_valuation_rate, 100)
self.assertEqual(sr.difference_amount, 100 * -1)
- self.assertTrue(sr.items[0].qty == 0)
+ self.assertEqual(sr.items[0].qty, 0)
def test_stock_reco_recalculate_qty_for_backdated_entry(self):
from erpnext.stock.doctype.stock_entry.test_stock_entry import make_stock_entry
@@ -1456,7 +1456,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
pluck="name",
)
- self.assertTrue(len(stock_ledgers) == 1)
+ self.assertEqual(len(stock_ledgers), 1)
se = make_stock_entry(
item_code=item_code,
@@ -1515,7 +1515,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
"status",
)
- self.assertTrue(status == "Active")
+ self.assertEqual(status, "Active")
sr = create_stock_reconciliation(
item_code=serial_item,
@@ -1534,7 +1534,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
"status",
)
- self.assertTrue(status == "Active")
+ self.assertEqual(status, "Active")
se = make_stock_entry(
item_code=serial_item,
@@ -1550,7 +1550,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
"status",
)
- self.assertFalse(status == "Active")
+ self.assertNotEqual(status, "Active")
sr.cancel()
@@ -1560,7 +1560,7 @@ class TestStockReconciliation(ERPNextTestSuite, StockTestMixin):
"status",
)
- self.assertFalse(status == "Active")
+ self.assertNotEqual(status, "Active")
def test_change_valuation_of_batch_using_backdated_stock_reco(self):
from erpnext.stock.doctype.batch.batch import get_batch_qty
diff --git a/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py b/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py
index 4d73ad62c05..b3c6aedb7a3 100644
--- a/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py
+++ b/erpnext/stock/doctype/stock_reposting_settings/test_stock_reposting_settings.py
@@ -31,9 +31,9 @@ class TestStockRepostingSettings(ERPNextTestSuite):
frappe.db.set_single_value("Stock Reposting Settings", "notify_reposting_error_to_role", "")
users = get_recipients()
- self.assertFalse(user in users)
+ self.assertNotIn(user, users)
frappe.db.set_single_value("Stock Reposting Settings", "notify_reposting_error_to_role", role)
users = get_recipients()
- self.assertTrue(user in users)
+ self.assertIn(user, users)
diff --git a/erpnext/stock/doctype/stock_settings/stock_settings.py b/erpnext/stock/doctype/stock_settings/stock_settings.py
index 8250186dc6d..6b6b70b2187 100644
--- a/erpnext/stock/doctype/stock_settings/stock_settings.py
+++ b/erpnext/stock/doctype/stock_settings/stock_settings.py
@@ -8,7 +8,6 @@ import frappe
from frappe import _
from frappe.custom.doctype.property_setter.property_setter import make_property_setter
from frappe.model.document import Document
-from frappe.utils import cint
from frappe.utils.html_utils import clean_html
from erpnext.stock.utils import check_pending_reposting
diff --git a/erpnext/stock/report/stock_ledger/stock_ledger.py b/erpnext/stock/report/stock_ledger/stock_ledger.py
index a76f40d713b..f6abae53f5e 100644
--- a/erpnext/stock/report/stock_ledger/stock_ledger.py
+++ b/erpnext/stock/report/stock_ledger/stock_ledger.py
@@ -108,10 +108,11 @@ def execute(filters=None):
if sle.serial_no:
update_available_serial_nos(available_serial_nos, sle)
- if sle.actual_qty:
+ if sle.actual_qty < 0:
sle["in_out_rate"] = flt(sle.stock_value_difference / sle.actual_qty, precision)
+ sle["incoming_rate"] = 0
- elif sle.voucher_type == "Stock Reconciliation":
+ elif sle.voucher_type == "Stock Reconciliation" and sle.actual_qty < 0:
sle["in_out_rate"] = sle.valuation_rate
if (
@@ -192,7 +193,7 @@ def get_segregated_bundle_entries(sle, bundle_details, batch_balance_dict, filte
new_sle.update(row)
new_sle.update(
{
- "in_out_rate": flt(new_sle.stock_value_difference / row.qty) if row.qty else 0,
+ "in_out_rate": flt(new_sle.stock_value_difference / row.qty) if row.qty < 0 else 0,
"in_qty": row.qty if row.qty > 0 else 0,
"out_qty": row.qty if row.qty < 0 else 0,
"qty_after_transaction": qty_before_transaction + row.qty,
@@ -374,7 +375,7 @@ def get_columns(filters):
"convertible": "rate",
},
{
- "label": _("Valuation Rate"),
+ "label": _("Outgoing Rate"),
"fieldname": "in_out_rate",
"fieldtype": filters.valuation_field_type,
"width": 140,
diff --git a/erpnext/stock/stock_ledger.py b/erpnext/stock/stock_ledger.py
index fb8e63c37b7..f1b0e2035ea 100644
--- a/erpnext/stock/stock_ledger.py
+++ b/erpnext/stock/stock_ledger.py
@@ -17,7 +17,6 @@ from frappe.utils import (
format_date,
get_datetime,
get_link_to_form,
- getdate,
now,
nowdate,
nowtime,
@@ -434,8 +433,7 @@ def get_reposting_data(file_path) -> dict:
except Exception:
return frappe._dict()
- if data := json.loads(data.decode("utf-8")):
- data = data
+ data = json.loads(data.decode("utf-8"))
return parse_json(data)
@@ -1457,8 +1455,7 @@ class update_entries_after:
item.amount = flt(item.qty) * flt(item.valuation_rate)
item.quantity_difference = item.qty - item.current_qty
item.amount_difference = item.amount - item.current_amount
- else:
- sr.difference_amount = sum([item.amount_difference for item in sr.items])
+ sr.difference_amount = sum([item.amount_difference for item in sr.items])
sr.db_update()
for item in sr.items:
diff --git a/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py b/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py
index d1cd27f4a11..77d7530b3c7 100644
--- a/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py
+++ b/erpnext/subcontracting/doctype/subcontracting_inward_order/subcontracting_inward_order.py
@@ -499,7 +499,7 @@ class SubcontractingInwardOrder(SubcontractingController):
"s_warehouse": secondary_item.warehouse,
"stock_uom": secondary_item.stock_uom,
"scio_detail": secondary_item.name,
- "type": secondary_item.type,
+ "secondary_item_type": secondary_item.secondary_item_type,
}
}
diff --git a/erpnext/subcontracting/doctype/subcontracting_inward_order/test_subcontracting_inward_order.py b/erpnext/subcontracting/doctype/subcontracting_inward_order/test_subcontracting_inward_order.py
index 6bdbaf20333..dc60423074c 100644
--- a/erpnext/subcontracting/doctype/subcontracting_inward_order/test_subcontracting_inward_order.py
+++ b/erpnext/subcontracting/doctype/subcontracting_inward_order/test_subcontracting_inward_order.py
@@ -328,7 +328,7 @@ class IntegrationTestSubcontractingInwardOrder(ERPNextTestSuite):
def test_secondary_items_delivery(self):
new_bom = frappe.copy_doc(frappe.get_doc("BOM", "BOM-Basic FG Item-001"))
new_bom.secondary_items.append(
- frappe.new_doc("BOM Secondary Item", item_code="Basic RM 2", qty=1, type="Scrap")
+ frappe.new_doc("BOM Secondary Item", item_code="Basic RM 2", qty=1, secondary_item_type="Scrap")
)
new_bom.submit()
sc_bom = frappe.get_doc("Subcontracting BOM", "SB-0001")
diff --git a/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json b/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
index 94a640b41ce..01e4c63ad2f 100644
--- a/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
+++ b/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.json
@@ -7,7 +7,7 @@
"engine": "InnoDB",
"field_order": [
"column_break_rptg",
- "type",
+ "secondary_item_type",
"reference_name",
"column_break_jkzt",
"item_code",
@@ -97,7 +97,7 @@
"fieldtype": "Column Break"
},
{
- "fieldname": "type",
+ "fieldname": "secondary_item_type",
"fieldtype": "Select",
"label": "Type",
"no_copy": 1,
@@ -114,7 +114,7 @@
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
- "modified": "2026-02-27 15:15:40.009957",
+ "modified": "2026-06-01 10:00:00.000000",
"modified_by": "Administrator",
"module": "Subcontracting",
"name": "Subcontracting Inward Order Secondary Item",
diff --git a/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.py b/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.py
index 767f216921a..9fcc8b20135 100644
--- a/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.py
+++ b/erpnext/subcontracting/doctype/subcontracting_inward_order_secondary_item/subcontracting_inward_order_secondary_item.py
@@ -23,7 +23,7 @@ class SubcontractingInwardOrderSecondaryItem(Document):
produced_qty: DF.Float
reference_name: DF.Data
stock_uom: DF.Link
- type: DF.Literal["Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
+ secondary_item_type: DF.Literal["Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
warehouse: DF.Link
# end: auto-generated types
diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js
index 3f9ad433ca6..5f319d9dde9 100644
--- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js
+++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.js
@@ -577,7 +577,7 @@ frappe.ui.form.on("Subcontracting Order", {
},
get_materials_from_supplier: function (frm) {
- let sco_rm_details = [];
+ const sco_rm_details = [];
if (frm.doc.status != "Closed" && frm.doc.supplied_items) {
frm.doc.supplied_items.forEach((d) => {
@@ -591,21 +591,16 @@ frappe.ui.form.on("Subcontracting Order", {
frm.add_custom_button(
__("Return of Components"),
() => {
- frm.call({
+ frappe.model.open_mapped_doc({
method: "erpnext.controllers.subcontracting_controller.get_materials_from_supplier",
- freeze: true,
- freeze_message: __("Creating Stock Entry"),
+ frm: frm,
args: {
subcontract_order: frm.doc.name,
rm_details: sco_rm_details,
- order_doctype: cur_frm.doc.doctype,
- },
- callback: function (r) {
- if (r && r.message) {
- const doc = frappe.model.sync(r.message);
- frappe.set_route("Form", doc[0].doctype, doc[0].name);
- }
+ order_doctype: frm.doc.doctype,
},
+ freeze: true,
+ freeze_message: __("Creating Return of Components ..."),
});
},
__("Create")
diff --git a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py
index 4e74a714977..f5588d3b064 100644
--- a/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py
+++ b/erpnext/subcontracting/doctype/subcontracting_order/subcontracting_order.py
@@ -198,9 +198,8 @@ class SubcontractingOrder(SubcontractingController):
item.amount = item.qty * item.rate
total_qty += flt(item.qty)
total += flt(item.amount)
- else:
- self.total_qty = total_qty
- self.total = total
+ self.total_qty = total_qty
+ self.total = total
def update_ordered_qty_for_subcontracting(self, sco_item_rows=None):
item_wh_list = []
diff --git a/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py b/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py
index 346debf2a93..9b6185d6f14 100644
--- a/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py
+++ b/erpnext/subcontracting/doctype/subcontracting_order/test_subcontracting_order.py
@@ -554,7 +554,12 @@ class TestSubcontractingOrder(ERPNextTestSuite):
scr.submit()
# Get RM from Supplier
- ste = get_materials_from_supplier(sco.name, [d.name for d in sco.supplied_items])
+ frappe.flags.args = frappe._dict(
+ subcontract_order=sco.name,
+ rm_details=[d.name for d in sco.supplied_items],
+ order_doctype=sco.doctype,
+ )
+ ste = get_materials_from_supplier(sco.name)
ste.save()
ste.submit()
@@ -640,7 +645,7 @@ class TestSubcontractingOrder(ERPNextTestSuite):
qty=10,
)
- self.assertTrue(mr.docstatus == 1)
+ self.assertEqual(mr.docstatus, 1)
new_requested_qty = frappe.db.get_value(
"Bin",
@@ -726,7 +731,7 @@ class TestSubcontractingOrder(ERPNextTestSuite):
sco.submit()
sre_list = get_sre_details_for_voucher("Subcontracting Order", sco.name)
- self.assertTrue(len(sre_list) > 0)
+ self.assertGreater(len(sre_list), 0)
se_dict = make_rm_stock_entry(sco.name)
se = frappe.get_doc(se_dict)
@@ -843,9 +848,8 @@ def create_subcontracting_order(**args):
warehouses = []
for item in po.items:
warehouses.append(item.warehouse)
- else:
- for idx, val in enumerate(sco.items):
- val.warehouse = warehouses[idx]
+ for idx, val in enumerate(sco.items):
+ val.warehouse = warehouses[idx]
warehouses = set()
for item in sco.items:
diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py
index 21f0dc30c5a..651da0b7697 100644
--- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py
+++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.py
@@ -422,7 +422,7 @@ class SubcontractingReceipt(SubcontractingController):
self.append(
"items",
{
- "type": secondary_item.type,
+ "secondary_item_type": secondary_item.secondary_item_type,
"is_legacy_scrap_item": secondary_item.is_legacy,
"reference_name": item.name,
"item_code": secondary_item.item_code,
@@ -450,7 +450,7 @@ class SubcontractingReceipt(SubcontractingController):
def remove_secondary_items(self):
for item in list(self.items):
- if item.type or item.is_legacy_scrap_item:
+ if item.secondary_item_type or item.is_legacy_scrap_item:
self.remove(item)
else:
item.secondary_items_cost_per_qty = 0
@@ -492,11 +492,10 @@ class SubcontractingReceipt(SubcontractingController):
supplied_items_details[item.name][
supplied_item.rm_item_code
] += supplied_item.available_qty
- else:
- for item in self.get("supplied_items"):
- item.available_qty_for_consumption = supplied_items_details.get(item.reference_name, {}).get(
- item.rm_item_code, 0
- )
+ for item in self.get("supplied_items"):
+ item.available_qty_for_consumption = supplied_items_details.get(item.reference_name, {}).get(
+ item.rm_item_code, 0
+ )
def calculate_items_qty_and_amount(self):
rm_cost_map = {}
@@ -510,7 +509,7 @@ class SubcontractingReceipt(SubcontractingController):
secondary_items_cost_map = {}
for item in self.get("items") or []:
- if item.type or item.is_legacy_scrap_item:
+ if item.secondary_item_type or item.is_legacy_scrap_item:
qty = (
flt(item.qty)
if item.is_legacy_scrap_item
@@ -525,7 +524,7 @@ class SubcontractingReceipt(SubcontractingController):
total_qty = total_amount = 0
for item in self.get("items") or []:
- if not item.type and not item.is_legacy_scrap_item:
+ if not item.secondary_item_type and not item.is_legacy_scrap_item:
if item.qty:
if item.name in rm_cost_map:
item.rm_supp_cost = rm_cost_map[item.name]
@@ -563,13 +562,12 @@ class SubcontractingReceipt(SubcontractingController):
total_qty += flt(item.qty) + flt(item.rejected_qty)
total_amount += item.amount
- else:
- self.total_qty = total_qty
- self.total = total_amount
+ self.total_qty = total_qty
+ self.total = total_amount
def validate_secondary_items(self):
for item in self.items:
- if item.type or item.is_legacy_scrap_item:
+ if item.secondary_item_type or item.is_legacy_scrap_item:
if not item.qty:
frappe.throw(
_("Row #{0}: Secondary Item Qty cannot be zero").format(item.idx),
diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py b/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py
index 94ee0946c6b..b480a726b47 100644
--- a/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py
+++ b/erpnext/subcontracting/doctype/subcontracting_receipt/test_subcontracting_receipt.py
@@ -1220,7 +1220,7 @@ class TestSubcontractingReceipt(ERPNextTestSuite):
scr.get_secondary_items()
scr_secondary_items = set(
- [item.item_code for item in scr.items if item.type or item.is_legacy_scrap_item]
+ [item.item_code for item in scr.items if item.secondary_item_type or item.is_legacy_scrap_item]
)
self.assertEqual(len(scr.items), 3) # 1 FG Item + 2 Scrap Items
self.assertEqual(scr_secondary_items, set(secondary_items))
@@ -1311,7 +1311,7 @@ class TestSubcontractingReceipt(ERPNextTestSuite):
# Step - 8: Cancel Subcontracting Receipt
scr.cancel()
- self.assertTrue(scr.docstatus == 2)
+ self.assertEqual(scr.docstatus, 2)
def test_subcontract_return_from_rejected_warehouse(self):
from erpnext.stock.doctype.warehouse.test_warehouse import create_warehouse
diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
index b6d07f66b98..71f262d7663 100644
--- a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
+++ b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.json
@@ -9,7 +9,7 @@
"field_order": [
"item_code",
"is_legacy_scrap_item",
- "type",
+ "secondary_item_type",
"column_break_2",
"item_name",
"section_break_4",
@@ -162,12 +162,12 @@
"label": "Accepted Qty",
"no_copy": 1,
"print_width": "100px",
- "read_only_depends_on": "eval:doc.type || doc.is_legacy_scrap_item",
+ "read_only_depends_on": "eval:doc.secondary_item_type || doc.is_legacy_scrap_item",
"width": "100px"
},
{
"columns": 1,
- "depends_on": "eval:!parent.is_return && !doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!parent.is_return && !doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "rejected_qty",
"fieldtype": "Float",
"in_list_view": 1,
@@ -175,7 +175,7 @@
"no_copy": 1,
"print_hide": 1,
"print_width": "100px",
- "read_only_depends_on": "eval:doc.type || doc.is_legacy_scrap_item",
+ "read_only_depends_on": "eval:doc.secondary_item_type || doc.is_legacy_scrap_item",
"width": "100px"
},
{
@@ -234,7 +234,7 @@
},
{
"default": "0",
- "depends_on": "eval:!doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "rm_cost_per_qty",
"fieldtype": "Currency",
"label": "Raw Material Cost Per Qty",
@@ -244,7 +244,7 @@
},
{
"default": "0",
- "depends_on": "eval:!doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "service_cost_per_qty",
"fieldtype": "Currency",
"label": "Service Cost Per Qty",
@@ -254,7 +254,7 @@
},
{
"default": "0",
- "depends_on": "eval:!doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "additional_cost_per_qty",
"fieldtype": "Currency",
"label": "Additional Cost Per Qty",
@@ -278,7 +278,7 @@
"width": "100px"
},
{
- "depends_on": "eval: !parent.is_return && !doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval: !parent.is_return && !doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "rejected_warehouse",
"fieldtype": "Link",
"ignore_user_permissions": 1,
@@ -290,7 +290,7 @@
"width": "100px"
},
{
- "depends_on": "eval:!doc.__islocal && !doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.__islocal && !doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "quality_inspection",
"fieldtype": "Link",
"label": "Quality Inspection",
@@ -372,7 +372,7 @@
"no_copy": 1,
"options": "BOM",
"print_hide": 1,
- "read_only_depends_on": "eval:doc.type || doc.is_legacy_scrap_item"
+ "read_only_depends_on": "eval:doc.secondary_item_type || doc.is_legacy_scrap_item"
},
{
"fetch_from": "item_code.brand",
@@ -499,7 +499,7 @@
"print_hide": 1
},
{
- "depends_on": "eval:(doc.use_serial_batch_fields === 0 || doc.docstatus === 1) && !doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:(doc.use_serial_batch_fields === 0 || doc.docstatus === 1) && !doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "rejected_serial_and_batch_bundle",
"fieldtype": "Link",
"label": "Rejected Serial and Batch Bundle",
@@ -564,7 +564,7 @@
"label": "Add Serial / Batch Bundle"
},
{
- "depends_on": "eval:doc.use_serial_batch_fields === 0 && !doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:doc.use_serial_batch_fields === 0 && !doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "add_serial_batch_for_rejected_qty",
"fieldtype": "Button",
"label": "Add Serial / Batch No (Rejected Qty)"
@@ -578,7 +578,7 @@
"search_index": 1
},
{
- "depends_on": "eval:!doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "landed_cost_voucher_amount",
"fieldtype": "Currency",
"label": "Landed Cost Voucher Amount",
@@ -596,7 +596,7 @@
"options": "Account"
},
{
- "fieldname": "type",
+ "fieldname": "secondary_item_type",
"fieldtype": "Select",
"label": "Type",
"no_copy": 1,
@@ -606,7 +606,7 @@
},
{
"default": "0",
- "depends_on": "eval:!doc.type && !doc.is_legacy_scrap_item",
+ "depends_on": "eval:!doc.secondary_item_type && !doc.is_legacy_scrap_item",
"fieldname": "secondary_items_cost_per_qty",
"fieldtype": "Currency",
"label": "Secondary Items Cost Per Qty",
@@ -635,7 +635,7 @@
"idx": 1,
"istable": 1,
"links": [],
- "modified": "2026-03-09 15:11:16.977539",
+ "modified": "2026-06-01 10:00:00.000000",
"modified_by": "Administrator",
"module": "Subcontracting",
"name": "Subcontracting Receipt Item",
diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py
index c6233b841a2..47cfd9a1648 100644
--- a/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py
+++ b/erpnext/subcontracting/doctype/subcontracting_receipt_item/subcontracting_receipt_item.py
@@ -62,7 +62,7 @@ class SubcontractingReceiptItem(Document):
subcontracting_order: DF.Link | None
subcontracting_order_item: DF.Data | None
subcontracting_receipt_item: DF.Data | None
- type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
+ secondary_item_type: DF.Literal["", "Co-Product", "By-Product", "Scrap", "Additional Finished Good"]
use_serial_batch_fields: DF.Check
warehouse: DF.Link | None
# end: auto-generated types
diff --git a/erpnext/support/doctype/issue/issue.py b/erpnext/support/doctype/issue/issue.py
index a325c32dbd2..75822ff2247 100644
--- a/erpnext/support/doctype/issue/issue.py
+++ b/erpnext/support/doctype/issue/issue.py
@@ -218,11 +218,13 @@ def get_issue_list(doctype, txt, filters, limit_start, limit_page_length=20, ord
@frappe.whitelist()
def set_multiple_status(names: str, status: str):
for name in json.loads(names):
- frappe.db.set_value("Issue", name, "status", status)
+ set_status(name, status)
@frappe.whitelist()
def set_status(name: str, status: str):
+ frappe.has_permission("Issue", "write", name, throw=True)
+
frappe.db.set_value("Issue", name, "status", status)
diff --git a/erpnext/support/doctype/issue/test_issue.py b/erpnext/support/doctype/issue/test_issue.py
index 8351c40fa97..24665fff94a 100644
--- a/erpnext/support/doctype/issue/test_issue.py
+++ b/erpnext/support/doctype/issue/test_issue.py
@@ -245,7 +245,7 @@ class TestIssue(TestSetUp):
issue = make_issue(frappe.flags.current_time, index=1)
create_communication(issue.name, "test@example.com", "Received", frappe.flags.current_time)
- self.assertTrue(issue.status == "Open")
+ self.assertEqual(issue.status, "Open")
# send a reply within response SLA
frappe.flags.current_time = get_datetime("2021-11-02 11:00")
diff --git a/erpnext/templates/includes/announcement/announcement_row.html b/erpnext/templates/includes/announcement/announcement_row.html
index 3099441e344..1eda74784ca 100644
--- a/erpnext/templates/includes/announcement/announcement_row.html
+++ b/erpnext/templates/includes/announcement/announcement_row.html
@@ -24,10 +24,10 @@
if(content.length > show_char) {
var c = content.substr(0, show_char)
- var h = content.substr(show_char, content.length - show_char);
- html = c + ' ...'
- $(this).html(html);
+ // Set as text (not HTML) so DOM text isn't re-interpreted as
+ // markup (XSS). \u00a0 is a non-breaking space (same as ).
+ $(this).text(c + '\u00a0\u00a0...');
}
});
});
diff --git a/erpnext/templates/includes/projects/project_search_box.html b/erpnext/templates/includes/projects/project_search_box.html
index d7466873dda..8bebd0be244 100644
--- a/erpnext/templates/includes/projects/project_search_box.html
+++ b/erpnext/templates/includes/projects/project_search_box.html
@@ -18,7 +18,7 @@ frappe.ready(function() {
}
var thread = null;
function findResult(t) {
- window.location.href="/projects?project={{doc.name}}&q=" + t;
+ window.location.href="/projects?project={{doc.name}}&q=" + encodeURIComponent(t);
}
$("#project-search").keyup(function() {
diff --git a/erpnext/templates/pages/task_info.html b/erpnext/templates/pages/task_info.html
index fe4d304a398..4a98b425e73 100644
--- a/erpnext/templates/pages/task_info.html
+++ b/erpnext/templates/pages/task_info.html
@@ -1,11 +1,11 @@
{% extends "templates/web.html" %}
-{% block title %} {{ doc.name }} {% endblock %}
+{% block title %} {{ doc.name|e }} {% endblock %}
{% block breadcrumbs %}
-
+
@@ -13,16 +13,7 @@
{% block page_content %}
-
{{ doc.subject }}
-
-
-
-
+
{{ doc.subject|e }}
@@ -31,50 +22,44 @@
-
+
-
{% endblock %}
diff --git a/erpnext/templates/pages/task_info.py b/erpnext/templates/pages/task_info.py
index 66b775a9178..59fdee617ee 100644
--- a/erpnext/templates/pages/task_info.py
+++ b/erpnext/templates/pages/task_info.py
@@ -5,11 +5,12 @@ def get_context(context):
context.no_cache = 1
task = frappe.get_doc("Task", frappe.form_dict.task)
+ task.check_permission()
context.comments = frappe.get_all(
- "Communication",
- filters={"reference_name": task.name, "comment_type": "comment"},
- fields=["subject", "sender_full_name", "communication_date"],
+ "Comment",
+ filters={"reference_doctype": "Task", "reference_name": task.name, "comment_type": "Comment"},
+ fields=["content", "comment_email", "creation"],
)
context.doc = task
diff --git a/erpnext/tests/test_webform.py b/erpnext/tests/test_webform.py
index 2e729aab50d..3747d8a1ffa 100644
--- a/erpnext/tests/test_webform.py
+++ b/erpnext/tests/test_webform.py
@@ -29,12 +29,12 @@ class TestWebsite(ERPNextTestSuite):
with self.set_user("supplier1@gmail.com"):
# checking if data only consist of order assignment of Supplier1
- self.assertTrue("Supplier1" in [data.supplier for data in get_data()])
+ self.assertIn("Supplier1", [data.supplier for data in get_data()])
self.assertFalse([data.supplier for data in get_data() if data.supplier != "Supplier1"])
with self.set_user("supplier2@gmail.com"):
# checking if data only consist of order assignment of Supplier2
- self.assertTrue("Supplier2" in [data.supplier for data in get_data()])
+ self.assertIn("Supplier2", [data.supplier for data in get_data()])
self.assertFalse([data.supplier for data in get_data() if data.supplier != "Supplier2"])
diff --git a/erpnext/www/banking.py b/erpnext/www/banking.py
index ce47c16dc28..eebfebe2474 100644
--- a/erpnext/www/banking.py
+++ b/erpnext/www/banking.py
@@ -8,8 +8,8 @@ from frappe.utils.jinja_globals import is_rtl
no_cache = 1
-SCRIPT_TAG_PATTERN = re.compile(r"\")
+SCRIPT_TAG_PATTERN = re.compile(r"\", re.IGNORECASE)
def get_context(context):
diff --git a/erpnext/www/book_appointment/index.py b/erpnext/www/book_appointment/index.py
index 376e7afc14b..14f5fe385b4 100644
--- a/erpnext/www/book_appointment/index.py
+++ b/erpnext/www/book_appointment/index.py
@@ -12,10 +12,13 @@ no_cache = 1
def get_context(context):
- is_enabled = frappe.db.get_single_value("Appointment Booking Settings", "enable_scheduling")
- if is_enabled:
- return context
- else:
+ handle_appointment_booking_disabled()
+
+ return context
+
+
+def handle_appointment_booking_disabled():
+ if not frappe.get_single_value("Appointment Booking Settings", "enable_scheduling"):
frappe.redirect_to_message(
_("Appointment Scheduling Disabled"),
_("Appointment Scheduling has been disabled for this site"),
@@ -27,9 +30,9 @@ def get_context(context):
@frappe.whitelist(allow_guest=True)
def get_appointment_settings():
- settings = frappe.get_cached_value(
+ handle_appointment_booking_disabled()
+ settings = frappe.get_single_value(
"Appointment Booking Settings",
- None,
["advance_booking_days", "appointment_duration", "success_redirect_url"],
as_dict=True,
)
@@ -38,12 +41,14 @@ def get_appointment_settings():
@frappe.whitelist(allow_guest=True)
def get_timezones():
+ handle_appointment_booking_disabled()
return zoneinfo.available_timezones()
@frappe.whitelist(allow_guest=True)
def get_appointment_slots(date: str, timezone: str):
# Convert query to local timezones
+ handle_appointment_booking_disabled()
format_string = "%Y-%m-%d %H:%M:%S"
query_start_time = datetime.datetime.strptime(date + " 00:00:00", format_string)
query_end_time = datetime.datetime.strptime(date + " 23:59:59", format_string)
@@ -52,7 +57,11 @@ def get_appointment_slots(date: str, timezone: str):
now = convert_to_guest_timezone(timezone, datetime.datetime.now())
# Database queries
- settings = frappe.get_doc("Appointment Booking Settings")
+ settings = frappe.get_single_value(
+ "Appointment Booking Settings",
+ ["holiday_list", "appointment_duration", "number_of_agents", "availability_of_slots"],
+ as_dict=True,
+ )
holiday_list = frappe.get_doc("Holiday List", settings.holiday_list)
timeslots = get_available_slots_between(query_start_time, query_end_time, settings)
@@ -93,6 +102,7 @@ def get_available_slots_between(query_start_time, query_end_time, settings):
@frappe.whitelist(allow_guest=True)
def create_appointment(date: str, time: str, tz: str, contact: str):
+ handle_appointment_booking_disabled()
format_string = "%Y-%m-%d %H:%M:%S"
scheduled_time = datetime.datetime.strptime(date + " " + time, format_string)
# Strip tzinfo from datetime objects since it's handled by the doctype
{{ __("Comments") }}
+{{ _("Comments") }}
{{comment.sender_full_name}}: - {{comment.subject}} {{ __("on") }} {{comment.creation.strftime('%Y-%m-%d')}}
+{{comment.comment_email}}: + {{comment.content|e}} {{ _("on") }} {{comment.creation.strftime('%Y-%m-%d')}}
{% endfor %}{{ __("Add Comment") }}
- -